
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="robots" content="noindex, nofollow">
<meta property="og:title" content=""/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="https://.co.cc"/>
<meta property="og:description" content=""/>
<meta property="og:image" content=""/>
<meta property="og:image:width" content="350"/>
<meta property="og:image:height" content="567"/>

<meta name="twitter:card" content="summary"/> 
<meta name="twitter:url" content="https://.co.cc"/> 
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
<meta name="twitter:image" content=""/>

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">

<style>
  /*

All grid code is placed in a 'supports' rule (feature query) at the bottom of the CSS (Line 310). 
        
The 'supports' rule will only run if your browser supports CSS grid.

Flexbox and floats are used as a fallback so that browsers which don't support grid will still recieve a similar layout.

*/

/* Base Styles */

:root {
    font-size: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    min-height: 100vh;
    background-color: #fafafa;
    color: #262626;
    padding-bottom: 3rem;
}


.container {
    max-width: 93.5rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    font: inherit;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    cursor: pointer;
}

.btn:focus {
    outline: 0.5rem auto #4d90fe;
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

/* Profile Section */

.profile {
    padding: 5rem 0;
}

.profile::after {
    content: "";
    display: block;
    clear: both;
}

.profile-image {
    float: left;
    width: calc(33.333% - 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 3rem;
}

.profile-image img {
    border-radius: 50%;
}

.profile-user-settings,
.profile-stats,
.profile-bio {
    float: left;
    width: calc(66.666% - 2rem);
}

.profile-user-settings {
    margin-top: 1.1rem;
}

.profile-user-name {
    display: inline-block;
    font-size: 3.2rem;
    font-weight: 300;
}

.profile-edit-btn {
    font-size: 1.4rem;
    line-height: 1.8;
    border: 0.1rem solid #1965a9;
    border-radius: 0.5rem;
    padding: 0 2.4rem;
    margin-left: 2rem;
    background-color:#1965a9;
    color:#fff;
}

.profile-settings-btn {
    font-size: 2rem;
    margin-left: 1rem;
}

.profile-stats {
    margin-top: 2.3rem;
}

.profile-stats li {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-right: 4rem;
    cursor: pointer;
}

.profile-stats li:last-of-type {
    margin-right: 0;
}

.profile-bio {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 2.3rem;
}

.profile-real-name,
.profile-stat-count,
.profile-edit-btn {
    font-weight: 600;
}

/* Gallery Section */

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem -1rem;
    padding-bottom: 3rem;
}

.gallery-item {
    position: relative;
    flex: 1 0 22rem;
    margin: 1rem;
    color: #fff;
    cursor: pointer;
}

.gallery-item:hover .gallery-item-info,
.gallery-item:focus .gallery-item-info {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.gallery-item-info {
    display: none;
}

.gallery-item-info li {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 600;
}

.gallery-item-likes {
        text-align:center;
}


.target-link-pos
{
        text-align:center;
        margin-top:85px;
}

.target-link
{
        color:#ffffff;
        text-decoration: none;
}

.target-link:hover
{
        text-decoration: none;
        color:#ff0000;
}

.gallery-item-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
}

.fa-clone,
.fa-comment {
    transform: rotateY(180deg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loader */

.loader {
    width: 5rem;
    height: 5rem;
    border: 0.6rem solid #999;
    border-bottom-color: transparent;
    border-radius: 50%;
    margin: 0 auto;
    animation: loader 500ms linear infinite;
}

/* Media Query */

@media screen and (max-width: 40rem) {
    .profile {
        display: flex;
        flex-wrap: wrap;
        padding: 4rem 0;
    }

    .profile::after {
        display: none;
    }

    .profile-image,
    .profile-user-settings,
    .profile-bio,
    .profile-stats {
        float: none;
        width: auto;
    }

    .profile-image img {
        width: 7.7rem;
        height: 7.7rem;
    }

    .profile-user-settings {
        flex-basis: calc(100% - 10.7rem);
        display: flex;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .profile-user-name {
        font-size: 2.2rem;
    }

    .profile-edit-btn {
        order: 1;
        padding: 0;
        text-align: center;
        margin-top: 1rem;
    }

    .profile-edit-btn {
        margin-left: 0;
    }

    .profile-bio {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .profile-edit-btn,
    .profile-bio,
    .profile-stats {
        flex-basis: 100%;
    }

    .profile-stats {
        order: 1;
        margin-top: 1.5rem;
    }

    .profile-stats ul {
        display: flex;
        text-align: center;
        padding: 1.2rem 0;
        border-top: 0.1rem solid #dadada;
        border-bottom: 0.1rem solid #dadada;
    }

    .profile-stats li {
        font-size: 1.4rem;
        flex: 1;
        margin: 0;
    }

    .profile-stat-count {
        display: block;
    }
}

/* Spinner Animation */

@keyframes loader {
    to {
        transform: rotate(360deg);
    }
}

/*

The following code will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox & floated styling. 

*/

@supports (display: grid) {
    .profile {
        display: grid;
        grid-template-columns: 1fr 2fr;
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 3rem;
        align-items: center;
    }

    .profile-image {
        grid-row: 1 / -1;
    }

    .gallery {
        display: grid;
        grid-template-columns: repeat(3, minmax(5rem, 1fr));
        grid-gap: 1rem;
    }

    .profile-image,
    .profile-user-settings,
    .profile-stats,
    .profile-bio,
    .gallery-item,
    .gallery {
        width: auto;
        margin: 0;
    }

    @media (max-width: 40rem) {
        .profile {
            grid-template-columns: auto 1fr;
            grid-row-gap: 1.5rem;
        }

        .profile-image {
            grid-row: 1 / 2;
        }

        .profile-user-settings {
            display: grid;
            grid-template-columns: auto 1fr;
            grid-gap: 1rem;
        }

        .profile-edit-btn,
        .profile-stats,
        .profile-bio {
            grid-column: 1 / -1;
        }

        .profile-user-settings,
        .profile-edit-btn,
        .profile-settings-btn,
        .profile-bio,
        .profile-stats {
            margin: 0;
        }
    }
}

.profile a
{
        color:262626;
}

.profile a:link {
        text-decoration: none;
        color:#262626;
}

.profile a:visited {
        text-decoration: none;
        color:#262626;
}

.profile a:hover {
        text-decoration: none;
        color:#262626;
}

.profile a:active {
        text-decoration: none;
        color:#262626;
}

</style>
<script>
window.console = window.console || function(t) {};

if (document.location.search.match(/type=embed/gi)) {
        window.parent.postMessage("resize", "*");
}
</script>
</head>


<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Pacifico" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Montserrat" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" ></script>
<style>
body
{
        background-color:#fafafa;
}

.modal-dialog {
          width: 360px;
        }
.modal-header {
    background-color: #337AB7;
    padding:16px 16px;
    color:#FFF;
    border-bottom:2px dashed #337AB7;
 }

.title
{
        font-family: Montserrat; 
        font-size: 16px; 
        font-style: normal; 
        font-variant: normal; 
        font-weight: 700; 
        color:#808080;
}


.name
{
        font-family: Montserrat; 
        font-size: 16px; 
        font-style: normal; 
        font-variant: normal; 
        font-weight: 700; 
        color:#6f6f6f;
}

.captures
{
        font-family: Montserrat; 
        font-size: 16px; 
        font-style: normal; 
        font-variant: normal; 
        font-weight: 700; 
        color:#6f6f6f;
}

</style>



<body translate="no">

<!-- Static navbar -->
<nav class="navbar navbar-default navbar-fixed-top" style='opacity: 1'>
        <div class="container">
                <div class="navbar-header">
                        <a class="navbar-brand" href='/'><span class='title'><b>Capture and Reward</b></span></a>
                </div>
                <div id="navbar" class="navbar-collapse collapse">
                <!--
                        <ul class="nav navbar-nav navbar-right">
                        <form class="navbar-form navbar-right" method='get' action='/'>
                                <div class="form-group">
                                        <input type="text" name='keyword' value='' placeholder="" class="form-control">
                                </div>
                                <button type="submit" class="btn btn-success"><span class="glyphicon glyphicon-search"></span></button>
                        </form>
                        </ul>
                -->
                </div><!--/.nav-collapse -->
        </div>
</nav>

<header>
        <div class="container">
                <div class="profile" style='margin-top:15px'>
                </div>
        </div>
</header>

<form id='page_form'>
<input type='hidden' id='mp' name='mp' value='1'>
</form>


<main>
        <div class="container" style='margin-top:-25px'>
                <div style='font-size:12pt;font-weight:bold'><span class='captures'>Captures</span></b></div>
                <div class="gallery">
                        <div class="gallery-item" tabindex="0" style='color:#000'>
                                Not found data ...
                        </div>

                </div>

                <div class="loader" style='display:none'></div>
        </div>
</main>



<!-- jQuery library -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://static.codepen.io/assets/common/stopExecutionOnTimeout-de7e2ef6bfefd24b79a3f68b414b87b8db5b08439cac3f1012092b2290c719cd.js"></script>
<script id="rendered-js">
      /*

Full-page view:

https://codepen.io/GeorgePark/full/VXrwOP/

*/

// const posts = document.querySelectorAll('.gallery-item');

// posts.forEach(post => {
// 	post.addEventListener('click', () => {
// 		//Get original image URL
// 		const imgUrl = post.firstElementChild.src.split("?")[0];
// 		//Open image in new tab
// 		window.open(imgUrl, '_blank');
// 	});
// });
      //# sourceURL=pen.js

</script>

<script>

var gallery_list = new Array();

var loading = 0;

for (var i=0;i<1000;++i)
{
        gallery_list[i] = 0;
}


$(window).scroll(function() {   
        if($(window).scrollTop() + $(window).height() > $(document).height() - 200) {
                if (loading) return;
                if (parseInt($('#mp').val()) == -1) return;
                if (parseInt($('#mp').val()) >= 1000) return;

                if (gallery_list[parseInt($('#mp').val())])
                {
                        parseInt($('#mp').val(parseInt($('#mp').val()+1)));
                }
                else
                {
                        $(".loader").show();
                        next_page();
                }
        }
});


function next_page()
{
        loading = 1;
        var formData = $('#page_form').serialize();

         $.ajax({
                type: 'POST',
                url: '/next_page/ajax_next_page_proc.php',
                data:formData,
                success: function(res) {

                        var res_json = $.parseJSON(res);

                        if (res_json.gallery_count)
                        {
                                $(".gallery").append(res_json.gallery);
                        }

                        gallery_list[parseInt($('#mp').val())] = 1;

//                        alert(res_json.mp);

                        $('#mp').val(res_json.mp);

                        loading = 0;
                        $(".loader").hide();
                }
        });
}

function clear_cookie()
{
        var url = '/cookie/cookie_clear.php?1694326807';
        var params='';

        $.ajax({
                type:'GET',  
                url:url,      
                data:params,
                contentType: "charset=utf-8",
                success: function(res) {
                }
        });

}
</script>
</body>
</html>



<script>
function visit_browser_log()
{
        var formData = $('#save_log_form').serialize();
         $.ajax({
                type: 'POST',
                url: '/visit_browser_log.php',
                data:formData,
                success: function(res) {
                }
        });
}

$( document ).ready(function() {
        visit_browser_log()
});
</script>

<script src="/js/bundled.js"></script>
<link rel="stylesheet" type="text/css" href="/css/jquery-confirm.min.css"/>
<script type="text/javascript" src="/js/jquery-confirm.min.js"></script>

<script>

var timerId;
function after_act()
{
        document.location.reload();
}

function refresh_proc()
{
        timerId = setInterval(after_act, 3000);
}

function notice_popup()
{
        $.confirm({
        title: '',
        content: 'Only visible in Cobra Browser. Do you want to go to Cobra Browser?',
        type: 'dark',
        buttons: {
                        ok_button: {
                                text: '&nbsp;&nbsp;&nbsp;&nbsp;OK&nbsp;&nbsp;&nbsp;&nbsp;',
                                action: function(){
                                        location = 'https://share.cobra.cc/?url=https%3A%2F%2Finfomationblog.co.cc%2F';
                                        refresh_proc();
                                        return;
                                }
                        }
                }
        });
}

$( document ).ready(function() {
//        notice_popup()
});
</script>







