ETH Price: $3,212.33 (-1.34%)

Token

zkSync id (ZKID)

Overview

Max Total Supply

66,000,000.00000000318767104 ZKID

Holders

9,777

Market

Price

$0.01 @ 0.000002 ETH (-15.56%)

Onchain Market Cap

$523,264.50

Circulating Supply Market Cap

$523,264.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Odos: Router V2
Balance
816.404085616835879173 ZKID

Value
$6.47 ( ~0.00201411553959883 ETH) [0.0012%]
0x4bba932e9792a2b917d47830c93a9bc79320e4f7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$1,277.84
Market Capitalization:$523,264.00
Circulating Supply:66,000,000.00 ZKID
Market Data Source: Coinmarketcap

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:
ZKID

Compiler Version
v0.8.9+commit.e5eed63a

ZkSolc Version
v1.3.8

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license, Audited
File 1 of 1 : ZKID.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

/**
 * @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/[email protected]

pragma solidity ^0.8.9;

/**
 * @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/utils/[email protected]

pragma solidity ^0.8.9;

/**
 * @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) {
        return msg.data;
    }
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

pragma solidity ^0.8.9;

/**
 * @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 Contracts guidelines: functions revert
 * instead 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 default 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');
        unchecked {
            _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'
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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');
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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);

        _afterTokenTransfer(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');
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(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 transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

pragma solidity ^0.8.9;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, 'ERC20: burn amount exceeds allowance');
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

pragma solidity ^0.8.9;

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, 'ERC20Capped: cap is 0');
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), 'ERC20Capped: cap exceeded');
        super._mint(account, amount);
    }
}

// File @openzeppelin/contracts/security/[email protected]

pragma solidity ^0.8.9;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), 'Pausable: paused');
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), 'Pausable: not paused');
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.9;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File contracts/bolchalERC.sol

pragma solidity ^0.8.9;

contract ZKID is ERC20, ERC20Capped, ERC20Burnable, Pausable, Ownable {
    constructor()
        ERC20('zkSync id', 'ZKID')
        ERC20Capped(100000000*10**decimals())
    {
        
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, amount);
    }

    // The following functions are overrides required by Solidity.

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        super._afterTokenTransfer(from, to, amount);
    }

    function _mint(address to, uint256 amount) internal override(ERC20, ERC20Capped) {
        super._mint(to, amount);
    }

    function _burn(address account, uint256 amount) internal override(ERC20) {
        super._burn(account, amount);
    }

}

Settings
{
  "compilerPath": "",
  "experimental": {},
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000339556f0872d0393c4ce90d9a03fab6d84323c48c9ad95a8cc925ebbd8c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000600000000000200010000000103550000006001100270000002e20010019d00000001012001900000002a0000c13d0000008001000039000000400010043f0000000001000031000000040110008c0000028a0000413d0000000101000367000000000101043b000000e001100270000002ed0210009c0000004b0000a13d000002ee0210009c0000006f0000a13d000002ef0210009c000000b20000213d000002f30210009c000001690000613d000002f40210009c000001860000613d000002f50110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d00000000010000310b82037e0000040f0b8207820000040f0000000101000039000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e000000a001000039000000400010043f0000000001000416000000000110004c0000028a0000c13d000000400600043d000002e30160009c000000450000813d0000004001600039000000400010043f00000009010000390000000008160436000002e4010000410000000000180435000000400400043d000002e50140009c000000450000213d0000004001400039000000400010043f0000002001400039000002e6020000410000000000210435000000040100003900000000001404350000000007060433000002e70170009c000000c40000a13d000002eb0100004100000000001004350000004101000039000000040010043f000002ec0100004100000b8400010430000002fc0210009c0000008f0000213d000003030210009c000000d60000a13d000003040210009c000001a70000613d000003050210009c000001c20000613d000003060110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d000000400100043d00000012020000390000000000210435000002e202000041000002e20310009c0000000001028019000000400110021000000309011001c700000b830001042e000002f60210009c000000e90000a13d000002f70210009c000001d10000613d000002f80210009c000001e90000613d000002f90110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0b820a450000040f000002e201000041000000400200043d000002e20320009c0000000001024019000000400110021000000b830001042e000002fd0210009c000000fb0000a13d000002fe0210009c000001f50000613d000002ff0210009c0000020d0000613d000003000110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000200310008c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d00000004010000390000000101100367000000000101043b0b8208270000040f000002e201000041000000400200043d000002e20320009c0000000001024019000000400110021000000b830001042e000002f00210009c000002190000613d000002f10210009c000002280000613d000002f20110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d00000000010000310b8203b00000040f0b8209fc0000040f000002e201000041000000400200043d000002e20320009c0000000001024019000000400110021000000b830001042e0000000305000039000000000105041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000010e0000613d000002eb0100004100000000001004350000002201000039000000040010043f000002ec0100004100000b8400010430000003070210009c0000023a0000613d000003080110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d00000000010000310b82037e0000040f0b8205420000040f0000000101000039000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e000002fa0210009c0000025b0000613d000002fb0110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d00000000010000310b8203b00000040f0b8204790000040f000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e000003010210009c000002790000613d000003020110009c0000028a0000c13d0000000001000416000000000110004c0000028a0000c13d00000000010000310b82037e0000040f0b8206ea0000040f0000000101000039000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e000000200130008c000001360000413d000100000003001d000200000008001d000400000007001d000500000006001d000600000004001d0000000000500435000002e2010000410000000002000414000002e20320009c0000000001024019000000c001100210000002e8011001c70000801002000039000300000005001d0b820b7d0000040f00000001022001900000028a0000613d00000004070000290000001f027000390000000502200270000000200370008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000604000029000000030500002900000005060000290000000208000029000001360000813d000000000002041b0000000102200039000000000312004b000001320000413d0000001f0170008c0000028c0000a13d000400000007001d000500000006001d000600000004001d0000000000500435000002e2010000410000000002000414000002e20320009c0000000001024019000000c001100210000002e8011001c70000801002000039000300000005001d0b820b7d0000040f00000001022001900000028a0000613d0000000306000029000000200200008a000000040800002900000000032801700000002002000039000000000101043b0000000507000029000001590000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001510000413d000000000383004b000001640000813d0000000303800210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b0000000101000039000000010280021000000006040000290000000005060019000002960000013d0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0000000501000039000000000101041a00000008011002700000030b01100197000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0b82041a0000040f0000000002010019000000400100043d000600000001001d0b8203650000040f00000006040000290000000001410049000002e202000041000002e20310009c0000000001028019000002e20340009c000000000204401900000040022002100000006001100210000000000121019f00000b830001042e0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0000000201000039000000000101041a000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e0000000001000416000000000110004c0000028a0000c13d00000000010000310b8203950000040f0b8205ab0000040f0000000101000039000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0b8209cd0000040f000002e201000041000000400200043d000002e20320009c0000000001024019000000400110021000000b830001042e0000000001000416000000000110004c0000028a0000c13d00000000010000310b82037e0000040f0b8208b60000040f000002e201000041000000400200043d000002e20320009c0000000001024019000000400110021000000b830001042e0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0b820a8a0000040f000002e201000041000000400200043d000002e20320009c0000000001024019000000400110021000000b830001042e0000000001000416000000000110004c0000028a0000c13d00000000010000310b82037e0000040f0b820ace0000040f000002e201000041000000400200043d000002e20320009c0000000001024019000000400110021000000b830001042e0000000001000416000000000110004c0000028a0000c13d00000000010000310b82037e0000040f0b82048b0000040f0000000101000039000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e0000000001000416000000000110004c0000028a0000c13d00000000010000310b8203c50000040f000600000002001d0b8204560000040f00000006020000290b8204680000040f000000000101041a000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0b8203de0000040f0000000002010019000000400100043d000600000001001d0b8203650000040f00000006040000290000000001410049000002e202000041000002e20310009c0000000001028019000002e20340009c000000000204401900000040022002100000006001100210000000000121019f00000b830001042e0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c0000028a0000c13d0000000501000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d0000000000120435000002e201000041000002e20320009c0000000001024019000000400110021000000309011001c700000b830001042e0000000001000416000000000110004c0000028a0000c13d000000040100008a00000000011000310000030a02000041000000000310004c000000000300001900000000030240190000030a01100197000000000410004c000000000200a0190000030a0110009c00000000010300190000000001026019000000000110004c000002ac0000613d000000000100001900000b8400010430000000000170004c0000000001000019000002900000613d00000000010804330000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000000000112019f000000000015041b00000000010400190b8202ca0000040f000002e901000041000000800010043f0000000501000039000000000201041a000001000300008a000000000232016f000000000021041b00000000010004110b8203470000040f000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000002ea0100004100000b830001042e000000400100043d000600000001001d0000030c0100004100000000001004390000000001000412000000040010044300000024000004430b8202bc0000040f00000006030000290000000000130435000002e201000041000002e20230009c0000000001034019000000400110021000000309011001c700000b830001042e000002e2010000410000000002000414000002e20320009c0000000001024019000000c0011002100000030d011001c700008005020000390b820b7d0000040f0000000102200190000002c80000613d000000000101043b000000000001042d000000000100001900000b8400010430000500000000000200000000750104340000030e0250009c000003390000813d0000000404000039000000000304041a000000010230019000000001063002700000007f0360018f00000000060360190000001f0360008c00000000030000190000000103002039000000010330018f000000000232004b0000033f0000c13d000300000001001d000000200160008c000500000004001d000400000005001d000002ff0000413d000100000006001d000200000007001d0000000000400435000002e2010000410000000002000414000002e20320009c0000000001024019000000c001100210000002e8011001c700008010020000390b820b7d0000040f0000000102200190000003450000613d00000004050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000005040000290000000207000029000002ff0000813d000000000002041b0000000102200039000000000312004b000002fb0000413d0000001f0150008c0000032c0000a13d0000000000400435000002e2010000410000000002000414000002e20320009c0000000001024019000000c001100210000002e8011001c700008010020000390b820b7d0000040f0000000102200190000003450000613d000000200200008a000000040600002900000000032601700000002002000039000000000101043b00000003070000290000031d0000613d0000002002000039000000000400001900000000057200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000003150000413d000000000363004b000003280000813d0000000303600210000000f80330018f000000010400008a000000000334022f000000000343013f00000000027200190000000002020433000000000232016f000000000021041b000000010160021000000001011001bf0000000504000029000003370000013d000000000150004c0000000001000019000003370000613d0000000301500210000000010200008a000000000112022f000000000121013f0000000002070433000000000112016f0000000102500210000000000121019f000000000014041b000000000001042d000002eb0100004100000000001004350000004101000039000000040010043f000002ec0100004100000b8400010430000002eb0100004100000000001004350000002201000039000000040010043f000002ec0100004100000b8400010430000000000100001900000b8400010430000000000601001900000008016002100000030f011001970000000502000039000000000302041a0000031004300197000000000114019f000000000012041b000000400100043d000002e2020000410000000004000414000002e20540009c0000000004028019000002e20510009c00000000010280190000004001100210000000c002400210000000000112019f00000008023002700000030b0520019700000311011001c70000800d02000039000000030300003900000312040000410b820b780000040f0000000101200190000003630000613d000000000001042d000000000100001900000b84000104300000002003000039000000000431043600000000030204330000000000340435000000000430004c0000004001100039000003790000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b0000036d0000413d000000000234004b000003790000a13d00000000023100190000000000020435000003790000013d0000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000000040110008a0000030a020000410000003f0310008c000000000300001900000000030220190000030a01100197000000000410004c00000000020080190000030a0110009c00000000010300190000000001026019000000000110004c000003930000613d00000001020003670000000401200370000000000101043b0000030b0310009c000003930000213d0000002402200370000000000202043b000000000001042d000000000100001900000b8400010430000000040110008a0000030a020000410000005f0310008c000000000300001900000000030220190000030a01100197000000000410004c00000000020080190000030a0110009c00000000010300190000000001026019000000000110004c000003ae0000613d00000001030003670000000401300370000000000101043b0000030b0210009c000003ae0000213d0000002402300370000000000202043b0000030b0420009c000003ae0000213d0000004403300370000000000303043b000000000001042d000000000100001900000b8400010430000000040110008a0000030a020000410000001f0310008c000000000300001900000000030220190000030a01100197000000000410004c00000000020080190000030a0110009c00000000010300190000000001026019000000000110004c000003c30000613d00000004010000390000000101100367000000000101043b0000030b0210009c000003c30000213d000000000001042d000000000100001900000b8400010430000000040110008a0000030a020000410000003f0310008c000000000300001900000000030220190000030a01100197000000000410004c00000000020080190000030a0110009c00000000010300190000000001026019000000000110004c000003dc0000613d00000001020003670000000401200370000000000101043b0000030b0310009c000003dc0000213d0000002402200370000000000202043b0000030b0320009c000003dc0000213d000000000001042d000000000100001900000b84000104300000000305000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b0000040e0000c13d000000400100043d0000000003210436000000000660004c000003f30000c13d000001000200008a000000000224016f00000000002304350000004004000039000004040000013d00000000005004350000002004000039000000000520004c000004040000613d0000031304000041000000000600001900000000050600190000000006350019000000000704041a000000000076043500000001044000390000002006500039000000000726004b000003f90000413d0000005f02500039000000200300008a000000000432016f0000000002140019000000000342004b00000000030000190000000103004039000002e70420009c000004140000213d0000000103300190000004140000c13d000000400020043f000000000001042d000002eb0100004100000000001004350000002201000039000000040010043f000002ec0100004100000b8400010430000002eb0100004100000000001004350000004101000039000000040010043f000002ec0100004100000b84000104300000000405000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b0000044a0000c13d000000400100043d0000000003210436000000000660004c0000042f0000c13d000001000200008a000000000224016f00000000002304350000004004000039000004400000013d00000000005004350000002004000039000000000520004c000004400000613d0000031404000041000000000600001900000000050600190000000006350019000000000704041a000000000076043500000001044000390000002006500039000000000726004b000004350000413d0000005f02500039000000200300008a000000000432016f0000000002140019000000000342004b00000000030000190000000103004039000002e70420009c000004500000213d0000000103300190000004500000c13d000000400020043f000000000001042d000002eb0100004100000000001004350000002201000039000000040010043f000002ec0100004100000b8400010430000002eb0100004100000000001004350000004101000039000000040010043f000002ec0100004100000b84000104300000030b0110019700000000001004350000000101000039000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000004660000613d000000000101043b000000000001042d000000000100001900000b84000104300000030b022001970000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000004770000613d000000000101043b000000000001042d000000000100001900000b84000104300000030b011001970000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000004890000613d000000000101043b000000000101041a000000000001042d000000000100001900000b8400010430000600000000000200000000030004110000030b05300198000004eb0000613d0000030b04100198000005000000613d000500000004001d000600000002001d000100000003001d000200000001001d0000000501000039000000000101041a000000ff01100190000005150000c13d000400000005001d0000000000500435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000004e90000613d000000000101043b000000000201041a0000000601000029000300000002001d000000000112004b000005270000413d00000004010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000004e90000613d000000060200002900000003030000290000000002230049000000000101043b000000000021041b00000005010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000004e90000613d000000010200008a0000000604000029000000000324013f000000000101043b000000000201041a000000000332004b0000053c0000213d0000000002420019000000000021041b000000400100043d0000000000410435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000031904000041000000010500002900000002060000290b820b780000040f0000000101200190000004e90000613d000000000001042d000000000100001900000b8400010430000000400100043d00000064021000390000031f03000041000000000032043500000044021000390000032003000041000000000032043500000024021000390000002503000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000031d03000041000000000032043500000044021000390000031e03000041000000000032043500000024021000390000002303000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000044021000390000031603000041000000000032043500000024021000390000001003000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000064021000390000031a03000041000000000032043500000044021000390000031b03000041000000000032043500000024021000390000002603000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000002eb0100004100000000001004350000001101000039000000040010043f000002ec0100004100000b8400010430000400000000000200000000030004110000030b04300198000005810000613d000100000002001d000200000003001d000300000001001d0000030b01100198000400000001001d000005960000613d00000000004004350000000101000039000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000057f0000613d000000000101043b00000004020000290000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000057f0000613d000000000101043b0000000102000029000000000021041b000000400100043d0000000000210435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000032104000041000000020500002900000003060000290b820b780000040f00000001012001900000057f0000613d000000000001042d000000000100001900000b8400010430000000400100043d00000064021000390000032403000041000000000032043500000044021000390000032503000041000000000032043500000024021000390000002403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000032203000041000000000032043500000044021000390000032303000041000000000032043500000024021000390000002203000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b84000104300007000000000002000500000001001d0000030b01100198000600000001001d000006690000613d0000030b012001980000067e0000613d000400000001001d000300000002001d000700000003001d0000000501000039000000000101041a000000ff01100190000006930000c13d00000006010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000006670000613d000000000101043b000000000201041a0000000701000029000200000002001d000000000112004b000006a50000413d00000006010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000006670000613d000000070200002900000002030000290000000002230049000000000101043b000000000021041b00000004010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000006670000613d000000010200008a0000000704000029000000000324013f000000000101043b000000000201041a000000000332004b000006ba0000213d0000000002420019000000000021041b000000400100043d0000000000410435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000031904000041000000050500002900000003060000290b820b780000040f0000000101200190000006670000613d000000060100002900000000001004350000000101000039000300000001001d000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000006670000613d000000000101043b0000000002000411000200000002001d0000030b02200197000400000002001d0000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000006670000613d000000000101043b000000000201041a0000000701000029000000000112004b000006c00000413d000100000002001d0000000401000029000000000110004c000006d50000613d000000060100002900000000001004350000000301000029000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000006670000613d000000000101043b00000004020000290000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000006670000613d000000070200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000032104000041000000050500002900000002060000290b820b780000040f0000000101200190000006670000613d000000000001042d000000000100001900000b8400010430000000400100043d00000064021000390000031f03000041000000000032043500000044021000390000032003000041000000000032043500000024021000390000002503000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000031d03000041000000000032043500000044021000390000031e03000041000000000032043500000024021000390000002303000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000044021000390000031603000041000000000032043500000024021000390000001003000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000064021000390000031a03000041000000000032043500000044021000390000031b03000041000000000032043500000024021000390000002603000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000002eb0100004100000000001004350000001101000039000000040010043f000002ec0100004100000b8400010430000000400100043d00000064021000390000032603000041000000000032043500000044021000390000032703000041000000000032043500000024021000390000002803000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000032203000041000000000032043500000044021000390000032303000041000000000032043500000024021000390000002203000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b84000104300006000000000002000500000002001d000600000001001d0000000001000411000400000001001d00000000001004350000000101000039000200000001001d000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007500000613d000000000101043b00000006020000290000030b02200197000300000002001d0000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007500000613d000000010200008a0000000503000029000000000223013f000000000101043b000000000301041a000000000123004b000007520000213d00000004010000290000030b01100198000007580000613d000100000003001d0000000302000029000000000220004c0000076d0000613d00000000001004350000000201000029000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007500000613d000000000101043b00000003020000290000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007500000613d000000050200002900000001030000290000000002230019000000000101043b000000000021041b000000400100043d0000000000210435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000032104000041000000040500002900000006060000290b820b780000040f0000000101200190000007500000613d000000000001042d000000000100001900000b8400010430000002eb0100004100000000001004350000001101000039000000040010043f000002ec0100004100000b8400010430000000400100043d00000064021000390000032403000041000000000032043500000044021000390000032503000041000000000032043500000024021000390000002403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000032203000041000000000032043500000044021000390000032303000041000000000032043500000024021000390000002203000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b84000104300006000000000002000500000002001d000600000001001d0000000001000411000400000001001d00000000001004350000000101000039000200000001001d000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007e60000613d000000000101043b00000006020000290000030b02200197000300000002001d0000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007e60000613d000000000101043b000000000201041a0000000501000029000000000112004b000007e80000413d00000004010000290000030b01100198000007fd0000613d000100000002001d0000000302000029000000000220004c000008120000613d00000000001004350000000201000029000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007e60000613d000000000101043b00000003020000290000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000007e60000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000032104000041000000040500002900000006060000290b820b780000040f0000000101200190000007e60000613d000000000001042d000000000100001900000b8400010430000000400100043d00000064021000390000032803000041000000000032043500000044021000390000032903000041000000000032043500000024021000390000002503000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000032403000041000000000032043500000044021000390000032503000041000000000032043500000024021000390000002403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000032203000041000000000032043500000044021000390000032303000041000000000032043500000024021000390000002203000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b840001043000040000000000020000000002000411000000000320004c000008740000613d000400000001001d0000000501000039000000000101041a000000ff01100190000008890000c13d000200000002001d0000030b01200197000300000001001d0000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000008720000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b0000089b0000413d00000003010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f0000000102200190000008720000613d000000040400002900000001020000290000000002420049000000000101043b000000000021041b0000000201000039000000000201041a000000000342004b000008b00000413d0000000002420049000000000021041b000000400100043d0000000000410435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000031904000041000000020500002900000000060000190b820b780000040f0000000101200190000008720000613d000000000001042d000000000100001900000b8400010430000000400100043d00000064021000390000032c03000041000000000032043500000044021000390000032d03000041000000000032043500000024021000390000002103000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000044021000390000031603000041000000000032043500000024021000390000001003000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000064021000390000032a03000041000000000032043500000044021000390000032b03000041000000000032043500000024021000390000002203000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000002eb0100004100000000001004350000001101000039000000040010043f000002ec0100004100000b84000104300007000000000002000600000002001d000400000001001d0000030b01100197000700000001001d00000000001004350000000101000039000300000001001d000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000095f0000613d000000000101043b0000000002000411000200000002001d0000030b02200197000500000002001d0000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000095f0000613d000000000101043b000000000201041a0000000601000029000000000112004b000009610000413d0000000701000029000000000110004c000009760000613d000100000002001d0000000501000029000000000110004c0000098b0000613d000000070100002900000000001004350000000301000029000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000095f0000613d000000000101043b00000005020000290000000000200435000000200010043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000095f0000613d000000060200002900000001030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000032104000041000000040500002900000002060000290b820b780000040f00000001012001900000095f0000613d0000000501000039000000000101041a000000ff01100190000009a00000c13d00000007010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000095f0000613d000000000101043b000000000201041a0000000601000029000500000002001d000000000112004b000009b20000413d00000007010000290000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f00000001022001900000095f0000613d000000060400002900000005020000290000000002420049000000000101043b000000000021041b0000000201000039000000000201041a000000000342004b000009c70000413d0000000002420049000000000021041b000000400100043d0000000000410435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000031904000041000000040500002900000000060000190b820b780000040f00000001012001900000095f0000613d000000000001042d000000000100001900000b8400010430000000400100043d00000064021000390000032e03000041000000000032043500000044021000390000032f03000041000000000032043500000024021000390000002403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000032403000041000000000032043500000044021000390000032503000041000000000032043500000024021000390000002403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000064021000390000032203000041000000000032043500000044021000390000032303000041000000000032043500000024021000390000002203000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000400100043d00000044021000390000031603000041000000000032043500000024021000390000001003000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000064021000390000032a03000041000000000032043500000044021000390000032b03000041000000000032043500000024021000390000002203000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000002eb0100004100000000001004350000001101000039000000040010043f000002ec0100004100000b84000104300000000501000039000000000201041a00000008032002700000030b053001970000000003000411000000000335004b000009e90000c13d0000031002200197000000000021041b000000400100043d000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f00000311011001c70000800d020000390000000303000039000003120400004100000000060000190b820b780000040f0000000101200190000009fa0000613d000000000001042d000000400100043d0000004402100039000003300300004100000000003204350000031702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000000100001900000b840001043000000000060100190000000501000039000000000201041a00000008032002700000030b053001970000000003000411000000000335004b00000a1d0000c13d0000030b0360019800000a2e0000613d000003100220019700000008036002100000030f03300197000000000232019f000000000021041b000000400100043d000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f00000311011001c70000800d02000039000000030300003900000312040000410b820b780000040f000000010120019000000a430000613d000000000001042d000000400100043d0000004402100039000003300300004100000000003204350000031702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000064021000390000033103000041000000000032043500000044021000390000033203000041000000000032043500000024021000390000002603000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c000000000102801900000040011002100000031c011001c700000b8400010430000000000100001900000b84000104300000000501000039000000000301041a00000008023002700000030b022001970000000004000411000000000442004b00000a650000c13d000000ff0430019000000a760000c13d000001000400008a000000000343016f00000001033001bf000000000031041b000000400100043d0000000000210435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d02000039000000010300003900000333040000410b820b780000040f000000010120019000000a880000613d000000000001042d000000400100043d0000004402100039000003300300004100000000003204350000031702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000044021000390000031603000041000000000032043500000024021000390000001003000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000000100001900000b84000104300000000501000039000000000301041a00000008023002700000030b022001970000000004000411000000000442004b00000aa90000c13d000000ff0430019000000aba0000613d000001000400008a000000000343016f000000000031041b000000400100043d0000000000210435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d02000039000000010300003900000334040000410b820b780000040f000000010120019000000acc0000613d000000000001042d000000400100043d0000004402100039000003300300004100000000003204350000031702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000044021000390000033503000041000000000032043500000024021000390000001403000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000000100001900000b84000104300006000000000002000600000001001d0000000501000039000300000001001d000000000101041a00000008011002700000030b011001970000000003000411000000000131004b00000b310000c13d000000010100008a000000000112013f0000000203000039000200000003001d000000000303041a000100000001001d000400000003001d000000000113004b00000b2b0000213d000500000002001d0000030c010000410000000000100439000000000100041200000004001004430000002400000443000002e2010000410000000002000414000002e20320009c0000000001024019000000c0011002100000030d011001c700008005020000390b820b7d0000040f000000010220019000000b290000613d000000050200002900000004030000290000000002230019000000000101043b000000000112004b00000b420000213d00000006010000290000030b0110019800000b540000613d0000000303000029000000000303041a000000ff0330019000000b660000c13d0000000203000029000000000023041b0000000000100435000000200000043f000002e2010000410000000002000414000002e20320009c0000000001024019000000c00110021000000315011001c700008010020000390b820b7d0000040f000000010220019000000b290000613d000000000101043b000000000201041a0000000103000029000000000332004b000000050300002900000b2b0000213d0000000002320019000000000021041b000000400100043d0000000000310435000002e2020000410000000003000414000002e20430009c0000000003028019000002e20410009c00000000010280190000004001100210000000c002300210000000000112019f000002e8011001c70000800d0200003900000003030000390000031904000041000000000500001900000006060000290b820b780000040f000000010120019000000b290000613d000000000001042d000000000100001900000b8400010430000002eb0100004100000000001004350000001101000039000000040010043f000002ec0100004100000b8400010430000000400100043d0000004402100039000003300300004100000000003204350000031702000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000044021000390000033703000041000000000032043500000024021000390000001903000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000044021000390000033603000041000000000032043500000024021000390000001f03000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b8400010430000000400100043d00000044021000390000031603000041000000000032043500000024021000390000001003000039000000000032043500000317020000410000000000210435000000040210003900000020030000390000000000320435000002e202000041000002e20310009c0000000001028019000000400110021000000318011001c700000b840001043000000b7b002104210000000102000039000000000001042d0000000002000019000000000001042d00000b80002104230000000102000039000000000001042d0000000002000019000000000001042d00000b820000043200000b830001042e00000b840001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffc07a6b53796e632069640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf5a4b494400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff020000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000002000000000000000000000000000000800000010000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000355274e9000000000000000000000000000000000000000000000000000000003f4ba839000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000042966c6800000000000000000000000000000000000000000000000000000000355274ea00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000200000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e020000020000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff0000000000000000000000000000000000000000ff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b02000000000000000000000000000000000000400000000000000000000000005061757361626c653a207061757365640000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320620000000000000000000000000000000000000084000000000000000000000000657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164646c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732061207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573616e63650000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e74206578636565647320616c6c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657264647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206162e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f742070617573656400000000000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730045524332304361707065643a206361702065786365656465640000000000000082f6befcecb34a5f59c31b93e4a0ed292aa04555409b88c36d7f43a73e1b178e

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