More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 748 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Redeem | 41328909 | 645 days ago | IN | 0 POL | 0.05592232 | ||||
Redeem | 41305837 | 646 days ago | IN | 0 POL | 0.06594985 | ||||
Redeem | 41298830 | 646 days ago | IN | 0 POL | 0.05313073 | ||||
Redeem | 41298657 | 646 days ago | IN | 0 POL | 0.05265142 | ||||
Redeem | 41293769 | 646 days ago | IN | 0 POL | 0.05830372 | ||||
Redeem | 41293528 | 646 days ago | IN | 0 POL | 0.05981736 | ||||
Redeem | 41290635 | 646 days ago | IN | 0 POL | 0.05589994 | ||||
Redeem | 41284684 | 646 days ago | IN | 0 POL | 0.06277086 | ||||
Redeem | 41284306 | 646 days ago | IN | 0 POL | 0.08423165 | ||||
Redeem | 41267285 | 647 days ago | IN | 0 POL | 0.03989032 | ||||
Redeem | 41257901 | 647 days ago | IN | 0 POL | 0.05499272 | ||||
Redeem | 41257270 | 647 days ago | IN | 0 POL | 0.07341179 | ||||
Redeem | 41256033 | 647 days ago | IN | 0 POL | 0.06218538 | ||||
Redeem | 41238275 | 647 days ago | IN | 0 POL | 0.05158152 | ||||
Redeem | 41236679 | 647 days ago | IN | 0 POL | 0.03317549 | ||||
Redeem | 41187831 | 649 days ago | IN | 0 POL | 0.04264966 | ||||
Redeem | 41187804 | 649 days ago | IN | 0 POL | 0.04361509 | ||||
Redeem | 41183237 | 649 days ago | IN | 0 POL | 0.03305762 | ||||
Redeem | 41172833 | 649 days ago | IN | 0 POL | 0.10248049 | ||||
Redeem | 41135295 | 650 days ago | IN | 0 POL | 0.09367805 | ||||
Redeem | 41120536 | 650 days ago | IN | 0 POL | 0.05735201 | ||||
Redeem | 41119393 | 650 days ago | IN | 0 POL | 0.05346031 | ||||
Redeem | 41102460 | 651 days ago | IN | 0 POL | 0.06537926 | ||||
Redeem | 41101530 | 651 days ago | IN | 0 POL | 0.07752538 | ||||
Redeem | 41097261 | 651 days ago | IN | 0 POL | 0.07342702 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
41328909 | 645 days ago | 1.43490755 POL | ||||
41328909 | 645 days ago | 0.04618294 POL | ||||
41328909 | 645 days ago | 1.48109049 POL | ||||
41293769 | 646 days ago | 14.04494451 POL | ||||
41293769 | 646 days ago | 0.05027805 POL | ||||
41293769 | 646 days ago | 14.09522256 POL | ||||
41293528 | 646 days ago | 13.54884315 POL | ||||
41293528 | 646 days ago | 0.04651342 POL | ||||
41293528 | 646 days ago | 13.59535657 POL | ||||
41290635 | 646 days ago | 18.07753027 POL | ||||
41290635 | 646 days ago | 0.04211207 POL | ||||
41290635 | 646 days ago | 18.11964234 POL | ||||
41256033 | 647 days ago | 7.57596821 POL | ||||
41256033 | 647 days ago | 0.05367276 POL | ||||
41256033 | 647 days ago | 7.62964097 POL | ||||
41238275 | 647 days ago | 16.56984761 POL | ||||
41238275 | 647 days ago | 0.03718275 POL | ||||
41238275 | 647 days ago | 16.60703036 POL | ||||
41187831 | 649 days ago | 1.08237518 POL | ||||
41187831 | 649 days ago | 0.03267865 POL | ||||
41187831 | 649 days ago | 1.11505383 POL | ||||
41187804 | 649 days ago | 0.74980564 POL | ||||
41187804 | 649 days ago | 0.03337848 POL | ||||
41187804 | 649 days ago | 0.78318412 POL | ||||
41172833 | 649 days ago | 32.99394592 POL |
Loading...
Loading
Contract Name:
MayanSwap
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: Apache 2 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./interfaces/ITokenBridge.sol"; import "./interfaces/IWormhole.sol"; import "./MayanStructs.sol"; import "./libs/BytesLib.sol"; contract MayanSwap { event Redeemed(uint16 indexed emitterChainId, bytes32 indexed emitterAddress, uint64 indexed sequence); using SafeERC20 for IERC20; using BytesLib for bytes; ITokenBridge tokenBridge; address guardian; address nextGuardian; bool paused; struct RelayerFees { uint64 swapFee; uint64 redeemFee; uint64 refundFee; } struct Criteria { uint256 transferDeadline; uint64 swapDeadline; uint64 amountOutMin; bool unwrap; uint32 nonce; } struct Recepient { bytes32 mayanAddr; uint16 mayanChainId; bytes32 auctionAddr; bytes32 destAddr; uint16 destChainId; } constructor(address _tokenBridge) { tokenBridge = ITokenBridge(_tokenBridge); guardian = msg.sender; } function swap(RelayerFees memory relayerFees, Recepient memory recepient, bytes32 tokenOutAddr, uint16 tokenOutChainId, Criteria memory criteria, address tokenIn, uint256 amountIn) public payable returns (uint64 sequence) { require(paused == false, 'contract is paused'); require(block.timestamp <= criteria.transferDeadline, 'deadline passed'); uint8 decimals = decimalsOf(tokenIn); uint256 normalizedAmount = normalizeAmount(amountIn, decimals); require(relayerFees.swapFee < normalizedAmount, 'swap fee exceeds amount'); require(relayerFees.redeemFee < criteria.amountOutMin, 'redeem fee exceeds min output'); require(relayerFees.refundFee < normalizedAmount, 'refund fee exceeds amount'); amountIn = deNormalizeAmount(normalizedAmount, decimals); IERC20(tokenIn).safeTransferFrom(msg.sender, address(this), amountIn); IERC20(tokenIn).safeIncreaseAllowance(address(tokenBridge), amountIn); uint64 seq1 = tokenBridge.transferTokens{ value: msg.value/2 }(tokenIn, amountIn, recepient.mayanChainId, recepient.mayanAddr, 0, criteria.nonce); MayanStructs.Swap memory swapStruct = MayanStructs.Swap({ payloadID: 1, tokenAddr: tokenOutAddr, tokenChainId: tokenOutChainId, destAddr: recepient.destAddr, destChainId: recepient.destChainId, sourceAddr: bytes32(uint256(uint160(msg.sender))), sourceChainId: tokenBridge.chainId(), sequence: seq1, amountOutMin: criteria.amountOutMin, deadline: criteria.swapDeadline, swapFee: relayerFees.swapFee, redeemFee: relayerFees.redeemFee, refundFee: relayerFees.refundFee, auctionAddr: recepient.auctionAddr, unwrapRedeem: criteria.unwrap, unwrapRefund: false }); bytes memory encoded = encodeSwap(swapStruct) .concat(abi.encodePacked(swapStruct.unwrapRedeem, swapStruct.unwrapRefund)); sequence = tokenBridge.wormhole().publishMessage{ value : msg.value/2 }(criteria.nonce, encoded, tokenBridge.finality()); } function wrapAndSwapETH(RelayerFees memory relayerFees, Recepient memory recepient, bytes32 tokenOutAddr, uint16 tokenOutChainId, Criteria memory criteria) public payable returns (uint64 sequence) { require(paused == false, 'contract is paused'); require(block.timestamp <= criteria.transferDeadline, 'deadline passed'); uint wormholeFee = tokenBridge.wormhole().messageFee(); uint256 normalizedAmount = normalizeAmount(msg.value - 2*wormholeFee, 18); require(relayerFees.swapFee < normalizedAmount, 'swap fee exceeds amount'); require(relayerFees.redeemFee < criteria.amountOutMin, 'redeem fee exceeds min output'); require(relayerFees.refundFee < normalizedAmount, 'refund fee exceeds amount'); uint256 amountIn = deNormalizeAmount(normalizedAmount, 18); uint64 seq1 = tokenBridge.wrapAndTransferETH{ value: amountIn + wormholeFee }(recepient.mayanChainId, recepient.mayanAddr, 0, criteria.nonce); uint dust = msg.value - 2*wormholeFee - amountIn; if (dust > 0) { payable(msg.sender).transfer(dust); } MayanStructs.Swap memory swapStruct = MayanStructs.Swap({ payloadID: 1, tokenAddr: tokenOutAddr, tokenChainId: tokenOutChainId, destAddr: recepient.destAddr, destChainId: recepient.destChainId, sourceAddr: bytes32(uint256(uint160(msg.sender))), sourceChainId: tokenBridge.chainId(), sequence: seq1, amountOutMin: criteria.amountOutMin, deadline: criteria.swapDeadline, swapFee: relayerFees.swapFee, redeemFee: relayerFees.redeemFee, refundFee: relayerFees.refundFee, auctionAddr: recepient.auctionAddr, unwrapRedeem: criteria.unwrap, unwrapRefund: true }); bytes memory encoded = encodeSwap(swapStruct) .concat(abi.encodePacked(swapStruct.unwrapRedeem, swapStruct.unwrapRefund)); sequence = tokenBridge.wormhole().publishMessage{ value : wormholeFee }(criteria.nonce, encoded, tokenBridge.finality()); } function redeem(bytes memory encodedVm) public { IWormhole.VM memory vm = tokenBridge.wormhole().parseVM(encodedVm); ITokenBridge.TransferWithPayload memory transferPayload = tokenBridge.parseTransferWithPayload(vm.payload); MayanStructs.Redeem memory redeemPayload = parseRedeemPayload(transferPayload.payload); address tokenAddr; if (transferPayload.tokenChain == tokenBridge.chainId()) { tokenAddr = truncateAddress(transferPayload.tokenAddress); } else { tokenAddr = tokenBridge.wrappedAsset(transferPayload.tokenChain, transferPayload.tokenAddress); } uint256 amount = IERC20(tokenAddr).balanceOf(address(this)); tokenBridge.completeTransferWithPayload(encodedVm); amount = IERC20(tokenAddr).balanceOf(address(this)) - amount; uint256 relayerFee = deNormalizeAmount(uint256(redeemPayload.relayerFee), decimalsOf(tokenAddr)); require(amount > relayerFee, 'relayer fee exeeds amount'); address recepient = truncateAddress(redeemPayload.recepient); if (redeemPayload.unwrap && tokenAddr == address(tokenBridge.WETH())) { tokenBridge.WETH().withdraw(amount); payable(msg.sender).transfer(relayerFee); payable(recepient).transfer(amount - relayerFee); } else { IERC20(tokenAddr).safeTransfer(msg.sender, relayerFee); IERC20(tokenAddr).safeTransfer(recepient, amount - relayerFee); } emit Redeemed(vm.emitterChainId, vm.emitterAddress, vm.sequence); } function parseRedeemPayload(bytes memory encoded) public pure returns (MayanStructs.Redeem memory r) { uint index = 0; r.recepient = encoded.toBytes32(index); index += 32; r.relayerFee = encoded.toUint64(index); index += 8; if (encoded[index] != bytes1(0)) { r.unwrap = true; } } function truncateAddress(bytes32 b) internal pure returns (address) { require(bytes12(b) == 0, 'invalid EVM address'); return address(uint160(uint256(b))); } function decimalsOf(address token) internal view returns(uint8) { (,bytes memory queriedDecimals) = token.staticcall(abi.encodeWithSignature('decimals()')); return abi.decode(queriedDecimals, (uint8)); } function normalizeAmount(uint256 amount, uint8 decimals) internal pure returns(uint256) { if (decimals > 8) { amount /= 10 ** (decimals - 8); } return amount; } function deNormalizeAmount(uint256 amount, uint8 decimals) internal pure returns(uint256) { if (decimals > 8) { amount *= 10 ** (decimals - 8); } return amount; } function encodeSwap(MayanStructs.Swap memory s) public pure returns(bytes memory encoded) { encoded = abi.encodePacked( s.payloadID, s.tokenAddr, s.tokenChainId, s.destAddr, s.destChainId, s.sourceAddr, s.sourceChainId, s.sequence, s.amountOutMin, s.deadline, s.swapFee, s.redeemFee, s.refundFee, s.auctionAddr ); } function setPause(bool _pause) public { require(msg.sender == guardian, 'only guardian'); paused = _pause; } function isPaused() public view returns(bool) { return paused; } function changeGuardian(address newGuardian) public { require(msg.sender == guardian, 'only guardian'); nextGuardian = newGuardian; } function claimGuardian() public { require(msg.sender == nextGuardian, 'only next guardian'); guardian = nextGuardian; } function sweepToken(address token, uint256 amount, address to) public { require(msg.sender == guardian, 'only guardian'); IERC20(token).safeTransfer(to, amount); } function sweepEth(uint256 amount, address payable to) public { require(msg.sender == guardian, 'only guardian'); require(to != address(0), 'transfer to the zero address'); to.transfer(amount); } receive() external payable {} }
// SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; contract MayanStructs { struct Swap { // PayloadID uint8 = 1 uint8 payloadID; // Address of the ouput token. Left-zero-padded if shorter than 32 bytes bytes32 tokenAddr; // Chain ID of the ouput token uint16 tokenChainId; // Address of the recipient. Left-zero-padded if shorter than 32 bytes bytes32 destAddr; // Chain ID of the recipient uint16 destChainId; // Address of sender (for revert scenario) bytes32 sourceAddr; // ChainId of sender (for revert scenario) uint16 sourceChainId; // Sequence of transfer vaa uint64 sequence; // Minimum amount our uint64 amountOutMin; // deadline of swap uint64 deadline; // Swap relayer fee uint64 swapFee; // Redeem relayer fee uint64 redeemFee; // Refund relayer fee uint64 refundFee; // Auction program address bytes32 auctionAddr; // unwrap in redeem bool unwrapRedeem; // unwrap on refund bool unwrapRefund; } struct Redeem { bytes32 recepient; uint64 relayerFee; bool unwrap; } }
// SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./IWETH.sol"; import "./IWormhole.sol"; interface ITokenBridge { struct Transfer { uint8 payloadID; uint256 amount; bytes32 tokenAddress; uint16 tokenChain; bytes32 to; uint16 toChain; uint256 fee; } struct TransferWithPayload { uint8 payloadID; uint256 amount; bytes32 tokenAddress; uint16 tokenChain; bytes32 to; uint16 toChain; bytes32 fromAddress; bytes payload; } struct AssetMeta { uint8 payloadID; bytes32 tokenAddress; uint16 tokenChain; uint8 decimals; bytes32 symbol; bytes32 name; } struct RegisterChain { bytes32 module; uint8 action; uint16 chainId; uint16 emitterChainID; bytes32 emitterAddress; } struct UpgradeContract { bytes32 module; uint8 action; uint16 chainId; bytes32 newContract; } struct RecoverChainId { bytes32 module; uint8 action; uint256 evmChainId; uint16 newChainId; } event ContractUpgraded(address indexed oldContract, address indexed newContract); function _parseTransferCommon(bytes memory encoded) external pure returns (Transfer memory transfer); function attestToken(address tokenAddress, uint32 nonce) external payable returns (uint64 sequence); function wrapAndTransferETH(uint16 recipientChain, bytes32 recipient, uint256 arbiterFee, uint32 nonce) external payable returns (uint64 sequence); function wrapAndTransferETHWithPayload(uint16 recipientChain, bytes32 recipient, uint32 nonce, bytes memory payload) external payable returns (uint64 sequence); function transferTokens(address token, uint256 amount, uint16 recipientChain, bytes32 recipient, uint256 arbiterFee, uint32 nonce) external payable returns (uint64 sequence); function transferTokensWithPayload(address token, uint256 amount, uint16 recipientChain, bytes32 recipient, uint32 nonce, bytes memory payload) external payable returns (uint64 sequence); function updateWrapped(bytes memory encodedVm) external returns (address token); function createWrapped(bytes memory encodedVm) external returns (address token); function completeTransferWithPayload(bytes memory encodedVm) external returns (bytes memory); function completeTransferAndUnwrapETHWithPayload(bytes memory encodedVm) external returns (bytes memory); function completeTransfer(bytes memory encodedVm) external; function completeTransferAndUnwrapETH(bytes memory encodedVm) external; function encodeAssetMeta(AssetMeta memory meta) external pure returns (bytes memory encoded); function encodeTransfer(Transfer memory transfer) external pure returns (bytes memory encoded); function encodeTransferWithPayload(TransferWithPayload memory transfer) external pure returns (bytes memory encoded); function parsePayloadID(bytes memory encoded) external pure returns (uint8 payloadID); function parseAssetMeta(bytes memory encoded) external pure returns (AssetMeta memory meta); function parseTransfer(bytes memory encoded) external pure returns (Transfer memory transfer); function parseTransferWithPayload(bytes memory encoded) external pure returns (TransferWithPayload memory transfer); function governanceActionIsConsumed(bytes32 hash) external view returns (bool); function isInitialized(address impl) external view returns (bool); function isTransferCompleted(bytes32 hash) external view returns (bool); function wormhole() external view returns (IWormhole); function chainId() external view returns (uint16); function evmChainId() external view returns (uint256); function isFork() external view returns (bool); function governanceChainId() external view returns (uint16); function governanceContract() external view returns (bytes32); function wrappedAsset(uint16 tokenChainId, bytes32 tokenAddress) external view returns (address); function bridgeContracts(uint16 chainId_) external view returns (bytes32); function tokenImplementation() external view returns (address); function WETH() external view returns (IWETH); function outstandingBridged(address token) external view returns (uint256); function isWrappedAsset(address token) external view returns (bool); function finality() external view returns (uint8); function implementation() external view returns (address); function initialize() external; function registerChain(bytes memory encodedVM) external; function upgrade(bytes memory encodedVM) external; function submitRecoverChainId(bytes memory encodedVM) external; function parseRegisterChain(bytes memory encoded) external pure returns (RegisterChain memory chain); function parseUpgrade(bytes memory encoded) external pure returns (UpgradeContract memory chain); function parseRecoverChainId(bytes memory encodedRecoverChainId) external pure returns (RecoverChainId memory rci); }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; interface IWormhole { struct GuardianSet { address[] keys; uint32 expirationTime; } struct Signature { bytes32 r; bytes32 s; uint8 v; uint8 guardianIndex; } struct VM { uint8 version; uint32 timestamp; uint32 nonce; uint16 emitterChainId; bytes32 emitterAddress; uint64 sequence; uint8 consistencyLevel; bytes payload; uint32 guardianSetIndex; Signature[] signatures; bytes32 hash; } struct ContractUpgrade { bytes32 module; uint8 action; uint16 chain; address newContract; } struct GuardianSetUpgrade { bytes32 module; uint8 action; uint16 chain; GuardianSet newGuardianSet; uint32 newGuardianSetIndex; } struct SetMessageFee { bytes32 module; uint8 action; uint16 chain; uint256 messageFee; } struct TransferFees { bytes32 module; uint8 action; uint16 chain; uint256 amount; bytes32 recipient; } struct RecoverChainId { bytes32 module; uint8 action; uint256 evmChainId; uint16 newChainId; } event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel); event ContractUpgraded(address indexed oldContract, address indexed newContract); event GuardianSetAdded(uint32 indexed index); function publishMessage( uint32 nonce, bytes memory payload, uint8 consistencyLevel ) external payable returns (uint64 sequence); function initialize() external; function parseAndVerifyVM(bytes calldata encodedVM) external view returns (VM memory vm, bool valid, string memory reason); function verifyVM(VM memory vm) external view returns (bool valid, string memory reason); function verifySignatures(bytes32 hash, Signature[] memory signatures, GuardianSet memory guardianSet) external pure returns (bool valid, string memory reason); function parseVM(bytes memory encodedVM) external pure returns (VM memory vm); function quorum(uint numGuardians) external pure returns (uint numSignaturesRequiredForQuorum); function getGuardianSet(uint32 index) external view returns (GuardianSet memory); function getCurrentGuardianSetIndex() external view returns (uint32); function getGuardianSetExpiry() external view returns (uint32); function governanceActionIsConsumed(bytes32 hash) external view returns (bool); function isInitialized(address impl) external view returns (bool); function chainId() external view returns (uint16); function isFork() external view returns (bool); function governanceChainId() external view returns (uint16); function governanceContract() external view returns (bytes32); function messageFee() external view returns (uint256); function evmChainId() external view returns (uint256); function nextSequence(address emitter) external view returns (uint64); function parseContractUpgrade(bytes memory encodedUpgrade) external pure returns (ContractUpgrade memory cu); function parseGuardianSetUpgrade(bytes memory encodedUpgrade) external pure returns (GuardianSetUpgrade memory gsu); function parseSetMessageFee(bytes memory encodedSetMessageFee) external pure returns (SetMessageFee memory smf); function parseTransferFees(bytes memory encodedTransferFees) external pure returns (TransferFees memory tf); function parseRecoverChainId(bytes memory encodedRecoverChainId) external pure returns (RecoverChainId memory rci); function submitContractUpgrade(bytes memory _vm) external; function submitSetMessageFee(bytes memory _vm) external; function submitNewGuardianSet(bytes memory _vm) external; function submitTransferFees(bytes memory _vm) external; function submitRecoverChainId(bytes memory _vm) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IWETH is IERC20 { function deposit() external payable; function withdraw(uint amount) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tokenBridge","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"indexed":true,"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"indexed":true,"internalType":"uint64","name":"sequence","type":"uint64"}],"name":"Redeemed","type":"event"},{"inputs":[{"internalType":"address","name":"newGuardian","type":"address"}],"name":"changeGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"payloadID","type":"uint8"},{"internalType":"bytes32","name":"tokenAddr","type":"bytes32"},{"internalType":"uint16","name":"tokenChainId","type":"uint16"},{"internalType":"bytes32","name":"destAddr","type":"bytes32"},{"internalType":"uint16","name":"destChainId","type":"uint16"},{"internalType":"bytes32","name":"sourceAddr","type":"bytes32"},{"internalType":"uint16","name":"sourceChainId","type":"uint16"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint64","name":"amountOutMin","type":"uint64"},{"internalType":"uint64","name":"deadline","type":"uint64"},{"internalType":"uint64","name":"swapFee","type":"uint64"},{"internalType":"uint64","name":"redeemFee","type":"uint64"},{"internalType":"uint64","name":"refundFee","type":"uint64"},{"internalType":"bytes32","name":"auctionAddr","type":"bytes32"},{"internalType":"bool","name":"unwrapRedeem","type":"bool"},{"internalType":"bool","name":"unwrapRefund","type":"bool"}],"internalType":"struct MayanStructs.Swap","name":"s","type":"tuple"}],"name":"encodeSwap","outputs":[{"internalType":"bytes","name":"encoded","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"encoded","type":"bytes"}],"name":"parseRedeemPayload","outputs":[{"components":[{"internalType":"bytes32","name":"recepient","type":"bytes32"},{"internalType":"uint64","name":"relayerFee","type":"uint64"},{"internalType":"bool","name":"unwrap","type":"bool"}],"internalType":"struct MayanStructs.Redeem","name":"r","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedVm","type":"bytes"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"swapFee","type":"uint64"},{"internalType":"uint64","name":"redeemFee","type":"uint64"},{"internalType":"uint64","name":"refundFee","type":"uint64"}],"internalType":"struct MayanSwap.RelayerFees","name":"relayerFees","type":"tuple"},{"components":[{"internalType":"bytes32","name":"mayanAddr","type":"bytes32"},{"internalType":"uint16","name":"mayanChainId","type":"uint16"},{"internalType":"bytes32","name":"auctionAddr","type":"bytes32"},{"internalType":"bytes32","name":"destAddr","type":"bytes32"},{"internalType":"uint16","name":"destChainId","type":"uint16"}],"internalType":"struct MayanSwap.Recepient","name":"recepient","type":"tuple"},{"internalType":"bytes32","name":"tokenOutAddr","type":"bytes32"},{"internalType":"uint16","name":"tokenOutChainId","type":"uint16"},{"components":[{"internalType":"uint256","name":"transferDeadline","type":"uint256"},{"internalType":"uint64","name":"swapDeadline","type":"uint64"},{"internalType":"uint64","name":"amountOutMin","type":"uint64"},{"internalType":"bool","name":"unwrap","type":"bool"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"internalType":"struct MayanSwap.Criteria","name":"criteria","type":"tuple"},{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"swap","outputs":[{"internalType":"uint64","name":"sequence","type":"uint64"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"sweepEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint64","name":"swapFee","type":"uint64"},{"internalType":"uint64","name":"redeemFee","type":"uint64"},{"internalType":"uint64","name":"refundFee","type":"uint64"}],"internalType":"struct MayanSwap.RelayerFees","name":"relayerFees","type":"tuple"},{"components":[{"internalType":"bytes32","name":"mayanAddr","type":"bytes32"},{"internalType":"uint16","name":"mayanChainId","type":"uint16"},{"internalType":"bytes32","name":"auctionAddr","type":"bytes32"},{"internalType":"bytes32","name":"destAddr","type":"bytes32"},{"internalType":"uint16","name":"destChainId","type":"uint16"}],"internalType":"struct MayanSwap.Recepient","name":"recepient","type":"tuple"},{"internalType":"bytes32","name":"tokenOutAddr","type":"bytes32"},{"internalType":"uint16","name":"tokenOutChainId","type":"uint16"},{"components":[{"internalType":"uint256","name":"transferDeadline","type":"uint256"},{"internalType":"uint64","name":"swapDeadline","type":"uint64"},{"internalType":"uint64","name":"amountOutMin","type":"uint64"},{"internalType":"bool","name":"unwrap","type":"bool"},{"internalType":"uint32","name":"nonce","type":"uint32"}],"internalType":"struct MayanSwap.Criteria","name":"criteria","type":"tuple"}],"name":"wrapAndSwapETH","outputs":[{"internalType":"uint64","name":"sequence","type":"uint64"}],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002e1c38038062002e1c833981016040819052620000349162000063565b600080546001600160a01b039092166001600160a01b0319928316179055600180549091163317905562000093565b60006020828403121562000075578081fd5b81516001600160a01b03811681146200008c578182fd5b9392505050565b612d7980620000a36000396000f3fe6080604052600436106100a05760003560e01c80639945e3d3116100645780639945e3d314610180578063acbb478c146101a0578063b187bd26146101cd578063bedb86fb146101f7578063d7d4eb2914610217578063df2ab5bb1461022a57600080fd5b80631eec8604146100ac5780632fcb4f04146100dc578063459656ee146100fe5780634df808ce14610113578063580094b71461016057600080fd5b366100a757005b600080fd5b6100bf6100ba366004612443565b61024a565b6040516001600160401b0390911681526020015b60405180910390f35b3480156100e857600080fd5b506100fc6100f7366004612287565b610882565b005b34801561010a57600080fd5b506100fc6108ce565b34801561011f57600080fd5b5061013361012e366004612338565b610941565b60408051825181526020808401516001600160401b031690820152918101511515908201526060016100d3565b34801561016c57600080fd5b506100fc61017b3660046127f7565b6109e4565b34801561018c57600080fd5b506100fc61019b366004612338565b610a9f565b3480156101ac57600080fd5b506101c06101bb3660046124c9565b611215565b6040516100d3919061298a565b3480156101d957600080fd5b50600254600160a01b900460ff1660405190151581526020016100d3565b34801561020357600080fd5b506100fc610212366004612300565b611296565b6100bf6102253660046123dd565b6112de565b34801561023657600080fd5b506100fc6102453660046122bf565b611952565b600254600090600160a01b900460ff16156102a15760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b83514211156102e45760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b6044820152606401610298565b60006102ef84611990565b905060006102fd8483611a32565b9050808a600001516001600160401b0316106103555760405162461bcd60e51b81526020600482015260176024820152761cddd85c0819995948195e18d959591cc8185b5bdd5b9d604a1b6044820152606401610298565b85604001516001600160401b03168a602001516001600160401b0316106103be5760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f75747075740000006044820152606401610298565b808a604001516001600160401b0316106104165760405162461bcd60e51b81526020600482015260196024820152781c99599d5b990819995948195e18d959591cc8185b5bdd5b9d603a1b6044820152606401610298565b6104208183611a6c565b93506104376001600160a01b038616333087611a9a565b600054610451906001600160a01b03878116911686611b0b565b600080546001600160a01b0316630f5287b061046e600234612b18565b60208d01518d5160808c01516040516001600160e01b031960e087901b1681526001600160a01b038d166004820152602481018c905261ffff909316604484015260648301919091526000608483015263ffffffff1660a482015260c4016020604051808303818588803b1580156104e557600080fd5b505af11580156104f9573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061051e9190612826565b90506000604051806102000160405280600160ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff168152602001336001600160a01b031660001b815260200160008054906101000a90046001600160a01b03166001600160a01b0316639a8a05926040518163ffffffff1660e01b815260040160206040518083038186803b1580156105be57600080fd5b505afa1580156105d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f691906127c3565b61ffff168152602001836001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c60400151815260200189606001511515815260200160001515815250905060006106e1826101c00151836101e001516040516020016106c392919091151560f890811b8352901515901b600182015260020190565b6040516020818303038152906040526106db84611215565b90611bcc565b905060008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561072f57600080fd5b505afa158015610743573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076791906122a3565b6001600160a01b031663b19a437e610780600234612b18565b60808c01516000546040805163739fc8d160e01b8152905187926001600160a01b03169163739fc8d1916004808301926020929190829003018186803b1580156107c957600080fd5b505afa1580156107dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108019190612842565b6040518563ffffffff1660e01b815260040161081f939291906129c4565b6020604051808303818588803b15801561083857600080fd5b505af115801561084c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108719190612826565b9d9c50505050505050505050505050565b6001546001600160a01b031633146108ac5760405162461bcd60e51b81526004016102989061299d565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b0316331461091d5760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1033bab0b93234b0b760711b6044820152606401610298565b600254600180546001600160a01b0319166001600160a01b03909216919091179055565b60408051606081018252600080825260208201819052918101829052906109688382611c49565b8252610975602082612b00565b90506109818382611ca7565b6001600160401b0316602083015261099a600882612b00565b83519091506000908490839081106109c257634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916146109de57600160408301525b50919050565b6001546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016102989061299d565b6001600160a01b038116610a645760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610298565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610a9a573d6000803e3d6000fd5b505050565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610aee57600080fd5b505afa158015610b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2691906122a3565b6001600160a01b031663a9e11893836040518263ffffffff1660e01b8152600401610b51919061298a565b60006040518083038186803b158015610b6957600080fd5b505afa158015610b7d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ba591908101906126a4565b6000805460e083015160405163ea63738d60e01b815293945091926001600160a01b039091169163ea63738d91610bdf919060040161298a565b60006040518083038186803b158015610bf757600080fd5b505afa158015610c0b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c3391908101906125e0565b90506000610c448260e00151610941565b905060008060009054906101000a90046001600160a01b03166001600160a01b0316639a8a05926040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9557600080fd5b505afa158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906127c3565b61ffff16836060015161ffff161415610cf457610ced8360400151611d04565b9050610d86565b60005460608401516040808601519051630ff8f14360e11b815261ffff909216600483015260248201526001600160a01b0390911690631ff1e2869060440160206040518083038186803b158015610d4b57600080fd5b505afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8391906122a3565b90505b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610dc857600080fd5b505afa158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0091906127df565b60005460405163c3f511c160e01b81529192506001600160a01b03169063c3f511c190610e3190899060040161298a565b600060405180830381600087803b158015610e4b57600080fd5b505af1158015610e5f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e8791908101906123ab565b506040516370a0823160e01b815230600482015281906001600160a01b038416906370a082319060240160206040518083038186803b158015610ec957600080fd5b505afa158015610edd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0191906127df565b610f0b9190612c45565b90506000610f2e84602001516001600160401b0316610f2985611990565b611a6c565b9050808211610f7f5760405162461bcd60e51b815260206004820152601960248201527f72656c61796572206665652065786565647320616d6f756e74000000000000006044820152606401610298565b6000610f8e8560000151611d04565b905084604001518015611035575060008054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fe857600080fd5b505afa158015610ffc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102091906122a3565b6001600160a01b0316846001600160a01b0316145b156111905760008054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561108657600080fd5b505afa15801561109a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110be91906122a3565b6001600160a01b0316632e1a7d4d846040518263ffffffff1660e01b81526004016110eb91815260200190565b600060405180830381600087803b15801561110557600080fd5b505af1158015611119573d6000803e3d6000fd5b505060405133925084156108fc02915084906000818181858888f1935050505015801561114a573d6000803e3d6000fd5b506001600160a01b0381166108fc6111628486612c45565b6040518115909202916000818181858888f1935050505015801561118a573d6000803e3d6000fd5b506111c3565b6111a46001600160a01b0385163384611d58565b6111c3816111b28486612c45565b6001600160a01b0387169190611d58565b8660a001516001600160401b03168760800151886060015161ffff167ff02867db6908ee5f81fd178573ae9385837f0a0a72553f8c08306759a7e0f00e60405160405180910390a45050505050505050565b6060816000015182602001518360400151846060015185608001518660a001518760c001518860e001518961010001518a61012001518b61014001518c61016001518d61018001518e6101a001516040516020016112809e9d9c9b9a999897969594939291906128b7565b6040516020818303038152906040529050919050565b6001546001600160a01b031633146112c05760405162461bcd60e51b81526004016102989061299d565b60028054911515600160a01b0260ff60a01b19909216919091179055565b600254600090600160a01b900460ff16156113305760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610298565b81514211156113735760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b6044820152606401610298565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156113c257600080fd5b505afa1580156113d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fa91906122a3565b6001600160a01b0316631a90a2196040518163ffffffff1660e01b815260040160206040518083038186803b15801561143257600080fd5b505afa158015611446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146a91906127df565b9050600061148d61147c836002612c26565b6114869034612c45565b6012611a32565b90508088600001516001600160401b0316106114e55760405162461bcd60e51b81526020600482015260176024820152761cddd85c0819995948195e18d959591cc8185b5bdd5b9d604a1b6044820152606401610298565b83604001516001600160401b031688602001516001600160401b03161061154e5760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f75747075740000006044820152606401610298565b8088604001516001600160401b0316106115a65760405162461bcd60e51b81526020600482015260196024820152781c99599d5b990819995948195e18d959591cc8185b5bdd5b9d603a1b6044820152606401610298565b60006115b3826012611a6c565b60008054919250906001600160a01b0316639981509f6115d38685612b00565b60208c01518c5160808b015160405160e086901b6001600160e01b031916815261ffff909316600484015260248301919091526000604483015263ffffffff1660648201526084016020604051808303818588803b15801561163457600080fd5b505af1158015611648573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061166d9190612826565b905060008261167d866002612c26565b6116879034612c45565b6116919190612c45565b905080156116c857604051339082156108fc029083906000818181858888f193505050501580156116c6573d6000803e3d6000fd5b505b6000604051806102000160405280600160ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff168152602001336001600160a01b031660001b815260200160008054906101000a90046001600160a01b03166001600160a01b0316639a8a05926040518163ffffffff1660e01b815260040160206040518083038186803b15801561176657600080fd5b505afa15801561177a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179e91906127c3565b61ffff168152602001846001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c604001518152602001896060015115158152602001600115158152509050600061186b826101c00151836101e001516040516020016106c392919091151560f890811b8352901515901b600182015260020190565b905060008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118b957600080fd5b505afa1580156118cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f191906122a3565b6001600160a01b031663b19a437e888b608001518460008054906101000a90046001600160a01b03166001600160a01b031663739fc8d16040518163ffffffff1660e01b815260040160206040518083038186803b1580156107c957600080fd5b6001546001600160a01b0316331461197c5760405162461bcd60e51b81526004016102989061299d565b610a9a6001600160a01b0384168284611d58565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b179052905160009182916001600160a01b038516916119d39161289b565b600060405180830381855afa9150503d8060008114611a0e576040519150601f19603f3d011682016040523d82523d6000602084013e611a13565b606091505b5091505080806020019051810190611a2b9190612842565b9392505050565b600060088260ff161115611a6357611a4b600883612c5c565b611a5690600a612b7b565b611a609084612b18565b92505b50815b92915050565b600060088260ff161115611a6357611a85600883612c5c565b611a9090600a612b7b565b611a609084612c26565b6040516001600160a01b0380851660248301528316604482015260648101829052611b059085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611d88565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611b5757600080fd5b505afa158015611b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8f91906127df565b611b999190612b00565b6040516001600160a01b038516602482015260448101829052909150611b0590859063095ea7b360e01b90606401611ace565b6060806040519050835180825260208201818101602087015b81831015611bfd578051835260209283019201611be5565b50855184518101855292509050808201602086015b81831015611c2a578051835260209283019201611c12565b508651929092011591909101601f01601f191660405250905092915050565b6000611c56826020612b00565b83511015611c9e5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610298565b50016020015190565b6000611cb4826008612b00565b83511015611cfb5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610298565b50016008015190565b60006001600160a01b0319821615611d545760405162461bcd60e51b8152602060048201526013602482015272696e76616c69642045564d206164647265737360681b6044820152606401610298565b5090565b6040516001600160a01b038316602482015260448101829052610a9a90849063a9059cbb60e01b90606401611ace565b6000611ddd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e5a9092919063ffffffff16565b805190915015610a9a5780806020019051810190611dfb919061231c565b610a9a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610298565b6060611e698484600085611e71565b949350505050565b606082471015611ed25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610298565b6001600160a01b0385163b611f295760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610298565b600080866001600160a01b03168587604051611f45919061289b565b60006040518083038185875af1925050503d8060008114611f82576040519150601f19603f3d011682016040523d82523d6000602084013e611f87565b606091505b5091509150611f97828286611fa2565b979650505050505050565b60608315611fb1575081611a2b565b825115611fc15782518084602001fd5b8160405162461bcd60e51b8152600401610298919061298a565b600082601f830112611feb578081fd5b815160206001600160401b0382111561200657612006612cc1565b612014818360051b01612aa9565b80838252828201915082860187848660071b8901011115612033578586fd5b855b8581101561209a57608080838b03121561204d578788fd5b6120556129f6565b83518152868401518782015260408085015161207081612d34565b9082015260608481015161208381612d34565b908201528552938501939190910190600101612035565b5090979650505050505050565b80356120b281612cef565b919050565b600082601f8301126120c7578081fd5b81516120da6120d582612ad9565b612aa9565b8181528460208386010111156120ee578283fd5b611e69826020830160208701612c7f565b600060a08284031215612110578081fd5b612118612a1e565b905081358152602082013561212c81612d1f565b6020820152604082013561213f81612d1f565b6040820152606082013561215281612cef565b6060820152608082013561216581612d0d565b608082015292915050565b600060a08284031215612181578081fd5b612189612a1e565b905081358152602082013561219d81612cfd565b806020830152506040820135604082015260608201356060820152608082013561216581612cfd565b6000606082840312156121d7578081fd5b604051606081018181106001600160401b03821117156121f9576121f9612cc1565b604052905080823561220a81612d1f565b8152602083013561221a81612d1f565b6020820152604083013561222d81612d1f565b6040919091015292915050565b80356120b281612cfd565b80516120b281612cfd565b80516120b281612d0d565b80356120b281612d1f565b80516120b281612d1f565b80356120b281612d34565b80516120b281612d34565b600060208284031215612298578081fd5b8135611a2b81612cd7565b6000602082840312156122b4578081fd5b8151611a2b81612cd7565b6000806000606084860312156122d3578182fd5b83356122de81612cd7565b92506020840135915060408401356122f581612cd7565b809150509250925092565b600060208284031215612311578081fd5b8135611a2b81612cef565b60006020828403121561232d578081fd5b8151611a2b81612cef565b600060208284031215612349578081fd5b81356001600160401b0381111561235e578182fd5b8201601f8101841361236e578182fd5b803561237c6120d582612ad9565b818152856020838501011115612390578384fd5b81602084016020830137908101602001929092525092915050565b6000602082840312156123bc578081fd5b81516001600160401b038111156123d1578182fd5b611e69848285016120b7565b60008060008060006101e086880312156123f5578283fd5b6123ff87876121c6565b945061240e8760608801612170565b9350610100860135925061012086013561242781612cfd565b91506124378761014088016120ff565b90509295509295909350565b6000806000806000806000610220888a03121561245e578485fd5b61246889896121c6565b96506124778960608a01612170565b9550610100880135945061012088013561249081612cfd565b93506124a0896101408a016120ff565b92506101e08801356124b181612cd7565b80925050610200880135905092959891949750929550565b600061020082840312156124db578081fd5b6124e3612a40565b6124ec83612271565b8152602083013560208201526125046040840161223a565b60408201526060830135606082015261251f6080840161223a565b608082015260a083013560a082015261253a60c0840161223a565b60c082015261254b60e0840161225b565b60e082015261010061255e81850161225b565b9082015261012061257084820161225b565b9082015261014061258284820161225b565b9082015261016061259484820161225b565b908201526101806125a684820161225b565b908201526101a083810135908201526101c06125c38185016120a7565b908201526101e06125d58482016120a7565b908201529392505050565b6000602082840312156125f1578081fd5b81516001600160401b0380821115612607578283fd5b90830190610100828603121561261b578283fd5b612623612a63565b61262c8361227c565b8152602083015160208201526040830151604082015261264e60608401612245565b60608201526080830151608082015261266960a08401612245565b60a082015260c083015160c082015260e083015182811115612689578485fd5b612695878286016120b7565b60e08301525095945050505050565b6000602082840312156126b5578081fd5b81516001600160401b03808211156126cb578283fd5b9083019061016082860312156126df578283fd5b6126e7612a86565b6126f08361227c565b81526126fe60208401612250565b602082015261270f60408401612250565b604082015261272060608401612245565b60608201526080830151608082015261273b60a08401612266565b60a082015261274c60c0840161227c565b60c082015260e083015182811115612762578485fd5b61276e878286016120b7565b60e083015250610100612782818501612250565b908201526101208381015183811115612799578586fd5b6127a588828701611fdb565b91830191909152506101409283015192810192909252509392505050565b6000602082840312156127d4578081fd5b8151611a2b81612cfd565b6000602082840312156127f0578081fd5b5051919050565b60008060408385031215612809578182fd5b82359150602083013561281b81612cd7565b809150509250929050565b600060208284031215612837578081fd5b8151611a2b81612d1f565b600060208284031215612853578081fd5b8151611a2b81612d34565b60008151808452612876816020860160208601612c7f565b601f01601f19169290920160200192915050565b60c01b6001600160c01b0319169052565b600082516128ad818460208701612c7f565b9190910192915050565b60ff60f81b8f60f81b1681528d60018201526128e2602182018e60f01b6001600160f01b0319169052565b8b6023820152612901604382018c60f01b6001600160f01b0319169052565b896045820152612920606582018a60f01b6001600160f01b0319169052565b61292d606782018961288a565b61293a606f82018861288a565b612947607782018761288a565b612954607f82018661288a565b612961608782018561288a565b61296e608f82018461288a565b609781019190915260b7019d9c50505050505050505050505050565b602081526000611a2b602083018461285e565b6020808252600d908201526c37b7363c9033bab0b93234b0b760991b604082015260600190565b63ffffffff841681526060602082015260006129e3606083018561285e565b905060ff83166040830152949350505050565b604051608081016001600160401b0381118282101715612a1857612a18612cc1565b60405290565b60405160a081016001600160401b0381118282101715612a1857612a18612cc1565b60405161020081016001600160401b0381118282101715612a1857612a18612cc1565b60405161010081016001600160401b0381118282101715612a1857612a18612cc1565b60405161016081016001600160401b0381118282101715612a1857612a18612cc1565b604051601f8201601f191681016001600160401b0381118282101715612ad157612ad1612cc1565b604052919050565b60006001600160401b03821115612af257612af2612cc1565b50601f01601f191660200190565b60008219821115612b1357612b13612cab565b500190565b600082612b3357634e487b7160e01b81526012600452602481fd5b500490565b600181815b80851115612b73578160001904821115612b5957612b59612cab565b80851615612b6657918102915b93841c9390800290612b3d565b509250929050565b6000611a2b60ff841683600082612b9457506001611a66565b81612ba157506000611a66565b8160018114612bb75760028114612bc157612bdd565b6001915050611a66565b60ff841115612bd257612bd2612cab565b50506001821b611a66565b5060208310610133831016604e8410600b8410161715612c00575081810a611a66565b612c0a8383612b38565b8060001904821115612c1e57612c1e612cab565b029392505050565b6000816000190483118215151615612c4057612c40612cab565b500290565b600082821015612c5757612c57612cab565b500390565b600060ff821660ff841680821015612c7657612c76612cab565b90039392505050565b60005b83811015612c9a578181015183820152602001612c82565b83811115611b055750506000910152565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612cec57600080fd5b50565b8015158114612cec57600080fd5b61ffff81168114612cec57600080fd5b63ffffffff81168114612cec57600080fd5b6001600160401b0381168114612cec57600080fd5b60ff81168114612cec57600080fdfea26469706673582212204f70d51bba41c0b48a75f40b4218672062ffcbeffa06b4a1f482cd77d2592d9e64736f6c634300080400330000000000000000000000005a58505a96d1dbf8df91cb21b54419fc36e93fde
Deployed Bytecode
0x6080604052600436106100a05760003560e01c80639945e3d3116100645780639945e3d314610180578063acbb478c146101a0578063b187bd26146101cd578063bedb86fb146101f7578063d7d4eb2914610217578063df2ab5bb1461022a57600080fd5b80631eec8604146100ac5780632fcb4f04146100dc578063459656ee146100fe5780634df808ce14610113578063580094b71461016057600080fd5b366100a757005b600080fd5b6100bf6100ba366004612443565b61024a565b6040516001600160401b0390911681526020015b60405180910390f35b3480156100e857600080fd5b506100fc6100f7366004612287565b610882565b005b34801561010a57600080fd5b506100fc6108ce565b34801561011f57600080fd5b5061013361012e366004612338565b610941565b60408051825181526020808401516001600160401b031690820152918101511515908201526060016100d3565b34801561016c57600080fd5b506100fc61017b3660046127f7565b6109e4565b34801561018c57600080fd5b506100fc61019b366004612338565b610a9f565b3480156101ac57600080fd5b506101c06101bb3660046124c9565b611215565b6040516100d3919061298a565b3480156101d957600080fd5b50600254600160a01b900460ff1660405190151581526020016100d3565b34801561020357600080fd5b506100fc610212366004612300565b611296565b6100bf6102253660046123dd565b6112de565b34801561023657600080fd5b506100fc6102453660046122bf565b611952565b600254600090600160a01b900460ff16156102a15760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064015b60405180910390fd5b83514211156102e45760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b6044820152606401610298565b60006102ef84611990565b905060006102fd8483611a32565b9050808a600001516001600160401b0316106103555760405162461bcd60e51b81526020600482015260176024820152761cddd85c0819995948195e18d959591cc8185b5bdd5b9d604a1b6044820152606401610298565b85604001516001600160401b03168a602001516001600160401b0316106103be5760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f75747075740000006044820152606401610298565b808a604001516001600160401b0316106104165760405162461bcd60e51b81526020600482015260196024820152781c99599d5b990819995948195e18d959591cc8185b5bdd5b9d603a1b6044820152606401610298565b6104208183611a6c565b93506104376001600160a01b038616333087611a9a565b600054610451906001600160a01b03878116911686611b0b565b600080546001600160a01b0316630f5287b061046e600234612b18565b60208d01518d5160808c01516040516001600160e01b031960e087901b1681526001600160a01b038d166004820152602481018c905261ffff909316604484015260648301919091526000608483015263ffffffff1660a482015260c4016020604051808303818588803b1580156104e557600080fd5b505af11580156104f9573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061051e9190612826565b90506000604051806102000160405280600160ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff168152602001336001600160a01b031660001b815260200160008054906101000a90046001600160a01b03166001600160a01b0316639a8a05926040518163ffffffff1660e01b815260040160206040518083038186803b1580156105be57600080fd5b505afa1580156105d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f691906127c3565b61ffff168152602001836001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c60400151815260200189606001511515815260200160001515815250905060006106e1826101c00151836101e001516040516020016106c392919091151560f890811b8352901515901b600182015260020190565b6040516020818303038152906040526106db84611215565b90611bcc565b905060008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b15801561072f57600080fd5b505afa158015610743573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076791906122a3565b6001600160a01b031663b19a437e610780600234612b18565b60808c01516000546040805163739fc8d160e01b8152905187926001600160a01b03169163739fc8d1916004808301926020929190829003018186803b1580156107c957600080fd5b505afa1580156107dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108019190612842565b6040518563ffffffff1660e01b815260040161081f939291906129c4565b6020604051808303818588803b15801561083857600080fd5b505af115801561084c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108719190612826565b9d9c50505050505050505050505050565b6001546001600160a01b031633146108ac5760405162461bcd60e51b81526004016102989061299d565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b0316331461091d5760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1033bab0b93234b0b760711b6044820152606401610298565b600254600180546001600160a01b0319166001600160a01b03909216919091179055565b60408051606081018252600080825260208201819052918101829052906109688382611c49565b8252610975602082612b00565b90506109818382611ca7565b6001600160401b0316602083015261099a600882612b00565b83519091506000908490839081106109c257634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916146109de57600160408301525b50919050565b6001546001600160a01b03163314610a0e5760405162461bcd60e51b81526004016102989061299d565b6001600160a01b038116610a645760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f2061646472657373000000006044820152606401610298565b6040516001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610a9a573d6000803e3d6000fd5b505050565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610aee57600080fd5b505afa158015610b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2691906122a3565b6001600160a01b031663a9e11893836040518263ffffffff1660e01b8152600401610b51919061298a565b60006040518083038186803b158015610b6957600080fd5b505afa158015610b7d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ba591908101906126a4565b6000805460e083015160405163ea63738d60e01b815293945091926001600160a01b039091169163ea63738d91610bdf919060040161298a565b60006040518083038186803b158015610bf757600080fd5b505afa158015610c0b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c3391908101906125e0565b90506000610c448260e00151610941565b905060008060009054906101000a90046001600160a01b03166001600160a01b0316639a8a05926040518163ffffffff1660e01b815260040160206040518083038186803b158015610c9557600080fd5b505afa158015610ca9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906127c3565b61ffff16836060015161ffff161415610cf457610ced8360400151611d04565b9050610d86565b60005460608401516040808601519051630ff8f14360e11b815261ffff909216600483015260248201526001600160a01b0390911690631ff1e2869060440160206040518083038186803b158015610d4b57600080fd5b505afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8391906122a3565b90505b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610dc857600080fd5b505afa158015610ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0091906127df565b60005460405163c3f511c160e01b81529192506001600160a01b03169063c3f511c190610e3190899060040161298a565b600060405180830381600087803b158015610e4b57600080fd5b505af1158015610e5f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e8791908101906123ab565b506040516370a0823160e01b815230600482015281906001600160a01b038416906370a082319060240160206040518083038186803b158015610ec957600080fd5b505afa158015610edd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0191906127df565b610f0b9190612c45565b90506000610f2e84602001516001600160401b0316610f2985611990565b611a6c565b9050808211610f7f5760405162461bcd60e51b815260206004820152601960248201527f72656c61796572206665652065786565647320616d6f756e74000000000000006044820152606401610298565b6000610f8e8560000151611d04565b905084604001518015611035575060008054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610fe857600080fd5b505afa158015610ffc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102091906122a3565b6001600160a01b0316846001600160a01b0316145b156111905760008054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561108657600080fd5b505afa15801561109a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110be91906122a3565b6001600160a01b0316632e1a7d4d846040518263ffffffff1660e01b81526004016110eb91815260200190565b600060405180830381600087803b15801561110557600080fd5b505af1158015611119573d6000803e3d6000fd5b505060405133925084156108fc02915084906000818181858888f1935050505015801561114a573d6000803e3d6000fd5b506001600160a01b0381166108fc6111628486612c45565b6040518115909202916000818181858888f1935050505015801561118a573d6000803e3d6000fd5b506111c3565b6111a46001600160a01b0385163384611d58565b6111c3816111b28486612c45565b6001600160a01b0387169190611d58565b8660a001516001600160401b03168760800151886060015161ffff167ff02867db6908ee5f81fd178573ae9385837f0a0a72553f8c08306759a7e0f00e60405160405180910390a45050505050505050565b6060816000015182602001518360400151846060015185608001518660a001518760c001518860e001518961010001518a61012001518b61014001518c61016001518d61018001518e6101a001516040516020016112809e9d9c9b9a999897969594939291906128b7565b6040516020818303038152906040529050919050565b6001546001600160a01b031633146112c05760405162461bcd60e51b81526004016102989061299d565b60028054911515600160a01b0260ff60a01b19909216919091179055565b600254600090600160a01b900460ff16156113305760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610298565b81514211156113735760405162461bcd60e51b815260206004820152600f60248201526e191958591b1a5b99481c185cdcd959608a1b6044820152606401610298565b60008060009054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156113c257600080fd5b505afa1580156113d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fa91906122a3565b6001600160a01b0316631a90a2196040518163ffffffff1660e01b815260040160206040518083038186803b15801561143257600080fd5b505afa158015611446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146a91906127df565b9050600061148d61147c836002612c26565b6114869034612c45565b6012611a32565b90508088600001516001600160401b0316106114e55760405162461bcd60e51b81526020600482015260176024820152761cddd85c0819995948195e18d959591cc8185b5bdd5b9d604a1b6044820152606401610298565b83604001516001600160401b031688602001516001600160401b03161061154e5760405162461bcd60e51b815260206004820152601d60248201527f72656465656d206665652065786365656473206d696e206f75747075740000006044820152606401610298565b8088604001516001600160401b0316106115a65760405162461bcd60e51b81526020600482015260196024820152781c99599d5b990819995948195e18d959591cc8185b5bdd5b9d603a1b6044820152606401610298565b60006115b3826012611a6c565b60008054919250906001600160a01b0316639981509f6115d38685612b00565b60208c01518c5160808b015160405160e086901b6001600160e01b031916815261ffff909316600484015260248301919091526000604483015263ffffffff1660648201526084016020604051808303818588803b15801561163457600080fd5b505af1158015611648573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061166d9190612826565b905060008261167d866002612c26565b6116879034612c45565b6116919190612c45565b905080156116c857604051339082156108fc029083906000818181858888f193505050501580156116c6573d6000803e3d6000fd5b505b6000604051806102000160405280600160ff1681526020018b81526020018a61ffff1681526020018c6060015181526020018c6080015161ffff168152602001336001600160a01b031660001b815260200160008054906101000a90046001600160a01b03166001600160a01b0316639a8a05926040518163ffffffff1660e01b815260040160206040518083038186803b15801561176657600080fd5b505afa15801561177a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179e91906127c3565b61ffff168152602001846001600160401b0316815260200189604001516001600160401b0316815260200189602001516001600160401b031681526020018d600001516001600160401b031681526020018d602001516001600160401b031681526020018d604001516001600160401b031681526020018c604001518152602001896060015115158152602001600115158152509050600061186b826101c00151836101e001516040516020016106c392919091151560f890811b8352901515901b600182015260020190565b905060008054906101000a90046001600160a01b03166001600160a01b03166384acd1bb6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118b957600080fd5b505afa1580156118cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f191906122a3565b6001600160a01b031663b19a437e888b608001518460008054906101000a90046001600160a01b03166001600160a01b031663739fc8d16040518163ffffffff1660e01b815260040160206040518083038186803b1580156107c957600080fd5b6001546001600160a01b0316331461197c5760405162461bcd60e51b81526004016102989061299d565b610a9a6001600160a01b0384168284611d58565b60408051600481526024810182526020810180516001600160e01b031663313ce56760e01b179052905160009182916001600160a01b038516916119d39161289b565b600060405180830381855afa9150503d8060008114611a0e576040519150601f19603f3d011682016040523d82523d6000602084013e611a13565b606091505b5091505080806020019051810190611a2b9190612842565b9392505050565b600060088260ff161115611a6357611a4b600883612c5c565b611a5690600a612b7b565b611a609084612b18565b92505b50815b92915050565b600060088260ff161115611a6357611a85600883612c5c565b611a9090600a612b7b565b611a609084612c26565b6040516001600160a01b0380851660248301528316604482015260648101829052611b059085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611d88565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611b5757600080fd5b505afa158015611b6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8f91906127df565b611b999190612b00565b6040516001600160a01b038516602482015260448101829052909150611b0590859063095ea7b360e01b90606401611ace565b6060806040519050835180825260208201818101602087015b81831015611bfd578051835260209283019201611be5565b50855184518101855292509050808201602086015b81831015611c2a578051835260209283019201611c12565b508651929092011591909101601f01601f191660405250905092915050565b6000611c56826020612b00565b83511015611c9e5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610298565b50016020015190565b6000611cb4826008612b00565b83511015611cfb5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610298565b50016008015190565b60006001600160a01b0319821615611d545760405162461bcd60e51b8152602060048201526013602482015272696e76616c69642045564d206164647265737360681b6044820152606401610298565b5090565b6040516001600160a01b038316602482015260448101829052610a9a90849063a9059cbb60e01b90606401611ace565b6000611ddd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e5a9092919063ffffffff16565b805190915015610a9a5780806020019051810190611dfb919061231c565b610a9a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610298565b6060611e698484600085611e71565b949350505050565b606082471015611ed25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610298565b6001600160a01b0385163b611f295760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610298565b600080866001600160a01b03168587604051611f45919061289b565b60006040518083038185875af1925050503d8060008114611f82576040519150601f19603f3d011682016040523d82523d6000602084013e611f87565b606091505b5091509150611f97828286611fa2565b979650505050505050565b60608315611fb1575081611a2b565b825115611fc15782518084602001fd5b8160405162461bcd60e51b8152600401610298919061298a565b600082601f830112611feb578081fd5b815160206001600160401b0382111561200657612006612cc1565b612014818360051b01612aa9565b80838252828201915082860187848660071b8901011115612033578586fd5b855b8581101561209a57608080838b03121561204d578788fd5b6120556129f6565b83518152868401518782015260408085015161207081612d34565b9082015260608481015161208381612d34565b908201528552938501939190910190600101612035565b5090979650505050505050565b80356120b281612cef565b919050565b600082601f8301126120c7578081fd5b81516120da6120d582612ad9565b612aa9565b8181528460208386010111156120ee578283fd5b611e69826020830160208701612c7f565b600060a08284031215612110578081fd5b612118612a1e565b905081358152602082013561212c81612d1f565b6020820152604082013561213f81612d1f565b6040820152606082013561215281612cef565b6060820152608082013561216581612d0d565b608082015292915050565b600060a08284031215612181578081fd5b612189612a1e565b905081358152602082013561219d81612cfd565b806020830152506040820135604082015260608201356060820152608082013561216581612cfd565b6000606082840312156121d7578081fd5b604051606081018181106001600160401b03821117156121f9576121f9612cc1565b604052905080823561220a81612d1f565b8152602083013561221a81612d1f565b6020820152604083013561222d81612d1f565b6040919091015292915050565b80356120b281612cfd565b80516120b281612cfd565b80516120b281612d0d565b80356120b281612d1f565b80516120b281612d1f565b80356120b281612d34565b80516120b281612d34565b600060208284031215612298578081fd5b8135611a2b81612cd7565b6000602082840312156122b4578081fd5b8151611a2b81612cd7565b6000806000606084860312156122d3578182fd5b83356122de81612cd7565b92506020840135915060408401356122f581612cd7565b809150509250925092565b600060208284031215612311578081fd5b8135611a2b81612cef565b60006020828403121561232d578081fd5b8151611a2b81612cef565b600060208284031215612349578081fd5b81356001600160401b0381111561235e578182fd5b8201601f8101841361236e578182fd5b803561237c6120d582612ad9565b818152856020838501011115612390578384fd5b81602084016020830137908101602001929092525092915050565b6000602082840312156123bc578081fd5b81516001600160401b038111156123d1578182fd5b611e69848285016120b7565b60008060008060006101e086880312156123f5578283fd5b6123ff87876121c6565b945061240e8760608801612170565b9350610100860135925061012086013561242781612cfd565b91506124378761014088016120ff565b90509295509295909350565b6000806000806000806000610220888a03121561245e578485fd5b61246889896121c6565b96506124778960608a01612170565b9550610100880135945061012088013561249081612cfd565b93506124a0896101408a016120ff565b92506101e08801356124b181612cd7565b80925050610200880135905092959891949750929550565b600061020082840312156124db578081fd5b6124e3612a40565b6124ec83612271565b8152602083013560208201526125046040840161223a565b60408201526060830135606082015261251f6080840161223a565b608082015260a083013560a082015261253a60c0840161223a565b60c082015261254b60e0840161225b565b60e082015261010061255e81850161225b565b9082015261012061257084820161225b565b9082015261014061258284820161225b565b9082015261016061259484820161225b565b908201526101806125a684820161225b565b908201526101a083810135908201526101c06125c38185016120a7565b908201526101e06125d58482016120a7565b908201529392505050565b6000602082840312156125f1578081fd5b81516001600160401b0380821115612607578283fd5b90830190610100828603121561261b578283fd5b612623612a63565b61262c8361227c565b8152602083015160208201526040830151604082015261264e60608401612245565b60608201526080830151608082015261266960a08401612245565b60a082015260c083015160c082015260e083015182811115612689578485fd5b612695878286016120b7565b60e08301525095945050505050565b6000602082840312156126b5578081fd5b81516001600160401b03808211156126cb578283fd5b9083019061016082860312156126df578283fd5b6126e7612a86565b6126f08361227c565b81526126fe60208401612250565b602082015261270f60408401612250565b604082015261272060608401612245565b60608201526080830151608082015261273b60a08401612266565b60a082015261274c60c0840161227c565b60c082015260e083015182811115612762578485fd5b61276e878286016120b7565b60e083015250610100612782818501612250565b908201526101208381015183811115612799578586fd5b6127a588828701611fdb565b91830191909152506101409283015192810192909252509392505050565b6000602082840312156127d4578081fd5b8151611a2b81612cfd565b6000602082840312156127f0578081fd5b5051919050565b60008060408385031215612809578182fd5b82359150602083013561281b81612cd7565b809150509250929050565b600060208284031215612837578081fd5b8151611a2b81612d1f565b600060208284031215612853578081fd5b8151611a2b81612d34565b60008151808452612876816020860160208601612c7f565b601f01601f19169290920160200192915050565b60c01b6001600160c01b0319169052565b600082516128ad818460208701612c7f565b9190910192915050565b60ff60f81b8f60f81b1681528d60018201526128e2602182018e60f01b6001600160f01b0319169052565b8b6023820152612901604382018c60f01b6001600160f01b0319169052565b896045820152612920606582018a60f01b6001600160f01b0319169052565b61292d606782018961288a565b61293a606f82018861288a565b612947607782018761288a565b612954607f82018661288a565b612961608782018561288a565b61296e608f82018461288a565b609781019190915260b7019d9c50505050505050505050505050565b602081526000611a2b602083018461285e565b6020808252600d908201526c37b7363c9033bab0b93234b0b760991b604082015260600190565b63ffffffff841681526060602082015260006129e3606083018561285e565b905060ff83166040830152949350505050565b604051608081016001600160401b0381118282101715612a1857612a18612cc1565b60405290565b60405160a081016001600160401b0381118282101715612a1857612a18612cc1565b60405161020081016001600160401b0381118282101715612a1857612a18612cc1565b60405161010081016001600160401b0381118282101715612a1857612a18612cc1565b60405161016081016001600160401b0381118282101715612a1857612a18612cc1565b604051601f8201601f191681016001600160401b0381118282101715612ad157612ad1612cc1565b604052919050565b60006001600160401b03821115612af257612af2612cc1565b50601f01601f191660200190565b60008219821115612b1357612b13612cab565b500190565b600082612b3357634e487b7160e01b81526012600452602481fd5b500490565b600181815b80851115612b73578160001904821115612b5957612b59612cab565b80851615612b6657918102915b93841c9390800290612b3d565b509250929050565b6000611a2b60ff841683600082612b9457506001611a66565b81612ba157506000611a66565b8160018114612bb75760028114612bc157612bdd565b6001915050611a66565b60ff841115612bd257612bd2612cab565b50506001821b611a66565b5060208310610133831016604e8410600b8410161715612c00575081810a611a66565b612c0a8383612b38565b8060001904821115612c1e57612c1e612cab565b029392505050565b6000816000190483118215151615612c4057612c40612cab565b500290565b600082821015612c5757612c57612cab565b500390565b600060ff821660ff841680821015612c7657612c76612cab565b90039392505050565b60005b83811015612c9a578181015183820152602001612c82565b83811115611b055750506000910152565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612cec57600080fd5b50565b8015158114612cec57600080fd5b61ffff81168114612cec57600080fd5b63ffffffff81168114612cec57600080fd5b6001600160401b0381168114612cec57600080fd5b60ff81168114612cec57600080fdfea26469706673582212204f70d51bba41c0b48a75f40b4218672062ffcbeffa06b4a1f482cd77d2592d9e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005a58505a96d1dbf8df91cb21b54419fc36e93fde
-----Decoded View---------------
Arg [0] : _tokenBridge (address): 0x5a58505a96D1dbf8dF91cB21B54419FC36e93fdE
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005a58505a96d1dbf8df91cb21b54419fc36e93fde
Loading...
Loading
OVERVIEW
Mayan is a cross-chain swap auction protocolLoading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.