false
false
0

Contract Address Details

0x7b5dE9f31709B8F2809411A6371Fe83935655282

Contract Name
Migration
Creator
0xc7d98c–7f3521 at 0xdf055c–1104f6
Balance
0 CLO
Tokens
Fetching tokens...
Transactions
8 Transactions
Transfers
4 Transfers
Gas Used
1,051,228
Last Balance Update
16279712
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
Migration




Optimization enabled
true
Compiler version
v0.8.19+commit.7dd6d404




Optimization runs
200
EVM Version
default




Verified at
2024-09-26T15:32:58.106625Z

Contract source code

// SPDX-License-Identifier: No License (None)
pragma solidity 0.8.19;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 *
 * Source https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-solidity/v2.1.3/contracts/ownership/Ownable.sol
 * This contract is copied here and renamed from the original to avoid clashes in the compiled artifacts
 * when the user imports a zos-lib contract (that transitively causes this contract to be compiled and added to the
 * build/artifacts folder) as well as the vanilla Ownable implementation from an openzeppelin version.
 */
contract Ownable {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @return the address of the owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(),"Not Owner");
        _;
    }

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * @notice Renouncing to ownership will leave the contract without an owner.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0),"Zero address not allowed");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC223 {
    function mint(address _to, uint256 _amount) external;
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    function burnFrom(address sender, uint256 amount) external returns (bool);
    function transfer(address recipient, uint256 amount) external;
    function balanceOf(address account) external view returns (uint256);
}

interface IStacking {
    struct Staker {
        uint256 amount;
        uint256 rewardPerSharePaid;
        uint64 endTime; // Time when staking ends and user may withdraw. After this time user will not receive rewards.
        uint64 index; // Balances indexed
        uint64 bonus;   // percent of bonus applied
        uint32 affiliatePercent; // percent of user's rewards that will be transferred to affiliate, i.e. 5% 
        uint32 noAffiliatePercent; // percent of user's rewards will be paid if no affiliate.
        address affiliate; // address of affiliate
    }
    function staker(address user) external view returns(Staker memory);
}

interface ISlothVesting {
    function allocateTokens(
        address to, // beneficiary of tokens
        uint256 amount // amount of token
    ) external;
}

