ERC-20
Overview
Max Total Supply
100,000,000,000 earlyZERO
Holders
34,421
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
91,283,842,501.538340672480549697 earlyZEROValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
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 Name:
EarlyZerolend
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import {ERC20Burnable, ERC20} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; // This token represents the early bird version of the $ZERO token. Users who claim this token will be able // to redeem the original $ZERO on launch. contract EarlyZerolend is ERC20, ERC20Burnable, Ownable { mapping(address => bool) fromWhitelist; bool enableWhitelist; constructor() ERC20("Earlybid ZERO", "earlyZERO") { fromWhitelist[msg.sender] = true; fromWhitelist[address(this)] = true; fromWhitelist[address(0)] = true; enableWhitelist = true; _mint(msg.sender, 100000000000 * 1e18); // 100 bil tokens } function addToWhitelist(address who, bool what) external onlyOwner { fromWhitelist[who] = what; } function toggleWhitelist(bool what) external onlyOwner { enableWhitelist = what; } function _afterTokenTransfer( address from, address, uint256 ) internal virtual override { if (enableWhitelist) { require(fromWhitelist[from], "from address not in whitelist"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @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 { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "compilerPath": "/Users/esmeevankant/Library/Caches/hardhat-nodejs/compilers-v2/zksolc/zksolc-v1.3.13", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":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":"who","type":"address"},{"internalType":"bool","name":"what","type":"bool"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"what","type":"bool"}],"name":"toggleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100025564fb59128df88aba1730fa5c9fe588210e24efe2d5d60f6f6cbca7b300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000500000000000200010000000103550000006001100270000002090010019d0000000101200190000000430000c13d0000008001000039000000400010043f0000000001000031000000040110008c000004fc0000413d0000000101000367000000000101043b000000e0011002700000021c0210009c0000005e0000213d000002290210009c000000ad0000a13d0000022a0210009c000001560000a13d0000022b0210009c000002250000613d0000022c0210009c0000023d0000613d0000022d0110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000000301004b000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d0000000501000039000000000201041a00000210032001970000000005000411000000000353004b0000041d0000c13d0000020f02200197000000000021041b00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000211011001c70000800d02000039000000030300003900000212040000410000000006000019081e08140000040f0000000101200190000004fc0000613d00000000010000190000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000c001000039000000400010043f0000000d01000039000000800010043f0000020a01000041000000a00010043f000000400500043d0000020b0150009c000000580000813d0000004001500039000000400010043f000000090100003900000000041504360000020c010000410000000000140435000000800700043d0000020d0170009c0000009b0000a13d0000023e0100004100000000001004350000004101000039000000040010043f0000023f0100004100000820000104300000021d0210009c000000d60000a13d0000021e0210009c0000019d0000a13d0000021f0210009c000002610000613d000002200210009c000002900000613d000002210110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000200310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000004010000390000000101100367000000000601043b000002100160009c000004fc0000213d0000000501000039000000000201041a00000210032001970000000005000411000000000353004b0000041d0000c13d000000000306004b000004ed0000c13d000000400100043d000000640210003900000236030000410000000000320435000000440210003900000237030000410000000000320435000000240210003900000026030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c700000820000104300000000306000039000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000001000000613d0000023e0100004100000000001004350000002201000039000000040010043f0000023f010000410000082000010430000002300210009c000001c40000213d000002330210009c000002c10000613d000002340110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000400310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000001010003670000000402100370000000000202043b000002100320009c000004fc0000213d0000002401100370000000000301043b0000000001000411081e06700000040f0000000101000039000000400200043d00000000001204350000020901000041000002090320009c0000000001024019000000400110021000000239011001c70000081f0001042e000002240210009c000001f90000213d000002270210009c000002e90000613d000002280110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000200310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000004010000390000000101100367000000000201043b000000000102004b0000000001000019000000010100c039000500000002001d000000000112004b000004fc0000c13d081e059c0000040f0000000701000039000000000201041a000001000300008a000000000232016f0000000503000029000000000232019f000000000021041b00000000010000190000081f0001042e000000200130008c000500000005001d000400000004001d000001260000413d000100000003001d000200000007001d000300000006001d000000000060043500000209010000410000000002000414000002090320009c0000000001024019000000c0011002100000020e011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d00000002070000290000001f027000390000000502200270000000200370008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000050500002900000004040000290000000306000029000001260000813d000000000002041b0000000102200039000000000312004b000001220000413d0000001f0170008c000003af0000a13d000200000007001d000300000006001d000000000060043500000209010000410000000002000414000002090320009c0000000001024019000000c0011002100000020e011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000200200008a000000020700002900000000032701700000002002000039000000000101043b000001450000613d0000002002000039000000000400001900000080052000390000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000013d0000413d000000000373004b00000005050000290000000306000029000001520000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000080022000390000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000404000029000003ba0000013d0000022e0210009c0000030c0000613d0000022f0110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000400310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000004010000390000000101100367000000000101043b000500000001001d000002100110009c000004fc0000213d0000000001000411000300000001001d00000000001004350000000101000039000400000001001d000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b00000005020000290000000000200435000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b000000000101041a00000024020000390000000102200367000000000202043b000000000312001a000001970000413d000004fe0000013d0000023e0100004100000000001004350000001101000039000000040010043f0000023f010000410000082000010430000002220210009c000003260000613d000002230110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000400310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000001010003670000000402100370000000000202043b000002100320009c000004fc0000213d0000002401100370000000000301043b0000000001000411081e05b40000040f0000000101000039000000400200043d00000000001204350000020901000041000002090320009c0000000001024019000000400110021000000239011001c70000081f0001042e000002310210009c000003780000613d000002320110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000600310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000001010003670000000402100370000000000202043b0000000003020019000002100220009c000004fc0000213d0000002402100370000000000202043b000500000002001d000002100220009c000004fc0000213d0000004401100370000000000401043b000400000004001d00000000020004110000000001030019000300000001001d0000000003040019081e06d70000040f000000030100002900000005020000290000000403000029081e05b40000040f0000000101000039000000400200043d00000000001204350000020901000041000002090320009c0000000001024019000000400110021000000239011001c70000081f0001042e000002250210009c000003930000613d000002260110009c000004fc0000c13d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000000301004b000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d0000000405000039000000000405041a000000010640019000000001014002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000224013f0000000102200190000000a70000c13d000000400200043d0000000003120436000000000606004b000004a30000c13d000001000500008a000000000454016f0000000000430435000000000101004b00000020040000390000000004006019000004b00000013d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000200310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000004010000390000000101100367000000000201043b0000000001000411081e077e0000040f00000000010000190000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000200310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000004010000390000000101100367000000000101043b000002100210009c000004fc0000213d0000000000100435000000200000043f00000040020000390000000001000019081e05700000040f000000000101041a000000400200043d00000000001204350000020901000041000002090320009c0000000001024019000000400110021000000239011001c70000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000400310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000001010003670000000402100370000000000202043b000500000002001d000002100220009c000004fc0000213d0000002401100370000000000201043b000000000102004b0000000001000019000000010100c039000400000002001d000000000112004b000004fc0000c13d081e059c0000040f000000050100002900000000001004350000000601000039000000200010043f00000040020000390000000001000019081e05700000040f000001000200008a000000000301041a000000000223016f0000000403000029000000000232019f000000000021041b00000000010000190000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000400310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000001020003670000000401200370000000000101043b000002100310009c000004fc0000213d0000002402200370000000000202043b000500000002001d000002100220009c000004fc0000213d00000000001004350000000101000039000000200010043f0000004002000039000400000002001d0000000001000019081e05700000040f00000005020000290000000000200435000000200010043f00000000010000190000000402000029081e05700000040f000000000101041a000000400200043d00000000001204350000020901000041000002090320009c0000000001024019000000400110021000000239011001c70000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000000301004b000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f000000000601001900000000060560190000001f0560008c00000000050000190000000105002039000000000552013f0000000105500190000000a70000c13d000000800060043f000000000404004b000004c90000c13d000001000300008a000000000232016f000000a00020043f000000000106004b000000c001000039000000a001006039000004d80000013d0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000400310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000001010003670000000402100370000000000202043b0000000004020019000002100220009c000004fc0000213d0000002401100370000000000301043b000400000003001d00000000020004110000000001040019000500000001001d081e06d70000040f00000005010000290000000402000029081e077e0000040f00000000010000190000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000000301004b000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d000000400100043d000000120200003900000000002104350000020902000041000002090310009c0000000001028019000000400110021000000239011001c70000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000400310008c000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d00000001010003670000000402100370000000000202043b000500000002001d000002100220009c000004fc0000213d0000002401100370000000000101043b000400000001001d0000000001000411000200000001001d00000000001004350000000101000039000300000001001d000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b00000005020000290000000000200435000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b000000000101041a0000000403000029000000000231004b0000050a0000813d000000400100043d00000064021000390000023a03000041000000000032043500000044021000390000023b030000410000000000320435000000240210003900000025030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c700000820000104300000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000000301004b000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d0000000201000039000000000101041a000000400200043d00000000001204350000020901000041000002090320009c0000000001024019000000400110021000000239011001c70000081f0001042e0000000001000416000000000101004b000004fc0000c13d000000040100008a00000000011000310000023502000041000000000301004b000000000300001900000000030240190000023501100197000000000401004b000000000200a019000002350110009c00000000010300190000000001026019000000000101004b000004fc0000c13d0000000501000039000000000101041a0000021001100197000000400200043d00000000001204350000020901000041000002090320009c0000000001024019000000400110021000000239011001c70000081f0001042e000000000107004b0000000001000019000003b30000613d000000a00100043d0000000302700210000000010300008a000000000223022f000000000232013f000000000121016f0000000102700210000000000121019f000000000016041b00000000070504330000020d0170009c000000580000213d0000000406000039000000000106041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000a70000c13d000000200130008c000003ee0000413d000100000003001d000200000007001d000300000006001d000000000060043500000209010000410000000002000414000002090320009c0000000001024019000000c0011002100000020e011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d00000002070000290000001f027000390000000502200270000000200370008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000050500002900000004040000290000000306000029000003ee0000813d000000000002041b0000000102200039000000000312004b000003ea0000413d0000001f0170008c0000042e0000a13d000200000007001d000300000006001d000000000060043500000209010000410000000002000414000002090320009c0000000001024019000000c0011002100000020e011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000200200008a000000020700002900000000032701700000002002000039000000000101043b00000005060000290000040e0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000004060000413d000000000373004b000004190000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000306000029000004390000013d000000400100043d00000044021000390000023d03000041000000000032043500000218020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000219011001c70000082000010430000000000107004b0000000001000019000004320000613d00000000010404330000000302700210000000010300008a000000000223022f000000000232013f000000000121016f0000000102700210000000000121019f000000000016041b0000000501000039000000000201041a0000020f032001970000000006000411000000000363019f000000000031041b000000400100043d000400000001001d00000209010000410000000003000414000002090430009c0000000001034019000000c001100210000002100520019700000211011001c70000800d0200003900000003030000390000021204000041000500000006001d081e08140000040f0000000101200190000004fc0000613d000000050100002900000000001004350000000601000039000300000001001d000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b000000000201041a000001000300008a000200000003001d000000000232016f00000001022001bf000000000021041b0000000001000410000000000010043500000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b000000000201041a0000000203000029000000000232016f00000001022001bf000000000021041b000000000000043500000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b000000000201041a0000000203000029000000000232016f00000001022001bf000000000021041b0000000702000039000000000102041a000000000131016f00000001011001bf000000000012041b0000000501000029000000000101004b000005170000c13d000000040300002900000044013000390000021b02000041000000000021043500000024013000390000001f020000390000000000210435000002180100004100000000001304350000000401300039000000200200003900000000002104350000020901000041000002090230009c0000000001034019000000400110021000000219011001c700000820000104300000000000500435000000000401004b0000000004000019000004b00000613d0000023c0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000614004b000004a90000413d0000003f01400039000000200300008a000000000331016f0000000001230019000000000331004b000000000400001900000001040040390000020d0310009c000000580000213d0000000103400190000000580000c13d000000400010043f000500000001001d081e05860000040f000000050400002900000000014100490000020902000041000002090310009c0000000001028019000002090340009c000000000204401900000040022002100000006001100210000000000121019f0000081f0001042e0000000000300435000000a001000039000000000206004b000004de0000613d000002400200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000564004b000004cf0000413d000000c0013000390000001f01100039000000200200008a000000000121016f0000024102100041000002420220009c000000580000413d000500000001001d000000400010043f0000008002000039081e05860000040f000000050400002900000000014100490000020902000041000002090310009c0000000001028019000002090340009c000000000204401900000040022002100000006001100210000000000121019f0000081f0001042e0000020f02200197000000000262019f000000000021041b00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000211011001c70000800d0200003900000003030000390000021204000041081e08140000040f0000000101200190000000410000c13d0000000001000019000008200001043000000003010000290000000502000029081e06700000040f000000400100043d000000040200002900000000002104350000020902000041000002090310009c0000000001028019000000400110021000000239011001c70000081f0001042e000000000331004900000002010000290000000502000029081e06700000040f000000400100043d000000030200002900000000002104350000020902000041000002090310009c0000000001028019000000400110021000000239011001c70000081f0001042e000400000002001d0000000201000039000000000201041a000002140320009c000001970000813d0000021502200041000000000021041b00000005010000290000000000100435000000200000043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b000000000201041a0000021502200041000000000021041b0000021501000041000000400200043d000000000012043500000209010000410000000003000414000002090430009c0000000003018019000002090420009c00000000010240190000004001100210000000c002300210000000000121019f0000020e011001c70000800d020000390000000303000039000002160400004100000000050000190000000506000029081e08140000040f0000000101200190000004fc0000613d0000000401000029000000000101041a000000ff011001900000056b0000613d00000000000004350000000301000029000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000004fc0000613d000000000101043b000000000101041a000000ff011001900000056b0000c13d000000400100043d00000044021000390000021703000041000000000032043500000024021000390000001d030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000219011001c700000820000104300000002001000039000001000010044300000120000004430000021a010000410000081f0001042e0000020903000041000002090410009c00000000010380190000004001100210000002090420009c00000000020380190000006002200210000000000112019f0000000002000414000002090420009c0000000002038019000000c002200210000000000112019f00000211011001c70000801002000039081e08190000040f0000000102200190000005840000613d000000000101043b000000000001042d0000000001000019000008200001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000005950000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b0000058e0000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0000000501000039000000000101041a00000210011001970000000002000411000000000121004b000005a30000c13d000000000001042d000000400100043d00000044021000390000023d03000041000000000032043500000218020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000219011001c700000820000104300004000000000002000300000003001d0000021001100198000400000001001d0000061f0000613d0000021001200198000200000001001d000006340000613d00000004010000290000000000100435000000200000043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f00000001022001900000061d0000613d000000000101043b000000000201041a0000000301000029000100000002001d000000000112004b000006490000413d00000004010000290000000000100435000000200000043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f00000001022001900000061d0000613d000000030200002900000001030000290000000002230049000000000101043b000000000021041b0000000201000029000000000010043500000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f00000001022001900000061d0000613d000000000101043b000000000201041a00000003030000290000000002320019000000000021041b000000400100043d000000000031043500000209020000410000000003000414000002090430009c0000000003028019000002090410009c00000000010280190000004001100210000000c002300210000000000112019f0000020e011001c70000800d020000390000000303000039000002160400004100000004050000290000000206000029081e08140000040f00000001012001900000061d0000613d0000000701000039000000000101041a000000ff011001900000061c0000613d000000040100002900000000001004350000000601000039000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f00000001022001900000061d0000613d000000000101043b000000000101041a000000ff011001900000065e0000613d000000000001042d00000000010000190000082000010430000000400100043d000000640210003900000247030000410000000000320435000000440210003900000248030000410000000000320435000000240210003900000025030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c70000082000010430000000400100043d000000640210003900000245030000410000000000320435000000440210003900000246030000410000000000320435000000240210003900000023030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c70000082000010430000000400100043d000000640210003900000243030000410000000000320435000000440210003900000244030000410000000000320435000000240210003900000026030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c70000082000010430000000400100043d00000044021000390000021703000041000000000032043500000024021000390000001d030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000219011001c7000008200001043000030000000000020000021001100198000006ad0000613d000200000003001d0000021002200198000300000002001d000006c20000613d000100000001001d00000000001004350000000101000039000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f00000001022001900000000304000029000006ab0000613d000000000101043b0000000000400435000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f00000003060000290000000102200190000006ab0000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000209020000410000000003000414000002090430009c0000000003028019000002090410009c00000000010280190000004001100210000000c002300210000000000112019f0000020e011001c70000800d02000039000000030300003900000249040000410000000105000029081e08140000040f0000000101200190000006ab0000613d000000000001042d00000000010000190000082000010430000000400100043d00000064021000390000024c03000041000000000032043500000044021000390000024d030000410000000000320435000000240210003900000024030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c70000082000010430000000400100043d00000064021000390000024a03000041000000000032043500000044021000390000024b030000410000000000320435000000240210003900000022030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c700000820000104300005000000000002000300000003001d000400000002001d0000021001100197000500000001001d00000000001004350000000101000039000100000001001d000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000007400000613d000000000101043b00000004020000290000021002200197000400000002001d0000000000200435000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000007400000613d000000000101043b000000000201041a000000010100008a000200000002001d000000000112004b0000073f0000613d00000003010000290000000202000029000000000112004b000007420000413d0000000501000029000000000101004b000007540000613d0000000401000029000000000101004b000007690000613d000000050100002900000000001004350000000101000029000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000007400000613d000000000101043b00000004020000290000000000200435000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000007400000613d000000030200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000209020000410000000003000414000002090430009c0000000003028019000002090410009c00000000010280190000004001100210000000c002300210000000000112019f0000020e011001c70000800d020000390000000303000039000002490400004100000005050000290000000406000029081e08140000040f0000000101200190000007400000613d000000000001042d00000000010000190000082000010430000000400100043d00000044021000390000024e03000041000000000032043500000024021000390000001d030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000219011001c70000082000010430000000400100043d00000064021000390000024c03000041000000000032043500000044021000390000024d030000410000000000320435000000240210003900000024030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c70000082000010430000000400100043d00000064021000390000024a03000041000000000032043500000044021000390000024b030000410000000000320435000000240210003900000022030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c700000820000104300003000000000002000200000002001d0000021001100198000007d80000613d000300000001001d0000000000100435000000200000043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000007d60000613d000000000101043b000000000201041a0000000201000029000100000002001d000000000112004b000007ed0000413d00000003010000290000000000100435000000200000043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000007d60000613d000000020300002900000001020000290000000002320049000000000101043b000000000021041b0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000209020000410000000003000414000002090430009c0000000003028019000002090410009c00000000010280190000004001100210000000c002300210000000000112019f0000020e011001c70000800d020000390000000303000039000002160400004100000003050000290000000006000019081e08140000040f0000000101200190000007d60000613d0000000701000039000000000101041a000000ff01100190000007d50000613d000000030100002900000000001004350000000601000039000000200010043f00000209010000410000000002000414000002090320009c0000000001024019000000c00110021000000213011001c70000801002000039081e08190000040f0000000102200190000007d60000613d000000000101043b000000000101041a000000ff01100190000008020000613d000000000001042d00000000010000190000082000010430000000400100043d000000640210003900000251030000410000000000320435000000440210003900000252030000410000000000320435000000240210003900000021030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c70000082000010430000000400100043d00000064021000390000024f030000410000000000320435000000440210003900000250030000410000000000320435000000240210003900000022030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000238011001c70000082000010430000000400100043d00000044021000390000021703000041000000000032043500000024021000390000001d030000390000000000320435000002180200004100000000002104350000000402100039000000200300003900000000003204350000020902000041000002090310009c0000000001028019000000400110021000000219011001c7000008200001043000000817002104210000000102000039000000000001042d0000000002000019000000000001042d0000081c002104230000000102000039000000000001042d0000000002000019000000000001042d0000081e000004320000081f0001042e000008200001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4561726c79626964205a45524f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc06561726c795a45524f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffebce1f051928de835600000000000000000000000000000000000000000000001431e0fae6d7217caa0000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef66726f6d2061646472657373206e6f7420696e2077686974656c69737400000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000079cc678f00000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000bc93233e00000000000000000000000000000000000000000000000000000000bc93233f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000079cc67900000000000000000000000000000000000000000000000000000000080e3f1ad00000000000000000000000000000000000000000000000000000000313ce5660000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3800000000000000000000000000000000000000000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206100000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000080616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573000000000000000000000000000000000000000000000000000000000000000095a8fe245d1a39a1e8f6280f001944d4e5a8714fa8125837cc67f5ed7707092a
[ 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.