ERC-20
Stablecoin
Overview
Max Total Supply
3,745,115.3240903645314174 CHI
Holders
1,179
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5.700164729117017896 CHIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
L2StandardERC20
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2021-11-28 */ // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File contracts/standards/IL2StandardERC20.sol pragma solidity ^0.8.9; interface IL2StandardERC20 is IERC20, IERC165 { function l1Token() external returns (address); function mint(address _to, uint256 _amount) external; function burn(address _from, uint256 _amount) external; event Mint(address indexed _account, uint256 _amount); event Burn(address indexed _account, uint256 _amount); } // File contracts/standards/L2StandardERC20.sol pragma solidity ^0.8.9; contract L2StandardERC20 is IL2StandardERC20, ERC20 { address public l1Token; address public l2Bridge; /** * @param _l2Bridge Address of the L2 standard bridge. * @param _l1Token Address of the corresponding L1 token. * @param _name ERC20 name. * @param _symbol ERC20 symbol. */ constructor( address _l2Bridge, address _l1Token, string memory _name, string memory _symbol ) ERC20(_name, _symbol) { l1Token = _l1Token; l2Bridge = _l2Bridge; } modifier onlyL2Bridge() { require(msg.sender == l2Bridge, "Only L2 Bridge can mint and burn"); _; } function supportsInterface(bytes4 _interfaceId) public pure returns (bool) { bytes4 firstSupportedInterface = bytes4(keccak256("supportsInterface(bytes4)")); // ERC165 bytes4 secondSupportedInterface = IL2StandardERC20.l1Token.selector ^ IL2StandardERC20.mint.selector ^ IL2StandardERC20.burn.selector; return _interfaceId == firstSupportedInterface || _interfaceId == secondSupportedInterface; } function mint(address _to, uint256 _amount) public virtual onlyL2Bridge { _mint(_to, _amount); emit Mint(_to, _amount); } function burn(address _from, uint256 _amount) public virtual onlyL2Bridge { _burn(_from, _amount); emit Burn(_from, _amount); } }
{ "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_l2Bridge","type":"address"},{"internalType":"address","name":"_l1Token","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"_account","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","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":"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":"_from","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":[],"name":"l1Token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2Bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200142738038062001427833981016040819052620000349162000171565b8181600362000044838262000290565b50600462000053828262000290565b5050600580546001600160a01b039586166001600160a01b0319918216179091556006805496909516951694909417909255506200035c915050565b80516001600160a01b0381168114620000a757600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000d457600080fd5b81516001600160401b0380821115620000f157620000f1620000ac565b604051601f8301601f19908116603f011681019082821181831017156200011c576200011c620000ac565b816040528381526020925086838588010111156200013957600080fd5b600091505b838210156200015d57858201830151818301840152908201906200013e565b600093810190920192909252949350505050565b600080600080608085870312156200018857600080fd5b62000193856200008f565b9350620001a3602086016200008f565b60408601519093506001600160401b0380821115620001c157600080fd5b620001cf88838901620000c2565b93506060870151915080821115620001e657600080fd5b50620001f587828801620000c2565b91505092959194509250565b600181811c908216806200021657607f821691505b6020821081036200023757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028b57600081815260208120601f850160051c81016020861015620002665750805b601f850160051c820191505b81811015620002875782815560010162000272565b5050505b505050565b81516001600160401b03811115620002ac57620002ac620000ac565b620002c481620002bd845462000201565b846200023d565b602080601f831160018114620002fc5760008415620002e35750858301515b600019600386901b1c1916600185901b17855562000287565b600085815260208120601f198616915b828110156200032d578886015182559484019460019091019084016200030c565b50858210156200034c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6110bb806200036c6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb14610215578063ae1f6aaf14610228578063c01e1bd61461026d578063dd62ed3e1461028d57600080fd5b806370a08231146101b157806395d89b41146101e75780639dc29fac146101ef578063a457c2d71461020257600080fd5b806323b872dd116100d357806323b872dd14610167578063313ce5671461017a578063395093511461018957806340c10f191461019c57600080fd5b806301ffc9a71461010557806306fdde031461012d578063095ea7b31461014257806318160ddd14610155575b600080fd5b610118610113366004610e4b565b6102d3565b60405190151581526020015b60405180910390f35b610135610393565b6040516101249190610e94565b610118610150366004610f29565b610425565b6002545b604051908152602001610124565b610118610175366004610f53565b61043c565b60405160128152602001610124565b610118610197366004610f29565b61050d565b6101af6101aa366004610f29565b610556565b005b6101596101bf366004610f8f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61013561061b565b6101af6101fd366004610f29565b61062a565b610118610210366004610f29565b6106e3565b610118610223366004610f29565b6107a1565b6006546102489073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610124565b6005546102489073ffffffffffffffffffffffffffffffffffffffff1681565b61015961029b366004610faa565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60007f01ffc9a7a5cef8baa21ed3c5c0d7e23accb804b619e9333b597f47a0d84076e27f1d1d8b63000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000084167f01ffc9a700000000000000000000000000000000000000000000000000000000148061038b57507fffffffff00000000000000000000000000000000000000000000000000000000848116908216145b949350505050565b6060600380546103a290610fdd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ce90610fdd565b801561041b5780601f106103f05761010080835404028352916020019161041b565b820191906000526020600020905b8154815290600101906020018083116103fe57829003601f168201915b5050505050905090565b60006104323384846107ae565b5060015b92915050565b600061044984848461092e565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104f55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61050285338584036107ae565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161043291859061055190869061105f565b6107ae565b60065473ffffffffffffffffffffffffffffffffffffffff1633146105bd5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e60448201526064016104ec565b6105c78282610b94565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060f91815260200190565b60405180910390a25050565b6060600480546103a290610fdd565b60065473ffffffffffffffffffffffffffffffffffffffff1633146106915760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e60448201526064016104ec565b61069b8282610c9a565b8173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405161060f91815260200190565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561078a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104ec565b61079733858584036107ae565b5060019392505050565b600061043233848461092e565b73ffffffffffffffffffffffffffffffffffffffff83166108365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff82166108bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166109b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff8216610a405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610adc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610b2090849061105f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b8691815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610bf75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ec565b8060026000828254610c09919061105f565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610c4390849061105f565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610d235760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610dbf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610dfb908490611072565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610921565b600060208284031215610e5d57600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610e8d57600080fd5b9392505050565b600060208083528351808285015260005b81811015610ec157858101830151858201604001528201610ea5565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f2457600080fd5b919050565b60008060408385031215610f3c57600080fd5b610f4583610f00565b946020939093013593505050565b600080600060608486031215610f6857600080fd5b610f7184610f00565b9250610f7f60208501610f00565b9150604084013590509250925092565b600060208284031215610fa157600080fd5b610e8d82610f00565b60008060408385031215610fbd57600080fd5b610fc683610f00565b9150610fd460208401610f00565b90509250929050565b600181811c90821680610ff157607f821691505b60208210810361102a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561043657610436611030565b818103818111156104365761043661103056fea264697066735822122076c14553c8b56791ab0591cf0422e2f7600a21b8db07f32c9c3216f06ed79a1c64736f6c634300081200330000000000000000000000004200000000000000000000000000000000000010000000000000000000000000fc2189d367d8d3d7cca1af43ff6169197dc7351e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000007436869205553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034348490000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb14610215578063ae1f6aaf14610228578063c01e1bd61461026d578063dd62ed3e1461028d57600080fd5b806370a08231146101b157806395d89b41146101e75780639dc29fac146101ef578063a457c2d71461020257600080fd5b806323b872dd116100d357806323b872dd14610167578063313ce5671461017a578063395093511461018957806340c10f191461019c57600080fd5b806301ffc9a71461010557806306fdde031461012d578063095ea7b31461014257806318160ddd14610155575b600080fd5b610118610113366004610e4b565b6102d3565b60405190151581526020015b60405180910390f35b610135610393565b6040516101249190610e94565b610118610150366004610f29565b610425565b6002545b604051908152602001610124565b610118610175366004610f53565b61043c565b60405160128152602001610124565b610118610197366004610f29565b61050d565b6101af6101aa366004610f29565b610556565b005b6101596101bf366004610f8f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61013561061b565b6101af6101fd366004610f29565b61062a565b610118610210366004610f29565b6106e3565b610118610223366004610f29565b6107a1565b6006546102489073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610124565b6005546102489073ffffffffffffffffffffffffffffffffffffffff1681565b61015961029b366004610faa565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60007f01ffc9a7a5cef8baa21ed3c5c0d7e23accb804b619e9333b597f47a0d84076e27f1d1d8b63000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000084167f01ffc9a700000000000000000000000000000000000000000000000000000000148061038b57507fffffffff00000000000000000000000000000000000000000000000000000000848116908216145b949350505050565b6060600380546103a290610fdd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ce90610fdd565b801561041b5780601f106103f05761010080835404028352916020019161041b565b820191906000526020600020905b8154815290600101906020018083116103fe57829003601f168201915b5050505050905090565b60006104323384846107ae565b5060015b92915050565b600061044984848461092e565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104f55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61050285338584036107ae565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161043291859061055190869061105f565b6107ae565b60065473ffffffffffffffffffffffffffffffffffffffff1633146105bd5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e60448201526064016104ec565b6105c78282610b94565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060f91815260200190565b60405180910390a25050565b6060600480546103a290610fdd565b60065473ffffffffffffffffffffffffffffffffffffffff1633146106915760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79204c32204272696467652063616e206d696e7420616e64206275726e60448201526064016104ec565b61069b8282610c9a565b8173ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405161060f91815260200190565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561078a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104ec565b61079733858584036107ae565b5060019392505050565b600061043233848461092e565b73ffffffffffffffffffffffffffffffffffffffff83166108365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff82166108bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166109b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff8216610a405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610adc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610b2090849061105f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b8691815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610bf75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ec565b8060026000828254610c09919061105f565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610c4390849061105f565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610d235760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610dbf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104ec565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610dfb908490611072565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610921565b600060208284031215610e5d57600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610e8d57600080fd5b9392505050565b600060208083528351808285015260005b81811015610ec157858101830151858201604001528201610ea5565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f2457600080fd5b919050565b60008060408385031215610f3c57600080fd5b610f4583610f00565b946020939093013593505050565b600080600060608486031215610f6857600080fd5b610f7184610f00565b9250610f7f60208501610f00565b9150604084013590509250925092565b600060208284031215610fa157600080fd5b610e8d82610f00565b60008060408385031215610fbd57600080fd5b610fc683610f00565b9150610fd460208401610f00565b90509250929050565b600181811c90821680610ff157607f821691505b60208210810361102a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561043657610436611030565b818103818111156104365761043661103056fea264697066735822122076c14553c8b56791ab0591cf0422e2f7600a21b8db07f32c9c3216f06ed79a1c64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004200000000000000000000000000000000000010000000000000000000000000fc2189d367d8d3d7cca1af43ff6169197dc7351e000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000007436869205553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034348490000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _l2Bridge (address): 0x4200000000000000000000000000000000000010
Arg [1] : _l1Token (address): 0xfc2189D367d8d3D7CCA1aF43ff6169197DC7351e
Arg [2] : _name (string): Chi USD
Arg [3] : _symbol (string): CHI
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000004200000000000000000000000000000000000010
Arg [1] : 000000000000000000000000fc2189d367d8d3d7cca1af43ff6169197dc7351e
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4368692055534400000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4348490000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
17853:1466:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18548:454;;;;;;:::i;:::-;;:::i;:::-;;;516:14:1;;509:22;491:41;;479:2;464:18;18548:454:0;;;;;;;;6522:100;;;:::i;:::-;;;;;;;:::i;8689:169::-;;;;;;:::i;:::-;;:::i;7642:108::-;7730:12;;7642:108;;;1761:25:1;;;1749:2;1734:18;7642:108:0;1615:177:1;9340:492:0;;;;;;:::i;:::-;;:::i;7484:93::-;;;7567:2;2272:36:1;;2260:2;2245:18;7484:93:0;2130:184:1;10241:215:0;;;;;;:::i;:::-;;:::i;19010:146::-;;;;;;:::i;:::-;;:::i;:::-;;7813:127;;;;;;:::i;:::-;7914:18;;7887:7;7914:18;;;;;;;;;;;;7813:127;6741:104;;;:::i;19164:152::-;;;;;;:::i;:::-;;:::i;10959:413::-;;;;;;:::i;:::-;;:::i;8153:175::-;;;;;;:::i;:::-;;:::i;17941:23::-;;;;;;;;;;;;2686:42:1;2674:55;;;2656:74;;2644:2;2629:18;17941:23:0;2510:226:1;17912:22:0;;;;;;;;;8391:151;;;;;;:::i;:::-;8507:18;;;;8480:7;8507:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8391:151;18548:454;18617:4;18674:38;18768:125;18911:39;;;;;;:83;;-1:-1:-1;18954:40:0;;;;;;;;18911:83;18904:90;18548:454;-1:-1:-1;;;;18548:454:0:o;6522:100::-;6576:13;6609:5;6602:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6522:100;:::o;8689:169::-;8772:4;8789:39;4313:10;8812:7;8821:6;8789:8;:39::i;:::-;-1:-1:-1;8846:4:0;8689:169;;;;;:::o;9340:492::-;9480:4;9497:36;9507:6;9515:9;9526:6;9497:9;:36::i;:::-;9573:19;;;9546:24;9573:19;;;:11;:19;;;;;;;;4313:10;9573:33;;;;;;;;9625:26;;;;9617:79;;;;-1:-1:-1;;;9617:79:0;;3650:2:1;9617:79:0;;;3632:21:1;3689:2;3669:18;;;3662:30;3728:34;3708:18;;;3701:62;3799:10;3779:18;;;3772:38;3827:19;;9617:79:0;;;;;;;;;9732:57;9741:6;4313:10;9782:6;9763:16;:25;9732:8;:57::i;:::-;-1:-1:-1;9820:4:0;;9340:492;-1:-1:-1;;;;9340:492:0:o;10241:215::-;4313:10;10329:4;10378:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10329:4;;10346:80;;10369:7;;10378:47;;10415:10;;10378:47;:::i;:::-;10346:8;:80::i;19010:146::-;18475:8;;;;18461:10;:22;18453:67;;;;-1:-1:-1;;;18453:67:0;;4378:2:1;18453:67:0;;;4360:21:1;;;4397:18;;;4390:30;4456:34;4436:18;;;4429:62;4508:18;;18453:67:0;4176:356:1;18453:67:0;19093:19:::1;19099:3;19104:7;19093:5;:19::i;:::-;19135:3;19130:18;;;19140:7;19130:18;;;;1761:25:1::0;;1749:2;1734:18;;1615:177;19130:18:0::1;;;;;;;;19010:146:::0;;:::o;6741:104::-;6797:13;6830:7;6823:14;;;;;:::i;19164:152::-;18475:8;;;;18461:10;:22;18453:67;;;;-1:-1:-1;;;18453:67:0;;4378:2:1;18453:67:0;;;4360:21:1;;;4397:18;;;4390:30;4456:34;4436:18;;;4429:62;4508:18;;18453:67:0;4176:356:1;18453:67:0;19249:21:::1;19255:5;19262:7;19249:5;:21::i;:::-;19293:5;19288:20;;;19300:7;19288:20;;;;1761:25:1::0;;1749:2;1734:18;;1615:177;10959:413:0;4313:10;11052:4;11096:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11149:35;;;;11141:85;;;;-1:-1:-1;;;11141:85:0;;4739:2:1;11141:85:0;;;4721:21:1;4778:2;4758:18;;;4751:30;4817:34;4797:18;;;4790:62;4888:7;4868:18;;;4861:35;4913:19;;11141:85:0;4537:401:1;11141:85:0;11262:67;4313:10;11285:7;11313:15;11294:16;:34;11262:8;:67::i;:::-;-1:-1:-1;11360:4:0;;10959:413;-1:-1:-1;;;10959:413:0:o;8153:175::-;8239:4;8256:42;4313:10;8280:9;8291:6;8256:9;:42::i;14643:380::-;14779:19;;;14771:68;;;;-1:-1:-1;;;14771:68:0;;5145:2:1;14771:68:0;;;5127:21:1;5184:2;5164:18;;;5157:30;5223:34;5203:18;;;5196:62;5294:6;5274:18;;;5267:34;5318:19;;14771:68:0;4943:400:1;14771:68:0;14858:21;;;14850:68;;;;-1:-1:-1;;;14850:68:0;;5550:2:1;14850:68:0;;;5532:21:1;5589:2;5569:18;;;5562:30;5628:34;5608:18;;;5601:62;5699:4;5679:18;;;5672:32;5721:19;;14850:68:0;5348:398:1;14850:68:0;14931:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14983:32;;1761:25:1;;;14983:32:0;;1734:18:1;14983:32:0;;;;;;;;14643:380;;;:::o;11862:733::-;12002:20;;;11994:70;;;;-1:-1:-1;;;11994:70:0;;5953:2:1;11994:70:0;;;5935:21:1;5992:2;5972:18;;;5965:30;6031:34;6011:18;;;6004:62;6102:7;6082:18;;;6075:35;6127:19;;11994:70:0;5751:401:1;11994:70:0;12083:23;;;12075:71;;;;-1:-1:-1;;;12075:71:0;;6359:2:1;12075:71:0;;;6341:21:1;6398:2;6378:18;;;6371:30;6437:34;6417:18;;;6410:62;6508:5;6488:18;;;6481:33;6531:19;;12075:71:0;6157:399:1;12075:71:0;12243:17;;;12219:21;12243:17;;;;;;;;;;;12279:23;;;;12271:74;;;;-1:-1:-1;;;12271:74:0;;6763:2:1;12271:74:0;;;6745:21:1;6802:2;6782:18;;;6775:30;6841:34;6821:18;;;6814:62;6912:8;6892:18;;;6885:36;6938:19;;12271:74:0;6561:402:1;12271:74:0;12381:17;;;;:9;:17;;;;;;;;;;;12401:22;;;12381:42;;12445:20;;;;;;;;:30;;12417:6;;12381:9;12445:30;;12417:6;;12445:30;:::i;:::-;;;;;;;;12510:9;12493:35;;12502:6;12493:35;;;12521:6;12493:35;;;;1761:25:1;;1749:2;1734:18;;1615:177;12493:35:0;;;;;;;;11983:612;11862:733;;;:::o;12882:399::-;12966:21;;;12958:65;;;;-1:-1:-1;;;12958:65:0;;7170:2:1;12958:65:0;;;7152:21:1;7209:2;7189:18;;;7182:30;7248:33;7228:18;;;7221:61;7299:18;;12958:65:0;6968:355:1;12958:65:0;13114:6;13098:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13131:18:0;;;:9;:18;;;;;;;;;;:28;;13153:6;;13131:9;:28;;13153:6;;13131:28;:::i;:::-;;;;-1:-1:-1;;13175:37:0;;1761:25:1;;;13175:37:0;;;;13192:1;;13175:37;;1749:2:1;1734:18;13175:37:0;;;;;;;12882:399;;:::o;13614:591::-;13698:21;;;13690:67;;;;-1:-1:-1;;;13690:67:0;;7530:2:1;13690:67:0;;;7512:21:1;7569:2;7549:18;;;7542:30;7608:34;7588:18;;;7581:62;7679:3;7659:18;;;7652:31;7700:19;;13690:67:0;7328:397:1;13690:67:0;13857:18;;;13832:22;13857:18;;;;;;;;;;;13894:24;;;;13886:71;;;;-1:-1:-1;;;13886:71:0;;7932:2:1;13886:71:0;;;7914:21:1;7971:2;7951:18;;;7944:30;8010:34;7990:18;;;7983:62;8081:4;8061:18;;;8054:32;8103:19;;13886:71:0;7730:398:1;13886:71:0;13993:18;;;:9;:18;;;;;;;;;;14014:23;;;13993:44;;14059:12;:22;;14031:6;;13993:9;14059:22;;14031:6;;14059:22;:::i;:::-;;;;-1:-1:-1;;14099:37:0;;1761:25:1;;;14125:1:0;;14099:37;;;;;;1749:2:1;1734:18;14099:37:0;1615:177:1;14:332;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;180:9;167:23;230:66;223:5;219:78;212:5;209:89;199:117;;312:1;309;302:12;199:117;335:5;14:332;-1:-1:-1;;;14:332:1:o;543:607::-;655:4;684:2;713;702:9;695:21;745:6;739:13;788:6;783:2;772:9;768:18;761:34;813:1;823:140;837:6;834:1;831:13;823:140;;;932:14;;;928:23;;922:30;898:17;;;917:2;894:26;887:66;852:10;;823:140;;;827:3;1012:1;1007:2;998:6;987:9;983:22;979:31;972:42;1141:2;1071:66;1066:2;1058:6;1054:15;1050:88;1039:9;1035:104;1031:113;1023:121;;;;543:607;;;;:::o;1155:196::-;1223:20;;1283:42;1272:54;;1262:65;;1252:93;;1341:1;1338;1331:12;1252:93;1155:196;;;:::o;1356:254::-;1424:6;1432;1485:2;1473:9;1464:7;1460:23;1456:32;1453:52;;;1501:1;1498;1491:12;1453:52;1524:29;1543:9;1524:29;:::i;:::-;1514:39;1600:2;1585:18;;;;1572:32;;-1:-1:-1;;;1356:254:1:o;1797:328::-;1874:6;1882;1890;1943:2;1931:9;1922:7;1918:23;1914:32;1911:52;;;1959:1;1956;1949:12;1911:52;1982:29;2001:9;1982:29;:::i;:::-;1972:39;;2030:38;2064:2;2053:9;2049:18;2030:38;:::i;:::-;2020:48;;2115:2;2104:9;2100:18;2087:32;2077:42;;1797:328;;;;;:::o;2319:186::-;2378:6;2431:2;2419:9;2410:7;2406:23;2402:32;2399:52;;;2447:1;2444;2437:12;2399:52;2470:29;2489:9;2470:29;:::i;2741:260::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2909:29;2928:9;2909:29;:::i;:::-;2899:39;;2957:38;2991:2;2980:9;2976:18;2957:38;:::i;:::-;2947:48;;2741:260;;;;;:::o;3006:437::-;3085:1;3081:12;;;;3128;;;3149:61;;3203:4;3195:6;3191:17;3181:27;;3149:61;3256:2;3248:6;3245:14;3225:18;3222:38;3219:218;;3293:77;3290:1;3283:88;3394:4;3391:1;3384:15;3422:4;3419:1;3412:15;3219:218;;3006:437;;;:::o;3857:184::-;3909:77;3906:1;3899:88;4006:4;4003:1;3996:15;4030:4;4027:1;4020:15;4046:125;4111:9;;;4132:10;;;4129:36;;;4145:18;;:::i;8133:128::-;8200:9;;;8221:11;;;8218:37;;;8235:18;;:::i
Swarm Source
ipfs://76c14553c8b56791ab0591cf0422e2f7600a21b8db07f32c9c3216f06ed79a1c
[ 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.