Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 94 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Redeem | 19786406 | 279 days ago | IN | 0 ETH | 0.00097181 | ||||
Redeem | 19616043 | 303 days ago | IN | 0 ETH | 0.00278375 | ||||
Redeem | 19344257 | 341 days ago | IN | 0 ETH | 0.00752275 | ||||
Redeem | 18738324 | 426 days ago | IN | 0 ETH | 0.0054287 | ||||
Swap To Decimal | 17713999 | 570 days ago | IN | 0 ETH | 0.00324271 | ||||
Redeem | 17713981 | 570 days ago | IN | 0 ETH | 0.00423871 | ||||
Swap To Decimal | 17690916 | 573 days ago | IN | 0 ETH | 0.00158396 | ||||
Redeem | 17690271 | 573 days ago | IN | 0 ETH | 0.04383211 | ||||
Grant Role | 16168049 | 787 days ago | IN | 0 ETH | 0.00138293 | ||||
Revoke Role | 16167954 | 787 days ago | IN | 0 ETH | 0.00073495 | ||||
Swap | 15845342 | 832 days ago | IN | 0 ETH | 0.00112453 | ||||
Swap To Decimal | 15845332 | 832 days ago | IN | 0 ETH | 0.00106328 | ||||
Redeem | 15845313 | 832 days ago | IN | 0 ETH | 0.00128797 | ||||
Redeem | 15124020 | 940 days ago | IN | 0 ETH | 0.00245086 | ||||
Redeem | 14352273 | 1065 days ago | IN | 0 ETH | 0.00220615 | ||||
Redeem | 14339491 | 1067 days ago | IN | 0 ETH | 0.00310812 | ||||
Redeem | 14295639 | 1074 days ago | IN | 0 ETH | 0.00814567 | ||||
Redeem | 14294338 | 1074 days ago | IN | 0 ETH | 0.00124867 | ||||
Redeem | 14294338 | 1074 days ago | IN | 0 ETH | 0.00480025 | ||||
Redeem | 14275405 | 1077 days ago | IN | 0 ETH | 0.00490118 | ||||
Redeem | 14263785 | 1078 days ago | IN | 0 ETH | 0.01317716 | ||||
Redeem | 14261165 | 1079 days ago | IN | 0 ETH | 0.00548646 | ||||
Swap To Decimal | 14144880 | 1097 days ago | IN | 0 ETH | 0.00550493 | ||||
Redeem | 14133890 | 1099 days ago | IN | 0 ETH | 0.01017413 | ||||
Redeem | 14133669 | 1099 days ago | IN | 0 ETH | 0.0079717 |
Latest 4 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17690271 | 573 days ago | Contract Creation | 0 ETH | |||
12956962 | 1282 days ago | Contract Creation | 0 ETH | |||
12908465 | 1290 days ago | Contract Creation | 0 ETH | |||
12907625 | 1290 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DecimalBridge
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./lib/Misc.sol"; import "./tokens/DERC20.sol"; contract DecimalBridge is AccessControl { bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant VALIDATOR_ROLE = keccak256("VALIDATOR_ROLE"); // 1 - DEL, 2 - ETH, 3 - BSC uint256 public immutable chainId; // the list of all registered tokens address[] tokenList; // tokenBySymbol[Symbol] = tokenAddress mapping(string => address) public tokenBySymbol; // chainList[chainId] = enabled mapping(uint256 => bool) public chainList; // swaps[hashedMsg] = SwapData mapping(bytes32 => SwapData) public swaps; // Struct of swap struct SwapData { uint256 transaction; // transaction number State state; } // Status of swap enum State { Empty, Initialized, Redeemed } /** * @dev Emitted when swap to Decimal chain created * */ event SwapToDecimalInitialized( uint256 timestamp, address indexed initiator, string recipient, uint256 amount, string tokenSymbol, uint256 chainTo, uint256 nonce ); /** * @dev Emitted when swap to other chain created * */ event SwapInitialized( uint256 timestamp, address indexed initiator, address recipient, uint256 amount, string tokenSymbol, uint256 chainTo, uint256 nonce ); /** * @dev Emitted when swap redeemed. */ event SwapRedeemed( address indexed initiator, uint256 timestamp, uint256 nonce ); /** * @dev Emitted when new token added */ event TokenAdded(address token, string symbol); constructor(uint256 _chainId) { // Grant the contract deployer the default admin role: it will be able // to grant and revoke any roles _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(ADMIN_ROLE, msg.sender); // Sets `ADMIN_ROLE` as `VALIDATOR_ROLE`'s admin role. _setRoleAdmin(VALIDATOR_ROLE, ADMIN_ROLE); // Sets `ADMIN_ROLE` as `MINTER_ROLE`'s admin role. _setRoleAdmin(MINTER_ROLE, ADMIN_ROLE); // Sets `ADMIN_ROLE` as `BURNER_ROLE`'s admin role. _setRoleAdmin(BURNER_ROLE, ADMIN_ROLE); // Sets `ADMIN_ROLE` as `PAUSER_ROLE`'s admin role. _setRoleAdmin(PAUSER_ROLE, ADMIN_ROLE); chainId = _chainId; // 1 - DEL, 2 - ETH, 3 - BSC } /** * @dev Returned list of registered tokens */ function getTokenList() public view returns (address[] memory) { return tokenList; } /** * @dev Creates new swap. * * Emits a {SwapInitialized} event * * Arguments * * - `amount` amount of tokens * - `nonce` number of transaction * - `recipient` recipient address in another network * - `chainTo` destination chain id * - `tokenSymbol` - symbol of token */ function swap( uint256 amount, uint256 nonce, address recipient, uint256 chainTo, string memory tokenSymbol ) external { require(chainTo != chainId, "DecimalBridge: Invalid chainTo id"); require(chainList[chainTo], "DecimalBridge: ChainTo id is not allowed"); address tokenAddress = tokenBySymbol[tokenSymbol]; require( tokenAddress != address(0), "DecimalBridge: Token is not registered" ); bytes32 hashedMsg = keccak256( abi.encodePacked( nonce, amount, tokenSymbol, recipient, chainId, chainTo ) ); require( swaps[hashedMsg].state == State.Empty, "DecimalBridge: Swap is not empty state or duplicate tx" ); swaps[hashedMsg] = SwapData({ transaction: nonce, state: State.Initialized }); DERC20(tokenAddress).burn(msg.sender, amount); emit SwapInitialized( block.timestamp, msg.sender, recipient, amount, tokenSymbol, chainTo, nonce ); } /** * @dev Creates new swap to decimal chain * * Emits a {SwapInitialized} event. * * Arguments * * - `amount` amount of tokens * - `nonce` number of transaction * - `recipient` recipient address in decimal network * - `tokenSymbol` symbol of token */ function swapToDecimal( uint256 amount, uint256 nonce, string memory recipient, string memory tokenSymbol ) external { address tokenAddress = tokenBySymbol[tokenSymbol]; require( tokenAddress != address(0), "DecimalBridge: Token is not registered" ); require( bytes(recipient).length == 41, "DecimalBridge: Recipient must be 41 symbols long" ); bytes32 hashedMsg = keccak256( abi.encodePacked( nonce, amount, tokenSymbol, recipient, chainId, uint256(1) ) ); require( swaps[hashedMsg].state == State.Empty, "DecimalBridge: Swap is not empty state or duplicate tx" ); swaps[hashedMsg] = SwapData({ transaction: nonce, state: State.Initialized }); DERC20(tokenAddress).burn(msg.sender, amount); emit SwapToDecimalInitialized( block.timestamp, msg.sender, recipient, amount, tokenSymbol, 1, nonce ); } /** * @dev Execute redeem. * * Emits a {SwapRedeemed} event. * Emits a {TokenAdded} event when new token sended * * Arguments: * * - `amount` amount of transaction. * - `recipient` recipient address in target network. * - `nonce` number of transaction. * - `chainFrom` source chain id * - `_v` v of signature. * - `_r` r of signature. * - `_s` s of signature. * - `tokenSymbol` symbol of token */ function redeem( uint256 amount, address recipient, uint256 nonce, uint256 chainFrom, uint8 _v, bytes32 _r, bytes32 _s, string memory tokenSymbol ) external { require(chainFrom != chainId, "DecimalBridge: Invalid chainFrom id"); require( chainList[chainFrom], "DecimalBridge: ChainFrom id not allowed" ); require( bytes(tokenSymbol).length > 0, "DecimalBridge: Symbol length should be greater than 0" ); address tokenAddress = tokenBySymbol[tokenSymbol]; if (tokenAddress == address(0)) { tokenAddress = address(new DERC20(tokenSymbol)); tokenBySymbol[tokenSymbol] = tokenAddress; tokenList.push(tokenAddress); emit TokenAdded(tokenAddress, tokenSymbol); } bytes32 message = keccak256( abi.encodePacked( nonce, amount, tokenSymbol, recipient, chainFrom, chainId ) ); require( swaps[message].state == State.Empty, "DecimalBridge: Swap is not empty state or duplicate tx" ); bytes32 hashedMsg = keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", message) ); address signer = Misc.recover(hashedMsg, _v, _r, _s); require( hasRole(VALIDATOR_ROLE, signer), "DecimalBridge: Validator address is invalid" ); swaps[message] = SwapData({transaction: nonce, state: State.Redeemed}); DERC20(tokenAddress).mint(recipient, amount); emit SwapRedeemed(msg.sender, block.timestamp, nonce); } /** * @dev Returns swap state. * * Arguments * * - `hashedSecret` hash of swap. */ function getSwapState(bytes32 hashedSecret) external view returns (State state) { return swaps[hashedSecret].state; } /** * @dev Add a new token * * Emits a {TokenAdded} event. * * Arguments * * - `symbol` symbol of token. */ function addToken(string memory symbol) external { require( hasRole(ADMIN_ROLE, msg.sender), "DecimalBridge: Caller is not an admin" ); require( bytes(symbol).length > 0, "DecimalBridge: Symbol length should be greater than 0" ); address tokenAddress = tokenBySymbol[symbol]; require( tokenAddress == address(0), "DecimalBridge: Token is already registered" ); tokenAddress = address(new DERC20(symbol)); tokenBySymbol[symbol] = tokenAddress; tokenList.push(tokenAddress); emit TokenAdded(tokenAddress, symbol); } /** * @dev Update a token address * * Arguments * * - `symbol` symbol of a token. * - `newToken` new address of a token */ function updateToken(string memory symbol, address newToken) external { require( hasRole(ADMIN_ROLE, msg.sender), "DecimalBridge: Caller is not an admin" ); tokenBySymbol[symbol] = newToken; } /** * @dev Manually mint token by symbol * * Arguments * * - `symbol` symbol of token. * - `to` recipient address. * - `amount` amount of tokens. */ function mintToken( string memory symbol, address to, uint256 amount ) external { require( hasRole(MINTER_ROLE, msg.sender), "DecimalBridge: Caller is not a minter" ); address token = tokenBySymbol[symbol]; require(token != address(0), "DecimalBridge: Token is not registered"); DERC20(token).mint(to, amount); } /** * @dev Manually burn token by symbol * * Arguments * * - `symbol` symbol of token. * - `from` address of user. * - `amount` amount of tokens. */ function burnToken( string memory symbol, address from, uint256 amount ) external { require( hasRole(BURNER_ROLE, msg.sender), "DecimalBridge: Caller is not a burner" ); address token = tokenBySymbol[symbol]; require(token != address(0), "DecimalBridge: Token is not registered"); DERC20(token).burn(from, amount); } /** * @dev Grant role for token by symbol * * Arguments * * - `symbol` symbol of token. * - `role` role constant. * - `user` address of user. */ function grantRoleToken( string memory symbol, bytes32 role, address user ) external { require( hasRole(ADMIN_ROLE, msg.sender), "DecimalBridge: Caller is not an admin" ); address token = tokenBySymbol[symbol]; require(token != address(0), "DecimalBridge: Token is not registered"); DERC20(token).grantRole(role, user); } /** * @dev Add enabled chain direction to bridge * * Arguments * * - `_chainId` id of chain. * - `enabled` true - enable chain, false - disable chain. */ function updateChain(uint256 _chainId, bool enabled) external { require( hasRole(ADMIN_ROLE, msg.sender), "DecimalBridge: Caller is not an admin" ); chainList[_chainId] = enabled; } /** * @dev Update name of token * * Arguments * * - `symbol` symbol of token. * - `name` name of token */ function updateTokenName(string memory symbol, string memory name) external { require( hasRole(ADMIN_ROLE, msg.sender), "DecimalBridge: Caller is not an admin" ); address token = tokenBySymbol[symbol]; require(token != address(0), "DecimalBridge: Token is not registered"); DERC20(token).updateName(name); } /** * @dev Pause token * * Arguments * * - `symbol` symbol of token. */ function pauseToken(string memory symbol) external { require( hasRole(PAUSER_ROLE, msg.sender), "DecimalBridge: Caller is not a pauser" ); address token = tokenBySymbol[symbol]; require(token != address(0), "DecimalBridge: Token is not registered"); DERC20(token).pause(); } /** * @dev Unpause token * * Arguments * * - `symbol` symbol of token. */ function unpauseToken(string memory symbol) external { require( hasRole(PAUSER_ROLE, msg.sender), "DecimalBridge: Caller is not a pauser" ); address token = tokenBySymbol[symbol]; require(token != address(0), "DecimalBridge: Token is not registered"); DERC20(token).unpause(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if(!hasRole(role, account)) { revert(string(abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ))); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity =0.8.4; library Misc { function recover( bytes32 hashedMsg, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { require( uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value" ); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); address signer = ecrecover(hashedMsg, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } }
// SPDX-License-Identifier: MIT pragma solidity =0.8.4; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract DERC20 is ERC20Pausable, AccessControl { bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); address private owner; string private _name; mapping(address => bool) public isBlockListed; event AddedBlockList(address user); event RemovedBlockList(address user); constructor(string memory symbol) ERC20("", symbol) { owner = msg.sender; _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(ADMIN_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); _setupRole(BURNER_ROLE, msg.sender); _setRoleAdmin(MINTER_ROLE, ADMIN_ROLE); _setRoleAdmin(BURNER_ROLE, ADMIN_ROLE); _setRoleAdmin(PAUSER_ROLE, ADMIN_ROLE); } /** * @dev Returns the owner of the token. * Binance Smart Chain BEP20 compatibility */ function getOwner() external view returns (address) { return owner; } function name() public view virtual override returns (string memory) { return _name; } /** * @dev Mint token * * Requirements * * - `to` recipient address. * - `amount` amount of tokens. */ function mint(address to, uint256 amount) external { require( hasRole(MINTER_ROLE, msg.sender), "You should have a minter role" ); _mint(to, amount); } /** * @dev Burn token * * Requirements * * - `from` address of user. * - `amount` amount of tokens. */ function burn(address from, uint256 amount) external { require( hasRole(BURNER_ROLE, msg.sender), "You should have a burner role" ); _burn(from, amount); } /** * @dev Pause token */ function pause() external { require( hasRole(PAUSER_ROLE, msg.sender), "You should have a pauser role" ); super._pause(); } /** * @dev Pause token */ function unpause() external { require( hasRole(PAUSER_ROLE, msg.sender), "You should have a pauser role" ); super._unpause(); } /** * @dev Add user address to blocklist * * Requirements * * - `user` address of user. */ function addBlockList(address user) external { require( hasRole(ADMIN_ROLE, msg.sender), "You should have an admin role" ); isBlockListed[user] = true; emit AddedBlockList(user); } /** * @dev Remove user address from blocklist * * Requirements * * - `user` address of user. */ function removeBlockList(address user) external { require( hasRole(ADMIN_ROLE, msg.sender), "You should have an admin role" ); isBlockListed[user] = false; emit RemovedBlockList(user); } /** * @dev Update name of token * * Requirements * * - `name_` name of token */ function updateName(string memory name_) external { require( hasRole(ADMIN_ROLE, msg.sender), "You should have an admin role" ); _name = name_; } /** * @dev check blocklist when token minted, burned or transfered * * Requirements * * - `from` source address * - `to` destination address */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { ERC20Pausable._beforeTokenTransfer(from, to, amount); require(isBlockListed[from] == false, "Address from is blocklisted"); require(isBlockListed[to] == false, "Address to is blocklisted"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, 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 defaut 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"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenSymbol","type":"string"},{"indexed":false,"internalType":"uint256","name":"chainTo","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"SwapInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"SwapRedeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"string","name":"recipient","type":"string"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenSymbol","type":"string"},{"indexed":false,"internalType":"uint256","name":"chainTo","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"SwapToDecimalInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"}],"name":"TokenAdded","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VALIDATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"}],"name":"addToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chainList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hashedSecret","type":"bytes32"}],"name":"getSwapState","outputs":[{"internalType":"enum DecimalBridge.State","name":"state","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"},{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"user","type":"address"}],"name":"grantRoleToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"}],"name":"pauseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"chainFrom","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"chainTo","type":"uint256"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"string","name":"recipient","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"name":"swapToDecimal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"swaps","outputs":[{"internalType":"uint256","name":"transaction","type":"uint256"},{"internalType":"enum DecimalBridge.State","name":"state","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"tokenBySymbol","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"}],"name":"unpauseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chainId","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateChain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"newToken","type":"address"}],"name":"updateToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"name","type":"string"}],"name":"updateTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162004c2338038062004c23833981016040819052620000349162000255565b6200004160003362000151565b6200005c60008051602062004c038339815191523362000151565b620000977f21702c8af46127c7fa207f89d0b0a8441bb32959a0ac7df790e9ab1a25c9892660008051602062004c0383398151915262000161565b620000d27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a660008051602062004c0383398151915262000161565b6200010d7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84860008051602062004c0383398151915262000161565b620001487f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a60008051602062004c0383398151915262000161565b6080526200026e565b6200015d8282620001b5565b5050565b600082815260208190526040902060010154819060405184907fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff90600090a460009182526020829052604090912060010155565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200015d576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002113390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006020828403121562000267578081fd5b5051919050565b608051614956620002ad600039600081816103ea01528181610ba801528181610d6c01528181610faf015281816115d9015261171b01526149566000f3fe60806040523480156200001157600080fd5b5060043610620002015760003560e01c80638ce261081162000119578063c49baebe11620000af578063db9b6d06116200007a578063db9b6d061462000511578063dbe77e541462000549578063e63ab1e91462000560578063eb84e7f2146200058857600080fd5b8063c49baebe1462000493578063cf2a916914620004bb578063d539139314620004d2578063d547741f14620004fa57600080fd5b8063a217fddf11620000f0578063a217fddf146200040c578063a3524b711462000415578063b3a842ff146200042c578063b9762334146200047c57600080fd5b80638ce2610814620003b657806391d1485414620003cd5780639a8a059214620003e457600080fd5b806336568abe116200019b57806375adf415116200016657806375adf415146200035a57806375b238fc14620003715780637721b1da14620003885780638c201dc8146200039f57600080fd5b806336568abe14620002ef5780633cb3cb061462000306578063476310a8146200031d57806370d48798146200033457600080fd5b8063273cbaa011620001dc578063273cbaa01462000280578063282c51f314620002995780632f2ff15d14620002c157806331301cce14620002d857600080fd5b806301ffc9a7146200020657806308890d551462000232578063248a9ca3146200024b575b600080fd5b6200021d620002173660046200207b565b620005c5565b60405190151581526020015b60405180910390f35b620002496200024336600462002188565b620005fd565b005b620002716200025c36600462002034565b60009081526020819052604090206001015490565b60405190815260200162000229565b6200028a620006fa565b604051620002299190620025c1565b620002717f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b62000249620002d23660046200204d565b6200075e565b62000249620002e93660046200212d565b6200078d565b62000249620003003660046200204d565b6200089a565b6200024962000317366004620020a5565b6200091c565b620002496200032e366004620020a5565b62000a0f565b6200021d6200034536600462002034565b60036020526000908152604090205460ff1681565b620002496200036b3660046200238a565b62000ae5565b620002716000805160206200490183398151915281565b62000249620003993660046200224b565b62000d6a565b62000249620003b0366004620020e4565b62001256565b62000249620003c7366004620020a5565b620012d6565b6200021d620003de3660046200204d565b620014be565b620002717f000000000000000000000000000000000000000000000000000000000000000081565b62000271600081565b6200024962000426366004620021e3565b620014e7565b620004636200043d366004620020a5565b80516020818301810180516002825292820191909301209152546001600160a01b031681565b6040516001600160a01b03909116815260200162000229565b620002496200048d3660046200231b565b620015d7565b620002717f21702c8af46127c7fa207f89d0b0a8441bb32959a0ac7df790e9ab1a25c9892681565b62000249620004cc3660046200212d565b620018dc565b620002717f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b620002496200050b3660046200204d565b620019e9565b6200053a6200052236600462002034565b60009081526004602052604090206001015460ff1690565b60405162000229919062002610565b620002496200055a366004620022e6565b62001a13565b620002717f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b620005b56200059936600462002034565b6004602052600090815260409020805460019091015460ff1682565b60405162000229929190620027f4565b60006001600160e01b03198216637965db0b60e01b1480620005f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b620006186000805160206200490183398151915233620014be565b620006405760405162461bcd60e51b8152600401620006379062002635565b60405180910390fd5b600060028460405162000654919062002456565b908152604051908190036020019020546001600160a01b03169050806200068f5760405162461bcd60e51b815260040162000637906200267a565b604051632f2ff15d60e01b8152600481018490526001600160a01b038381166024830152821690632f2ff15d906044015b600060405180830381600087803b158015620006db57600080fd5b505af1158015620006f0573d6000803e3d6000fd5b5050505050505050565b606060018054806020026020016040519081016040528092919081815260200182805480156200075457602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000735575b5050505050905090565b6000828152602081905260409020600101546200077c813362001a6d565b62000788838362001adc565b505050565b620007b97f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620014be565b620008155760405162461bcd60e51b815260206004820152602560248201527f446563696d616c4272696467653a2043616c6c6572206973206e6f74206120626044820152643ab93732b960d91b606482015260840162000637565b600060028460405162000829919062002456565b908152604051908190036020019020546001600160a01b0316905080620008645760405162461bcd60e51b815260040162000637906200267a565b604051632770a7eb60e21b81526001600160a01b03848116600483015260248201849052821690639dc29fac90604401620006c0565b6001600160a01b03811633146200090c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840162000637565b62000918828262001b64565b5050565b620009487f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620014be565b620009675760405162461bcd60e51b8152600401620006379062002716565b60006002826040516200097b919062002456565b908152604051908190036020019020546001600160a01b0316905080620009b65760405162461bcd60e51b815260040162000637906200267a565b806001600160a01b0316638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b158015620009f257600080fd5b505af115801562000a07573d6000803e3d6000fd5b505050505050565b62000a3b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620014be565b62000a5a5760405162461bcd60e51b8152600401620006379062002716565b600060028260405162000a6e919062002456565b908152604051908190036020019020546001600160a01b031690508062000aa95760405162461bcd60e51b815260040162000637906200267a565b806001600160a01b0316633f4ba83a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015620009f257600080fd5b600060028260405162000af9919062002456565b908152604051908190036020019020546001600160a01b031690508062000b345760405162461bcd60e51b815260040162000637906200267a565b825160291462000ba05760405162461bcd60e51b815260206004820152603060248201527f446563696d616c4272696467653a20526563697069656e74206d75737420626560448201526f2034312073796d626f6c73206c6f6e6760801b606482015260840162000637565b6000848684867f0000000000000000000000000000000000000000000000000000000000000000600160405160200162000be09695949392919062002547565b60408051601f19818403018152919052805160209091012090506000808281526004602052604090206001015460ff16600281111562000c3057634e487b7160e01b600052602160045260246000fd5b1462000c505760405162461bcd60e51b81526004016200063790620026c0565b604080518082018252868152600160208083018281526000868152600490925293902082518155925183820180549394939192909160ff19169083600281111562000cab57634e487b7160e01b600052602160045260246000fd5b021790555050604051632770a7eb60e21b8152336004820152602481018890526001600160a01b0384169150639dc29fac90604401600060405180830381600087803b15801562000cfb57600080fd5b505af115801562000d10573d6000803e3d6000fd5b50505050336001600160a01b03167ff0c6845299d8a76bfd4b86becf39737cd60fa029e5c74996f4aeedc1567599a34286898760018b60405162000d5a969594939291906200280a565b60405180910390a2505050505050565b7f000000000000000000000000000000000000000000000000000000000000000085141562000de85760405162461bcd60e51b815260206004820152602360248201527f446563696d616c4272696467653a20496e76616c696420636861696e46726f6d604482015262081a5960ea1b606482015260840162000637565b60008581526003602052604090205460ff1662000e585760405162461bcd60e51b815260206004820152602760248201527f446563696d616c4272696467653a20436861696e46726f6d206964206e6f7420604482015266185b1b1bddd95960ca1b606482015260840162000637565b600081511162000e7c5760405162461bcd60e51b815260040162000637906200275b565b600060028260405162000e90919062002456565b908152604051908190036020019020546001600160a01b031690508062000fa6578160405162000ec09062001f7a565b62000ecc919062002620565b604051809103906000f08015801562000ee9573d6000803e3d6000fd5b5090508060028360405162000eff919062002456565b90815260405190819003602001812080546001600160a01b039384166001600160a01b0319918216179091556001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805493851693909116929092179091557f7afee0f1b802cc0f66c67890e26b4566251859cf2cd8de79b86aed7251d9756a9062000f9d90839085906200259b565b60405180910390a15b6000878a848b8a7f000000000000000000000000000000000000000000000000000000000000000060405160200162000fe596959493929190620024ed565b60408051601f19818403018152919052805160209091012090506000808281526004602052604090206001015460ff1660028111156200103557634e487b7160e01b600052602160045260246000fd5b14620010555760405162461bcd60e51b81526004016200063790620026c0565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c016040516020818303038152906040528051906020012090506000620010b38289898962001bcc565b9050620010e17f21702c8af46127c7fa207f89d0b0a8441bb32959a0ac7df790e9ab1a25c9892682620014be565b620011435760405162461bcd60e51b815260206004820152602b60248201527f446563696d616c4272696467653a2056616c696461746f72206164647265737360448201526a081a5cc81a5b9d985b1a5960aa1b606482015260840162000637565b604080518082019091528a815260208101600290526000848152600460209081526040909120825181559082015160018083018054909160ff1990911690836002811115620011a257634e487b7160e01b600052602160045260246000fd5b0217905550506040516340c10f1960e01b81526001600160a01b038d81166004830152602482018f9052861691506340c10f1990604401600060405180830381600087803b158015620011f457600080fd5b505af115801562001209573d6000803e3d6000fd5b505060408051428152602081018e90523393507f03b2f5320b2f9d75bfee731ea585ffc2b78f2d33dc90449711d016ddae2410be92500160405180910390a2505050505050505050505050565b620012716000805160206200490183398151915233620014be565b620012905760405162461bcd60e51b8152600401620006379062002635565b80600283604051620012a3919062002456565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b03199092169190911790555050565b620012f16000805160206200490183398151915233620014be565b620013105760405162461bcd60e51b8152600401620006379062002635565b6000815111620013345760405162461bcd60e51b815260040162000637906200275b565b600060028260405162001348919062002456565b908152604051908190036020019020546001600160a01b031690508015620013c65760405162461bcd60e51b815260206004820152602a60248201527f446563696d616c4272696467653a20546f6b656e20697320616c7265616479206044820152691c9959da5cdd195c995960b21b606482015260840162000637565b81604051620013d59062001f7a565b620013e1919062002620565b604051809103906000f080158015620013fe573d6000803e3d6000fd5b5090508060028360405162001414919062002456565b90815260405190819003602001812080546001600160a01b039384166001600160a01b0319918216179091556001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805493851693909116929092179091557f7afee0f1b802cc0f66c67890e26b4566251859cf2cd8de79b86aed7251d9756a90620014b290839085906200259b565b60405180910390a15050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b620015026000805160206200490183398151915233620014be565b620015215760405162461bcd60e51b8152600401620006379062002635565b600060028360405162001535919062002456565b908152604051908190036020019020546001600160a01b0316905080620015705760405162461bcd60e51b815260040162000637906200267a565b6040516384da92a760e01b81526001600160a01b038216906384da92a7906200159e90859060040162002620565b600060405180830381600087803b158015620015b957600080fd5b505af1158015620015ce573d6000803e3d6000fd5b50505050505050565b7f0000000000000000000000000000000000000000000000000000000000000000821415620016535760405162461bcd60e51b815260206004820152602160248201527f446563696d616c4272696467653a20496e76616c696420636861696e546f20696044820152601960fa1b606482015260840162000637565b60008281526003602052604090205460ff16620016c45760405162461bcd60e51b815260206004820152602860248201527f446563696d616c4272696467653a20436861696e546f206964206973206e6f7460448201526708185b1b1bddd95960c21b606482015260840162000637565b6000600282604051620016d8919062002456565b908152604051908190036020019020546001600160a01b0316905080620017135760405162461bcd60e51b815260040162000637906200267a565b6000858784877f0000000000000000000000000000000000000000000000000000000000000000886040516020016200175296959493929190620024ed565b60408051601f19818403018152919052805160209091012090506000808281526004602052604090206001015460ff166002811115620017a257634e487b7160e01b600052602160045260246000fd5b14620017c25760405162461bcd60e51b81526004016200063790620026c0565b604080518082018252878152600160208083018281526000868152600490925293902082518155925183820180549394939192909160ff1916908360028111156200181d57634e487b7160e01b600052602160045260246000fd5b021790555050604051632770a7eb60e21b8152336004820152602481018990526001600160a01b0384169150639dc29fac90604401600060405180830381600087803b1580156200186d57600080fd5b505af115801562001882573d6000803e3d6000fd5b50505050336001600160a01b03167f7bf5cea2cba361bb94285c23ec8c391c3acfcc52eeaceff202d39a8cf4d56b0142878a87898c604051620018cb96959493929190620027b0565b60405180910390a250505050505050565b620019087f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620014be565b620019645760405162461bcd60e51b815260206004820152602560248201527f446563696d616c4272696467653a2043616c6c6572206973206e6f742061206d60448201526434b73a32b960d91b606482015260840162000637565b600060028460405162001978919062002456565b908152604051908190036020019020546001600160a01b0316905080620019b35760405162461bcd60e51b815260040162000637906200267a565b6040516340c10f1960e01b81526001600160a01b038481166004830152602482018490528216906340c10f1990604401620006c0565b60008281526020819052604090206001015462001a07813362001a6d565b62000788838362001b64565b62001a2e6000805160206200490183398151915233620014be565b62001a4d5760405162461bcd60e51b8152600401620006379062002635565b600091825260036020526040909120805460ff1916911515919091179055565b62001a798282620014be565b620009185762001a94816001600160a01b0316601462001d7d565b62001aa183602062001d7d565b60405160200162001ab492919062002474565b60408051601f198184030181529082905262461bcd60e51b8252620006379160040162002620565b62001ae88282620014be565b62000918576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905562001b203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62001b708282620014be565b1562000918576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111562001c4b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840162000637565b8360ff16601b148062001c6157508360ff16601c145b62001cba5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840162000637565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801562001d0f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811662001d745760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640162000637565b95945050505050565b6060600062001d8e83600262002870565b62001d9b90600262002855565b67ffffffffffffffff81111562001dc257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562001ded576020820181803683370190505b509050600360fc1b8160008151811062001e1757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062001e5557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600062001e7b84600262002870565b62001e8890600162002855565b90505b600181111562001f22576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062001ecc57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811062001ef157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9362001f1a81620028c5565b905062001e8b565b50831562001f735760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000637565b9392505050565b611ff5806200290c83390190565b80356001600160a01b038116811462001fa057600080fd5b919050565b600082601f83011262001fb6578081fd5b813567ffffffffffffffff8082111562001fd45762001fd4620028f5565b604051601f8301601f19908116603f0116810190828211818310171562001fff5762001fff620028f5565b8160405283815286602085880101111562002018578485fd5b8360208701602083013792830160200193909352509392505050565b60006020828403121562002046578081fd5b5035919050565b6000806040838503121562002060578081fd5b82359150620020726020840162001f88565b90509250929050565b6000602082840312156200208d578081fd5b81356001600160e01b03198116811462001f73578182fd5b600060208284031215620020b7578081fd5b813567ffffffffffffffff811115620020ce578182fd5b620020dc8482850162001fa5565b949350505050565b60008060408385031215620020f7578182fd5b823567ffffffffffffffff8111156200210e578283fd5b6200211c8582860162001fa5565b925050620020726020840162001f88565b60008060006060848603121562002142578081fd5b833567ffffffffffffffff81111562002159578182fd5b620021678682870162001fa5565b935050620021786020850162001f88565b9150604084013590509250925092565b6000806000606084860312156200219d578283fd5b833567ffffffffffffffff811115620021b4578384fd5b620021c28682870162001fa5565b93505060208401359150620021da6040850162001f88565b90509250925092565b60008060408385031215620021f6578182fd5b823567ffffffffffffffff808211156200220e578384fd5b6200221c8683870162001fa5565b9350602085013591508082111562002232578283fd5b50620022418582860162001fa5565b9150509250929050565b600080600080600080600080610100898b03121562002268578384fd5b883597506200227a60208a0162001f88565b96506040890135955060608901359450608089013560ff811681146200229e578485fd5b935060a0890135925060c0890135915060e089013567ffffffffffffffff811115620022c8578182fd5b620022d68b828c0162001fa5565b9150509295985092959890939650565b60008060408385031215620022f9578182fd5b823591506020830135801515811462002310578182fd5b809150509250929050565b600080600080600060a0868803121562002333578081fd5b85359450602086013593506200234c6040870162001f88565b925060608601359150608086013567ffffffffffffffff8111156200236f578182fd5b6200237d8882890162001fa5565b9150509295509295909350565b60008060008060808587031215620023a0578182fd5b8435935060208501359250604085013567ffffffffffffffff80821115620023c6578384fd5b620023d48883890162001fa5565b93506060870135915080821115620023ea578283fd5b50620023f98782880162001fa5565b91505092959194509250565b600381106200242457634e487b7160e01b600052602160045260246000fd5b9052565b600081518084526200244281602086016020860162002892565b601f01601f19169290920160200192915050565b600082516200246a81846020870162002892565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620024ae81601785016020880162002892565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620024e181602884016020880162002892565b01602801949350505050565b868152856020820152600085516200250d816040850160208a0162002892565b60609590951b6bffffffffffffffffffffffff19166040929095019182019490945260548101929092526074820152609401949350505050565b8681528560208201526000855162002567816040850160208a0162002892565b85519083019062002580816040840160208a0162002892565b01604081019490945250506060820152608001949350505050565b6001600160a01b0383168152604060208201819052600090620020dc9083018462002428565b6020808252825182820181905260009190848201906040850190845b81811015620026045783516001600160a01b031683529284019291840191600101620025dd565b50909695505050505050565b60208101620005f7828462002405565b60208152600062001f73602083018462002428565b60208082526025908201527f446563696d616c4272696467653a2043616c6c6572206973206e6f7420616e2060408201526430b236b4b760d91b606082015260800190565b60208082526026908201527f446563696d616c4272696467653a20546f6b656e206973206e6f7420726567696040820152651cdd195c995960d21b606082015260800190565b60208082526036908201527f446563696d616c4272696467653a2053776170206973206e6f7420656d707479604082015275040e6e8c2e8ca40dee440c8eae0d8d2c6c2e8ca40e8f60531b606082015260800190565b60208082526025908201527f446563696d616c4272696467653a2043616c6c6572206973206e6f742061207060408201526430bab9b2b960d91b606082015260800190565b60208082526035908201527f446563696d616c4272696467653a2053796d626f6c206c656e6774682073686f6040820152740756c642062652067726561746572207468616e203605c1b606082015260800190565b86815260018060a01b038616602082015284604082015260c060608201526000620027df60c083018662002428565b60808301949094525060a00152949350505050565b8281526040810162001f73602083018462002405565b86815260c0602082015260006200282560c083018862002428565b86604084015282810360608401526200283f818762002428565b6080840195909552505060a00152949350505050565b600082198211156200286b576200286b620028df565b500190565b60008160001904831182151516156200288d576200288d620028df565b500290565b60005b83811015620028af57818101518382015260200162002895565b83811115620028bf576000848401525b50505050565b600081620028d757620028d7620028df565b506000190190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe60806040523480156200001157600080fd5b5060405162001ff538038062001ff5833981016040819052620000349162000354565b6040805160208101918290526000808252909183916200005791600391620002ae565b5080516200006d906004906020840190620002ae565b50506005805460ff1916905550600780546001600160a01b031916339081179091556200009d90600090620001a6565b620000b860008051602062001fd583398151915233620001a6565b620000d360008051602062001fb583398151915233620001a6565b620000ff7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620001a6565b6200012960008051602062001fb583398151915260008051602062001fd5833981519152620001b6565b620001647f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84860008051602062001fd5833981519152620001b6565b6200019f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a60008051602062001fd5833981519152620001b6565b506200047d565b620001b282826200020a565b5050565b600082815260066020526040902060010154819060405184907fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff90600090a460009182526006602052604090912060010155565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001b25760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200026a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620002bc906200042a565b90600052602060002090601f016020900481019282620002e057600085556200032b565b82601f10620002fb57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032b5782518255916020019190600101906200030e565b50620003399291506200033d565b5090565b5b808211156200033957600081556001016200033e565b6000602080838503121562000367578182fd5b82516001600160401b03808211156200037e578384fd5b818501915085601f83011262000392578384fd5b815181811115620003a757620003a762000467565b604051601f8201601f19908116603f01168101908382118183101715620003d257620003d262000467565b816040528281528886848701011115620003ea578687fd5b8693505b828410156200040d5784840186015181850187015292850192620003ee565b828411156200041e57868684830101525b98975050505050505050565b600181811c908216806200043f57607f821691505b602082108114156200046157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b28806200048d6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806375b238fc1161010f578063a457c2d7116100a2578063d547741f11610071578063d547741f14610451578063dd62ed3e14610464578063e63ab1e91461049d578063f3ece9f4146104c457600080fd5b8063a457c2d7146103e1578063a9059cbb146103f4578063b2c1e0de14610407578063d53913931461042a57600080fd5b806391d14854116100de57806391d14854146103ab57806395d89b41146103be5780639dc29fac146103c6578063a217fddf146103d957600080fd5b806375b238fc146103605780638456cb591461037557806384da92a71461037d578063893d20e81461039057600080fd5b8063313ce5671161018757806340c10f191161015657806340c10f191461030657806359b0d931146103195780635c975abb1461032c57806370a082311461033757600080fd5b8063313ce567146102c957806336568abe146102d857806339509351146102eb5780633f4ba83a146102fe57600080fd5b806323b872dd116101c357806323b872dd14610257578063248a9ca31461026a578063282c51f31461028d5780632f2ff15d146102b457600080fd5b806301ffc9a7146101f557806306fdde031461021d578063095ea7b31461023257806318160ddd14610245575b600080fd5b610208610203366004611825565b6104d7565b60405190151581526020015b60405180910390f35b61022561050e565b604051610214919061196c565b6102086102403660046117c2565b6105a0565b6002545b604051908152602001610214565b610208610265366004611787565b6105b6565b6102496102783660046117eb565b60009081526006602052604090206001015490565b6102497f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102c76102c2366004611803565b61066c565b005b60405160128152602001610214565b6102c76102e6366004611803565b610697565b6102086102f93660046117c2565b610715565b6102c761074c565b6102c76103143660046117c2565b6107cc565b6102c761032736600461173b565b61084c565b60055460ff16610208565b61024961034536600461173b565b6001600160a01b031660009081526020819052604090205490565b610249600080516020611ad383398151915281565b6102c76108d8565b6102c761038b36600461184d565b610956565b6007546040516001600160a01b039091168152602001610214565b6102086103b9366004611803565b61099d565b6102256109c8565b6102c76103d43660046117c2565b6109d7565b610249600081565b6102086103ef3660046117c2565b610a57565b6102086104023660046117c2565b610af2565b61020861041536600461173b565b60096020526000908152604090205460ff1681565b6102497f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102c761045f366004611803565b610aff565b610249610472366004611755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102497f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102c76104d236600461173b565b610b25565b60006001600160e01b03198216637965db0b60e01b148061050857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606008805461051d90611a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611a6b565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ad338484610bad565b50600192915050565b60006105c3848484610cd2565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561064d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610661853361065c8685611a0d565b610bad565b506001949350505050565b6000828152600660205260409020600101546106888133610eb5565b6106928383610f19565b505050565b6001600160a01b03811633146107075760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610644565b6107118282610f9f565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ad91859061065c9086906119d6565b6107767f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b6107c25760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611006565b565b6107f67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361099d565b6108425760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206d696e74657220726f6c650000006044820152606401610644565b6107118282611099565b610864600080516020611ad38339815191523361099d565b6108805760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916905590519182527f64f3db07cedf69b1588bdddf3689a1c99e7e1af2049db54db4d76e10836636c391015b60405180910390a150565b6109027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b61094e5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611184565b61096e600080516020611ad38339815191523361099d565b61098a5760405162461bcd60e51b81526004016106449061199f565b8051610711906008906020840190611686565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461051d90611a6b565b610a017f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8483361099d565b610a4d5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206275726e657220726f6c650000006044820152606401610644565b61071182826111ff565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ad95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610644565b610ae8338561065c8685611a0d565b5060019392505050565b60006105ad338484610cd2565b600082815260066020526040902060010154610b1b8133610eb5565b6106928383610f9f565b610b3d600080516020611ad38339815191523361099d565b610b595760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916600117905590519182527f21d3d97349e331a2f8311b5ea84fc5316e4f6e2b39272964198931507316883091016108cd565b6001600160a01b038316610c0f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610644565b6001600160a01b038216610c705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610644565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610644565b6001600160a01b038216610d985760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610644565b610da383838361135a565b6001600160a01b03831660009081526020819052604090205481811015610e1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610644565b610e258282611a0d565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e5b9084906119d6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea791815260200190565b60405180910390a350505050565b610ebf828261099d565b61071157610ed7816001600160a01b03166014611437565b610ee2836020611437565b604051602001610ef39291906118f7565b60408051601f198184030181529082905262461bcd60e51b82526106449160040161196c565b610f23828261099d565b6107115760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610f5b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610fa9828261099d565b156107115760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff1661104f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610644565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110ef5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610644565b6110fb6000838361135a565b806002600082825461110d91906119d6565b90915550506001600160a01b0382166000908152602081905260408120805483929061113a9084906119d6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff16156111ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610644565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861107c3390565b6001600160a01b03821661125f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610644565b61126b8260008361135a565b6001600160a01b038216600090815260208190526040902054818110156112df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610644565b6112e98282611a0d565b6001600160a01b03841660009081526020819052604081209190915560028054849290611317908490611a0d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cc5565b611365838383611620565b6001600160a01b03831660009081526009602052604090205460ff16156113ce5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732066726f6d20697320626c6f636b6c697374656400000000006044820152606401610644565b6001600160a01b03821660009081526009602052604090205460ff16156106925760405162461bcd60e51b815260206004820152601960248201527f4164647265737320746f20697320626c6f636b6c6973746564000000000000006044820152606401610644565b606060006114468360026119ee565b6114519060026119d6565b67ffffffffffffffff81111561147757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114a1576020820181803683370190505b509050600360fc1b816000815181106114ca57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061150757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061152b8460026119ee565b6115369060016119d6565b90505b60018111156115ca576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061157857634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061159c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936115c381611a54565b9050611539565b5083156116195760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610644565b9392505050565b60055460ff16156106925760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610644565b82805461169290611a6b565b90600052602060002090601f0160209004810192826116b457600085556116fa565b82601f106116cd57805160ff19168380011785556116fa565b828001600101855582156116fa579182015b828111156116fa5782518255916020019190600101906116df565b5061170692915061170a565b5090565b5b80821115611706576000815560010161170b565b80356001600160a01b038116811461173657600080fd5b919050565b60006020828403121561174c578081fd5b6116198261171f565b60008060408385031215611767578081fd5b6117708361171f565b915061177e6020840161171f565b90509250929050565b60008060006060848603121561179b578081fd5b6117a48461171f565b92506117b26020850161171f565b9150604084013590509250925092565b600080604083850312156117d4578182fd5b6117dd8361171f565b946020939093013593505050565b6000602082840312156117fc578081fd5b5035919050565b60008060408385031215611815578182fd5b8235915061177e6020840161171f565b600060208284031215611836578081fd5b81356001600160e01b031981168114611619578182fd5b60006020828403121561185e578081fd5b813567ffffffffffffffff80821115611875578283fd5b818401915084601f830112611888578283fd5b81358181111561189a5761189a611abc565b604051601f8201601f19908116603f011681019083821181831017156118c2576118c2611abc565b816040528281528760208487010111156118da578586fd5b826020860160208301379182016020019490945295945050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161192f816017850160208801611a24565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611960816028840160208801611a24565b01602801949350505050565b602081526000825180602084015261198b816040850160208701611a24565b601f01601f19169190910160400192915050565b6020808252601d908201527f596f752073686f756c64206861766520616e2061646d696e20726f6c65000000604082015260600190565b600082198211156119e9576119e9611aa6565b500190565b6000816000190483118215151615611a0857611a08611aa6565b500290565b600082821015611a1f57611a1f611aa6565b500390565b60005b83811015611a3f578181015183820152602001611a27565b83811115611a4e576000848401525b50505050565b600081611a6357611a63611aa6565b506000190190565b600181811c90821680611a7f57607f821691505b60208210811415611aa057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122009487b43c4dd17660d2fe34bd9258c3f7a32b7c9f4a18173ef9f0ba08b5bec1464736f6c634300080400339f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122098228019e554812136bd8f8baf422f527e9f36bcd7f6d6923f3aad4dcccfe74264736f6c63430008040033a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217750000000000000000000000000000000000000000000000000000000000000002
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620002015760003560e01c80638ce261081162000119578063c49baebe11620000af578063db9b6d06116200007a578063db9b6d061462000511578063dbe77e541462000549578063e63ab1e91462000560578063eb84e7f2146200058857600080fd5b8063c49baebe1462000493578063cf2a916914620004bb578063d539139314620004d2578063d547741f14620004fa57600080fd5b8063a217fddf11620000f0578063a217fddf146200040c578063a3524b711462000415578063b3a842ff146200042c578063b9762334146200047c57600080fd5b80638ce2610814620003b657806391d1485414620003cd5780639a8a059214620003e457600080fd5b806336568abe116200019b57806375adf415116200016657806375adf415146200035a57806375b238fc14620003715780637721b1da14620003885780638c201dc8146200039f57600080fd5b806336568abe14620002ef5780633cb3cb061462000306578063476310a8146200031d57806370d48798146200033457600080fd5b8063273cbaa011620001dc578063273cbaa01462000280578063282c51f314620002995780632f2ff15d14620002c157806331301cce14620002d857600080fd5b806301ffc9a7146200020657806308890d551462000232578063248a9ca3146200024b575b600080fd5b6200021d620002173660046200207b565b620005c5565b60405190151581526020015b60405180910390f35b620002496200024336600462002188565b620005fd565b005b620002716200025c36600462002034565b60009081526020819052604090206001015490565b60405190815260200162000229565b6200028a620006fa565b604051620002299190620025c1565b620002717f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b62000249620002d23660046200204d565b6200075e565b62000249620002e93660046200212d565b6200078d565b62000249620003003660046200204d565b6200089a565b6200024962000317366004620020a5565b6200091c565b620002496200032e366004620020a5565b62000a0f565b6200021d6200034536600462002034565b60036020526000908152604090205460ff1681565b620002496200036b3660046200238a565b62000ae5565b620002716000805160206200490183398151915281565b62000249620003993660046200224b565b62000d6a565b62000249620003b0366004620020e4565b62001256565b62000249620003c7366004620020a5565b620012d6565b6200021d620003de3660046200204d565b620014be565b620002717f000000000000000000000000000000000000000000000000000000000000000281565b62000271600081565b6200024962000426366004620021e3565b620014e7565b620004636200043d366004620020a5565b80516020818301810180516002825292820191909301209152546001600160a01b031681565b6040516001600160a01b03909116815260200162000229565b620002496200048d3660046200231b565b620015d7565b620002717f21702c8af46127c7fa207f89d0b0a8441bb32959a0ac7df790e9ab1a25c9892681565b62000249620004cc3660046200212d565b620018dc565b620002717f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b620002496200050b3660046200204d565b620019e9565b6200053a6200052236600462002034565b60009081526004602052604090206001015460ff1690565b60405162000229919062002610565b620002496200055a366004620022e6565b62001a13565b620002717f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b620005b56200059936600462002034565b6004602052600090815260409020805460019091015460ff1682565b60405162000229929190620027f4565b60006001600160e01b03198216637965db0b60e01b1480620005f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b620006186000805160206200490183398151915233620014be565b620006405760405162461bcd60e51b8152600401620006379062002635565b60405180910390fd5b600060028460405162000654919062002456565b908152604051908190036020019020546001600160a01b03169050806200068f5760405162461bcd60e51b815260040162000637906200267a565b604051632f2ff15d60e01b8152600481018490526001600160a01b038381166024830152821690632f2ff15d906044015b600060405180830381600087803b158015620006db57600080fd5b505af1158015620006f0573d6000803e3d6000fd5b5050505050505050565b606060018054806020026020016040519081016040528092919081815260200182805480156200075457602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000735575b5050505050905090565b6000828152602081905260409020600101546200077c813362001a6d565b62000788838362001adc565b505050565b620007b97f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620014be565b620008155760405162461bcd60e51b815260206004820152602560248201527f446563696d616c4272696467653a2043616c6c6572206973206e6f74206120626044820152643ab93732b960d91b606482015260840162000637565b600060028460405162000829919062002456565b908152604051908190036020019020546001600160a01b0316905080620008645760405162461bcd60e51b815260040162000637906200267a565b604051632770a7eb60e21b81526001600160a01b03848116600483015260248201849052821690639dc29fac90604401620006c0565b6001600160a01b03811633146200090c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840162000637565b62000918828262001b64565b5050565b620009487f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620014be565b620009675760405162461bcd60e51b8152600401620006379062002716565b60006002826040516200097b919062002456565b908152604051908190036020019020546001600160a01b0316905080620009b65760405162461bcd60e51b815260040162000637906200267a565b806001600160a01b0316638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b158015620009f257600080fd5b505af115801562000a07573d6000803e3d6000fd5b505050505050565b62000a3b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620014be565b62000a5a5760405162461bcd60e51b8152600401620006379062002716565b600060028260405162000a6e919062002456565b908152604051908190036020019020546001600160a01b031690508062000aa95760405162461bcd60e51b815260040162000637906200267a565b806001600160a01b0316633f4ba83a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015620009f257600080fd5b600060028260405162000af9919062002456565b908152604051908190036020019020546001600160a01b031690508062000b345760405162461bcd60e51b815260040162000637906200267a565b825160291462000ba05760405162461bcd60e51b815260206004820152603060248201527f446563696d616c4272696467653a20526563697069656e74206d75737420626560448201526f2034312073796d626f6c73206c6f6e6760801b606482015260840162000637565b6000848684867f0000000000000000000000000000000000000000000000000000000000000002600160405160200162000be09695949392919062002547565b60408051601f19818403018152919052805160209091012090506000808281526004602052604090206001015460ff16600281111562000c3057634e487b7160e01b600052602160045260246000fd5b1462000c505760405162461bcd60e51b81526004016200063790620026c0565b604080518082018252868152600160208083018281526000868152600490925293902082518155925183820180549394939192909160ff19169083600281111562000cab57634e487b7160e01b600052602160045260246000fd5b021790555050604051632770a7eb60e21b8152336004820152602481018890526001600160a01b0384169150639dc29fac90604401600060405180830381600087803b15801562000cfb57600080fd5b505af115801562000d10573d6000803e3d6000fd5b50505050336001600160a01b03167ff0c6845299d8a76bfd4b86becf39737cd60fa029e5c74996f4aeedc1567599a34286898760018b60405162000d5a969594939291906200280a565b60405180910390a2505050505050565b7f000000000000000000000000000000000000000000000000000000000000000285141562000de85760405162461bcd60e51b815260206004820152602360248201527f446563696d616c4272696467653a20496e76616c696420636861696e46726f6d604482015262081a5960ea1b606482015260840162000637565b60008581526003602052604090205460ff1662000e585760405162461bcd60e51b815260206004820152602760248201527f446563696d616c4272696467653a20436861696e46726f6d206964206e6f7420604482015266185b1b1bddd95960ca1b606482015260840162000637565b600081511162000e7c5760405162461bcd60e51b815260040162000637906200275b565b600060028260405162000e90919062002456565b908152604051908190036020019020546001600160a01b031690508062000fa6578160405162000ec09062001f7a565b62000ecc919062002620565b604051809103906000f08015801562000ee9573d6000803e3d6000fd5b5090508060028360405162000eff919062002456565b90815260405190819003602001812080546001600160a01b039384166001600160a01b0319918216179091556001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805493851693909116929092179091557f7afee0f1b802cc0f66c67890e26b4566251859cf2cd8de79b86aed7251d9756a9062000f9d90839085906200259b565b60405180910390a15b6000878a848b8a7f000000000000000000000000000000000000000000000000000000000000000260405160200162000fe596959493929190620024ed565b60408051601f19818403018152919052805160209091012090506000808281526004602052604090206001015460ff1660028111156200103557634e487b7160e01b600052602160045260246000fd5b14620010555760405162461bcd60e51b81526004016200063790620026c0565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c016040516020818303038152906040528051906020012090506000620010b38289898962001bcc565b9050620010e17f21702c8af46127c7fa207f89d0b0a8441bb32959a0ac7df790e9ab1a25c9892682620014be565b620011435760405162461bcd60e51b815260206004820152602b60248201527f446563696d616c4272696467653a2056616c696461746f72206164647265737360448201526a081a5cc81a5b9d985b1a5960aa1b606482015260840162000637565b604080518082019091528a815260208101600290526000848152600460209081526040909120825181559082015160018083018054909160ff1990911690836002811115620011a257634e487b7160e01b600052602160045260246000fd5b0217905550506040516340c10f1960e01b81526001600160a01b038d81166004830152602482018f9052861691506340c10f1990604401600060405180830381600087803b158015620011f457600080fd5b505af115801562001209573d6000803e3d6000fd5b505060408051428152602081018e90523393507f03b2f5320b2f9d75bfee731ea585ffc2b78f2d33dc90449711d016ddae2410be92500160405180910390a2505050505050505050505050565b620012716000805160206200490183398151915233620014be565b620012905760405162461bcd60e51b8152600401620006379062002635565b80600283604051620012a3919062002456565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b03199092169190911790555050565b620012f16000805160206200490183398151915233620014be565b620013105760405162461bcd60e51b8152600401620006379062002635565b6000815111620013345760405162461bcd60e51b815260040162000637906200275b565b600060028260405162001348919062002456565b908152604051908190036020019020546001600160a01b031690508015620013c65760405162461bcd60e51b815260206004820152602a60248201527f446563696d616c4272696467653a20546f6b656e20697320616c7265616479206044820152691c9959da5cdd195c995960b21b606482015260840162000637565b81604051620013d59062001f7a565b620013e1919062002620565b604051809103906000f080158015620013fe573d6000803e3d6000fd5b5090508060028360405162001414919062002456565b90815260405190819003602001812080546001600160a01b039384166001600160a01b0319918216179091556001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805493851693909116929092179091557f7afee0f1b802cc0f66c67890e26b4566251859cf2cd8de79b86aed7251d9756a90620014b290839085906200259b565b60405180910390a15050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b620015026000805160206200490183398151915233620014be565b620015215760405162461bcd60e51b8152600401620006379062002635565b600060028360405162001535919062002456565b908152604051908190036020019020546001600160a01b0316905080620015705760405162461bcd60e51b815260040162000637906200267a565b6040516384da92a760e01b81526001600160a01b038216906384da92a7906200159e90859060040162002620565b600060405180830381600087803b158015620015b957600080fd5b505af1158015620015ce573d6000803e3d6000fd5b50505050505050565b7f0000000000000000000000000000000000000000000000000000000000000002821415620016535760405162461bcd60e51b815260206004820152602160248201527f446563696d616c4272696467653a20496e76616c696420636861696e546f20696044820152601960fa1b606482015260840162000637565b60008281526003602052604090205460ff16620016c45760405162461bcd60e51b815260206004820152602860248201527f446563696d616c4272696467653a20436861696e546f206964206973206e6f7460448201526708185b1b1bddd95960c21b606482015260840162000637565b6000600282604051620016d8919062002456565b908152604051908190036020019020546001600160a01b0316905080620017135760405162461bcd60e51b815260040162000637906200267a565b6000858784877f0000000000000000000000000000000000000000000000000000000000000002886040516020016200175296959493929190620024ed565b60408051601f19818403018152919052805160209091012090506000808281526004602052604090206001015460ff166002811115620017a257634e487b7160e01b600052602160045260246000fd5b14620017c25760405162461bcd60e51b81526004016200063790620026c0565b604080518082018252878152600160208083018281526000868152600490925293902082518155925183820180549394939192909160ff1916908360028111156200181d57634e487b7160e01b600052602160045260246000fd5b021790555050604051632770a7eb60e21b8152336004820152602481018990526001600160a01b0384169150639dc29fac90604401600060405180830381600087803b1580156200186d57600080fd5b505af115801562001882573d6000803e3d6000fd5b50505050336001600160a01b03167f7bf5cea2cba361bb94285c23ec8c391c3acfcc52eeaceff202d39a8cf4d56b0142878a87898c604051620018cb96959493929190620027b0565b60405180910390a250505050505050565b620019087f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620014be565b620019645760405162461bcd60e51b815260206004820152602560248201527f446563696d616c4272696467653a2043616c6c6572206973206e6f742061206d60448201526434b73a32b960d91b606482015260840162000637565b600060028460405162001978919062002456565b908152604051908190036020019020546001600160a01b0316905080620019b35760405162461bcd60e51b815260040162000637906200267a565b6040516340c10f1960e01b81526001600160a01b038481166004830152602482018490528216906340c10f1990604401620006c0565b60008281526020819052604090206001015462001a07813362001a6d565b62000788838362001b64565b62001a2e6000805160206200490183398151915233620014be565b62001a4d5760405162461bcd60e51b8152600401620006379062002635565b600091825260036020526040909120805460ff1916911515919091179055565b62001a798282620014be565b620009185762001a94816001600160a01b0316601462001d7d565b62001aa183602062001d7d565b60405160200162001ab492919062002474565b60408051601f198184030181529082905262461bcd60e51b8252620006379160040162002620565b62001ae88282620014be565b62000918576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905562001b203390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b62001b708282620014be565b1562000918576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111562001c4b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840162000637565b8360ff16601b148062001c6157508360ff16601c145b62001cba5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840162000637565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801562001d0f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811662001d745760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640162000637565b95945050505050565b6060600062001d8e83600262002870565b62001d9b90600262002855565b67ffffffffffffffff81111562001dc257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562001ded576020820181803683370190505b509050600360fc1b8160008151811062001e1757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062001e5557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600062001e7b84600262002870565b62001e8890600162002855565b90505b600181111562001f22576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062001ecc57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811062001ef157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9362001f1a81620028c5565b905062001e8b565b50831562001f735760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000637565b9392505050565b611ff5806200290c83390190565b80356001600160a01b038116811462001fa057600080fd5b919050565b600082601f83011262001fb6578081fd5b813567ffffffffffffffff8082111562001fd45762001fd4620028f5565b604051601f8301601f19908116603f0116810190828211818310171562001fff5762001fff620028f5565b8160405283815286602085880101111562002018578485fd5b8360208701602083013792830160200193909352509392505050565b60006020828403121562002046578081fd5b5035919050565b6000806040838503121562002060578081fd5b82359150620020726020840162001f88565b90509250929050565b6000602082840312156200208d578081fd5b81356001600160e01b03198116811462001f73578182fd5b600060208284031215620020b7578081fd5b813567ffffffffffffffff811115620020ce578182fd5b620020dc8482850162001fa5565b949350505050565b60008060408385031215620020f7578182fd5b823567ffffffffffffffff8111156200210e578283fd5b6200211c8582860162001fa5565b925050620020726020840162001f88565b60008060006060848603121562002142578081fd5b833567ffffffffffffffff81111562002159578182fd5b620021678682870162001fa5565b935050620021786020850162001f88565b9150604084013590509250925092565b6000806000606084860312156200219d578283fd5b833567ffffffffffffffff811115620021b4578384fd5b620021c28682870162001fa5565b93505060208401359150620021da6040850162001f88565b90509250925092565b60008060408385031215620021f6578182fd5b823567ffffffffffffffff808211156200220e578384fd5b6200221c8683870162001fa5565b9350602085013591508082111562002232578283fd5b50620022418582860162001fa5565b9150509250929050565b600080600080600080600080610100898b03121562002268578384fd5b883597506200227a60208a0162001f88565b96506040890135955060608901359450608089013560ff811681146200229e578485fd5b935060a0890135925060c0890135915060e089013567ffffffffffffffff811115620022c8578182fd5b620022d68b828c0162001fa5565b9150509295985092959890939650565b60008060408385031215620022f9578182fd5b823591506020830135801515811462002310578182fd5b809150509250929050565b600080600080600060a0868803121562002333578081fd5b85359450602086013593506200234c6040870162001f88565b925060608601359150608086013567ffffffffffffffff8111156200236f578182fd5b6200237d8882890162001fa5565b9150509295509295909350565b60008060008060808587031215620023a0578182fd5b8435935060208501359250604085013567ffffffffffffffff80821115620023c6578384fd5b620023d48883890162001fa5565b93506060870135915080821115620023ea578283fd5b50620023f98782880162001fa5565b91505092959194509250565b600381106200242457634e487b7160e01b600052602160045260246000fd5b9052565b600081518084526200244281602086016020860162002892565b601f01601f19169290920160200192915050565b600082516200246a81846020870162002892565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351620024ae81601785016020880162002892565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620024e181602884016020880162002892565b01602801949350505050565b868152856020820152600085516200250d816040850160208a0162002892565b60609590951b6bffffffffffffffffffffffff19166040929095019182019490945260548101929092526074820152609401949350505050565b8681528560208201526000855162002567816040850160208a0162002892565b85519083019062002580816040840160208a0162002892565b01604081019490945250506060820152608001949350505050565b6001600160a01b0383168152604060208201819052600090620020dc9083018462002428565b6020808252825182820181905260009190848201906040850190845b81811015620026045783516001600160a01b031683529284019291840191600101620025dd565b50909695505050505050565b60208101620005f7828462002405565b60208152600062001f73602083018462002428565b60208082526025908201527f446563696d616c4272696467653a2043616c6c6572206973206e6f7420616e2060408201526430b236b4b760d91b606082015260800190565b60208082526026908201527f446563696d616c4272696467653a20546f6b656e206973206e6f7420726567696040820152651cdd195c995960d21b606082015260800190565b60208082526036908201527f446563696d616c4272696467653a2053776170206973206e6f7420656d707479604082015275040e6e8c2e8ca40dee440c8eae0d8d2c6c2e8ca40e8f60531b606082015260800190565b60208082526025908201527f446563696d616c4272696467653a2043616c6c6572206973206e6f742061207060408201526430bab9b2b960d91b606082015260800190565b60208082526035908201527f446563696d616c4272696467653a2053796d626f6c206c656e6774682073686f6040820152740756c642062652067726561746572207468616e203605c1b606082015260800190565b86815260018060a01b038616602082015284604082015260c060608201526000620027df60c083018662002428565b60808301949094525060a00152949350505050565b8281526040810162001f73602083018462002405565b86815260c0602082015260006200282560c083018862002428565b86604084015282810360608401526200283f818762002428565b6080840195909552505060a00152949350505050565b600082198211156200286b576200286b620028df565b500190565b60008160001904831182151516156200288d576200288d620028df565b500290565b60005b83811015620028af57818101518382015260200162002895565b83811115620028bf576000848401525b50505050565b600081620028d757620028d7620028df565b506000190190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe60806040523480156200001157600080fd5b5060405162001ff538038062001ff5833981016040819052620000349162000354565b6040805160208101918290526000808252909183916200005791600391620002ae565b5080516200006d906004906020840190620002ae565b50506005805460ff1916905550600780546001600160a01b031916339081179091556200009d90600090620001a6565b620000b860008051602062001fd583398151915233620001a6565b620000d360008051602062001fb583398151915233620001a6565b620000ff7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833620001a6565b6200012960008051602062001fb583398151915260008051602062001fd5833981519152620001b6565b620001647f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84860008051602062001fd5833981519152620001b6565b6200019f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a60008051602062001fd5833981519152620001b6565b506200047d565b620001b282826200020a565b5050565b600082815260066020526040902060010154819060405184907fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff90600090a460009182526006602052604090912060010155565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001b25760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200026a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620002bc906200042a565b90600052602060002090601f016020900481019282620002e057600085556200032b565b82601f10620002fb57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032b5782518255916020019190600101906200030e565b50620003399291506200033d565b5090565b5b808211156200033957600081556001016200033e565b6000602080838503121562000367578182fd5b82516001600160401b03808211156200037e578384fd5b818501915085601f83011262000392578384fd5b815181811115620003a757620003a762000467565b604051601f8201601f19908116603f01168101908382118183101715620003d257620003d262000467565b816040528281528886848701011115620003ea578687fd5b8693505b828410156200040d5784840186015181850187015292850192620003ee565b828411156200041e57868684830101525b98975050505050505050565b600181811c908216806200043f57607f821691505b602082108114156200046157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b28806200048d6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806375b238fc1161010f578063a457c2d7116100a2578063d547741f11610071578063d547741f14610451578063dd62ed3e14610464578063e63ab1e91461049d578063f3ece9f4146104c457600080fd5b8063a457c2d7146103e1578063a9059cbb146103f4578063b2c1e0de14610407578063d53913931461042a57600080fd5b806391d14854116100de57806391d14854146103ab57806395d89b41146103be5780639dc29fac146103c6578063a217fddf146103d957600080fd5b806375b238fc146103605780638456cb591461037557806384da92a71461037d578063893d20e81461039057600080fd5b8063313ce5671161018757806340c10f191161015657806340c10f191461030657806359b0d931146103195780635c975abb1461032c57806370a082311461033757600080fd5b8063313ce567146102c957806336568abe146102d857806339509351146102eb5780633f4ba83a146102fe57600080fd5b806323b872dd116101c357806323b872dd14610257578063248a9ca31461026a578063282c51f31461028d5780632f2ff15d146102b457600080fd5b806301ffc9a7146101f557806306fdde031461021d578063095ea7b31461023257806318160ddd14610245575b600080fd5b610208610203366004611825565b6104d7565b60405190151581526020015b60405180910390f35b61022561050e565b604051610214919061196c565b6102086102403660046117c2565b6105a0565b6002545b604051908152602001610214565b610208610265366004611787565b6105b6565b6102496102783660046117eb565b60009081526006602052604090206001015490565b6102497f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b6102c76102c2366004611803565b61066c565b005b60405160128152602001610214565b6102c76102e6366004611803565b610697565b6102086102f93660046117c2565b610715565b6102c761074c565b6102c76103143660046117c2565b6107cc565b6102c761032736600461173b565b61084c565b60055460ff16610208565b61024961034536600461173b565b6001600160a01b031660009081526020819052604090205490565b610249600080516020611ad383398151915281565b6102c76108d8565b6102c761038b36600461184d565b610956565b6007546040516001600160a01b039091168152602001610214565b6102086103b9366004611803565b61099d565b6102256109c8565b6102c76103d43660046117c2565b6109d7565b610249600081565b6102086103ef3660046117c2565b610a57565b6102086104023660046117c2565b610af2565b61020861041536600461173b565b60096020526000908152604090205460ff1681565b6102497f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102c761045f366004611803565b610aff565b610249610472366004611755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102497f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6102c76104d236600461173b565b610b25565b60006001600160e01b03198216637965db0b60e01b148061050857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606008805461051d90611a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461054990611a6b565b80156105965780601f1061056b57610100808354040283529160200191610596565b820191906000526020600020905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b60006105ad338484610bad565b50600192915050565b60006105c3848484610cd2565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561064d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610661853361065c8685611a0d565b610bad565b506001949350505050565b6000828152600660205260409020600101546106888133610eb5565b6106928383610f19565b505050565b6001600160a01b03811633146107075760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610644565b6107118282610f9f565b5050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105ad91859061065c9086906119d6565b6107767f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b6107c25760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611006565b565b6107f67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63361099d565b6108425760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206d696e74657220726f6c650000006044820152606401610644565b6107118282611099565b610864600080516020611ad38339815191523361099d565b6108805760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916905590519182527f64f3db07cedf69b1588bdddf3689a1c99e7e1af2049db54db4d76e10836636c391015b60405180910390a150565b6109027f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3361099d565b61094e5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c64206861766520612070617573657220726f6c650000006044820152606401610644565b6107ca611184565b61096e600080516020611ad38339815191523361099d565b61098a5760405162461bcd60e51b81526004016106449061199f565b8051610711906008906020840190611686565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461051d90611a6b565b610a017f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8483361099d565b610a4d5760405162461bcd60e51b815260206004820152601d60248201527f596f752073686f756c6420686176652061206275726e657220726f6c650000006044820152606401610644565b61071182826111ff565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ad95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610644565b610ae8338561065c8685611a0d565b5060019392505050565b60006105ad338484610cd2565b600082815260066020526040902060010154610b1b8133610eb5565b6106928383610f9f565b610b3d600080516020611ad38339815191523361099d565b610b595760405162461bcd60e51b81526004016106449061199f565b6001600160a01b038116600081815260096020908152604091829020805460ff1916600117905590519182527f21d3d97349e331a2f8311b5ea84fc5316e4f6e2b39272964198931507316883091016108cd565b6001600160a01b038316610c0f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610644565b6001600160a01b038216610c705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610644565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d365760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610644565b6001600160a01b038216610d985760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610644565b610da383838361135a565b6001600160a01b03831660009081526020819052604090205481811015610e1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610644565b610e258282611a0d565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e5b9084906119d6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ea791815260200190565b60405180910390a350505050565b610ebf828261099d565b61071157610ed7816001600160a01b03166014611437565b610ee2836020611437565b604051602001610ef39291906118f7565b60408051601f198184030181529082905262461bcd60e51b82526106449160040161196c565b610f23828261099d565b6107115760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610f5b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610fa9828261099d565b156107115760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60055460ff1661104f5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610644565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110ef5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610644565b6110fb6000838361135a565b806002600082825461110d91906119d6565b90915550506001600160a01b0382166000908152602081905260408120805483929061113a9084906119d6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff16156111ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610644565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861107c3390565b6001600160a01b03821661125f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610644565b61126b8260008361135a565b6001600160a01b038216600090815260208190526040902054818110156112df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610644565b6112e98282611a0d565b6001600160a01b03841660009081526020819052604081209190915560028054849290611317908490611a0d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cc5565b611365838383611620565b6001600160a01b03831660009081526009602052604090205460ff16156113ce5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732066726f6d20697320626c6f636b6c697374656400000000006044820152606401610644565b6001600160a01b03821660009081526009602052604090205460ff16156106925760405162461bcd60e51b815260206004820152601960248201527f4164647265737320746f20697320626c6f636b6c6973746564000000000000006044820152606401610644565b606060006114468360026119ee565b6114519060026119d6565b67ffffffffffffffff81111561147757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114a1576020820181803683370190505b509050600360fc1b816000815181106114ca57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061150757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061152b8460026119ee565b6115369060016119d6565b90505b60018111156115ca576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061157857634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061159c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936115c381611a54565b9050611539565b5083156116195760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610644565b9392505050565b60055460ff16156106925760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401610644565b82805461169290611a6b565b90600052602060002090601f0160209004810192826116b457600085556116fa565b82601f106116cd57805160ff19168380011785556116fa565b828001600101855582156116fa579182015b828111156116fa5782518255916020019190600101906116df565b5061170692915061170a565b5090565b5b80821115611706576000815560010161170b565b80356001600160a01b038116811461173657600080fd5b919050565b60006020828403121561174c578081fd5b6116198261171f565b60008060408385031215611767578081fd5b6117708361171f565b915061177e6020840161171f565b90509250929050565b60008060006060848603121561179b578081fd5b6117a48461171f565b92506117b26020850161171f565b9150604084013590509250925092565b600080604083850312156117d4578182fd5b6117dd8361171f565b946020939093013593505050565b6000602082840312156117fc578081fd5b5035919050565b60008060408385031215611815578182fd5b8235915061177e6020840161171f565b600060208284031215611836578081fd5b81356001600160e01b031981168114611619578182fd5b60006020828403121561185e578081fd5b813567ffffffffffffffff80821115611875578283fd5b818401915084601f830112611888578283fd5b81358181111561189a5761189a611abc565b604051601f8201601f19908116603f011681019083821181831017156118c2576118c2611abc565b816040528281528760208487010111156118da578586fd5b826020860160208301379182016020019490945295945050505050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161192f816017850160208801611a24565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611960816028840160208801611a24565b01602801949350505050565b602081526000825180602084015261198b816040850160208701611a24565b601f01601f19169190910160400192915050565b6020808252601d908201527f596f752073686f756c64206861766520616e2061646d696e20726f6c65000000604082015260600190565b600082198211156119e9576119e9611aa6565b500190565b6000816000190483118215151615611a0857611a08611aa6565b500290565b600082821015611a1f57611a1f611aa6565b500390565b60005b83811015611a3f578181015183820152602001611a27565b83811115611a4e576000848401525b50505050565b600081611a6357611a63611aa6565b506000190190565b600181811c90821680611a7f57607f821691505b60208210811415611aa057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122009487b43c4dd17660d2fe34bd9258c3f7a32b7c9f4a18173ef9f0ba08b5bec1464736f6c634300080400339f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a264697066735822122098228019e554812136bd8f8baf422f527e9f36bcd7f6d6923f3aad4dcccfe74264736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000002
-----Decoded View---------------
Arg [0] : _chainId (uint256): 2
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000002
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.