ERC-20
Overview
Max Total Supply
6,869,367.58420433046423934 SWORD
Holders
42,650
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:
eZKaliburToken
Compiler Version
v0.6.12+commit.27d51765
ZkSolc Version
v1.3.8
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() internal {} function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), 'Ownable: new owner is the zero address'); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); function preMineSupply() external view returns (uint256); function maxSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, 'SafeMath: addition overflow'); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, 'SafeMath: subtraction overflow'); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, 'SafeMath: multiplication overflow'); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, 'SafeMath: division by zero'); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, 'SafeMath: modulo by zero'); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, 'Address: insufficient balance'); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(''); require(success, 'Address: unable to send value, recipient may have reverted'); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, 'Address: low-level call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, 'Address: low-level call with value failed'); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, 'Address: insufficient balance for call'); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), 'Address: call to non-contract'); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } contract ERC20 is Context, IERC20, Ownable { uint256 private constant _preMineSupply = 5800000 * 1e18; uint256 private constant _maxSupply = 10000000 * 1e18; using SafeMath for uint256; using Address for address; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor(string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; _mint(msg.sender, _preMineSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return owner(); } /** * @dev Returns the token name. */ function name() public override view returns (string memory) { return _name; } /** * @dev Returns the token decimals. */ function decimals() public override view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() public override view returns (string memory) { return _symbol; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() public override view returns (uint256) { return _totalSupply; } function preMineSupply() public override view returns (uint256) { return _preMineSupply; } function maxSupply() public override view returns (uint256) { return _maxSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) public override view returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-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 override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-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 override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, 'ERC20: transfer amount exceeds allowance') ); 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 {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'ERC20: decreased allowance below zero') ); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function mint(uint256 amount) public onlyOwner returns (bool) { _mint(_msgSender(), amount); 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 { require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); _balances[sender] = _balances[sender].sub(amount, 'ERC20: transfer amount exceeds balance'); _balances[recipient] = _balances[recipient].add(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 returns(bool) { require(account != address(0), 'ERC20: mint to the zero address'); if (amount.add(_totalSupply) > _maxSupply) { return false; } _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(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 { require(account != address(0), 'ERC20: burn from the zero address'); _balances[account] = _balances[account].sub(amount, 'ERC20: burn amount exceeds balance'); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve( account, _msgSender(), _allowances[account][_msgSender()].sub(amount, 'ERC20: burn amount exceeds allowance') ); } } library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, 'EnumerableSet: index out of bounds'); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // Meerkat token with Governance. contract eZKaliburToken is ERC20('eZKalibur Token', 'SWORD') { using EnumerableSet for EnumerableSet.AddressSet; EnumerableSet.AddressSet private _minters; /// @notice Creates `_amount` token to `_to`. function mint(address _to, uint256 _amount) public onlyMinter returns(bool) { _mint(_to, _amount); return true; } function burnFrom(address account, uint256 amount) external { _burnFrom(account, amount); } function addMinter(address _addMinter) public onlyOwner returns (bool) { require(_addMinter != address(0), "MMF: _addMinter is the zero address"); return EnumerableSet.add(_minters, _addMinter); } function delMinter(address _delMinter) public onlyOwner returns (bool) { require(_delMinter != address(0), "MMF: _delMinter is the zero address"); return EnumerableSet.remove(_minters, _delMinter); } function getMinterLength() public view returns (uint256) { return EnumerableSet.length(_minters); } function isMinter(address account) public view returns (bool) { return EnumerableSet.contains(_minters, account); } function getMinter(uint256 _index) public view onlyOwner returns (address){ require(_index <= getMinterLength() - 1, "MMF: index out of bounds"); return EnumerableSet.at(_minters, _index); } // modifier for mint function modifier onlyMinter() { require(isMinter(msg.sender), "caller is not the minter"); _; } }
{ "compilerPath": "", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"preMineSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002fde40585043c22904911f370b5c466e6ff969c94beb63b667af8998a5e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000a00000000000200010000000103550000006001100270000002ad0010019d0000008001000039000000400010043f00000000010004160000000102200190000000280000c13d000000000110004c00000aa30000c13d0000000002000031000000040120008c00000aa30000413d0000000101000367000000000401043b000000e003400270000002bb0540009c000000890000813d000002de0440009c000000aa0000813d0000000704000039000002f00530009c000001790000c13d000000000404041a000000400100043d0000000000410435000000400200043d00000000012100490000002001100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab00001042e000000000110004c00000aa30000c13d000000400300043d0000004001300039000000400010043f0000002002300039000002ae01000041000700000002001d00000000001204350000000f01000039000a00000003001d0000000000130435000000400300043d0000004001300039000000400010043f0000002002300039000002af01000041000500000002001d00000000001204350000000501000039000900000001001d000800000003001d00000000001304350000000001000411000002b006100197000000000100041a000002b101100197000000000161019f000000000010041b000002ad01000041000000400200043d0000000003000414000002ad0430009c0000000003018019000002ad0420009c00000000010240190000004001100210000000c002300210000000000112019f000002b2011001c70000800d020000390000000303000039000002b304000041000400000003001d0000000005000019000600000006001d0aaf0aa50000040f000000010120019000000aa30000613d0000000a010000290000000001010433000a00000001001d0000000401000039000000000201041a000200000002001d000300000001001d0000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000010200008a000100000002001d0000000203000029000000000223013f0000000802200210000001000220018f000000010220008a000000000232016f00000001022002700000001f02200039000000000101043b000000050220027000000000022100190000000a060000290000001f0360008c000000d40000a13d000000010360021000000001033001bf0000000304000029000000000034041b00000007050000290000000003560019000000000453004b000000dc0000a13d0000000054050434000000000041041b0000000101100039000000000453004b000000830000213d000000dc0000013d000002bc0540009c000001100000813d000002ce0430009c000001a90000c13d0000000001000411000000000200041a000000000112013f000002b001100198000006270000c13d000000400100043d000002ad030000410000000004000414000002ad0540009c0000000004038019000002ad0510009c00000000010380190000004001100210000000c003400210000000000113019f000002b2011001c7000002b0052001970000800d020000390000000303000039000002b30400004100000000060000190aaf0aa50000040f000000010120019000000aa30000613d000000000100041a000002b101100197000000000010041b000000000100001900000ab00001042e000002df0430009c000001d00000c13d000000640220008a000000600300008a000000000232004b00000aa30000813d0000004402100370000000000402043b0000002402100370000000000202043b000002b0022001970000000401100370000000000101043b000002b003100198000003b50000c13d000000400100043d0000006402100039000002ee0300004100000000003204350000004402100039000002ef030000410000000000320435000000240210003900000025030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab10001043000000007030000290000000003030433000001000400008a000000000343016f0000000104600210000000000343019f0000000304000029000000000034041b000000000312004b000000e20000a13d000000000001041b0000000101100039000000000312004b000000de0000213d00000008010000290000000001010433000a00000001001d0000000901000029000000000201041a000800000002001d0000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d00000001020000290000000803000029000000000223013f0000000802200210000001000220018f000000010220008a000000000232016f00000001022002700000001f02200039000000000101043b000000050220027000000000022100190000000a060000290000001f0360008c000001e30000a13d000000010360021000000001033001bf0000000904000029000000000034041b00000005050000290000000003560019000000000453004b000001eb0000a13d0000000054050434000000000041041b0000000101100039000000000453004b0000010a0000213d000001eb0000013d000002bd0440009c000002120000813d000002c60430009c0000028e0000c13d000000240220008a000000200300008a000000000232004b00000aa30000813d0000000002000411000000000300041a000000000323013f0000000401100370000000000601043b000002b001300198000006270000c13d000002b005200198000001fa0000613d0000000301000039000000000301041a0000000002630019000000000432004b000000000400001900000001040040390000000104400190000009430000c13d000800000006001d000900000005001d0000000104000039000a00000004001d000002cd0420009c0000022e0000813d000000000332004b0000000903000029000009430000413d000000000021041b00000000003004350000000101000039000a00000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a00000008020000290000000002210019000700000002001d000000000112004b0000000001000019000000010100403900000001011001900000000901000029000009430000c13d00000000001004350000000a01000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000702000029000000000021041b000000400100043d00000008020000290000000000210435000000400200043d0000000001210049000002ad03000041000002ad0420009c000000000203801900000040022002100000002001100039000002ad0410009c00000000010380190000006001100210000000000121019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002b904000041000000000500001900000009060000290aaf0aa50000040f00000001012001900000022e0000c13d00000aa30000013d000002f10430009c000003060000c13d0000000401000039000000000201041a000000010300008a000000000332013f0000000803300210000001000330018f000000010330008a000000000223016f000000200300008a00000001052002700000001f04500039000000000334016f000000400700043d00000020047000390000000003430019000000400030043f0000000000570435000000020320008c000004bf0000413d0000003f0220008c000004ba0000a13d000800000005001d000900000004001d000a00000007001d0000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000090400002900000008020000290000000002420019000000000101043b0000000a07000029000000000301041a00000000043404360000000101100039000000000342004b000001a30000213d000004bf0000013d000002cf0430009c000003300000c13d000000440220008a000000400300008a000000000232004b00000aa30000813d000000400400043d0000002402100370000000000202043b0000000401100370000000000101043b000002b003100198000004f20000c13d0000006401400039000002dc0200004100000000002104350000004401400039000002dd020000410000000000210435000000240140003900000021020000390000000000210435000002c5010000410000000000140435000000040140003900000020020000390000000000210435000000400100043d00000000021400490000008402200039000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab100010430000002e00430009c000003510000c13d0000000601000039000000000101041a000000ff0110018f000000400200043d0000000000120435000000400100043d00000000021200490000002002200039000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab00001042e00000005030000290000000003030433000001000400008a000000000343016f0000000104600210000000000343019f0000000904000029000000000034041b000000000312004b000001f10000a13d000000000001041b0000000101100039000000000312004b000001ed0000213d0000000601000039000000000201041a000001000300008a000000000232016f00000012022001bf000000000021041b0000000601000029000000000110004c0000023e0000c13d000000400100043d0000004402100039000002e803000041000000000032043500000024021000390000001f030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000006401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000002be0430009c000003890000c13d000000240220008a000000200300008a000000000232004b00000aa30000813d0000000401100370000000000101043b000002b00110019700000000001004350000000801000039000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a000000000110004c0000000001000019000000010100c039000a00000001001d0000000a01000029000000010110018f000000400200043d0000000000120435000000400100043d00000000021200490000002002200039000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab00001042e0000000401000029000000000101041a000002b50210009c000009430000213d000002b60210009c000002890000213d000002b7011000410000000402000029000000000012041b000000060100002900000000001004350000000101000039000a00000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a000002b702100041000002b50110009c000009430000213d000900000002001d000000060100002900000000001004350000000a01000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000902000029000000000021041b000002b701000041000000400200043d0000000000120435000000400100043d0000000002120049000002ad03000041000002ad0410009c000000000103801900000040011002100000002002200039000002ad0420009c00000000020380190000006002200210000000000112019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002b904000041000000000500001900000006060000290aaf0aa50000040f000000010120019000000aa30000613d000000200100003900000100001004430000012000000443000002ba0100004100000ab00001042e000002c70430009c000003d20000c13d000000440220008a000000400300008a000000000232004b00000aa30000813d0000002402100370000000000202043b000800000002001d0000000401100370000000000101043b000a00000001001d000000400300043d0000006001300039000000400010043f0000004001300039000002cb0200004100000000002104350000002002300039000002cc01000041000600000002001d00000000001204350000002501000039000700000003001d00000000001304350000000001000411000900000001001d000002b00110019700000000001004350000000201000039000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f0000000a03000029000002b003300197000a00000003001d000000010220019000000aa30000613d000000000101043b0000000a020000290000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a0000000803000029000000000231004b000007cb0000813d000000400200043d000002c5010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000007050000290000000004050433000000000043043500000044032000390000000004050433000000000240004c0000000002000019000002fa0000613d0000000002000019000000060700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b000002de0000413d00000000023400190000001f05400190000002fb0000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000002ed0000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d0000000002120049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab100010430000002f20430009c0000043e0000c13d000000440220008a000000400300008a000000000232004b00000aa30000813d00000000030004110000002402100370000000000402043b0000000401100370000000000101043b000002b001100197000a00000001001d000002b0023001980000063e0000c13d000000400100043d0000006402100039000002fa0300004100000000003204350000004402100039000002fb030000410000000000320435000000240210003900000024030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000002d00430009c0000046f0000613d000002d10430009c0000046f0000613d000002d20430009c000005fc0000c13d0000000501000039000000000201041a000000010300008a000000000332013f0000000803300210000001000330018f000000010330008a000000000223016f000000200300008a00000001052002700000001f04500039000000000334016f000000400700043d00000020047000390000000003430019000000400030043f0000000000570435000000020320008c000004bf0000413d0000003f0220008c000001900000213d0000000501000039000000000101041a000001000200008a000000000121016f0000000000140435000004bf0000013d000002e10430009c000004800000c13d000000440220008a000000400300008a000000000232004b00000aa30000813d0000002402100370000000000202043b000800000002001d0000000401100370000000000101043b000a00000001001d0000000001000411000900000001001d000002b00110019700000000001004350000000201000039000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f0000000a03000029000002b003300197000a00000003001d000000010220019000000aa30000613d000000000101043b0000000a020000290000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a00000008020000290000000004210019000000000114004b0000000001000019000000010100403900000001011001900000000903000029000009430000c13d000003130000013d000002bf04000041000002c00530009c0000001a0000613d000002c10430009c0000054b0000c13d000000440220008a000000400300008a000000000232004b00000aa30000813d0000002402100370000000000202043b000a00000002001d0000000401100370000000000101043b000002b00110019700000000001004350000000201000039000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000a02000029000002b0022001970000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f0000000102200190000006720000c13d00000aa30000013d000000000120004c000005760000c13d000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002ed030000410000000000320435000000240210003900000023030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000002c80330009c00000aa30000c13d000000440220008a000000400300008a000000000232004b00000aa30000813d0000002402100370000000000402043b0000000401100370000000000101043b000002b0021001970000000001000411000002b003100198000000b90000613d000000000120004c000003b70000613d000900000004001d000600000002001d000000400400043d0000006001400039000000400010043f0000004001400039000002c90200004100000000002104350000002002400039000002ca01000041000500000002001d00000000001204350000002601000039000700000004001d0000000000140435000800000003001d00000000003004350000000101000039000a00000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000201041a0000000901000029000000000112004b000009190000813d000000400200043d000002c5010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000007050000290000000004050433000000000043043500000044032000390000000004050433000000000240004c0000000002000019000004320000613d0000000002000019000000050700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b000004160000413d00000000023400190000001f05400190000004330000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000004250000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d0000000002120049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab100010430000002b704000041000002f30530009c0000001a0000613d0000000304000039000002f40530009c000000190000613d000002f50330009c00000aa30000c13d000000240220008a000000200300008a000000000232004b00000aa30000813d0000000002000411000000000300041a000000000223013f0000000401100370000000000101043b000002b003100197000002b001200198000006270000c13d000000000130004c0000095b0000c13d000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002f7030000410000000000320435000000240210003900000023030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000000000100041a000002b001100197000002b001100197000000400200043d0000000000120435000000400100043d00000000021200490000002002200039000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab00001042e000002e20430009c000005d20000c13d000000440220008a000000400300008a000000000232004b00000aa30000813d0000002402100370000000000202043b000800000002001d0000000401100370000000000101043b000a00000001001d0000000001000411000002b00110019700000000001004350000000801000039000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f0000000a03000029000002b003300197000900000003001d000000010220019000000aa30000613d000000000101043b000000000101041a000000000110004c000007ce0000c13d000000400100043d0000004402100039000002e9030000410000000000320435000000240210003900000018030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000006401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab1000104300000000401000039000000000101041a000001000200008a000000000121016f0000000000140435000000400200043d000000200100003900000000031204360000000004070433000000000043043500000040032000390000000004070433000000000240004c0000000002000019000004e60000613d000000000200001900000000053200190000002002200039000000000672001900000000060604330000000000650435000000000542004b000004ca0000413d00000000023400190000001f05400190000004e70000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000004d90000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d0000000002120049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab00001042e000a00000002001d0000006001400039000000400010043f0000004001400039000002d60200004100000000002104350000002201000039000700000004001d0000000002140436000002d701000041000600000002001d0000000000120435000900000003001d00000000003004350000000101000039000800000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000201041a0000000a01000029000000000112004b000006b20000813d000000400200043d000002c5010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000007050000290000000004050433000000000043043500000044032000390000000004050433000000000240004c00000000020000190000053f0000613d0000000002000019000000060700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b000005230000413d00000000023400190000001f05400190000005400000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000005320000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d0000000002120049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab100010430000002c20330009c00000aa30000c13d000000240220008a000000200300008a000000000232004b00000aa30000813d0000000003000411000000000200041a000000000332013f0000000401100370000000000101043b000002b006100197000002b001300198000006270000c13d000000400100043d000000000360004c000008280000c13d0000006402100039000002c30300004100000000003204350000004402100039000002c4030000410000000000320435000000240210003900000026030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000600000002001d000900000004001d000000400400043d0000006001400039000000400010043f0000004001400039000002c90200004100000000002104350000002002400039000002ca01000041000500000002001d00000000001204350000002601000039000700000004001d0000000000140435000800000003001d00000000003004350000000101000039000a00000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000201041a0000000901000029000000000112004b000007090000813d000000400200043d000002c5010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000007050000290000000004050433000000000043043500000044032000390000000004050433000000000240004c0000000002000019000005c60000613d0000000002000019000000050700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b000005aa0000413d00000000023400190000001f05400190000005c70000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000005b90000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d0000000002120049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab100010430000002e30430009c0000065c0000c13d000000240220008a000000200300008a000000000232004b00000aa30000813d0000000002000411000000000300041a000000000223013f0000000401100370000000000401043b000002b001200198000006270000c13d0000000701000039000000000201041a000000010320008a000000000334004b0000087f0000a13d000000400100043d0000004402100039000002e7030000410000000000320435000000240210003900000018030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000006401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000002d30330009c00000aa30000c13d000000240220008a000000200300008a000000000232004b00000aa30000813d0000000002000411000000000300041a000000000223013f0000000401100370000000000101043b000002b003100197000002b001200198000006270000c13d000000000130004c0000083f0000c13d000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002d5030000410000000000320435000000240210003900000023030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000000400100043d0000004402100039000002f6030000410000000000320435000002c502000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000000400200043d00000000012100490000006401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab1000104300000000a01000029000000000110004c000006740000c13d000000400100043d0000006402100039000002f80300004100000000003204350000004402100039000002f9030000410000000000320435000000240210003900000022030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000002e40330009c00000aa30000c13d000000240220008a000000200300008a000000000232004b00000aa30000813d0000000401100370000000000101043b000002b00110019700000000001004350000000101000039000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000401043b000000190000013d000800000004001d000900000002001d00000000002004350000000201000039000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000a020000290000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000802000029000000000021041b000000400100043d0000000000210435000000400200043d0000000001210049000002ad03000041000002ad0420009c000000000203801900000040022002100000002001100039000002ad0410009c00000000010380190000006001100210000000000121019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002db0400004100000009050000290000000a060000290aaf0aa50000040f0000000101000039000a00000001001d00000001012001900000022e0000c13d00000aa30000013d000700000002001d000000090100002900000000001004350000000801000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d0000000a0600002900000007020000290000000002620049000000000101043b000000000021041b0000000303000039000000000103041a000000400500043d0000004002500039000000400020043f0000002002500039000002d80400004100000000004204350000001e040000390000000000450435000000000461004b000008920000813d000000400300043d000002c501000041000000000013043500000004043000390000002001000039000000000014043500000024043000390000000006050433000000000064043500000044043000390000000005050433000000000350004c0000000003000019000006fd0000613d000000000300001900000000064300190000000007230019000000000707043300000000007604350000002003300039000000000653004b000006e10000413d00000000034500190000001f05500190000006fe0000613d0000010004000039000000010200003900000000035300490000002006500089000000000503043300000001076001900000000007040019000000010700603900000000722700a9000000010760027000000000844400a9000000010660008c0000000006070019000006f00000213d0000000002200049000000000225016f000000000023043500000000040100190000000003430019000000400100043d0000000002130049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab100010430000700000002001d000000080100002900000000001004350000000a01000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000090200002900000007030000290000000002230049000000000101043b000000000021041b00000006010000290000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a00000009020000290000000002210019000700000002001d000000000112004b000000000100001900000001010040390000000101100190000009430000c13d000000060100002900000000001004350000000a01000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000702000029000000000021041b000000400100043d00000009020000290000000000210435000000400200043d0000000001210049000002ad03000041000002ad0420009c000000000203801900000040022002100000002001100039000002ad0410009c00000000010380190000006001100210000000000121019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002b904000041000000080500002900000006060000290aaf0aa50000040f000000010120019000000aa30000613d000000400300043d0000006001300039000000400010043f0000004001300039000002ea0200004100000000002104350000002002300039000002eb01000041000600000002001d00000000001204350000002801000039000700000003001d0000000000130435000000080100002900000000001004350000000201000039000500000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000002000411000002b002200197000400000002001d0000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000201041a0000000901000029000300000002001d000000000112004b00000a640000813d000000400200043d000002c5010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000007050000290000000004050433000000000043043500000044032000390000000004050433000000000240004c0000000002000019000007bf0000613d0000000002000019000000060700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b000007a30000413d00000000023400190000001f05400190000007c00000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000007b20000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d0000000002120049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab10001043000000000043100490000000903000029000003130000013d0000000901000029000000000110004c000001fa0000613d0000000301000039000000000301041a00000008020000290000000002230019000000000432004b000000000400001900000001040040390000000104400190000009430000c13d0000000104000039000a00000004001d000002cd0420009c0000022e0000813d000000000332004b000009430000413d000000000021041b000000090100002900000000001004350000000101000039000a00000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a00000008020000290000000002210019000700000002001d000000000112004b000000000100001900000001010040390000000101100190000009430000c13d000000090100002900000000001004350000000a01000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000702000029000000000021041b000000400100043d00000008020000290000000000210435000000400200043d0000000001210049000002ad03000041000002ad0420009c000000000203801900000040022002100000002001100039000002ad0410009c00000000010380190000006001100210000000000121019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002b904000041000000000500001900000009060000290aaf0aa50000040f00000001012001900000022e0000c13d00000aa30000013d000002ad030000410000000004000414000002ad0540009c0000000004038019000002ad0510009c00000000010380190000004001100210000000c003400210000000000113019f000002b2011001c7000002b0052001970000800d020000390000000303000039000002b304000041000a00000006001d0aaf0aa50000040f000000010120019000000aa30000613d000000000100041a000002b1011001970000000a02000029000000000121019f000000a70000013d000900000003001d00000000003004350000000801000039000800000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a000000000110004c000a00000000001d0000022e0000c13d0000000702000039000000000102041a000700000001001d0000000101100039000000000012041b000a00000002001d0000000000200435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000070200002900000000012100190000000902000029000000000021041b0000000a01000029000000000101041a000a00000001001d00000000002004350000000801000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000a02000029000000000021041b0000000101000039000a00000001001d0000022e0000013d000a00000004001d000000000224004b000009db0000813d0000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000a020000290000000001210019000000000101041a000004710000013d0000000001610049000000000013041b000000400100043d0000000000610435000000400200043d0000000001210049000002ad04000041000002ad0520009c000000000204801900000040022002100000002001100039000002ad0510009c00000000010480190000006001100210000000000121019f0000000002000414000002ad0520009c0000000002048019000000c002200210000000000121019f000002b2011001c70000800d02000039000002b904000041000000090500002900000000060000190aaf0aa50000040f000000010120019000000aa30000613d000000400300043d0000006001300039000000400010043f0000004001300039000002d90200004100000000002104350000002002300039000002da01000041000600000002001d00000000001204350000002401000039000700000003001d0000000000130435000000090100002900000000001004350000000201000039000500000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000002000411000002b002200197000400000002001d0000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000201041a0000000a01000029000300000002001d000000000112004b00000a240000813d000000400200043d000002c5010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000007050000290000000004050433000000000043043500000044032000390000000004050433000000000240004c00000000020000190000090d0000613d0000000002000019000000060700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b000008f10000413d00000000023400190000001f044001900000090e0000613d0000010003000039000000000242004900000020054000890000000004020433000000080800002900000001065001900000000006030019000000010600603900000000688600a9000000010650027000000000733300a9000000010550008c0000000005060019000009000000213d0000000003800049000000000334016f000000000032043500000000030100190000000002320019000000400100043d0000000002120049000002ad03000041000002ad0420009c0000000002038019000002ad0410009c000000000103801900000040011002100000006002200210000000000112019f00000ab100010430000700000002001d000000080100002900000000001004350000000a01000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000090200002900000007030000290000000002230049000000000101043b000000000021041b00000006010000290000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a00000009020000290000000002210019000700000002001d000000000112004b000000000100001900000001010040390000000101100190000009f60000613d000000400100043d0000004402100039000002ec03000041000000000032043500000024021000390000001b030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000006401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000800000003001d00000000003004350000000801000039000900000001001d000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000101041a000700000001001d000000000110004c000a00000000001d0000022e0000613d0000000701000039000a00000001001d000000000101041a000600000001001d000000000110004c00000aa30000613d0000000a010000290000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d0000000702000029000000010320008a0000000a02000029000000000202041a000500000003001d000000000223004b00000aa30000813d000000000101043b00000006020000290000000001120019000000010110008a000000000101041a000600000001001d0000000a010000290000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000050200002900000000012100190000000602000029000000000021041b00000000002004350000000901000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000702000029000000000021041b0000000a01000029000000000101041a000700000001001d000000000110004c00000aa30000613d0000000a010000290000000000100435000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b4011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d0000000702000029000000010220008a000000000101043b0000000001210019000000000001041b0000000a01000029000000000021041b000000080100002900000000001004350000000901000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b000000000001041b0000000101000039000a00000001001d0000022e0000013d000000400100043d0000006402100039000002e50300004100000000003204350000004402100039000002e6030000410000000000320435000000240210003900000022030000390000000000320435000002c5020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000008401100039000002ad03000041000002ad0410009c0000000001038019000002ad0420009c000000000203801900000040022002100000006001100210000000000121019f00000ab100010430000000060100002900000000001004350000000a01000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b0000000702000029000000000021041b000000400100043d00000009020000290000000000210435000000400200043d0000000001210049000002ad03000041000002ad0420009c000000000203801900000040022002100000002001100039000002ad0410009c00000000010380190000006001100210000000000121019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002b904000041000000080500002900000006060000290aaf0aa50000040f00000001012001900000022e0000c13d00000aa30000013d0000000401000029000000000110004c000006410000613d000000090100002900000000001004350000000501000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b00000004020000290000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d0000000a0200002900000003030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000000400200043d0000000001210049000002ad03000041000002ad0420009c000000000203801900000040022002100000002001100039000002ad0410009c00000000010380190000006001100210000000000121019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002db04000041000000090500002900000004060000290aaf0aa50000040f0000000101200190000000a80000c13d00000aa30000013d0000000401000029000000000110004c000006410000613d000000080100002900000000001004350000000501000029000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000000101043b00000004020000290000000000200435000000200010043f000002ad010000410000000002000414000002ad0320009c0000000001024019000000c001100210000002b8011001c700008010020000390aaf0aaa0000040f000000010220019000000aa30000613d000000090200002900000003030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000000400200043d0000000001210049000002ad03000041000002ad0420009c000000000203801900000040022002100000002001100039000002ad0410009c00000000010380190000006001100210000000000121019f0000000002000414000002ad0420009c0000000002038019000000c002200210000000000121019f000002b2011001c70000800d020000390000000303000039000002db04000041000000080500002900000004060000290aaf0aa50000040f00000001012001900000022e0000c13d000000000100001900000ab10001043000000aa8002104210000000102000039000000000001042d0000000002000019000000000001042d00000aad002104230000000102000039000000000001042d0000000002000019000000000001042d00000aaf0000043200000ab00001042e00000ab1000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff655a4b616c6962757220546f6b656e000000000000000000000000000000000053574f5244000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00200000000000000000000000000000000000020000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffb33cd5eb6f50426ffffff00000000000000000000000000000000000000000003796274caf64c7100000000000000000000000000000000000000000000000004cc32a1490afbd90000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000200000000000000000000000000000040000001000000000000000000715018a600000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000aa271e1a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000aa271e1a000000000000000000000000000000000000000000084595161401484a00000000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77000000000000000000000000000000000000000000084595161401484a00000100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000079cc679000000000000000000000000000000000000000000000000000000000893d20e8000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000983b2d5665737300000000000000000000000000000000000000000000000000000000004d4d463a205f6164644d696e74657220697320746865207a65726f2061646472636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e536166654d6174683a207375627472616374696f6e206f766572666c6f770000616e63650000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e74206578636565647320616c6c6f778c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f2061646472657323b872dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000040c10f19000000000000000000000000000000000000000000000000000000005b7121f80000000000000000000000000000000000000000000000000000000070a082316473000000000000000000000000000000000000000000000000000000000000456e756d657261626c655365743a20696e646578206f7574206f6620626f756e4d4d463a20696e646578206f7574206f6620626f756e6473000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730063616c6c6572206973206e6f7420746865206d696e74657200000000000000006c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732061536166654d6174683a206164646974696f6e206f766572666c6f77000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164000000000000000000000000000000000000000000000000000000000323aac70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000c16ea830000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023338b884f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724d4d463a205f64656c4d696e74657220697320746865207a65726f2061646472737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464f79c36d4ebb46044808c74646a0cf640ce4b0f9192c57b909d636ab127f40488
[ 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.