Overview
FTM Balance
0 FTM
FTM Value
$0.00More Info
Private Name Tags
ContractCreator
Sponsored
Latest 6 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
35130307 | 896 days ago | Contract Creation | 0 FTM | |||
35129387 | 896 days ago | Contract Creation | 0 FTM | |||
35127274 | 896 days ago | Contract Creation | 0 FTM | |||
35126976 | 896 days ago | Contract Creation | 0 FTM | |||
35115705 | 896 days ago | Contract Creation | 0 FTM | |||
35112814 | 896 days ago | Contract Creation | 0 FTM |
Loading...
Loading
Contract Name:
RedemptionFactory
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; import './interfaces/IRedemptionFactory.sol'; import './RedemptionPair.sol'; contract RedemptionFactory is IRedemptionFactory { address public override feeTo; address public override feeToSetter; address public override migrator; mapping(address => mapping(address => address)) public override getPair; address[] public override allPairs; event PairCreated(address indexed token0, address indexed token1, address pair, uint); constructor(address _feeToSetter) public { feeToSetter = _feeToSetter; } function allPairsLength() external override view returns (uint) { return allPairs.length; } function pairCodeHash() external pure returns (bytes32) { return keccak256(type(RedemptionPair).creationCode); } function createPair(address tokenA, address tokenB) external override returns (address pair) { require(tokenA != tokenB, 'UniswapV2: IDENTICAL_ADDRESSES'); (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS'); require(getPair[token0][token1] == address(0), 'UniswapV2: PAIR_EXISTS'); // single check is sufficient bytes memory bytecode = type(RedemptionPair).creationCode; bytes32 salt = keccak256(abi.encodePacked(token0, token1)); assembly { pair := create2(0, add(bytecode, 32), mload(bytecode), salt) } RedemptionPair(pair).initialize(token0, token1); getPair[token0][token1] = pair; getPair[token1][token0] = pair; // populate mapping in the reverse direction allPairs.push(pair); emit PairCreated(token0, token1, pair, allPairs.length); } function setFeeTo(address _feeTo) external override { require(msg.sender == feeToSetter, 'UniswapV2: FORBIDDEN'); feeTo = _feeTo; } function setMigrator(address _migrator) external override { require(msg.sender == feeToSetter, 'UniswapV2: FORBIDDEN'); migrator = _migrator; } function setFeeToSetter(address _feeToSetter) external override { require(msg.sender == feeToSetter, 'UniswapV2: FORBIDDEN'); feeToSetter = _feeToSetter; } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.5.0; interface IRedemptionFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function migrator() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; function setMigrator(address) external; }
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; import './RedemptionERC20.sol'; import './libraries/Math.sol'; import './libraries/UQ112x112.sol'; import './interfaces/IERC20.sol'; import './interfaces/IRedemptionFactory.sol'; import './interfaces/IRedemptionCallee.sol'; interface IMigrator { // Return the desired amount of liquidity token that the migrator wants. function desiredLiquidity() external view returns (uint256); } contract RedemptionPair is RedemptionERC20 { using SafeMathRedemption for uint; using UQ112x112 for uint224; uint public constant MINIMUM_LIQUIDITY = 10**3; bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)'))); address public factory; address public controllerFeeAddress = 0x456070f39330C4F87760550985AE5C1f5A60E087; address public token0; address public token1; uint public constant MAX_FEE_AMOUNT = 200; // = 2% uint public constant MIN_FEE_AMOUNT = 1; // = 0.01% uint public feeAmount = 20; // default = 0.2% uint public controllerFeeShare = 4; // 0.04% (deducts from feeAmount) uint112 private reserve0; // uses single storage slot, accessible via getReserves uint112 private reserve1; // uses single storage slot, accessible via getReserves uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves uint public price0CumulativeLast; uint public price1CumulativeLast; uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event uint private unlocked = 1; modifier lock() { require(unlocked == 1, 'RedemptionV2: LOCKED'); unlocked = 0; _; unlocked = 1; } function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) { _reserve0 = reserve0; _reserve1 = reserve1; _blockTimestampLast = blockTimestampLast; } function _safeTransfer(address token, address to, uint value) private { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'RedemptionV2: TRANSFER_FAILED'); } event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); constructor() public { factory = msg.sender; } // called once by the factory at time of deployment function initialize(address _token0, address _token1) external { require(msg.sender == factory, 'RedemptionV2: FORBIDDEN'); // sufficient check token0 = _token0; token1 = _token1; } function setFeeAmount(uint newFeeAmount) external { require(msg.sender == IRedemptionFactory(factory).feeToSetter(), "RedemptionV2Pair: only factory's feeToSetter"); require(newFeeAmount <= MAX_FEE_AMOUNT, "RedemptionV2Pair: feeAmount mustn't exceed the maximum"); require(newFeeAmount >= MIN_FEE_AMOUNT, "RedemptionV2Pair: feeAmount mustn't exceed the minimum"); feeAmount = newFeeAmount; } function setControllerFeeAmount(uint _controllerFeeShare) external { require(msg.sender == IRedemptionFactory(factory).feeToSetter(), "RedemptionV2Pair: only factory's feeToSetter"); require(_controllerFeeShare <= MAX_FEE_AMOUNT, "RedemptionV2Pair: controllerFeeShare mustn't exceed the maximum"); require(_controllerFeeShare >= MIN_FEE_AMOUNT, "RedemptionV2Pair: controllerFeeShare mustn't exceed the minimum"); controllerFeeShare = _controllerFeeShare; } function setControllerFeeAddress(address _controllerFeeAddress) external { require(_controllerFeeAddress != address(0), "Cannot be zero address"); require(msg.sender == IRedemptionFactory(factory).feeToSetter(), "RedemptionV2Pair: only factory's feeToSetter"); controllerFeeAddress = _controllerFeeAddress; } // update reserves and, on the first call per block, price accumulators function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private { require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'RedemptionV2: OVERFLOW'); uint32 blockTimestamp = uint32(block.timestamp % 2**32); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) { // * never overflows, and + overflow is desired price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed; price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed; } reserve0 = uint112(balance0); reserve1 = uint112(balance1); blockTimestampLast = blockTimestamp; emit Sync(reserve0, reserve1); } // if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k) function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) { address feeTo = IRedemptionFactory(factory).feeTo(); feeOn = feeTo != address(0); uint _kLast = kLast; // gas savings if (feeOn) { if (_kLast != 0) { uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1)); uint rootKLast = Math.sqrt(_kLast); if (rootK > rootKLast) { uint numerator = totalSupply.mul(rootK.sub(rootKLast)); uint denominator = rootK.mul(50).add(rootKLast); uint liquidity = numerator / denominator; if (liquidity > 0) _mint(feeTo, liquidity); } } } else if (_kLast != 0) { kLast = 0; } } // this low-level function should be called from a contract which performs important safety checks function mint(address to) external lock returns (uint liquidity) { (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings uint balance0 = IERC20Redemption(token0).balanceOf(address(this)); uint balance1 = IERC20Redemption(token1).balanceOf(address(this)); uint amount0 = balance0.sub(_reserve0); uint amount1 = balance1.sub(_reserve1); bool feeOn = _mintFee(_reserve0, _reserve1); uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee if (_totalSupply == 0) { address migrator = IRedemptionFactory(factory).migrator(); if (msg.sender == migrator) { liquidity = IMigrator(migrator).desiredLiquidity(); require(liquidity > 0 && liquidity != uint256(-1), "Bad desired liquidity"); } else { require(migrator == address(0), "Must not have migrator"); liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY); _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens } } else { liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1); } require(liquidity > 0, 'RedemptionV2: INSUFFICIENT_LIQUIDITY_MINTED'); _mint(to, liquidity); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Mint(msg.sender, amount0, amount1); } // this low-level function should be called from a contract which performs important safety checks function burn(address to) external lock returns (uint amount0, uint amount1) { (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings address _token0 = token0; // gas savings address _token1 = token1; // gas savings uint balance0 = IERC20Redemption(_token0).balanceOf(address(this)); uint balance1 = IERC20Redemption(_token1).balanceOf(address(this)); uint liquidity = balanceOf[address(this)]; bool feeOn = _mintFee(_reserve0, _reserve1); uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution require(amount0 > 0 && amount1 > 0, 'RedemptionV2: INSUFFICIENT_LIQUIDITY_BURNED'); _burn(address(this), liquidity); _safeTransfer(_token0, to, amount0); _safeTransfer(_token1, to, amount1); balance0 = IERC20Redemption(_token0).balanceOf(address(this)); balance1 = IERC20Redemption(_token1).balanceOf(address(this)); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Burn(msg.sender, amount0, amount1, to); } // this low-level function should be called from a contract which performs important safety checks function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock { require(amount0Out > 0 || amount1Out > 0, 'RedemptionV2: INSUFFICIENT_OUTPUT_AMOUNT'); (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings require(amount0Out < _reserve0 && amount1Out < _reserve1, 'RedemptionV2: INSUFFICIENT_LIQUIDITY'); uint balance0; uint balance1; { // scope for _token{0,1}, avoids stack too deep errors address _token0 = token0; address _token1 = token1; require(to != _token0 && to != _token1, 'RedemptionV2: INVALID_TO'); if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens if (data.length > 0) IRedemptionCallee(to).RedemptionCall(msg.sender, amount0Out, amount1Out, data); balance0 = IERC20Redemption(_token0).balanceOf(address(this)); balance1 = IERC20Redemption(_token1).balanceOf(address(this)); } uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0; uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0; require(amount0In > 0 || amount1In > 0, 'RedemptionV2: INSUFFICIENT_INPUT_AMOUNT'); { // scope for reserve{0,1}Adjusted, avoids stack too deep errors uint balance0Adjusted = balance0.mul(10000).sub(amount0In.mul(feeAmount)); uint balance1Adjusted = balance1.mul(10000).sub(amount1In.mul(feeAmount)); require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(10000**2), 'RedemptionV2: K'); } {// scope for referer management uint controllerFeeAmount = controllerFeeAddress != address(0) ? controllerFeeShare : 0; if (controllerFeeAmount > 0) { if (amount0In > 0) { address _token0 = token0; _safeTransfer(_token0, controllerFeeAddress, amount0In.mul(controllerFeeAmount) / 10000); balance0 = IERC20Redemption(_token0).balanceOf(address(this)); } if (amount1In > 0) { address _token1 = token1; _safeTransfer(_token1, controllerFeeAddress, amount1In.mul(controllerFeeAmount) / 10000); balance1 = IERC20Redemption(_token1).balanceOf(address(this)); } } } _update(balance0, balance1, _reserve0, _reserve1); emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to); } // force balances to match reserves function skim(address to) external lock { address _token0 = token0; // gas savings address _token1 = token1; // gas savings _safeTransfer(_token0, to, IERC20Redemption(_token0).balanceOf(address(this)).sub(reserve0)); _safeTransfer(_token1, to, IERC20Redemption(_token1).balanceOf(address(this)).sub(reserve1)); } // force reserves to match balances function sync() external lock { _update(IERC20Redemption(token0).balanceOf(address(this)), IERC20Redemption(token1).balanceOf(address(this)), reserve0, reserve1); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; import './libraries/SafeMath.sol'; contract RedemptionERC20 { using SafeMathRedemption for uint; string public constant name = 'Redemption-LP'; string public constant symbol = 'redLP'; uint8 public constant decimals = 18; uint public totalSupply; mapping(address => uint) public balanceOf; mapping(address => mapping(address => uint)) public allowance; bytes32 public DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint) public nonces; event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); constructor() public { uint chainId; assembly { chainId := chainid() } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'), keccak256(bytes(name)), keccak256(bytes('1')), chainId, address(this) ) ); } function _mint(address to, uint value) internal { totalSupply = totalSupply.add(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(address(0), to, value); } function _burn(address from, uint value) internal { balanceOf[from] = balanceOf[from].sub(value); totalSupply = totalSupply.sub(value); emit Transfer(from, address(0), value); } function _approve(address owner, address spender, uint value) private { allowance[owner][spender] = value; emit Approval(owner, spender, value); } function _transfer(address from, address to, uint value) private { balanceOf[from] = balanceOf[from].sub(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(from, to, value); } function approve(address spender, uint value) external returns (bool) { _approve(msg.sender, spender, value); return true; } function transfer(address to, uint value) external returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom(address from, address to, uint value) external returns (bool) { if (allowance[from][msg.sender] != uint(-1)) { allowance[from][msg.sender] = allowance[from][msg.sender].sub(value); } _transfer(from, to, value); return true; } function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external { require(deadline >= block.timestamp, 'Redemption: EXPIRED'); bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, 'Redemption: INVALID_SIGNATURE'); _approve(owner, spender, value); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; // a library for performing various math operations library Math { function min(uint x, uint y) internal pure returns (uint z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint y) internal pure returns (uint z) { if (y > 3) { z = y; uint x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) // range: [0, 2**112 - 1] // resolution: 1 / 2**112 library UQ112x112 { uint224 constant Q112 = 2**112; // encode a uint112 as a UQ112x112 function encode(uint112 y) internal pure returns (uint224 z) { z = uint224(y) * Q112; // never overflows } // divide a UQ112x112 by a uint112, returning a UQ112x112 function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) { z = x / uint224(y); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.5.0; interface IERC20Redemption { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.5.0; interface IRedemptionCallee { function RedemptionCall(address sender, uint amount0, uint amount1, bytes calldata data) external; }
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) library SafeMathRedemption { function add(uint x, uint y) internal pure returns (uint z) { require((z = x + y) >= x, 'ds-math-add-overflow'); } function sub(uint x, uint y) internal pure returns (uint z) { require((z = x - y) <= x, 'ds-math-sub-underflow'); } function mul(uint x, uint y) internal pure returns (uint z) { require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow'); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_feeToSetter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token0","type":"address"},{"indexed":true,"internalType":"address","name":"token1","type":"address"},{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"PairCreated","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allPairsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"}],"name":"createPair","outputs":[{"internalType":"address","name":"pair","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeTo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeToSetter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairCodeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_feeTo","type":"address"}],"name":"setFeeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeToSetter","type":"address"}],"name":"setFeeToSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516134393803806134398339818101604052602081101561003357600080fd5b5051600180546001600160a01b0319166001600160a01b039092169190911790556133d6806100636000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80637cd07e47116100715780637cd07e47146101395780639aab924814610141578063a2e74af614610149578063c9c653961461016f578063e6a439051461019d578063f46901ed146101cb576100a9565b8063017e7e58146100ae578063094b7415146100d25780631e3dd18b146100da57806323cf3118146100f7578063574f2ba31461011f575b600080fd5b6100b66101f1565b604080516001600160a01b039092168252519081900360200190f35b6100b6610200565b6100b6600480360360208110156100f057600080fd5b503561020f565b61011d6004803603602081101561010d57600080fd5b50356001600160a01b0316610236565b005b6101276102ae565b60408051918252519081900360200190f35b6100b66102b4565b6101276102c3565b61011d6004803603602081101561015f57600080fd5b50356001600160a01b03166102f5565b6100b66004803603604081101561018557600080fd5b506001600160a01b038135811691602001351661036d565b6100b6600480360360408110156101b357600080fd5b506001600160a01b0381358116916020013516610698565b61011d600480360360208110156101e157600080fd5b50356001600160a01b03166106be565b6000546001600160a01b031681565b6001546001600160a01b031681565b6004818154811061021c57fe5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316331461028c576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60045490565b6002546001600160a01b031681565b6000604051806020016102d590610736565b6020820181038252601f19601f8201166040525080519060200120905090565b6001546001600160a01b0316331461034b576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000816001600160a01b0316836001600160a01b031614156103d6576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056323a204944454e544943414c5f4144445245535345530000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b0316106103f95783856103fc565b84845b90925090506001600160a01b03821661045c576040805162461bcd60e51b815260206004820152601760248201527f556e697377617056323a205a45524f5f41444452455353000000000000000000604482015290519081900360640190fd5b6001600160a01b038281166000908152600360209081526040808320858516845290915290205416156104cf576040805162461bcd60e51b8152602060048201526016602482015275556e697377617056323a20504149525f45584953545360501b604482015290519081900360640190fd5b6060604051806020016104e190610736565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b031660601b8152601401826001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f59450846001600160a01b031663485cc95585856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050600060405180830381600087803b1580156105ae57600080fd5b505af11580156105c2573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526003602081815260408084208987168086529083528185208054978d166001600160a01b031998891681179091559383528185208686528352818520805488168517905560048054600181018255958190527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60036020908152600092835260408084209091529082529020546001600160a01b031681565b6001546001600160a01b03163314610714576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b612c5d806107448339019056fe6080604052600680546001600160a01b03191673456070f39330c4f87760550985ae5c1f5a60e08717905560146009556004600a556001600f5534801561004557600080fd5b50604080518082018252600d81526c0526564656d7074696f6e2d4c5609c1b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fd8f6275912d598d1c67c38b76cf4c9dfda17cdf0402a4b0d21cb3ce2cadac8a8818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c09091019092528151910120600355600580546001600160a01b03191633179055612b228061013b6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80636b39268011610125578063ba9a7a56116100ad578063d505accf1161007c578063d505accf1461061c578063dd62ed3e1461066d578063e332f3061461069b578063eda48fd5146106a3578063fff6cae9146106ab57610211565b8063ba9a7a56146105de578063bc25cf77146105e6578063c45a01551461060c578063d21220a71461061457610211565b80637ecebe00116100f45780637ecebe001461051f57806389afcb441461054557806395d89b4114610584578063988914321461058c578063a9059cbb146105b257610211565b80636b392680146104b757806370a08231146104d45780637464fc3d146104fa57806374caad671461050257610211565b806330adf81f116101a85780635909c0d5116101775780635909c0d5146104715780635a3d549314610479578063662af7681461048157806369e15404146104895780636a6278421461049157610211565b806330adf81f14610415578063313ce5671461041d5780633644e5151461043b578063485cc9551461044357610211565b80630dfe1681116101e45780630dfe16811461039957806318160ddd146103bd57806323b872dd146103d75780632a54caba1461040d57610211565b8063022c0d9f1461021657806306fdde03146102a45780630902f1ac14610321578063095ea7b314610359575b600080fd5b6102a26004803603608081101561022c57600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561026357600080fd5b82018360208201111561027557600080fd5b8035906020019184600183028401116401000000008311171561029757600080fd5b5090925090506106b3565b005b6102ac610d56565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e65781810151838201526020016102ce565b50505050905090810190601f1680156103135780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610329610d7f565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103856004803603604081101561036f57600080fd5b506001600160a01b038135169060200135610da9565b604080519115158252519081900360200190f35b6103a1610dc0565b604080516001600160a01b039092168252519081900360200190f35b6103c5610dcf565b60408051918252519081900360200190f35b610385600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610dd5565b6103c5610e69565b6103c5610e6e565b610425610e92565b6040805160ff9092168252519081900360200190f35b6103c5610e97565b6102a26004803603604081101561045957600080fd5b506001600160a01b0381358116916020013516610e9d565b6103c5610f2a565b6103c5610f30565b6103a1610f36565b6103c5610f45565b6103c5600480360360208110156104a757600080fd5b50356001600160a01b0316610f4b565b6102a2600480360360208110156104cd57600080fd5b50356113ca565b6103c5600480360360208110156104ea57600080fd5b50356001600160a01b031661150f565b6103c5611521565b6102a26004803603602081101561051857600080fd5b5035611527565b6103c56004803603602081101561053557600080fd5b50356001600160a01b031661166c565b61056b6004803603602081101561055b57600080fd5b50356001600160a01b031661167e565b6040805192835260208301919091528051918290030190f35b6102ac611a15565b6102a2600480360360208110156105a257600080fd5b50356001600160a01b0316611a36565b610385600480360360408110156105c857600080fd5b506001600160a01b038135169060200135611b6c565b6103c5611b79565b6102a2600480360360208110156105fc57600080fd5b50356001600160a01b0316611b7f565b6103a1611cf4565b6103a1611d03565b6102a2600480360360e081101561063257600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611d12565b6103c56004803603604081101561068357600080fd5b506001600160a01b0381358116916020013516611f15565b6103c5611f32565b6103c5611f38565b6102a2611f3d565b600f54600114610701576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f55841515806107145750600084115b61074f5760405162461bcd60e51b81526004018080602001828103825260288152602001806129db6028913960400191505060405180910390fd5b60008061075a610d7f565b5091509150816001600160701b03168710801561077f5750806001600160701b031686105b6107ba5760405162461bcd60e51b815260040180806020018281038252602481526020018061290e6024913960400191505060405180910390fd5b60075460085460009182916001600160a01b039182169190811690891682148015906107f85750806001600160a01b0316896001600160a01b031614155b610849576040805162461bcd60e51b815260206004820152601860248201527f526564656d7074696f6e56323a20494e56414c49445f544f0000000000000000604482015290519081900360640190fd5b8a1561085a5761085a828a8d6120a2565b891561086b5761086b818a8c6120a2565b861561091d57886001600160a01b031663da68c9d8338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561090457600080fd5b505af1158015610918573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561096357600080fd5b505afa158015610977573d6000803e3d6000fd5b505050506040513d602081101561098d57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b1580156109d957600080fd5b505afa1580156109ed573d6000803e3d6000fd5b505050506040513d6020811015610a0357600080fd5b5051925060009150506001600160701b0385168a90038311610a26576000610a35565b89856001600160701b03160383035b9050600089856001600160701b0316038311610a52576000610a61565b89856001600160701b03160383035b90506000821180610a725750600081115b610aad5760405162461bcd60e51b8152600401808060200182810382526027815260200180612a396027913960400191505060405180910390fd5b6000610ad9610ac76009548561223c90919063ffffffff16565b610ad38761271061223c565b9061229f565b90506000610af5610ac76009548561223c90919063ffffffff16565b9050610b1b6305f5e100610b156001600160701b038b8116908b1661223c565b9061223c565b610b25838361223c565b1015610b6a576040805162461bcd60e51b815260206004820152600f60248201526e526564656d7074696f6e56323a204b60881b604482015290519081900360640190fd5b50506006546000906001600160a01b0316610b86576000610b8a565b600a545b90508015610ce3578215610c41576007546006546001600160a01b0391821691610bcb91839116612710610bbe888761223c565b81610bc557fe5b046120a2565b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015610c1157600080fd5b505afa158015610c25573d6000803e3d6000fd5b505050506040513d6020811015610c3b57600080fd5b50519550505b8115610ce3576008546006546001600160a01b0391821691610c6d91839116612710610bbe878761223c565b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015610cb357600080fd5b505afa158015610cc7573d6000803e3d6000fd5b505050506040513d6020811015610cdd57600080fd5b50519450505b50610cf0848488886122ef565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600f55505050505050505050565b6040518060400160405280600d81526020016c0526564656d7074696f6e2d4c5609c1b81525081565b600b546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610db63384846124b1565b5060015b92915050565b6007546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610e54576001600160a01b0384166000908152600260209081526040808320338452909152902054610e2f908361229f565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610e5f848484612513565b5060019392505050565b60c881565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610efc576040805162461bcd60e51b815260206004820152601760248201527f526564656d7074696f6e56323a20464f5242494444454e000000000000000000604482015290519081900360640190fd5b600780546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b600c5481565b600d5481565b6006546001600160a01b031681565b60095481565b6000600f54600114610f9b576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f81905580610fab610d7f565b50600754604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610fff57600080fd5b505afa158015611013573d6000803e3d6000fd5b505050506040513d602081101561102957600080fd5b5051600854604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561107c57600080fd5b505afa158015611090573d6000803e3d6000fd5b505050506040513d60208110156110a657600080fd5b5051905060006110bf836001600160701b03871661229f565b905060006110d6836001600160701b03871661229f565b905060006110e487876125c1565b600054909150806112bb5760055460408051637cd07e4760e01b815290516000926001600160a01b031691637cd07e47916004808301926020929190829003018186803b15801561113457600080fd5b505afa158015611148573d6000803e3d6000fd5b505050506040513d602081101561115e57600080fd5b50519050336001600160a01b038216141561123957806001600160a01b03166340dc0e376040518163ffffffff1660e01b815260040160206040518083038186803b1580156111ac57600080fd5b505afa1580156111c0573d6000803e3d6000fd5b505050506040513d60208110156111d657600080fd5b5051995089158015906111eb57506000198a14155b611234576040805162461bcd60e51b81526020600482015260156024820152744261642064657369726564206c697175696469747960581b604482015290519081900360640190fd5b6112b5565b6001600160a01b0381161561128e576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103737ba103430bb329036b4b3b930ba37b960511b604482015290519081900360640190fd5b6112a66103e8610ad36112a1888861223c565b612701565b99506112b560006103e8612753565b506112fe565b6112fb6001600160701b0389166112d2868461223c565b816112d957fe5b046001600160701b0389166112ee868561223c565b816112f557fe5b046127dd565b98505b6000891161133d5760405162461bcd60e51b815260040180806020018281038252602b8152602001806129b0602b913960400191505060405180910390fd5b6113478a8a612753565b61135386868a8a6122ef565b811561137d57600b54611379906001600160701b0380821691600160701b90041661223c565b600e555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600f5550949695505050505050565b600560009054906101000a90046001600160a01b03166001600160a01b031663094b74156040518163ffffffff1660e01b815260040160206040518083038186803b15801561141857600080fd5b505afa15801561142c573d6000803e3d6000fd5b505050506040513d602081101561144257600080fd5b50516001600160a01b0316331461148a5760405162461bcd60e51b815260040180806020018281038252602c815260200180612a8b602c913960400191505060405180910390fd5b60c88111156114ca5760405162461bcd60e51b8152600401808060200182810382526036815260200180612ab76036913960400191505060405180910390fd5b600181101561150a5760405162461bcd60e51b8152600401808060200182810382526036815260200180612a036036913960400191505060405180910390fd5b600955565b60016020526000908152604090205481565b600e5481565b600560009054906101000a90046001600160a01b03166001600160a01b031663094b74156040518163ffffffff1660e01b815260040160206040518083038186803b15801561157557600080fd5b505afa158015611589573d6000803e3d6000fd5b505050506040513d602081101561159f57600080fd5b50516001600160a01b031633146115e75760405162461bcd60e51b815260040180806020018281038252602c815260200180612a8b602c913960400191505060405180910390fd5b60c88111156116275760405162461bcd60e51b815260040180806020018281038252603f815260200180612971603f913960400191505060405180910390fd5b60018110156116675760405162461bcd60e51b815260040180806020018281038252603f815260200180612932603f913960400191505060405180910390fd5b600a55565b60046020526000908152604090205481565b600080600f546001146116cf576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f819055806116df610d7f565b50600754600854604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b15801561173b57600080fd5b505afa15801561174f573d6000803e3d6000fd5b505050506040513d602081101561176557600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156117b357600080fd5b505afa1580156117c7573d6000803e3d6000fd5b505050506040513d60208110156117dd57600080fd5b5051306000908152600160205260408120549192506117fc88886125c1565b6000549091508061180d848761223c565b8161181457fe5b049a5080611822848661223c565b8161182957fe5b04995060008b11801561183c575060008a115b6118775760405162461bcd60e51b815260040180806020018281038252602b815260200180612a60602b913960400191505060405180910390fd5b61188130846127f5565b61188c878d8d6120a2565b611897868d8c6120a2565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b1580156118dd57600080fd5b505afa1580156118f1573d6000803e3d6000fd5b505050506040513d602081101561190757600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b15801561195357600080fd5b505afa158015611967573d6000803e3d6000fd5b505050506040513d602081101561197d57600080fd5b5051935061198d85858b8b6122ef565b81156119b757600b546119b3906001600160701b0380821691600160701b90041661223c565b600e555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600f81905550915091565b6040518060400160405280600581526020016407265644c560dc1b81525081565b6001600160a01b038116611a8a576040805162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b604482015290519081900360640190fd5b600560009054906101000a90046001600160a01b03166001600160a01b031663094b74156040518163ffffffff1660e01b815260040160206040518083038186803b158015611ad857600080fd5b505afa158015611aec573d6000803e3d6000fd5b505050506040513d6020811015611b0257600080fd5b50516001600160a01b03163314611b4a5760405162461bcd60e51b815260040180806020018281038252602c815260200180612a8b602c913960400191505060405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610db6338484612513565b6103e881565b600f54600114611bcd576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f55600754600854600b54604080516370a0823160e01b815230600482015290516001600160a01b039485169490931692611c769285928792611c71926001600160701b03169185916370a0823191602480820192602092909190829003018186803b158015611c3f57600080fd5b505afa158015611c53573d6000803e3d6000fd5b505050506040513d6020811015611c6957600080fd5b50519061229f565b6120a2565b611cea8184611c71600b600e9054906101000a90046001600160701b03166001600160701b0316856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611c3f57600080fd5b50506001600f5550565b6005546001600160a01b031681565b6008546001600160a01b031681565b42841015611d5d576040805162461bcd60e51b8152602060048201526013602482015272149959195b5c1d1a5bdb8e8811561412549151606a1b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611e78573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611eae5750886001600160a01b0316816001600160a01b0316145b611eff576040805162461bcd60e51b815260206004820152601d60248201527f526564656d7074696f6e3a20494e56414c49445f5349474e4154555245000000604482015290519081900360640190fd5b611f0a8989896124b1565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600a5481565b600181565b600f54600114611f8b576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f55600754604080516370a0823160e01b8152306004820152905161209b926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d602081101561200657600080fd5b5051600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561205357600080fd5b505afa158015612067573d6000803e3d6000fd5b505050506040513d602081101561207d57600080fd5b5051600b546001600160701b0380821691600160701b9004166122ef565b6001600f55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b6020831061214f5780518252601f199092019160209182019101612130565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146121b1576040519150601f19603f3d011682016040523d82523d6000602084013e6121b6565b606091505b50915091508180156121e45750805115806121e457508080602001905160208110156121e157600080fd5b50515b612235576040805162461bcd60e51b815260206004820152601d60248201527f526564656d7074696f6e56323a205452414e534645525f4641494c4544000000604482015290519081900360640190fd5b5050505050565b60008115806122575750508082028282828161225457fe5b04145b610dba576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610dba576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b03841180159061230d57506001600160701b038311155b612357576040805162461bcd60e51b8152602060048201526016602482015275526564656d7074696f6e56323a204f564552464c4f5760501b604482015290519081900360640190fd5b600b5463ffffffff42811691600160e01b9004811682039081161580159061238757506001600160701b03841615155b801561239b57506001600160701b03831615155b15612406578063ffffffff166123c3856123b486612887565b6001600160e01b031690612899565b600c80546001600160e01b03929092169290920201905563ffffffff81166123ee846123b487612887565b600d80546001600160e01b0392909216929092020190555b600b80546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054612536908261229f565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461256590826128be565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b15801561261257600080fd5b505afa158015612626573d6000803e3d6000fd5b505050506040513d602081101561263c57600080fd5b5051600e546001600160a01b0382161580159450919250906126ed5780156126e85760006126796112a16001600160701b0388811690881661223c565b9050600061268683612701565b9050808211156126e55760006126a861269f848461229f565b6000549061223c565b905060006126c1836126bb86603261223c565b906128be565b905060008183816126ce57fe5b04905080156126e1576126e18782612753565b5050505b50505b6126f9565b80156126f9576000600e555b505092915050565b60006003821115612744575080600160028204015b8181101561273e5780915060028182858161272d57fe5b04018161273657fe5b049050612716565b5061274e565b811561274e575060015b919050565b60005461276090826128be565b60009081556001600160a01b03831681526001602052604090205461278590826128be565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106127ec57816127ee565b825b9392505050565b6001600160a01b038216600090815260016020526040902054612818908261229f565b6001600160a01b0383166000908152600160205260408120919091555461283f908261229f565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b038416816128b657fe5b049392505050565b80820182811015610dba576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe526564656d7074696f6e56323a20494e53554646494349454e545f4c4951554944495459526564656d7074696f6e5632506169723a20636f6e74726f6c6c65724665655368617265206d7573746e27742065786365656420746865206d696e696d756d526564656d7074696f6e5632506169723a20636f6e74726f6c6c65724665655368617265206d7573746e27742065786365656420746865206d6178696d756d526564656d7074696f6e56323a20494e53554646494349454e545f4c49515549444954595f4d494e544544526564656d7074696f6e56323a20494e53554646494349454e545f4f55545055545f414d4f554e54526564656d7074696f6e5632506169723a20666565416d6f756e74206d7573746e27742065786365656420746865206d696e696d756d526564656d7074696f6e56323a20494e53554646494349454e545f494e5055545f414d4f554e54526564656d7074696f6e56323a20494e53554646494349454e545f4c49515549444954595f4255524e4544526564656d7074696f6e5632506169723a206f6e6c7920666163746f7279277320666565546f536574746572526564656d7074696f6e5632506169723a20666565416d6f756e74206d7573746e27742065786365656420746865206d6178696d756da264697066735822122025a7fc8486065ac46dcfc47671952a6b204472f508a638e8ab753e9046bb142c64736f6c634300060c0033a2646970667358221220fcd1c27e1b442157e3d80130dc275c00085ef8a721c63a01afb85c51cb8efd8864736f6c634300060c00330000000000000000000000002a2abed06ea2f6d1b1f08ae465ed64ec4ce85422
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80637cd07e47116100715780637cd07e47146101395780639aab924814610141578063a2e74af614610149578063c9c653961461016f578063e6a439051461019d578063f46901ed146101cb576100a9565b8063017e7e58146100ae578063094b7415146100d25780631e3dd18b146100da57806323cf3118146100f7578063574f2ba31461011f575b600080fd5b6100b66101f1565b604080516001600160a01b039092168252519081900360200190f35b6100b6610200565b6100b6600480360360208110156100f057600080fd5b503561020f565b61011d6004803603602081101561010d57600080fd5b50356001600160a01b0316610236565b005b6101276102ae565b60408051918252519081900360200190f35b6100b66102b4565b6101276102c3565b61011d6004803603602081101561015f57600080fd5b50356001600160a01b03166102f5565b6100b66004803603604081101561018557600080fd5b506001600160a01b038135811691602001351661036d565b6100b6600480360360408110156101b357600080fd5b506001600160a01b0381358116916020013516610698565b61011d600480360360208110156101e157600080fd5b50356001600160a01b03166106be565b6000546001600160a01b031681565b6001546001600160a01b031681565b6004818154811061021c57fe5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316331461028c576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60045490565b6002546001600160a01b031681565b6000604051806020016102d590610736565b6020820181038252601f19601f8201166040525080519060200120905090565b6001546001600160a01b0316331461034b576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000816001600160a01b0316836001600160a01b031614156103d6576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056323a204944454e544943414c5f4144445245535345530000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b0316106103f95783856103fc565b84845b90925090506001600160a01b03821661045c576040805162461bcd60e51b815260206004820152601760248201527f556e697377617056323a205a45524f5f41444452455353000000000000000000604482015290519081900360640190fd5b6001600160a01b038281166000908152600360209081526040808320858516845290915290205416156104cf576040805162461bcd60e51b8152602060048201526016602482015275556e697377617056323a20504149525f45584953545360501b604482015290519081900360640190fd5b6060604051806020016104e190610736565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b031660601b8152601401826001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f59450846001600160a01b031663485cc95585856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050600060405180830381600087803b1580156105ae57600080fd5b505af11580156105c2573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526003602081815260408084208987168086529083528185208054978d166001600160a01b031998891681179091559383528185208686528352818520805488168517905560048054600181018255958190527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60036020908152600092835260408084209091529082529020546001600160a01b031681565b6001546001600160a01b03163314610714576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b612c5d806107448339019056fe6080604052600680546001600160a01b03191673456070f39330c4f87760550985ae5c1f5a60e08717905560146009556004600a556001600f5534801561004557600080fd5b50604080518082018252600d81526c0526564656d7074696f6e2d4c5609c1b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fd8f6275912d598d1c67c38b76cf4c9dfda17cdf0402a4b0d21cb3ce2cadac8a8818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c09091019092528151910120600355600580546001600160a01b03191633179055612b228061013b6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80636b39268011610125578063ba9a7a56116100ad578063d505accf1161007c578063d505accf1461061c578063dd62ed3e1461066d578063e332f3061461069b578063eda48fd5146106a3578063fff6cae9146106ab57610211565b8063ba9a7a56146105de578063bc25cf77146105e6578063c45a01551461060c578063d21220a71461061457610211565b80637ecebe00116100f45780637ecebe001461051f57806389afcb441461054557806395d89b4114610584578063988914321461058c578063a9059cbb146105b257610211565b80636b392680146104b757806370a08231146104d45780637464fc3d146104fa57806374caad671461050257610211565b806330adf81f116101a85780635909c0d5116101775780635909c0d5146104715780635a3d549314610479578063662af7681461048157806369e15404146104895780636a6278421461049157610211565b806330adf81f14610415578063313ce5671461041d5780633644e5151461043b578063485cc9551461044357610211565b80630dfe1681116101e45780630dfe16811461039957806318160ddd146103bd57806323b872dd146103d75780632a54caba1461040d57610211565b8063022c0d9f1461021657806306fdde03146102a45780630902f1ac14610321578063095ea7b314610359575b600080fd5b6102a26004803603608081101561022c57600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561026357600080fd5b82018360208201111561027557600080fd5b8035906020019184600183028401116401000000008311171561029757600080fd5b5090925090506106b3565b005b6102ac610d56565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e65781810151838201526020016102ce565b50505050905090810190601f1680156103135780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610329610d7f565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103856004803603604081101561036f57600080fd5b506001600160a01b038135169060200135610da9565b604080519115158252519081900360200190f35b6103a1610dc0565b604080516001600160a01b039092168252519081900360200190f35b6103c5610dcf565b60408051918252519081900360200190f35b610385600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610dd5565b6103c5610e69565b6103c5610e6e565b610425610e92565b6040805160ff9092168252519081900360200190f35b6103c5610e97565b6102a26004803603604081101561045957600080fd5b506001600160a01b0381358116916020013516610e9d565b6103c5610f2a565b6103c5610f30565b6103a1610f36565b6103c5610f45565b6103c5600480360360208110156104a757600080fd5b50356001600160a01b0316610f4b565b6102a2600480360360208110156104cd57600080fd5b50356113ca565b6103c5600480360360208110156104ea57600080fd5b50356001600160a01b031661150f565b6103c5611521565b6102a26004803603602081101561051857600080fd5b5035611527565b6103c56004803603602081101561053557600080fd5b50356001600160a01b031661166c565b61056b6004803603602081101561055b57600080fd5b50356001600160a01b031661167e565b6040805192835260208301919091528051918290030190f35b6102ac611a15565b6102a2600480360360208110156105a257600080fd5b50356001600160a01b0316611a36565b610385600480360360408110156105c857600080fd5b506001600160a01b038135169060200135611b6c565b6103c5611b79565b6102a2600480360360208110156105fc57600080fd5b50356001600160a01b0316611b7f565b6103a1611cf4565b6103a1611d03565b6102a2600480360360e081101561063257600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611d12565b6103c56004803603604081101561068357600080fd5b506001600160a01b0381358116916020013516611f15565b6103c5611f32565b6103c5611f38565b6102a2611f3d565b600f54600114610701576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f55841515806107145750600084115b61074f5760405162461bcd60e51b81526004018080602001828103825260288152602001806129db6028913960400191505060405180910390fd5b60008061075a610d7f565b5091509150816001600160701b03168710801561077f5750806001600160701b031686105b6107ba5760405162461bcd60e51b815260040180806020018281038252602481526020018061290e6024913960400191505060405180910390fd5b60075460085460009182916001600160a01b039182169190811690891682148015906107f85750806001600160a01b0316896001600160a01b031614155b610849576040805162461bcd60e51b815260206004820152601860248201527f526564656d7074696f6e56323a20494e56414c49445f544f0000000000000000604482015290519081900360640190fd5b8a1561085a5761085a828a8d6120a2565b891561086b5761086b818a8c6120a2565b861561091d57886001600160a01b031663da68c9d8338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561090457600080fd5b505af1158015610918573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561096357600080fd5b505afa158015610977573d6000803e3d6000fd5b505050506040513d602081101561098d57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b1580156109d957600080fd5b505afa1580156109ed573d6000803e3d6000fd5b505050506040513d6020811015610a0357600080fd5b5051925060009150506001600160701b0385168a90038311610a26576000610a35565b89856001600160701b03160383035b9050600089856001600160701b0316038311610a52576000610a61565b89856001600160701b03160383035b90506000821180610a725750600081115b610aad5760405162461bcd60e51b8152600401808060200182810382526027815260200180612a396027913960400191505060405180910390fd5b6000610ad9610ac76009548561223c90919063ffffffff16565b610ad38761271061223c565b9061229f565b90506000610af5610ac76009548561223c90919063ffffffff16565b9050610b1b6305f5e100610b156001600160701b038b8116908b1661223c565b9061223c565b610b25838361223c565b1015610b6a576040805162461bcd60e51b815260206004820152600f60248201526e526564656d7074696f6e56323a204b60881b604482015290519081900360640190fd5b50506006546000906001600160a01b0316610b86576000610b8a565b600a545b90508015610ce3578215610c41576007546006546001600160a01b0391821691610bcb91839116612710610bbe888761223c565b81610bc557fe5b046120a2565b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015610c1157600080fd5b505afa158015610c25573d6000803e3d6000fd5b505050506040513d6020811015610c3b57600080fd5b50519550505b8115610ce3576008546006546001600160a01b0391821691610c6d91839116612710610bbe878761223c565b604080516370a0823160e01b815230600482015290516001600160a01b038316916370a08231916024808301926020929190829003018186803b158015610cb357600080fd5b505afa158015610cc7573d6000803e3d6000fd5b505050506040513d6020811015610cdd57600080fd5b50519450505b50610cf0848488886122ef565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600f55505050505050505050565b6040518060400160405280600d81526020016c0526564656d7074696f6e2d4c5609c1b81525081565b600b546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610db63384846124b1565b5060015b92915050565b6007546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610e54576001600160a01b0384166000908152600260209081526040808320338452909152902054610e2f908361229f565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610e5f848484612513565b5060019392505050565b60c881565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610efc576040805162461bcd60e51b815260206004820152601760248201527f526564656d7074696f6e56323a20464f5242494444454e000000000000000000604482015290519081900360640190fd5b600780546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b600c5481565b600d5481565b6006546001600160a01b031681565b60095481565b6000600f54600114610f9b576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f81905580610fab610d7f565b50600754604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610fff57600080fd5b505afa158015611013573d6000803e3d6000fd5b505050506040513d602081101561102957600080fd5b5051600854604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561107c57600080fd5b505afa158015611090573d6000803e3d6000fd5b505050506040513d60208110156110a657600080fd5b5051905060006110bf836001600160701b03871661229f565b905060006110d6836001600160701b03871661229f565b905060006110e487876125c1565b600054909150806112bb5760055460408051637cd07e4760e01b815290516000926001600160a01b031691637cd07e47916004808301926020929190829003018186803b15801561113457600080fd5b505afa158015611148573d6000803e3d6000fd5b505050506040513d602081101561115e57600080fd5b50519050336001600160a01b038216141561123957806001600160a01b03166340dc0e376040518163ffffffff1660e01b815260040160206040518083038186803b1580156111ac57600080fd5b505afa1580156111c0573d6000803e3d6000fd5b505050506040513d60208110156111d657600080fd5b5051995089158015906111eb57506000198a14155b611234576040805162461bcd60e51b81526020600482015260156024820152744261642064657369726564206c697175696469747960581b604482015290519081900360640190fd5b6112b5565b6001600160a01b0381161561128e576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103737ba103430bb329036b4b3b930ba37b960511b604482015290519081900360640190fd5b6112a66103e8610ad36112a1888861223c565b612701565b99506112b560006103e8612753565b506112fe565b6112fb6001600160701b0389166112d2868461223c565b816112d957fe5b046001600160701b0389166112ee868561223c565b816112f557fe5b046127dd565b98505b6000891161133d5760405162461bcd60e51b815260040180806020018281038252602b8152602001806129b0602b913960400191505060405180910390fd5b6113478a8a612753565b61135386868a8a6122ef565b811561137d57600b54611379906001600160701b0380821691600160701b90041661223c565b600e555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600f5550949695505050505050565b600560009054906101000a90046001600160a01b03166001600160a01b031663094b74156040518163ffffffff1660e01b815260040160206040518083038186803b15801561141857600080fd5b505afa15801561142c573d6000803e3d6000fd5b505050506040513d602081101561144257600080fd5b50516001600160a01b0316331461148a5760405162461bcd60e51b815260040180806020018281038252602c815260200180612a8b602c913960400191505060405180910390fd5b60c88111156114ca5760405162461bcd60e51b8152600401808060200182810382526036815260200180612ab76036913960400191505060405180910390fd5b600181101561150a5760405162461bcd60e51b8152600401808060200182810382526036815260200180612a036036913960400191505060405180910390fd5b600955565b60016020526000908152604090205481565b600e5481565b600560009054906101000a90046001600160a01b03166001600160a01b031663094b74156040518163ffffffff1660e01b815260040160206040518083038186803b15801561157557600080fd5b505afa158015611589573d6000803e3d6000fd5b505050506040513d602081101561159f57600080fd5b50516001600160a01b031633146115e75760405162461bcd60e51b815260040180806020018281038252602c815260200180612a8b602c913960400191505060405180910390fd5b60c88111156116275760405162461bcd60e51b815260040180806020018281038252603f815260200180612971603f913960400191505060405180910390fd5b60018110156116675760405162461bcd60e51b815260040180806020018281038252603f815260200180612932603f913960400191505060405180910390fd5b600a55565b60046020526000908152604090205481565b600080600f546001146116cf576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f819055806116df610d7f565b50600754600854604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b15801561173b57600080fd5b505afa15801561174f573d6000803e3d6000fd5b505050506040513d602081101561176557600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156117b357600080fd5b505afa1580156117c7573d6000803e3d6000fd5b505050506040513d60208110156117dd57600080fd5b5051306000908152600160205260408120549192506117fc88886125c1565b6000549091508061180d848761223c565b8161181457fe5b049a5080611822848661223c565b8161182957fe5b04995060008b11801561183c575060008a115b6118775760405162461bcd60e51b815260040180806020018281038252602b815260200180612a60602b913960400191505060405180910390fd5b61188130846127f5565b61188c878d8d6120a2565b611897868d8c6120a2565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b1580156118dd57600080fd5b505afa1580156118f1573d6000803e3d6000fd5b505050506040513d602081101561190757600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b15801561195357600080fd5b505afa158015611967573d6000803e3d6000fd5b505050506040513d602081101561197d57600080fd5b5051935061198d85858b8b6122ef565b81156119b757600b546119b3906001600160701b0380821691600160701b90041661223c565b600e555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600f81905550915091565b6040518060400160405280600581526020016407265644c560dc1b81525081565b6001600160a01b038116611a8a576040805162461bcd60e51b815260206004820152601660248201527543616e6e6f74206265207a65726f206164647265737360501b604482015290519081900360640190fd5b600560009054906101000a90046001600160a01b03166001600160a01b031663094b74156040518163ffffffff1660e01b815260040160206040518083038186803b158015611ad857600080fd5b505afa158015611aec573d6000803e3d6000fd5b505050506040513d6020811015611b0257600080fd5b50516001600160a01b03163314611b4a5760405162461bcd60e51b815260040180806020018281038252602c815260200180612a8b602c913960400191505060405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610db6338484612513565b6103e881565b600f54600114611bcd576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f55600754600854600b54604080516370a0823160e01b815230600482015290516001600160a01b039485169490931692611c769285928792611c71926001600160701b03169185916370a0823191602480820192602092909190829003018186803b158015611c3f57600080fd5b505afa158015611c53573d6000803e3d6000fd5b505050506040513d6020811015611c6957600080fd5b50519061229f565b6120a2565b611cea8184611c71600b600e9054906101000a90046001600160701b03166001600160701b0316856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611c3f57600080fd5b50506001600f5550565b6005546001600160a01b031681565b6008546001600160a01b031681565b42841015611d5d576040805162461bcd60e51b8152602060048201526013602482015272149959195b5c1d1a5bdb8e8811561412549151606a1b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015611e78573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811615801590611eae5750886001600160a01b0316816001600160a01b0316145b611eff576040805162461bcd60e51b815260206004820152601d60248201527f526564656d7074696f6e3a20494e56414c49445f5349474e4154555245000000604482015290519081900360640190fd5b611f0a8989896124b1565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600a5481565b600181565b600f54600114611f8b576040805162461bcd60e51b8152602060048201526014602482015273149959195b5c1d1a5bdb958c8e881313d0d2d15160621b604482015290519081900360640190fd5b6000600f55600754604080516370a0823160e01b8152306004820152905161209b926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611fdc57600080fd5b505afa158015611ff0573d6000803e3d6000fd5b505050506040513d602081101561200657600080fd5b5051600854604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561205357600080fd5b505afa158015612067573d6000803e3d6000fd5b505050506040513d602081101561207d57600080fd5b5051600b546001600160701b0380821691600160701b9004166122ef565b6001600f55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b6020831061214f5780518252601f199092019160209182019101612130565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146121b1576040519150601f19603f3d011682016040523d82523d6000602084013e6121b6565b606091505b50915091508180156121e45750805115806121e457508080602001905160208110156121e157600080fd5b50515b612235576040805162461bcd60e51b815260206004820152601d60248201527f526564656d7074696f6e56323a205452414e534645525f4641494c4544000000604482015290519081900360640190fd5b5050505050565b60008115806122575750508082028282828161225457fe5b04145b610dba576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610dba576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b03841180159061230d57506001600160701b038311155b612357576040805162461bcd60e51b8152602060048201526016602482015275526564656d7074696f6e56323a204f564552464c4f5760501b604482015290519081900360640190fd5b600b5463ffffffff42811691600160e01b9004811682039081161580159061238757506001600160701b03841615155b801561239b57506001600160701b03831615155b15612406578063ffffffff166123c3856123b486612887565b6001600160e01b031690612899565b600c80546001600160e01b03929092169290920201905563ffffffff81166123ee846123b487612887565b600d80546001600160e01b0392909216929092020190555b600b80546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054612536908261229f565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461256590826128be565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b15801561261257600080fd5b505afa158015612626573d6000803e3d6000fd5b505050506040513d602081101561263c57600080fd5b5051600e546001600160a01b0382161580159450919250906126ed5780156126e85760006126796112a16001600160701b0388811690881661223c565b9050600061268683612701565b9050808211156126e55760006126a861269f848461229f565b6000549061223c565b905060006126c1836126bb86603261223c565b906128be565b905060008183816126ce57fe5b04905080156126e1576126e18782612753565b5050505b50505b6126f9565b80156126f9576000600e555b505092915050565b60006003821115612744575080600160028204015b8181101561273e5780915060028182858161272d57fe5b04018161273657fe5b049050612716565b5061274e565b811561274e575060015b919050565b60005461276090826128be565b60009081556001600160a01b03831681526001602052604090205461278590826128be565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106127ec57816127ee565b825b9392505050565b6001600160a01b038216600090815260016020526040902054612818908261229f565b6001600160a01b0383166000908152600160205260408120919091555461283f908261229f565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b038416816128b657fe5b049392505050565b80820182811015610dba576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe526564656d7074696f6e56323a20494e53554646494349454e545f4c4951554944495459526564656d7074696f6e5632506169723a20636f6e74726f6c6c65724665655368617265206d7573746e27742065786365656420746865206d696e696d756d526564656d7074696f6e5632506169723a20636f6e74726f6c6c65724665655368617265206d7573746e27742065786365656420746865206d6178696d756d526564656d7074696f6e56323a20494e53554646494349454e545f4c49515549444954595f4d494e544544526564656d7074696f6e56323a20494e53554646494349454e545f4f55545055545f414d4f554e54526564656d7074696f6e5632506169723a20666565416d6f756e74206d7573746e27742065786365656420746865206d696e696d756d526564656d7074696f6e56323a20494e53554646494349454e545f494e5055545f414d4f554e54526564656d7074696f6e56323a20494e53554646494349454e545f4c49515549444954595f4255524e4544526564656d7074696f6e5632506169723a206f6e6c7920666163746f7279277320666565546f536574746572526564656d7074696f6e5632506169723a20666565416d6f756e74206d7573746e27742065786365656420746865206d6178696d756da264697066735822122025a7fc8486065ac46dcfc47671952a6b204472f508a638e8ab753e9046bb142c64736f6c634300060c0033a2646970667358221220fcd1c27e1b442157e3d80130dc275c00085ef8a721c63a01afb85c51cb8efd8864736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002a2abed06ea2f6d1b1f08ae465ed64ec4ce85422
-----Decoded View---------------
Arg [0] : _feeToSetter (address): 0x2A2aBeD06EA2F6D1B1F08Ae465eD64ec4Ce85422
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002a2abed06ea2f6d1b1f08ae465ed64ec4ce85422
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.