ETH Price: $1,909.92 (+0.36%)
 

Overview

Max Total Supply

100,000,000,000 KAIKEN

Holders

229

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
koiinetwork.eth
Balance
100,000 KAIKEN

Value
$0.00
0xF217402efA536aC01B75bAc59BE0a393c808a932
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:
KaikenToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-03
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards 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).
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.8.0;




/**
 * @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, IERC20Metadata {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 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 { }
}

// File: github/kaikendev/kaikenCoin/contracts/mock/KaikenToken.sol

pragma solidity 0.8.4;



contract KaikenToken is ERC20 {
    using SafeMath for uint;

    // Addresses 
    address owner; // dev
    address private investors = 0x456ee95063e52359530b9702C9A3d1EEB46864A7;
    address private exchanges = 0xa611d21b868f2A1d9Cfb383152DC3483Ea15F81F;
    address private marketing = 0x085BA6bef0b3fEACf2D4Cb3Dba5CA11520E2AD01;
    address private reserve = 0xFe76451745386702e091113170b703096dC9E024;
    
    //structs 
    struct TaxRecord {
        uint timestamp;
        uint tax;
        uint balance;
    }
    
    struct GenesisRecord {
        uint timestamp;
        uint balance;
    }

    uint transferMode;
    uint[] startingTaxes = [
        5,
        8,
        10,
        15,
        20,
        25,
        30
    ];

     uint[] thresholds = [
        5,
        10,
        20,
        30,
        40,
        50
    ];

    // constants 
    uint private constant BPS = 100;
    uint private constant ONE_YEAR = 365;
    uint private constant TRANSFER = 0;
    uint private constant TRANSFER_FROM = 1;
    
    // constants for tokenomics (%)
    uint private OWNER = 20000000000;
    uint private RESERVE = 30000000000;
    uint private INVESTORS = 15000000000;
    uint private EXCHANGES = 20000000000;
    uint private MARKETING = 15000000000;

    // mappings
    mapping(address => bool) exempts;
    mapping(address => bool) totalExempts;
    mapping(address => TaxRecord[]) accountTaxMap;
    mapping(address => TaxRecord[]) sandboxAccountTaxMap;
    mapping(address => GenesisRecord) genesis;
    

    //modifiers
    modifier onlyOwner {
        require(msg.sender == owner, 'Only the owner can invoke this call.');
        _;
    }
    // events
    event AddedExempt(address exempted);
    event RemovedExempt(address exempted);
    event RemovedTotalExempt(address exempted);
    event UpdatedExempt(address exempted, bool isValid);
    event UpdatedTotalExempt(address exempted, bool isValid);
    event UpdatedReserve(address reserve);
    event TaxRecordSet(address _addr, uint timestamp, uint balance, uint tax);
    event UpdatedStartingTaxes(uint[] startingTaxes);
    event UpdatedThresholds(uint[] thresholds);
    event InitializedExempts(uint initialized);
    event InitializedTotalExempts(uint initialized);

    // sandbox events
    event SandboxTaxRecordSet(address addr, uint timestamp, uint balance, uint tax);

    constructor(
        string memory _name,
        string memory _symbol
    ) public ERC20(_name, _symbol) {
        owner = msg.sender;
        _mint(owner, OWNER * (10 ** uint256(decimals())));
        _mint(reserve, RESERVE * (10 ** uint256(decimals())));
        _mint(exchanges, EXCHANGES * (10 ** uint256(decimals())));
        _mint(investors, INVESTORS * (10 ** uint256(decimals())));
        _mint(marketing, MARKETING * (10 ** uint256(decimals())));
        
        _initializeExempts();
        _initializeTotalExempts();
    }

    // Overrides
    function transfer(
        address to,
        uint amount
    ) public virtual override returns (bool){
        transferMode = TRANSFER;
        return _internalTransfer(msg.sender, to, amount);
    }

    function transferFrom(
        address from,
        address to,
        uint amount
    ) public virtual override returns (bool success) {
        transferMode = TRANSFER_FROM;
        return _internalTransfer(from, to, amount);
    }

    // Reads
    function getStartingTaxes() public view returns(uint[] memory) {
        return startingTaxes;
    }

    function getThresholds() public view returns(uint[] memory){
        return thresholds;
    }

    function getExempt(address _addr) public view returns(bool){
        return exempts[_addr];
    }

    function getTotalExempt(address _addr) public view returns(bool){
        return totalExempts[_addr];
    }
    
    function getTaxRecord(address _addr) public view returns(TaxRecord[] memory){
        return accountTaxMap[_addr];
    }
    
    function getGenesisRecord(address _addr) public view returns(GenesisRecord memory){
        return genesis[_addr];
    }

    function getReserve() public view returns(address) {
        return reserve;
    }

    // Writes
    function updateStartingTaxes(uint[] memory _startingTaxes) public onlyOwner {
        startingTaxes = _startingTaxes;
        emit UpdatedStartingTaxes(startingTaxes);
    }

    function updateThresholds(uint[] memory _thresholds) public onlyOwner {
        thresholds = _thresholds;
        emit UpdatedThresholds(thresholds);
    }

    function updateReserve(address _reserve) public onlyOwner {
        reserve = _reserve;
        emit UpdatedReserve(reserve);
    }

    function addExempt(address _exempted, bool totalExempt) public onlyOwner {
        require(_exempted != owner, 'Cannot tax exempt the owner');
        _addExempt(_exempted, totalExempt);
    }

    function updateExempt(address _exempted, bool isValid) public onlyOwner {
        require(_exempted != owner, 'Can not update Owners tax exempt status');
        exempts[_exempted] = isValid;
        emit UpdatedExempt(_exempted, isValid);
    }

    function updateTotalExempt(address _exempted, bool isValid) public onlyOwner {
        require(_exempted != owner, 'Can not update Owners tax exempt status');
        totalExempts[_exempted] = isValid;
        if(isValid) {
            exempts[_exempted] = false;
        }
        emit UpdatedTotalExempt(_exempted, isValid);
    }

    function removeExempt(address _exempted) public onlyOwner {
        require(exempts[_exempted], 'Exempt address is not existent'); 

        exempts[_exempted] = false;
        emit RemovedExempt(_exempted);
    }

    function removeTotalExempt(address _exempted) public onlyOwner {
        require(totalExempts[_exempted], 'Total Exempt address is not existent'); 

        totalExempts[_exempted] = false;
        emit RemovedTotalExempt(_exempted);
    }

    // internal functions
    function _addExempt(address _exempted, bool totalExempt) internal {
        require(!exempts[_exempted] || !totalExempts[_exempted], 'Exempt address already existent'); 

        if(totalExempt == false) {
            exempts[_exempted] = true;
        } else {
            totalExempts[_exempted] = true;
            exempts[_exempted] = false;
        }
        emit AddedExempt(_exempted);    
    }
    
    function _initializeExempts() internal {
        // initialize the following exempts: 
        // These accounts are exempted from taxation
        exempts[exchanges] = true;
        exempts[investors] = true;
        exempts[marketing] = true;
        exempts[0xf164fC0Ec4E93095b804a4795bBe1e041497b92a] = true; // UniswapV1Router01
        exempts[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; // UniswapV2Router02
        exempts[0xE592427A0AEce92De3Edee1F18E0157C05861564] = true; // UniswapV3Router03
        exempts[0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F] = true; // Sushiswap: Router
        exempts[0xdb38ae75c5F44276803345f7F02e95A0aeEF5944] = true; // 1inch
        exempts[0xBA12222222228d8Ba445958a75a0704d566BF2C8] = true; // Balancer Vault

        emit InitializedExempts(1);
    } 

    function _initializeTotalExempts() internal {
        // initialize the following total exempts: 
        // These accounts are exempt the to and from accounts that 
        // interact with them. This is for certain exchanges that fail 
        // with any forms of taxation. 
        totalExempts[reserve] = true;
        totalExempts[0xCCE8D59AFFdd93be338FC77FA0A298C2CB65Da59] = true; // Bilaxy1
        totalExempts[0xB5Ef14898928FDCE71b54Ea80350B76F9a3617a6] = true; // Bilaxy2
        totalExempts[0x9BA3560231e3E0aD7dde23106F5B98C72E30b468] = true; // Bilaxy3
        
        emit InitializedTotalExempts(1);
    } 

    function _getTaxPercentage(
        address _from,
        address _to,
        uint _sentAmount
    ) internal returns (uint tax) {
        uint taxPercentage = 0;
        uint fromBalance = balanceOf(_from);
        uint noww = block.timestamp;

        require(
            fromBalance > 0 && _sentAmount > 0,
            'Intangible balance or amount to send'
        );

        bool isDueForTaxExemption =
            !exempts[_from] &&
            !totalExempts[_from] &&
            genesis[_from].timestamp > 0 &&
            genesis[_from].balance > 0 &&
            balanceOf(_from) >= genesis[_from].balance && 
            noww - genesis[_from].timestamp >= ONE_YEAR * 1 days;

        if (isDueForTaxExemption) _addExempt(_from, false);
        
        // Do not tax any transfers associated with total exemptions
        // Do not tax any transfers from exempted accounts
        if (
            exempts[_from] ||
            totalExempts[_from] ||
            totalExempts[_to]
        ) return taxPercentage;

        uint percentageTransferred = _sentAmount.mul(100).div(fromBalance);

        if (percentageTransferred <= thresholds[0]) {
            taxPercentage = startingTaxes[0];
        } else if (percentageTransferred <= thresholds[1]) {
            taxPercentage = startingTaxes[1];
        } else if (percentageTransferred <= thresholds[2]) {
            taxPercentage = startingTaxes[2];
        } else if (percentageTransferred <= thresholds[3]) {
            taxPercentage = startingTaxes[3];
        } else if (percentageTransferred <= thresholds[4]) {
            taxPercentage = startingTaxes[4];
        } else if (percentageTransferred <= thresholds[5]) {
            taxPercentage = startingTaxes[5];
        } else {
            taxPercentage = startingTaxes[6];
        }
        
        _setTaxRecord(_from, taxPercentage);
        return taxPercentage;
    }

    function _getReceivedAmount(
        address _from,
        address _to,
        uint _sentAmount
    ) internal returns (uint receivedAmount, uint taxAmount) {
        uint taxPercentage = _getTaxPercentage(_from, _to, _sentAmount);
        receivedAmount = _sentAmount.sub(_sentAmount.div(BPS).mul(taxPercentage));
        taxAmount = _sentAmount.sub(receivedAmount);
    }

    function _setTaxRecord(
        address _addr, 
        uint _tax
        ) internal {
        uint timestamp = block.timestamp;
        accountTaxMap[_addr].push(TaxRecord({ 
            timestamp: timestamp,
            tax: _tax,
            balance: balanceOf(_addr)
        }));
        emit TaxRecordSet(_addr, timestamp, balanceOf(_addr), _tax);
    }

    function _internalTransfer(
        address _from, // `msg.sender` || `from`
        address _to,
        uint _amount
    ) internal returns (bool success){
        uint noww = block.timestamp;
        
        if(_from == owner && !exempts[owner]) {
            // timelock owner-originated transfers for a year. 
            // require(noww >= 1654048565, 'Owner is timelocked for 1 year');
            // _addExempt(owner, false);
        }
        
        if (transferMode == TRANSFER) {
            super.transfer(_to, _amount);
        } else {
            (, uint taxAmount) = _getReceivedAmount(_from, _to, _amount);
        
            require(
                balanceOf(_from) >= _amount.add(taxAmount),
                'Exclusive taxation: Cannot afford to pay tax'
            ); 
            
            if(taxAmount > 0) {
                _burn(_from, taxAmount);
                _mint(reserve, taxAmount);
            }
            
            super.transferFrom(_from, _to, _amount);
        }
        
        if (genesis[_to].timestamp == 0) {
            genesis[_to].timestamp = noww;
        }
    
        genesis[_to].balance = balanceOf(_to);
        genesis[_from].balance = balanceOf(_from);
        genesis[_from].timestamp = noww;
        
        return true;
    }

    // Sandbox functions
    function sandboxSetTaxRecord(
        address addr, 
        uint _tax
        ) public {
        uint noww = block.timestamp;
        sandboxAccountTaxMap[addr].push(TaxRecord({ 
            timestamp: noww,
            tax: _tax,
            balance: balanceOf(addr)
        }));
        emit SandboxTaxRecordSet(addr, noww, balanceOf(addr), _tax);
    }
    
     function sandboxGetTaxRecord(
        address addr
        ) public view returns (TaxRecord[] memory tr){
        tr = sandboxAccountTaxMap[addr];
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"}],"name":"AddedExempt","type":"event"},{"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":false,"internalType":"uint256","name":"initialized","type":"uint256"}],"name":"InitializedExempts","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"initialized","type":"uint256"}],"name":"InitializedTotalExempts","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"}],"name":"RemovedExempt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"}],"name":"RemovedTotalExempt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"SandboxTaxRecordSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tax","type":"uint256"}],"name":"TaxRecordSet","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":"exempted","type":"address"},{"indexed":false,"internalType":"bool","name":"isValid","type":"bool"}],"name":"UpdatedExempt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"reserve","type":"address"}],"name":"UpdatedReserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"startingTaxes","type":"uint256[]"}],"name":"UpdatedStartingTaxes","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"thresholds","type":"uint256[]"}],"name":"UpdatedThresholds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"exempted","type":"address"},{"indexed":false,"internalType":"bool","name":"isValid","type":"bool"}],"name":"UpdatedTotalExempt","type":"event"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"},{"internalType":"bool","name":"totalExempt","type":"bool"}],"name":"addExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"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":"_addr","type":"address"}],"name":"getExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getGenesisRecord","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"internalType":"struct KaikenToken.GenesisRecord","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStartingTaxes","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getTaxRecord","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"internalType":"struct KaikenToken.TaxRecord[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getThresholds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getTotalExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"}],"name":"removeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"}],"name":"removeTotalExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"sandboxGetTaxRecord","outputs":[{"components":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"tax","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"}],"internalType":"struct KaikenToken.TaxRecord[]","name":"tr","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"sandboxSetTaxRecord","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"},{"internalType":"bool","name":"isValid","type":"bool"}],"name":"updateExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reserve","type":"address"}],"name":"updateReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_startingTaxes","type":"uint256[]"}],"name":"updateStartingTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_thresholds","type":"uint256[]"}],"name":"updateThresholds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_exempted","type":"address"},{"internalType":"bool","name":"isValid","type":"bool"}],"name":"updateTotalExempt","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600680546001600160a01b031990811673456ee95063e52359530b9702c9a3d1eeb46864a71790915560078054821673a611d21b868f2a1d9cfb383152dc3483ea15f81f17815560088054831673085ba6bef0b3feacf2d4cb3dba5ca11520e2ad011781556009805490931673fe76451745386702e091113170b703096dc9e024179092556101606040526005608090815260a092909252600a60c052600f60e052601461010052601961012052601e61014052620000c191600b916200061d565b506040805160c08101825260058152600a6020820152601491810191909152601e606082015260286080820152603260a08201526200010590600c9060066200061d565b506404a817c800600d556406fc23ac00600e5564037e11d600600f556404a817c80060105564037e11d6006011553480156200014057600080fd5b5060405162002ba038038062002ba08339810160408190526200016391620007b9565b8151829082906200017c90600390602085019062000672565b5080516200019290600490602084019062000672565b5050600580546001600160a01b03191633908117909155620001dd9150620001b8601290565b620001c89060ff16600a62000884565b600d54620001d791906200094f565b620002b1565b6009546200020b906001600160a01b0316620001fc6012600a62000884565b600e54620001d791906200094f565b60075462000239906001600160a01b03166200022a6012600a62000884565b601054620001d791906200094f565b60065462000267906001600160a01b0316620002586012600a62000884565b600f54620001d791906200094f565b60085462000295906001600160a01b0316620002866012600a62000884565b601154620001d791906200094f565b6200029f62000399565b620002a96200052f565b5050620009da565b6001600160a01b0382166200030c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000320919062000820565b90915550506001600160a01b038216600090815260208190526040812080548392906200034f90849062000820565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6007546001600160a01b0390811660009081526012602090815260408083208054600160ff199182168117909255600654861685528285208054821683179055600854909516845281842080548616821790557f5aa7596e35dce516ef2c38af957bbf8c90b6dce317fce27181f9dc8c2732ddce80548616821790557f3c6737805ae477fd0cfdda13dc5f99b32fcbfecb81e47f9e11e1b03813c08ec280548616821790557f1ca0b149dbfd1580fe7f496f7f1457fe9a95cc13335fac5329a4de487a81ed0f80548616821790557f57a20713886ddd7dca712cf0536d08dc25d8eb4a22c93a801d9cd62a4569825c80548616821790557f6d3ced6c07822cd8901f7456c3654c9a183199560ec2b4b0d9721c175ddf3268805486168217905573ba12222222228d8ba445958a75a0704d566bf2c89093527f5de2cd7300897fe70198e190763465ee5c3cab3fe3a3753381e7755000dc89118054909416831790935591519081527fad4d7f63393d86a66a01652719d97d2ed81e450d58dd7b155cf96b7b29c5ca8191015b60405180910390a1565b6009546001600160a01b031660009081526013602090815260408083208054600160ff1991821681179092557ff22978bb0935f454ace443fc6b10f07ac08c46a23183c1e04533d8e931e0eb9980548216831790557feb5466c33414cc6af8d14db9d184509440dfe41f9c210096b52f6bb6cc949ea08054821683179055739ba3560231e3e0ad7dde23106f5b98c72e30b4689094527f7ba99e3e0f584fd7be19388fada2beed97dadc08d4f15d526c927ee3625af10880549094168117909355519182527f29365c12ba82b7f2c31a4687b5681735fae7d0aa2e89156f024fd66893fda1ed910162000525565b82805482825590600052602060002090810192821562000660579160200282015b8281111562000660578251829060ff169055916020019190600101906200063e565b506200066e929150620006ef565b5090565b828054620006809062000971565b90600052602060002090601f016020900481019282620006a4576000855562000660565b82601f10620006bf57805160ff191683800117855562000660565b8280016001018555821562000660579182015b8281111562000660578251825591602001919060010190620006d2565b5b808211156200066e5760008155600101620006f0565b600082601f83011262000717578081fd5b81516001600160401b0380821115620007345762000734620009c4565b604051601f8301601f19908116603f011681019082821181831017156200075f576200075f620009c4565b816040528381526020925086838588010111156200077b578485fd5b8491505b838210156200079e57858201830151818301840152908201906200077f565b83821115620007af57848385830101525b9695505050505050565b60008060408385031215620007cc578182fd5b82516001600160401b0380821115620007e3578384fd5b620007f18683870162000706565b9350602085015191508082111562000807578283fd5b50620008168582860162000706565b9150509250929050565b60008219821115620008365762000836620009ae565b500190565b600181815b808511156200087c578160001904821115620008605762000860620009ae565b808516156200086e57918102915b93841c939080029062000840565b509250929050565b600062000892838362000899565b9392505050565b600082620008aa5750600162000949565b81620008b95750600062000949565b8160018114620008d25760028114620008dd57620008fd565b600191505062000949565b60ff841115620008f157620008f1620009ae565b50506001821b62000949565b5060208310610133831016604e8410600b841016171562000922575081810a62000949565b6200092e83836200083b565b8060001904821115620009455762000945620009ae565b0290505b92915050565b60008160001904831182151516156200096c576200096c620009ae565b500290565b600181811c908216806200098657607f821691505b60208210811415620009a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6121b680620009ea6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f95780639c3977b511610097578063b24ac7b711610071578063b24ac7b714610444578063dd62ed3e14610457578063ee742b6b14610490578063f56d053c146104a357600080fd5b80639c3977b514610409578063a457c2d71461041e578063a9059cbb1461043157600080fd5b80639004a3cf116100d35780639004a3cf146103c857806395d89b41146103db5780639905a060146103e35780639af82ce9146103f657600080fd5b806370a08231146103765780637cb73a1f146103895780638fe160e1146103b557600080fd5b8063313ce56711610166578063590faef911610140578063590faef91461031557806359bf5d391461033557806365fe4ffd1461035057806369b047771461036357600080fd5b8063313ce567146102e057806336ffc2d3146102ef578063395093511461030257600080fd5b80631a7e8597116101a25780631a7e85971461021c57806323b872dd1461028c578063262bdda31461029f5780632ff36d46146102b457600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d16104ab565b6040516101de9190611fcd565b60405180910390f35b6101fa6101f5366004611e0c565b61053d565b60405190151581526020016101de565b6002545b6040519081526020016101de565b61027161022a366004611d4b565b6040805180820190915260008082526020820152506001600160a01b0316600090815260166020908152604091829020825180840190935280548352600101549082015290565b604080518251815260209283015192810192909252016101de565b6101fa61029a366004611d97565b610553565b6102b26102ad366004611dd2565b61056f565b005b6101fa6102c2366004611d4b565b6001600160a01b031660009081526012602052604090205460ff1690565b604051601281526020016101de565b6102b26102fd366004611d4b565b61060e565b6101fa610310366004611e0c565b610704565b610328610323366004611d4b565b610740565b6040516101de9190611ef5565b6009546040516001600160a01b0390911681526020016101de565b6102b261035e366004611dd2565b6107d3565b6102b2610371366004611e35565b61088f565b61020e610384366004611d4b565b6108fd565b6101fa610397366004611d4b565b6001600160a01b031660009081526013602052604090205460ff1690565b6102b26103c3366004611e0c565b610918565b6102b26103d6366004611dd2565b6109f8565b6101d1610ade565b6102b26103f1366004611e35565b610aed565b610328610404366004611d4b565b610b5b565b610411610be0565b6040516101de9190611f4e565b6101fa61042c366004611e0c565b610c37565b6101fa61043f366004611e0c565b610cd2565b6102b2610452366004611d4b565b610ce4565b61020e610465366004611d65565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102b261049e366004611d4b565b610dc7565b610411610e3f565b6060600380546104ba90612119565b80601f01602080910402602001604051908101604052809291908181526020018280546104e690612119565b80156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b600061054a338484610e95565b50600192915050565b6001600a556000610565848484610fba565b90505b9392505050565b6005546001600160a01b031633146105a25760405162461bcd60e51b815260040161059990612067565b60405180910390fd5b6005546001600160a01b03838116911614156106005760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420746178206578656d707420746865206f776e657200000000006044820152606401610599565b61060a828261115d565b5050565b6005546001600160a01b031633146106385760405162461bcd60e51b815260040161059990612067565b6001600160a01b03811660009081526013602052604090205460ff166106ac5760405162461bcd60e51b8152602060048201526024808201527f546f74616c204578656d70742061646472657373206973206e6f7420657869736044820152631d195b9d60e21b6064820152608401610599565b6001600160a01b038116600081815260136020908152604091829020805460ff1916905590519182527f06419e2dc00935e4ec76dffc065c793d4f2843fe4be5c4ebea715e8361bad90591015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054a91859061073b9086906120ab565b610e95565b6001600160a01b0381166000908152601560209081526040808320805482518185028101850190935280835260609492939192909184015b828210156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b505050509050919050565b6005546001600160a01b031633146107fd5760405162461bcd60e51b815260040161059990612067565b6005546001600160a01b038381169116141561082b5760405162461bcd60e51b815260040161059990612020565b6001600160a01b038216600081815260126020908152604091829020805460ff19168515159081179091558251938452908301527f2f5464dedfc9c7e0801f6bbb88f27616c999957a090e3613fba15304cec32dae91015b60405180910390a15050565b6005546001600160a01b031633146108b95760405162461bcd60e51b815260040161059990612067565b80516108cc90600c906020840190611ccf565b507f2b7ddefab100602642738d2ef98dae1f01507518f499931d49052353e5ec7116600c6040516106f99190611f92565b6001600160a01b031660009081526020819052604090205490565b600042905060156000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001610962866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557f6b785de9d99adb0cee10abec5e29aefa186d51f89d5a3146eba52d27a3b7d1e783826109c4826108fd565b604080516001600160a01b0390941684526020840192909252908201526060810184905260800160405180910390a1505050565b6005546001600160a01b03163314610a225760405162461bcd60e51b815260040161059990612067565b6005546001600160a01b0383811691161415610a505760405162461bcd60e51b815260040161059990612020565b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155610a9e576001600160a01b0382166000908152601260205260409020805460ff191690555b604080516001600160a01b038416815282151560208201527f2c34a81f6992f3a3271a848cf9de2e116a04dcf4fd84baf0bc970123612a18ca9101610883565b6060600480546104ba90612119565b6005546001600160a01b03163314610b175760405162461bcd60e51b815260040161059990612067565b8051610b2a90600b906020840190611ccf565b507f793bf89e1f5735707ce59a54f5f29ee979d06ca240e09027a69bc86dd0001f87600b6040516106f99190611f92565b6001600160a01b03811660009081526014602090815260408083208054825181850281018501909352808352606094929391929091840182156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b6060600c80548060200260200160405190810160405280929190818152602001828054801561053357602002820191906000526020600020905b815481526020019060010190808311610c1a575050505050905090565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610599565b610cc8338561073b8685612102565b5060019392505050565b6000600a819055610568338484610fba565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161059990612067565b6001600160a01b03811660009081526012602052604090205460ff16610d765760405162461bcd60e51b815260206004820152601e60248201527f4578656d70742061646472657373206973206e6f74206578697374656e7400006044820152606401610599565b6001600160a01b038116600081815260126020908152604091829020805460ff1916905590519182527feb6e11af6901799726bf7474a0a2f35414580dc5743d89013bad0aa7f506fad491016106f9565b6005546001600160a01b03163314610df15760405162461bcd60e51b815260040161059990612067565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f1789efb3eab49302df559b4d7dba3b406d2b9d065ecacf6e27c16b48835c273e906020016106f9565b6060600b8054806020026020016040519081016040528092919081815260200182805480156105335760200282019190600052602060002090815481526020019060010190808311610c1a575050505050905090565b6001600160a01b038316610ef75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610599565b6001600160a01b038216610f585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610599565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60055460009042906001600160a01b038681169116148015610ff757506005546001600160a01b031660009081526012602052604090205460ff16155b50600a5461100f576110098484611289565b506110ca565b600061101c868686611296565b915061102a905084826112de565b611033876108fd565b10156110965760405162461bcd60e51b815260206004820152602c60248201527f4578636c7573697665207461786174696f6e3a2043616e6e6f74206166666f7260448201526b0c840e8de40e0c2f240e8c2f60a31b6064820152608401610599565b80156110bc576110a686826112ea565b6009546110bc906001600160a01b031682611439565b6110c7868686611518565b50505b6001600160a01b038416600090815260166020526040902054611103576001600160a01b03841660009081526016602052604090208190555b61110c846108fd565b6001600160a01b038516600090815260166020526040902060010155611131856108fd565b6001600160a01b0395909516600090815260166020526040902060018082019690965555509192915050565b6001600160a01b03821660009081526012602052604090205460ff16158061119e57506001600160a01b03821660009081526013602052604090205460ff16155b6111ea5760405162461bcd60e51b815260206004820152601f60248201527f4578656d7074206164647265737320616c7265616479206578697374656e74006044820152606401610599565b80611217576001600160a01b0382166000908152601260205260409020805460ff19166001179055611250565b6001600160a01b0382166000908152601360209081526040808320805460ff199081166001179091556012909252909120805490911690555b6040516001600160a01b03831681527f622908417e33f2d102bfc1b18904f1578f8b2ee8f5f66311062769763a48385690602001610883565b600061054a3384846115c4565b60008060006112a686868661179c565b90506112c76112c0826112ba876064611bff565b90611c0b565b8590611c17565b92506112d38484611c17565b915050935093915050565b600061056882846120ab565b6001600160a01b03821661134a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610599565b6001600160a01b038216600090815260208190526040902054818110156113be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610599565b6113c88282612102565b6001600160a01b038416600090815260208190526040812091909155600280548492906113f6908490612102565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610fad565b6001600160a01b03821661148f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610599565b80600260008282546114a191906120ab565b90915550506001600160a01b038216600090815260208190526040812080548392906114ce9084906120ab565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006115258484846115c4565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156115aa5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610599565b6115b9853361073b8685612102565b506001949350505050565b6001600160a01b0383166116285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610599565b6001600160a01b03821661168a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610599565b6001600160a01b038316600090815260208190526040902054818110156117025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610599565b61170c8282612102565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906117429084906120ab565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161178e91815260200190565b60405180910390a350505050565b600080806117a9866108fd565b90504281158015906117bb5750600085115b6118135760405162461bcd60e51b8152602060048201526024808201527f496e74616e6769626c652062616c616e6365206f7220616d6f756e7420746f206044820152631cd95b9960e21b6064820152608401610599565b6001600160a01b03871660009081526012602052604081205460ff1615801561185557506001600160a01b03881660009081526013602052604090205460ff16155b801561187857506001600160a01b03881660009081526016602052604090205415155b801561189e57506001600160a01b03881660009081526016602052604090206001015415155b80156118cd57506001600160a01b0388166000908152601660205260409020600101546118ca896108fd565b10155b801561190957506118e361016d620151806120e3565b6001600160a01b0389166000908152601660205260409020546119069084612102565b10155b9050801561191c5761191c88600061115d565b6001600160a01b03881660009081526012602052604090205460ff168061195b57506001600160a01b03881660009081526013602052604090205460ff165b8061197e57506001600160a01b03871660009081526013602052604090205460ff165b1561198f5783945050505050610568565b60006119a6846119a0896064611c0b565b90611bff565b9050600c6000815481106119ca57634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a0f57600b6000815481106119fd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549450611be8565b600c600181548110611a3157634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a6457600b6001815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600281548110611a8657634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611ab957600b6002815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600381548110611adb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611b0e57600b6003815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600481548110611b3057634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611b6357600b6004815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600581548110611b8557634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611bb857600b6005815481106119fd57634e487b7160e01b600052603260045260246000fd5b600b600681548110611bda57634e487b7160e01b600052603260045260246000fd5b906000526020600020015494505b611bf28986611c23565b5092979650505050505050565b600061056882846120c3565b600061056882846120e3565b60006105688284612102565b600042905060146000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001611c6d866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557ffc75473a3e9ee26aff1c5d83ba766038a0382e0ebb944323f0a119264d5637f083826109c4826108fd565b828054828255906000526020600020908101928215611d0a579160200282015b82811115611d0a578251825591602001919060010190611cef565b50611d16929150611d1a565b5090565b5b80821115611d165760008155600101611d1b565b80356001600160a01b0381168114611d4657600080fd5b919050565b600060208284031215611d5c578081fd5b61056882611d2f565b60008060408385031215611d77578081fd5b611d8083611d2f565b9150611d8e60208401611d2f565b90509250929050565b600080600060608486031215611dab578081fd5b611db484611d2f565b9250611dc260208501611d2f565b9150604084013590509250925092565b60008060408385031215611de4578182fd5b611ded83611d2f565b915060208301358015158114611e01578182fd5b809150509250929050565b60008060408385031215611e1e578182fd5b611e2783611d2f565b946020939093013593505050565b60006020808385031215611e47578182fd5b823567ffffffffffffffff80821115611e5e578384fd5b818501915085601f830112611e71578384fd5b813581811115611e8357611e8361216a565b8060051b604051601f19603f83011681018181108582111715611ea857611ea861216a565b604052828152858101935084860182860187018a1015611ec6578788fd5b8795505b83861015611ee8578035855260019590950194938601938601611eca565b5098975050505050505050565b602080825282518282018190526000919060409081850190868401855b82811015611f415781518051855286810151878601528501518585015260609093019290850190600101611f12565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f8657835183529284019291840191600101611f6a565b50909695505050505050565b6020808252825482820181905260008481528281209092916040850190845b81811015611f8657835483526001938401939285019201611fb1565b6000602080835283518082850152825b81811015611ff957858101830151858201604001528201611fdd565b8181111561200a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f43616e206e6f7420757064617465204f776e65727320746178206578656d70746040820152662073746174757360c81b606082015260800190565b60208082526024908201527f4f6e6c7920746865206f776e65722063616e20696e766f6b652074686973206360408201526330b6361760e11b606082015260800190565b600082198211156120be576120be612154565b500190565b6000826120de57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156120fd576120fd612154565b500290565b60008282101561211457612114612154565b500390565b600181811c9082168061212d57607f821691505b6020821081141561214e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122052bfe62eb9e2f2c77a0c8682e6d6857d578b980f913f4b1faf5c7f26c313bfab64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4b61696b656e20546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b41494b454e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f95780639c3977b511610097578063b24ac7b711610071578063b24ac7b714610444578063dd62ed3e14610457578063ee742b6b14610490578063f56d053c146104a357600080fd5b80639c3977b514610409578063a457c2d71461041e578063a9059cbb1461043157600080fd5b80639004a3cf116100d35780639004a3cf146103c857806395d89b41146103db5780639905a060146103e35780639af82ce9146103f657600080fd5b806370a08231146103765780637cb73a1f146103895780638fe160e1146103b557600080fd5b8063313ce56711610166578063590faef911610140578063590faef91461031557806359bf5d391461033557806365fe4ffd1461035057806369b047771461036357600080fd5b8063313ce567146102e057806336ffc2d3146102ef578063395093511461030257600080fd5b80631a7e8597116101a25780631a7e85971461021c57806323b872dd1461028c578063262bdda31461029f5780632ff36d46146102b457600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d16104ab565b6040516101de9190611fcd565b60405180910390f35b6101fa6101f5366004611e0c565b61053d565b60405190151581526020016101de565b6002545b6040519081526020016101de565b61027161022a366004611d4b565b6040805180820190915260008082526020820152506001600160a01b0316600090815260166020908152604091829020825180840190935280548352600101549082015290565b604080518251815260209283015192810192909252016101de565b6101fa61029a366004611d97565b610553565b6102b26102ad366004611dd2565b61056f565b005b6101fa6102c2366004611d4b565b6001600160a01b031660009081526012602052604090205460ff1690565b604051601281526020016101de565b6102b26102fd366004611d4b565b61060e565b6101fa610310366004611e0c565b610704565b610328610323366004611d4b565b610740565b6040516101de9190611ef5565b6009546040516001600160a01b0390911681526020016101de565b6102b261035e366004611dd2565b6107d3565b6102b2610371366004611e35565b61088f565b61020e610384366004611d4b565b6108fd565b6101fa610397366004611d4b565b6001600160a01b031660009081526013602052604090205460ff1690565b6102b26103c3366004611e0c565b610918565b6102b26103d6366004611dd2565b6109f8565b6101d1610ade565b6102b26103f1366004611e35565b610aed565b610328610404366004611d4b565b610b5b565b610411610be0565b6040516101de9190611f4e565b6101fa61042c366004611e0c565b610c37565b6101fa61043f366004611e0c565b610cd2565b6102b2610452366004611d4b565b610ce4565b61020e610465366004611d65565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102b261049e366004611d4b565b610dc7565b610411610e3f565b6060600380546104ba90612119565b80601f01602080910402602001604051908101604052809291908181526020018280546104e690612119565b80156105335780601f1061050857610100808354040283529160200191610533565b820191906000526020600020905b81548152906001019060200180831161051657829003601f168201915b5050505050905090565b600061054a338484610e95565b50600192915050565b6001600a556000610565848484610fba565b90505b9392505050565b6005546001600160a01b031633146105a25760405162461bcd60e51b815260040161059990612067565b60405180910390fd5b6005546001600160a01b03838116911614156106005760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f7420746178206578656d707420746865206f776e657200000000006044820152606401610599565b61060a828261115d565b5050565b6005546001600160a01b031633146106385760405162461bcd60e51b815260040161059990612067565b6001600160a01b03811660009081526013602052604090205460ff166106ac5760405162461bcd60e51b8152602060048201526024808201527f546f74616c204578656d70742061646472657373206973206e6f7420657869736044820152631d195b9d60e21b6064820152608401610599565b6001600160a01b038116600081815260136020908152604091829020805460ff1916905590519182527f06419e2dc00935e4ec76dffc065c793d4f2843fe4be5c4ebea715e8361bad90591015b60405180910390a150565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161054a91859061073b9086906120ab565b610e95565b6001600160a01b0381166000908152601560209081526040808320805482518185028101850190935280835260609492939192909184015b828210156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b505050509050919050565b6005546001600160a01b031633146107fd5760405162461bcd60e51b815260040161059990612067565b6005546001600160a01b038381169116141561082b5760405162461bcd60e51b815260040161059990612020565b6001600160a01b038216600081815260126020908152604091829020805460ff19168515159081179091558251938452908301527f2f5464dedfc9c7e0801f6bbb88f27616c999957a090e3613fba15304cec32dae91015b60405180910390a15050565b6005546001600160a01b031633146108b95760405162461bcd60e51b815260040161059990612067565b80516108cc90600c906020840190611ccf565b507f2b7ddefab100602642738d2ef98dae1f01507518f499931d49052353e5ec7116600c6040516106f99190611f92565b6001600160a01b031660009081526020819052604090205490565b600042905060156000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001610962866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557f6b785de9d99adb0cee10abec5e29aefa186d51f89d5a3146eba52d27a3b7d1e783826109c4826108fd565b604080516001600160a01b0390941684526020840192909252908201526060810184905260800160405180910390a1505050565b6005546001600160a01b03163314610a225760405162461bcd60e51b815260040161059990612067565b6005546001600160a01b0383811691161415610a505760405162461bcd60e51b815260040161059990612020565b6001600160a01b0382166000908152601360205260409020805460ff19168215801591909117909155610a9e576001600160a01b0382166000908152601260205260409020805460ff191690555b604080516001600160a01b038416815282151560208201527f2c34a81f6992f3a3271a848cf9de2e116a04dcf4fd84baf0bc970123612a18ca9101610883565b6060600480546104ba90612119565b6005546001600160a01b03163314610b175760405162461bcd60e51b815260040161059990612067565b8051610b2a90600b906020840190611ccf565b507f793bf89e1f5735707ce59a54f5f29ee979d06ca240e09027a69bc86dd0001f87600b6040516106f99190611f92565b6001600160a01b03811660009081526014602090815260408083208054825181850281018501909352808352606094929391929091840182156107c85783829060005260206000209060030201604051806060016040529081600082015481526020016001820154815260200160028201548152505081526020019060010190610778565b6060600c80548060200260200160405190810160405280929190818152602001828054801561053357602002820191906000526020600020905b815481526020019060010190808311610c1a575050505050905090565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610599565b610cc8338561073b8685612102565b5060019392505050565b6000600a819055610568338484610fba565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161059990612067565b6001600160a01b03811660009081526012602052604090205460ff16610d765760405162461bcd60e51b815260206004820152601e60248201527f4578656d70742061646472657373206973206e6f74206578697374656e7400006044820152606401610599565b6001600160a01b038116600081815260126020908152604091829020805460ff1916905590519182527feb6e11af6901799726bf7474a0a2f35414580dc5743d89013bad0aa7f506fad491016106f9565b6005546001600160a01b03163314610df15760405162461bcd60e51b815260040161059990612067565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f1789efb3eab49302df559b4d7dba3b406d2b9d065ecacf6e27c16b48835c273e906020016106f9565b6060600b8054806020026020016040519081016040528092919081815260200182805480156105335760200282019190600052602060002090815481526020019060010190808311610c1a575050505050905090565b6001600160a01b038316610ef75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610599565b6001600160a01b038216610f585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610599565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60055460009042906001600160a01b038681169116148015610ff757506005546001600160a01b031660009081526012602052604090205460ff16155b50600a5461100f576110098484611289565b506110ca565b600061101c868686611296565b915061102a905084826112de565b611033876108fd565b10156110965760405162461bcd60e51b815260206004820152602c60248201527f4578636c7573697665207461786174696f6e3a2043616e6e6f74206166666f7260448201526b0c840e8de40e0c2f240e8c2f60a31b6064820152608401610599565b80156110bc576110a686826112ea565b6009546110bc906001600160a01b031682611439565b6110c7868686611518565b50505b6001600160a01b038416600090815260166020526040902054611103576001600160a01b03841660009081526016602052604090208190555b61110c846108fd565b6001600160a01b038516600090815260166020526040902060010155611131856108fd565b6001600160a01b0395909516600090815260166020526040902060018082019690965555509192915050565b6001600160a01b03821660009081526012602052604090205460ff16158061119e57506001600160a01b03821660009081526013602052604090205460ff16155b6111ea5760405162461bcd60e51b815260206004820152601f60248201527f4578656d7074206164647265737320616c7265616479206578697374656e74006044820152606401610599565b80611217576001600160a01b0382166000908152601260205260409020805460ff19166001179055611250565b6001600160a01b0382166000908152601360209081526040808320805460ff199081166001179091556012909252909120805490911690555b6040516001600160a01b03831681527f622908417e33f2d102bfc1b18904f1578f8b2ee8f5f66311062769763a48385690602001610883565b600061054a3384846115c4565b60008060006112a686868661179c565b90506112c76112c0826112ba876064611bff565b90611c0b565b8590611c17565b92506112d38484611c17565b915050935093915050565b600061056882846120ab565b6001600160a01b03821661134a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610599565b6001600160a01b038216600090815260208190526040902054818110156113be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610599565b6113c88282612102565b6001600160a01b038416600090815260208190526040812091909155600280548492906113f6908490612102565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610fad565b6001600160a01b03821661148f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610599565b80600260008282546114a191906120ab565b90915550506001600160a01b038216600090815260208190526040812080548392906114ce9084906120ab565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006115258484846115c4565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156115aa5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610599565b6115b9853361073b8685612102565b506001949350505050565b6001600160a01b0383166116285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610599565b6001600160a01b03821661168a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610599565b6001600160a01b038316600090815260208190526040902054818110156117025760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610599565b61170c8282612102565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906117429084906120ab565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161178e91815260200190565b60405180910390a350505050565b600080806117a9866108fd565b90504281158015906117bb5750600085115b6118135760405162461bcd60e51b8152602060048201526024808201527f496e74616e6769626c652062616c616e6365206f7220616d6f756e7420746f206044820152631cd95b9960e21b6064820152608401610599565b6001600160a01b03871660009081526012602052604081205460ff1615801561185557506001600160a01b03881660009081526013602052604090205460ff16155b801561187857506001600160a01b03881660009081526016602052604090205415155b801561189e57506001600160a01b03881660009081526016602052604090206001015415155b80156118cd57506001600160a01b0388166000908152601660205260409020600101546118ca896108fd565b10155b801561190957506118e361016d620151806120e3565b6001600160a01b0389166000908152601660205260409020546119069084612102565b10155b9050801561191c5761191c88600061115d565b6001600160a01b03881660009081526012602052604090205460ff168061195b57506001600160a01b03881660009081526013602052604090205460ff165b8061197e57506001600160a01b03871660009081526013602052604090205460ff165b1561198f5783945050505050610568565b60006119a6846119a0896064611c0b565b90611bff565b9050600c6000815481106119ca57634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a0f57600b6000815481106119fd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549450611be8565b600c600181548110611a3157634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611a6457600b6001815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600281548110611a8657634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611ab957600b6002815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600381548110611adb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611b0e57600b6003815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600481548110611b3057634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611b6357600b6004815481106119fd57634e487b7160e01b600052603260045260246000fd5b600c600581548110611b8557634e487b7160e01b600052603260045260246000fd5b90600052602060002001548111611bb857600b6005815481106119fd57634e487b7160e01b600052603260045260246000fd5b600b600681548110611bda57634e487b7160e01b600052603260045260246000fd5b906000526020600020015494505b611bf28986611c23565b5092979650505050505050565b600061056882846120c3565b600061056882846120e3565b60006105688284612102565b600042905060146000846001600160a01b03166001600160a01b031681526020019081526020016000206040518060600160405280838152602001848152602001611c6d866108fd565b9052815460018181018455600093845260209384902083516003909302019182559282015192810192909255604001516002909101557ffc75473a3e9ee26aff1c5d83ba766038a0382e0ebb944323f0a119264d5637f083826109c4826108fd565b828054828255906000526020600020908101928215611d0a579160200282015b82811115611d0a578251825591602001919060010190611cef565b50611d16929150611d1a565b5090565b5b80821115611d165760008155600101611d1b565b80356001600160a01b0381168114611d4657600080fd5b919050565b600060208284031215611d5c578081fd5b61056882611d2f565b60008060408385031215611d77578081fd5b611d8083611d2f565b9150611d8e60208401611d2f565b90509250929050565b600080600060608486031215611dab578081fd5b611db484611d2f565b9250611dc260208501611d2f565b9150604084013590509250925092565b60008060408385031215611de4578182fd5b611ded83611d2f565b915060208301358015158114611e01578182fd5b809150509250929050565b60008060408385031215611e1e578182fd5b611e2783611d2f565b946020939093013593505050565b60006020808385031215611e47578182fd5b823567ffffffffffffffff80821115611e5e578384fd5b818501915085601f830112611e71578384fd5b813581811115611e8357611e8361216a565b8060051b604051601f19603f83011681018181108582111715611ea857611ea861216a565b604052828152858101935084860182860187018a1015611ec6578788fd5b8795505b83861015611ee8578035855260019590950194938601938601611eca565b5098975050505050505050565b602080825282518282018190526000919060409081850190868401855b82811015611f415781518051855286810151878601528501518585015260609093019290850190600101611f12565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f8657835183529284019291840191600101611f6a565b50909695505050505050565b6020808252825482820181905260008481528281209092916040850190845b81811015611f8657835483526001938401939285019201611fb1565b6000602080835283518082850152825b81811015611ff957858101830151858201604001528201611fdd565b8181111561200a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526027908201527f43616e206e6f7420757064617465204f776e65727320746178206578656d70746040820152662073746174757360c81b606082015260800190565b60208082526024908201527f4f6e6c7920746865206f776e65722063616e20696e766f6b652074686973206360408201526330b6361760e11b606082015260800190565b600082198211156120be576120be612154565b500190565b6000826120de57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156120fd576120fd612154565b500290565b60008282101561211457612114612154565b500390565b600181811c9082168061212d57607f821691505b6020821081141561214e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122052bfe62eb9e2f2c77a0c8682e6d6857d578b980f913f4b1faf5c7f26c313bfab64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c4b61696b656e20546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b41494b454e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Kaiken Token
Arg [1] : _symbol (string): KAIKEN

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 4b61696b656e20546f6b656e0000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4b41494b454e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

22468:12674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13596:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15763:169;;;;;;:::i;:::-;;:::i;:::-;;;6074:14:1;;6067:22;6049:41;;6037:2;6022:18;15763:169:0;6004:92:1;14716:108:0;14804:12;;14716:108;;;14283:25:1;;;14271:2;14256:18;14716:108:0;14238:76:1;26562:122:0;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;26662:14:0;;;;;:7;:14;;;;;;;;;26655:21;;;;;;;;;;;;;;;;;;;;26562:122;;;;;14049:13:1;;14031:32;;14119:4;14107:17;;;14101:24;14079:20;;;14072:54;;;;14004:18;26562:122:0;13986:146:1;25723:242:0;;;;;;:::i;:::-;;:::i;27291:195::-;;;;;;:::i;:::-;;:::i;:::-;;26200:99;;;;;;:::i;:::-;-1:-1:-1;;;;;26277:14:0;26254:4;26277:14;;;:7;:14;;;;;;;;;26200:99;14558:93;;;14641:2;14461:36:1;;14449:2;14434:18;14558:93:0;14416:87:1;28324:244:0;;;;;;:::i;:::-;;:::i;17245:215::-;;;;;;:::i;:::-;;:::i;34983:156::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26692:84::-;26761:7;;26692:84;;-1:-1:-1;;;;;26761:7:0;;;2974:51:1;;2962:2;2947:18;26692:84:0;2929:102:1;27494:249:0;;;;;;:::i;:::-;;:::i;26983:158::-;;;;;;:::i;:::-;;:::i;14887:127::-;;;;;;:::i;:::-;;:::i;26307:109::-;;;;;;:::i;:::-;-1:-1:-1;;;;;26389:19:0;26366:4;26389:19;;;:12;:19;;;;;;;;;26307:109;34603:367;;;;;;:::i;:::-;;:::i;27751:339::-;;;;;;:::i;:::-;;:::i;13815:104::-;;;:::i;26799:176::-;;;;;;:::i;:::-;;:::i;26428:122::-;;;;;;:::i;:::-;;:::i;26097:95::-;;;:::i;:::-;;;;;;;:::i;17963:377::-;;;;;;:::i;:::-;;:::i;25508:207::-;;;;;;:::i;:::-;;:::i;28098:218::-;;;;;;:::i;:::-;;:::i;15465:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15581:18:0;;;15554:7;15581:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15465:151;27149:134;;;;;;:::i;:::-;;:::i;25987:102::-;;;:::i;13596:100::-;13650:13;13683:5;13676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13596:100;:::o;15763:169::-;15846:4;15863:39;7813:10;15886:7;15895:6;15863:8;:39::i;:::-;-1:-1:-1;15920:4:0;15763:169;;;;:::o;25723:242::-;23545:1;25876:12;:28;25851:12;25922:35;25940:4;25946:2;25950:6;25922:17;:35::i;:::-;25915:42;;25723:242;;;;;;:::o;27291:195::-;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;;;;;;;;;27396:5:::1;::::0;-1:-1:-1;;;;;27383:18:0;;::::1;27396:5:::0;::::1;27383:18;;27375:58;;;::::0;-1:-1:-1;;;27375:58:0;;13671:2:1;27375:58:0::1;::::0;::::1;13653:21:1::0;13710:2;13690:18;;;13683:30;13749:29;13729:18;;;13722:57;13796:18;;27375:58:0::1;13643:177:1::0;27375:58:0::1;27444:34;27455:9;27466:11;27444:10;:34::i;:::-;27291:195:::0;;:::o;28324:244::-;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28406:23:0;::::1;;::::0;;;:12:::1;:23;::::0;;;;;::::1;;28398:72;;;::::0;-1:-1:-1;;;28398:72:0;;9341:2:1;28398:72:0::1;::::0;::::1;9323:21:1::0;9380:2;9360:18;;;9353:30;9419:34;9399:18;;;9392:62;-1:-1:-1;;;9470:18:1;;;9463:34;9514:19;;28398:72:0::1;9313:226:1::0;28398:72:0::1;-1:-1:-1::0;;;;;28484:23:0;::::1;28510:5;28484:23:::0;;;:12:::1;:23;::::0;;;;;;;;:31;;-1:-1:-1;;28484:31:0::1;::::0;;28531:29;;2974:51:1;;;28531:29:0::1;::::0;2947:18:1;28531:29:0::1;;;;;;;;28324:244:::0;:::o;17245:215::-;7813:10;17333:4;17382:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17382:34:0;;;;;;;;;;17333:4;;17350:80;;17373:7;;17382:47;;17419:10;;17382:47;:::i;:::-;17350:8;:80::i;34983:156::-;-1:-1:-1;;;;;35105:26:0;;;;;;:20;:26;;;;;;;;35100:31;;;;;;;;;;;;;;;;;35067:21;;35100:31;;35105:26;;35100:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34983:156;;;:::o;27494:249::-;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;27598:5:::1;::::0;-1:-1:-1;;;;;27585:18:0;;::::1;27598:5:::0;::::1;27585:18;;27577:70;;;;-1:-1:-1::0;;;27577:70:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27658:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;;;;:28;;-1:-1:-1;;27658:28:0::1;::::0;::::1;;::::0;;::::1;::::0;;;27702:33;;3204:51:1;;;3271:18;;;3264:50;27702:33:0::1;::::0;3177:18:1;27702:33:0::1;;;;;;;;27494:249:::0;;:::o;26983:158::-;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;27064:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;27104:29;27122:10;27104:29;;;;;;:::i;14887:127::-:0;-1:-1:-1;;;;;14988:18:0;14961:7;14988:18;;;;;;;;;;;;14887:127::o;34603:367::-;34705:9;34717:15;34705:27;;34743:20;:26;34764:4;-1:-1:-1;;;;;34743:26:0;-1:-1:-1;;;;;34743:26:0;;;;;;;;;;;;34775:116;;;;;;;;34812:4;34775:116;;;;34836:4;34775:116;;;;34864:15;34874:4;34864:9;:15::i;:::-;34775:116;;34743:149;;;;;;;;-1:-1:-1;34743:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34908:54;34928:4;34934;34940:15;34928:4;34940:9;:15::i;:::-;34908:54;;;-1:-1:-1;;;;;3574:32:1;;;3556:51;;3638:2;3623:18;;3616:34;;;;3666:18;;;3659:34;3724:2;3709:18;;3702:34;;;3543:3;3528:19;34908:54:0;;;;;;;34603:367;;;:::o;27751:339::-;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;27860:5:::1;::::0;-1:-1:-1;;;;;27847:18:0;;::::1;27860:5:::0;::::1;27847:18;;27839:70;;;;-1:-1:-1::0;;;27839:70:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27920:23:0;::::1;;::::0;;;:12:::1;:23;::::0;;;;:33;;-1:-1:-1;;27920:33:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;27964:65:::1;;-1:-1:-1::0;;;;;27991:18:0;::::1;28012:5;27991:18:::0;;;:7:::1;:18;::::0;;;;:26;;-1:-1:-1;;27991:26:0::1;::::0;;27964:65:::1;28044:38;::::0;;-1:-1:-1;;;;;3222:32:1;;3204:51;;3298:14;;3291:22;3286:2;3271:18;;3264:50;28044:38:0::1;::::0;3177:18:1;28044:38:0::1;3159:161:1::0;13815:104:0;13871:13;13904:7;13897:14;;;;;:::i;26799:176::-;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;26886:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;26932:35;26953:13;26932:35;;;;;;:::i;26428:122::-:0;-1:-1:-1;;;;;26522:20:0;;;;;;:13;:20;;;;;;;;26515:27;;;;;;;;;;;;;;;;;26485:18;;26515:27;;26522:20;;26515:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26097:95;26142:13;26174:10;26167:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26097:95;:::o;17963:377::-;7813:10;18056:4;18100:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18100:34:0;;;;;;;;;;18153:35;;;;18145:85;;;;-1:-1:-1;;;18145:85:0;;12905:2:1;18145:85:0;;;12887:21:1;12944:2;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;-1:-1:-1;;;13034:18:1;;;13027:35;13079:19;;18145:85:0;12877:227:1;18145:85:0;18241:67;7813:10;18264:7;18273:34;18292:15;18273:16;:34;:::i;18241:67::-;-1:-1:-1;18328:4:0;;17963:377;-1:-1:-1;;;17963:377:0:o;25508:207::-;25609:4;25625:12;:23;;;25666:41;25684:10;25696:2;25700:6;25666:17;:41::i;28098:218::-;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28175:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;::::1;;28167:61;;;::::0;-1:-1:-1;;;28167:61:0;;11735:2:1;28167:61:0::1;::::0;::::1;11717:21:1::0;11774:2;11754:18;;;11747:30;11813:32;11793:18;;;11786:60;11863:18;;28167:61:0::1;11707:180:1::0;28167:61:0::1;-1:-1:-1::0;;;;;28242:18:0;::::1;28263:5;28242:18:::0;;;:7:::1;:18;::::0;;;;;;;;:26;;-1:-1:-1;;28242:26:0::1;::::0;;28284:24;;2974:51:1;;;28284:24:0::1;::::0;2947:18:1;28284:24:0::1;2929:102:1::0;27149:134:0;24143:5;;-1:-1:-1;;;;;24143:5:0;24129:10;:19;24121:68;;;;-1:-1:-1;;;24121:68:0;;;;;;;:::i;:::-;27218:7:::1;:18:::0;;-1:-1:-1;;;;;;27218:18:0::1;-1:-1:-1::0;;;;;27218:18:0;::::1;::::0;;::::1;::::0;;;27252:23:::1;::::0;2974:51:1;;;27252:23:0::1;::::0;2962:2:1;2947:18;27252:23:0::1;2929:102:1::0;25987::0;26035:13;26068;26061:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25987:102;:::o;21319:346::-;-1:-1:-1;;;;;21421:19:0;;21413:68;;;;-1:-1:-1;;;21413:68:0;;12500:2:1;21413:68:0;;;12482:21:1;12539:2;12519:18;;;12512:30;12578:34;12558:18;;;12551:62;-1:-1:-1;;;12629:18:1;;;12622:34;12673:19;;21413:68:0;12472:226:1;21413:68:0;-1:-1:-1;;;;;21500:21:0;;21492:68;;;;-1:-1:-1;;;21492:68:0;;7718:2:1;21492:68:0;;;7700:21:1;7757:2;7737:18;;;7730:30;7796:34;7776:18;;;7769:62;-1:-1:-1;;;7847:18:1;;;7840:32;7889:19;;21492:68:0;7690:224:1;21492:68:0;-1:-1:-1;;;;;21573:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21625:32;;14283:25:1;;;21625:32:0;;14256:18:1;21625:32:0;;;;;;;;21319:346;;;:::o;33230:1339::-;33461:5;;33377:12;;33413:15;;-1:-1:-1;;;;;33452:14:0;;;33461:5;;33452:14;:33;;;;-1:-1:-1;33479:5:0;;-1:-1:-1;;;;;33479:5:0;33471:14;;;;:7;:14;;;;;;;;33470:15;33452:33;33449:236;33709:12;;33705:568;;33750:28;33765:3;33770:7;33750:14;:28::i;:::-;;33705:568;;;33814:14;33832:39;33851:5;33858:3;33863:7;33832:18;:39::i;:::-;33811:60;-1:-1:-1;33942:22:0;;-1:-1:-1;33942:7:0;33811:60;33942:11;:22::i;:::-;33922:16;33932:5;33922:9;:16::i;:::-;:42;;33896:148;;;;-1:-1:-1;;;33896:148:0;;10920:2:1;33896:148:0;;;10902:21:1;10959:2;10939:18;;;10932:30;10998:34;10978:18;;;10971:62;-1:-1:-1;;;11049:18:1;;;11042:42;11101:19;;33896:148:0;10892:234:1;33896:148:0;34077:13;;34074:120;;34111:23;34117:5;34124:9;34111:5;:23::i;:::-;34159:7;;34153:25;;-1:-1:-1;;;;;34159:7:0;34168:9;34153:5;:25::i;:::-;34222:39;34241:5;34248:3;34253:7;34222:18;:39::i;:::-;;33705:568;;-1:-1:-1;;;;;34297:12:0;;;;;;:7;:12;;;;;:22;34293:89;;-1:-1:-1;;;;;34341:12:0;;;;;;:7;:12;;;;;:29;;;34293:89;34421:14;34431:3;34421:9;:14::i;:::-;-1:-1:-1;;;;;34398:12:0;;;;;;:7;:12;;;;;:20;;:37;34471:16;34481:5;34471:9;:16::i;:::-;-1:-1:-1;;;;;34446:14:0;;;;;;;;:7;:14;;;;;:22;;;;:41;;;;34498:31;-1:-1:-1;34446:22:0;;33230:1339;-1:-1:-1;;33230:1339:0:o;28603:412::-;-1:-1:-1;;;;;28689:18:0;;;;;;:7;:18;;;;;;;;28688:19;;:47;;-1:-1:-1;;;;;;28712:23:0;;;;;;:12;:23;;;;;;;;28711:24;28688:47;28680:91;;;;-1:-1:-1;;;28680:91:0;;9746:2:1;28680:91:0;;;9728:21:1;9785:2;9765:18;;;9758:30;9824:33;9804:18;;;9797:61;9875:18;;28680:91:0;9718:181:1;28680:91:0;28788:20;28785:181;;-1:-1:-1;;;;;28825:18:0;;;;;;:7;:18;;;;;:25;;-1:-1:-1;;28825:25:0;28846:4;28825:25;;;28785:181;;;-1:-1:-1;;;;;28883:23:0;;;;;;:12;:23;;;;;;;;:30;;-1:-1:-1;;28883:30:0;;;28909:4;28883:30;;;;28928:7;:18;;;;;;:26;;;;;;;28785:181;28981:22;;-1:-1:-1;;;;;2992:32:1;;2974:51;;28981:22:0;;2962:2:1;2947:18;28981:22:0;2929:102:1;15227:175:0;15313:4;15330:42;7813:10;15354:9;15365:6;15330:9;:42::i;32462:383::-;32588:19;32609:14;32636:18;32657:42;32675:5;32682:3;32687:11;32657:17;:42::i;:::-;32636:63;-1:-1:-1;32727:56:0;32743:39;32636:63;32743:20;:11;23413:3;32743:15;:20::i;:::-;:24;;:39::i;:::-;32727:11;;:15;:56::i;:::-;32710:73;-1:-1:-1;32806:31:0;:11;32710:73;32806:15;:31::i;:::-;32794:43;;32462:383;;;;;;;:::o;2823:98::-;2881:7;2908:5;2912:1;2908;:5;:::i;20387:494::-;-1:-1:-1;;;;;20471:21:0;;20463:67;;;;-1:-1:-1;;;20463:67:0;;11333:2:1;20463:67:0;;;11315:21:1;11372:2;11352:18;;;11345:30;11411:34;11391:18;;;11384:62;-1:-1:-1;;;11462:18:1;;;11455:31;11503:19;;20463:67:0;11305:223:1;20463:67:0;-1:-1:-1;;;;;20630:18:0;;20605:22;20630:18;;;;;;;;;;;20667:24;;;;20659:71;;;;-1:-1:-1;;;20659:71:0;;7315:2:1;20659:71:0;;;7297:21:1;7354:2;7334:18;;;7327:30;7393:34;7373:18;;;7366:62;-1:-1:-1;;;7444:18:1;;;7437:32;7486:19;;20659:71:0;7287:224:1;20659:71:0;20762:23;20779:6;20762:14;:23;:::i;:::-;-1:-1:-1;;;;;20741:18:0;;:9;:18;;;;;;;;;;:44;;;;20796:12;:22;;20812:6;;20741:9;20796:22;;20812:6;;20796:22;:::i;:::-;;;;-1:-1:-1;;20836:37:0;;14283:25:1;;;20862:1:0;;-1:-1:-1;;;;;20836:37:0;;;;;14271:2:1;14256:18;20836:37:0;14238:76:1;19716:338:0;-1:-1:-1;;;;;19800:21:0;;19792:65;;;;-1:-1:-1;;;19792:65:0;;13311:2:1;19792:65:0;;;13293:21:1;13350:2;13330:18;;;13323:30;13389:33;13369:18;;;13362:61;13440:18;;19792:65:0;13283:181:1;19792:65:0;19948:6;19932:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;19965:18:0;;:9;:18;;;;;;;;;;:28;;19987:6;;19965:9;:28;;19987:6;;19965:28;:::i;:::-;;;;-1:-1:-1;;20009:37:0;;14283:25:1;;;-1:-1:-1;;;;;20009:37:0;;;20026:1;;20009:37;;14271:2:1;14256:18;20009:37:0;;;;;;;19716:338;;:::o;16414:422::-;16520:4;16537:36;16547:6;16555:9;16566:6;16537:9;:36::i;:::-;-1:-1:-1;;;;;16613:19:0;;16586:24;16613:19;;;:11;:19;;;;;;;;7813:10;16613:33;;;;;;;;16665:26;;;;16657:79;;;;-1:-1:-1;;;16657:79:0;;10106:2:1;16657:79:0;;;10088:21:1;10145:2;10125:18;;;10118:30;10184:34;10164:18;;;10157:62;-1:-1:-1;;;10235:18:1;;;10228:38;10283:19;;16657:79:0;10078:230:1;16657:79:0;16747:57;16756:6;7813:10;16778:25;16797:6;16778:16;:25;:::i;16747:57::-;-1:-1:-1;16824:4:0;;16414:422;-1:-1:-1;;;;16414:422:0:o;18830:604::-;-1:-1:-1;;;;;18936:20:0;;18928:70;;;;-1:-1:-1;;;18928:70:0;;12094:2:1;18928:70:0;;;12076:21:1;12133:2;12113:18;;;12106:30;12172:34;12152:18;;;12145:62;-1:-1:-1;;;12223:18:1;;;12216:35;12268:19;;18928:70:0;12066:227:1;18928:70:0;-1:-1:-1;;;;;19017:23:0;;19009:71;;;;-1:-1:-1;;;19009:71:0;;6911:2:1;19009:71:0;;;6893:21:1;6950:2;6930:18;;;6923:30;6989:34;6969:18;;;6962:62;-1:-1:-1;;;7040:18:1;;;7033:33;7083:19;;19009:71:0;6883:225:1;19009:71:0;-1:-1:-1;;;;;19177:17:0;;19153:21;19177:17;;;;;;;;;;;19213:23;;;;19205:74;;;;-1:-1:-1;;;19205:74:0;;8121:2:1;19205:74:0;;;8103:21:1;8160:2;8140:18;;;8133:30;8199:34;8179:18;;;8172:62;-1:-1:-1;;;8250:18:1;;;8243:36;8296:19;;19205:74:0;8093:228:1;19205:74:0;19310:22;19326:6;19310:13;:22;:::i;:::-;-1:-1:-1;;;;;19290:17:0;;;:9;:17;;;;;;;;;;;:42;;;;19343:20;;;;;;;;:30;;19367:6;;19290:9;19343:30;;19367:6;;19343:30;:::i;:::-;;;;;;;;19408:9;-1:-1:-1;;;;;19391:35:0;19400:6;-1:-1:-1;;;;;19391:35:0;;19419:6;19391:35;;;;14283:25:1;;14271:2;14256:18;;14238:76;19391:35:0;;;;;;;;18830:604;;;;:::o;30499:1955::-;30624:8;;;30697:16;30707:5;30697:9;:16::i;:::-;30678:35;-1:-1:-1;30736:15:0;30786;;;;;:34;;;30819:1;30805:11;:15;30786:34;30764:120;;;;-1:-1:-1;;;30764:120:0;;10515:2:1;30764:120:0;;;10497:21:1;10554:2;10534:18;;;10527:30;10593:34;10573:18;;;10566:62;-1:-1:-1;;;10644:18:1;;;10637:34;10688:19;;30764:120:0;10487:226:1;30764:120:0;-1:-1:-1;;;;;30939:14:0;;30897:25;30939:14;;;:7;:14;;;;;;;;30938:15;:52;;;;-1:-1:-1;;;;;;30971:19:0;;;;;;:12;:19;;;;;;;;30970:20;30938:52;:97;;;;-1:-1:-1;;;;;;31007:14:0;;31034:1;31007:14;;;:7;:14;;;;;:24;:28;;30938:97;:140;;;;-1:-1:-1;;;;;;31052:14:0;;31077:1;31052:14;;;:7;:14;;;;;:22;;;:26;;30938:140;:199;;;;-1:-1:-1;;;;;;31115:14:0;;;;;;:7;:14;;;;;:22;;;31095:16;31123:5;31095:9;:16::i;:::-;:42;;30938:199;:269;;;;-1:-1:-1;31190:17:0;23456:3;31201:6;31190:17;:::i;:::-;-1:-1:-1;;;;;31162:14:0;;;;;;:7;:14;;;;;:24;31155:31;;:4;:31;:::i;:::-;:52;;30938:269;30897:310;;31224:20;31220:50;;;31246:24;31257:5;31264;31246:10;:24::i;:::-;-1:-1:-1;;;;;31439:14:0;;;;;;:7;:14;;;;;;;;;:50;;-1:-1:-1;;;;;;31470:19:0;;;;;;:12;:19;;;;;;;;31439:50;:84;;;-1:-1:-1;;;;;;31506:17:0;;;;;;:12;:17;;;;;;;;31439:84;31421:134;;;31542:13;31535:20;;;;;;;;31421:134;31568:26;31597:37;31622:11;31597:20;:11;31613:3;31597:15;:20::i;:::-;:24;;:37::i;:::-;31568:66;;31676:10;31687:1;31676:13;;;;;;-1:-1:-1;;;31676:13:0;;;;;;;;;;;;;;;;;31651:21;:38;31647:713;;31722:13;31736:1;31722:16;;;;;;-1:-1:-1;;;31722:16:0;;;;;;;;;;;;;;;;;31706:32;;31647:713;;;31785:10;31796:1;31785:13;;;;;;-1:-1:-1;;;31785:13:0;;;;;;;;;;;;;;;;;31760:21;:38;31756:604;;31831:13;31845:1;31831:16;;;;;;-1:-1:-1;;;31831:16:0;;;;;;;;31756:604;31894:10;31905:1;31894:13;;;;;;-1:-1:-1;;;31894:13:0;;;;;;;;;;;;;;;;;31869:21;:38;31865:495;;31940:13;31954:1;31940:16;;;;;;-1:-1:-1;;;31940:16:0;;;;;;;;31865:495;32003:10;32014:1;32003:13;;;;;;-1:-1:-1;;;32003:13:0;;;;;;;;;;;;;;;;;31978:21;:38;31974:386;;32049:13;32063:1;32049:16;;;;;;-1:-1:-1;;;32049:16:0;;;;;;;;31974:386;32112:10;32123:1;32112:13;;;;;;-1:-1:-1;;;32112:13:0;;;;;;;;;;;;;;;;;32087:21;:38;32083:277;;32158:13;32172:1;32158:16;;;;;;-1:-1:-1;;;32158:16:0;;;;;;;;32083:277;32221:10;32232:1;32221:13;;;;;;-1:-1:-1;;;32221:13:0;;;;;;;;;;;;;;;;;32196:21;:38;32192:168;;32267:13;32281:1;32267:16;;;;;;-1:-1:-1;;;32267:16:0;;;;;;;;32192:168;32332:13;32346:1;32332:16;;;;;;-1:-1:-1;;;32332:16:0;;;;;;;;;;;;;;;;;32316:32;;32192:168;32380:35;32394:5;32401:13;32380;:35::i;:::-;-1:-1:-1;32433:13:0;;30499:1955;-1:-1:-1;;;;;;;30499:1955:0:o;3960:98::-;4018:7;4045:5;4049:1;4045;:5;:::i;3561:98::-;3619:7;3646:5;3650:1;3646;:5;:::i;3204:98::-;3262:7;3289:5;3293:1;3289;:5;:::i;32853:369::-;32952:14;32969:15;32952:32;;32995:13;:20;33009:5;-1:-1:-1;;;;;32995:20:0;-1:-1:-1;;;;;32995:20:0;;;;;;;;;;;;33021:122;;;;;;;;33058:9;33021:122;;;;33087:4;33021:122;;;;33115:16;33125:5;33115:9;:16::i;:::-;33021:122;;32995:149;;;;;;;;-1:-1:-1;32995:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33160:54;33173:5;33180:9;33191:16;33173:5;33191:9;:16::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:367::-;1076:6;1084;1137:2;1125:9;1116:7;1112:23;1108:32;1105:2;;;1158:6;1150;1143:22;1105:2;1186:29;1205:9;1186:29;:::i;:::-;1176:39;;1265:2;1254:9;1250:18;1237:32;1312:5;1305:13;1298:21;1291:5;1288:32;1278:2;;1339:6;1331;1324:22;1278:2;1367:5;1357:15;;;1095:283;;;;;:::o;1383:264::-;1451:6;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:2;;;1533:6;1525;1518:22;1480:2;1561:29;1580:9;1561:29;:::i;:::-;1551:39;1637:2;1622:18;;;;1609:32;;-1:-1:-1;;;1470:177:1:o;1652:1171::-;1736:6;1767:2;1810;1798:9;1789:7;1785:23;1781:32;1778:2;;;1831:6;1823;1816:22;1778:2;1876:9;1863:23;1905:18;1946:2;1938:6;1935:14;1932:2;;;1967:6;1959;1952:22;1932:2;2010:6;1999:9;1995:22;1985:32;;2055:7;2048:4;2044:2;2040:13;2036:27;2026:2;;2082:6;2074;2067:22;2026:2;2123;2110:16;2145:2;2141;2138:10;2135:2;;;2151:18;;:::i;:::-;2197:2;2194:1;2190:10;2229:2;2223:9;2292:2;2288:7;2283:2;2279;2275:11;2271:25;2263:6;2259:38;2347:6;2335:10;2332:22;2327:2;2315:10;2312:18;2309:46;2306:2;;;2358:18;;:::i;:::-;2394:2;2387:22;2444:18;;;2478:15;;;;-1:-1:-1;2513:11:1;;;2543;;;2539:20;;2536:33;-1:-1:-1;2533:2:1;;;2587:6;2579;2572:22;2533:2;2614:6;2605:15;;2629:163;2643:2;2640:1;2637:9;2629:163;;;2700:17;;2688:30;;2661:1;2654:9;;;;;2738:12;;;;2770;;2629:163;;;-1:-1:-1;2811:6:1;1747:1076;-1:-1:-1;;;;;;;;1747:1076:1:o;3747:848::-;3970:2;4022:21;;;4092:13;;3995:18;;;4114:22;;;3941:4;;3970:2;4155;;4173:18;;;;4214:15;;;3941:4;4260:309;4274:6;4271:1;4268:13;4260:309;;;4333:13;;4371:9;;4359:22;;4421:11;;;4415:18;4401:12;;;4394:40;4474:11;;4468:18;4454:12;;;4447:40;4516:4;4507:14;;;;4544:15;;;;4296:1;4289:9;4260:309;;;-1:-1:-1;4586:3:1;;3950:645;-1:-1:-1;;;;;;;3950:645:1:o;4600:635::-;4771:2;4823:21;;;4893:13;;4796:18;;;4915:22;;;4742:4;;4771:2;4994:15;;;;4968:2;4953:18;;;4742:4;5040:169;5054:6;5051:1;5048:13;5040:169;;;5115:13;;5103:26;;5184:15;;;;5149:12;;;;5076:1;5069:9;5040:169;;;-1:-1:-1;5226:3:1;;4751:484;-1:-1:-1;;;;;;4751:484:1:o;5240:664::-;5408:2;5460:21;;;5530:13;;5433:18;;;5552:22;;;5379:4;5617:20;;;5660:19;;;5379:4;;5408:2;5605;5590:18;;;5379:4;5710:168;5724:6;5721:1;5718:13;5710:168;;;5785:13;;5773:26;;5866:1;5854:14;;;;5819:12;;;;5739:9;5710:168;;6101:603;6213:4;6242:2;6271;6260:9;6253:21;6303:6;6297:13;6346:6;6341:2;6330:9;6326:18;6319:34;6371:4;6384:140;6398:6;6395:1;6392:13;6384:140;;;6493:14;;;6489:23;;6483:30;6459:17;;;6478:2;6455:26;6448:66;6413:10;;6384:140;;;6542:6;6539:1;6536:13;6533:2;;;6612:4;6607:2;6598:6;6587:9;6583:22;6579:31;6572:45;6533:2;-1:-1:-1;6688:2:1;6667:15;-1:-1:-1;;6663:29:1;6648:45;;;;6695:2;6644:54;;6222:482;-1:-1:-1;;;6222:482:1:o;8326:403::-;8528:2;8510:21;;;8567:2;8547:18;;;8540:30;8606:34;8601:2;8586:18;;8579:62;-1:-1:-1;;;8672:2:1;8657:18;;8650:37;8719:3;8704:19;;8500:229::o;8734:400::-;8936:2;8918:21;;;8975:2;8955:18;;;8948:30;9014:34;9009:2;8994:18;;8987:62;-1:-1:-1;;;9080:2:1;9065:18;;9058:34;9124:3;9109:19;;8908:226::o;14508:128::-;14548:3;14579:1;14575:6;14572:1;14569:13;14566:2;;;14585:18;;:::i;:::-;-1:-1:-1;14621:9:1;;14556:80::o;14641:217::-;14681:1;14707;14697:2;;-1:-1:-1;;;14732:31:1;;14786:4;14783:1;14776:15;14814:4;14739:1;14804:15;14697:2;-1:-1:-1;14843:9:1;;14687:171::o;14863:168::-;14903:7;14969:1;14965;14961:6;14957:14;14954:1;14951:21;14946:1;14939:9;14932:17;14928:45;14925:2;;;14976:18;;:::i;:::-;-1:-1:-1;15016:9:1;;14915:116::o;15036:125::-;15076:4;15104:1;15101;15098:8;15095:2;;;15109:18;;:::i;:::-;-1:-1:-1;15146:9:1;;15085:76::o;15166:380::-;15245:1;15241:12;;;;15288;;;15309:2;;15363:4;15355:6;15351:17;15341:27;;15309:2;15416;15408:6;15405:14;15385:18;15382:38;15379:2;;;15462:10;15457:3;15453:20;15450:1;15443:31;15497:4;15494:1;15487:15;15525:4;15522:1;15515:15;15379:2;;15221:325;;;:::o;15551:127::-;15612:10;15607:3;15603:20;15600:1;15593:31;15643:4;15640:1;15633:15;15667:4;15664:1;15657:15;15683:127;15744:10;15739:3;15735:20;15732:1;15725:31;15775:4;15772:1;15765:15;15799:4;15796:1;15789:15

Swarm Source

ipfs://52bfe62eb9e2f2c77a0c8682e6d6857d578b980f913f4b1faf5c7f26c313bfab
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.