ERC-20
Overview
Max Total Supply
28,171.33526 iUSD
Holders
81,962
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
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:
iZUMiBondUSD
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.5
Contract Source Code (Solidity)
/** *Submitted for verification at era.zksync.network on 2024-01-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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); } /** * @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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } contract OperableToken is ERC20, Ownable { address public operator; mapping(address=>bool) public trusted; modifier onlyTrusted { require(trusted[msg.sender] || msg.sender == owner(), "not trusted"); _; } modifier onlyOperator { require(msg.sender == operator, "operator only"); _; } constructor(string memory name, string memory symbol) ERC20(name, symbol) { operator = msg.sender; } function transferOperator(address newOperator) public onlyOperator { require(newOperator != address(0), "zero operator"); operator = newOperator; } function addTrusted(address user) public onlyOperator { trusted[user] = true; } function removeTrusted(address user) public onlyOperator { trusted[user] = false; } function mint(address account, uint amount) public onlyTrusted { _mint(account, amount); } function burn(address account, uint amount) public onlyTrusted { _burn(account, amount); } } contract iZUMiBondUSD is OperableToken { constructor() OperableToken("iZUMi Bond USD", "iUSD") {} }
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":"user","type":"address"}],"name":"addTrusted","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"account","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":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeTrusted","outputs":[],"stateMutability":"nonpayable","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":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"trusted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002095e394855f253925cbae372e1aca98bee2a363988704c9e141d30ef2500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000600000000000200010000000103550000006001100270000001c60010019d00000001012001900000006f0000c13d0000008001000039000000400010043f0000000001000031000000040110008c000005980000413d0000000101000367000000000101043b000000e001100270000001cf0210009c000002620000613d000001d00210009c000002980000613d000001d10210009c000002b60000613d000001d20210009c000002ce0000613d000001d30210009c000003120000613d000001d40210009c000000ff0000613d000001d50210009c000001160000613d000001d60210009c000001490000613d000001d70210009c000003440000613d000001d80210009c000001870000613d000001d90210009c000001a90000613d000001da0210009c0000035d0000613d000001db0210009c000001c70000613d000001dc0210009c0000038f0000613d000001dd0210009c000003ca0000613d000001de0210009c0000040b0000613d000001df0210009c0000044a0000613d000001e00210009c000001e00000613d000001e10210009c0000020c0000613d000001e20210009c000002370000613d000001e30110009c000005980000c13d0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000000310004c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000f80000c13d000000800010043f000000000440004c000005000000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c004000039000000a0040060390000001f01400039000000200200008a000000000221016f000001f801200041000001f90110009c000000e60000413d000000400020043f0000000001020019000600000001001d0000008002000039071105c50000040f0000000603000029000000000231004900000000010300190000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000c001000039000000400010043f0000000e01000039000000800010043f000001c701000041000000a00010043f000000400500043d000001c80150009c000000e60000813d0000004001500039000000400010043f000000040400003900000000004504350000002006500039000001c9010000410000000000160435000000800800043d000001ca0180009c000000e60000213d0000000307000039000000000107041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000000f80000c13d000000200130008c000600000004001d000500000005001d000400000006001d000300000007001d000200000008001d000000b10000413d000000000070043500000020020000390000000001000019000100000003001d0711059b0000040f000000020800002900000003070000290000000406000029000000050500002900000006040000290000001f028000390000000502200270000000200380008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000b10000813d000000000001041b0000000101100039000000ac0000013d0000001f0180008c000000c80000a13d00000000007004350000002002000039000100000002001d00000000010000190711059b0000040f0000000108000029000000020700002900000004060000290000000505000029000000200200008a000000000227016f0000000003000019000000000423004b0000008004800039000000d30000813d0000000004040433000000000041041b000000200330003900000020088000390000000101100039000000bf0000013d000000000180004c0000000001000019000000cc0000613d000000a00100043d0000000302800210000000010300008a000000000223022f000000000232013f000000000221016f0000000101800210000000e10000013d000000000272004b000000dd0000813d0000000302700210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b0000000101000039000000010270021000000006040000290000000307000029000000000112019f000000000017041b0000000005050433000001ca0150009c000000ed0000a13d000001f20100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019071105bc0000040f000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000004680000613d000001f20100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019071105bc0000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000000310004c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d000000400100043d0000001202000039000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000400310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f0000000002000411000400000002001d00000000002004350000000102000039000500000002001d000000200020043f000600000001001d0000004002000039000300000002001d00000000010000190711059b0000040f0000000602000029000001e5022001970000000000200435000000200010043f000000000100001900000003020000290711059b0000040f00000024020000390000000102200367000000000202043b000000000101041a071106080000040f000000000301001900000004010000290000000602000029071106940000040f000000400100043d0000000502000029000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000400310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d00000001010003670000000402100370000000000302043b000001e50230009c000005980000213d000600000003001d0000002401100370000000000101043b000500000001001d0000000001000411000400000001001d00000000001004350000000701000039000000200010043f000000400200003900000000010000190711059b0000040f000000000101041a000000ff01100190000001750000c13d0000000501000039000000000101041a000001e5011001970000000402000029000000000112004b00000000010000190000000101006039071106f60000040f0000000604000029000000000140004c000004d30000c13d000000400100043d0000004402100039000001f303000041000000000032043500000024021000390000001f030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000006402000039071105bc0000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000200310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f000001e50110019700000000001004350000000701000039000000200010043f000000400200003900000000010000190711059b0000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000200310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f000001e5011001970000000000100435000000200000043f000000400200003900000000010000190711059b0000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000000310004c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d0000000501000039000000000101041a000001e502100197000000400100043d000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000200310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f000600000001001d0000000601000039000000000101041a000001e5011001970000000002000411000000000112004b00000000010000190000000101006039071106e50000040f0000000601000029000001e50110019700000000001004350000000701000039000000200010043f000000400200003900000000010000190711059b0000040f000001000200008a000000000301041a000000000223016f00000001022001bf000000000021041b000000000100001900000000020000190000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000200310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f000600000001001d0000000601000039000000000101041a000001e5011001970000000002000411000000000112004b00000000010000190000000101006039071106e50000040f0000000601000029000001e50110019700000000001004350000000701000039000000200010043f000000400200003900000000010000190711059b0000040f000001000200008a000000000301041a000000000223016f000000000021041b000000000100001900000000020000190000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000400310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f000600000001001d071105e40000040f0000000602000029000001e50220019700000000002004350000000102000039000000200020043f000500000001001d0000004002000039000600000002001d00000000010000190711059b0000040f0000000502000029000001e5022001970000000000200435000000200010043f000000000100001900000006020000290711059b0000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000200310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d00000004010000390000000101100367000000000201043b000001e50120009c000005980000213d0000000501000039000400000001001d000000000101041a000300000001001d000001e5031001970000000001000411000500000003001d000000000113004b00000000010000190000000101006039000600000002001d071105ed0000040f0000000601000029000000000110004c0000050b0000c13d000000400100043d0000006402100039000001e60300004100000000003204350000004402100039000001e7030000410000000000320435000000240210003900000026030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000400310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f00000024020000390000000102200367000000000302043b00000000020100190000000001000411071106940000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000000310004c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d0000000201000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000600310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d00000001040003670000000402400370000000000102043b000001e50210009c000005980000213d0000002402400370000000000202043b000001e50320009c000005980000213d0000004403400370000000000303043b000500000003001d000600000001001d071106160000040f000000060100002900000000001004350000000101000039000300000001001d000000200010043f0000004002000039000400000002001d00000000010000190711059b0000040f0000000002000411000200000002001d0000000000200435000000200010043f000000000100001900000004020000290711059b0000040f0000000502000029000000000101041a000000000321004b0000055d0000813d000000400100043d0000006402100039000001f50300004100000000003204350000004402100039000001f6030000410000000000320435000000240210003900000028030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000200310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d00000004010000390000000101100367000000000201043b000001e50120009c000005980000213d0000000601000039000500000001001d000000000101041a000400000001001d000001e501100197000600000002001d0000000002000411000000000112004b00000000010000190000000101006039071106e50000040f0000000602000029000000000120004c000005230000c13d000000400100043d0000004402100039000001f403000041000000000032043500000024021000390000000d030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000006402000039071105bc0000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000000310004c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d0000000601000039000000000101041a000001e502100197000000400100043d000000000021043500000020020000390000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000000310004c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d0000000501000039000500000001001d000000000101041a000400000001001d000001e502100197000600000002001d0000000001000411000000000112004b00000000010000190000000101006039071105ed0000040f000001c6010000410000000002000414000001c60320009c0000000001024019000000c001100210000001cc011001c70000800d020000390000000303000039000001cd0400004100000006050000290000000006000019071107070000040f0000000101200190000005980000613d0000000401000029000001cb011001970000000502000029000000000012041b000000000100001900000000020000190000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000000310004c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d0000000404000039000000000304041a000000010530019000000001013002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000223013f0000000102200190000000f80000c13d000000400200043d0000000000120435000000000550004c0000052c0000c13d000001000400008a000000000343016f00000020042000390000000000340435000000000110004c000000200300003900000000030060190000003f01300039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000001ca0310009c000000e60000213d0000000103400190000000e60000c13d000000400010043f000600000001001d071105c50000040f0000000603000029000000000231004900000000010300190000000003000019071105b20000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000400310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d00000001010003670000000402100370000000000302043b000001e50230009c000005980000213d000600000003001d0000002401100370000000000101043b000500000001001d0000000001000411000400000001001d00000000001004350000000701000039000000200010043f000000400200003900000000010000190711059b0000040f000000000101041a000000ff01100190000003f60000c13d0000000501000039000000000101041a000001e5011001970000000402000029000000000112004b00000000010000190000000101006039071106f60000040f0000000603000029000000000130004c000005380000c13d000000400100043d0000006402100039000001ef0300004100000000003204350000004402100039000001f0030000410000000000320435000000240210003900000021030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000400310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d00000001010003670000000402100370000000000302043b000001e50230009c000005980000213d0000002401100370000000000101043b000500000001001d0000000001000411000200000001001d00000000001004350000000101000039000300000001001d000000200010043f0000004002000039000400000002001d0000000001000019000600000003001d0711059b0000040f00000006020000290000000000200435000000200010043f000000000100001900000004020000290711059b0000040f0000000502000029000000000101041a000000000321004b000005520000813d000000400100043d0000006402100039000001e90300004100000000003204350000004402100039000001ea030000410000000000320435000000240210003900000025030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f0000000001000416000000000110004c000005980000c13d000000040100008a0000000001100031000001e402000041000000400310008c00000000030000190000000003024019000001e401100197000000000410004c000000000200a019000001e40110009c00000000010300190000000001026019000000000110004c000005980000c13d071105db0000040f00000024020000390000000102200367000000000302043b00000000020100190000000001000411071106160000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019071105b20000040f000000200130008c000300000005001d000004820000413d000000000040043500000020020000390000000001000019000200000003001d0711059b0000040f0000000305000029000000040600002900000006040000290000001f025000390000000502200270000000200350008c0000000003020019000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000004820000813d000000000001041b00000001011000390000047d0000013d0000001f0150008c000004980000a13d00000000004004350000002002000039000400000002001d00000000010000190711059b0000040f000000040700002900000003060000290000000505000029000000200200008a000000000226016f0000000003000019000000000423004b0000000004570019000004a30000813d0000000004040433000000000041041b0000002003300039000000200770003900000001011000390000048f0000013d000000000150004c00000000010000190000049c0000613d00000000010604330000000302500210000000010300008a000000000223022f000000000232013f000000000221016f0000000101500210000004b00000013d000000000262004b000004ad0000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001026002100000000604000029000000000112019f000000000014041b0000000501000039000000000201041a000001cb022001970000000006000411000000000262019f000000000021041b000001c6010000410000000002000414000001c60320009c0000000001024019000000c001100210000001cc011001c70000800d020000390000000303000039000001cd040000410000000005000019000600000006001d071107070000040f0000000101200190000005980000613d0000000601000039000000000201041a000001cb022001970000000603000029000000000232019f000000000021041b00000020010000390000010000100443000001200000044300000100010000390000004002000039000001ce03000041071105b20000040f0000000201000039000000000301041a00000005020000290000000002230019000000000332004b000000000300001900000001030040390000000103300190000005770000c13d000000000021041b0000000000400435000000200000043f000000400200003900000000010000190711059b0000040f00000005040000290000000606000029000000000301041a0000000002430019000000000332004b000000000300001900000001030040390000000103300190000005770000c13d000000000021041b000000400100043d0000000000410435000001c6020000410000000003000414000001c60430009c0000000003028019000001c60410009c00000000010280190000004001100210000000c002300210000000000112019f000001eb011001c70000800d020000390000000303000039000001ec040000410000000005000019071107070000040f0000000101200190000005980000613d000005940000013d0000000000300435000001f7020000410000000003000019000000a004300039000000000513004b0000005f0000813d000000000502041a000000000054043500000020033000390000000102200039000005030000013d000001c6010000410000000002000414000001c60320009c0000000001024019000000c001100210000001cc011001c70000800d020000390000000303000039000001cd0400004100000005050000290000000606000029071107070000040f00000006030000290000000101200190000005980000613d0000000301000029000001cb01100197000000000131019f0000000402000029000000000012041b000000000100001900000000020000190000000003000019071105b20000040f0000000401000029000001cb01100197000000000121019f0000000502000029000000000012041b000000000100001900000000020000190000000003000019071105b20000040f0000000000400435000001f10400004100000020052000390000000003000019000000000613004b000003b70000813d0000000006350019000000000704041a000000000076043500000020033000390000000104400039000005300000013d0000000000300435000000200000043f000000400200003900000000010000190711059b0000040f000000000201041a0000000501000029000000000112004b000005680000813d000000400100043d0000006402100039000001ed0300004100000000003204350000004402100039000001ee030000410000000000320435000000240210003900000022030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f071105fd0000040f000000000301001900000002010000290000000602000029071106940000040f000000400100043d0000000302000029000000000021043500000020020000390000000003000019071105b20000040f071105fd0000040f000000000301001900000006010000290000000202000029071106940000040f000000400100043d0000000302000029000000000021043500000020020000390000000003000019071105b20000040f00000006010000290000000000100435000000200000043f000400000002001d000000400200003900000000010000190711059b0000040f000000050400002900000004020000290000000002420049000000000021041b0000000201000039000000000201041a000000000342004b0000057e0000813d000001f20100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019071105bc0000040f0000000002420049000000000021041b000000400100043d0000000000410435000001c6020000410000000003000414000001c60430009c0000000003028019000001c60410009c00000000010280190000004001100210000000c002300210000000000112019f000001eb011001c70000800d020000390000000303000039000001ec0400004100000006050000290000000006000019071107070000040f0000000101200190000005980000613d000000000100001900000000020000190000000003000019071105b20000040f00000000010000190000000002000019071105bc0000040f000001c603000041000001c60410009c00000000010380190000004001100210000001c60420009c00000000020380190000006002200210000000000112019f0000000002000414000001c60420009c0000000002038019000000c002200210000000000112019f000001cc011001c700008010020000390711070c0000040f0000000102200190000005af0000613d000000000101043b000000000001042d00000000010000190000000002000019071105bc0000040f000001c604000041000001c60510009c000000000104801900000040011002100000000001310019000001c60320009c000000000204801900000060022002100000000001210019000007120001042e000001c603000041000001c60420009c0000000002038019000001c60410009c000000000103801900000040011002100000006002200210000000000112019f00000713000104300000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000005d40000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000005cc0000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000004010000390000000101100367000000000101043b000001fa0210009c000005e10000813d000000000001042d00000000010000190000000002000019071105bc0000040f00000024010000390000000101100367000000000101043b000001fa0210009c000005ea0000813d000000000001042d00000000010000190000000002000019071105bc0000040f000000000110004c000005f00000613d000000000001042d000000400100043d0000004402100039000001fb030000410000000000320435000001e8020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039071105bc0000040f000000000321004b000006010000413d0000000001210049000000000001042d000001f20100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019071105bc0000040f0000000001120019000000000221004b0000000002000019000000010200403900000001022001900000060f0000c13d000000000001042d000001f20100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019071105bc0000040f0005000000000002000001e504100198000006570000613d000500000003001d000001e501200198000400000001001d000006680000613d0000000000400435000000200000043f00000040020000390000000001000019000300000004001d0711059b0000040f000000000201041a0000000501000029000200000002001d000000000112004b000006790000413d00000003010000290000000000100435000000200000043f0000004002000039000100000002001d00000000010000190711059b0000040f000000050300002900000002020000290000000002320049000000000021041b00000004010000290000000000100435000000000100001900000001020000290711059b0000040f000000000301041a00000005040000290000000002430019000000000332004b00000000030000190000000103004039000000010330019000000000030400190000068a0000c13d000000000021041b000000400100043d0000000000310435000001c6020000410000000003000414000001c60430009c0000000003028019000001c60410009c00000000010280190000004001100210000000c002300210000000000112019f000001eb011001c70000800d020000390000000303000039000001ec0400004100000003050000290000000406000029071107070000040f0000000101200190000006910000613d000000000001042d000000400100043d000000640210003900000200030000410000000000320435000000440210003900000201030000410000000000320435000000240210003900000025030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f000000400100043d0000006402100039000001fe0300004100000000003204350000004402100039000001ff030000410000000000320435000000240210003900000023030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f000000400100043d0000006402100039000001fc0300004100000000003204350000004402100039000001fd030000410000000000320435000000240210003900000026030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f000001f20100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019071105bc0000040f00000000010000190000000002000019071105bc0000040f0004000000000002000001e504100198000006c00000613d000300000003001d000001e501200198000400000001001d000006d10000613d00000000004004350000000101000039000000200010043f0000004002000039000100000002001d0000000001000019000200000004001d0711059b0000040f00000004020000290000000000200435000000200010043f000000000100001900000001020000290711059b0000040f0000000302000029000000000021041b000000400100043d0000000000210435000001c6020000410000000003000414000001c60430009c0000000003028019000001c60410009c00000000010280190000004001100210000000c002300210000000000112019f000001eb011001c70000800d020000390000000303000039000002020400004100000002050000290000000406000029071107070000040f0000000101200190000006e20000613d000000000001042d000000400100043d000000640210003900000205030000410000000000320435000000440210003900000206030000410000000000320435000000240210003900000024030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f000000400100043d000000640210003900000203030000410000000000320435000000440210003900000204030000410000000000320435000000240210003900000022030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000008402000039071105bc0000040f00000000010000190000000002000019071105bc0000040f000000000110004c000006e80000613d000000000001042d000000400100043d00000044021000390000020703000041000000000032043500000024021000390000000d030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000006402000039071105bc0000040f000000000110004c000006f90000613d000000000001042d000000400100043d00000044021000390000020803000041000000000032043500000024021000390000000b030000390000000000320435000001e80200004100000000002104350000000402100039000000200300003900000000003204350000006402000039071105bc0000040f0000070a002104210000000102000039000000000001042d0000000002000019000007090000013d0000070f002104230000000102000039000000000001042d00000000020000190000070e0000013d0000071100000432000007120001042e0000071300010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff695a554d6920426f6e6420555344000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc06955534400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000029605e7700000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000040c10f1900000000000000000000000000000000000000000000000000000000570ca735000000000000000000000000000000000000000000000000000000006e9821c20000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009dc29fac00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000d4d0d6e600000000000000000000000000000000000000000000000000000000d55e62a000000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000006fdde038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a000000000000000000000000000000000000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265738a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b4e487b710000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f2061646472657373007a65726f206f70657261746f72000000000000000000000000000000000000006c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732061c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000008000000000000000000000000100000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164646f70657261746f72206f6e6c79000000000000000000000000000000000000006e6f742074727573746564000000000000000000000000000000000000000000
[ 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.