contract Migration is Ownable {
    address constant public SOY = address(0x9FaE2529863bD691B4A7171bDfCf33C7ebB10a65);
    address constant public CLOE = address(0x1eAa43544dAa399b87EEcFcC6Fa579D5ea4A6187);
    address public slothVesting = address(0xA1D58D570Afebd08Fc13a3983881Ac72a9857954);

    uint256 constant public startMigration = 1706140800; //1706745600;   // timestamp when migration start 1 February 2024 00:00:00 UTC

    bool public isPause;
    uint256 public totalSlothMinted;
    uint256[] public periodEnd = [1706831999,1706918399,1707004799,1707091199,1707177599,1707263999,1707350399,1714521599]; // last period will ends on 30 April 2024 23:59:59 UTC
    uint256[] public soyRatio = [200,400,800,1000,2000,4000,8000,10000];
    uint256[] public cloeRatio = [30,65,130,170,355,710,1415,1765];
    uint256 public totalCLOEMigrated;
    uint256 public totalSOYMigrated;
    
    struct StakeRate {
        uint112 migratedAmount;
        uint112 reservedAmount;
        uint32 rate;
    }

    address[] public stakingContracts = [0x86F7e2ef599690b64f0063b3F978ea6Ae2814f63,0x7d6C70b6561C31935e6B0dd77731FC63D5aC37F2,0x19DcB402162b6937a8ACEac87Ed6c05219c9bEf7,0x31bFf88C6124E1622f81b3Ba7ED219e5d78abd98];
    mapping(address user => StakeRate) public stakingRateReserved;
    uint256 public currentPeriod;

    event Migrate(address user, uint256 soyAmount, uint256 slothAmount);
    event MigrateCLOE(address user, uint256 cloeAmount, uint256 slothAmount);
    event StakingMigrate(address user, uint256 rate, uint256 migratedAmount, uint256 reservedAmount);
    event StakingFixRateMigration(address user, uint256 soyAmount, uint256 slothAmount);
    event SetPeriod(uint256 period, uint256 _periodEnd, uint256 _soyRatio, uint256 _cloeRatio);


    modifier migrationAllowed() {
        require(block.timestamp >= startMigration, "Migration is not started yet");
        require(!isPause, "Migration is paused");
        uint256 lastPeriod = periodEnd.length-1;
        while(periodEnd[currentPeriod] < block.timestamp) {
            require(currentPeriod < lastPeriod, "Migration finished");   // not a last period
            currentPeriod++;
        }
        _;
    }

    function getRates() external view returns(uint256 rateSOY, uint256 rateCLOE) {
        if(block.timestamp < startMigration) return (0,0);
        uint256 current = currentPeriod;
        uint256 lastPeriod = periodEnd.length-1;
        while(periodEnd[current] < block.timestamp) {
            if(current >= lastPeriod) return (0,0);
            current++;
        }
        rateSOY = soyRatio[current];
        rateCLOE = cloeRatio[current];
    }

    function tokenReceived(address _from, uint _value, bytes memory data) external returns(bytes4) {
        require(msg.sender == SOY, "Only SOY");
        if (keccak256(data) == keccak256("stakingFixRateMigration")) 
            stakingFixRateMigration(_from, _value);
        else
            migrate(_from, _value, true);
        return this.tokenReceived.selector;
    }

    function migrateCLOE(uint256 amount) external {
        IERC223(CLOE).burnFrom(msg.sender, amount);
        migrate(msg.sender, amount, false);
    }

    function migrate(address user, uint256 amount, bool isSoy) internal migrationAllowed {
        uint256 slothAmount;
        if(isSoy) {
            slothAmount = amount / soyRatio[currentPeriod];
            totalSOYMigrated += amount;
            emit Migrate(user, amount, slothAmount);
        } else {
            slothAmount = amount / cloeRatio[currentPeriod];
            totalCLOEMigrated += amount;
            emit MigrateCLOE(user, amount, slothAmount); 
        }
        totalSlothMinted += slothAmount;
        transferToVesting(user, slothAmount);       
    }

    function stakingMigrate() external {
        stakingMigrateBehalf(msg.sender);
    }

    function stakingMigrateBatch(address[] calldata users) external {
        uint len = users.length;
        for (uint i; i<len; i++)
            stakingMigrateBehalf(users[i]);
    }

    function stakingMigrateBehalf(address user) public migrationAllowed { 
        require(stakingRateReserved[user].rate == 0, "Already migrated");
        uint256 endMigration = periodEnd[periodEnd.length-1];    // 30 April 2024 23:59:59 UTC
        uint256 migratedAmount;
        uint256 reservedAmount;
        for (uint i; i<4; i++) {
            IStacking.Staker memory s = IStacking(stakingContracts[i]).staker(user);
            if(s.endTime > endMigration || (s.endTime == 0 && i != 0)) migratedAmount += s.amount;  // release time after and of migration and it's not a 30 days staking
            else reservedAmount += s.amount;
        }
        stakingRateReserved[user] = StakeRate(uint112(migratedAmount),uint112(reservedAmount),uint32(soyRatio[currentPeriod]));
        migrate(user, migratedAmount, true);
        emit StakingMigrate(user, soyRatio[currentPeriod], migratedAmount, reservedAmount);
    }

    function stakingFixRateMigration(address user, uint256 amount) internal {
        uint256 reservedAmount = stakingRateReserved[user].reservedAmount;
        if(reservedAmount < amount) {
            uint256 rest = amount - reservedAmount;
            amount = reservedAmount;
            stakingRateReserved[user].reservedAmount = 0;
            IERC223(SOY).transfer(user, rest);
        } else {
            stakingRateReserved[user].reservedAmount = uint112(reservedAmount - amount);
        }
        stakingRateReserved[user].migratedAmount = stakingRateReserved[user].migratedAmount + uint112(amount);
        uint256 slothAmount = amount / stakingRateReserved[user].rate;
        emit StakingFixRateMigration(user, amount, slothAmount); 
        totalSOYMigrated += amount;
        totalSlothMinted += slothAmount;
        transferToVesting(user, slothAmount);       
    }

    function transferToVesting(address user, uint256 amount) internal {
        ISlothVesting(slothVesting).allocateTokens(user, amount);
    }

    function setPause(bool pause) external onlyOwner {
        isPause = pause;
    }
    
    function setSlothVesting(address _slothVesting) external onlyOwner {
        slothVesting = _slothVesting;
    }

    function setPeriod(uint256 period, uint256 _periodEnd, uint256 _soyRatio, uint256 _cloeRatio) external onlyOwner {
        if (period < periodEnd.length) {
            periodEnd[period] = _periodEnd;
            soyRatio[period] = _soyRatio;
            cloeRatio[period] = _cloeRatio;
        } else {
            periodEnd.push(_periodEnd);
            soyRatio.push(_soyRatio);
            cloeRatio.push(_cloeRatio);
        }
        emit SetPeriod(period, _periodEnd, _soyRatio, _cloeRatio);
    }

    function burnSoy() external onlyOwner {
        uint256 value = IERC223(SOY).balanceOf(address(this));
        IERC223(SOY).transfer(0xdEad000000000000000000000000000000000000, value);
    }

    function rescueERC20(address token, address to) external onlyOwner {
        require(token != SOY, "wrong token");
        uint256 value = IERC223(token).balanceOf(address(this));
        IERC223(token).transfer(to, value);
    }
}
        

Contract ABI

[{"type":"event","name":"Migrate","inputs":[{"type":"address","name":"user","internalType":"address","indexed":false},{"type":"uint256","name":"soyAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"slothAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MigrateCLOE","inputs":[{"type":"address","name":"user","internalType":"address","indexed":false},{"type":"uint256","name":"cloeAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"slothAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetPeriod","inputs":[{"type":"uint256","name":"period","internalType":"uint256","indexed":false},{"type":"uint256","name":"_periodEnd","internalType":"uint256","indexed":false},{"type":"uint256","name":"_soyRatio","internalType":"uint256","indexed":false},{"type":"uint256","name":"_cloeRatio","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"StakingFixRateMigration","inputs":[{"type":"address","name":"user","internalType":"address","indexed":false},{"type":"uint256","name":"soyAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"slothAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"StakingMigrate","inputs":[{"type":"address","name":"user","internalType":"address","indexed":false},{"type":"uint256","name":"rate","internalType":"uint256","indexed":false},{"type":"uint256","name":"migratedAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"reservedAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"CLOE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"SOY","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnSoy","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cloeRatio","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"currentPeriod","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"rateSOY","internalType":"uint256"},{"type":"uint256","name":"rateCLOE","internalType":"uint256"}],"name":"getRates","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isOwner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isPause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"migrateCLOE","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"periodEnd","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"rescueERC20","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"address","name":"to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPause","inputs":[{"type":"bool","name":"pause","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPeriod","inputs":[{"type":"uint256","name":"period","internalType":"uint256"},{"type":"uint256","name":"_periodEnd","internalType":"uint256"},{"type":"uint256","name":"_soyRatio","internalType":"uint256"},{"type":"uint256","name":"_cloeRatio","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSlothVesting","inputs":[{"type":"address","name":"_slothVesting","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"slothVesting","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"soyRatio","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"stakingContracts","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakingMigrate","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakingMigrateBatch","inputs":[{"type":"address[]","name":"users","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakingMigrateBehalf","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint112","name":"migratedAmount","internalType":"uint112"},{"type":"uint112","name":"reservedAmount","internalType":"uint112"},{"type":"uint32","name":"rate","internalType":"uint32"}],"name":"stakingRateReserved","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"startMigration","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bytes4","name":"","internalType":"bytes4"}],"name":"tokenReceived","inputs":[{"type":"address","name":"_from","internalType":"address"},{"type":"uint256","name":"_value","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalCLOEMigrated","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSOYMigrated","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSlothMinted","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
              

Contract Creation Code

Verify & Publish
0x600180546001600160a01b03191673a1d58d570afebd08fc13a3983881ac72a98579541790556101806040526365bc307f60809081526365bd81ff60a0526365bed37f60c0526365c024ff60e0526365c1767f610100526365c2c7ff610120526365c4197f6101405263663185ff610160526200008190600390600862000208565b50604080516101008101825260c881526101906020820152610320918101919091526103e860608201526107d06080820152610fa060a0820152611f4060c082015261271060e0820152620000db90600490600862000260565b506040805161010081018252601e81526041602082015260829181019190915260aa606082015261016360808201526102c660a082015261058760c08201526106e560e08201526200013290600590600862000260565b50604080516080810182527386f7e2ef599690b64f0063b3f978ea6ae2814f638152737d6c70b6561c31935e6b0dd77731fc63d5ac37f260208201527319dcb402162b6937a8aceac87ed6c05219c9bef7918101919091527331bff88c6124e1622f81b3ba7ed219e5d78abd986060820152620001b4906008906004620002a4565b50348015620001c257600080fd5b50600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362000313565b8280548282559060005260206000209081019282156200024e579160200282015b828111156200024e578251829063ffffffff1690559160200191906001019062000229565b506200025c929150620002fc565b5090565b8280548282559060005260206000209081019282156200024e579160200282015b828111156200024e578251829061ffff1690559160200191906001019062000281565b8280548282559060005260206000209081019282156200024e579160200282015b828111156200024e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002c5565b5b808211156200025c5760008155600101620002fd565b611ae580620003236000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063bedb86fb116100a2578063d8f29cb511610071578063d8f29cb5146103c8578063e79b9e21146103db578063f2fde38b1461044b578063ff0938a71461045e57600080fd5b8063bedb86fb14610386578063bf3c35c314610399578063c778e192146103ac578063d8d8a0d7146103bf57600080fd5b80638da5cb5b116100de5780638da5cb5b1461031e5780638f32d59b1461032f5780639accab551461034e578063be9e2c9a1461036b57600080fd5b8063715018a6146102e257806384daaf54146102ea5780638943ec02146102f257600080fd5b806318264f331161017157806331b2e6c41161014b57806331b2e6c4146102985780635d799f87146102ab5780635eb325eb146102be5780637028768f146102d957600080fd5b806318264f331461027157806327614ec41461027c5780632da49d161461028f57600080fd5b80630a352b99116101ad5780630a352b99146102255780631109b19a146102385780631167186e1461024b57806317aeb5f71461025e57600080fd5b806302731019146101d4578063038ad000146101de578063060406181461020e575b600080fd5b6101dc610472565b005b6001546101f1906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b610217600a5481565b604051908152602001610205565b610217610233366004611659565b610591565b6101f1610246366004611659565b6105b2565b610217610259366004611659565b6105dc565b6101dc61026c366004611672565b6105ec565b6102176365b1a48081565b61021761028a366004611659565b610769565b61021760065481565b6101dc6102a63660046116a4565b610779565b6101dc6102b936600461172e565b6107c7565b6101f1731eaa43544daa399b87eecfcc6fa579d5ea4a618781565b61021760025481565b6101dc610922565b6101dc610996565b6103056103003660046117ae565b6109a1565b6040516001600160e01b03199091168152602001610205565b6000546001600160a01b03166101f1565b6000546001600160a01b031633145b6040519015158152602001610205565b610356610a49565b60408051928352602083019190915201610205565b6101f1739fae2529863bd691b4a7171bdfcf33c7ebb10a6581565b6101dc61039436600461186d565b610b09565b6101dc6103a7366004611659565b610b51565b6101dc6103ba366004611891565b610bdd565b61021760075481565b6101dc6103d6366004611891565b610ffa565b61041f6103e9366004611891565b6009602052600090815260409020546001600160701b0380821691600160701b810490911690600160e01b900463ffffffff1683565b604080516001600160701b03948516815293909216602084015263ffffffff1690820152606001610205565b6101dc610459366004611891565b611046565b60015461033e90600160a01b900460ff1681565b6000546001600160a01b031633146104a55760405162461bcd60e51b815260040161049c906118ae565b60405180910390fd5b6040516370a0823160e01b8152306004820152600090739fae2529863bd691b4a7171bdfcf33c7ebb10a65906370a0823190602401602060405180830381865afa1580156104f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051b91906118d1565b60405163a9059cbb60e01b815261dead60901b600482015260248101829052909150739fae2529863bd691b4a7171bdfcf33c7ebb10a659063a9059cbb90604401600060405180830381600087803b15801561057657600080fd5b505af115801561058a573d6000803e3d6000fd5b5050505050565b600481815481106105a157600080fd5b600091825260209091200154905081565b600881815481106105c257600080fd5b6000918252602090912001546001600160a01b0316905081565b600581815481106105a157600080fd5b6000546001600160a01b031633146106165760405162461bcd60e51b815260040161049c906118ae565b600354841015610689578260038581548110610634576106346118ea565b90600052602060002001819055508160048581548110610656576106566118ea565b90600052602060002001819055508060058581548110610678576106786118ea565b60009182526020909120015561071b565b6003805460018181019092557fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b01849055600480548083019091557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b018390556005805491820181556000527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0018190555b6040805185815260208101859052908101839052606081018290527f132ea6b97a4eea2a5d619f7617dd4282377e3c165fa1f801fc5e26bb977519999060800160405180910390a150505050565b600381815481106105a157600080fd5b8060005b818110156107c1576107af84848381811061079a5761079a6118ea565b90506020020160208101906103ba9190611891565b806107b981611916565b91505061077d565b50505050565b6000546001600160a01b031633146107f15760405162461bcd60e51b815260040161049c906118ae565b739fae2529863bd691b4a7171bdfcf33c7ebb10a64196001600160a01b0383160161084c5760405162461bcd60e51b815260206004820152600b60248201526a3bb937b733903a37b5b2b760a91b604482015260640161049c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b791906118d1565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401600060405180830381600087803b15801561090557600080fd5b505af1158015610919573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b0316331461094c5760405162461bcd60e51b815260040161049c906118ae565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61099f33610bdd565b565b600033739fae2529863bd691b4a7171bdfcf33c7ebb10a65146109f15760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920534f5960c01b604482015260640161049c565b815160208301207fd62bf507207cbfed0be58152d90527386cb09b87448f61308aa066342be1f0f401610a2d57610a288484611079565b610a39565b610a39848460016112b2565b506344a1f60160e11b9392505050565b6000806365b1a480421015610a615750600091829150565b600a54600354600090610a769060019061192f565b90505b4260038381548110610a8d57610a8d6118ea565b90600052602060002001541015610ac357808210610ab15750600093849350915050565b81610abb81611916565b925050610a79565b60048281548110610ad657610ad66118ea565b9060005260206000200154935060058281548110610af657610af66118ea565b9060005260206000200154925050509091565b6000546001600160a01b03163314610b335760405162461bcd60e51b815260040161049c906118ae565b60018054911515600160a01b0260ff60a01b19909216919091179055565b60405163079cc67960e41b815233600482015260248101829052731eaa43544daa399b87eecfcc6fa579d5ea4a6187906379cc6790906044016020604051808303816000875af1158015610ba9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcd9190611948565b50610bda338260006112b2565b50565b6365b1a480421015610c315760405162461bcd60e51b815260206004820152601c60248201527f4d6967726174696f6e206973206e6f7420737461727465642079657400000000604482015260640161049c565b600154600160a01b900460ff1615610c815760405162461bcd60e51b8152602060048201526013602482015272135a59dc985d1a5bdb881a5cc81c185d5cd959606a1b604482015260640161049c565b600354600090610c939060019061192f565b90505b426003600a5481548110610cac57610cac6118ea565b90600052602060002001541015610d1d5780600a5410610d035760405162461bcd60e51b8152602060048201526012602482015271135a59dc985d1a5bdb88199a5b9a5cda195960721b604482015260640161049c565b600a8054906000610d1383611916565b9190505550610c96565b6001600160a01b038216600090815260096020526040902054600160e01b900463ffffffff1615610d835760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b5a59dc985d195960821b604482015260640161049c565b6003805460009190610d979060019061192f565b81548110610da757610da76118ea565b9060005260206000200154905060008060005b6004811015610ebe57600060088281548110610dd857610dd86118ea565b6000918252602090912001546040516320b93b6960e21b81526001600160a01b038981166004830152909116906382e4eda49060240161010060405180830381865afa158015610e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e509190611996565b905084816040015167ffffffffffffffff161180610e845750604081015167ffffffffffffffff16158015610e8457508115155b15610e9c578051610e959085611a53565b9350610eab565b8051610ea89084611a53565b92505b5080610eb681611916565b915050610dba565b506040518060600160405280836001600160701b03168152602001826001600160701b031681526020016004600a5481548110610efd57610efd6118ea565b600091825260208083209091015463ffffffff9081169093526001600160a01b03891682526009815260409182902084518154928601519590930151909316600160e01b026001600160e01b036001600160701b03958616600160701b026001600160e01b031990931695909316949094171716919091179055610f83858360016112b2565b7f17bd98d373ca29f15c4088751e90d4b6ab74d72e75b677238ac452c8ab20dbe3856004600a5481548110610fba57610fba6118ea565b60009182526020918290200154604080516001600160a01b0390941684529183015281018490526060810183905260800160405180910390a15050505050565b6000546001600160a01b031633146110245760405162461bcd60e51b815260040161049c906118ae565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110705760405162461bcd60e51b815260040161049c906118ae565b610bda8161153e565b6001600160a01b038216600090815260096020526040902054600160701b90046001600160701b03168181101561115a5760006110b6828461192f565b6001600160a01b038516600081815260096020526040908190208054600160701b600160e01b03191690555163a9059cbb60e01b81526004810191909152602481018290529293508392909150739fae2529863bd691b4a7171bdfcf33c7ebb10a659063a9059cbb90604401600060405180830381600087803b15801561113c57600080fd5b505af1158015611150573d6000803e3d6000fd5b50505050506111a6565b611164828261192f565b6001600160a01b038416600090815260096020526040902080546001600160701b0392909216600160701b02600160701b600160e01b03199092169190911790555b6001600160a01b0383166000908152600960205260409020546111d39083906001600160701b0316611a66565b6001600160a01b038416600090815260096020526040812080546dffffffffffffffffffffffffffff19166001600160701b039390931692909217918290559061122a90600160e01b900463ffffffff1684611a8d565b604080516001600160a01b0387168152602081018690529081018290529091507f69ad942cd0be186fc035367df354cdda64c5048503ac199f931f2def922b3d3e9060600160405180910390a182600760008282546112899190611a53565b9250508190555080600260008282546112a29190611a53565b909155506107c1905084826115ef565b6365b1a4804210156113065760405162461bcd60e51b815260206004820152601c60248201527f4d6967726174696f6e206973206e6f7420737461727465642079657400000000604482015260640161049c565b600154600160a01b900460ff16156113565760405162461bcd60e51b8152602060048201526013602482015272135a59dc985d1a5bdb881a5cc81c185d5cd959606a1b604482015260640161049c565b6003546000906113689060019061192f565b90505b426003600a5481548110611381576113816118ea565b906000526020600020015410156113f25780600a54106113d85760405162461bcd60e51b8152602060048201526012602482015271135a59dc985d1a5bdb88199a5b9a5cda195960721b604482015260640161049c565b600a80549060006113e883611916565b919050555061136b565b6000821561148d576004600a548154811061140f5761140f6118ea565b9060005260206000200154846114259190611a8d565b905083600760008282546114399190611a53565b9091555050604080516001600160a01b0387168152602081018690529081018290527fd44a6dd2bfac4f6bc02d116d96aa12c24e8580626b95cb6a2f543f18cb61bd4c9060600160405180910390a161151c565b6005600a54815481106114a2576114a26118ea565b9060005260206000200154846114b89190611a8d565b905083600660008282546114cc9190611a53565b9091555050604080516001600160a01b0387168152602081018690529081018290527f360e9013a4321fcce6c9385c1811b27dedd609caddbba8e813e7e5c1d4a6507b9060600160405180910390a15b806002600082825461152e9190611a53565b9091555061058a905085826115ef565b6001600160a01b0381166115945760405162461bcd60e51b815260206004820152601860248201527f5a65726f2061646472657373206e6f7420616c6c6f7765640000000000000000604482015260640161049c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001546040516386ce028560e01b81526001600160a01b03848116600483015260248201849052909116906386ce028590604401600060405180830381600087803b15801561163d57600080fd5b505af1158015611651573d6000803e3d6000fd5b505050505050565b60006020828403121561166b57600080fd5b5035919050565b6000806000806080858703121561168857600080fd5b5050823594602084013594506040840135936060013592509050565b600080602083850312156116b757600080fd5b823567ffffffffffffffff808211156116cf57600080fd5b818501915085601f8301126116e357600080fd5b8135818111156116f257600080fd5b8660208260051b850101111561170757600080fd5b60209290920196919550909350505050565b6001600160a01b0381168114610bda57600080fd5b6000806040838503121561174157600080fd5b823561174c81611719565b9150602083013561175c81611719565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117a6576117a6611767565b604052919050565b6000806000606084860312156117c357600080fd5b83356117ce81611719565b92506020848101359250604085013567ffffffffffffffff808211156117f357600080fd5b818701915087601f83011261180757600080fd5b81358181111561181957611819611767565b61182b601f8201601f1916850161177d565b9150808252888482850101111561184157600080fd5b80848401858401376000848284010152508093505050509250925092565b8015158114610bda57600080fd5b60006020828403121561187f57600080fd5b813561188a8161185f565b9392505050565b6000602082840312156118a357600080fd5b813561188a81611719565b6020808252600990820152682737ba1027bbb732b960b91b604082015260600190565b6000602082840312156118e357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161192857611928611900565b5060010190565b8181038181111561194257611942611900565b92915050565b60006020828403121561195a57600080fd5b815161188a8161185f565b805167ffffffffffffffff8116811461197d57600080fd5b919050565b805163ffffffff8116811461197d57600080fd5b60006101008083850312156119aa57600080fd5b6040519081019067ffffffffffffffff821181831017156119cd576119cd611767565b8160405283518152602084015160208201526119eb60408501611965565b60408201526119fc60608501611965565b6060820152611a0d60808501611965565b6080820152611a1e60a08501611982565b60a0820152611a2f60c08501611982565b60c082015260e08401519150611a4482611719565b60e08101919091529392505050565b8082018082111561194257611942611900565b6001600160701b03818116838216019080821115611a8657611a86611900565b5092915050565b600082611aaa57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220bfe6ec5adb9f85e4887e0ecfa02ac90ce96705b577bc83cd234aeaf9330bd5b864736f6c63430008130033

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063715018a611610104578063bedb86fb116100a2578063d8f29cb511610071578063d8f29cb5146103c8578063e79b9e21146103db578063f2fde38b1461044b578063ff0938a71461045e57600080fd5b8063bedb86fb14610386578063bf3c35c314610399578063c778e192146103ac578063d8d8a0d7146103bf57600080fd5b80638da5cb5b116100de5780638da5cb5b1461031e5780638f32d59b1461032f5780639accab551461034e578063be9e2c9a1461036b57600080fd5b8063715018a6146102e257806384daaf54146102ea5780638943ec02146102f257600080fd5b806318264f331161017157806331b2e6c41161014b57806331b2e6c4146102985780635d799f87146102ab5780635eb325eb146102be5780637028768f146102d957600080fd5b806318264f331461027157806327614ec41461027c5780632da49d161461028f57600080fd5b80630a352b99116101ad5780630a352b99146102255780631109b19a146102385780631167186e1461024b57806317aeb5f71461025e57600080fd5b806302731019146101d4578063038ad000146101de578063060406181461020e575b600080fd5b6101dc610472565b005b6001546101f1906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b610217600a5481565b604051908152602001610205565b610217610233366004611659565b610591565b6101f1610246366004611659565b6105b2565b610217610259366004611659565b6105dc565b6101dc61026c366004611672565b6105ec565b6102176365b1a48081565b61021761028a366004611659565b610769565b61021760065481565b6101dc6102a63660046116a4565b610779565b6101dc6102b936600461172e565b6107c7565b6101f1731eaa43544daa399b87eecfcc6fa579d5ea4a618781565b61021760025481565b6101dc610922565b6101dc610996565b6103056103003660046117ae565b6109a1565b6040516001600160e01b03199091168152602001610205565b6000546001600160a01b03166101f1565b6000546001600160a01b031633145b6040519015158152602001610205565b610356610a49565b60408051928352602083019190915201610205565b6101f1739fae2529863bd691b4a7171bdfcf33c7ebb10a6581565b6101dc61039436600461186d565b610b09565b6101dc6103a7366004611659565b610b51565b6101dc6103ba366004611891565b610bdd565b61021760075481565b6101dc6103d6366004611891565b610ffa565b61041f6103e9366004611891565b6009602052600090815260409020546001600160701b0380821691600160701b810490911690600160e01b900463ffffffff1683565b604080516001600160701b03948516815293909216602084015263ffffffff1690820152606001610205565b6101dc610459366004611891565b611046565b60015461033e90600160a01b900460ff1681565b6000546001600160a01b031633146104a55760405162461bcd60e51b815260040161049c906118ae565b60405180910390fd5b6040516370a0823160e01b8152306004820152600090739fae2529863bd691b4a7171bdfcf33c7ebb10a65906370a0823190602401602060405180830381865afa1580156104f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051b91906118d1565b60405163a9059cbb60e01b815261dead60901b600482015260248101829052909150739fae2529863bd691b4a7171bdfcf33c7ebb10a659063a9059cbb90604401600060405180830381600087803b15801561057657600080fd5b505af115801561058a573d6000803e3d6000fd5b5050505050565b600481815481106105a157600080fd5b600091825260209091200154905081565b600881815481106105c257600080fd5b6000918252602090912001546001600160a01b0316905081565b600581815481106105a157600080fd5b6000546001600160a01b031633146106165760405162461bcd60e51b815260040161049c906118ae565b600354841015610689578260038581548110610634576106346118ea565b90600052602060002001819055508160048581548110610656576106566118ea565b90600052602060002001819055508060058581548110610678576106786118ea565b60009182526020909120015561071b565b6003805460018181019092557fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b01849055600480548083019091557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b018390556005805491820181556000527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0018190555b6040805185815260208101859052908101839052606081018290527f132ea6b97a4eea2a5d619f7617dd4282377e3c165fa1f801fc5e26bb977519999060800160405180910390a150505050565b600381815481106105a157600080fd5b8060005b818110156107c1576107af84848381811061079a5761079a6118ea565b90506020020160208101906103ba9190611891565b806107b981611916565b91505061077d565b50505050565b6000546001600160a01b031633146107f15760405162461bcd60e51b815260040161049c906118ae565b739fae2529863bd691b4a7171bdfcf33c7ebb10a64196001600160a01b0383160161084c5760405162461bcd60e51b815260206004820152600b60248201526a3bb937b733903a37b5b2b760a91b604482015260640161049c565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610893573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b791906118d1565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401600060405180830381600087803b15801561090557600080fd5b505af1158015610919573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b0316331461094c5760405162461bcd60e51b815260040161049c906118ae565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61099f33610bdd565b565b600033739fae2529863bd691b4a7171bdfcf33c7ebb10a65146109f15760405162461bcd60e51b81526020600482015260086024820152674f6e6c7920534f5960c01b604482015260640161049c565b815160208301207fd62bf507207cbfed0be58152d90527386cb09b87448f61308aa066342be1f0f401610a2d57610a288484611079565b610a39565b610a39848460016112b2565b506344a1f60160e11b9392505050565b6000806365b1a480421015610a615750600091829150565b600a54600354600090610a769060019061192f565b90505b4260038381548110610a8d57610a8d6118ea565b90600052602060002001541015610ac357808210610ab15750600093849350915050565b81610abb81611916565b925050610a79565b60048281548110610ad657610ad66118ea565b9060005260206000200154935060058281548110610af657610af66118ea565b9060005260206000200154925050509091565b6000546001600160a01b03163314610b335760405162461bcd60e51b815260040161049c906118ae565b60018054911515600160a01b0260ff60a01b19909216919091179055565b60405163079cc67960e41b815233600482015260248101829052731eaa43544daa399b87eecfcc6fa579d5ea4a6187906379cc6790906044016020604051808303816000875af1158015610ba9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcd9190611948565b50610bda338260006112b2565b50565b6365b1a480421015610c315760405162461bcd60e51b815260206004820152601c60248201527f4d6967726174696f6e206973206e6f7420737461727465642079657400000000604482015260640161049c565b600154600160a01b900460ff1615610c815760405162461bcd60e51b8152602060048201526013602482015272135a59dc985d1a5bdb881a5cc81c185d5cd959606a1b604482015260640161049c565b600354600090610c939060019061192f565b90505b426003600a5481548110610cac57610cac6118ea565b90600052602060002001541015610d1d5780600a5410610d035760405162461bcd60e51b8152602060048201526012602482015271135a59dc985d1a5bdb88199a5b9a5cda195960721b604482015260640161049c565b600a8054906000610d1383611916565b9190505550610c96565b6001600160a01b038216600090815260096020526040902054600160e01b900463ffffffff1615610d835760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b5a59dc985d195960821b604482015260640161049c565b6003805460009190610d979060019061192f565b81548110610da757610da76118ea565b9060005260206000200154905060008060005b6004811015610ebe57600060088281548110610dd857610dd86118ea565b6000918252602090912001546040516320b93b6960e21b81526001600160a01b038981166004830152909116906382e4eda49060240161010060405180830381865afa158015610e2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e509190611996565b905084816040015167ffffffffffffffff161180610e845750604081015167ffffffffffffffff16158015610e8457508115155b15610e9c578051610e959085611a53565b9350610eab565b8051610ea89084611a53565b92505b5080610eb681611916565b915050610dba565b506040518060600160405280836001600160701b03168152602001826001600160701b031681526020016004600a5481548110610efd57610efd6118ea565b600091825260208083209091015463ffffffff9081169093526001600160a01b03891682526009815260409182902084518154928601519590930151909316600160e01b026001600160e01b036001600160701b03958616600160701b026001600160e01b031990931695909316949094171716919091179055610f83858360016112b2565b7f17bd98d373ca29f15c4088751e90d4b6ab74d72e75b677238ac452c8ab20dbe3856004600a5481548110610fba57610fba6118ea565b60009182526020918290200154604080516001600160a01b0390941684529183015281018490526060810183905260800160405180910390a15050505050565b6000546001600160a01b031633146110245760405162461bcd60e51b815260040161049c906118ae565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110705760405162461bcd60e51b815260040161049c906118ae565b610bda8161153e565b6001600160a01b038216600090815260096020526040902054600160701b90046001600160701b03168181101561115a5760006110b6828461192f565b6001600160a01b038516600081815260096020526040908190208054600160701b600160e01b03191690555163a9059cbb60e01b81526004810191909152602481018290529293508392909150739fae2529863bd691b4a7171bdfcf33c7ebb10a659063a9059cbb90604401600060405180830381600087803b15801561113c57600080fd5b505af1158015611150573d6000803e3d6000fd5b50505050506111a6565b611164828261192f565b6001600160a01b038416600090815260096020526040902080546001600160701b0392909216600160701b02600160701b600160e01b03199092169190911790555b6001600160a01b0383166000908152600960205260409020546111d39083906001600160701b0316611a66565b6001600160a01b038416600090815260096020526040812080546dffffffffffffffffffffffffffff19166001600160701b039390931692909217918290559061122a90600160e01b900463ffffffff1684611a8d565b604080516001600160a01b0387168152602081018690529081018290529091507f69ad942cd0be186fc035367df354cdda64c5048503ac199f931f2def922b3d3e9060600160405180910390a182600760008282546112899190611a53565b9250508190555080600260008282546112a29190611a53565b909155506107c1905084826115ef565b6365b1a4804210156113065760405162461bcd60e51b815260206004820152601c60248201527f4d6967726174696f6e206973206e6f7420737461727465642079657400000000604482015260640161049c565b600154600160a01b900460ff16156113565760405162461bcd60e51b8152602060048201526013602482015272135a59dc985d1a5bdb881a5cc81c185d5cd959606a1b604482015260640161049c565b6003546000906113689060019061192f565b90505b426003600a5481548110611381576113816118ea565b906000526020600020015410156113f25780600a54106113d85760405162461bcd60e51b8152602060048201526012602482015271135a59dc985d1a5bdb88199a5b9a5cda195960721b604482015260640161049c565b600a80549060006113e883611916565b919050555061136b565b6000821561148d576004600a548154811061140f5761140f6118ea565b9060005260206000200154846114259190611a8d565b905083600760008282546114399190611a53565b9091555050604080516001600160a01b0387168152602081018690529081018290527fd44a6dd2bfac4f6bc02d116d96aa12c24e8580626b95cb6a2f543f18cb61bd4c9060600160405180910390a161151c565b6005600a54815481106114a2576114a26118ea565b9060005260206000200154846114b89190611a8d565b905083600660008282546114cc9190611a53565b9091555050604080516001600160a01b0387168152602081018690529081018290527f360e9013a4321fcce6c9385c1811b27dedd609caddbba8e813e7e5c1d4a6507b9060600160405180910390a15b806002600082825461152e9190611a53565b9091555061058a905085826115ef565b6001600160a01b0381166115945760405162461bcd60e51b815260206004820152601860248201527f5a65726f2061646472657373206e6f7420616c6c6f7765640000000000000000604482015260640161049c565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001546040516386ce028560e01b81526001600160a01b03848116600483015260248201849052909116906386ce028590604401600060405180830381600087803b15801561163d57600080fd5b505af1158015611651573d6000803e3d6000fd5b505050505050565b60006020828403121561166b57600080fd5b5035919050565b6000806000806080858703121561168857600080fd5b5050823594602084013594506040840135936060013592509050565b600080602083850312156116b757600080fd5b823567ffffffffffffffff808211156116cf57600080fd5b818501915085601f8301126116e357600080fd5b8135818111156116f257600080fd5b8660208260051b850101111561170757600080fd5b60209290920196919550909350505050565b6001600160a01b0381168114610bda57600080fd5b6000806040838503121561174157600080fd5b823561174c81611719565b9150602083013561175c81611719565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117a6576117a6611767565b604052919050565b6000806000606084860312156117c357600080fd5b83356117ce81611719565b92506020848101359250604085013567ffffffffffffffff808211156117f357600080fd5b818701915087601f83011261180757600080fd5b81358181111561181957611819611767565b61182b601f8201601f1916850161177d565b9150808252888482850101111561184157600080fd5b80848401858401376000848284010152508093505050509250925092565b8015158114610bda57600080fd5b60006020828403121561187f57600080fd5b813561188a8161185f565b9392505050565b6000602082840312156118a357600080fd5b813561188a81611719565b6020808252600990820152682737ba1027bbb732b960b91b604082015260600190565b6000602082840312156118e357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161192857611928611900565b5060010190565b8181038181111561194257611942611900565b92915050565b60006020828403121561195a57600080fd5b815161188a8161185f565b805167ffffffffffffffff8116811461197d57600080fd5b919050565b805163ffffffff8116811461197d57600080fd5b60006101008083850312156119aa57600080fd5b6040519081019067ffffffffffffffff821181831017156119cd576119cd611767565b8160405283518152602084015160208201526119eb60408501611965565b60408201526119fc60608501611965565b6060820152611a0d60808501611965565b6080820152611a1e60a08501611982565b60a0820152611a2f60c08501611982565b60c082015260e08401519150611a4482611719565b60e08101919091529392505050565b8082018082111561194257611942611900565b6001600160701b03818116838216019080821115611a8657611a86611900565b5092915050565b600082611aaa57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220bfe6ec5adb9f85e4887e0ecfa02ac90ce96705b577bc83cd234aeaf9330bd5b864736f6c63430008130033