hexsha
stringlengths 40
40
| size
int64 5
1.05M
| ext
stringclasses 98
values | lang
stringclasses 21
values | max_stars_repo_path
stringlengths 3
945
| max_stars_repo_name
stringlengths 4
118
| max_stars_repo_head_hexsha
stringlengths 40
78
| max_stars_repo_licenses
sequencelengths 1
10
| max_stars_count
int64 1
368k
⌀ | max_stars_repo_stars_event_min_datetime
stringlengths 24
24
⌀ | max_stars_repo_stars_event_max_datetime
stringlengths 24
24
⌀ | max_issues_repo_path
stringlengths 3
945
| max_issues_repo_name
stringlengths 4
118
| max_issues_repo_head_hexsha
stringlengths 40
78
| max_issues_repo_licenses
sequencelengths 1
10
| max_issues_count
int64 1
134k
⌀ | max_issues_repo_issues_event_min_datetime
stringlengths 24
24
⌀ | max_issues_repo_issues_event_max_datetime
stringlengths 24
24
⌀ | max_forks_repo_path
stringlengths 3
945
| max_forks_repo_name
stringlengths 4
135
| max_forks_repo_head_hexsha
stringlengths 40
78
| max_forks_repo_licenses
sequencelengths 1
10
| max_forks_count
int64 1
105k
⌀ | max_forks_repo_forks_event_min_datetime
stringlengths 24
24
⌀ | max_forks_repo_forks_event_max_datetime
stringlengths 24
24
⌀ | content
stringlengths 5
1.05M
| avg_line_length
float64 1
1.03M
| max_line_length
int64 2
1.03M
| alphanum_fraction
float64 0
1
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
00b04b1de9efeb3fbbcc6a25fb0b4112fe336e74 | 5,311 | kt | Kotlin | app/src/main/java/com/cerist/summer/virtualassistant/Repositories/TvRepository.kt | FdevTech/Selma | 3ab66a9fc551cc6cddaa617a7b9940bb9dcdee6a | [
"MIT"
] | 3 | 2018-10-30T15:57:08.000Z | 2018-11-14T16:38:01.000Z | app/src/main/java/com/cerist/summer/virtualassistant/Repositories/TvRepository.kt | FdevTech/Selma | 3ab66a9fc551cc6cddaa617a7b9940bb9dcdee6a | [
"MIT"
] | null | null | null | app/src/main/java/com/cerist/summer/virtualassistant/Repositories/TvRepository.kt | FdevTech/Selma | 3ab66a9fc551cc6cddaa617a7b9940bb9dcdee6a | [
"MIT"
] | null | null | null | package com.cerist.summer.virtualassistant.Repositories
import android.util.Log
import com.cerist.summer.virtualassistant.Entities.BroadLinkProfile
import com.cerist.summer.virtualassistant.Utils.Data.Status
import com.polidea.rxandroidble2.RxBleConnection
import com.polidea.rxandroidble2.RxBleDevice
import io.reactivex.Observable
import io.reactivex.ObservableEmitter
import io.reactivex.android.schedulers.AndroidSchedulers
import io.reactivex.schedulers.Schedulers
import java.nio.charset.Charset
import java.util.*
import java.util.concurrent.Executor
class TvRepository(private val broadLinkRepository: BroadLinkRepository,
private val bluetoothExecutor: Executor) : IRepository {
companion object {
private val TAG = "TvRepository"
}
val broadLinkConnection: Observable<RxBleConnection>
val broadLinkConnectionState:Observable<RxBleConnection.RxBleConnectionState>
init {
broadLinkConnection = broadLinkRepository.broadLinkConnection
broadLinkConnectionState = broadLinkRepository.broadLinkConnectionState
}
fun getTvPowerState(bleConnection: RxBleConnection)
= bleConnection.readCharacteristic(UUID.fromString(BroadLinkProfile.TvProfile.STATE_CHARACTERISTIC_UUID))
.toObservable()
.flatMap {
Observable.just(it.toString(Charset.defaultCharset()).toInt()) }
.flatMap {
when (it) {
0 -> Observable.just(BroadLinkProfile.TvProfile.State.OFF)
1 -> Observable.just(BroadLinkProfile.TvProfile.State.ON)
else -> Observable.error(Throwable(Status.OPERATION_ERROR))
}}
.share()!!
fun getTvVolume(bleConnection: RxBleConnection)
= bleConnection.readCharacteristic(UUID.fromString(BroadLinkProfile.TvProfile.VOLUME_CHARACTERISTIC_UUID))
.toObservable()
.flatMap {
Observable.just(it.toString(Charset.defaultCharset()).toInt())}
.flatMap {
if(it in BroadLinkProfile.TvProfile.MIN_VOLUME
..BroadLinkProfile.TvProfile.MAX_VOLUME)
Observable.just(it)
else
Observable.error(Throwable(Status.OPERATION_ERROR))}
.share()!!
fun setTvPowerState(bleConnection: RxBleConnection,state: BroadLinkProfile.TvProfile.State)
= bleConnection.writeCharacteristic(
UUID.fromString(BroadLinkProfile.TvProfile.STATE_CHARACTERISTIC_UUID),
byteArrayOf(state.value.toByte()))
.toObservable()
.flatMap {
Observable.just(it[0].toInt()) }
.flatMap {
when (it) {
0 -> Observable.just(BroadLinkProfile.TvProfile.State.OFF)
1 -> Observable.just(BroadLinkProfile.TvProfile.State.ON)
else -> Observable.error(Throwable(Status.OPERATION_ERROR))
}
}
.share()!!
fun setTvVolumeLevel(bleConnection: RxBleConnection,volume:Int)
= Observable.just(bleConnection)
.flatMap {
if(volume in BroadLinkProfile.TvProfile.MIN_VOLUME
.. BroadLinkProfile.TvProfile.MAX_VOLUME)
Observable.just(it)
else
Observable.error(Throwable(Status.OPERATION_ERROR))
}
.flatMap {
getTvVolume(it) }
.flatMap {
Log.d(TAG,"Writing the tv volume level characteristic")
if(volume > it)
bleConnection.writeCharacteristic(UUID.fromString(BroadLinkProfile.TvProfile.VOLUME_UP_CHARACTERISTIC_UUID),
byteArrayOf(volume.toByte())).toObservable()
else
bleConnection.writeCharacteristic(UUID.fromString(BroadLinkProfile.TvProfile.VOLUME_DOWN_CHARACTERISTIC_UUID),
byteArrayOf(volume.toByte())).toObservable()
}
.flatMap {
Observable.just(it[0].toInt()) }
.flatMap {
Observable.just(it) }
.share()!!
fun setTvTimer(bleConnection: RxBleConnection,time:Int)
=Observable.just(bleConnection)
.flatMap {
if(time in BroadLinkProfile.TvProfile.TV_TIMER_SET)
Observable.just(it)
else
Observable.error(Throwable(Status.OPERATION_ERROR)) }
.flatMap {
Log.d(TAG,"Writing the tv timer characteristic")
bleConnection.writeCharacteristic(UUID.fromString(BroadLinkProfile.TvProfile.TIMER_CHARACTERISTIC_UUID),
byteArrayOf(time.toByte())).toObservable()
}
.flatMap {
Observable.just(it[0].toInt()) }
.flatMap {
Observable.just(it) }
.share()!!
} | 41.492188 | 134 | 0.583318 |
7f67e38352cae34b45ea0e396640fb7005554120 | 399 | html | HTML | common/src/web/rc/tests/html/test_mouse_events1.html | weilandia/selenium | 949f05eb9a0dad3fddbf1fb34c3b0164deba1db7 | [
"Apache-2.0"
] | 25,151 | 2015-01-01T15:40:17.000Z | 2022-03-31T18:44:03.000Z | common/src/web/rc/tests/html/test_mouse_events1.html | weilandia/selenium | 949f05eb9a0dad3fddbf1fb34c3b0164deba1db7 | [
"Apache-2.0"
] | 9,885 | 2015-01-03T17:53:00.000Z | 2022-03-31T21:48:12.000Z | java/server/test/org/openqa/selenium/tests/html/test_mouse_events1.html | lucianodgs/selenium | e2b2b97de0d9a6cc86563c866a9361237519159f | [
"Apache-2.0"
] | 8,441 | 2015-01-05T09:36:44.000Z | 2022-03-31T19:58:06.000Z | <!DOCTYPE html>
<html>
<head>
<title>test_mouse_events1</title>
<script type="text/javascript">
function register(msg) {
var log = document.getElementById('log');
log.innerHTML = '<p>' + msg + '</p>';
}
</script>
</head>
<body>
<div id="out" onmouseout="register('out');">
<p>Mouse out of here, please.</p>
</div>
<div id="log">
</div>
</body>
</html> | 17.347826 | 49 | 0.56391 |
70498d7041478114c853a1f4ce2191801337514f | 333 | go | Go | fileservice/server/utils/limiter.go | Blank-Xu/examples | 32e61e63a47c6a7c1b2cc3ad3737fc9785f51468 | [
"Apache-2.0"
] | null | null | null | fileservice/server/utils/limiter.go | Blank-Xu/examples | 32e61e63a47c6a7c1b2cc3ad3737fc9785f51468 | [
"Apache-2.0"
] | null | null | null | fileservice/server/utils/limiter.go | Blank-Xu/examples | 32e61e63a47c6a7c1b2cc3ad3737fc9785f51468 | [
"Apache-2.0"
] | null | null | null | package utils
// 限制请求数
type Limiter struct {
ch chan struct{}
count int
}
func NewLimiter(count int) *Limiter {
return &Limiter{ch: make(chan struct{}, count), count: count}
}
func (p *Limiter) Get() bool {
if len(p.ch) >= p.count {
return false
}
p.ch <- struct{}{}
return true
}
func (p *Limiter) Put() {
<-p.ch
}
| 13.875 | 62 | 0.624625 |
19eb4fe83c03ebb7fdabd25004b85adddfecaa29 | 794 | lua | Lua | roommgr/exports_c.lua | rafalh/mtasa_toxic_experimental | 98a17aa12f1683cffb6272feef3a65b6a38f916a | [
"MIT"
] | null | null | null | roommgr/exports_c.lua | rafalh/mtasa_toxic_experimental | 98a17aa12f1683cffb6272feef3a65b6a38f916a | [
"MIT"
] | null | null | null | roommgr/exports_c.lua | rafalh/mtasa_toxic_experimental | 98a17aa12f1683cffb6272feef3a65b6a38f916a | [
"MIT"
] | null | null | null | local g_Me = getLocalPlayer()
local g_ResRoot = getResourceRootElement()
function getCurrentRoom()
local id = getElementData(g_Me, "roomid")
local room = id and getElementByID(id)
return room
end
function setCurrentRoom(room)
triggerServerEvent("roommgr_onChangeRoomReq", g_ResRoot, room)
end
function getRooms()
return getElementsByType("game-room")
end
function getPlayerRoom(player)
local roomID = getElementData(player, "roomid")
return roomID and getElementByID(roomID)
end
function getRoomPlayers(room)
local currentRoom = getCurrentRoom()
local players = getElementsByType("player")
local ret = {}
for i, player in ipairs(players) do
if(getPlayerRoom(player) == currentRoom) then
table.insert(ret, player)
end
end
return ret
end
| 23.352941 | 64 | 0.743073 |
cba0c5ef8b3f3d672eb783cd308c44e4c6ba5a98 | 2,505 | go | Go | pkg/syscall/handle/handle.go | Monkeyman21/fibratus | 83cd37820b208846809f82b19e857bff6f4eb415 | [
"Apache-2.0"
] | null | null | null | pkg/syscall/handle/handle.go | Monkeyman21/fibratus | 83cd37820b208846809f82b19e857bff6f4eb415 | [
"Apache-2.0"
] | null | null | null | pkg/syscall/handle/handle.go | Monkeyman21/fibratus | 83cd37820b208846809f82b19e857bff6f4eb415 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2019-2020 by Nedim Sabic Sabic
* https://www.fibratus.io
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package handle
import (
"github.com/rabbitstack/fibratus/pkg/syscall/winerrno"
"os"
"syscall"
"unsafe"
)
var (
kernel32 = syscall.NewLazyDLL("kernel32.dll")
closeHandle = kernel32.NewProc("CloseHandle")
duplicateHandle = kernel32.NewProc("DuplicateHandle")
)
// Handle represents the handle type.
type Handle uintptr
// DuplicateAccess is the enum for handle duplicate access flags.
type DuplicateAccess uint32
const (
// ThreadQueryAccess determines that handle duplication requires the ability to query thread info.
ThreadQueryAccess DuplicateAccess = 0x0040
// ProcessQueryAccess determines that handle duplication requires the ability to query process info.
ProcessQueryAccess DuplicateAccess = 0x1000
// ReadControlAccess specifies the ability to query the security descriptor.
ReadControlAccess DuplicateAccess = 0x00020000
// SemaQueryAccess is the duplicate access type required for synchronization objects such as mutants.
SemaQueryAccess DuplicateAccess = 0x0001
// AllAccess doesn't specify the access mask.
AllAccess DuplicateAccess = 0
)
// IsValid determines if handle instance if valid.
func (handle Handle) IsValid() bool {
return handle != ^Handle(0)
}
// Close disposes the underlying handle object.
func (handle Handle) Close() {
if handle == 0 {
return
}
_, _, _ = closeHandle.Call(uintptr(handle))
}
// Duplicate duplicates an object handle in the caller address's space.
func (handle Handle) Duplicate(src, dest Handle, access DuplicateAccess) (Handle, error) {
var destHandle Handle
errno, _, err := duplicateHandle.Call(
uintptr(src),
uintptr(handle),
uintptr(dest),
uintptr(unsafe.Pointer(&destHandle)),
uintptr(access),
0,
0,
)
if winerrno.Errno(errno) != winerrno.Success {
return destHandle, nil
}
return Handle(0), os.NewSyscallError("DuplicateHandle", err)
}
| 29.821429 | 102 | 0.755689 |
20f2eadf220d0d460a02161c0a8a3079a0181e07 | 11,468 | css | CSS | public/css/rtc.css | skyneton/webrtc-p2p | 0b7ca10c8d3f8c1356ef562673939ee0e02de9f1 | [
"MIT"
] | 1 | 2021-01-08T03:17:39.000Z | 2021-01-08T03:17:39.000Z | public/css/rtc.css | skyneton/webrtc-p2p | 0b7ca10c8d3f8c1356ef562673939ee0e02de9f1 | [
"MIT"
] | 1 | 2021-01-07T10:31:06.000Z | 2021-01-08T03:18:41.000Z | public/css/rtc.css | skyneton/webrtc-p2p | 0b7ca10c8d3f8c1356ef562673939ee0e02de9f1 | [
"MIT"
] | null | null | null | @font-face {
font-family: "Cafe24Oneprettynight";
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/[email protected]/Cafe24Oneprettynight.woff")
format("woff");
font-weight: normal;
font-style: normal;
}
* {
outline: none;
}
*::-webkit-scrollbar {
width: 8px;
height: 8px;
/* background-color: rgba(255, 255, 255, 0.7); */
border-radius: 4px;
}
*::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(150, 150, 150, 0.8);
}
.alert,
.prompt,
.confirm {
position: fixed;
margin-left: auto;
margin-right: auto;
max-width: 400px;
min-width: 150px;
width: 80vw;
z-index: 100;
left: 0;
right: 0;
top: 4px;
background-color: white;
box-shadow: 0px 0px 4px black;
border-radius: 4px;
padding: 15px;
display: flex;
flex-direction: column;
}
.al_okbtn {
color: white;
background-color: rgb(0, 81, 255);
margin-top: 20px;
border: 1px solid blue;
border-radius: 3px;
width: 50px;
height: 30px;
align-self: flex-end;
}
.al_buttonBox {
align-self: flex-end;
}
.al_cancelbtn {
color: rgb(0, 81, 255);
background-color: white;
margin-top: 20px;
border: 1px solid gray;
border-radius: 3px;
width: 50px;
height: 30px;
align-self: flex-end;
margin-left: 15px;
}
.al_inputBox {
height: 20px;
margin-top: 15px;
}
.getSessionKey {
display: none;
}
/*@media only screen and (orientation: portrait) {
html[isMobile] {
height: 100vw;
transform: rotate(90deg);
}
html[isMobile] video {
transform: rotate(90deg);
}
}*/
body {
display: flex;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
flex-direction: row;
margin: 0;
font-family: "Cafe24Oneprettynight", serif;
}
.interactAlert {
position: fixed;
align-self: center;
padding: 20px;
min-width: 200px;
max-width: 500px;
width: 30vw;
background-color: white;
box-shadow: 2px 2px 5px 3px black;
margin: auto;
left: 0;
right: 0;
}
.live_room {
display: flex;
flex-grow: 2;
flex-direction: column;
background-color: #f5f5f5;
width: 100%;
-ms-user-select: none;
-moz-user-select: -moz-none;
-webkit-user-select: none;
-khtml-user-select: none;
user-select: none;
}
.right_side {
flex-grow: 1;
max-width: 370px;
min-width: 200px;
width: 40vw;
flex-direction: column;
display: none;
}
.user_room {
flex-grow: 1;
display: none;
flex-direction: column;
height: 100%;
}
.user_room > header {
display: flex;
flex-shrink: 0;
align-items: center;
padding: 5px;
height: 20px;
box-shadow: 0px 0px 2px black;
}
.user_room > header > span {
margin-left: 10px;
font-size: 12px;
font-weight: bold;
}
.user_room > main {
flex-grow: 1;
overflow-x: hidden;
flex-basis: 0;
display: flex;
flex-direction: column;
padding-bottom: 3px;
}
.chat_room {
flex-grow: 1;
display: none;
flex-direction: column;
height: 100%;
}
.chat_room > header {
display: flex;
flex-shrink: 0;
align-items: center;
padding: 5px;
height: 20px;
box-shadow: 0px 0px 2px black;
}
.chat_room > header > span {
margin-left: 10px;
font-size: 12px;
font-weight: bold;
}
.chat_room > main {
flex-grow: 1;
padding: 8px;
overflow-y: auto;
overflow-x: hidden;
flex-basis: 0;
}
.chat_room > footer {
padding: 7px;
}
.container_room {
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
overflow-y: scroll;
overflow-x: hidden;
/* flex-direction: row; */
margin: 10px 0;
}
.container_room > div {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
}
.container_boxitem {
flex-grow: 1;
min-width: 210px;
max-width: 90vh;
margin: 10px;
}
.container_boxshape {
background-color: #e6e6e6;
border-radius: 8px;
padding-top: 56.25%;
position: relative;
}
.container_boxitem[me] .container_boxshape {
}
.container_boxshape .userCamera {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
transform: scaleX(-1);
}
.container_boxshape .userDesktopCamera {
display: none;
}
.select_room {
flex-grow: 1;
display: none;
flex-direction: column;
position: relative;
}
.select_room > header {
flex-shrink: 0;
height: 190px;
max-height: 23%;
min-height: 70px;
display: flex;
align-items: center;
padding: 5px;
margin: 0 10px;
overflow-x: auto;
flex-direction: row;
overflow-y: hidden;
}
.user_select_box {
display: flex;
flex-wrap: nowrap;
margin: 10px auto;
height: 100%;
}
.user_select_box > .select_boxitem {
width: 210px;
height: 100%;
margin: 0 10px;
background-color: #dfdfdf;
border-radius: 8px;
position: relative;
flex-shrink: 0;
display: inline-block;
box-sizing: border-box;
}
.select_boxitem[me] {
background-color: #b9b9b9;
}
.user_select_box .userDesktopCamera {
display: none;
}
.user_select_box .userCamera {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
transform: scaleX(-1);
}
.user_select_box > .select_boxitem[selected] {
border: 5px solid #b9b9b9;
}
.user_main_video {
flex-grow: 1;
height: 100%;
position: relative;
margin-bottom: 7px;
}
.user_main_video .userCamera {
transform: scaleX(-1);
}
.user_main_video > video {
position: absolute;
width: 100%;
height: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.setting_box {
flex-grow: 0;
flex-shrink: 0;
height: 0;
transition: all 0.2s;
display: flex;
justify-content: center;
padding: 0 20px;
align-items: center;
overflow: hidden;
}
.live_room:hover .setting_box {
height: 50px;
}
.setting_box > div {
flex-grow: 1;
width: 100%;
}
.setting_box_right {
text-align: right;
}
.createURL {
cursor: pointer;
}
.createURL path {
fill: #bbbbbb;
}
.createURL:hover path {
fill: white;
}
.page_fullscreen_state {
display: none;
fill: #bbbbbb;
cursor: pointer;
}
.page_fullscreen_state:hover path {
fill: white;
}
.chat_menu_state {
border: 1px solid #c8c8c8c8;
padding: 4px;
border-radius: 6px;
cursor: pointer;
}
.chat_menu_state:hover {
border-color: orange;
}
.chat_input {
resize: none;
width: 100% !important;
border-radius: 3px;
border: 2px solid #00000000;
transition: all 0.2s;
background-color: rgb(233, 233, 233);
text-size-adjust: 100%;
line-height: 1.5;
padding: 10px;
box-sizing: border-box;
font-family: Inter, Roobert, Arial, Helvetica, sans-serif;
}
.chat_input:hover {
border-color: #c8c8c8c8;
}
.chat_input:focus {
background-color: #00000000;
border-color: purple;
}
.chat_input::placeholder {
color: gray;
}
.chat_input::-webkit-input-placeholder {
color: gray;
}
.chat_input::-ms-input-placeholder {
color: gray;
}
.chat_send {
background-color: rgb(170, 0, 170);
color: white;
float: right;
padding: 4px 6px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
}
.chat_send:hover {
background-color: purple;
}
.chat_send:active {
background-color: rgb(100, 0, 100);
}
.user_menu_state {
border: 1px solid #c8c8c8c8;
padding: 4px;
border-radius: 6px;
cursor: pointer;
}
.user_menu_state path {
fill: #c8c8c8c8;
}
.user_menu_state:hover {
border-color: orange;
}
.user_menu_state:hover path {
fill: orange;
}
.chatbox {
overflow-x: hidden;
margin-bottom: 12px;
}
.chatbox:last-child {
margin-bottom: 0;
}
.chatbox > .chatbox_top {
display: flex;
flex-direction: row;
}
.chatbox > .chatbox_top > .chatbox_sender {
font-family: Inter, Roobert, Arial, Helvetica, sans-serif;
flex-grow: 1;
overflow: hidden;
margin-right: 7px;
font-weight: bold;
font-size: 15px;
}
.chatbox > .chatbox_top > .chatbox_time {
font-family: Inter, Roobert, Arial, Helvetica, sans-serif;
color: rgb(128, 128, 128);
font-weight: 500;
flex-shrink: 0;
font-size: 13px;
display: none;
}
.chat_room:hover .chatbox > .chatbox_top > .chatbox_time {
display: inline;
}
.chatbox > .chatbox_msg {
font-family: Inter, Roobert, Arial, Helvetica, sans-serif;
word-break: break-all;
padding-left: 7px;
font-size: 13px;
}
.setting_box_center {
padding-bottom: 8px;
display: flex;
justify-content: space-around;
}
.user_camera_toggle {
border-radius: 100%;
padding: 8px;
background-color: rgb(66, 66, 66);
display: inline-block;
cursor: pointer;
}
.user_camera_toggle:hover {
background-color: rgb(45, 45, 45);
}
.user_camera_toggle path {
fill: white;
}
.user_camera_toggle[activity] {
background-color: white;
}
.user_camera_toggle[activity] path {
fill: black;
}
.user_desktop_toggle {
border-radius: 100%;
padding: 8px;
background-color: rgb(66, 66, 66);
display: inline-block;
cursor: pointer;
}
.user_desktop_toggle:hover {
background-color: rgb(45, 45, 45);
}
.user_desktop_toggle path {
fill: white;
}
.user_desktop_toggle[activity] {
background-color: white;
}
.user_desktop_toggle[activity] path {
fill: black;
}
.user_audio_toggle {
border-radius: 100%;
padding: 8px;
background-color: rgb(66, 66, 66);
display: inline-block;
cursor: pointer;
}
.user_audio_toggle:hover {
background-color: rgb(45, 45, 45);
}
.user_audio_toggle path {
fill: white;
}
.user_audio_toggle[activity] {
background-color: white;
}
.user_audio_toggle[activity] path {
fill: black;
}
.user_call_close {
border-radius: 100%;
padding: 8px;
background-color: red;
display: inline-block;
cursor: pointer;
}
.user_call_close path {
fill: white;
}
.userbox_nametag {
position: absolute;
padding: 10px;
overflow: hidden;
bottom: 0;
left: 0;
padding: 8px;
background-color: rgba(0, 0, 0, 0.85);
color: rgba(255, 255, 255, 0.9);
border-radius: 10px;
margin: 5px;
max-width: 70%;
max-height: 40%;
box-sizing: border-box;
transform: scale(0);
transition: all 0.4s;
z-index: 10;
border: 1px solid rgba(255, 255, 255, 0.3);
word-break: break-all;
}
.live_room:hover > .container_room .userbox_nametag {
transform: scale(1);
}
.select_room > header:hover .userbox_nametag {
transform: scale(1);
}
.user_main_video .main_nametag {
position: absolute;
padding: 10px;
overflow: hidden;
bottom: 0;
left: 0;
padding: 8px;
background-color: rgba(0, 0, 0, 0.85);
color: rgba(255, 255, 255, 0.9);
border-radius: 10px;
margin: 5px;
max-width: 70%;
max-height: 40%;
box-sizing: border-box;
transform: scale(0);
transition: all 0.4s;
z-index: 10;
border: 1px solid rgba(255, 255, 255, 0.5);
word-break: break-all;
}
.user_main_video:hover .main_nametag {
transform: scale(1);
}
.user_name_select {
margin: 4px;
height: 22px;
padding: 5px;
border-radius: 6px;
}
.user_room_userlist_box {
margin: 1px 6px;
overflow-y: auto;
}
.user_room_userlist_box > .userlistItem[hidden] {
display: none;
}
.userlistItem[me] {
color: rgb(78, 78, 78);
}
.main_video_lock {
position: absolute;
top: 0;
max-width: 70%;
max-height: 40%;
overflow: hidden;
border-radius: 6px;
border: 2px solid rgba(230, 230, 230, 0.7);
color: rgba(230, 230, 230, 0.7);
background-color: rgba(0, 0, 0, 0.7);
padding: 4px;
box-sizing: border-box;
z-index: 10;
display: none;
margin: 7px;
cursor: pointer;
}
.defaultPageMove {
position: absolute;
top: 0;
right: 0;
border: 1px solid rgba(255, 255, 255, 0.8);
border-radius: 7px;
margin: 10px;
padding: 7px;
cursor: pointer;
}
.defaultPageMove path {
fill: rgba(255, 255, 255, 0.8);
}
| 17.090909 | 102 | 0.662714 |
0b303fe60108c7d81edf13f0852f1b122917c330 | 13,679 | py | Python | AuroraAppCode/login.py | zahraahhajhsn/automatic-student-counter | 9b3e38f41aba3fbc59e1ccdaeae9ba229415f977 | [
"Apache-2.0"
] | null | null | null | AuroraAppCode/login.py | zahraahhajhsn/automatic-student-counter | 9b3e38f41aba3fbc59e1ccdaeae9ba229415f977 | [
"Apache-2.0"
] | null | null | null | AuroraAppCode/login.py | zahraahhajhsn/automatic-student-counter | 9b3e38f41aba3fbc59e1ccdaeae9ba229415f977 | [
"Apache-2.0"
] | null | null | null |
import verifyController
import pyodbc
from PyQt5.QtWidgets import QMessageBox
from PyQt5 import QtCore, QtGui, QtWidgets
from PySide2.QtCore import (QCoreApplication, QMetaObject,QSize,Qt)
from PySide2.QtGui import (QCursor, QFont,QIcon)
from PySide2.QtWidgets import *
from PySide2 import QtCore, QtGui, QtWidgets
import cameras
import pickle
import smtplib
from random import randint
import PyQt5
class Ui_LoginWindow(object):
def setupUi(self, LoginWindow):
LoginWindow.setObjectName("MainWindow")
LoginWindow.resize(1000, 1000)
LoginWindow.showMaximized()
sizePolicy = QtWidgets.QSizePolicy(QSizePolicy.Preferred,QSizePolicy.Preferred)
sizePolicy.setHorizontalStretch(10)
sizePolicy.setVerticalStretch(10)
sizePolicy.setHeightForWidth(LoginWindow.sizePolicy().hasHeightForWidth())
LoginWindow.setSizePolicy(sizePolicy)
LoginWindow.setCursor(QCursor(Qt.ArrowCursor))
icon =QIcon()
#icon.addPixmap(QPixmap("e9b4c65fb45f70ad1b573f67e486d91c.jpg"), QIcon.Normal , QIcon.Off)
LoginWindow.setWindowIcon(icon)
LoginWindow.setStyleSheet("QMainWindow{background-image: url(images/new.png);}")
LoginWindow.setToolButtonStyle(Qt.ToolButtonIconOnly)
self.centralwidget = QWidget(LoginWindow)
self.roomnumber = QComboBox()
self.roomnumber.setObjectName("roomnumber")
self.cameradep = QComboBox()
self.cameradep.setObjectName("cameradep")
self.centralwidget.setCursor(QtGui.QCursor(QtCore.Qt.ArrowCursor))
self.centralwidget.setObjectName("centralwidget")
self.verticalLayout = QVBoxLayout(self.centralwidget)
self.verticalLayout.setSizeConstraint(QLayout.SetDefaultConstraint)
self.verticalLayout.setContentsMargins(200, 10, 200, 30)
self.verticalLayout.setSpacing(30)
self.verticalLayout.setObjectName("verticalLayout")
self.label = QLabel(self.centralwidget)
font = QFont()
font.setFamily("Arial Black")
font.setPointSize(35)
font.setBold(False)
font.setItalic(False)
font.setWeight(10)
self.label.setFont(font)
self.label.setStyleSheet("color: rgb(0, 0, 0);\n"
"font: 87 35pt \"Arial Black\";")
self.label.setAlignment(Qt.AlignHCenter|Qt.AlignTop)
self.label.setWordWrap(True)
self.label.setObjectName("label")
self.verticalLayout.addWidget(self.label)
self.verticalWidget = QWidget(self.centralwidget)
self.verticalWidget.setStyleSheet("background-color: rgb(0, 0, 0);\n"
"font: 87 11pt \"Arial Black\";\n"
"color: rgb(255, 255, 255);")
self.verticalWidget.setObjectName("verticalWidget")
self.verticalLayout_2 = QVBoxLayout(self.verticalWidget)
self.verticalLayout_2.setSizeConstraint(QLayout.SetDefaultConstraint)
self.verticalLayout_2.setContentsMargins(100, 30, 100, 10)
self.verticalLayout_2.setSpacing(15)
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.label_3 = QLabel(self.verticalWidget)
self.label_3.setObjectName("label_3")
self.verticalLayout_2.addWidget(self.label_3)
self.lineEdit_2 = QLineEdit(self.verticalWidget)
self.lineEdit_2.setObjectName("lineEdit_2")
self.verticalLayout_2.addWidget(self.lineEdit_2)
self.label_2 = QLabel(self.verticalWidget)
self.label_2.setObjectName("label_2")
self.verticalLayout_2.addWidget(self.label_2)
self.lineEdit = QLineEdit(self.verticalWidget)
self.lineEdit.setObjectName("lineEdit")
self.lineEdit.setEchoMode(QLineEdit.Password)
self.verticalLayout_2.addWidget(self.lineEdit)
self.incorrect = QLabel(self.verticalWidget)
self.incorrect.setText("")
self.incorrect.setObjectName("incorrect")
self.incorrect.setStyleSheet("color: rgb(225, 37, 52);\n"
"font: 87 10pt \"Arial Black\";")
self.verticalLayout_2.addWidget(self.incorrect)
self.verticalWidget_2 = QWidget(self.verticalWidget)
sizePolicy = QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.verticalWidget_2.sizePolicy().hasHeightForWidth())
self.verticalWidget_2.setSizePolicy(sizePolicy)
self.verticalWidget_2.setMinimumSize(QSize(200, 121))
self.verticalWidget_2.setBaseSize(QSize(10, 0))
self.verticalWidget_2.setCursor(QCursor(Qt.ArrowCursor))
self.verticalWidget_2.setObjectName("verticalWidget_2")
self.verticalLayout_3 = QVBoxLayout(self.verticalWidget_2)
self.verticalLayout_3.setContentsMargins(30, 0, 30, 30)
self.verticalLayout_3.setSpacing(0)
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.pushButton = QPushButton(self.verticalWidget_2)
self.pushButton.setStyleSheet("background-color: rgb(225, 37, 52);\n"
"border-color: rgb(255, 255, 255);")
self.pushButton.setObjectName("pushButton")
self.verticalLayout_3.addWidget(self.pushButton)
self.pushButton_2 = QPushButton(self.verticalWidget_2)
self.pushButton_2.setStyleSheet("font: italic 11pt \"Arial\";\n"
"text-decoration: underline;\n"
"color: rgb(0, 85, 255);")
self.pushButton_2.setObjectName("pushButton_2")
self.verticalLayout_3.addWidget(self.pushButton_2)
self.verticalLayout_2.addWidget(self.verticalWidget_2)
self.verticalLayout_2.setStretch(0, 1)
self.verticalLayout_2.setStretch(1, 1)
self.verticalLayout_2.setStretch(2, 1)
self.verticalLayout_2.setStretch(3, 1)
self.verticalLayout_2.setStretch(5, 1)
self.verticalLayout.addWidget(self.verticalWidget, 0,Qt.AlignHCenter|Qt.AlignVCenter)
self.verticalLayout.setStretch(0, 1)
self.verticalLayout.setStretch(1, 15)
LoginWindow.setCentralWidget(self.centralwidget)
self.retranslateUi(LoginWindow)
QMetaObject.connectSlotsByName(LoginWindow)
def retranslateUi(self, LoginWindow):
_translate =QCoreApplication.translate
LoginWindow.setWindowTitle(_translate("MainWindow", "login","None"))
self.label.setText(_translate("MainWindow", "LOGIN","None"))
self.label_3.setText(_translate("MainWindow", "<html><head/><body><p align=\"center\">Enter Username</p></body></html>","None"))
self.label_2.setText(_translate("MainWindow", "<html><head/><body><p align=\"center\"><br/>Enter Password</p></body></html>","None"))
self.pushButton.setText(_translate("MainWindow", "Submit","None"))
self.pushButton_2.setText(_translate("MainWindow", "forgot password?","None"))
self.pushButton.clicked.connect(lambda:self.open_window(LoginWindow))
self.pushButton_2.clicked.connect(lambda:self.send_email(LoginWindow))
def open_window(self,LoginWindow):
if len(self.lineEdit_2.text()) == 0:
self.incorrect.setText("empty email field")
elif len(self.lineEdit.text()) == 0:
self.incorrect.setText("empty password field")
else:
server='Nurkanaan\sqlexpress'
database='senior'
conn = pyodbc.connect('DRIVER={ODBC Driver 13 for SQL Server}; \
SERVER='+server+'; \
DATABASE='+database+'; \
Trusted_Connection=yes;')
cursor = conn.cursor()
insert_query = "Select * from headsInfo where email=? and pass=?"
cursor.execute(insert_query,self.lineEdit_2.text(), self.lineEdit.text())
result = cursor.fetchall()
conn.commit()
if len(result) == 0:
self.incorrect.setText("invalid email/password!")
server = 'Nurkanaan\sqlexpress'
database = 'senior'
conn = pyodbc.connect('DRIVER={ODBC Driver 13 for SQL Server}; \
SERVER=' + server + '; \
DATABASE=' + database + '; \
Trusted_Connection=yes;')
cursor = conn.cursor()
insert_query = "Select * from administratorr where email=? and pass=?"
cursor.execute(insert_query, self.lineEdit_2.text(), self.lineEdit.text())
result = cursor.fetchall()
conn.commit()
if len(result)==0:
self.incorrect.setText("invalid email/password!")
else:
pickle.dump("no", open("sc.dat", "wb"))
pickle.dump(self.lineEdit_2.text(),open("email.dat" , "wb"))
self.window = PyQt5.QtWidgets.QMainWindow()
self.ui = cameras.Ui_CameraMainWindow()
self.ui.setupUi(self.window)
self.window.show()
LoginWindow.close()
else:
pickle.dump("no", open("sc.dat", "wb"))
pickle.dump(self.lineEdit_2.text(), open("email.dat", "wb"))
self.window = PyQt5.QtWidgets.QMainWindow()
self.ui = cameras.Ui_CameraMainWindow()
self.ui.setupUi(self.window)
self.window.show()
LoginWindow.close()
def send_email(self,LoginWindow):
if len(self.lineEdit_2.text()) == 0:
self.incorrect.setText("empty email field")
else:
server = 'Nurkanaan\sqlexpress'
database = 'senior'
conn = pyodbc.connect('DRIVER={ODBC Driver 13 for SQL Server}; \
SERVER=' + server + '; \
DATABASE=' + database + '; \
Trusted_Connection=yes;')
cursor = conn.cursor()
insert_query = "Select email from headsInfo where email=?"
cursor.execute(insert_query, self.lineEdit_2.text())
result = cursor.fetchall()
if len(result) == 0:
self.incorrect.setText("invalid email/password!")
else:
try:
self.incorrect.setText("<strong>Loading...</strong>")
server = smtplib.SMTP('smtp.gmail.com:587')
server.ehlo()
server.starttls()
server.login('[email protected]', 'Aurora1234')
rand = randint(100000, 999999)
pickle.dump(rand, open("rand.dat", "wb"))
print(rand)
subject = "Recover Password"
msg = "your recovery code is: " + str(rand) + " \nplease enter this code in the page that opened in the application"
message = 'Subject: {}\n\n{}'.format(subject, msg)
#str(self.lineEdit_2.text())
server.sendmail('[email protected]',str(self.lineEdit_2.text()), message)
server.quit()
self.timer = QtCore.QTimer()
self.timer.start(35)
QtCore.QTimer.singleShot(2000,lambda: self.message(LoginWindow))
QtCore.QTimer.singleShot(2000,lambda :self.incorrect.setText(""))
except:
m = QMessageBox()
msg1 = "<html><head/><body><p align=\"center\"><span style=\" font-size:10pt; font-weight:600;\">No internet connection!</span></p><p>please check internet connection.</p></body></html>"
m.setText(msg1)
m.setStandardButtons(QMessageBox.Ok)
m.setWindowTitle("AURORA")
m.setIcon(QMessageBox.Information)
reply = m.exec()
def message(self,LoginWindow):
m = QMessageBox()
msg1="<html><head/><body><p align=\"center\"><span style=\" font-size:10pt; font-weight:600;\">recovery code sent to: "+str(self.lineEdit_2.text())+ " </span></p><p> please follow instructions in sent email</p></body></html>"
m.setText(msg1)
m.setStandardButtons(QMessageBox.Ok)
m.setWindowTitle("AURORA")
m.setIcon(QMessageBox.NoIcon)
m.setWindowFlag(Qt.FramelessWindowHint)
reply = m.exec()
if reply == QMessageBox.Ok:
self.open(LoginWindow)
def open(self,LoginWindow):
pickle.dump(self.lineEdit_2.text(), open("email.dat", "wb"))
self.window = QtWidgets.QMainWindow()
self.ui = verifyController.Verfifycontroller()
LoginWindow.close()
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
LoginWindow = QtWidgets.QMainWindow()
ui = Ui_LoginWindow()
ui.setupUi(LoginWindow)
LoginWindow.show()
sys.exit(app.exec_())
| 52.209924 | 238 | 0.59288 |
18bf1a0139d71e8ef2b676cb4ba44ba527cc0964 | 1,872 | sql | SQL | Behavior_Analysis_Setup/StudentTimeAndPoints.sql | bbrub49/SQL-Code-Examples | 8c4be22f31e52b906d324174a93486a1ace0c4eb | [
"MIT"
] | null | null | null | Behavior_Analysis_Setup/StudentTimeAndPoints.sql | bbrub49/SQL-Code-Examples | 8c4be22f31e52b906d324174a93486a1ace0c4eb | [
"MIT"
] | null | null | null | Behavior_Analysis_Setup/StudentTimeAndPoints.sql | bbrub49/SQL-Code-Examples | 8c4be22f31e52b906d324174a93486a1ace0c4eb | [
"MIT"
] | null | null | null | /*
* Establishes the reason and minutes a student is absent
* if the absence is excused in order to remove those
* minutes from the students total time and total points
* possible to earn that day
*/
DECLARE @yeartype as varchar(15)
SET @yeartype = (SELECT [Type] FROM NSSEOPulse.dbo.ZM_TEST_BB_SchoolYear WHERE [Description] = 'Current')
IF @yeartype = 'Summer'
SELECT ArchYear, dp.Site, dp.StudentID, StartDate, EndDate, RngS, RngE, ServiceCode, ProgramDescription, EntryValue,
GroupNumber, StartWk, EndWk, DayDate, DtRng, TotalDays,
(CAST(MinPossible as float) - CAST(MinPresent as float)) as MinutesAbsent,
'ESY' as ReasonCode, 0.00 as ActualAbsence
FROM ZZ_TEST_BB_20DayDataPrep dp LEFT OUTER JOIN (
SELECT SIte, SchoolYear, StudentID, AtnDate, SubjSec, MinPresent, MinPossible, ATNSpecialCode, ATNSpecialComment
FROM ZZ_TEST_ATNSpecialAdditional
WHERE SIte = 'TR'
) as ma ON dp.StudentID = ma.StudentID AND dp.DayDate = CONVERT(Date,ma.AtnDate)
ELSE
SELECT ArchYear, dp.Site, dp.StudentID, StartDate, EndDate, RngS, RngE, ServiceCode, ProgramDescription, EntryValue,
GroupNumber, StartWk, EndWk, DayDate, DtRng, TotalDays,
CASE
WHEN TotalMinutesAbs IS NULL THEN 0
ELSE TotalMinutesAbs
END AS ActualAbsence,
CASE
WHEN (ReasonCode IN ('E','L','X','M')) OR (ReasonCode = 'G' AND ServiceCode IN ('1','2','3')) THEN TotalMinutesAbs
ELSE 0
END AS MinutesAbsent,
ReasonCode
FROM ZZ_TEST_BB_20DayDataPrep dp LEFT OUTER JOIN (
SELECT DISTINCT PrimarySite, ma.StudentID, ma.TotalMinutesAbs, Minutespossible, ma.AttendanceDate, ReasonCode
FROM ZZ_TEST_ATNStudentDetail ma INNER JOIN ZZ_TEST_ATNAttendanceMarks am ON ma.StudentID = am.StudentID AND ma.AttendanceDate = am.AbsentDate
WHERE PrimarySite = 'TR'
) as ma ON dp.StudentID = ma.StudentID AND CONVERT(Date,dp.DayDate) = CONVERT(Date,ma.AttendanceDate) | 42.545455 | 143 | 0.76015 |
665db68e64c717adeee2f41bcbb59fe816ca4d10 | 918,283 | css | CSS | autotest/testsuite/properties/positive/background-position/css3/001-aw.css | drspun/css-validator | f92c2ae01af9d961e1833f64d5153e5f10742aa6 | [
"W3C-19980720"
] | null | null | null | autotest/testsuite/properties/positive/background-position/css3/001-aw.css | drspun/css-validator | f92c2ae01af9d961e1833f64d5153e5f10742aa6 | [
"W3C-19980720"
] | null | null | null | autotest/testsuite/properties/positive/background-position/css3/001-aw.css | drspun/css-validator | f92c2ae01af9d961e1833f64d5153e5f10742aa6 | [
"W3C-19980720"
] | 1 | 2021-05-16T12:06:46.000Z | 2021-05-16T12:06:46.000Z | bgpos220001 { background-position: right top , right 15% bottom 15% , right 15% center }
bgpos220002 { background-position: top , right 15% bottom 15% , right 15% center }
bgpos220003 { background-position: left bottom , right 15% bottom 15px , right 15% center }
bgpos220004 { background-position: left bottom 15% , right 15% bottom 15px , right 15% center }
bgpos220005 { background-position: left bottom 15px , right 15% bottom 15px , right 15% center }
bgpos220006 { background-position: left top , right 15% bottom 15px , right 15% center }
bgpos220007 { background-position: left top 15% , right 15% bottom 15px , right 15% center }
bgpos220008 { background-position: left top 15px , right 15% bottom 15px , right 15% center }
bgpos220009 { background-position: left 15% bottom , right 15% bottom 15px , right 15% center }
bgpos220010 { background-position: left 15% bottom 15% , right 15% bottom 15px , right 15% center }
bgpos220011 { background-position: left 15% bottom 15px , right 15% bottom 15px , right 15% center }
bgpos220012 { background-position: left 15% top , right 15% bottom 15px , right 15% center }
bgpos220013 { background-position: left 15% top 15% , right 15% bottom 15px , right 15% center }
bgpos220014 { background-position: left 15% top 15px , right 15% bottom 15px , right 15% center }
bgpos220015 { background-position: left 15% center , right 15% bottom 15px , right 15% center }
bgpos220016 { background-position: left 15px bottom , right 15% bottom 15px , right 15% center }
bgpos220017 { background-position: left 15px bottom 15% , right 15% bottom 15px , right 15% center }
bgpos220018 { background-position: left 15px bottom 15px , right 15% bottom 15px , right 15% center }
bgpos220019 { background-position: left 15px top , right 15% bottom 15px , right 15% center }
bgpos220020 { background-position: left 15px top 15% , right 15% bottom 15px , right 15% center }
bgpos220021 { background-position: left 15px top 15px , right 15% bottom 15px , right 15% center }
bgpos220022 { background-position: left 15px center , right 15% bottom 15px , right 15% center }
bgpos220023 { background-position: left center , right 15% bottom 15px , right 15% center }
bgpos220024 { background-position: right bottom , right 15% bottom 15px , right 15% center }
bgpos220025 { background-position: right bottom 15% , right 15% bottom 15px , right 15% center }
bgpos220026 { background-position: right bottom 15px , right 15% bottom 15px , right 15% center }
bgpos220027 { background-position: right top , right 15% bottom 15px , right 15% center }
bgpos220028 { background-position: right top 15% , right 15% bottom 15px , right 15% center }
bgpos220029 { background-position: right top 15px , right 15% bottom 15px , right 15% center }
bgpos220030 { background-position: right 15% bottom , right 15% bottom 15px , right 15% center }
bgpos220031 { background-position: right 15% bottom 15% , right 15% bottom 15px , right 15% center }
bgpos220032 { background-position: right 15% bottom 15px , right 15% bottom 15px , right 15% center }
bgpos220033 { background-position: right 15% top , right 15% bottom 15px , right 15% center }
bgpos220034 { background-position: right 15% top 15% , right 15% bottom 15px , right 15% center }
bgpos220035 { background-position: right 15% top 15px , right 15% bottom 15px , right 15% center }
bgpos220036 { background-position: right 15% center , right 15% bottom 15px , right 15% center }
bgpos220037 { background-position: right 15px bottom , right 15% bottom 15px , right 15% center }
bgpos220038 { background-position: right 15px bottom 15% , right 15% bottom 15px , right 15% center }
bgpos220039 { background-position: right 15px bottom 15px , right 15% bottom 15px , right 15% center }
bgpos220040 { background-position: right 15px top , right 15% bottom 15px , right 15% center }
bgpos220041 { background-position: right 15px top 15% , right 15% bottom 15px , right 15% center }
bgpos220042 { background-position: right 15px top 15px , right 15% bottom 15px , right 15% center }
bgpos220043 { background-position: right 15px center , right 15% bottom 15px , right 15% center }
bgpos220044 { background-position: right center , right 15% bottom 15px , right 15% center }
bgpos220045 { background-position: 100px , right 15% bottom 15px , right 15% center }
bgpos220046 { background-position: 100px 10% , right 15% bottom 15px , right 15% center }
bgpos220047 { background-position: 100px 100px , right 15% bottom 15px , right 15% center }
bgpos220048 { background-position: 100px bottom , right 15% bottom 15px , right 15% center }
bgpos220049 { background-position: 100px center , right 15% bottom 15px , right 15% center }
bgpos220050 { background-position: 100px top , right 15% bottom 15px , right 15% center }
bgpos220051 { background-position: 50% , right 15% bottom 15px , right 15% center }
bgpos220052 { background-position: 50% 10% , right 15% bottom 15px , right 15% center }
bgpos220053 { background-position: 50% 100px , right 15% bottom 15px , right 15% center }
bgpos220054 { background-position: 50% bottom , right 15% bottom 15px , right 15% center }
bgpos220055 { background-position: 50% center , right 15% bottom 15px , right 15% center }
bgpos220056 { background-position: 50% top , right 15% bottom 15px , right 15% center }
bgpos220057 { background-position: bottom, right 15% bottom 15px , right 15% center }
bgpos220058 { background-position: center , right 15% bottom 15px , right 15% center }
bgpos220059 { background-position: center bottom , right 15% bottom 15px , right 15% center }
bgpos220060 { background-position: center bottom 15% , right 15% bottom 15px , right 15% center }
bgpos220061 { background-position: center bottom 15px , right 15% bottom 15px , right 15% center }
bgpos220062 { background-position: center top , right 15% bottom 15px , right 15% center }
bgpos220063 { background-position: center top 15% , right 15% bottom 15px , right 15% center }
bgpos220064 { background-position: center top 15px , right 15% bottom 15px , right 15% center }
bgpos220065 { background-position: center 10% , right 15% bottom 15px , right 15% center }
bgpos220066 { background-position: center 100px , right 15% bottom 15px , right 15% center }
bgpos220067 { background-position: center bottom , right 15% bottom 15px , right 15% center }
bgpos220068 { background-position: center center , right 15% bottom 15px , right 15% center }
bgpos220069 { background-position: center top , right 15% bottom 15px , right 15% center }
bgpos220070 { background-position: left , right 15% bottom 15px , right 15% center }
bgpos220071 { background-position: left 10% , right 15% bottom 15px , right 15% center }
bgpos220072 { background-position: left 100px , right 15% bottom 15px , right 15% center }
bgpos220073 { background-position: left bottom , right 15% bottom 15px , right 15% center }
bgpos220074 { background-position: left center , right 15% bottom 15px , right 15% center }
bgpos220075 { background-position: left top , right 15% bottom 15px , right 15% center }
bgpos220076 { background-position: right , right 15% bottom 15px , right 15% center }
bgpos220077 { background-position: right 10% , right 15% bottom 15px , right 15% center }
bgpos220078 { background-position: right 100px , right 15% bottom 15px , right 15% center }
bgpos220079 { background-position: right bottom , right 15% bottom 15px , right 15% center }
bgpos220080 { background-position: right center , right 15% bottom 15px , right 15% center }
bgpos220081 { background-position: right top , right 15% bottom 15px , right 15% center }
bgpos220082 { background-position: top , right 15% bottom 15px , right 15% center }
bgpos220083 { background-position: left bottom , right 15% top , right 15% center }
bgpos220084 { background-position: left bottom 15% , right 15% top , right 15% center }
bgpos220085 { background-position: left bottom 15px , right 15% top , right 15% center }
bgpos220086 { background-position: left top , right 15% top , right 15% center }
bgpos220087 { background-position: left top 15% , right 15% top , right 15% center }
bgpos220088 { background-position: left top 15px , right 15% top , right 15% center }
bgpos220089 { background-position: left 15% bottom , right 15% top , right 15% center }
bgpos220090 { background-position: left 15% bottom 15% , right 15% top , right 15% center }
bgpos220091 { background-position: left 15% bottom 15px , right 15% top , right 15% center }
bgpos220092 { background-position: left 15% top , right 15% top , right 15% center }
bgpos220093 { background-position: left 15% top 15% , right 15% top , right 15% center }
bgpos220094 { background-position: left 15% top 15px , right 15% top , right 15% center }
bgpos220095 { background-position: left 15% center , right 15% top , right 15% center }
bgpos220096 { background-position: left 15px bottom , right 15% top , right 15% center }
bgpos220097 { background-position: left 15px bottom 15% , right 15% top , right 15% center }
bgpos220098 { background-position: left 15px bottom 15px , right 15% top , right 15% center }
bgpos220099 { background-position: left 15px top , right 15% top , right 15% center }
bgpos220100 { background-position: left 15px top 15% , right 15% top , right 15% center }
bgpos220101 { background-position: left 15px top 15px , right 15% top , right 15% center }
bgpos220102 { background-position: left 15px center , right 15% top , right 15% center }
bgpos220103 { background-position: left center , right 15% top , right 15% center }
bgpos220104 { background-position: right bottom , right 15% top , right 15% center }
bgpos220105 { background-position: right bottom 15% , right 15% top , right 15% center }
bgpos220106 { background-position: right bottom 15px , right 15% top , right 15% center }
bgpos220107 { background-position: right top , right 15% top , right 15% center }
bgpos220108 { background-position: right top 15% , right 15% top , right 15% center }
bgpos220109 { background-position: right top 15px , right 15% top , right 15% center }
bgpos220110 { background-position: right 15% bottom , right 15% top , right 15% center }
bgpos220111 { background-position: right 15% bottom 15% , right 15% top , right 15% center }
bgpos220112 { background-position: right 15% bottom 15px , right 15% top , right 15% center }
bgpos220113 { background-position: right 15% top , right 15% top , right 15% center }
bgpos220114 { background-position: right 15% top 15% , right 15% top , right 15% center }
bgpos220115 { background-position: right 15% top 15px , right 15% top , right 15% center }
bgpos220116 { background-position: right 15% center , right 15% top , right 15% center }
bgpos220117 { background-position: right 15px bottom , right 15% top , right 15% center }
bgpos220118 { background-position: right 15px bottom 15% , right 15% top , right 15% center }
bgpos220119 { background-position: right 15px bottom 15px , right 15% top , right 15% center }
bgpos220120 { background-position: right 15px top , right 15% top , right 15% center }
bgpos220121 { background-position: right 15px top 15% , right 15% top , right 15% center }
bgpos220122 { background-position: right 15px top 15px , right 15% top , right 15% center }
bgpos220123 { background-position: right 15px center , right 15% top , right 15% center }
bgpos220124 { background-position: right center , right 15% top , right 15% center }
bgpos220125 { background-position: 100px , right 15% top , right 15% center }
bgpos220126 { background-position: 100px 10% , right 15% top , right 15% center }
bgpos220127 { background-position: 100px 100px , right 15% top , right 15% center }
bgpos220128 { background-position: 100px bottom , right 15% top , right 15% center }
bgpos220129 { background-position: 100px center , right 15% top , right 15% center }
bgpos220130 { background-position: 100px top , right 15% top , right 15% center }
bgpos220131 { background-position: 50% , right 15% top , right 15% center }
bgpos220132 { background-position: 50% 10% , right 15% top , right 15% center }
bgpos220133 { background-position: 50% 100px , right 15% top , right 15% center }
bgpos220134 { background-position: 50% bottom , right 15% top , right 15% center }
bgpos220135 { background-position: 50% center , right 15% top , right 15% center }
bgpos220136 { background-position: 50% top , right 15% top , right 15% center }
bgpos220137 { background-position: bottom, right 15% top , right 15% center }
bgpos220138 { background-position: center , right 15% top , right 15% center }
bgpos220139 { background-position: center bottom , right 15% top , right 15% center }
bgpos220140 { background-position: center bottom 15% , right 15% top , right 15% center }
bgpos220141 { background-position: center bottom 15px , right 15% top , right 15% center }
bgpos220142 { background-position: center top , right 15% top , right 15% center }
bgpos220143 { background-position: center top 15% , right 15% top , right 15% center }
bgpos220144 { background-position: center top 15px , right 15% top , right 15% center }
bgpos220145 { background-position: center 10% , right 15% top , right 15% center }
bgpos220146 { background-position: center 100px , right 15% top , right 15% center }
bgpos220147 { background-position: center bottom , right 15% top , right 15% center }
bgpos220148 { background-position: center center , right 15% top , right 15% center }
bgpos220149 { background-position: center top , right 15% top , right 15% center }
bgpos220150 { background-position: left , right 15% top , right 15% center }
bgpos220151 { background-position: left 10% , right 15% top , right 15% center }
bgpos220152 { background-position: left 100px , right 15% top , right 15% center }
bgpos220153 { background-position: left bottom , right 15% top , right 15% center }
bgpos220154 { background-position: left center , right 15% top , right 15% center }
bgpos220155 { background-position: left top , right 15% top , right 15% center }
bgpos220156 { background-position: right , right 15% top , right 15% center }
bgpos220157 { background-position: right 10% , right 15% top , right 15% center }
bgpos220158 { background-position: right 100px , right 15% top , right 15% center }
bgpos220159 { background-position: right bottom , right 15% top , right 15% center }
bgpos220160 { background-position: right center , right 15% top , right 15% center }
bgpos220161 { background-position: right top , right 15% top , right 15% center }
bgpos220162 { background-position: top , right 15% top , right 15% center }
bgpos220163 { background-position: left bottom , right 15% top 15% , right 15% center }
bgpos220164 { background-position: left bottom 15% , right 15% top 15% , right 15% center }
bgpos220165 { background-position: left bottom 15px , right 15% top 15% , right 15% center }
bgpos220166 { background-position: left top , right 15% top 15% , right 15% center }
bgpos220167 { background-position: left top 15% , right 15% top 15% , right 15% center }
bgpos220168 { background-position: left top 15px , right 15% top 15% , right 15% center }
bgpos220169 { background-position: left 15% bottom , right 15% top 15% , right 15% center }
bgpos220170 { background-position: left 15% bottom 15% , right 15% top 15% , right 15% center }
bgpos220171 { background-position: left 15% bottom 15px , right 15% top 15% , right 15% center }
bgpos220172 { background-position: left 15% top , right 15% top 15% , right 15% center }
bgpos220173 { background-position: left 15% top 15% , right 15% top 15% , right 15% center }
bgpos220174 { background-position: left 15% top 15px , right 15% top 15% , right 15% center }
bgpos220175 { background-position: left 15% center , right 15% top 15% , right 15% center }
bgpos220176 { background-position: left 15px bottom , right 15% top 15% , right 15% center }
bgpos220177 { background-position: left 15px bottom 15% , right 15% top 15% , right 15% center }
bgpos220178 { background-position: left 15px bottom 15px , right 15% top 15% , right 15% center }
bgpos220179 { background-position: left 15px top , right 15% top 15% , right 15% center }
bgpos220180 { background-position: left 15px top 15% , right 15% top 15% , right 15% center }
bgpos220181 { background-position: left 15px top 15px , right 15% top 15% , right 15% center }
bgpos220182 { background-position: left 15px center , right 15% top 15% , right 15% center }
bgpos220183 { background-position: left center , right 15% top 15% , right 15% center }
bgpos220184 { background-position: right bottom , right 15% top 15% , right 15% center }
bgpos220185 { background-position: right bottom 15% , right 15% top 15% , right 15% center }
bgpos220186 { background-position: right bottom 15px , right 15% top 15% , right 15% center }
bgpos220187 { background-position: right top , right 15% top 15% , right 15% center }
bgpos220188 { background-position: right top 15% , right 15% top 15% , right 15% center }
bgpos220189 { background-position: right top 15px , right 15% top 15% , right 15% center }
bgpos220190 { background-position: right 15% bottom , right 15% top 15% , right 15% center }
bgpos220191 { background-position: right 15% bottom 15% , right 15% top 15% , right 15% center }
bgpos220192 { background-position: right 15% bottom 15px , right 15% top 15% , right 15% center }
bgpos220193 { background-position: right 15% top , right 15% top 15% , right 15% center }
bgpos220194 { background-position: right 15% top 15% , right 15% top 15% , right 15% center }
bgpos220195 { background-position: right 15% top 15px , right 15% top 15% , right 15% center }
bgpos220196 { background-position: right 15% center , right 15% top 15% , right 15% center }
bgpos220197 { background-position: right 15px bottom , right 15% top 15% , right 15% center }
bgpos220198 { background-position: right 15px bottom 15% , right 15% top 15% , right 15% center }
bgpos220199 { background-position: right 15px bottom 15px , right 15% top 15% , right 15% center }
bgpos220200 { background-position: right 15px top , right 15% top 15% , right 15% center }
bgpos220201 { background-position: right 15px top 15% , right 15% top 15% , right 15% center }
bgpos220202 { background-position: right 15px top 15px , right 15% top 15% , right 15% center }
bgpos220203 { background-position: right 15px center , right 15% top 15% , right 15% center }
bgpos220204 { background-position: right center , right 15% top 15% , right 15% center }
bgpos220205 { background-position: 100px , right 15% top 15% , right 15% center }
bgpos220206 { background-position: 100px 10% , right 15% top 15% , right 15% center }
bgpos220207 { background-position: 100px 100px , right 15% top 15% , right 15% center }
bgpos220208 { background-position: 100px bottom , right 15% top 15% , right 15% center }
bgpos220209 { background-position: 100px center , right 15% top 15% , right 15% center }
bgpos220210 { background-position: 100px top , right 15% top 15% , right 15% center }
bgpos220211 { background-position: 50% , right 15% top 15% , right 15% center }
bgpos220212 { background-position: 50% 10% , right 15% top 15% , right 15% center }
bgpos220213 { background-position: 50% 100px , right 15% top 15% , right 15% center }
bgpos220214 { background-position: 50% bottom , right 15% top 15% , right 15% center }
bgpos220215 { background-position: 50% center , right 15% top 15% , right 15% center }
bgpos220216 { background-position: 50% top , right 15% top 15% , right 15% center }
bgpos220217 { background-position: bottom, right 15% top 15% , right 15% center }
bgpos220218 { background-position: center , right 15% top 15% , right 15% center }
bgpos220219 { background-position: center bottom , right 15% top 15% , right 15% center }
bgpos220220 { background-position: center bottom 15% , right 15% top 15% , right 15% center }
bgpos220221 { background-position: center bottom 15px , right 15% top 15% , right 15% center }
bgpos220222 { background-position: center top , right 15% top 15% , right 15% center }
bgpos220223 { background-position: center top 15% , right 15% top 15% , right 15% center }
bgpos220224 { background-position: center top 15px , right 15% top 15% , right 15% center }
bgpos220225 { background-position: center 10% , right 15% top 15% , right 15% center }
bgpos220226 { background-position: center 100px , right 15% top 15% , right 15% center }
bgpos220227 { background-position: center bottom , right 15% top 15% , right 15% center }
bgpos220228 { background-position: center center , right 15% top 15% , right 15% center }
bgpos220229 { background-position: center top , right 15% top 15% , right 15% center }
bgpos220230 { background-position: left , right 15% top 15% , right 15% center }
bgpos220231 { background-position: left 10% , right 15% top 15% , right 15% center }
bgpos220232 { background-position: left 100px , right 15% top 15% , right 15% center }
bgpos220233 { background-position: left bottom , right 15% top 15% , right 15% center }
bgpos220234 { background-position: left center , right 15% top 15% , right 15% center }
bgpos220235 { background-position: left top , right 15% top 15% , right 15% center }
bgpos220236 { background-position: right , right 15% top 15% , right 15% center }
bgpos220237 { background-position: right 10% , right 15% top 15% , right 15% center }
bgpos220238 { background-position: right 100px , right 15% top 15% , right 15% center }
bgpos220239 { background-position: right bottom , right 15% top 15% , right 15% center }
bgpos220240 { background-position: right center , right 15% top 15% , right 15% center }
bgpos220241 { background-position: right top , right 15% top 15% , right 15% center }
bgpos220242 { background-position: top , right 15% top 15% , right 15% center }
bgpos220243 { background-position: left bottom , right 15% top 15px , right 15% center }
bgpos220244 { background-position: left bottom 15% , right 15% top 15px , right 15% center }
bgpos220245 { background-position: left bottom 15px , right 15% top 15px , right 15% center }
bgpos220246 { background-position: left top , right 15% top 15px , right 15% center }
bgpos220247 { background-position: left top 15% , right 15% top 15px , right 15% center }
bgpos220248 { background-position: left top 15px , right 15% top 15px , right 15% center }
bgpos220249 { background-position: left 15% bottom , right 15% top 15px , right 15% center }
bgpos220250 { background-position: left 15% bottom 15% , right 15% top 15px , right 15% center }
bgpos220251 { background-position: left 15% bottom 15px , right 15% top 15px , right 15% center }
bgpos220252 { background-position: left 15% top , right 15% top 15px , right 15% center }
bgpos220253 { background-position: left 15% top 15% , right 15% top 15px , right 15% center }
bgpos220254 { background-position: left 15% top 15px , right 15% top 15px , right 15% center }
bgpos220255 { background-position: left 15% center , right 15% top 15px , right 15% center }
bgpos220256 { background-position: left 15px bottom , right 15% top 15px , right 15% center }
bgpos220257 { background-position: left 15px bottom 15% , right 15% top 15px , right 15% center }
bgpos220258 { background-position: left 15px bottom 15px , right 15% top 15px , right 15% center }
bgpos220259 { background-position: left 15px top , right 15% top 15px , right 15% center }
bgpos220260 { background-position: left 15px top 15% , right 15% top 15px , right 15% center }
bgpos220261 { background-position: left 15px top 15px , right 15% top 15px , right 15% center }
bgpos220262 { background-position: left 15px center , right 15% top 15px , right 15% center }
bgpos220263 { background-position: left center , right 15% top 15px , right 15% center }
bgpos220264 { background-position: right bottom , right 15% top 15px , right 15% center }
bgpos220265 { background-position: right bottom 15% , right 15% top 15px , right 15% center }
bgpos220266 { background-position: right bottom 15px , right 15% top 15px , right 15% center }
bgpos220267 { background-position: right top , right 15% top 15px , right 15% center }
bgpos220268 { background-position: right top 15% , right 15% top 15px , right 15% center }
bgpos220269 { background-position: right top 15px , right 15% top 15px , right 15% center }
bgpos220270 { background-position: right 15% bottom , right 15% top 15px , right 15% center }
bgpos220271 { background-position: right 15% bottom 15% , right 15% top 15px , right 15% center }
bgpos220272 { background-position: right 15% bottom 15px , right 15% top 15px , right 15% center }
bgpos220273 { background-position: right 15% top , right 15% top 15px , right 15% center }
bgpos220274 { background-position: right 15% top 15% , right 15% top 15px , right 15% center }
bgpos220275 { background-position: right 15% top 15px , right 15% top 15px , right 15% center }
bgpos220276 { background-position: right 15% center , right 15% top 15px , right 15% center }
bgpos220277 { background-position: right 15px bottom , right 15% top 15px , right 15% center }
bgpos220278 { background-position: right 15px bottom 15% , right 15% top 15px , right 15% center }
bgpos220279 { background-position: right 15px bottom 15px , right 15% top 15px , right 15% center }
bgpos220280 { background-position: right 15px top , right 15% top 15px , right 15% center }
bgpos220281 { background-position: right 15px top 15% , right 15% top 15px , right 15% center }
bgpos220282 { background-position: right 15px top 15px , right 15% top 15px , right 15% center }
bgpos220283 { background-position: right 15px center , right 15% top 15px , right 15% center }
bgpos220284 { background-position: right center , right 15% top 15px , right 15% center }
bgpos220285 { background-position: 100px , right 15% top 15px , right 15% center }
bgpos220286 { background-position: 100px 10% , right 15% top 15px , right 15% center }
bgpos220287 { background-position: 100px 100px , right 15% top 15px , right 15% center }
bgpos220288 { background-position: 100px bottom , right 15% top 15px , right 15% center }
bgpos220289 { background-position: 100px center , right 15% top 15px , right 15% center }
bgpos220290 { background-position: 100px top , right 15% top 15px , right 15% center }
bgpos220291 { background-position: 50% , right 15% top 15px , right 15% center }
bgpos220292 { background-position: 50% 10% , right 15% top 15px , right 15% center }
bgpos220293 { background-position: 50% 100px , right 15% top 15px , right 15% center }
bgpos220294 { background-position: 50% bottom , right 15% top 15px , right 15% center }
bgpos220295 { background-position: 50% center , right 15% top 15px , right 15% center }
bgpos220296 { background-position: 50% top , right 15% top 15px , right 15% center }
bgpos220297 { background-position: bottom, right 15% top 15px , right 15% center }
bgpos220298 { background-position: center , right 15% top 15px , right 15% center }
bgpos220299 { background-position: center bottom , right 15% top 15px , right 15% center }
bgpos220300 { background-position: center bottom 15% , right 15% top 15px , right 15% center }
bgpos220301 { background-position: center bottom 15px , right 15% top 15px , right 15% center }
bgpos220302 { background-position: center top , right 15% top 15px , right 15% center }
bgpos220303 { background-position: center top 15% , right 15% top 15px , right 15% center }
bgpos220304 { background-position: center top 15px , right 15% top 15px , right 15% center }
bgpos220305 { background-position: center 10% , right 15% top 15px , right 15% center }
bgpos220306 { background-position: center 100px , right 15% top 15px , right 15% center }
bgpos220307 { background-position: center bottom , right 15% top 15px , right 15% center }
bgpos220308 { background-position: center center , right 15% top 15px , right 15% center }
bgpos220309 { background-position: center top , right 15% top 15px , right 15% center }
bgpos220310 { background-position: left , right 15% top 15px , right 15% center }
bgpos220311 { background-position: left 10% , right 15% top 15px , right 15% center }
bgpos220312 { background-position: left 100px , right 15% top 15px , right 15% center }
bgpos220313 { background-position: left bottom , right 15% top 15px , right 15% center }
bgpos220314 { background-position: left center , right 15% top 15px , right 15% center }
bgpos220315 { background-position: left top , right 15% top 15px , right 15% center }
bgpos220316 { background-position: right , right 15% top 15px , right 15% center }
bgpos220317 { background-position: right 10% , right 15% top 15px , right 15% center }
bgpos220318 { background-position: right 100px , right 15% top 15px , right 15% center }
bgpos220319 { background-position: right bottom , right 15% top 15px , right 15% center }
bgpos220320 { background-position: right center , right 15% top 15px , right 15% center }
bgpos220321 { background-position: right top , right 15% top 15px , right 15% center }
bgpos220322 { background-position: top , right 15% top 15px , right 15% center }
bgpos220323 { background-position: left bottom , right 15% center , right 15% center }
bgpos220324 { background-position: left bottom 15% , right 15% center , right 15% center }
bgpos220325 { background-position: left bottom 15px , right 15% center , right 15% center }
bgpos220326 { background-position: left top , right 15% center , right 15% center }
bgpos220327 { background-position: left top 15% , right 15% center , right 15% center }
bgpos220328 { background-position: left top 15px , right 15% center , right 15% center }
bgpos220329 { background-position: left 15% bottom , right 15% center , right 15% center }
bgpos220330 { background-position: left 15% bottom 15% , right 15% center , right 15% center }
bgpos220331 { background-position: left 15% bottom 15px , right 15% center , right 15% center }
bgpos220332 { background-position: left 15% top , right 15% center , right 15% center }
bgpos220333 { background-position: left 15% top 15% , right 15% center , right 15% center }
bgpos220334 { background-position: left 15% top 15px , right 15% center , right 15% center }
bgpos220335 { background-position: left 15% center , right 15% center , right 15% center }
bgpos220336 { background-position: left 15px bottom , right 15% center , right 15% center }
bgpos220337 { background-position: left 15px bottom 15% , right 15% center , right 15% center }
bgpos220338 { background-position: left 15px bottom 15px , right 15% center , right 15% center }
bgpos220339 { background-position: left 15px top , right 15% center , right 15% center }
bgpos220340 { background-position: left 15px top 15% , right 15% center , right 15% center }
bgpos220341 { background-position: left 15px top 15px , right 15% center , right 15% center }
bgpos220342 { background-position: left 15px center , right 15% center , right 15% center }
bgpos220343 { background-position: left center , right 15% center , right 15% center }
bgpos220344 { background-position: right bottom , right 15% center , right 15% center }
bgpos220345 { background-position: right bottom 15% , right 15% center , right 15% center }
bgpos220346 { background-position: right bottom 15px , right 15% center , right 15% center }
bgpos220347 { background-position: right top , right 15% center , right 15% center }
bgpos220348 { background-position: right top 15% , right 15% center , right 15% center }
bgpos220349 { background-position: right top 15px , right 15% center , right 15% center }
bgpos220350 { background-position: right 15% bottom , right 15% center , right 15% center }
bgpos220351 { background-position: right 15% bottom 15% , right 15% center , right 15% center }
bgpos220352 { background-position: right 15% bottom 15px , right 15% center , right 15% center }
bgpos220353 { background-position: right 15% top , right 15% center , right 15% center }
bgpos220354 { background-position: right 15% top 15% , right 15% center , right 15% center }
bgpos220355 { background-position: right 15% top 15px , right 15% center , right 15% center }
bgpos220356 { background-position: right 15% center , right 15% center , right 15% center }
bgpos220357 { background-position: right 15px bottom , right 15% center , right 15% center }
bgpos220358 { background-position: right 15px bottom 15% , right 15% center , right 15% center }
bgpos220359 { background-position: right 15px bottom 15px , right 15% center , right 15% center }
bgpos220360 { background-position: right 15px top , right 15% center , right 15% center }
bgpos220361 { background-position: right 15px top 15% , right 15% center , right 15% center }
bgpos220362 { background-position: right 15px top 15px , right 15% center , right 15% center }
bgpos220363 { background-position: right 15px center , right 15% center , right 15% center }
bgpos220364 { background-position: right center , right 15% center , right 15% center }
bgpos220365 { background-position: 100px , right 15% center , right 15% center }
bgpos220366 { background-position: 100px 10% , right 15% center , right 15% center }
bgpos220367 { background-position: 100px 100px , right 15% center , right 15% center }
bgpos220368 { background-position: 100px bottom , right 15% center , right 15% center }
bgpos220369 { background-position: 100px center , right 15% center , right 15% center }
bgpos220370 { background-position: 100px top , right 15% center , right 15% center }
bgpos220371 { background-position: 50% , right 15% center , right 15% center }
bgpos220372 { background-position: 50% 10% , right 15% center , right 15% center }
bgpos220373 { background-position: 50% 100px , right 15% center , right 15% center }
bgpos220374 { background-position: 50% bottom , right 15% center , right 15% center }
bgpos220375 { background-position: 50% center , right 15% center , right 15% center }
bgpos220376 { background-position: 50% top , right 15% center , right 15% center }
bgpos220377 { background-position: bottom, right 15% center , right 15% center }
bgpos220378 { background-position: center , right 15% center , right 15% center }
bgpos220379 { background-position: center bottom , right 15% center , right 15% center }
bgpos220380 { background-position: center bottom 15% , right 15% center , right 15% center }
bgpos220381 { background-position: center bottom 15px , right 15% center , right 15% center }
bgpos220382 { background-position: center top , right 15% center , right 15% center }
bgpos220383 { background-position: center top 15% , right 15% center , right 15% center }
bgpos220384 { background-position: center top 15px , right 15% center , right 15% center }
bgpos220385 { background-position: center 10% , right 15% center , right 15% center }
bgpos220386 { background-position: center 100px , right 15% center , right 15% center }
bgpos220387 { background-position: center bottom , right 15% center , right 15% center }
bgpos220388 { background-position: center center , right 15% center , right 15% center }
bgpos220389 { background-position: center top , right 15% center , right 15% center }
bgpos220390 { background-position: left , right 15% center , right 15% center }
bgpos220391 { background-position: left 10% , right 15% center , right 15% center }
bgpos220392 { background-position: left 100px , right 15% center , right 15% center }
bgpos220393 { background-position: left bottom , right 15% center , right 15% center }
bgpos220394 { background-position: left center , right 15% center , right 15% center }
bgpos220395 { background-position: left top , right 15% center , right 15% center }
bgpos220396 { background-position: right , right 15% center , right 15% center }
bgpos220397 { background-position: right 10% , right 15% center , right 15% center }
bgpos220398 { background-position: right 100px , right 15% center , right 15% center }
bgpos220399 { background-position: right bottom , right 15% center , right 15% center }
bgpos220400 { background-position: right center , right 15% center , right 15% center }
bgpos220401 { background-position: right top , right 15% center , right 15% center }
bgpos220402 { background-position: top , right 15% center , right 15% center }
bgpos220403 { background-position: left bottom , right 15px bottom , right 15% center }
bgpos220404 { background-position: left bottom 15% , right 15px bottom , right 15% center }
bgpos220405 { background-position: left bottom 15px , right 15px bottom , right 15% center }
bgpos220406 { background-position: left top , right 15px bottom , right 15% center }
bgpos220407 { background-position: left top 15% , right 15px bottom , right 15% center }
bgpos220408 { background-position: left top 15px , right 15px bottom , right 15% center }
bgpos220409 { background-position: left 15% bottom , right 15px bottom , right 15% center }
bgpos220410 { background-position: left 15% bottom 15% , right 15px bottom , right 15% center }
bgpos220411 { background-position: left 15% bottom 15px , right 15px bottom , right 15% center }
bgpos220412 { background-position: left 15% top , right 15px bottom , right 15% center }
bgpos220413 { background-position: left 15% top 15% , right 15px bottom , right 15% center }
bgpos220414 { background-position: left 15% top 15px , right 15px bottom , right 15% center }
bgpos220415 { background-position: left 15% center , right 15px bottom , right 15% center }
bgpos220416 { background-position: left 15px bottom , right 15px bottom , right 15% center }
bgpos220417 { background-position: left 15px bottom 15% , right 15px bottom , right 15% center }
bgpos220418 { background-position: left 15px bottom 15px , right 15px bottom , right 15% center }
bgpos220419 { background-position: left 15px top , right 15px bottom , right 15% center }
bgpos220420 { background-position: left 15px top 15% , right 15px bottom , right 15% center }
bgpos220421 { background-position: left 15px top 15px , right 15px bottom , right 15% center }
bgpos220422 { background-position: left 15px center , right 15px bottom , right 15% center }
bgpos220423 { background-position: left center , right 15px bottom , right 15% center }
bgpos220424 { background-position: right bottom , right 15px bottom , right 15% center }
bgpos220425 { background-position: right bottom 15% , right 15px bottom , right 15% center }
bgpos220426 { background-position: right bottom 15px , right 15px bottom , right 15% center }
bgpos220427 { background-position: right top , right 15px bottom , right 15% center }
bgpos220428 { background-position: right top 15% , right 15px bottom , right 15% center }
bgpos220429 { background-position: right top 15px , right 15px bottom , right 15% center }
bgpos220430 { background-position: right 15% bottom , right 15px bottom , right 15% center }
bgpos220431 { background-position: right 15% bottom 15% , right 15px bottom , right 15% center }
bgpos220432 { background-position: right 15% bottom 15px , right 15px bottom , right 15% center }
bgpos220433 { background-position: right 15% top , right 15px bottom , right 15% center }
bgpos220434 { background-position: right 15% top 15% , right 15px bottom , right 15% center }
bgpos220435 { background-position: right 15% top 15px , right 15px bottom , right 15% center }
bgpos220436 { background-position: right 15% center , right 15px bottom , right 15% center }
bgpos220437 { background-position: right 15px bottom , right 15px bottom , right 15% center }
bgpos220438 { background-position: right 15px bottom 15% , right 15px bottom , right 15% center }
bgpos220439 { background-position: right 15px bottom 15px , right 15px bottom , right 15% center }
bgpos220440 { background-position: right 15px top , right 15px bottom , right 15% center }
bgpos220441 { background-position: right 15px top 15% , right 15px bottom , right 15% center }
bgpos220442 { background-position: right 15px top 15px , right 15px bottom , right 15% center }
bgpos220443 { background-position: right 15px center , right 15px bottom , right 15% center }
bgpos220444 { background-position: right center , right 15px bottom , right 15% center }
bgpos220445 { background-position: 100px , right 15px bottom , right 15% center }
bgpos220446 { background-position: 100px 10% , right 15px bottom , right 15% center }
bgpos220447 { background-position: 100px 100px , right 15px bottom , right 15% center }
bgpos220448 { background-position: 100px bottom , right 15px bottom , right 15% center }
bgpos220449 { background-position: 100px center , right 15px bottom , right 15% center }
bgpos220450 { background-position: 100px top , right 15px bottom , right 15% center }
bgpos220451 { background-position: 50% , right 15px bottom , right 15% center }
bgpos220452 { background-position: 50% 10% , right 15px bottom , right 15% center }
bgpos220453 { background-position: 50% 100px , right 15px bottom , right 15% center }
bgpos220454 { background-position: 50% bottom , right 15px bottom , right 15% center }
bgpos220455 { background-position: 50% center , right 15px bottom , right 15% center }
bgpos220456 { background-position: 50% top , right 15px bottom , right 15% center }
bgpos220457 { background-position: bottom, right 15px bottom , right 15% center }
bgpos220458 { background-position: center , right 15px bottom , right 15% center }
bgpos220459 { background-position: center bottom , right 15px bottom , right 15% center }
bgpos220460 { background-position: center bottom 15% , right 15px bottom , right 15% center }
bgpos220461 { background-position: center bottom 15px , right 15px bottom , right 15% center }
bgpos220462 { background-position: center top , right 15px bottom , right 15% center }
bgpos220463 { background-position: center top 15% , right 15px bottom , right 15% center }
bgpos220464 { background-position: center top 15px , right 15px bottom , right 15% center }
bgpos220465 { background-position: center 10% , right 15px bottom , right 15% center }
bgpos220466 { background-position: center 100px , right 15px bottom , right 15% center }
bgpos220467 { background-position: center bottom , right 15px bottom , right 15% center }
bgpos220468 { background-position: center center , right 15px bottom , right 15% center }
bgpos220469 { background-position: center top , right 15px bottom , right 15% center }
bgpos220470 { background-position: left , right 15px bottom , right 15% center }
bgpos220471 { background-position: left 10% , right 15px bottom , right 15% center }
bgpos220472 { background-position: left 100px , right 15px bottom , right 15% center }
bgpos220473 { background-position: left bottom , right 15px bottom , right 15% center }
bgpos220474 { background-position: left center , right 15px bottom , right 15% center }
bgpos220475 { background-position: left top , right 15px bottom , right 15% center }
bgpos220476 { background-position: right , right 15px bottom , right 15% center }
bgpos220477 { background-position: right 10% , right 15px bottom , right 15% center }
bgpos220478 { background-position: right 100px , right 15px bottom , right 15% center }
bgpos220479 { background-position: right bottom , right 15px bottom , right 15% center }
bgpos220480 { background-position: right center , right 15px bottom , right 15% center }
bgpos220481 { background-position: right top , right 15px bottom , right 15% center }
bgpos220482 { background-position: top , right 15px bottom , right 15% center }
bgpos220483 { background-position: left bottom , right 15px bottom 15% , right 15% center }
bgpos220484 { background-position: left bottom 15% , right 15px bottom 15% , right 15% center }
bgpos220485 { background-position: left bottom 15px , right 15px bottom 15% , right 15% center }
bgpos220486 { background-position: left top , right 15px bottom 15% , right 15% center }
bgpos220487 { background-position: left top 15% , right 15px bottom 15% , right 15% center }
bgpos220488 { background-position: left top 15px , right 15px bottom 15% , right 15% center }
bgpos220489 { background-position: left 15% bottom , right 15px bottom 15% , right 15% center }
bgpos220490 { background-position: left 15% bottom 15% , right 15px bottom 15% , right 15% center }
bgpos220491 { background-position: left 15% bottom 15px , right 15px bottom 15% , right 15% center }
bgpos220492 { background-position: left 15% top , right 15px bottom 15% , right 15% center }
bgpos220493 { background-position: left 15% top 15% , right 15px bottom 15% , right 15% center }
bgpos220494 { background-position: left 15% top 15px , right 15px bottom 15% , right 15% center }
bgpos220495 { background-position: left 15% center , right 15px bottom 15% , right 15% center }
bgpos220496 { background-position: left 15px bottom , right 15px bottom 15% , right 15% center }
bgpos220497 { background-position: left 15px bottom 15% , right 15px bottom 15% , right 15% center }
bgpos220498 { background-position: left 15px bottom 15px , right 15px bottom 15% , right 15% center }
bgpos220499 { background-position: left 15px top , right 15px bottom 15% , right 15% center }
bgpos220500 { background-position: left 15px top 15% , right 15px bottom 15% , right 15% center }
bgpos220501 { background-position: left 15px top 15px , right 15px bottom 15% , right 15% center }
bgpos220502 { background-position: left 15px center , right 15px bottom 15% , right 15% center }
bgpos220503 { background-position: left center , right 15px bottom 15% , right 15% center }
bgpos220504 { background-position: right bottom , right 15px bottom 15% , right 15% center }
bgpos220505 { background-position: right bottom 15% , right 15px bottom 15% , right 15% center }
bgpos220506 { background-position: right bottom 15px , right 15px bottom 15% , right 15% center }
bgpos220507 { background-position: right top , right 15px bottom 15% , right 15% center }
bgpos220508 { background-position: right top 15% , right 15px bottom 15% , right 15% center }
bgpos220509 { background-position: right top 15px , right 15px bottom 15% , right 15% center }
bgpos220510 { background-position: right 15% bottom , right 15px bottom 15% , right 15% center }
bgpos220511 { background-position: right 15% bottom 15% , right 15px bottom 15% , right 15% center }
bgpos220512 { background-position: right 15% bottom 15px , right 15px bottom 15% , right 15% center }
bgpos220513 { background-position: right 15% top , right 15px bottom 15% , right 15% center }
bgpos220514 { background-position: right 15% top 15% , right 15px bottom 15% , right 15% center }
bgpos220515 { background-position: right 15% top 15px , right 15px bottom 15% , right 15% center }
bgpos220516 { background-position: right 15% center , right 15px bottom 15% , right 15% center }
bgpos220517 { background-position: right 15px bottom , right 15px bottom 15% , right 15% center }
bgpos220518 { background-position: right 15px bottom 15% , right 15px bottom 15% , right 15% center }
bgpos220519 { background-position: right 15px bottom 15px , right 15px bottom 15% , right 15% center }
bgpos220520 { background-position: right 15px top , right 15px bottom 15% , right 15% center }
bgpos220521 { background-position: right 15px top 15% , right 15px bottom 15% , right 15% center }
bgpos220522 { background-position: right 15px top 15px , right 15px bottom 15% , right 15% center }
bgpos220523 { background-position: right 15px center , right 15px bottom 15% , right 15% center }
bgpos220524 { background-position: right center , right 15px bottom 15% , right 15% center }
bgpos220525 { background-position: 100px , right 15px bottom 15% , right 15% center }
bgpos220526 { background-position: 100px 10% , right 15px bottom 15% , right 15% center }
bgpos220527 { background-position: 100px 100px , right 15px bottom 15% , right 15% center }
bgpos220528 { background-position: 100px bottom , right 15px bottom 15% , right 15% center }
bgpos220529 { background-position: 100px center , right 15px bottom 15% , right 15% center }
bgpos220530 { background-position: 100px top , right 15px bottom 15% , right 15% center }
bgpos220531 { background-position: 50% , right 15px bottom 15% , right 15% center }
bgpos220532 { background-position: 50% 10% , right 15px bottom 15% , right 15% center }
bgpos220533 { background-position: 50% 100px , right 15px bottom 15% , right 15% center }
bgpos220534 { background-position: 50% bottom , right 15px bottom 15% , right 15% center }
bgpos220535 { background-position: 50% center , right 15px bottom 15% , right 15% center }
bgpos220536 { background-position: 50% top , right 15px bottom 15% , right 15% center }
bgpos220537 { background-position: bottom, right 15px bottom 15% , right 15% center }
bgpos220538 { background-position: center , right 15px bottom 15% , right 15% center }
bgpos220539 { background-position: center bottom , right 15px bottom 15% , right 15% center }
bgpos220540 { background-position: center bottom 15% , right 15px bottom 15% , right 15% center }
bgpos220541 { background-position: center bottom 15px , right 15px bottom 15% , right 15% center }
bgpos220542 { background-position: center top , right 15px bottom 15% , right 15% center }
bgpos220543 { background-position: center top 15% , right 15px bottom 15% , right 15% center }
bgpos220544 { background-position: center top 15px , right 15px bottom 15% , right 15% center }
bgpos220545 { background-position: center 10% , right 15px bottom 15% , right 15% center }
bgpos220546 { background-position: center 100px , right 15px bottom 15% , right 15% center }
bgpos220547 { background-position: center bottom , right 15px bottom 15% , right 15% center }
bgpos220548 { background-position: center center , right 15px bottom 15% , right 15% center }
bgpos220549 { background-position: center top , right 15px bottom 15% , right 15% center }
bgpos220550 { background-position: left , right 15px bottom 15% , right 15% center }
bgpos220551 { background-position: left 10% , right 15px bottom 15% , right 15% center }
bgpos220552 { background-position: left 100px , right 15px bottom 15% , right 15% center }
bgpos220553 { background-position: left bottom , right 15px bottom 15% , right 15% center }
bgpos220554 { background-position: left center , right 15px bottom 15% , right 15% center }
bgpos220555 { background-position: left top , right 15px bottom 15% , right 15% center }
bgpos220556 { background-position: right , right 15px bottom 15% , right 15% center }
bgpos220557 { background-position: right 10% , right 15px bottom 15% , right 15% center }
bgpos220558 { background-position: right 100px , right 15px bottom 15% , right 15% center }
bgpos220559 { background-position: right bottom , right 15px bottom 15% , right 15% center }
bgpos220560 { background-position: right center , right 15px bottom 15% , right 15% center }
bgpos220561 { background-position: right top , right 15px bottom 15% , right 15% center }
bgpos220562 { background-position: top , right 15px bottom 15% , right 15% center }
bgpos220563 { background-position: left bottom , right 15px bottom 15px , right 15% center }
bgpos220564 { background-position: left bottom 15% , right 15px bottom 15px , right 15% center }
bgpos220565 { background-position: left bottom 15px , right 15px bottom 15px , right 15% center }
bgpos220566 { background-position: left top , right 15px bottom 15px , right 15% center }
bgpos220567 { background-position: left top 15% , right 15px bottom 15px , right 15% center }
bgpos220568 { background-position: left top 15px , right 15px bottom 15px , right 15% center }
bgpos220569 { background-position: left 15% bottom , right 15px bottom 15px , right 15% center }
bgpos220570 { background-position: left 15% bottom 15% , right 15px bottom 15px , right 15% center }
bgpos220571 { background-position: left 15% bottom 15px , right 15px bottom 15px , right 15% center }
bgpos220572 { background-position: left 15% top , right 15px bottom 15px , right 15% center }
bgpos220573 { background-position: left 15% top 15% , right 15px bottom 15px , right 15% center }
bgpos220574 { background-position: left 15% top 15px , right 15px bottom 15px , right 15% center }
bgpos220575 { background-position: left 15% center , right 15px bottom 15px , right 15% center }
bgpos220576 { background-position: left 15px bottom , right 15px bottom 15px , right 15% center }
bgpos220577 { background-position: left 15px bottom 15% , right 15px bottom 15px , right 15% center }
bgpos220578 { background-position: left 15px bottom 15px , right 15px bottom 15px , right 15% center }
bgpos220579 { background-position: left 15px top , right 15px bottom 15px , right 15% center }
bgpos220580 { background-position: left 15px top 15% , right 15px bottom 15px , right 15% center }
bgpos220581 { background-position: left 15px top 15px , right 15px bottom 15px , right 15% center }
bgpos220582 { background-position: left 15px center , right 15px bottom 15px , right 15% center }
bgpos220583 { background-position: left center , right 15px bottom 15px , right 15% center }
bgpos220584 { background-position: right bottom , right 15px bottom 15px , right 15% center }
bgpos220585 { background-position: right bottom 15% , right 15px bottom 15px , right 15% center }
bgpos220586 { background-position: right bottom 15px , right 15px bottom 15px , right 15% center }
bgpos220587 { background-position: right top , right 15px bottom 15px , right 15% center }
bgpos220588 { background-position: right top 15% , right 15px bottom 15px , right 15% center }
bgpos220589 { background-position: right top 15px , right 15px bottom 15px , right 15% center }
bgpos220590 { background-position: right 15% bottom , right 15px bottom 15px , right 15% center }
bgpos220591 { background-position: right 15% bottom 15% , right 15px bottom 15px , right 15% center }
bgpos220592 { background-position: right 15% bottom 15px , right 15px bottom 15px , right 15% center }
bgpos220593 { background-position: right 15% top , right 15px bottom 15px , right 15% center }
bgpos220594 { background-position: right 15% top 15% , right 15px bottom 15px , right 15% center }
bgpos220595 { background-position: right 15% top 15px , right 15px bottom 15px , right 15% center }
bgpos220596 { background-position: right 15% center , right 15px bottom 15px , right 15% center }
bgpos220597 { background-position: right 15px bottom , right 15px bottom 15px , right 15% center }
bgpos220598 { background-position: right 15px bottom 15% , right 15px bottom 15px , right 15% center }
bgpos220599 { background-position: right 15px bottom 15px , right 15px bottom 15px , right 15% center }
bgpos220600 { background-position: right 15px top , right 15px bottom 15px , right 15% center }
bgpos220601 { background-position: right 15px top 15% , right 15px bottom 15px , right 15% center }
bgpos220602 { background-position: right 15px top 15px , right 15px bottom 15px , right 15% center }
bgpos220603 { background-position: right 15px center , right 15px bottom 15px , right 15% center }
bgpos220604 { background-position: right center , right 15px bottom 15px , right 15% center }
bgpos220605 { background-position: 100px , right 15px bottom 15px , right 15% center }
bgpos220606 { background-position: 100px 10% , right 15px bottom 15px , right 15% center }
bgpos220607 { background-position: 100px 100px , right 15px bottom 15px , right 15% center }
bgpos220608 { background-position: 100px bottom , right 15px bottom 15px , right 15% center }
bgpos220609 { background-position: 100px center , right 15px bottom 15px , right 15% center }
bgpos220610 { background-position: 100px top , right 15px bottom 15px , right 15% center }
bgpos220611 { background-position: 50% , right 15px bottom 15px , right 15% center }
bgpos220612 { background-position: 50% 10% , right 15px bottom 15px , right 15% center }
bgpos220613 { background-position: 50% 100px , right 15px bottom 15px , right 15% center }
bgpos220614 { background-position: 50% bottom , right 15px bottom 15px , right 15% center }
bgpos220615 { background-position: 50% center , right 15px bottom 15px , right 15% center }
bgpos220616 { background-position: 50% top , right 15px bottom 15px , right 15% center }
bgpos220617 { background-position: bottom, right 15px bottom 15px , right 15% center }
bgpos220618 { background-position: center , right 15px bottom 15px , right 15% center }
bgpos220619 { background-position: center bottom , right 15px bottom 15px , right 15% center }
bgpos220620 { background-position: center bottom 15% , right 15px bottom 15px , right 15% center }
bgpos220621 { background-position: center bottom 15px , right 15px bottom 15px , right 15% center }
bgpos220622 { background-position: center top , right 15px bottom 15px , right 15% center }
bgpos220623 { background-position: center top 15% , right 15px bottom 15px , right 15% center }
bgpos220624 { background-position: center top 15px , right 15px bottom 15px , right 15% center }
bgpos220625 { background-position: center 10% , right 15px bottom 15px , right 15% center }
bgpos220626 { background-position: center 100px , right 15px bottom 15px , right 15% center }
bgpos220627 { background-position: center bottom , right 15px bottom 15px , right 15% center }
bgpos220628 { background-position: center center , right 15px bottom 15px , right 15% center }
bgpos220629 { background-position: center top , right 15px bottom 15px , right 15% center }
bgpos220630 { background-position: left , right 15px bottom 15px , right 15% center }
bgpos220631 { background-position: left 10% , right 15px bottom 15px , right 15% center }
bgpos220632 { background-position: left 100px , right 15px bottom 15px , right 15% center }
bgpos220633 { background-position: left bottom , right 15px bottom 15px , right 15% center }
bgpos220634 { background-position: left center , right 15px bottom 15px , right 15% center }
bgpos220635 { background-position: left top , right 15px bottom 15px , right 15% center }
bgpos220636 { background-position: right , right 15px bottom 15px , right 15% center }
bgpos220637 { background-position: right 10% , right 15px bottom 15px , right 15% center }
bgpos220638 { background-position: right 100px , right 15px bottom 15px , right 15% center }
bgpos220639 { background-position: right bottom , right 15px bottom 15px , right 15% center }
bgpos220640 { background-position: right center , right 15px bottom 15px , right 15% center }
bgpos220641 { background-position: right top , right 15px bottom 15px , right 15% center }
bgpos220642 { background-position: top , right 15px bottom 15px , right 15% center }
bgpos220643 { background-position: left bottom , right 15px top , right 15% center }
bgpos220644 { background-position: left bottom 15% , right 15px top , right 15% center }
bgpos220645 { background-position: left bottom 15px , right 15px top , right 15% center }
bgpos220646 { background-position: left top , right 15px top , right 15% center }
bgpos220647 { background-position: left top 15% , right 15px top , right 15% center }
bgpos220648 { background-position: left top 15px , right 15px top , right 15% center }
bgpos220649 { background-position: left 15% bottom , right 15px top , right 15% center }
bgpos220650 { background-position: left 15% bottom 15% , right 15px top , right 15% center }
bgpos220651 { background-position: left 15% bottom 15px , right 15px top , right 15% center }
bgpos220652 { background-position: left 15% top , right 15px top , right 15% center }
bgpos220653 { background-position: left 15% top 15% , right 15px top , right 15% center }
bgpos220654 { background-position: left 15% top 15px , right 15px top , right 15% center }
bgpos220655 { background-position: left 15% center , right 15px top , right 15% center }
bgpos220656 { background-position: left 15px bottom , right 15px top , right 15% center }
bgpos220657 { background-position: left 15px bottom 15% , right 15px top , right 15% center }
bgpos220658 { background-position: left 15px bottom 15px , right 15px top , right 15% center }
bgpos220659 { background-position: left 15px top , right 15px top , right 15% center }
bgpos220660 { background-position: left 15px top 15% , right 15px top , right 15% center }
bgpos220661 { background-position: left 15px top 15px , right 15px top , right 15% center }
bgpos220662 { background-position: left 15px center , right 15px top , right 15% center }
bgpos220663 { background-position: left center , right 15px top , right 15% center }
bgpos220664 { background-position: right bottom , right 15px top , right 15% center }
bgpos220665 { background-position: right bottom 15% , right 15px top , right 15% center }
bgpos220666 { background-position: right bottom 15px , right 15px top , right 15% center }
bgpos220667 { background-position: right top , right 15px top , right 15% center }
bgpos220668 { background-position: right top 15% , right 15px top , right 15% center }
bgpos220669 { background-position: right top 15px , right 15px top , right 15% center }
bgpos220670 { background-position: right 15% bottom , right 15px top , right 15% center }
bgpos220671 { background-position: right 15% bottom 15% , right 15px top , right 15% center }
bgpos220672 { background-position: right 15% bottom 15px , right 15px top , right 15% center }
bgpos220673 { background-position: right 15% top , right 15px top , right 15% center }
bgpos220674 { background-position: right 15% top 15% , right 15px top , right 15% center }
bgpos220675 { background-position: right 15% top 15px , right 15px top , right 15% center }
bgpos220676 { background-position: right 15% center , right 15px top , right 15% center }
bgpos220677 { background-position: right 15px bottom , right 15px top , right 15% center }
bgpos220678 { background-position: right 15px bottom 15% , right 15px top , right 15% center }
bgpos220679 { background-position: right 15px bottom 15px , right 15px top , right 15% center }
bgpos220680 { background-position: right 15px top , right 15px top , right 15% center }
bgpos220681 { background-position: right 15px top 15% , right 15px top , right 15% center }
bgpos220682 { background-position: right 15px top 15px , right 15px top , right 15% center }
bgpos220683 { background-position: right 15px center , right 15px top , right 15% center }
bgpos220684 { background-position: right center , right 15px top , right 15% center }
bgpos220685 { background-position: 100px , right 15px top , right 15% center }
bgpos220686 { background-position: 100px 10% , right 15px top , right 15% center }
bgpos220687 { background-position: 100px 100px , right 15px top , right 15% center }
bgpos220688 { background-position: 100px bottom , right 15px top , right 15% center }
bgpos220689 { background-position: 100px center , right 15px top , right 15% center }
bgpos220690 { background-position: 100px top , right 15px top , right 15% center }
bgpos220691 { background-position: 50% , right 15px top , right 15% center }
bgpos220692 { background-position: 50% 10% , right 15px top , right 15% center }
bgpos220693 { background-position: 50% 100px , right 15px top , right 15% center }
bgpos220694 { background-position: 50% bottom , right 15px top , right 15% center }
bgpos220695 { background-position: 50% center , right 15px top , right 15% center }
bgpos220696 { background-position: 50% top , right 15px top , right 15% center }
bgpos220697 { background-position: bottom, right 15px top , right 15% center }
bgpos220698 { background-position: center , right 15px top , right 15% center }
bgpos220699 { background-position: center bottom , right 15px top , right 15% center }
bgpos220700 { background-position: center bottom 15% , right 15px top , right 15% center }
bgpos220701 { background-position: center bottom 15px , right 15px top , right 15% center }
bgpos220702 { background-position: center top , right 15px top , right 15% center }
bgpos220703 { background-position: center top 15% , right 15px top , right 15% center }
bgpos220704 { background-position: center top 15px , right 15px top , right 15% center }
bgpos220705 { background-position: center 10% , right 15px top , right 15% center }
bgpos220706 { background-position: center 100px , right 15px top , right 15% center }
bgpos220707 { background-position: center bottom , right 15px top , right 15% center }
bgpos220708 { background-position: center center , right 15px top , right 15% center }
bgpos220709 { background-position: center top , right 15px top , right 15% center }
bgpos220710 { background-position: left , right 15px top , right 15% center }
bgpos220711 { background-position: left 10% , right 15px top , right 15% center }
bgpos220712 { background-position: left 100px , right 15px top , right 15% center }
bgpos220713 { background-position: left bottom , right 15px top , right 15% center }
bgpos220714 { background-position: left center , right 15px top , right 15% center }
bgpos220715 { background-position: left top , right 15px top , right 15% center }
bgpos220716 { background-position: right , right 15px top , right 15% center }
bgpos220717 { background-position: right 10% , right 15px top , right 15% center }
bgpos220718 { background-position: right 100px , right 15px top , right 15% center }
bgpos220719 { background-position: right bottom , right 15px top , right 15% center }
bgpos220720 { background-position: right center , right 15px top , right 15% center }
bgpos220721 { background-position: right top , right 15px top , right 15% center }
bgpos220722 { background-position: top , right 15px top , right 15% center }
bgpos220723 { background-position: left bottom , right 15px top 15% , right 15% center }
bgpos220724 { background-position: left bottom 15% , right 15px top 15% , right 15% center }
bgpos220725 { background-position: left bottom 15px , right 15px top 15% , right 15% center }
bgpos220726 { background-position: left top , right 15px top 15% , right 15% center }
bgpos220727 { background-position: left top 15% , right 15px top 15% , right 15% center }
bgpos220728 { background-position: left top 15px , right 15px top 15% , right 15% center }
bgpos220729 { background-position: left 15% bottom , right 15px top 15% , right 15% center }
bgpos220730 { background-position: left 15% bottom 15% , right 15px top 15% , right 15% center }
bgpos220731 { background-position: left 15% bottom 15px , right 15px top 15% , right 15% center }
bgpos220732 { background-position: left 15% top , right 15px top 15% , right 15% center }
bgpos220733 { background-position: left 15% top 15% , right 15px top 15% , right 15% center }
bgpos220734 { background-position: left 15% top 15px , right 15px top 15% , right 15% center }
bgpos220735 { background-position: left 15% center , right 15px top 15% , right 15% center }
bgpos220736 { background-position: left 15px bottom , right 15px top 15% , right 15% center }
bgpos220737 { background-position: left 15px bottom 15% , right 15px top 15% , right 15% center }
bgpos220738 { background-position: left 15px bottom 15px , right 15px top 15% , right 15% center }
bgpos220739 { background-position: left 15px top , right 15px top 15% , right 15% center }
bgpos220740 { background-position: left 15px top 15% , right 15px top 15% , right 15% center }
bgpos220741 { background-position: left 15px top 15px , right 15px top 15% , right 15% center }
bgpos220742 { background-position: left 15px center , right 15px top 15% , right 15% center }
bgpos220743 { background-position: left center , right 15px top 15% , right 15% center }
bgpos220744 { background-position: right bottom , right 15px top 15% , right 15% center }
bgpos220745 { background-position: right bottom 15% , right 15px top 15% , right 15% center }
bgpos220746 { background-position: right bottom 15px , right 15px top 15% , right 15% center }
bgpos220747 { background-position: right top , right 15px top 15% , right 15% center }
bgpos220748 { background-position: right top 15% , right 15px top 15% , right 15% center }
bgpos220749 { background-position: right top 15px , right 15px top 15% , right 15% center }
bgpos220750 { background-position: right 15% bottom , right 15px top 15% , right 15% center }
bgpos220751 { background-position: right 15% bottom 15% , right 15px top 15% , right 15% center }
bgpos220752 { background-position: right 15% bottom 15px , right 15px top 15% , right 15% center }
bgpos220753 { background-position: right 15% top , right 15px top 15% , right 15% center }
bgpos220754 { background-position: right 15% top 15% , right 15px top 15% , right 15% center }
bgpos220755 { background-position: right 15% top 15px , right 15px top 15% , right 15% center }
bgpos220756 { background-position: right 15% center , right 15px top 15% , right 15% center }
bgpos220757 { background-position: right 15px bottom , right 15px top 15% , right 15% center }
bgpos220758 { background-position: right 15px bottom 15% , right 15px top 15% , right 15% center }
bgpos220759 { background-position: right 15px bottom 15px , right 15px top 15% , right 15% center }
bgpos220760 { background-position: right 15px top , right 15px top 15% , right 15% center }
bgpos220761 { background-position: right 15px top 15% , right 15px top 15% , right 15% center }
bgpos220762 { background-position: right 15px top 15px , right 15px top 15% , right 15% center }
bgpos220763 { background-position: right 15px center , right 15px top 15% , right 15% center }
bgpos220764 { background-position: right center , right 15px top 15% , right 15% center }
bgpos220765 { background-position: 100px , right 15px top 15% , right 15% center }
bgpos220766 { background-position: 100px 10% , right 15px top 15% , right 15% center }
bgpos220767 { background-position: 100px 100px , right 15px top 15% , right 15% center }
bgpos220768 { background-position: 100px bottom , right 15px top 15% , right 15% center }
bgpos220769 { background-position: 100px center , right 15px top 15% , right 15% center }
bgpos220770 { background-position: 100px top , right 15px top 15% , right 15% center }
bgpos220771 { background-position: 50% , right 15px top 15% , right 15% center }
bgpos220772 { background-position: 50% 10% , right 15px top 15% , right 15% center }
bgpos220773 { background-position: 50% 100px , right 15px top 15% , right 15% center }
bgpos220774 { background-position: 50% bottom , right 15px top 15% , right 15% center }
bgpos220775 { background-position: 50% center , right 15px top 15% , right 15% center }
bgpos220776 { background-position: 50% top , right 15px top 15% , right 15% center }
bgpos220777 { background-position: bottom, right 15px top 15% , right 15% center }
bgpos220778 { background-position: center , right 15px top 15% , right 15% center }
bgpos220779 { background-position: center bottom , right 15px top 15% , right 15% center }
bgpos220780 { background-position: center bottom 15% , right 15px top 15% , right 15% center }
bgpos220781 { background-position: center bottom 15px , right 15px top 15% , right 15% center }
bgpos220782 { background-position: center top , right 15px top 15% , right 15% center }
bgpos220783 { background-position: center top 15% , right 15px top 15% , right 15% center }
bgpos220784 { background-position: center top 15px , right 15px top 15% , right 15% center }
bgpos220785 { background-position: center 10% , right 15px top 15% , right 15% center }
bgpos220786 { background-position: center 100px , right 15px top 15% , right 15% center }
bgpos220787 { background-position: center bottom , right 15px top 15% , right 15% center }
bgpos220788 { background-position: center center , right 15px top 15% , right 15% center }
bgpos220789 { background-position: center top , right 15px top 15% , right 15% center }
bgpos220790 { background-position: left , right 15px top 15% , right 15% center }
bgpos220791 { background-position: left 10% , right 15px top 15% , right 15% center }
bgpos220792 { background-position: left 100px , right 15px top 15% , right 15% center }
bgpos220793 { background-position: left bottom , right 15px top 15% , right 15% center }
bgpos220794 { background-position: left center , right 15px top 15% , right 15% center }
bgpos220795 { background-position: left top , right 15px top 15% , right 15% center }
bgpos220796 { background-position: right , right 15px top 15% , right 15% center }
bgpos220797 { background-position: right 10% , right 15px top 15% , right 15% center }
bgpos220798 { background-position: right 100px , right 15px top 15% , right 15% center }
bgpos220799 { background-position: right bottom , right 15px top 15% , right 15% center }
bgpos220800 { background-position: right center , right 15px top 15% , right 15% center }
bgpos220801 { background-position: right top , right 15px top 15% , right 15% center }
bgpos220802 { background-position: top , right 15px top 15% , right 15% center }
bgpos220803 { background-position: left bottom , right 15px top 15px , right 15% center }
bgpos220804 { background-position: left bottom 15% , right 15px top 15px , right 15% center }
bgpos220805 { background-position: left bottom 15px , right 15px top 15px , right 15% center }
bgpos220806 { background-position: left top , right 15px top 15px , right 15% center }
bgpos220807 { background-position: left top 15% , right 15px top 15px , right 15% center }
bgpos220808 { background-position: left top 15px , right 15px top 15px , right 15% center }
bgpos220809 { background-position: left 15% bottom , right 15px top 15px , right 15% center }
bgpos220810 { background-position: left 15% bottom 15% , right 15px top 15px , right 15% center }
bgpos220811 { background-position: left 15% bottom 15px , right 15px top 15px , right 15% center }
bgpos220812 { background-position: left 15% top , right 15px top 15px , right 15% center }
bgpos220813 { background-position: left 15% top 15% , right 15px top 15px , right 15% center }
bgpos220814 { background-position: left 15% top 15px , right 15px top 15px , right 15% center }
bgpos220815 { background-position: left 15% center , right 15px top 15px , right 15% center }
bgpos220816 { background-position: left 15px bottom , right 15px top 15px , right 15% center }
bgpos220817 { background-position: left 15px bottom 15% , right 15px top 15px , right 15% center }
bgpos220818 { background-position: left 15px bottom 15px , right 15px top 15px , right 15% center }
bgpos220819 { background-position: left 15px top , right 15px top 15px , right 15% center }
bgpos220820 { background-position: left 15px top 15% , right 15px top 15px , right 15% center }
bgpos220821 { background-position: left 15px top 15px , right 15px top 15px , right 15% center }
bgpos220822 { background-position: left 15px center , right 15px top 15px , right 15% center }
bgpos220823 { background-position: left center , right 15px top 15px , right 15% center }
bgpos220824 { background-position: right bottom , right 15px top 15px , right 15% center }
bgpos220825 { background-position: right bottom 15% , right 15px top 15px , right 15% center }
bgpos220826 { background-position: right bottom 15px , right 15px top 15px , right 15% center }
bgpos220827 { background-position: right top , right 15px top 15px , right 15% center }
bgpos220828 { background-position: right top 15% , right 15px top 15px , right 15% center }
bgpos220829 { background-position: right top 15px , right 15px top 15px , right 15% center }
bgpos220830 { background-position: right 15% bottom , right 15px top 15px , right 15% center }
bgpos220831 { background-position: right 15% bottom 15% , right 15px top 15px , right 15% center }
bgpos220832 { background-position: right 15% bottom 15px , right 15px top 15px , right 15% center }
bgpos220833 { background-position: right 15% top , right 15px top 15px , right 15% center }
bgpos220834 { background-position: right 15% top 15% , right 15px top 15px , right 15% center }
bgpos220835 { background-position: right 15% top 15px , right 15px top 15px , right 15% center }
bgpos220836 { background-position: right 15% center , right 15px top 15px , right 15% center }
bgpos220837 { background-position: right 15px bottom , right 15px top 15px , right 15% center }
bgpos220838 { background-position: right 15px bottom 15% , right 15px top 15px , right 15% center }
bgpos220839 { background-position: right 15px bottom 15px , right 15px top 15px , right 15% center }
bgpos220840 { background-position: right 15px top , right 15px top 15px , right 15% center }
bgpos220841 { background-position: right 15px top 15% , right 15px top 15px , right 15% center }
bgpos220842 { background-position: right 15px top 15px , right 15px top 15px , right 15% center }
bgpos220843 { background-position: right 15px center , right 15px top 15px , right 15% center }
bgpos220844 { background-position: right center , right 15px top 15px , right 15% center }
bgpos220845 { background-position: 100px , right 15px top 15px , right 15% center }
bgpos220846 { background-position: 100px 10% , right 15px top 15px , right 15% center }
bgpos220847 { background-position: 100px 100px , right 15px top 15px , right 15% center }
bgpos220848 { background-position: 100px bottom , right 15px top 15px , right 15% center }
bgpos220849 { background-position: 100px center , right 15px top 15px , right 15% center }
bgpos220850 { background-position: 100px top , right 15px top 15px , right 15% center }
bgpos220851 { background-position: 50% , right 15px top 15px , right 15% center }
bgpos220852 { background-position: 50% 10% , right 15px top 15px , right 15% center }
bgpos220853 { background-position: 50% 100px , right 15px top 15px , right 15% center }
bgpos220854 { background-position: 50% bottom , right 15px top 15px , right 15% center }
bgpos220855 { background-position: 50% center , right 15px top 15px , right 15% center }
bgpos220856 { background-position: 50% top , right 15px top 15px , right 15% center }
bgpos220857 { background-position: bottom, right 15px top 15px , right 15% center }
bgpos220858 { background-position: center , right 15px top 15px , right 15% center }
bgpos220859 { background-position: center bottom , right 15px top 15px , right 15% center }
bgpos220860 { background-position: center bottom 15% , right 15px top 15px , right 15% center }
bgpos220861 { background-position: center bottom 15px , right 15px top 15px , right 15% center }
bgpos220862 { background-position: center top , right 15px top 15px , right 15% center }
bgpos220863 { background-position: center top 15% , right 15px top 15px , right 15% center }
bgpos220864 { background-position: center top 15px , right 15px top 15px , right 15% center }
bgpos220865 { background-position: center 10% , right 15px top 15px , right 15% center }
bgpos220866 { background-position: center 100px , right 15px top 15px , right 15% center }
bgpos220867 { background-position: center bottom , right 15px top 15px , right 15% center }
bgpos220868 { background-position: center center , right 15px top 15px , right 15% center }
bgpos220869 { background-position: center top , right 15px top 15px , right 15% center }
bgpos220870 { background-position: left , right 15px top 15px , right 15% center }
bgpos220871 { background-position: left 10% , right 15px top 15px , right 15% center }
bgpos220872 { background-position: left 100px , right 15px top 15px , right 15% center }
bgpos220873 { background-position: left bottom , right 15px top 15px , right 15% center }
bgpos220874 { background-position: left center , right 15px top 15px , right 15% center }
bgpos220875 { background-position: left top , right 15px top 15px , right 15% center }
bgpos220876 { background-position: right , right 15px top 15px , right 15% center }
bgpos220877 { background-position: right 10% , right 15px top 15px , right 15% center }
bgpos220878 { background-position: right 100px , right 15px top 15px , right 15% center }
bgpos220879 { background-position: right bottom , right 15px top 15px , right 15% center }
bgpos220880 { background-position: right center , right 15px top 15px , right 15% center }
bgpos220881 { background-position: right top , right 15px top 15px , right 15% center }
bgpos220882 { background-position: top , right 15px top 15px , right 15% center }
bgpos220883 { background-position: left bottom , right 15px center , right 15% center }
bgpos220884 { background-position: left bottom 15% , right 15px center , right 15% center }
bgpos220885 { background-position: left bottom 15px , right 15px center , right 15% center }
bgpos220886 { background-position: left top , right 15px center , right 15% center }
bgpos220887 { background-position: left top 15% , right 15px center , right 15% center }
bgpos220888 { background-position: left top 15px , right 15px center , right 15% center }
bgpos220889 { background-position: left 15% bottom , right 15px center , right 15% center }
bgpos220890 { background-position: left 15% bottom 15% , right 15px center , right 15% center }
bgpos220891 { background-position: left 15% bottom 15px , right 15px center , right 15% center }
bgpos220892 { background-position: left 15% top , right 15px center , right 15% center }
bgpos220893 { background-position: left 15% top 15% , right 15px center , right 15% center }
bgpos220894 { background-position: left 15% top 15px , right 15px center , right 15% center }
bgpos220895 { background-position: left 15% center , right 15px center , right 15% center }
bgpos220896 { background-position: left 15px bottom , right 15px center , right 15% center }
bgpos220897 { background-position: left 15px bottom 15% , right 15px center , right 15% center }
bgpos220898 { background-position: left 15px bottom 15px , right 15px center , right 15% center }
bgpos220899 { background-position: left 15px top , right 15px center , right 15% center }
bgpos220900 { background-position: left 15px top 15% , right 15px center , right 15% center }
bgpos220901 { background-position: left 15px top 15px , right 15px center , right 15% center }
bgpos220902 { background-position: left 15px center , right 15px center , right 15% center }
bgpos220903 { background-position: left center , right 15px center , right 15% center }
bgpos220904 { background-position: right bottom , right 15px center , right 15% center }
bgpos220905 { background-position: right bottom 15% , right 15px center , right 15% center }
bgpos220906 { background-position: right bottom 15px , right 15px center , right 15% center }
bgpos220907 { background-position: right top , right 15px center , right 15% center }
bgpos220908 { background-position: right top 15% , right 15px center , right 15% center }
bgpos220909 { background-position: right top 15px , right 15px center , right 15% center }
bgpos220910 { background-position: right 15% bottom , right 15px center , right 15% center }
bgpos220911 { background-position: right 15% bottom 15% , right 15px center , right 15% center }
bgpos220912 { background-position: right 15% bottom 15px , right 15px center , right 15% center }
bgpos220913 { background-position: right 15% top , right 15px center , right 15% center }
bgpos220914 { background-position: right 15% top 15% , right 15px center , right 15% center }
bgpos220915 { background-position: right 15% top 15px , right 15px center , right 15% center }
bgpos220916 { background-position: right 15% center , right 15px center , right 15% center }
bgpos220917 { background-position: right 15px bottom , right 15px center , right 15% center }
bgpos220918 { background-position: right 15px bottom 15% , right 15px center , right 15% center }
bgpos220919 { background-position: right 15px bottom 15px , right 15px center , right 15% center }
bgpos220920 { background-position: right 15px top , right 15px center , right 15% center }
bgpos220921 { background-position: right 15px top 15% , right 15px center , right 15% center }
bgpos220922 { background-position: right 15px top 15px , right 15px center , right 15% center }
bgpos220923 { background-position: right 15px center , right 15px center , right 15% center }
bgpos220924 { background-position: right center , right 15px center , right 15% center }
bgpos220925 { background-position: 100px , right 15px center , right 15% center }
bgpos220926 { background-position: 100px 10% , right 15px center , right 15% center }
bgpos220927 { background-position: 100px 100px , right 15px center , right 15% center }
bgpos220928 { background-position: 100px bottom , right 15px center , right 15% center }
bgpos220929 { background-position: 100px center , right 15px center , right 15% center }
bgpos220930 { background-position: 100px top , right 15px center , right 15% center }
bgpos220931 { background-position: 50% , right 15px center , right 15% center }
bgpos220932 { background-position: 50% 10% , right 15px center , right 15% center }
bgpos220933 { background-position: 50% 100px , right 15px center , right 15% center }
bgpos220934 { background-position: 50% bottom , right 15px center , right 15% center }
bgpos220935 { background-position: 50% center , right 15px center , right 15% center }
bgpos220936 { background-position: 50% top , right 15px center , right 15% center }
bgpos220937 { background-position: bottom, right 15px center , right 15% center }
bgpos220938 { background-position: center , right 15px center , right 15% center }
bgpos220939 { background-position: center bottom , right 15px center , right 15% center }
bgpos220940 { background-position: center bottom 15% , right 15px center , right 15% center }
bgpos220941 { background-position: center bottom 15px , right 15px center , right 15% center }
bgpos220942 { background-position: center top , right 15px center , right 15% center }
bgpos220943 { background-position: center top 15% , right 15px center , right 15% center }
bgpos220944 { background-position: center top 15px , right 15px center , right 15% center }
bgpos220945 { background-position: center 10% , right 15px center , right 15% center }
bgpos220946 { background-position: center 100px , right 15px center , right 15% center }
bgpos220947 { background-position: center bottom , right 15px center , right 15% center }
bgpos220948 { background-position: center center , right 15px center , right 15% center }
bgpos220949 { background-position: center top , right 15px center , right 15% center }
bgpos220950 { background-position: left , right 15px center , right 15% center }
bgpos220951 { background-position: left 10% , right 15px center , right 15% center }
bgpos220952 { background-position: left 100px , right 15px center , right 15% center }
bgpos220953 { background-position: left bottom , right 15px center , right 15% center }
bgpos220954 { background-position: left center , right 15px center , right 15% center }
bgpos220955 { background-position: left top , right 15px center , right 15% center }
bgpos220956 { background-position: right , right 15px center , right 15% center }
bgpos220957 { background-position: right 10% , right 15px center , right 15% center }
bgpos220958 { background-position: right 100px , right 15px center , right 15% center }
bgpos220959 { background-position: right bottom , right 15px center , right 15% center }
bgpos220960 { background-position: right center , right 15px center , right 15% center }
bgpos220961 { background-position: right top , right 15px center , right 15% center }
bgpos220962 { background-position: top , right 15px center , right 15% center }
bgpos220963 { background-position: left bottom , right center , right 15% center }
bgpos220964 { background-position: left bottom 15% , right center , right 15% center }
bgpos220965 { background-position: left bottom 15px , right center , right 15% center }
bgpos220966 { background-position: left top , right center , right 15% center }
bgpos220967 { background-position: left top 15% , right center , right 15% center }
bgpos220968 { background-position: left top 15px , right center , right 15% center }
bgpos220969 { background-position: left 15% bottom , right center , right 15% center }
bgpos220970 { background-position: left 15% bottom 15% , right center , right 15% center }
bgpos220971 { background-position: left 15% bottom 15px , right center , right 15% center }
bgpos220972 { background-position: left 15% top , right center , right 15% center }
bgpos220973 { background-position: left 15% top 15% , right center , right 15% center }
bgpos220974 { background-position: left 15% top 15px , right center , right 15% center }
bgpos220975 { background-position: left 15% center , right center , right 15% center }
bgpos220976 { background-position: left 15px bottom , right center , right 15% center }
bgpos220977 { background-position: left 15px bottom 15% , right center , right 15% center }
bgpos220978 { background-position: left 15px bottom 15px , right center , right 15% center }
bgpos220979 { background-position: left 15px top , right center , right 15% center }
bgpos220980 { background-position: left 15px top 15% , right center , right 15% center }
bgpos220981 { background-position: left 15px top 15px , right center , right 15% center }
bgpos220982 { background-position: left 15px center , right center , right 15% center }
bgpos220983 { background-position: left center , right center , right 15% center }
bgpos220984 { background-position: right bottom , right center , right 15% center }
bgpos220985 { background-position: right bottom 15% , right center , right 15% center }
bgpos220986 { background-position: right bottom 15px , right center , right 15% center }
bgpos220987 { background-position: right top , right center , right 15% center }
bgpos220988 { background-position: right top 15% , right center , right 15% center }
bgpos220989 { background-position: right top 15px , right center , right 15% center }
bgpos220990 { background-position: right 15% bottom , right center , right 15% center }
bgpos220991 { background-position: right 15% bottom 15% , right center , right 15% center }
bgpos220992 { background-position: right 15% bottom 15px , right center , right 15% center }
bgpos220993 { background-position: right 15% top , right center , right 15% center }
bgpos220994 { background-position: right 15% top 15% , right center , right 15% center }
bgpos220995 { background-position: right 15% top 15px , right center , right 15% center }
bgpos220996 { background-position: right 15% center , right center , right 15% center }
bgpos220997 { background-position: right 15px bottom , right center , right 15% center }
bgpos220998 { background-position: right 15px bottom 15% , right center , right 15% center }
bgpos220999 { background-position: right 15px bottom 15px , right center , right 15% center }
bgpos221000 { background-position: right 15px top , right center , right 15% center }
bgpos221001 { background-position: right 15px top 15% , right center , right 15% center }
bgpos221002 { background-position: right 15px top 15px , right center , right 15% center }
bgpos221003 { background-position: right 15px center , right center , right 15% center }
bgpos221004 { background-position: right center , right center , right 15% center }
bgpos221005 { background-position: 100px , right center , right 15% center }
bgpos221006 { background-position: 100px 10% , right center , right 15% center }
bgpos221007 { background-position: 100px 100px , right center , right 15% center }
bgpos221008 { background-position: 100px bottom , right center , right 15% center }
bgpos221009 { background-position: 100px center , right center , right 15% center }
bgpos221010 { background-position: 100px top , right center , right 15% center }
bgpos221011 { background-position: 50% , right center , right 15% center }
bgpos221012 { background-position: 50% 10% , right center , right 15% center }
bgpos221013 { background-position: 50% 100px , right center , right 15% center }
bgpos221014 { background-position: 50% bottom , right center , right 15% center }
bgpos221015 { background-position: 50% center , right center , right 15% center }
bgpos221016 { background-position: 50% top , right center , right 15% center }
bgpos221017 { background-position: bottom, right center , right 15% center }
bgpos221018 { background-position: center , right center , right 15% center }
bgpos221019 { background-position: center bottom , right center , right 15% center }
bgpos221020 { background-position: center bottom 15% , right center , right 15% center }
bgpos221021 { background-position: center bottom 15px , right center , right 15% center }
bgpos221022 { background-position: center top , right center , right 15% center }
bgpos221023 { background-position: center top 15% , right center , right 15% center }
bgpos221024 { background-position: center top 15px , right center , right 15% center }
bgpos221025 { background-position: center 10% , right center , right 15% center }
bgpos221026 { background-position: center 100px , right center , right 15% center }
bgpos221027 { background-position: center bottom , right center , right 15% center }
bgpos221028 { background-position: center center , right center , right 15% center }
bgpos221029 { background-position: center top , right center , right 15% center }
bgpos221030 { background-position: left , right center , right 15% center }
bgpos221031 { background-position: left 10% , right center , right 15% center }
bgpos221032 { background-position: left 100px , right center , right 15% center }
bgpos221033 { background-position: left bottom , right center , right 15% center }
bgpos221034 { background-position: left center , right center , right 15% center }
bgpos221035 { background-position: left top , right center , right 15% center }
bgpos221036 { background-position: right , right center , right 15% center }
bgpos221037 { background-position: right 10% , right center , right 15% center }
bgpos221038 { background-position: right 100px , right center , right 15% center }
bgpos221039 { background-position: right bottom , right center , right 15% center }
bgpos221040 { background-position: right center , right center , right 15% center }
bgpos221041 { background-position: right top , right center , right 15% center }
bgpos221042 { background-position: top , right center , right 15% center }
bgpos221043 { background-position: left bottom , 100px , right 15% center }
bgpos221044 { background-position: left bottom 15% , 100px , right 15% center }
bgpos221045 { background-position: left bottom 15px , 100px , right 15% center }
bgpos221046 { background-position: left top , 100px , right 15% center }
bgpos221047 { background-position: left top 15% , 100px , right 15% center }
bgpos221048 { background-position: left top 15px , 100px , right 15% center }
bgpos221049 { background-position: left 15% bottom , 100px , right 15% center }
bgpos221050 { background-position: left 15% bottom 15% , 100px , right 15% center }
bgpos221051 { background-position: left 15% bottom 15px , 100px , right 15% center }
bgpos221052 { background-position: left 15% top , 100px , right 15% center }
bgpos221053 { background-position: left 15% top 15% , 100px , right 15% center }
bgpos221054 { background-position: left 15% top 15px , 100px , right 15% center }
bgpos221055 { background-position: left 15% center , 100px , right 15% center }
bgpos221056 { background-position: left 15px bottom , 100px , right 15% center }
bgpos221057 { background-position: left 15px bottom 15% , 100px , right 15% center }
bgpos221058 { background-position: left 15px bottom 15px , 100px , right 15% center }
bgpos221059 { background-position: left 15px top , 100px , right 15% center }
bgpos221060 { background-position: left 15px top 15% , 100px , right 15% center }
bgpos221061 { background-position: left 15px top 15px , 100px , right 15% center }
bgpos221062 { background-position: left 15px center , 100px , right 15% center }
bgpos221063 { background-position: left center , 100px , right 15% center }
bgpos221064 { background-position: right bottom , 100px , right 15% center }
bgpos221065 { background-position: right bottom 15% , 100px , right 15% center }
bgpos221066 { background-position: right bottom 15px , 100px , right 15% center }
bgpos221067 { background-position: right top , 100px , right 15% center }
bgpos221068 { background-position: right top 15% , 100px , right 15% center }
bgpos221069 { background-position: right top 15px , 100px , right 15% center }
bgpos221070 { background-position: right 15% bottom , 100px , right 15% center }
bgpos221071 { background-position: right 15% bottom 15% , 100px , right 15% center }
bgpos221072 { background-position: right 15% bottom 15px , 100px , right 15% center }
bgpos221073 { background-position: right 15% top , 100px , right 15% center }
bgpos221074 { background-position: right 15% top 15% , 100px , right 15% center }
bgpos221075 { background-position: right 15% top 15px , 100px , right 15% center }
bgpos221076 { background-position: right 15% center , 100px , right 15% center }
bgpos221077 { background-position: right 15px bottom , 100px , right 15% center }
bgpos221078 { background-position: right 15px bottom 15% , 100px , right 15% center }
bgpos221079 { background-position: right 15px bottom 15px , 100px , right 15% center }
bgpos221080 { background-position: right 15px top , 100px , right 15% center }
bgpos221081 { background-position: right 15px top 15% , 100px , right 15% center }
bgpos221082 { background-position: right 15px top 15px , 100px , right 15% center }
bgpos221083 { background-position: right 15px center , 100px , right 15% center }
bgpos221084 { background-position: right center , 100px , right 15% center }
bgpos221085 { background-position: 100px , 100px , right 15% center }
bgpos221086 { background-position: 100px 10% , 100px , right 15% center }
bgpos221087 { background-position: 100px 100px , 100px , right 15% center }
bgpos221088 { background-position: 100px bottom , 100px , right 15% center }
bgpos221089 { background-position: 100px center , 100px , right 15% center }
bgpos221090 { background-position: 100px top , 100px , right 15% center }
bgpos221091 { background-position: 50% , 100px , right 15% center }
bgpos221092 { background-position: 50% 10% , 100px , right 15% center }
bgpos221093 { background-position: 50% 100px , 100px , right 15% center }
bgpos221094 { background-position: 50% bottom , 100px , right 15% center }
bgpos221095 { background-position: 50% center , 100px , right 15% center }
bgpos221096 { background-position: 50% top , 100px , right 15% center }
bgpos221097 { background-position: bottom, 100px , right 15% center }
bgpos221098 { background-position: center , 100px , right 15% center }
bgpos221099 { background-position: center bottom , 100px , right 15% center }
bgpos221100 { background-position: center bottom 15% , 100px , right 15% center }
bgpos221101 { background-position: center bottom 15px , 100px , right 15% center }
bgpos221102 { background-position: center top , 100px , right 15% center }
bgpos221103 { background-position: center top 15% , 100px , right 15% center }
bgpos221104 { background-position: center top 15px , 100px , right 15% center }
bgpos221105 { background-position: center 10% , 100px , right 15% center }
bgpos221106 { background-position: center 100px , 100px , right 15% center }
bgpos221107 { background-position: center bottom , 100px , right 15% center }
bgpos221108 { background-position: center center , 100px , right 15% center }
bgpos221109 { background-position: center top , 100px , right 15% center }
bgpos221110 { background-position: left , 100px , right 15% center }
bgpos221111 { background-position: left 10% , 100px , right 15% center }
bgpos221112 { background-position: left 100px , 100px , right 15% center }
bgpos221113 { background-position: left bottom , 100px , right 15% center }
bgpos221114 { background-position: left center , 100px , right 15% center }
bgpos221115 { background-position: left top , 100px , right 15% center }
bgpos221116 { background-position: right , 100px , right 15% center }
bgpos221117 { background-position: right 10% , 100px , right 15% center }
bgpos221118 { background-position: right 100px , 100px , right 15% center }
bgpos221119 { background-position: right bottom , 100px , right 15% center }
bgpos221120 { background-position: right center , 100px , right 15% center }
bgpos221121 { background-position: right top , 100px , right 15% center }
bgpos221122 { background-position: top , 100px , right 15% center }
bgpos221123 { background-position: left bottom , 100px 10% , right 15% center }
bgpos221124 { background-position: left bottom 15% , 100px 10% , right 15% center }
bgpos221125 { background-position: left bottom 15px , 100px 10% , right 15% center }
bgpos221126 { background-position: left top , 100px 10% , right 15% center }
bgpos221127 { background-position: left top 15% , 100px 10% , right 15% center }
bgpos221128 { background-position: left top 15px , 100px 10% , right 15% center }
bgpos221129 { background-position: left 15% bottom , 100px 10% , right 15% center }
bgpos221130 { background-position: left 15% bottom 15% , 100px 10% , right 15% center }
bgpos221131 { background-position: left 15% bottom 15px , 100px 10% , right 15% center }
bgpos221132 { background-position: left 15% top , 100px 10% , right 15% center }
bgpos221133 { background-position: left 15% top 15% , 100px 10% , right 15% center }
bgpos221134 { background-position: left 15% top 15px , 100px 10% , right 15% center }
bgpos221135 { background-position: left 15% center , 100px 10% , right 15% center }
bgpos221136 { background-position: left 15px bottom , 100px 10% , right 15% center }
bgpos221137 { background-position: left 15px bottom 15% , 100px 10% , right 15% center }
bgpos221138 { background-position: left 15px bottom 15px , 100px 10% , right 15% center }
bgpos221139 { background-position: left 15px top , 100px 10% , right 15% center }
bgpos221140 { background-position: left 15px top 15% , 100px 10% , right 15% center }
bgpos221141 { background-position: left 15px top 15px , 100px 10% , right 15% center }
bgpos221142 { background-position: left 15px center , 100px 10% , right 15% center }
bgpos221143 { background-position: left center , 100px 10% , right 15% center }
bgpos221144 { background-position: right bottom , 100px 10% , right 15% center }
bgpos221145 { background-position: right bottom 15% , 100px 10% , right 15% center }
bgpos221146 { background-position: right bottom 15px , 100px 10% , right 15% center }
bgpos221147 { background-position: right top , 100px 10% , right 15% center }
bgpos221148 { background-position: right top 15% , 100px 10% , right 15% center }
bgpos221149 { background-position: right top 15px , 100px 10% , right 15% center }
bgpos221150 { background-position: right 15% bottom , 100px 10% , right 15% center }
bgpos221151 { background-position: right 15% bottom 15% , 100px 10% , right 15% center }
bgpos221152 { background-position: right 15% bottom 15px , 100px 10% , right 15% center }
bgpos221153 { background-position: right 15% top , 100px 10% , right 15% center }
bgpos221154 { background-position: right 15% top 15% , 100px 10% , right 15% center }
bgpos221155 { background-position: right 15% top 15px , 100px 10% , right 15% center }
bgpos221156 { background-position: right 15% center , 100px 10% , right 15% center }
bgpos221157 { background-position: right 15px bottom , 100px 10% , right 15% center }
bgpos221158 { background-position: right 15px bottom 15% , 100px 10% , right 15% center }
bgpos221159 { background-position: right 15px bottom 15px , 100px 10% , right 15% center }
bgpos221160 { background-position: right 15px top , 100px 10% , right 15% center }
bgpos221161 { background-position: right 15px top 15% , 100px 10% , right 15% center }
bgpos221162 { background-position: right 15px top 15px , 100px 10% , right 15% center }
bgpos221163 { background-position: right 15px center , 100px 10% , right 15% center }
bgpos221164 { background-position: right center , 100px 10% , right 15% center }
bgpos221165 { background-position: 100px , 100px 10% , right 15% center }
bgpos221166 { background-position: 100px 10% , 100px 10% , right 15% center }
bgpos221167 { background-position: 100px 100px , 100px 10% , right 15% center }
bgpos221168 { background-position: 100px bottom , 100px 10% , right 15% center }
bgpos221169 { background-position: 100px center , 100px 10% , right 15% center }
bgpos221170 { background-position: 100px top , 100px 10% , right 15% center }
bgpos221171 { background-position: 50% , 100px 10% , right 15% center }
bgpos221172 { background-position: 50% 10% , 100px 10% , right 15% center }
bgpos221173 { background-position: 50% 100px , 100px 10% , right 15% center }
bgpos221174 { background-position: 50% bottom , 100px 10% , right 15% center }
bgpos221175 { background-position: 50% center , 100px 10% , right 15% center }
bgpos221176 { background-position: 50% top , 100px 10% , right 15% center }
bgpos221177 { background-position: bottom, 100px 10% , right 15% center }
bgpos221178 { background-position: center , 100px 10% , right 15% center }
bgpos221179 { background-position: center bottom , 100px 10% , right 15% center }
bgpos221180 { background-position: center bottom 15% , 100px 10% , right 15% center }
bgpos221181 { background-position: center bottom 15px , 100px 10% , right 15% center }
bgpos221182 { background-position: center top , 100px 10% , right 15% center }
bgpos221183 { background-position: center top 15% , 100px 10% , right 15% center }
bgpos221184 { background-position: center top 15px , 100px 10% , right 15% center }
bgpos221185 { background-position: center 10% , 100px 10% , right 15% center }
bgpos221186 { background-position: center 100px , 100px 10% , right 15% center }
bgpos221187 { background-position: center bottom , 100px 10% , right 15% center }
bgpos221188 { background-position: center center , 100px 10% , right 15% center }
bgpos221189 { background-position: center top , 100px 10% , right 15% center }
bgpos221190 { background-position: left , 100px 10% , right 15% center }
bgpos221191 { background-position: left 10% , 100px 10% , right 15% center }
bgpos221192 { background-position: left 100px , 100px 10% , right 15% center }
bgpos221193 { background-position: left bottom , 100px 10% , right 15% center }
bgpos221194 { background-position: left center , 100px 10% , right 15% center }
bgpos221195 { background-position: left top , 100px 10% , right 15% center }
bgpos221196 { background-position: right , 100px 10% , right 15% center }
bgpos221197 { background-position: right 10% , 100px 10% , right 15% center }
bgpos221198 { background-position: right 100px , 100px 10% , right 15% center }
bgpos221199 { background-position: right bottom , 100px 10% , right 15% center }
bgpos221200 { background-position: right center , 100px 10% , right 15% center }
bgpos221201 { background-position: right top , 100px 10% , right 15% center }
bgpos221202 { background-position: top , 100px 10% , right 15% center }
bgpos221203 { background-position: left bottom , 100px 100px , right 15% center }
bgpos221204 { background-position: left bottom 15% , 100px 100px , right 15% center }
bgpos221205 { background-position: left bottom 15px , 100px 100px , right 15% center }
bgpos221206 { background-position: left top , 100px 100px , right 15% center }
bgpos221207 { background-position: left top 15% , 100px 100px , right 15% center }
bgpos221208 { background-position: left top 15px , 100px 100px , right 15% center }
bgpos221209 { background-position: left 15% bottom , 100px 100px , right 15% center }
bgpos221210 { background-position: left 15% bottom 15% , 100px 100px , right 15% center }
bgpos221211 { background-position: left 15% bottom 15px , 100px 100px , right 15% center }
bgpos221212 { background-position: left 15% top , 100px 100px , right 15% center }
bgpos221213 { background-position: left 15% top 15% , 100px 100px , right 15% center }
bgpos221214 { background-position: left 15% top 15px , 100px 100px , right 15% center }
bgpos221215 { background-position: left 15% center , 100px 100px , right 15% center }
bgpos221216 { background-position: left 15px bottom , 100px 100px , right 15% center }
bgpos221217 { background-position: left 15px bottom 15% , 100px 100px , right 15% center }
bgpos221218 { background-position: left 15px bottom 15px , 100px 100px , right 15% center }
bgpos221219 { background-position: left 15px top , 100px 100px , right 15% center }
bgpos221220 { background-position: left 15px top 15% , 100px 100px , right 15% center }
bgpos221221 { background-position: left 15px top 15px , 100px 100px , right 15% center }
bgpos221222 { background-position: left 15px center , 100px 100px , right 15% center }
bgpos221223 { background-position: left center , 100px 100px , right 15% center }
bgpos221224 { background-position: right bottom , 100px 100px , right 15% center }
bgpos221225 { background-position: right bottom 15% , 100px 100px , right 15% center }
bgpos221226 { background-position: right bottom 15px , 100px 100px , right 15% center }
bgpos221227 { background-position: right top , 100px 100px , right 15% center }
bgpos221228 { background-position: right top 15% , 100px 100px , right 15% center }
bgpos221229 { background-position: right top 15px , 100px 100px , right 15% center }
bgpos221230 { background-position: right 15% bottom , 100px 100px , right 15% center }
bgpos221231 { background-position: right 15% bottom 15% , 100px 100px , right 15% center }
bgpos221232 { background-position: right 15% bottom 15px , 100px 100px , right 15% center }
bgpos221233 { background-position: right 15% top , 100px 100px , right 15% center }
bgpos221234 { background-position: right 15% top 15% , 100px 100px , right 15% center }
bgpos221235 { background-position: right 15% top 15px , 100px 100px , right 15% center }
bgpos221236 { background-position: right 15% center , 100px 100px , right 15% center }
bgpos221237 { background-position: right 15px bottom , 100px 100px , right 15% center }
bgpos221238 { background-position: right 15px bottom 15% , 100px 100px , right 15% center }
bgpos221239 { background-position: right 15px bottom 15px , 100px 100px , right 15% center }
bgpos221240 { background-position: right 15px top , 100px 100px , right 15% center }
bgpos221241 { background-position: right 15px top 15% , 100px 100px , right 15% center }
bgpos221242 { background-position: right 15px top 15px , 100px 100px , right 15% center }
bgpos221243 { background-position: right 15px center , 100px 100px , right 15% center }
bgpos221244 { background-position: right center , 100px 100px , right 15% center }
bgpos221245 { background-position: 100px , 100px 100px , right 15% center }
bgpos221246 { background-position: 100px 10% , 100px 100px , right 15% center }
bgpos221247 { background-position: 100px 100px , 100px 100px , right 15% center }
bgpos221248 { background-position: 100px bottom , 100px 100px , right 15% center }
bgpos221249 { background-position: 100px center , 100px 100px , right 15% center }
bgpos221250 { background-position: 100px top , 100px 100px , right 15% center }
bgpos221251 { background-position: 50% , 100px 100px , right 15% center }
bgpos221252 { background-position: 50% 10% , 100px 100px , right 15% center }
bgpos221253 { background-position: 50% 100px , 100px 100px , right 15% center }
bgpos221254 { background-position: 50% bottom , 100px 100px , right 15% center }
bgpos221255 { background-position: 50% center , 100px 100px , right 15% center }
bgpos221256 { background-position: 50% top , 100px 100px , right 15% center }
bgpos221257 { background-position: bottom, 100px 100px , right 15% center }
bgpos221258 { background-position: center , 100px 100px , right 15% center }
bgpos221259 { background-position: center bottom , 100px 100px , right 15% center }
bgpos221260 { background-position: center bottom 15% , 100px 100px , right 15% center }
bgpos221261 { background-position: center bottom 15px , 100px 100px , right 15% center }
bgpos221262 { background-position: center top , 100px 100px , right 15% center }
bgpos221263 { background-position: center top 15% , 100px 100px , right 15% center }
bgpos221264 { background-position: center top 15px , 100px 100px , right 15% center }
bgpos221265 { background-position: center 10% , 100px 100px , right 15% center }
bgpos221266 { background-position: center 100px , 100px 100px , right 15% center }
bgpos221267 { background-position: center bottom , 100px 100px , right 15% center }
bgpos221268 { background-position: center center , 100px 100px , right 15% center }
bgpos221269 { background-position: center top , 100px 100px , right 15% center }
bgpos221270 { background-position: left , 100px 100px , right 15% center }
bgpos221271 { background-position: left 10% , 100px 100px , right 15% center }
bgpos221272 { background-position: left 100px , 100px 100px , right 15% center }
bgpos221273 { background-position: left bottom , 100px 100px , right 15% center }
bgpos221274 { background-position: left center , 100px 100px , right 15% center }
bgpos221275 { background-position: left top , 100px 100px , right 15% center }
bgpos221276 { background-position: right , 100px 100px , right 15% center }
bgpos221277 { background-position: right 10% , 100px 100px , right 15% center }
bgpos221278 { background-position: right 100px , 100px 100px , right 15% center }
bgpos221279 { background-position: right bottom , 100px 100px , right 15% center }
bgpos221280 { background-position: right center , 100px 100px , right 15% center }
bgpos221281 { background-position: right top , 100px 100px , right 15% center }
bgpos221282 { background-position: top , 100px 100px , right 15% center }
bgpos221283 { background-position: left bottom , 100px bottom , right 15% center }
bgpos221284 { background-position: left bottom 15% , 100px bottom , right 15% center }
bgpos221285 { background-position: left bottom 15px , 100px bottom , right 15% center }
bgpos221286 { background-position: left top , 100px bottom , right 15% center }
bgpos221287 { background-position: left top 15% , 100px bottom , right 15% center }
bgpos221288 { background-position: left top 15px , 100px bottom , right 15% center }
bgpos221289 { background-position: left 15% bottom , 100px bottom , right 15% center }
bgpos221290 { background-position: left 15% bottom 15% , 100px bottom , right 15% center }
bgpos221291 { background-position: left 15% bottom 15px , 100px bottom , right 15% center }
bgpos221292 { background-position: left 15% top , 100px bottom , right 15% center }
bgpos221293 { background-position: left 15% top 15% , 100px bottom , right 15% center }
bgpos221294 { background-position: left 15% top 15px , 100px bottom , right 15% center }
bgpos221295 { background-position: left 15% center , 100px bottom , right 15% center }
bgpos221296 { background-position: left 15px bottom , 100px bottom , right 15% center }
bgpos221297 { background-position: left 15px bottom 15% , 100px bottom , right 15% center }
bgpos221298 { background-position: left 15px bottom 15px , 100px bottom , right 15% center }
bgpos221299 { background-position: left 15px top , 100px bottom , right 15% center }
bgpos221300 { background-position: left 15px top 15% , 100px bottom , right 15% center }
bgpos221301 { background-position: left 15px top 15px , 100px bottom , right 15% center }
bgpos221302 { background-position: left 15px center , 100px bottom , right 15% center }
bgpos221303 { background-position: left center , 100px bottom , right 15% center }
bgpos221304 { background-position: right bottom , 100px bottom , right 15% center }
bgpos221305 { background-position: right bottom 15% , 100px bottom , right 15% center }
bgpos221306 { background-position: right bottom 15px , 100px bottom , right 15% center }
bgpos221307 { background-position: right top , 100px bottom , right 15% center }
bgpos221308 { background-position: right top 15% , 100px bottom , right 15% center }
bgpos221309 { background-position: right top 15px , 100px bottom , right 15% center }
bgpos221310 { background-position: right 15% bottom , 100px bottom , right 15% center }
bgpos221311 { background-position: right 15% bottom 15% , 100px bottom , right 15% center }
bgpos221312 { background-position: right 15% bottom 15px , 100px bottom , right 15% center }
bgpos221313 { background-position: right 15% top , 100px bottom , right 15% center }
bgpos221314 { background-position: right 15% top 15% , 100px bottom , right 15% center }
bgpos221315 { background-position: right 15% top 15px , 100px bottom , right 15% center }
bgpos221316 { background-position: right 15% center , 100px bottom , right 15% center }
bgpos221317 { background-position: right 15px bottom , 100px bottom , right 15% center }
bgpos221318 { background-position: right 15px bottom 15% , 100px bottom , right 15% center }
bgpos221319 { background-position: right 15px bottom 15px , 100px bottom , right 15% center }
bgpos221320 { background-position: right 15px top , 100px bottom , right 15% center }
bgpos221321 { background-position: right 15px top 15% , 100px bottom , right 15% center }
bgpos221322 { background-position: right 15px top 15px , 100px bottom , right 15% center }
bgpos221323 { background-position: right 15px center , 100px bottom , right 15% center }
bgpos221324 { background-position: right center , 100px bottom , right 15% center }
bgpos221325 { background-position: 100px , 100px bottom , right 15% center }
bgpos221326 { background-position: 100px 10% , 100px bottom , right 15% center }
bgpos221327 { background-position: 100px 100px , 100px bottom , right 15% center }
bgpos221328 { background-position: 100px bottom , 100px bottom , right 15% center }
bgpos221329 { background-position: 100px center , 100px bottom , right 15% center }
bgpos221330 { background-position: 100px top , 100px bottom , right 15% center }
bgpos221331 { background-position: 50% , 100px bottom , right 15% center }
bgpos221332 { background-position: 50% 10% , 100px bottom , right 15% center }
bgpos221333 { background-position: 50% 100px , 100px bottom , right 15% center }
bgpos221334 { background-position: 50% bottom , 100px bottom , right 15% center }
bgpos221335 { background-position: 50% center , 100px bottom , right 15% center }
bgpos221336 { background-position: 50% top , 100px bottom , right 15% center }
bgpos221337 { background-position: bottom, 100px bottom , right 15% center }
bgpos221338 { background-position: center , 100px bottom , right 15% center }
bgpos221339 { background-position: center bottom , 100px bottom , right 15% center }
bgpos221340 { background-position: center bottom 15% , 100px bottom , right 15% center }
bgpos221341 { background-position: center bottom 15px , 100px bottom , right 15% center }
bgpos221342 { background-position: center top , 100px bottom , right 15% center }
bgpos221343 { background-position: center top 15% , 100px bottom , right 15% center }
bgpos221344 { background-position: center top 15px , 100px bottom , right 15% center }
bgpos221345 { background-position: center 10% , 100px bottom , right 15% center }
bgpos221346 { background-position: center 100px , 100px bottom , right 15% center }
bgpos221347 { background-position: center bottom , 100px bottom , right 15% center }
bgpos221348 { background-position: center center , 100px bottom , right 15% center }
bgpos221349 { background-position: center top , 100px bottom , right 15% center }
bgpos221350 { background-position: left , 100px bottom , right 15% center }
bgpos221351 { background-position: left 10% , 100px bottom , right 15% center }
bgpos221352 { background-position: left 100px , 100px bottom , right 15% center }
bgpos221353 { background-position: left bottom , 100px bottom , right 15% center }
bgpos221354 { background-position: left center , 100px bottom , right 15% center }
bgpos221355 { background-position: left top , 100px bottom , right 15% center }
bgpos221356 { background-position: right , 100px bottom , right 15% center }
bgpos221357 { background-position: right 10% , 100px bottom , right 15% center }
bgpos221358 { background-position: right 100px , 100px bottom , right 15% center }
bgpos221359 { background-position: right bottom , 100px bottom , right 15% center }
bgpos221360 { background-position: right center , 100px bottom , right 15% center }
bgpos221361 { background-position: right top , 100px bottom , right 15% center }
bgpos221362 { background-position: top , 100px bottom , right 15% center }
bgpos221363 { background-position: left bottom , 100px center , right 15% center }
bgpos221364 { background-position: left bottom 15% , 100px center , right 15% center }
bgpos221365 { background-position: left bottom 15px , 100px center , right 15% center }
bgpos221366 { background-position: left top , 100px center , right 15% center }
bgpos221367 { background-position: left top 15% , 100px center , right 15% center }
bgpos221368 { background-position: left top 15px , 100px center , right 15% center }
bgpos221369 { background-position: left 15% bottom , 100px center , right 15% center }
bgpos221370 { background-position: left 15% bottom 15% , 100px center , right 15% center }
bgpos221371 { background-position: left 15% bottom 15px , 100px center , right 15% center }
bgpos221372 { background-position: left 15% top , 100px center , right 15% center }
bgpos221373 { background-position: left 15% top 15% , 100px center , right 15% center }
bgpos221374 { background-position: left 15% top 15px , 100px center , right 15% center }
bgpos221375 { background-position: left 15% center , 100px center , right 15% center }
bgpos221376 { background-position: left 15px bottom , 100px center , right 15% center }
bgpos221377 { background-position: left 15px bottom 15% , 100px center , right 15% center }
bgpos221378 { background-position: left 15px bottom 15px , 100px center , right 15% center }
bgpos221379 { background-position: left 15px top , 100px center , right 15% center }
bgpos221380 { background-position: left 15px top 15% , 100px center , right 15% center }
bgpos221381 { background-position: left 15px top 15px , 100px center , right 15% center }
bgpos221382 { background-position: left 15px center , 100px center , right 15% center }
bgpos221383 { background-position: left center , 100px center , right 15% center }
bgpos221384 { background-position: right bottom , 100px center , right 15% center }
bgpos221385 { background-position: right bottom 15% , 100px center , right 15% center }
bgpos221386 { background-position: right bottom 15px , 100px center , right 15% center }
bgpos221387 { background-position: right top , 100px center , right 15% center }
bgpos221388 { background-position: right top 15% , 100px center , right 15% center }
bgpos221389 { background-position: right top 15px , 100px center , right 15% center }
bgpos221390 { background-position: right 15% bottom , 100px center , right 15% center }
bgpos221391 { background-position: right 15% bottom 15% , 100px center , right 15% center }
bgpos221392 { background-position: right 15% bottom 15px , 100px center , right 15% center }
bgpos221393 { background-position: right 15% top , 100px center , right 15% center }
bgpos221394 { background-position: right 15% top 15% , 100px center , right 15% center }
bgpos221395 { background-position: right 15% top 15px , 100px center , right 15% center }
bgpos221396 { background-position: right 15% center , 100px center , right 15% center }
bgpos221397 { background-position: right 15px bottom , 100px center , right 15% center }
bgpos221398 { background-position: right 15px bottom 15% , 100px center , right 15% center }
bgpos221399 { background-position: right 15px bottom 15px , 100px center , right 15% center }
bgpos221400 { background-position: right 15px top , 100px center , right 15% center }
bgpos221401 { background-position: right 15px top 15% , 100px center , right 15% center }
bgpos221402 { background-position: right 15px top 15px , 100px center , right 15% center }
bgpos221403 { background-position: right 15px center , 100px center , right 15% center }
bgpos221404 { background-position: right center , 100px center , right 15% center }
bgpos221405 { background-position: 100px , 100px center , right 15% center }
bgpos221406 { background-position: 100px 10% , 100px center , right 15% center }
bgpos221407 { background-position: 100px 100px , 100px center , right 15% center }
bgpos221408 { background-position: 100px bottom , 100px center , right 15% center }
bgpos221409 { background-position: 100px center , 100px center , right 15% center }
bgpos221410 { background-position: 100px top , 100px center , right 15% center }
bgpos221411 { background-position: 50% , 100px center , right 15% center }
bgpos221412 { background-position: 50% 10% , 100px center , right 15% center }
bgpos221413 { background-position: 50% 100px , 100px center , right 15% center }
bgpos221414 { background-position: 50% bottom , 100px center , right 15% center }
bgpos221415 { background-position: 50% center , 100px center , right 15% center }
bgpos221416 { background-position: 50% top , 100px center , right 15% center }
bgpos221417 { background-position: bottom, 100px center , right 15% center }
bgpos221418 { background-position: center , 100px center , right 15% center }
bgpos221419 { background-position: center bottom , 100px center , right 15% center }
bgpos221420 { background-position: center bottom 15% , 100px center , right 15% center }
bgpos221421 { background-position: center bottom 15px , 100px center , right 15% center }
bgpos221422 { background-position: center top , 100px center , right 15% center }
bgpos221423 { background-position: center top 15% , 100px center , right 15% center }
bgpos221424 { background-position: center top 15px , 100px center , right 15% center }
bgpos221425 { background-position: center 10% , 100px center , right 15% center }
bgpos221426 { background-position: center 100px , 100px center , right 15% center }
bgpos221427 { background-position: center bottom , 100px center , right 15% center }
bgpos221428 { background-position: center center , 100px center , right 15% center }
bgpos221429 { background-position: center top , 100px center , right 15% center }
bgpos221430 { background-position: left , 100px center , right 15% center }
bgpos221431 { background-position: left 10% , 100px center , right 15% center }
bgpos221432 { background-position: left 100px , 100px center , right 15% center }
bgpos221433 { background-position: left bottom , 100px center , right 15% center }
bgpos221434 { background-position: left center , 100px center , right 15% center }
bgpos221435 { background-position: left top , 100px center , right 15% center }
bgpos221436 { background-position: right , 100px center , right 15% center }
bgpos221437 { background-position: right 10% , 100px center , right 15% center }
bgpos221438 { background-position: right 100px , 100px center , right 15% center }
bgpos221439 { background-position: right bottom , 100px center , right 15% center }
bgpos221440 { background-position: right center , 100px center , right 15% center }
bgpos221441 { background-position: right top , 100px center , right 15% center }
bgpos221442 { background-position: top , 100px center , right 15% center }
bgpos221443 { background-position: left bottom , 100px top , right 15% center }
bgpos221444 { background-position: left bottom 15% , 100px top , right 15% center }
bgpos221445 { background-position: left bottom 15px , 100px top , right 15% center }
bgpos221446 { background-position: left top , 100px top , right 15% center }
bgpos221447 { background-position: left top 15% , 100px top , right 15% center }
bgpos221448 { background-position: left top 15px , 100px top , right 15% center }
bgpos221449 { background-position: left 15% bottom , 100px top , right 15% center }
bgpos221450 { background-position: left 15% bottom 15% , 100px top , right 15% center }
bgpos221451 { background-position: left 15% bottom 15px , 100px top , right 15% center }
bgpos221452 { background-position: left 15% top , 100px top , right 15% center }
bgpos221453 { background-position: left 15% top 15% , 100px top , right 15% center }
bgpos221454 { background-position: left 15% top 15px , 100px top , right 15% center }
bgpos221455 { background-position: left 15% center , 100px top , right 15% center }
bgpos221456 { background-position: left 15px bottom , 100px top , right 15% center }
bgpos221457 { background-position: left 15px bottom 15% , 100px top , right 15% center }
bgpos221458 { background-position: left 15px bottom 15px , 100px top , right 15% center }
bgpos221459 { background-position: left 15px top , 100px top , right 15% center }
bgpos221460 { background-position: left 15px top 15% , 100px top , right 15% center }
bgpos221461 { background-position: left 15px top 15px , 100px top , right 15% center }
bgpos221462 { background-position: left 15px center , 100px top , right 15% center }
bgpos221463 { background-position: left center , 100px top , right 15% center }
bgpos221464 { background-position: right bottom , 100px top , right 15% center }
bgpos221465 { background-position: right bottom 15% , 100px top , right 15% center }
bgpos221466 { background-position: right bottom 15px , 100px top , right 15% center }
bgpos221467 { background-position: right top , 100px top , right 15% center }
bgpos221468 { background-position: right top 15% , 100px top , right 15% center }
bgpos221469 { background-position: right top 15px , 100px top , right 15% center }
bgpos221470 { background-position: right 15% bottom , 100px top , right 15% center }
bgpos221471 { background-position: right 15% bottom 15% , 100px top , right 15% center }
bgpos221472 { background-position: right 15% bottom 15px , 100px top , right 15% center }
bgpos221473 { background-position: right 15% top , 100px top , right 15% center }
bgpos221474 { background-position: right 15% top 15% , 100px top , right 15% center }
bgpos221475 { background-position: right 15% top 15px , 100px top , right 15% center }
bgpos221476 { background-position: right 15% center , 100px top , right 15% center }
bgpos221477 { background-position: right 15px bottom , 100px top , right 15% center }
bgpos221478 { background-position: right 15px bottom 15% , 100px top , right 15% center }
bgpos221479 { background-position: right 15px bottom 15px , 100px top , right 15% center }
bgpos221480 { background-position: right 15px top , 100px top , right 15% center }
bgpos221481 { background-position: right 15px top 15% , 100px top , right 15% center }
bgpos221482 { background-position: right 15px top 15px , 100px top , right 15% center }
bgpos221483 { background-position: right 15px center , 100px top , right 15% center }
bgpos221484 { background-position: right center , 100px top , right 15% center }
bgpos221485 { background-position: 100px , 100px top , right 15% center }
bgpos221486 { background-position: 100px 10% , 100px top , right 15% center }
bgpos221487 { background-position: 100px 100px , 100px top , right 15% center }
bgpos221488 { background-position: 100px bottom , 100px top , right 15% center }
bgpos221489 { background-position: 100px center , 100px top , right 15% center }
bgpos221490 { background-position: 100px top , 100px top , right 15% center }
bgpos221491 { background-position: 50% , 100px top , right 15% center }
bgpos221492 { background-position: 50% 10% , 100px top , right 15% center }
bgpos221493 { background-position: 50% 100px , 100px top , right 15% center }
bgpos221494 { background-position: 50% bottom , 100px top , right 15% center }
bgpos221495 { background-position: 50% center , 100px top , right 15% center }
bgpos221496 { background-position: 50% top , 100px top , right 15% center }
bgpos221497 { background-position: bottom, 100px top , right 15% center }
bgpos221498 { background-position: center , 100px top , right 15% center }
bgpos221499 { background-position: center bottom , 100px top , right 15% center }
bgpos221500 { background-position: center bottom 15% , 100px top , right 15% center }
bgpos221501 { background-position: center bottom 15px , 100px top , right 15% center }
bgpos221502 { background-position: center top , 100px top , right 15% center }
bgpos221503 { background-position: center top 15% , 100px top , right 15% center }
bgpos221504 { background-position: center top 15px , 100px top , right 15% center }
bgpos221505 { background-position: center 10% , 100px top , right 15% center }
bgpos221506 { background-position: center 100px , 100px top , right 15% center }
bgpos221507 { background-position: center bottom , 100px top , right 15% center }
bgpos221508 { background-position: center center , 100px top , right 15% center }
bgpos221509 { background-position: center top , 100px top , right 15% center }
bgpos221510 { background-position: left , 100px top , right 15% center }
bgpos221511 { background-position: left 10% , 100px top , right 15% center }
bgpos221512 { background-position: left 100px , 100px top , right 15% center }
bgpos221513 { background-position: left bottom , 100px top , right 15% center }
bgpos221514 { background-position: left center , 100px top , right 15% center }
bgpos221515 { background-position: left top , 100px top , right 15% center }
bgpos221516 { background-position: right , 100px top , right 15% center }
bgpos221517 { background-position: right 10% , 100px top , right 15% center }
bgpos221518 { background-position: right 100px , 100px top , right 15% center }
bgpos221519 { background-position: right bottom , 100px top , right 15% center }
bgpos221520 { background-position: right center , 100px top , right 15% center }
bgpos221521 { background-position: right top , 100px top , right 15% center }
bgpos221522 { background-position: top , 100px top , right 15% center }
bgpos221523 { background-position: left bottom , 50% , right 15% center }
bgpos221524 { background-position: left bottom 15% , 50% , right 15% center }
bgpos221525 { background-position: left bottom 15px , 50% , right 15% center }
bgpos221526 { background-position: left top , 50% , right 15% center }
bgpos221527 { background-position: left top 15% , 50% , right 15% center }
bgpos221528 { background-position: left top 15px , 50% , right 15% center }
bgpos221529 { background-position: left 15% bottom , 50% , right 15% center }
bgpos221530 { background-position: left 15% bottom 15% , 50% , right 15% center }
bgpos221531 { background-position: left 15% bottom 15px , 50% , right 15% center }
bgpos221532 { background-position: left 15% top , 50% , right 15% center }
bgpos221533 { background-position: left 15% top 15% , 50% , right 15% center }
bgpos221534 { background-position: left 15% top 15px , 50% , right 15% center }
bgpos221535 { background-position: left 15% center , 50% , right 15% center }
bgpos221536 { background-position: left 15px bottom , 50% , right 15% center }
bgpos221537 { background-position: left 15px bottom 15% , 50% , right 15% center }
bgpos221538 { background-position: left 15px bottom 15px , 50% , right 15% center }
bgpos221539 { background-position: left 15px top , 50% , right 15% center }
bgpos221540 { background-position: left 15px top 15% , 50% , right 15% center }
bgpos221541 { background-position: left 15px top 15px , 50% , right 15% center }
bgpos221542 { background-position: left 15px center , 50% , right 15% center }
bgpos221543 { background-position: left center , 50% , right 15% center }
bgpos221544 { background-position: right bottom , 50% , right 15% center }
bgpos221545 { background-position: right bottom 15% , 50% , right 15% center }
bgpos221546 { background-position: right bottom 15px , 50% , right 15% center }
bgpos221547 { background-position: right top , 50% , right 15% center }
bgpos221548 { background-position: right top 15% , 50% , right 15% center }
bgpos221549 { background-position: right top 15px , 50% , right 15% center }
bgpos221550 { background-position: right 15% bottom , 50% , right 15% center }
bgpos221551 { background-position: right 15% bottom 15% , 50% , right 15% center }
bgpos221552 { background-position: right 15% bottom 15px , 50% , right 15% center }
bgpos221553 { background-position: right 15% top , 50% , right 15% center }
bgpos221554 { background-position: right 15% top 15% , 50% , right 15% center }
bgpos221555 { background-position: right 15% top 15px , 50% , right 15% center }
bgpos221556 { background-position: right 15% center , 50% , right 15% center }
bgpos221557 { background-position: right 15px bottom , 50% , right 15% center }
bgpos221558 { background-position: right 15px bottom 15% , 50% , right 15% center }
bgpos221559 { background-position: right 15px bottom 15px , 50% , right 15% center }
bgpos221560 { background-position: right 15px top , 50% , right 15% center }
bgpos221561 { background-position: right 15px top 15% , 50% , right 15% center }
bgpos221562 { background-position: right 15px top 15px , 50% , right 15% center }
bgpos221563 { background-position: right 15px center , 50% , right 15% center }
bgpos221564 { background-position: right center , 50% , right 15% center }
bgpos221565 { background-position: 100px , 50% , right 15% center }
bgpos221566 { background-position: 100px 10% , 50% , right 15% center }
bgpos221567 { background-position: 100px 100px , 50% , right 15% center }
bgpos221568 { background-position: 100px bottom , 50% , right 15% center }
bgpos221569 { background-position: 100px center , 50% , right 15% center }
bgpos221570 { background-position: 100px top , 50% , right 15% center }
bgpos221571 { background-position: 50% , 50% , right 15% center }
bgpos221572 { background-position: 50% 10% , 50% , right 15% center }
bgpos221573 { background-position: 50% 100px , 50% , right 15% center }
bgpos221574 { background-position: 50% bottom , 50% , right 15% center }
bgpos221575 { background-position: 50% center , 50% , right 15% center }
bgpos221576 { background-position: 50% top , 50% , right 15% center }
bgpos221577 { background-position: bottom, 50% , right 15% center }
bgpos221578 { background-position: center , 50% , right 15% center }
bgpos221579 { background-position: center bottom , 50% , right 15% center }
bgpos221580 { background-position: center bottom 15% , 50% , right 15% center }
bgpos221581 { background-position: center bottom 15px , 50% , right 15% center }
bgpos221582 { background-position: center top , 50% , right 15% center }
bgpos221583 { background-position: center top 15% , 50% , right 15% center }
bgpos221584 { background-position: center top 15px , 50% , right 15% center }
bgpos221585 { background-position: center 10% , 50% , right 15% center }
bgpos221586 { background-position: center 100px , 50% , right 15% center }
bgpos221587 { background-position: center bottom , 50% , right 15% center }
bgpos221588 { background-position: center center , 50% , right 15% center }
bgpos221589 { background-position: center top , 50% , right 15% center }
bgpos221590 { background-position: left , 50% , right 15% center }
bgpos221591 { background-position: left 10% , 50% , right 15% center }
bgpos221592 { background-position: left 100px , 50% , right 15% center }
bgpos221593 { background-position: left bottom , 50% , right 15% center }
bgpos221594 { background-position: left center , 50% , right 15% center }
bgpos221595 { background-position: left top , 50% , right 15% center }
bgpos221596 { background-position: right , 50% , right 15% center }
bgpos221597 { background-position: right 10% , 50% , right 15% center }
bgpos221598 { background-position: right 100px , 50% , right 15% center }
bgpos221599 { background-position: right bottom , 50% , right 15% center }
bgpos221600 { background-position: right center , 50% , right 15% center }
bgpos221601 { background-position: right top , 50% , right 15% center }
bgpos221602 { background-position: top , 50% , right 15% center }
bgpos221603 { background-position: left bottom , 50% 10% , right 15% center }
bgpos221604 { background-position: left bottom 15% , 50% 10% , right 15% center }
bgpos221605 { background-position: left bottom 15px , 50% 10% , right 15% center }
bgpos221606 { background-position: left top , 50% 10% , right 15% center }
bgpos221607 { background-position: left top 15% , 50% 10% , right 15% center }
bgpos221608 { background-position: left top 15px , 50% 10% , right 15% center }
bgpos221609 { background-position: left 15% bottom , 50% 10% , right 15% center }
bgpos221610 { background-position: left 15% bottom 15% , 50% 10% , right 15% center }
bgpos221611 { background-position: left 15% bottom 15px , 50% 10% , right 15% center }
bgpos221612 { background-position: left 15% top , 50% 10% , right 15% center }
bgpos221613 { background-position: left 15% top 15% , 50% 10% , right 15% center }
bgpos221614 { background-position: left 15% top 15px , 50% 10% , right 15% center }
bgpos221615 { background-position: left 15% center , 50% 10% , right 15% center }
bgpos221616 { background-position: left 15px bottom , 50% 10% , right 15% center }
bgpos221617 { background-position: left 15px bottom 15% , 50% 10% , right 15% center }
bgpos221618 { background-position: left 15px bottom 15px , 50% 10% , right 15% center }
bgpos221619 { background-position: left 15px top , 50% 10% , right 15% center }
bgpos221620 { background-position: left 15px top 15% , 50% 10% , right 15% center }
bgpos221621 { background-position: left 15px top 15px , 50% 10% , right 15% center }
bgpos221622 { background-position: left 15px center , 50% 10% , right 15% center }
bgpos221623 { background-position: left center , 50% 10% , right 15% center }
bgpos221624 { background-position: right bottom , 50% 10% , right 15% center }
bgpos221625 { background-position: right bottom 15% , 50% 10% , right 15% center }
bgpos221626 { background-position: right bottom 15px , 50% 10% , right 15% center }
bgpos221627 { background-position: right top , 50% 10% , right 15% center }
bgpos221628 { background-position: right top 15% , 50% 10% , right 15% center }
bgpos221629 { background-position: right top 15px , 50% 10% , right 15% center }
bgpos221630 { background-position: right 15% bottom , 50% 10% , right 15% center }
bgpos221631 { background-position: right 15% bottom 15% , 50% 10% , right 15% center }
bgpos221632 { background-position: right 15% bottom 15px , 50% 10% , right 15% center }
bgpos221633 { background-position: right 15% top , 50% 10% , right 15% center }
bgpos221634 { background-position: right 15% top 15% , 50% 10% , right 15% center }
bgpos221635 { background-position: right 15% top 15px , 50% 10% , right 15% center }
bgpos221636 { background-position: right 15% center , 50% 10% , right 15% center }
bgpos221637 { background-position: right 15px bottom , 50% 10% , right 15% center }
bgpos221638 { background-position: right 15px bottom 15% , 50% 10% , right 15% center }
bgpos221639 { background-position: right 15px bottom 15px , 50% 10% , right 15% center }
bgpos221640 { background-position: right 15px top , 50% 10% , right 15% center }
bgpos221641 { background-position: right 15px top 15% , 50% 10% , right 15% center }
bgpos221642 { background-position: right 15px top 15px , 50% 10% , right 15% center }
bgpos221643 { background-position: right 15px center , 50% 10% , right 15% center }
bgpos221644 { background-position: right center , 50% 10% , right 15% center }
bgpos221645 { background-position: 100px , 50% 10% , right 15% center }
bgpos221646 { background-position: 100px 10% , 50% 10% , right 15% center }
bgpos221647 { background-position: 100px 100px , 50% 10% , right 15% center }
bgpos221648 { background-position: 100px bottom , 50% 10% , right 15% center }
bgpos221649 { background-position: 100px center , 50% 10% , right 15% center }
bgpos221650 { background-position: 100px top , 50% 10% , right 15% center }
bgpos221651 { background-position: 50% , 50% 10% , right 15% center }
bgpos221652 { background-position: 50% 10% , 50% 10% , right 15% center }
bgpos221653 { background-position: 50% 100px , 50% 10% , right 15% center }
bgpos221654 { background-position: 50% bottom , 50% 10% , right 15% center }
bgpos221655 { background-position: 50% center , 50% 10% , right 15% center }
bgpos221656 { background-position: 50% top , 50% 10% , right 15% center }
bgpos221657 { background-position: bottom, 50% 10% , right 15% center }
bgpos221658 { background-position: center , 50% 10% , right 15% center }
bgpos221659 { background-position: center bottom , 50% 10% , right 15% center }
bgpos221660 { background-position: center bottom 15% , 50% 10% , right 15% center }
bgpos221661 { background-position: center bottom 15px , 50% 10% , right 15% center }
bgpos221662 { background-position: center top , 50% 10% , right 15% center }
bgpos221663 { background-position: center top 15% , 50% 10% , right 15% center }
bgpos221664 { background-position: center top 15px , 50% 10% , right 15% center }
bgpos221665 { background-position: center 10% , 50% 10% , right 15% center }
bgpos221666 { background-position: center 100px , 50% 10% , right 15% center }
bgpos221667 { background-position: center bottom , 50% 10% , right 15% center }
bgpos221668 { background-position: center center , 50% 10% , right 15% center }
bgpos221669 { background-position: center top , 50% 10% , right 15% center }
bgpos221670 { background-position: left , 50% 10% , right 15% center }
bgpos221671 { background-position: left 10% , 50% 10% , right 15% center }
bgpos221672 { background-position: left 100px , 50% 10% , right 15% center }
bgpos221673 { background-position: left bottom , 50% 10% , right 15% center }
bgpos221674 { background-position: left center , 50% 10% , right 15% center }
bgpos221675 { background-position: left top , 50% 10% , right 15% center }
bgpos221676 { background-position: right , 50% 10% , right 15% center }
bgpos221677 { background-position: right 10% , 50% 10% , right 15% center }
bgpos221678 { background-position: right 100px , 50% 10% , right 15% center }
bgpos221679 { background-position: right bottom , 50% 10% , right 15% center }
bgpos221680 { background-position: right center , 50% 10% , right 15% center }
bgpos221681 { background-position: right top , 50% 10% , right 15% center }
bgpos221682 { background-position: top , 50% 10% , right 15% center }
bgpos221683 { background-position: left bottom , 50% 100px , right 15% center }
bgpos221684 { background-position: left bottom 15% , 50% 100px , right 15% center }
bgpos221685 { background-position: left bottom 15px , 50% 100px , right 15% center }
bgpos221686 { background-position: left top , 50% 100px , right 15% center }
bgpos221687 { background-position: left top 15% , 50% 100px , right 15% center }
bgpos221688 { background-position: left top 15px , 50% 100px , right 15% center }
bgpos221689 { background-position: left 15% bottom , 50% 100px , right 15% center }
bgpos221690 { background-position: left 15% bottom 15% , 50% 100px , right 15% center }
bgpos221691 { background-position: left 15% bottom 15px , 50% 100px , right 15% center }
bgpos221692 { background-position: left 15% top , 50% 100px , right 15% center }
bgpos221693 { background-position: left 15% top 15% , 50% 100px , right 15% center }
bgpos221694 { background-position: left 15% top 15px , 50% 100px , right 15% center }
bgpos221695 { background-position: left 15% center , 50% 100px , right 15% center }
bgpos221696 { background-position: left 15px bottom , 50% 100px , right 15% center }
bgpos221697 { background-position: left 15px bottom 15% , 50% 100px , right 15% center }
bgpos221698 { background-position: left 15px bottom 15px , 50% 100px , right 15% center }
bgpos221699 { background-position: left 15px top , 50% 100px , right 15% center }
bgpos221700 { background-position: left 15px top 15% , 50% 100px , right 15% center }
bgpos221701 { background-position: left 15px top 15px , 50% 100px , right 15% center }
bgpos221702 { background-position: left 15px center , 50% 100px , right 15% center }
bgpos221703 { background-position: left center , 50% 100px , right 15% center }
bgpos221704 { background-position: right bottom , 50% 100px , right 15% center }
bgpos221705 { background-position: right bottom 15% , 50% 100px , right 15% center }
bgpos221706 { background-position: right bottom 15px , 50% 100px , right 15% center }
bgpos221707 { background-position: right top , 50% 100px , right 15% center }
bgpos221708 { background-position: right top 15% , 50% 100px , right 15% center }
bgpos221709 { background-position: right top 15px , 50% 100px , right 15% center }
bgpos221710 { background-position: right 15% bottom , 50% 100px , right 15% center }
bgpos221711 { background-position: right 15% bottom 15% , 50% 100px , right 15% center }
bgpos221712 { background-position: right 15% bottom 15px , 50% 100px , right 15% center }
bgpos221713 { background-position: right 15% top , 50% 100px , right 15% center }
bgpos221714 { background-position: right 15% top 15% , 50% 100px , right 15% center }
bgpos221715 { background-position: right 15% top 15px , 50% 100px , right 15% center }
bgpos221716 { background-position: right 15% center , 50% 100px , right 15% center }
bgpos221717 { background-position: right 15px bottom , 50% 100px , right 15% center }
bgpos221718 { background-position: right 15px bottom 15% , 50% 100px , right 15% center }
bgpos221719 { background-position: right 15px bottom 15px , 50% 100px , right 15% center }
bgpos221720 { background-position: right 15px top , 50% 100px , right 15% center }
bgpos221721 { background-position: right 15px top 15% , 50% 100px , right 15% center }
bgpos221722 { background-position: right 15px top 15px , 50% 100px , right 15% center }
bgpos221723 { background-position: right 15px center , 50% 100px , right 15% center }
bgpos221724 { background-position: right center , 50% 100px , right 15% center }
bgpos221725 { background-position: 100px , 50% 100px , right 15% center }
bgpos221726 { background-position: 100px 10% , 50% 100px , right 15% center }
bgpos221727 { background-position: 100px 100px , 50% 100px , right 15% center }
bgpos221728 { background-position: 100px bottom , 50% 100px , right 15% center }
bgpos221729 { background-position: 100px center , 50% 100px , right 15% center }
bgpos221730 { background-position: 100px top , 50% 100px , right 15% center }
bgpos221731 { background-position: 50% , 50% 100px , right 15% center }
bgpos221732 { background-position: 50% 10% , 50% 100px , right 15% center }
bgpos221733 { background-position: 50% 100px , 50% 100px , right 15% center }
bgpos221734 { background-position: 50% bottom , 50% 100px , right 15% center }
bgpos221735 { background-position: 50% center , 50% 100px , right 15% center }
bgpos221736 { background-position: 50% top , 50% 100px , right 15% center }
bgpos221737 { background-position: bottom, 50% 100px , right 15% center }
bgpos221738 { background-position: center , 50% 100px , right 15% center }
bgpos221739 { background-position: center bottom , 50% 100px , right 15% center }
bgpos221740 { background-position: center bottom 15% , 50% 100px , right 15% center }
bgpos221741 { background-position: center bottom 15px , 50% 100px , right 15% center }
bgpos221742 { background-position: center top , 50% 100px , right 15% center }
bgpos221743 { background-position: center top 15% , 50% 100px , right 15% center }
bgpos221744 { background-position: center top 15px , 50% 100px , right 15% center }
bgpos221745 { background-position: center 10% , 50% 100px , right 15% center }
bgpos221746 { background-position: center 100px , 50% 100px , right 15% center }
bgpos221747 { background-position: center bottom , 50% 100px , right 15% center }
bgpos221748 { background-position: center center , 50% 100px , right 15% center }
bgpos221749 { background-position: center top , 50% 100px , right 15% center }
bgpos221750 { background-position: left , 50% 100px , right 15% center }
bgpos221751 { background-position: left 10% , 50% 100px , right 15% center }
bgpos221752 { background-position: left 100px , 50% 100px , right 15% center }
bgpos221753 { background-position: left bottom , 50% 100px , right 15% center }
bgpos221754 { background-position: left center , 50% 100px , right 15% center }
bgpos221755 { background-position: left top , 50% 100px , right 15% center }
bgpos221756 { background-position: right , 50% 100px , right 15% center }
bgpos221757 { background-position: right 10% , 50% 100px , right 15% center }
bgpos221758 { background-position: right 100px , 50% 100px , right 15% center }
bgpos221759 { background-position: right bottom , 50% 100px , right 15% center }
bgpos221760 { background-position: right center , 50% 100px , right 15% center }
bgpos221761 { background-position: right top , 50% 100px , right 15% center }
bgpos221762 { background-position: top , 50% 100px , right 15% center }
bgpos221763 { background-position: left bottom , 50% bottom , right 15% center }
bgpos221764 { background-position: left bottom 15% , 50% bottom , right 15% center }
bgpos221765 { background-position: left bottom 15px , 50% bottom , right 15% center }
bgpos221766 { background-position: left top , 50% bottom , right 15% center }
bgpos221767 { background-position: left top 15% , 50% bottom , right 15% center }
bgpos221768 { background-position: left top 15px , 50% bottom , right 15% center }
bgpos221769 { background-position: left 15% bottom , 50% bottom , right 15% center }
bgpos221770 { background-position: left 15% bottom 15% , 50% bottom , right 15% center }
bgpos221771 { background-position: left 15% bottom 15px , 50% bottom , right 15% center }
bgpos221772 { background-position: left 15% top , 50% bottom , right 15% center }
bgpos221773 { background-position: left 15% top 15% , 50% bottom , right 15% center }
bgpos221774 { background-position: left 15% top 15px , 50% bottom , right 15% center }
bgpos221775 { background-position: left 15% center , 50% bottom , right 15% center }
bgpos221776 { background-position: left 15px bottom , 50% bottom , right 15% center }
bgpos221777 { background-position: left 15px bottom 15% , 50% bottom , right 15% center }
bgpos221778 { background-position: left 15px bottom 15px , 50% bottom , right 15% center }
bgpos221779 { background-position: left 15px top , 50% bottom , right 15% center }
bgpos221780 { background-position: left 15px top 15% , 50% bottom , right 15% center }
bgpos221781 { background-position: left 15px top 15px , 50% bottom , right 15% center }
bgpos221782 { background-position: left 15px center , 50% bottom , right 15% center }
bgpos221783 { background-position: left center , 50% bottom , right 15% center }
bgpos221784 { background-position: right bottom , 50% bottom , right 15% center }
bgpos221785 { background-position: right bottom 15% , 50% bottom , right 15% center }
bgpos221786 { background-position: right bottom 15px , 50% bottom , right 15% center }
bgpos221787 { background-position: right top , 50% bottom , right 15% center }
bgpos221788 { background-position: right top 15% , 50% bottom , right 15% center }
bgpos221789 { background-position: right top 15px , 50% bottom , right 15% center }
bgpos221790 { background-position: right 15% bottom , 50% bottom , right 15% center }
bgpos221791 { background-position: right 15% bottom 15% , 50% bottom , right 15% center }
bgpos221792 { background-position: right 15% bottom 15px , 50% bottom , right 15% center }
bgpos221793 { background-position: right 15% top , 50% bottom , right 15% center }
bgpos221794 { background-position: right 15% top 15% , 50% bottom , right 15% center }
bgpos221795 { background-position: right 15% top 15px , 50% bottom , right 15% center }
bgpos221796 { background-position: right 15% center , 50% bottom , right 15% center }
bgpos221797 { background-position: right 15px bottom , 50% bottom , right 15% center }
bgpos221798 { background-position: right 15px bottom 15% , 50% bottom , right 15% center }
bgpos221799 { background-position: right 15px bottom 15px , 50% bottom , right 15% center }
bgpos221800 { background-position: right 15px top , 50% bottom , right 15% center }
bgpos221801 { background-position: right 15px top 15% , 50% bottom , right 15% center }
bgpos221802 { background-position: right 15px top 15px , 50% bottom , right 15% center }
bgpos221803 { background-position: right 15px center , 50% bottom , right 15% center }
bgpos221804 { background-position: right center , 50% bottom , right 15% center }
bgpos221805 { background-position: 100px , 50% bottom , right 15% center }
bgpos221806 { background-position: 100px 10% , 50% bottom , right 15% center }
bgpos221807 { background-position: 100px 100px , 50% bottom , right 15% center }
bgpos221808 { background-position: 100px bottom , 50% bottom , right 15% center }
bgpos221809 { background-position: 100px center , 50% bottom , right 15% center }
bgpos221810 { background-position: 100px top , 50% bottom , right 15% center }
bgpos221811 { background-position: 50% , 50% bottom , right 15% center }
bgpos221812 { background-position: 50% 10% , 50% bottom , right 15% center }
bgpos221813 { background-position: 50% 100px , 50% bottom , right 15% center }
bgpos221814 { background-position: 50% bottom , 50% bottom , right 15% center }
bgpos221815 { background-position: 50% center , 50% bottom , right 15% center }
bgpos221816 { background-position: 50% top , 50% bottom , right 15% center }
bgpos221817 { background-position: bottom, 50% bottom , right 15% center }
bgpos221818 { background-position: center , 50% bottom , right 15% center }
bgpos221819 { background-position: center bottom , 50% bottom , right 15% center }
bgpos221820 { background-position: center bottom 15% , 50% bottom , right 15% center }
bgpos221821 { background-position: center bottom 15px , 50% bottom , right 15% center }
bgpos221822 { background-position: center top , 50% bottom , right 15% center }
bgpos221823 { background-position: center top 15% , 50% bottom , right 15% center }
bgpos221824 { background-position: center top 15px , 50% bottom , right 15% center }
bgpos221825 { background-position: center 10% , 50% bottom , right 15% center }
bgpos221826 { background-position: center 100px , 50% bottom , right 15% center }
bgpos221827 { background-position: center bottom , 50% bottom , right 15% center }
bgpos221828 { background-position: center center , 50% bottom , right 15% center }
bgpos221829 { background-position: center top , 50% bottom , right 15% center }
bgpos221830 { background-position: left , 50% bottom , right 15% center }
bgpos221831 { background-position: left 10% , 50% bottom , right 15% center }
bgpos221832 { background-position: left 100px , 50% bottom , right 15% center }
bgpos221833 { background-position: left bottom , 50% bottom , right 15% center }
bgpos221834 { background-position: left center , 50% bottom , right 15% center }
bgpos221835 { background-position: left top , 50% bottom , right 15% center }
bgpos221836 { background-position: right , 50% bottom , right 15% center }
bgpos221837 { background-position: right 10% , 50% bottom , right 15% center }
bgpos221838 { background-position: right 100px , 50% bottom , right 15% center }
bgpos221839 { background-position: right bottom , 50% bottom , right 15% center }
bgpos221840 { background-position: right center , 50% bottom , right 15% center }
bgpos221841 { background-position: right top , 50% bottom , right 15% center }
bgpos221842 { background-position: top , 50% bottom , right 15% center }
bgpos221843 { background-position: left bottom , 50% center , right 15% center }
bgpos221844 { background-position: left bottom 15% , 50% center , right 15% center }
bgpos221845 { background-position: left bottom 15px , 50% center , right 15% center }
bgpos221846 { background-position: left top , 50% center , right 15% center }
bgpos221847 { background-position: left top 15% , 50% center , right 15% center }
bgpos221848 { background-position: left top 15px , 50% center , right 15% center }
bgpos221849 { background-position: left 15% bottom , 50% center , right 15% center }
bgpos221850 { background-position: left 15% bottom 15% , 50% center , right 15% center }
bgpos221851 { background-position: left 15% bottom 15px , 50% center , right 15% center }
bgpos221852 { background-position: left 15% top , 50% center , right 15% center }
bgpos221853 { background-position: left 15% top 15% , 50% center , right 15% center }
bgpos221854 { background-position: left 15% top 15px , 50% center , right 15% center }
bgpos221855 { background-position: left 15% center , 50% center , right 15% center }
bgpos221856 { background-position: left 15px bottom , 50% center , right 15% center }
bgpos221857 { background-position: left 15px bottom 15% , 50% center , right 15% center }
bgpos221858 { background-position: left 15px bottom 15px , 50% center , right 15% center }
bgpos221859 { background-position: left 15px top , 50% center , right 15% center }
bgpos221860 { background-position: left 15px top 15% , 50% center , right 15% center }
bgpos221861 { background-position: left 15px top 15px , 50% center , right 15% center }
bgpos221862 { background-position: left 15px center , 50% center , right 15% center }
bgpos221863 { background-position: left center , 50% center , right 15% center }
bgpos221864 { background-position: right bottom , 50% center , right 15% center }
bgpos221865 { background-position: right bottom 15% , 50% center , right 15% center }
bgpos221866 { background-position: right bottom 15px , 50% center , right 15% center }
bgpos221867 { background-position: right top , 50% center , right 15% center }
bgpos221868 { background-position: right top 15% , 50% center , right 15% center }
bgpos221869 { background-position: right top 15px , 50% center , right 15% center }
bgpos221870 { background-position: right 15% bottom , 50% center , right 15% center }
bgpos221871 { background-position: right 15% bottom 15% , 50% center , right 15% center }
bgpos221872 { background-position: right 15% bottom 15px , 50% center , right 15% center }
bgpos221873 { background-position: right 15% top , 50% center , right 15% center }
bgpos221874 { background-position: right 15% top 15% , 50% center , right 15% center }
bgpos221875 { background-position: right 15% top 15px , 50% center , right 15% center }
bgpos221876 { background-position: right 15% center , 50% center , right 15% center }
bgpos221877 { background-position: right 15px bottom , 50% center , right 15% center }
bgpos221878 { background-position: right 15px bottom 15% , 50% center , right 15% center }
bgpos221879 { background-position: right 15px bottom 15px , 50% center , right 15% center }
bgpos221880 { background-position: right 15px top , 50% center , right 15% center }
bgpos221881 { background-position: right 15px top 15% , 50% center , right 15% center }
bgpos221882 { background-position: right 15px top 15px , 50% center , right 15% center }
bgpos221883 { background-position: right 15px center , 50% center , right 15% center }
bgpos221884 { background-position: right center , 50% center , right 15% center }
bgpos221885 { background-position: 100px , 50% center , right 15% center }
bgpos221886 { background-position: 100px 10% , 50% center , right 15% center }
bgpos221887 { background-position: 100px 100px , 50% center , right 15% center }
bgpos221888 { background-position: 100px bottom , 50% center , right 15% center }
bgpos221889 { background-position: 100px center , 50% center , right 15% center }
bgpos221890 { background-position: 100px top , 50% center , right 15% center }
bgpos221891 { background-position: 50% , 50% center , right 15% center }
bgpos221892 { background-position: 50% 10% , 50% center , right 15% center }
bgpos221893 { background-position: 50% 100px , 50% center , right 15% center }
bgpos221894 { background-position: 50% bottom , 50% center , right 15% center }
bgpos221895 { background-position: 50% center , 50% center , right 15% center }
bgpos221896 { background-position: 50% top , 50% center , right 15% center }
bgpos221897 { background-position: bottom, 50% center , right 15% center }
bgpos221898 { background-position: center , 50% center , right 15% center }
bgpos221899 { background-position: center bottom , 50% center , right 15% center }
bgpos221900 { background-position: center bottom 15% , 50% center , right 15% center }
bgpos221901 { background-position: center bottom 15px , 50% center , right 15% center }
bgpos221902 { background-position: center top , 50% center , right 15% center }
bgpos221903 { background-position: center top 15% , 50% center , right 15% center }
bgpos221904 { background-position: center top 15px , 50% center , right 15% center }
bgpos221905 { background-position: center 10% , 50% center , right 15% center }
bgpos221906 { background-position: center 100px , 50% center , right 15% center }
bgpos221907 { background-position: center bottom , 50% center , right 15% center }
bgpos221908 { background-position: center center , 50% center , right 15% center }
bgpos221909 { background-position: center top , 50% center , right 15% center }
bgpos221910 { background-position: left , 50% center , right 15% center }
bgpos221911 { background-position: left 10% , 50% center , right 15% center }
bgpos221912 { background-position: left 100px , 50% center , right 15% center }
bgpos221913 { background-position: left bottom , 50% center , right 15% center }
bgpos221914 { background-position: left center , 50% center , right 15% center }
bgpos221915 { background-position: left top , 50% center , right 15% center }
bgpos221916 { background-position: right , 50% center , right 15% center }
bgpos221917 { background-position: right 10% , 50% center , right 15% center }
bgpos221918 { background-position: right 100px , 50% center , right 15% center }
bgpos221919 { background-position: right bottom , 50% center , right 15% center }
bgpos221920 { background-position: right center , 50% center , right 15% center }
bgpos221921 { background-position: right top , 50% center , right 15% center }
bgpos221922 { background-position: top , 50% center , right 15% center }
bgpos221923 { background-position: left bottom , 50% top , right 15% center }
bgpos221924 { background-position: left bottom 15% , 50% top , right 15% center }
bgpos221925 { background-position: left bottom 15px , 50% top , right 15% center }
bgpos221926 { background-position: left top , 50% top , right 15% center }
bgpos221927 { background-position: left top 15% , 50% top , right 15% center }
bgpos221928 { background-position: left top 15px , 50% top , right 15% center }
bgpos221929 { background-position: left 15% bottom , 50% top , right 15% center }
bgpos221930 { background-position: left 15% bottom 15% , 50% top , right 15% center }
bgpos221931 { background-position: left 15% bottom 15px , 50% top , right 15% center }
bgpos221932 { background-position: left 15% top , 50% top , right 15% center }
bgpos221933 { background-position: left 15% top 15% , 50% top , right 15% center }
bgpos221934 { background-position: left 15% top 15px , 50% top , right 15% center }
bgpos221935 { background-position: left 15% center , 50% top , right 15% center }
bgpos221936 { background-position: left 15px bottom , 50% top , right 15% center }
bgpos221937 { background-position: left 15px bottom 15% , 50% top , right 15% center }
bgpos221938 { background-position: left 15px bottom 15px , 50% top , right 15% center }
bgpos221939 { background-position: left 15px top , 50% top , right 15% center }
bgpos221940 { background-position: left 15px top 15% , 50% top , right 15% center }
bgpos221941 { background-position: left 15px top 15px , 50% top , right 15% center }
bgpos221942 { background-position: left 15px center , 50% top , right 15% center }
bgpos221943 { background-position: left center , 50% top , right 15% center }
bgpos221944 { background-position: right bottom , 50% top , right 15% center }
bgpos221945 { background-position: right bottom 15% , 50% top , right 15% center }
bgpos221946 { background-position: right bottom 15px , 50% top , right 15% center }
bgpos221947 { background-position: right top , 50% top , right 15% center }
bgpos221948 { background-position: right top 15% , 50% top , right 15% center }
bgpos221949 { background-position: right top 15px , 50% top , right 15% center }
bgpos221950 { background-position: right 15% bottom , 50% top , right 15% center }
bgpos221951 { background-position: right 15% bottom 15% , 50% top , right 15% center }
bgpos221952 { background-position: right 15% bottom 15px , 50% top , right 15% center }
bgpos221953 { background-position: right 15% top , 50% top , right 15% center }
bgpos221954 { background-position: right 15% top 15% , 50% top , right 15% center }
bgpos221955 { background-position: right 15% top 15px , 50% top , right 15% center }
bgpos221956 { background-position: right 15% center , 50% top , right 15% center }
bgpos221957 { background-position: right 15px bottom , 50% top , right 15% center }
bgpos221958 { background-position: right 15px bottom 15% , 50% top , right 15% center }
bgpos221959 { background-position: right 15px bottom 15px , 50% top , right 15% center }
bgpos221960 { background-position: right 15px top , 50% top , right 15% center }
bgpos221961 { background-position: right 15px top 15% , 50% top , right 15% center }
bgpos221962 { background-position: right 15px top 15px , 50% top , right 15% center }
bgpos221963 { background-position: right 15px center , 50% top , right 15% center }
bgpos221964 { background-position: right center , 50% top , right 15% center }
bgpos221965 { background-position: 100px , 50% top , right 15% center }
bgpos221966 { background-position: 100px 10% , 50% top , right 15% center }
bgpos221967 { background-position: 100px 100px , 50% top , right 15% center }
bgpos221968 { background-position: 100px bottom , 50% top , right 15% center }
bgpos221969 { background-position: 100px center , 50% top , right 15% center }
bgpos221970 { background-position: 100px top , 50% top , right 15% center }
bgpos221971 { background-position: 50% , 50% top , right 15% center }
bgpos221972 { background-position: 50% 10% , 50% top , right 15% center }
bgpos221973 { background-position: 50% 100px , 50% top , right 15% center }
bgpos221974 { background-position: 50% bottom , 50% top , right 15% center }
bgpos221975 { background-position: 50% center , 50% top , right 15% center }
bgpos221976 { background-position: 50% top , 50% top , right 15% center }
bgpos221977 { background-position: bottom, 50% top , right 15% center }
bgpos221978 { background-position: center , 50% top , right 15% center }
bgpos221979 { background-position: center bottom , 50% top , right 15% center }
bgpos221980 { background-position: center bottom 15% , 50% top , right 15% center }
bgpos221981 { background-position: center bottom 15px , 50% top , right 15% center }
bgpos221982 { background-position: center top , 50% top , right 15% center }
bgpos221983 { background-position: center top 15% , 50% top , right 15% center }
bgpos221984 { background-position: center top 15px , 50% top , right 15% center }
bgpos221985 { background-position: center 10% , 50% top , right 15% center }
bgpos221986 { background-position: center 100px , 50% top , right 15% center }
bgpos221987 { background-position: center bottom , 50% top , right 15% center }
bgpos221988 { background-position: center center , 50% top , right 15% center }
bgpos221989 { background-position: center top , 50% top , right 15% center }
bgpos221990 { background-position: left , 50% top , right 15% center }
bgpos221991 { background-position: left 10% , 50% top , right 15% center }
bgpos221992 { background-position: left 100px , 50% top , right 15% center }
bgpos221993 { background-position: left bottom , 50% top , right 15% center }
bgpos221994 { background-position: left center , 50% top , right 15% center }
bgpos221995 { background-position: left top , 50% top , right 15% center }
bgpos221996 { background-position: right , 50% top , right 15% center }
bgpos221997 { background-position: right 10% , 50% top , right 15% center }
bgpos221998 { background-position: right 100px , 50% top , right 15% center }
bgpos221999 { background-position: right bottom , 50% top , right 15% center }
bgpos222000 { background-position: right center , 50% top , right 15% center }
bgpos222001 { background-position: right top , 50% top , right 15% center }
bgpos222002 { background-position: top , 50% top , right 15% center }
bgpos222003 { background-position: left bottom , bottom, right 15% center }
bgpos222004 { background-position: left bottom 15% , bottom, right 15% center }
bgpos222005 { background-position: left bottom 15px , bottom, right 15% center }
bgpos222006 { background-position: left top , bottom, right 15% center }
bgpos222007 { background-position: left top 15% , bottom, right 15% center }
bgpos222008 { background-position: left top 15px , bottom, right 15% center }
bgpos222009 { background-position: left 15% bottom , bottom, right 15% center }
bgpos222010 { background-position: left 15% bottom 15% , bottom, right 15% center }
bgpos222011 { background-position: left 15% bottom 15px , bottom, right 15% center }
bgpos222012 { background-position: left 15% top , bottom, right 15% center }
bgpos222013 { background-position: left 15% top 15% , bottom, right 15% center }
bgpos222014 { background-position: left 15% top 15px , bottom, right 15% center }
bgpos222015 { background-position: left 15% center , bottom, right 15% center }
bgpos222016 { background-position: left 15px bottom , bottom, right 15% center }
bgpos222017 { background-position: left 15px bottom 15% , bottom, right 15% center }
bgpos222018 { background-position: left 15px bottom 15px , bottom, right 15% center }
bgpos222019 { background-position: left 15px top , bottom, right 15% center }
bgpos222020 { background-position: left 15px top 15% , bottom, right 15% center }
bgpos222021 { background-position: left 15px top 15px , bottom, right 15% center }
bgpos222022 { background-position: left 15px center , bottom, right 15% center }
bgpos222023 { background-position: left center , bottom, right 15% center }
bgpos222024 { background-position: right bottom , bottom, right 15% center }
bgpos222025 { background-position: right bottom 15% , bottom, right 15% center }
bgpos222026 { background-position: right bottom 15px , bottom, right 15% center }
bgpos222027 { background-position: right top , bottom, right 15% center }
bgpos222028 { background-position: right top 15% , bottom, right 15% center }
bgpos222029 { background-position: right top 15px , bottom, right 15% center }
bgpos222030 { background-position: right 15% bottom , bottom, right 15% center }
bgpos222031 { background-position: right 15% bottom 15% , bottom, right 15% center }
bgpos222032 { background-position: right 15% bottom 15px , bottom, right 15% center }
bgpos222033 { background-position: right 15% top , bottom, right 15% center }
bgpos222034 { background-position: right 15% top 15% , bottom, right 15% center }
bgpos222035 { background-position: right 15% top 15px , bottom, right 15% center }
bgpos222036 { background-position: right 15% center , bottom, right 15% center }
bgpos222037 { background-position: right 15px bottom , bottom, right 15% center }
bgpos222038 { background-position: right 15px bottom 15% , bottom, right 15% center }
bgpos222039 { background-position: right 15px bottom 15px , bottom, right 15% center }
bgpos222040 { background-position: right 15px top , bottom, right 15% center }
bgpos222041 { background-position: right 15px top 15% , bottom, right 15% center }
bgpos222042 { background-position: right 15px top 15px , bottom, right 15% center }
bgpos222043 { background-position: right 15px center , bottom, right 15% center }
bgpos222044 { background-position: right center , bottom, right 15% center }
bgpos222045 { background-position: 100px , bottom, right 15% center }
bgpos222046 { background-position: 100px 10% , bottom, right 15% center }
bgpos222047 { background-position: 100px 100px , bottom, right 15% center }
bgpos222048 { background-position: 100px bottom , bottom, right 15% center }
bgpos222049 { background-position: 100px center , bottom, right 15% center }
bgpos222050 { background-position: 100px top , bottom, right 15% center }
bgpos222051 { background-position: 50% , bottom, right 15% center }
bgpos222052 { background-position: 50% 10% , bottom, right 15% center }
bgpos222053 { background-position: 50% 100px , bottom, right 15% center }
bgpos222054 { background-position: 50% bottom , bottom, right 15% center }
bgpos222055 { background-position: 50% center , bottom, right 15% center }
bgpos222056 { background-position: 50% top , bottom, right 15% center }
bgpos222057 { background-position: bottom, bottom, right 15% center }
bgpos222058 { background-position: center , bottom, right 15% center }
bgpos222059 { background-position: center bottom , bottom, right 15% center }
bgpos222060 { background-position: center bottom 15% , bottom, right 15% center }
bgpos222061 { background-position: center bottom 15px , bottom, right 15% center }
bgpos222062 { background-position: center top , bottom, right 15% center }
bgpos222063 { background-position: center top 15% , bottom, right 15% center }
bgpos222064 { background-position: center top 15px , bottom, right 15% center }
bgpos222065 { background-position: center 10% , bottom, right 15% center }
bgpos222066 { background-position: center 100px , bottom, right 15% center }
bgpos222067 { background-position: center bottom , bottom, right 15% center }
bgpos222068 { background-position: center center , bottom, right 15% center }
bgpos222069 { background-position: center top , bottom, right 15% center }
bgpos222070 { background-position: left , bottom, right 15% center }
bgpos222071 { background-position: left 10% , bottom, right 15% center }
bgpos222072 { background-position: left 100px , bottom, right 15% center }
bgpos222073 { background-position: left bottom , bottom, right 15% center }
bgpos222074 { background-position: left center , bottom, right 15% center }
bgpos222075 { background-position: left top , bottom, right 15% center }
bgpos222076 { background-position: right , bottom, right 15% center }
bgpos222077 { background-position: right 10% , bottom, right 15% center }
bgpos222078 { background-position: right 100px , bottom, right 15% center }
bgpos222079 { background-position: right bottom , bottom, right 15% center }
bgpos222080 { background-position: right center , bottom, right 15% center }
bgpos222081 { background-position: right top , bottom, right 15% center }
bgpos222082 { background-position: top , bottom, right 15% center }
bgpos222083 { background-position: left bottom , center , right 15% center }
bgpos222084 { background-position: left bottom 15% , center , right 15% center }
bgpos222085 { background-position: left bottom 15px , center , right 15% center }
bgpos222086 { background-position: left top , center , right 15% center }
bgpos222087 { background-position: left top 15% , center , right 15% center }
bgpos222088 { background-position: left top 15px , center , right 15% center }
bgpos222089 { background-position: left 15% bottom , center , right 15% center }
bgpos222090 { background-position: left 15% bottom 15% , center , right 15% center }
bgpos222091 { background-position: left 15% bottom 15px , center , right 15% center }
bgpos222092 { background-position: left 15% top , center , right 15% center }
bgpos222093 { background-position: left 15% top 15% , center , right 15% center }
bgpos222094 { background-position: left 15% top 15px , center , right 15% center }
bgpos222095 { background-position: left 15% center , center , right 15% center }
bgpos222096 { background-position: left 15px bottom , center , right 15% center }
bgpos222097 { background-position: left 15px bottom 15% , center , right 15% center }
bgpos222098 { background-position: left 15px bottom 15px , center , right 15% center }
bgpos222099 { background-position: left 15px top , center , right 15% center }
bgpos222100 { background-position: left 15px top 15% , center , right 15% center }
bgpos222101 { background-position: left 15px top 15px , center , right 15% center }
bgpos222102 { background-position: left 15px center , center , right 15% center }
bgpos222103 { background-position: left center , center , right 15% center }
bgpos222104 { background-position: right bottom , center , right 15% center }
bgpos222105 { background-position: right bottom 15% , center , right 15% center }
bgpos222106 { background-position: right bottom 15px , center , right 15% center }
bgpos222107 { background-position: right top , center , right 15% center }
bgpos222108 { background-position: right top 15% , center , right 15% center }
bgpos222109 { background-position: right top 15px , center , right 15% center }
bgpos222110 { background-position: right 15% bottom , center , right 15% center }
bgpos222111 { background-position: right 15% bottom 15% , center , right 15% center }
bgpos222112 { background-position: right 15% bottom 15px , center , right 15% center }
bgpos222113 { background-position: right 15% top , center , right 15% center }
bgpos222114 { background-position: right 15% top 15% , center , right 15% center }
bgpos222115 { background-position: right 15% top 15px , center , right 15% center }
bgpos222116 { background-position: right 15% center , center , right 15% center }
bgpos222117 { background-position: right 15px bottom , center , right 15% center }
bgpos222118 { background-position: right 15px bottom 15% , center , right 15% center }
bgpos222119 { background-position: right 15px bottom 15px , center , right 15% center }
bgpos222120 { background-position: right 15px top , center , right 15% center }
bgpos222121 { background-position: right 15px top 15% , center , right 15% center }
bgpos222122 { background-position: right 15px top 15px , center , right 15% center }
bgpos222123 { background-position: right 15px center , center , right 15% center }
bgpos222124 { background-position: right center , center , right 15% center }
bgpos222125 { background-position: 100px , center , right 15% center }
bgpos222126 { background-position: 100px 10% , center , right 15% center }
bgpos222127 { background-position: 100px 100px , center , right 15% center }
bgpos222128 { background-position: 100px bottom , center , right 15% center }
bgpos222129 { background-position: 100px center , center , right 15% center }
bgpos222130 { background-position: 100px top , center , right 15% center }
bgpos222131 { background-position: 50% , center , right 15% center }
bgpos222132 { background-position: 50% 10% , center , right 15% center }
bgpos222133 { background-position: 50% 100px , center , right 15% center }
bgpos222134 { background-position: 50% bottom , center , right 15% center }
bgpos222135 { background-position: 50% center , center , right 15% center }
bgpos222136 { background-position: 50% top , center , right 15% center }
bgpos222137 { background-position: bottom, center , right 15% center }
bgpos222138 { background-position: center , center , right 15% center }
bgpos222139 { background-position: center bottom , center , right 15% center }
bgpos222140 { background-position: center bottom 15% , center , right 15% center }
bgpos222141 { background-position: center bottom 15px , center , right 15% center }
bgpos222142 { background-position: center top , center , right 15% center }
bgpos222143 { background-position: center top 15% , center , right 15% center }
bgpos222144 { background-position: center top 15px , center , right 15% center }
bgpos222145 { background-position: center 10% , center , right 15% center }
bgpos222146 { background-position: center 100px , center , right 15% center }
bgpos222147 { background-position: center bottom , center , right 15% center }
bgpos222148 { background-position: center center , center , right 15% center }
bgpos222149 { background-position: center top , center , right 15% center }
bgpos222150 { background-position: left , center , right 15% center }
bgpos222151 { background-position: left 10% , center , right 15% center }
bgpos222152 { background-position: left 100px , center , right 15% center }
bgpos222153 { background-position: left bottom , center , right 15% center }
bgpos222154 { background-position: left center , center , right 15% center }
bgpos222155 { background-position: left top , center , right 15% center }
bgpos222156 { background-position: right , center , right 15% center }
bgpos222157 { background-position: right 10% , center , right 15% center }
bgpos222158 { background-position: right 100px , center , right 15% center }
bgpos222159 { background-position: right bottom , center , right 15% center }
bgpos222160 { background-position: right center , center , right 15% center }
bgpos222161 { background-position: right top , center , right 15% center }
bgpos222162 { background-position: top , center , right 15% center }
bgpos222163 { background-position: left bottom , center bottom , right 15% center }
bgpos222164 { background-position: left bottom 15% , center bottom , right 15% center }
bgpos222165 { background-position: left bottom 15px , center bottom , right 15% center }
bgpos222166 { background-position: left top , center bottom , right 15% center }
bgpos222167 { background-position: left top 15% , center bottom , right 15% center }
bgpos222168 { background-position: left top 15px , center bottom , right 15% center }
bgpos222169 { background-position: left 15% bottom , center bottom , right 15% center }
bgpos222170 { background-position: left 15% bottom 15% , center bottom , right 15% center }
bgpos222171 { background-position: left 15% bottom 15px , center bottom , right 15% center }
bgpos222172 { background-position: left 15% top , center bottom , right 15% center }
bgpos222173 { background-position: left 15% top 15% , center bottom , right 15% center }
bgpos222174 { background-position: left 15% top 15px , center bottom , right 15% center }
bgpos222175 { background-position: left 15% center , center bottom , right 15% center }
bgpos222176 { background-position: left 15px bottom , center bottom , right 15% center }
bgpos222177 { background-position: left 15px bottom 15% , center bottom , right 15% center }
bgpos222178 { background-position: left 15px bottom 15px , center bottom , right 15% center }
bgpos222179 { background-position: left 15px top , center bottom , right 15% center }
bgpos222180 { background-position: left 15px top 15% , center bottom , right 15% center }
bgpos222181 { background-position: left 15px top 15px , center bottom , right 15% center }
bgpos222182 { background-position: left 15px center , center bottom , right 15% center }
bgpos222183 { background-position: left center , center bottom , right 15% center }
bgpos222184 { background-position: right bottom , center bottom , right 15% center }
bgpos222185 { background-position: right bottom 15% , center bottom , right 15% center }
bgpos222186 { background-position: right bottom 15px , center bottom , right 15% center }
bgpos222187 { background-position: right top , center bottom , right 15% center }
bgpos222188 { background-position: right top 15% , center bottom , right 15% center }
bgpos222189 { background-position: right top 15px , center bottom , right 15% center }
bgpos222190 { background-position: right 15% bottom , center bottom , right 15% center }
bgpos222191 { background-position: right 15% bottom 15% , center bottom , right 15% center }
bgpos222192 { background-position: right 15% bottom 15px , center bottom , right 15% center }
bgpos222193 { background-position: right 15% top , center bottom , right 15% center }
bgpos222194 { background-position: right 15% top 15% , center bottom , right 15% center }
bgpos222195 { background-position: right 15% top 15px , center bottom , right 15% center }
bgpos222196 { background-position: right 15% center , center bottom , right 15% center }
bgpos222197 { background-position: right 15px bottom , center bottom , right 15% center }
bgpos222198 { background-position: right 15px bottom 15% , center bottom , right 15% center }
bgpos222199 { background-position: right 15px bottom 15px , center bottom , right 15% center }
bgpos222200 { background-position: right 15px top , center bottom , right 15% center }
bgpos222201 { background-position: right 15px top 15% , center bottom , right 15% center }
bgpos222202 { background-position: right 15px top 15px , center bottom , right 15% center }
bgpos222203 { background-position: right 15px center , center bottom , right 15% center }
bgpos222204 { background-position: right center , center bottom , right 15% center }
bgpos222205 { background-position: 100px , center bottom , right 15% center }
bgpos222206 { background-position: 100px 10% , center bottom , right 15% center }
bgpos222207 { background-position: 100px 100px , center bottom , right 15% center }
bgpos222208 { background-position: 100px bottom , center bottom , right 15% center }
bgpos222209 { background-position: 100px center , center bottom , right 15% center }
bgpos222210 { background-position: 100px top , center bottom , right 15% center }
bgpos222211 { background-position: 50% , center bottom , right 15% center }
bgpos222212 { background-position: 50% 10% , center bottom , right 15% center }
bgpos222213 { background-position: 50% 100px , center bottom , right 15% center }
bgpos222214 { background-position: 50% bottom , center bottom , right 15% center }
bgpos222215 { background-position: 50% center , center bottom , right 15% center }
bgpos222216 { background-position: 50% top , center bottom , right 15% center }
bgpos222217 { background-position: bottom, center bottom , right 15% center }
bgpos222218 { background-position: center , center bottom , right 15% center }
bgpos222219 { background-position: center bottom , center bottom , right 15% center }
bgpos222220 { background-position: center bottom 15% , center bottom , right 15% center }
bgpos222221 { background-position: center bottom 15px , center bottom , right 15% center }
bgpos222222 { background-position: center top , center bottom , right 15% center }
bgpos222223 { background-position: center top 15% , center bottom , right 15% center }
bgpos222224 { background-position: center top 15px , center bottom , right 15% center }
bgpos222225 { background-position: center 10% , center bottom , right 15% center }
bgpos222226 { background-position: center 100px , center bottom , right 15% center }
bgpos222227 { background-position: center bottom , center bottom , right 15% center }
bgpos222228 { background-position: center center , center bottom , right 15% center }
bgpos222229 { background-position: center top , center bottom , right 15% center }
bgpos222230 { background-position: left , center bottom , right 15% center }
bgpos222231 { background-position: left 10% , center bottom , right 15% center }
bgpos222232 { background-position: left 100px , center bottom , right 15% center }
bgpos222233 { background-position: left bottom , center bottom , right 15% center }
bgpos222234 { background-position: left center , center bottom , right 15% center }
bgpos222235 { background-position: left top , center bottom , right 15% center }
bgpos222236 { background-position: right , center bottom , right 15% center }
bgpos222237 { background-position: right 10% , center bottom , right 15% center }
bgpos222238 { background-position: right 100px , center bottom , right 15% center }
bgpos222239 { background-position: right bottom , center bottom , right 15% center }
bgpos222240 { background-position: right center , center bottom , right 15% center }
bgpos222241 { background-position: right top , center bottom , right 15% center }
bgpos222242 { background-position: top , center bottom , right 15% center }
bgpos222243 { background-position: left bottom , center bottom 15% , right 15% center }
bgpos222244 { background-position: left bottom 15% , center bottom 15% , right 15% center }
bgpos222245 { background-position: left bottom 15px , center bottom 15% , right 15% center }
bgpos222246 { background-position: left top , center bottom 15% , right 15% center }
bgpos222247 { background-position: left top 15% , center bottom 15% , right 15% center }
bgpos222248 { background-position: left top 15px , center bottom 15% , right 15% center }
bgpos222249 { background-position: left 15% bottom , center bottom 15% , right 15% center }
bgpos222250 { background-position: left 15% bottom 15% , center bottom 15% , right 15% center }
bgpos222251 { background-position: left 15% bottom 15px , center bottom 15% , right 15% center }
bgpos222252 { background-position: left 15% top , center bottom 15% , right 15% center }
bgpos222253 { background-position: left 15% top 15% , center bottom 15% , right 15% center }
bgpos222254 { background-position: left 15% top 15px , center bottom 15% , right 15% center }
bgpos222255 { background-position: left 15% center , center bottom 15% , right 15% center }
bgpos222256 { background-position: left 15px bottom , center bottom 15% , right 15% center }
bgpos222257 { background-position: left 15px bottom 15% , center bottom 15% , right 15% center }
bgpos222258 { background-position: left 15px bottom 15px , center bottom 15% , right 15% center }
bgpos222259 { background-position: left 15px top , center bottom 15% , right 15% center }
bgpos222260 { background-position: left 15px top 15% , center bottom 15% , right 15% center }
bgpos222261 { background-position: left 15px top 15px , center bottom 15% , right 15% center }
bgpos222262 { background-position: left 15px center , center bottom 15% , right 15% center }
bgpos222263 { background-position: left center , center bottom 15% , right 15% center }
bgpos222264 { background-position: right bottom , center bottom 15% , right 15% center }
bgpos222265 { background-position: right bottom 15% , center bottom 15% , right 15% center }
bgpos222266 { background-position: right bottom 15px , center bottom 15% , right 15% center }
bgpos222267 { background-position: right top , center bottom 15% , right 15% center }
bgpos222268 { background-position: right top 15% , center bottom 15% , right 15% center }
bgpos222269 { background-position: right top 15px , center bottom 15% , right 15% center }
bgpos222270 { background-position: right 15% bottom , center bottom 15% , right 15% center }
bgpos222271 { background-position: right 15% bottom 15% , center bottom 15% , right 15% center }
bgpos222272 { background-position: right 15% bottom 15px , center bottom 15% , right 15% center }
bgpos222273 { background-position: right 15% top , center bottom 15% , right 15% center }
bgpos222274 { background-position: right 15% top 15% , center bottom 15% , right 15% center }
bgpos222275 { background-position: right 15% top 15px , center bottom 15% , right 15% center }
bgpos222276 { background-position: right 15% center , center bottom 15% , right 15% center }
bgpos222277 { background-position: right 15px bottom , center bottom 15% , right 15% center }
bgpos222278 { background-position: right 15px bottom 15% , center bottom 15% , right 15% center }
bgpos222279 { background-position: right 15px bottom 15px , center bottom 15% , right 15% center }
bgpos222280 { background-position: right 15px top , center bottom 15% , right 15% center }
bgpos222281 { background-position: right 15px top 15% , center bottom 15% , right 15% center }
bgpos222282 { background-position: right 15px top 15px , center bottom 15% , right 15% center }
bgpos222283 { background-position: right 15px center , center bottom 15% , right 15% center }
bgpos222284 { background-position: right center , center bottom 15% , right 15% center }
bgpos222285 { background-position: 100px , center bottom 15% , right 15% center }
bgpos222286 { background-position: 100px 10% , center bottom 15% , right 15% center }
bgpos222287 { background-position: 100px 100px , center bottom 15% , right 15% center }
bgpos222288 { background-position: 100px bottom , center bottom 15% , right 15% center }
bgpos222289 { background-position: 100px center , center bottom 15% , right 15% center }
bgpos222290 { background-position: 100px top , center bottom 15% , right 15% center }
bgpos222291 { background-position: 50% , center bottom 15% , right 15% center }
bgpos222292 { background-position: 50% 10% , center bottom 15% , right 15% center }
bgpos222293 { background-position: 50% 100px , center bottom 15% , right 15% center }
bgpos222294 { background-position: 50% bottom , center bottom 15% , right 15% center }
bgpos222295 { background-position: 50% center , center bottom 15% , right 15% center }
bgpos222296 { background-position: 50% top , center bottom 15% , right 15% center }
bgpos222297 { background-position: bottom, center bottom 15% , right 15% center }
bgpos222298 { background-position: center , center bottom 15% , right 15% center }
bgpos222299 { background-position: center bottom , center bottom 15% , right 15% center }
bgpos222300 { background-position: center bottom 15% , center bottom 15% , right 15% center }
bgpos222301 { background-position: center bottom 15px , center bottom 15% , right 15% center }
bgpos222302 { background-position: center top , center bottom 15% , right 15% center }
bgpos222303 { background-position: center top 15% , center bottom 15% , right 15% center }
bgpos222304 { background-position: center top 15px , center bottom 15% , right 15% center }
bgpos222305 { background-position: center 10% , center bottom 15% , right 15% center }
bgpos222306 { background-position: center 100px , center bottom 15% , right 15% center }
bgpos222307 { background-position: center bottom , center bottom 15% , right 15% center }
bgpos222308 { background-position: center center , center bottom 15% , right 15% center }
bgpos222309 { background-position: center top , center bottom 15% , right 15% center }
bgpos222310 { background-position: left , center bottom 15% , right 15% center }
bgpos222311 { background-position: left 10% , center bottom 15% , right 15% center }
bgpos222312 { background-position: left 100px , center bottom 15% , right 15% center }
bgpos222313 { background-position: left bottom , center bottom 15% , right 15% center }
bgpos222314 { background-position: left center , center bottom 15% , right 15% center }
bgpos222315 { background-position: left top , center bottom 15% , right 15% center }
bgpos222316 { background-position: right , center bottom 15% , right 15% center }
bgpos222317 { background-position: right 10% , center bottom 15% , right 15% center }
bgpos222318 { background-position: right 100px , center bottom 15% , right 15% center }
bgpos222319 { background-position: right bottom , center bottom 15% , right 15% center }
bgpos222320 { background-position: right center , center bottom 15% , right 15% center }
bgpos222321 { background-position: right top , center bottom 15% , right 15% center }
bgpos222322 { background-position: top , center bottom 15% , right 15% center }
bgpos222323 { background-position: left bottom , center bottom 15px , right 15% center }
bgpos222324 { background-position: left bottom 15% , center bottom 15px , right 15% center }
bgpos222325 { background-position: left bottom 15px , center bottom 15px , right 15% center }
bgpos222326 { background-position: left top , center bottom 15px , right 15% center }
bgpos222327 { background-position: left top 15% , center bottom 15px , right 15% center }
bgpos222328 { background-position: left top 15px , center bottom 15px , right 15% center }
bgpos222329 { background-position: left 15% bottom , center bottom 15px , right 15% center }
bgpos222330 { background-position: left 15% bottom 15% , center bottom 15px , right 15% center }
bgpos222331 { background-position: left 15% bottom 15px , center bottom 15px , right 15% center }
bgpos222332 { background-position: left 15% top , center bottom 15px , right 15% center }
bgpos222333 { background-position: left 15% top 15% , center bottom 15px , right 15% center }
bgpos222334 { background-position: left 15% top 15px , center bottom 15px , right 15% center }
bgpos222335 { background-position: left 15% center , center bottom 15px , right 15% center }
bgpos222336 { background-position: left 15px bottom , center bottom 15px , right 15% center }
bgpos222337 { background-position: left 15px bottom 15% , center bottom 15px , right 15% center }
bgpos222338 { background-position: left 15px bottom 15px , center bottom 15px , right 15% center }
bgpos222339 { background-position: left 15px top , center bottom 15px , right 15% center }
bgpos222340 { background-position: left 15px top 15% , center bottom 15px , right 15% center }
bgpos222341 { background-position: left 15px top 15px , center bottom 15px , right 15% center }
bgpos222342 { background-position: left 15px center , center bottom 15px , right 15% center }
bgpos222343 { background-position: left center , center bottom 15px , right 15% center }
bgpos222344 { background-position: right bottom , center bottom 15px , right 15% center }
bgpos222345 { background-position: right bottom 15% , center bottom 15px , right 15% center }
bgpos222346 { background-position: right bottom 15px , center bottom 15px , right 15% center }
bgpos222347 { background-position: right top , center bottom 15px , right 15% center }
bgpos222348 { background-position: right top 15% , center bottom 15px , right 15% center }
bgpos222349 { background-position: right top 15px , center bottom 15px , right 15% center }
bgpos222350 { background-position: right 15% bottom , center bottom 15px , right 15% center }
bgpos222351 { background-position: right 15% bottom 15% , center bottom 15px , right 15% center }
bgpos222352 { background-position: right 15% bottom 15px , center bottom 15px , right 15% center }
bgpos222353 { background-position: right 15% top , center bottom 15px , right 15% center }
bgpos222354 { background-position: right 15% top 15% , center bottom 15px , right 15% center }
bgpos222355 { background-position: right 15% top 15px , center bottom 15px , right 15% center }
bgpos222356 { background-position: right 15% center , center bottom 15px , right 15% center }
bgpos222357 { background-position: right 15px bottom , center bottom 15px , right 15% center }
bgpos222358 { background-position: right 15px bottom 15% , center bottom 15px , right 15% center }
bgpos222359 { background-position: right 15px bottom 15px , center bottom 15px , right 15% center }
bgpos222360 { background-position: right 15px top , center bottom 15px , right 15% center }
bgpos222361 { background-position: right 15px top 15% , center bottom 15px , right 15% center }
bgpos222362 { background-position: right 15px top 15px , center bottom 15px , right 15% center }
bgpos222363 { background-position: right 15px center , center bottom 15px , right 15% center }
bgpos222364 { background-position: right center , center bottom 15px , right 15% center }
bgpos222365 { background-position: 100px , center bottom 15px , right 15% center }
bgpos222366 { background-position: 100px 10% , center bottom 15px , right 15% center }
bgpos222367 { background-position: 100px 100px , center bottom 15px , right 15% center }
bgpos222368 { background-position: 100px bottom , center bottom 15px , right 15% center }
bgpos222369 { background-position: 100px center , center bottom 15px , right 15% center }
bgpos222370 { background-position: 100px top , center bottom 15px , right 15% center }
bgpos222371 { background-position: 50% , center bottom 15px , right 15% center }
bgpos222372 { background-position: 50% 10% , center bottom 15px , right 15% center }
bgpos222373 { background-position: 50% 100px , center bottom 15px , right 15% center }
bgpos222374 { background-position: 50% bottom , center bottom 15px , right 15% center }
bgpos222375 { background-position: 50% center , center bottom 15px , right 15% center }
bgpos222376 { background-position: 50% top , center bottom 15px , right 15% center }
bgpos222377 { background-position: bottom, center bottom 15px , right 15% center }
bgpos222378 { background-position: center , center bottom 15px , right 15% center }
bgpos222379 { background-position: center bottom , center bottom 15px , right 15% center }
bgpos222380 { background-position: center bottom 15% , center bottom 15px , right 15% center }
bgpos222381 { background-position: center bottom 15px , center bottom 15px , right 15% center }
bgpos222382 { background-position: center top , center bottom 15px , right 15% center }
bgpos222383 { background-position: center top 15% , center bottom 15px , right 15% center }
bgpos222384 { background-position: center top 15px , center bottom 15px , right 15% center }
bgpos222385 { background-position: center 10% , center bottom 15px , right 15% center }
bgpos222386 { background-position: center 100px , center bottom 15px , right 15% center }
bgpos222387 { background-position: center bottom , center bottom 15px , right 15% center }
bgpos222388 { background-position: center center , center bottom 15px , right 15% center }
bgpos222389 { background-position: center top , center bottom 15px , right 15% center }
bgpos222390 { background-position: left , center bottom 15px , right 15% center }
bgpos222391 { background-position: left 10% , center bottom 15px , right 15% center }
bgpos222392 { background-position: left 100px , center bottom 15px , right 15% center }
bgpos222393 { background-position: left bottom , center bottom 15px , right 15% center }
bgpos222394 { background-position: left center , center bottom 15px , right 15% center }
bgpos222395 { background-position: left top , center bottom 15px , right 15% center }
bgpos222396 { background-position: right , center bottom 15px , right 15% center }
bgpos222397 { background-position: right 10% , center bottom 15px , right 15% center }
bgpos222398 { background-position: right 100px , center bottom 15px , right 15% center }
bgpos222399 { background-position: right bottom , center bottom 15px , right 15% center }
bgpos222400 { background-position: right center , center bottom 15px , right 15% center }
bgpos222401 { background-position: right top , center bottom 15px , right 15% center }
bgpos222402 { background-position: top , center bottom 15px , right 15% center }
bgpos222403 { background-position: left bottom , center top , right 15% center }
bgpos222404 { background-position: left bottom 15% , center top , right 15% center }
bgpos222405 { background-position: left bottom 15px , center top , right 15% center }
bgpos222406 { background-position: left top , center top , right 15% center }
bgpos222407 { background-position: left top 15% , center top , right 15% center }
bgpos222408 { background-position: left top 15px , center top , right 15% center }
bgpos222409 { background-position: left 15% bottom , center top , right 15% center }
bgpos222410 { background-position: left 15% bottom 15% , center top , right 15% center }
bgpos222411 { background-position: left 15% bottom 15px , center top , right 15% center }
bgpos222412 { background-position: left 15% top , center top , right 15% center }
bgpos222413 { background-position: left 15% top 15% , center top , right 15% center }
bgpos222414 { background-position: left 15% top 15px , center top , right 15% center }
bgpos222415 { background-position: left 15% center , center top , right 15% center }
bgpos222416 { background-position: left 15px bottom , center top , right 15% center }
bgpos222417 { background-position: left 15px bottom 15% , center top , right 15% center }
bgpos222418 { background-position: left 15px bottom 15px , center top , right 15% center }
bgpos222419 { background-position: left 15px top , center top , right 15% center }
bgpos222420 { background-position: left 15px top 15% , center top , right 15% center }
bgpos222421 { background-position: left 15px top 15px , center top , right 15% center }
bgpos222422 { background-position: left 15px center , center top , right 15% center }
bgpos222423 { background-position: left center , center top , right 15% center }
bgpos222424 { background-position: right bottom , center top , right 15% center }
bgpos222425 { background-position: right bottom 15% , center top , right 15% center }
bgpos222426 { background-position: right bottom 15px , center top , right 15% center }
bgpos222427 { background-position: right top , center top , right 15% center }
bgpos222428 { background-position: right top 15% , center top , right 15% center }
bgpos222429 { background-position: right top 15px , center top , right 15% center }
bgpos222430 { background-position: right 15% bottom , center top , right 15% center }
bgpos222431 { background-position: right 15% bottom 15% , center top , right 15% center }
bgpos222432 { background-position: right 15% bottom 15px , center top , right 15% center }
bgpos222433 { background-position: right 15% top , center top , right 15% center }
bgpos222434 { background-position: right 15% top 15% , center top , right 15% center }
bgpos222435 { background-position: right 15% top 15px , center top , right 15% center }
bgpos222436 { background-position: right 15% center , center top , right 15% center }
bgpos222437 { background-position: right 15px bottom , center top , right 15% center }
bgpos222438 { background-position: right 15px bottom 15% , center top , right 15% center }
bgpos222439 { background-position: right 15px bottom 15px , center top , right 15% center }
bgpos222440 { background-position: right 15px top , center top , right 15% center }
bgpos222441 { background-position: right 15px top 15% , center top , right 15% center }
bgpos222442 { background-position: right 15px top 15px , center top , right 15% center }
bgpos222443 { background-position: right 15px center , center top , right 15% center }
bgpos222444 { background-position: right center , center top , right 15% center }
bgpos222445 { background-position: 100px , center top , right 15% center }
bgpos222446 { background-position: 100px 10% , center top , right 15% center }
bgpos222447 { background-position: 100px 100px , center top , right 15% center }
bgpos222448 { background-position: 100px bottom , center top , right 15% center }
bgpos222449 { background-position: 100px center , center top , right 15% center }
bgpos222450 { background-position: 100px top , center top , right 15% center }
bgpos222451 { background-position: 50% , center top , right 15% center }
bgpos222452 { background-position: 50% 10% , center top , right 15% center }
bgpos222453 { background-position: 50% 100px , center top , right 15% center }
bgpos222454 { background-position: 50% bottom , center top , right 15% center }
bgpos222455 { background-position: 50% center , center top , right 15% center }
bgpos222456 { background-position: 50% top , center top , right 15% center }
bgpos222457 { background-position: bottom, center top , right 15% center }
bgpos222458 { background-position: center , center top , right 15% center }
bgpos222459 { background-position: center bottom , center top , right 15% center }
bgpos222460 { background-position: center bottom 15% , center top , right 15% center }
bgpos222461 { background-position: center bottom 15px , center top , right 15% center }
bgpos222462 { background-position: center top , center top , right 15% center }
bgpos222463 { background-position: center top 15% , center top , right 15% center }
bgpos222464 { background-position: center top 15px , center top , right 15% center }
bgpos222465 { background-position: center 10% , center top , right 15% center }
bgpos222466 { background-position: center 100px , center top , right 15% center }
bgpos222467 { background-position: center bottom , center top , right 15% center }
bgpos222468 { background-position: center center , center top , right 15% center }
bgpos222469 { background-position: center top , center top , right 15% center }
bgpos222470 { background-position: left , center top , right 15% center }
bgpos222471 { background-position: left 10% , center top , right 15% center }
bgpos222472 { background-position: left 100px , center top , right 15% center }
bgpos222473 { background-position: left bottom , center top , right 15% center }
bgpos222474 { background-position: left center , center top , right 15% center }
bgpos222475 { background-position: left top , center top , right 15% center }
bgpos222476 { background-position: right , center top , right 15% center }
bgpos222477 { background-position: right 10% , center top , right 15% center }
bgpos222478 { background-position: right 100px , center top , right 15% center }
bgpos222479 { background-position: right bottom , center top , right 15% center }
bgpos222480 { background-position: right center , center top , right 15% center }
bgpos222481 { background-position: right top , center top , right 15% center }
bgpos222482 { background-position: top , center top , right 15% center }
bgpos222483 { background-position: left bottom , center top 15% , right 15% center }
bgpos222484 { background-position: left bottom 15% , center top 15% , right 15% center }
bgpos222485 { background-position: left bottom 15px , center top 15% , right 15% center }
bgpos222486 { background-position: left top , center top 15% , right 15% center }
bgpos222487 { background-position: left top 15% , center top 15% , right 15% center }
bgpos222488 { background-position: left top 15px , center top 15% , right 15% center }
bgpos222489 { background-position: left 15% bottom , center top 15% , right 15% center }
bgpos222490 { background-position: left 15% bottom 15% , center top 15% , right 15% center }
bgpos222491 { background-position: left 15% bottom 15px , center top 15% , right 15% center }
bgpos222492 { background-position: left 15% top , center top 15% , right 15% center }
bgpos222493 { background-position: left 15% top 15% , center top 15% , right 15% center }
bgpos222494 { background-position: left 15% top 15px , center top 15% , right 15% center }
bgpos222495 { background-position: left 15% center , center top 15% , right 15% center }
bgpos222496 { background-position: left 15px bottom , center top 15% , right 15% center }
bgpos222497 { background-position: left 15px bottom 15% , center top 15% , right 15% center }
bgpos222498 { background-position: left 15px bottom 15px , center top 15% , right 15% center }
bgpos222499 { background-position: left 15px top , center top 15% , right 15% center }
bgpos222500 { background-position: left 15px top 15% , center top 15% , right 15% center }
bgpos222501 { background-position: left 15px top 15px , center top 15% , right 15% center }
bgpos222502 { background-position: left 15px center , center top 15% , right 15% center }
bgpos222503 { background-position: left center , center top 15% , right 15% center }
bgpos222504 { background-position: right bottom , center top 15% , right 15% center }
bgpos222505 { background-position: right bottom 15% , center top 15% , right 15% center }
bgpos222506 { background-position: right bottom 15px , center top 15% , right 15% center }
bgpos222507 { background-position: right top , center top 15% , right 15% center }
bgpos222508 { background-position: right top 15% , center top 15% , right 15% center }
bgpos222509 { background-position: right top 15px , center top 15% , right 15% center }
bgpos222510 { background-position: right 15% bottom , center top 15% , right 15% center }
bgpos222511 { background-position: right 15% bottom 15% , center top 15% , right 15% center }
bgpos222512 { background-position: right 15% bottom 15px , center top 15% , right 15% center }
bgpos222513 { background-position: right 15% top , center top 15% , right 15% center }
bgpos222514 { background-position: right 15% top 15% , center top 15% , right 15% center }
bgpos222515 { background-position: right 15% top 15px , center top 15% , right 15% center }
bgpos222516 { background-position: right 15% center , center top 15% , right 15% center }
bgpos222517 { background-position: right 15px bottom , center top 15% , right 15% center }
bgpos222518 { background-position: right 15px bottom 15% , center top 15% , right 15% center }
bgpos222519 { background-position: right 15px bottom 15px , center top 15% , right 15% center }
bgpos222520 { background-position: right 15px top , center top 15% , right 15% center }
bgpos222521 { background-position: right 15px top 15% , center top 15% , right 15% center }
bgpos222522 { background-position: right 15px top 15px , center top 15% , right 15% center }
bgpos222523 { background-position: right 15px center , center top 15% , right 15% center }
bgpos222524 { background-position: right center , center top 15% , right 15% center }
bgpos222525 { background-position: 100px , center top 15% , right 15% center }
bgpos222526 { background-position: 100px 10% , center top 15% , right 15% center }
bgpos222527 { background-position: 100px 100px , center top 15% , right 15% center }
bgpos222528 { background-position: 100px bottom , center top 15% , right 15% center }
bgpos222529 { background-position: 100px center , center top 15% , right 15% center }
bgpos222530 { background-position: 100px top , center top 15% , right 15% center }
bgpos222531 { background-position: 50% , center top 15% , right 15% center }
bgpos222532 { background-position: 50% 10% , center top 15% , right 15% center }
bgpos222533 { background-position: 50% 100px , center top 15% , right 15% center }
bgpos222534 { background-position: 50% bottom , center top 15% , right 15% center }
bgpos222535 { background-position: 50% center , center top 15% , right 15% center }
bgpos222536 { background-position: 50% top , center top 15% , right 15% center }
bgpos222537 { background-position: bottom, center top 15% , right 15% center }
bgpos222538 { background-position: center , center top 15% , right 15% center }
bgpos222539 { background-position: center bottom , center top 15% , right 15% center }
bgpos222540 { background-position: center bottom 15% , center top 15% , right 15% center }
bgpos222541 { background-position: center bottom 15px , center top 15% , right 15% center }
bgpos222542 { background-position: center top , center top 15% , right 15% center }
bgpos222543 { background-position: center top 15% , center top 15% , right 15% center }
bgpos222544 { background-position: center top 15px , center top 15% , right 15% center }
bgpos222545 { background-position: center 10% , center top 15% , right 15% center }
bgpos222546 { background-position: center 100px , center top 15% , right 15% center }
bgpos222547 { background-position: center bottom , center top 15% , right 15% center }
bgpos222548 { background-position: center center , center top 15% , right 15% center }
bgpos222549 { background-position: center top , center top 15% , right 15% center }
bgpos222550 { background-position: left , center top 15% , right 15% center }
bgpos222551 { background-position: left 10% , center top 15% , right 15% center }
bgpos222552 { background-position: left 100px , center top 15% , right 15% center }
bgpos222553 { background-position: left bottom , center top 15% , right 15% center }
bgpos222554 { background-position: left center , center top 15% , right 15% center }
bgpos222555 { background-position: left top , center top 15% , right 15% center }
bgpos222556 { background-position: right , center top 15% , right 15% center }
bgpos222557 { background-position: right 10% , center top 15% , right 15% center }
bgpos222558 { background-position: right 100px , center top 15% , right 15% center }
bgpos222559 { background-position: right bottom , center top 15% , right 15% center }
bgpos222560 { background-position: right center , center top 15% , right 15% center }
bgpos222561 { background-position: right top , center top 15% , right 15% center }
bgpos222562 { background-position: top , center top 15% , right 15% center }
bgpos222563 { background-position: left bottom , center top 15px , right 15% center }
bgpos222564 { background-position: left bottom 15% , center top 15px , right 15% center }
bgpos222565 { background-position: left bottom 15px , center top 15px , right 15% center }
bgpos222566 { background-position: left top , center top 15px , right 15% center }
bgpos222567 { background-position: left top 15% , center top 15px , right 15% center }
bgpos222568 { background-position: left top 15px , center top 15px , right 15% center }
bgpos222569 { background-position: left 15% bottom , center top 15px , right 15% center }
bgpos222570 { background-position: left 15% bottom 15% , center top 15px , right 15% center }
bgpos222571 { background-position: left 15% bottom 15px , center top 15px , right 15% center }
bgpos222572 { background-position: left 15% top , center top 15px , right 15% center }
bgpos222573 { background-position: left 15% top 15% , center top 15px , right 15% center }
bgpos222574 { background-position: left 15% top 15px , center top 15px , right 15% center }
bgpos222575 { background-position: left 15% center , center top 15px , right 15% center }
bgpos222576 { background-position: left 15px bottom , center top 15px , right 15% center }
bgpos222577 { background-position: left 15px bottom 15% , center top 15px , right 15% center }
bgpos222578 { background-position: left 15px bottom 15px , center top 15px , right 15% center }
bgpos222579 { background-position: left 15px top , center top 15px , right 15% center }
bgpos222580 { background-position: left 15px top 15% , center top 15px , right 15% center }
bgpos222581 { background-position: left 15px top 15px , center top 15px , right 15% center }
bgpos222582 { background-position: left 15px center , center top 15px , right 15% center }
bgpos222583 { background-position: left center , center top 15px , right 15% center }
bgpos222584 { background-position: right bottom , center top 15px , right 15% center }
bgpos222585 { background-position: right bottom 15% , center top 15px , right 15% center }
bgpos222586 { background-position: right bottom 15px , center top 15px , right 15% center }
bgpos222587 { background-position: right top , center top 15px , right 15% center }
bgpos222588 { background-position: right top 15% , center top 15px , right 15% center }
bgpos222589 { background-position: right top 15px , center top 15px , right 15% center }
bgpos222590 { background-position: right 15% bottom , center top 15px , right 15% center }
bgpos222591 { background-position: right 15% bottom 15% , center top 15px , right 15% center }
bgpos222592 { background-position: right 15% bottom 15px , center top 15px , right 15% center }
bgpos222593 { background-position: right 15% top , center top 15px , right 15% center }
bgpos222594 { background-position: right 15% top 15% , center top 15px , right 15% center }
bgpos222595 { background-position: right 15% top 15px , center top 15px , right 15% center }
bgpos222596 { background-position: right 15% center , center top 15px , right 15% center }
bgpos222597 { background-position: right 15px bottom , center top 15px , right 15% center }
bgpos222598 { background-position: right 15px bottom 15% , center top 15px , right 15% center }
bgpos222599 { background-position: right 15px bottom 15px , center top 15px , right 15% center }
bgpos222600 { background-position: right 15px top , center top 15px , right 15% center }
bgpos222601 { background-position: right 15px top 15% , center top 15px , right 15% center }
bgpos222602 { background-position: right 15px top 15px , center top 15px , right 15% center }
bgpos222603 { background-position: right 15px center , center top 15px , right 15% center }
bgpos222604 { background-position: right center , center top 15px , right 15% center }
bgpos222605 { background-position: 100px , center top 15px , right 15% center }
bgpos222606 { background-position: 100px 10% , center top 15px , right 15% center }
bgpos222607 { background-position: 100px 100px , center top 15px , right 15% center }
bgpos222608 { background-position: 100px bottom , center top 15px , right 15% center }
bgpos222609 { background-position: 100px center , center top 15px , right 15% center }
bgpos222610 { background-position: 100px top , center top 15px , right 15% center }
bgpos222611 { background-position: 50% , center top 15px , right 15% center }
bgpos222612 { background-position: 50% 10% , center top 15px , right 15% center }
bgpos222613 { background-position: 50% 100px , center top 15px , right 15% center }
bgpos222614 { background-position: 50% bottom , center top 15px , right 15% center }
bgpos222615 { background-position: 50% center , center top 15px , right 15% center }
bgpos222616 { background-position: 50% top , center top 15px , right 15% center }
bgpos222617 { background-position: bottom, center top 15px , right 15% center }
bgpos222618 { background-position: center , center top 15px , right 15% center }
bgpos222619 { background-position: center bottom , center top 15px , right 15% center }
bgpos222620 { background-position: center bottom 15% , center top 15px , right 15% center }
bgpos222621 { background-position: center bottom 15px , center top 15px , right 15% center }
bgpos222622 { background-position: center top , center top 15px , right 15% center }
bgpos222623 { background-position: center top 15% , center top 15px , right 15% center }
bgpos222624 { background-position: center top 15px , center top 15px , right 15% center }
bgpos222625 { background-position: center 10% , center top 15px , right 15% center }
bgpos222626 { background-position: center 100px , center top 15px , right 15% center }
bgpos222627 { background-position: center bottom , center top 15px , right 15% center }
bgpos222628 { background-position: center center , center top 15px , right 15% center }
bgpos222629 { background-position: center top , center top 15px , right 15% center }
bgpos222630 { background-position: left , center top 15px , right 15% center }
bgpos222631 { background-position: left 10% , center top 15px , right 15% center }
bgpos222632 { background-position: left 100px , center top 15px , right 15% center }
bgpos222633 { background-position: left bottom , center top 15px , right 15% center }
bgpos222634 { background-position: left center , center top 15px , right 15% center }
bgpos222635 { background-position: left top , center top 15px , right 15% center }
bgpos222636 { background-position: right , center top 15px , right 15% center }
bgpos222637 { background-position: right 10% , center top 15px , right 15% center }
bgpos222638 { background-position: right 100px , center top 15px , right 15% center }
bgpos222639 { background-position: right bottom , center top 15px , right 15% center }
bgpos222640 { background-position: right center , center top 15px , right 15% center }
bgpos222641 { background-position: right top , center top 15px , right 15% center }
bgpos222642 { background-position: top , center top 15px , right 15% center }
bgpos222643 { background-position: left bottom , center 10% , right 15% center }
bgpos222644 { background-position: left bottom 15% , center 10% , right 15% center }
bgpos222645 { background-position: left bottom 15px , center 10% , right 15% center }
bgpos222646 { background-position: left top , center 10% , right 15% center }
bgpos222647 { background-position: left top 15% , center 10% , right 15% center }
bgpos222648 { background-position: left top 15px , center 10% , right 15% center }
bgpos222649 { background-position: left 15% bottom , center 10% , right 15% center }
bgpos222650 { background-position: left 15% bottom 15% , center 10% , right 15% center }
bgpos222651 { background-position: left 15% bottom 15px , center 10% , right 15% center }
bgpos222652 { background-position: left 15% top , center 10% , right 15% center }
bgpos222653 { background-position: left 15% top 15% , center 10% , right 15% center }
bgpos222654 { background-position: left 15% top 15px , center 10% , right 15% center }
bgpos222655 { background-position: left 15% center , center 10% , right 15% center }
bgpos222656 { background-position: left 15px bottom , center 10% , right 15% center }
bgpos222657 { background-position: left 15px bottom 15% , center 10% , right 15% center }
bgpos222658 { background-position: left 15px bottom 15px , center 10% , right 15% center }
bgpos222659 { background-position: left 15px top , center 10% , right 15% center }
bgpos222660 { background-position: left 15px top 15% , center 10% , right 15% center }
bgpos222661 { background-position: left 15px top 15px , center 10% , right 15% center }
bgpos222662 { background-position: left 15px center , center 10% , right 15% center }
bgpos222663 { background-position: left center , center 10% , right 15% center }
bgpos222664 { background-position: right bottom , center 10% , right 15% center }
bgpos222665 { background-position: right bottom 15% , center 10% , right 15% center }
bgpos222666 { background-position: right bottom 15px , center 10% , right 15% center }
bgpos222667 { background-position: right top , center 10% , right 15% center }
bgpos222668 { background-position: right top 15% , center 10% , right 15% center }
bgpos222669 { background-position: right top 15px , center 10% , right 15% center }
bgpos222670 { background-position: right 15% bottom , center 10% , right 15% center }
bgpos222671 { background-position: right 15% bottom 15% , center 10% , right 15% center }
bgpos222672 { background-position: right 15% bottom 15px , center 10% , right 15% center }
bgpos222673 { background-position: right 15% top , center 10% , right 15% center }
bgpos222674 { background-position: right 15% top 15% , center 10% , right 15% center }
bgpos222675 { background-position: right 15% top 15px , center 10% , right 15% center }
bgpos222676 { background-position: right 15% center , center 10% , right 15% center }
bgpos222677 { background-position: right 15px bottom , center 10% , right 15% center }
bgpos222678 { background-position: right 15px bottom 15% , center 10% , right 15% center }
bgpos222679 { background-position: right 15px bottom 15px , center 10% , right 15% center }
bgpos222680 { background-position: right 15px top , center 10% , right 15% center }
bgpos222681 { background-position: right 15px top 15% , center 10% , right 15% center }
bgpos222682 { background-position: right 15px top 15px , center 10% , right 15% center }
bgpos222683 { background-position: right 15px center , center 10% , right 15% center }
bgpos222684 { background-position: right center , center 10% , right 15% center }
bgpos222685 { background-position: 100px , center 10% , right 15% center }
bgpos222686 { background-position: 100px 10% , center 10% , right 15% center }
bgpos222687 { background-position: 100px 100px , center 10% , right 15% center }
bgpos222688 { background-position: 100px bottom , center 10% , right 15% center }
bgpos222689 { background-position: 100px center , center 10% , right 15% center }
bgpos222690 { background-position: 100px top , center 10% , right 15% center }
bgpos222691 { background-position: 50% , center 10% , right 15% center }
bgpos222692 { background-position: 50% 10% , center 10% , right 15% center }
bgpos222693 { background-position: 50% 100px , center 10% , right 15% center }
bgpos222694 { background-position: 50% bottom , center 10% , right 15% center }
bgpos222695 { background-position: 50% center , center 10% , right 15% center }
bgpos222696 { background-position: 50% top , center 10% , right 15% center }
bgpos222697 { background-position: bottom, center 10% , right 15% center }
bgpos222698 { background-position: center , center 10% , right 15% center }
bgpos222699 { background-position: center bottom , center 10% , right 15% center }
bgpos222700 { background-position: center bottom 15% , center 10% , right 15% center }
bgpos222701 { background-position: center bottom 15px , center 10% , right 15% center }
bgpos222702 { background-position: center top , center 10% , right 15% center }
bgpos222703 { background-position: center top 15% , center 10% , right 15% center }
bgpos222704 { background-position: center top 15px , center 10% , right 15% center }
bgpos222705 { background-position: center 10% , center 10% , right 15% center }
bgpos222706 { background-position: center 100px , center 10% , right 15% center }
bgpos222707 { background-position: center bottom , center 10% , right 15% center }
bgpos222708 { background-position: center center , center 10% , right 15% center }
bgpos222709 { background-position: center top , center 10% , right 15% center }
bgpos222710 { background-position: left , center 10% , right 15% center }
bgpos222711 { background-position: left 10% , center 10% , right 15% center }
bgpos222712 { background-position: left 100px , center 10% , right 15% center }
bgpos222713 { background-position: left bottom , center 10% , right 15% center }
bgpos222714 { background-position: left center , center 10% , right 15% center }
bgpos222715 { background-position: left top , center 10% , right 15% center }
bgpos222716 { background-position: right , center 10% , right 15% center }
bgpos222717 { background-position: right 10% , center 10% , right 15% center }
bgpos222718 { background-position: right 100px , center 10% , right 15% center }
bgpos222719 { background-position: right bottom , center 10% , right 15% center }
bgpos222720 { background-position: right center , center 10% , right 15% center }
bgpos222721 { background-position: right top , center 10% , right 15% center }
bgpos222722 { background-position: top , center 10% , right 15% center }
bgpos222723 { background-position: left bottom , center 100px , right 15% center }
bgpos222724 { background-position: left bottom 15% , center 100px , right 15% center }
bgpos222725 { background-position: left bottom 15px , center 100px , right 15% center }
bgpos222726 { background-position: left top , center 100px , right 15% center }
bgpos222727 { background-position: left top 15% , center 100px , right 15% center }
bgpos222728 { background-position: left top 15px , center 100px , right 15% center }
bgpos222729 { background-position: left 15% bottom , center 100px , right 15% center }
bgpos222730 { background-position: left 15% bottom 15% , center 100px , right 15% center }
bgpos222731 { background-position: left 15% bottom 15px , center 100px , right 15% center }
bgpos222732 { background-position: left 15% top , center 100px , right 15% center }
bgpos222733 { background-position: left 15% top 15% , center 100px , right 15% center }
bgpos222734 { background-position: left 15% top 15px , center 100px , right 15% center }
bgpos222735 { background-position: left 15% center , center 100px , right 15% center }
bgpos222736 { background-position: left 15px bottom , center 100px , right 15% center }
bgpos222737 { background-position: left 15px bottom 15% , center 100px , right 15% center }
bgpos222738 { background-position: left 15px bottom 15px , center 100px , right 15% center }
bgpos222739 { background-position: left 15px top , center 100px , right 15% center }
bgpos222740 { background-position: left 15px top 15% , center 100px , right 15% center }
bgpos222741 { background-position: left 15px top 15px , center 100px , right 15% center }
bgpos222742 { background-position: left 15px center , center 100px , right 15% center }
bgpos222743 { background-position: left center , center 100px , right 15% center }
bgpos222744 { background-position: right bottom , center 100px , right 15% center }
bgpos222745 { background-position: right bottom 15% , center 100px , right 15% center }
bgpos222746 { background-position: right bottom 15px , center 100px , right 15% center }
bgpos222747 { background-position: right top , center 100px , right 15% center }
bgpos222748 { background-position: right top 15% , center 100px , right 15% center }
bgpos222749 { background-position: right top 15px , center 100px , right 15% center }
bgpos222750 { background-position: right 15% bottom , center 100px , right 15% center }
bgpos222751 { background-position: right 15% bottom 15% , center 100px , right 15% center }
bgpos222752 { background-position: right 15% bottom 15px , center 100px , right 15% center }
bgpos222753 { background-position: right 15% top , center 100px , right 15% center }
bgpos222754 { background-position: right 15% top 15% , center 100px , right 15% center }
bgpos222755 { background-position: right 15% top 15px , center 100px , right 15% center }
bgpos222756 { background-position: right 15% center , center 100px , right 15% center }
bgpos222757 { background-position: right 15px bottom , center 100px , right 15% center }
bgpos222758 { background-position: right 15px bottom 15% , center 100px , right 15% center }
bgpos222759 { background-position: right 15px bottom 15px , center 100px , right 15% center }
bgpos222760 { background-position: right 15px top , center 100px , right 15% center }
bgpos222761 { background-position: right 15px top 15% , center 100px , right 15% center }
bgpos222762 { background-position: right 15px top 15px , center 100px , right 15% center }
bgpos222763 { background-position: right 15px center , center 100px , right 15% center }
bgpos222764 { background-position: right center , center 100px , right 15% center }
bgpos222765 { background-position: 100px , center 100px , right 15% center }
bgpos222766 { background-position: 100px 10% , center 100px , right 15% center }
bgpos222767 { background-position: 100px 100px , center 100px , right 15% center }
bgpos222768 { background-position: 100px bottom , center 100px , right 15% center }
bgpos222769 { background-position: 100px center , center 100px , right 15% center }
bgpos222770 { background-position: 100px top , center 100px , right 15% center }
bgpos222771 { background-position: 50% , center 100px , right 15% center }
bgpos222772 { background-position: 50% 10% , center 100px , right 15% center }
bgpos222773 { background-position: 50% 100px , center 100px , right 15% center }
bgpos222774 { background-position: 50% bottom , center 100px , right 15% center }
bgpos222775 { background-position: 50% center , center 100px , right 15% center }
bgpos222776 { background-position: 50% top , center 100px , right 15% center }
bgpos222777 { background-position: bottom, center 100px , right 15% center }
bgpos222778 { background-position: center , center 100px , right 15% center }
bgpos222779 { background-position: center bottom , center 100px , right 15% center }
bgpos222780 { background-position: center bottom 15% , center 100px , right 15% center }
bgpos222781 { background-position: center bottom 15px , center 100px , right 15% center }
bgpos222782 { background-position: center top , center 100px , right 15% center }
bgpos222783 { background-position: center top 15% , center 100px , right 15% center }
bgpos222784 { background-position: center top 15px , center 100px , right 15% center }
bgpos222785 { background-position: center 10% , center 100px , right 15% center }
bgpos222786 { background-position: center 100px , center 100px , right 15% center }
bgpos222787 { background-position: center bottom , center 100px , right 15% center }
bgpos222788 { background-position: center center , center 100px , right 15% center }
bgpos222789 { background-position: center top , center 100px , right 15% center }
bgpos222790 { background-position: left , center 100px , right 15% center }
bgpos222791 { background-position: left 10% , center 100px , right 15% center }
bgpos222792 { background-position: left 100px , center 100px , right 15% center }
bgpos222793 { background-position: left bottom , center 100px , right 15% center }
bgpos222794 { background-position: left center , center 100px , right 15% center }
bgpos222795 { background-position: left top , center 100px , right 15% center }
bgpos222796 { background-position: right , center 100px , right 15% center }
bgpos222797 { background-position: right 10% , center 100px , right 15% center }
bgpos222798 { background-position: right 100px , center 100px , right 15% center }
bgpos222799 { background-position: right bottom , center 100px , right 15% center }
bgpos222800 { background-position: right center , center 100px , right 15% center }
bgpos222801 { background-position: right top , center 100px , right 15% center }
bgpos222802 { background-position: top , center 100px , right 15% center }
bgpos222803 { background-position: left bottom , center bottom , right 15% center }
bgpos222804 { background-position: left bottom 15% , center bottom , right 15% center }
bgpos222805 { background-position: left bottom 15px , center bottom , right 15% center }
bgpos222806 { background-position: left top , center bottom , right 15% center }
bgpos222807 { background-position: left top 15% , center bottom , right 15% center }
bgpos222808 { background-position: left top 15px , center bottom , right 15% center }
bgpos222809 { background-position: left 15% bottom , center bottom , right 15% center }
bgpos222810 { background-position: left 15% bottom 15% , center bottom , right 15% center }
bgpos222811 { background-position: left 15% bottom 15px , center bottom , right 15% center }
bgpos222812 { background-position: left 15% top , center bottom , right 15% center }
bgpos222813 { background-position: left 15% top 15% , center bottom , right 15% center }
bgpos222814 { background-position: left 15% top 15px , center bottom , right 15% center }
bgpos222815 { background-position: left 15% center , center bottom , right 15% center }
bgpos222816 { background-position: left 15px bottom , center bottom , right 15% center }
bgpos222817 { background-position: left 15px bottom 15% , center bottom , right 15% center }
bgpos222818 { background-position: left 15px bottom 15px , center bottom , right 15% center }
bgpos222819 { background-position: left 15px top , center bottom , right 15% center }
bgpos222820 { background-position: left 15px top 15% , center bottom , right 15% center }
bgpos222821 { background-position: left 15px top 15px , center bottom , right 15% center }
bgpos222822 { background-position: left 15px center , center bottom , right 15% center }
bgpos222823 { background-position: left center , center bottom , right 15% center }
bgpos222824 { background-position: right bottom , center bottom , right 15% center }
bgpos222825 { background-position: right bottom 15% , center bottom , right 15% center }
bgpos222826 { background-position: right bottom 15px , center bottom , right 15% center }
bgpos222827 { background-position: right top , center bottom , right 15% center }
bgpos222828 { background-position: right top 15% , center bottom , right 15% center }
bgpos222829 { background-position: right top 15px , center bottom , right 15% center }
bgpos222830 { background-position: right 15% bottom , center bottom , right 15% center }
bgpos222831 { background-position: right 15% bottom 15% , center bottom , right 15% center }
bgpos222832 { background-position: right 15% bottom 15px , center bottom , right 15% center }
bgpos222833 { background-position: right 15% top , center bottom , right 15% center }
bgpos222834 { background-position: right 15% top 15% , center bottom , right 15% center }
bgpos222835 { background-position: right 15% top 15px , center bottom , right 15% center }
bgpos222836 { background-position: right 15% center , center bottom , right 15% center }
bgpos222837 { background-position: right 15px bottom , center bottom , right 15% center }
bgpos222838 { background-position: right 15px bottom 15% , center bottom , right 15% center }
bgpos222839 { background-position: right 15px bottom 15px , center bottom , right 15% center }
bgpos222840 { background-position: right 15px top , center bottom , right 15% center }
bgpos222841 { background-position: right 15px top 15% , center bottom , right 15% center }
bgpos222842 { background-position: right 15px top 15px , center bottom , right 15% center }
bgpos222843 { background-position: right 15px center , center bottom , right 15% center }
bgpos222844 { background-position: right center , center bottom , right 15% center }
bgpos222845 { background-position: 100px , center bottom , right 15% center }
bgpos222846 { background-position: 100px 10% , center bottom , right 15% center }
bgpos222847 { background-position: 100px 100px , center bottom , right 15% center }
bgpos222848 { background-position: 100px bottom , center bottom , right 15% center }
bgpos222849 { background-position: 100px center , center bottom , right 15% center }
bgpos222850 { background-position: 100px top , center bottom , right 15% center }
bgpos222851 { background-position: 50% , center bottom , right 15% center }
bgpos222852 { background-position: 50% 10% , center bottom , right 15% center }
bgpos222853 { background-position: 50% 100px , center bottom , right 15% center }
bgpos222854 { background-position: 50% bottom , center bottom , right 15% center }
bgpos222855 { background-position: 50% center , center bottom , right 15% center }
bgpos222856 { background-position: 50% top , center bottom , right 15% center }
bgpos222857 { background-position: bottom, center bottom , right 15% center }
bgpos222858 { background-position: center , center bottom , right 15% center }
bgpos222859 { background-position: center bottom , center bottom , right 15% center }
bgpos222860 { background-position: center bottom 15% , center bottom , right 15% center }
bgpos222861 { background-position: center bottom 15px , center bottom , right 15% center }
bgpos222862 { background-position: center top , center bottom , right 15% center }
bgpos222863 { background-position: center top 15% , center bottom , right 15% center }
bgpos222864 { background-position: center top 15px , center bottom , right 15% center }
bgpos222865 { background-position: center 10% , center bottom , right 15% center }
bgpos222866 { background-position: center 100px , center bottom , right 15% center }
bgpos222867 { background-position: center bottom , center bottom , right 15% center }
bgpos222868 { background-position: center center , center bottom , right 15% center }
bgpos222869 { background-position: center top , center bottom , right 15% center }
bgpos222870 { background-position: left , center bottom , right 15% center }
bgpos222871 { background-position: left 10% , center bottom , right 15% center }
bgpos222872 { background-position: left 100px , center bottom , right 15% center }
bgpos222873 { background-position: left bottom , center bottom , right 15% center }
bgpos222874 { background-position: left center , center bottom , right 15% center }
bgpos222875 { background-position: left top , center bottom , right 15% center }
bgpos222876 { background-position: right , center bottom , right 15% center }
bgpos222877 { background-position: right 10% , center bottom , right 15% center }
bgpos222878 { background-position: right 100px , center bottom , right 15% center }
bgpos222879 { background-position: right bottom , center bottom , right 15% center }
bgpos222880 { background-position: right center , center bottom , right 15% center }
bgpos222881 { background-position: right top , center bottom , right 15% center }
bgpos222882 { background-position: top , center bottom , right 15% center }
bgpos222883 { background-position: left bottom , center center , right 15% center }
bgpos222884 { background-position: left bottom 15% , center center , right 15% center }
bgpos222885 { background-position: left bottom 15px , center center , right 15% center }
bgpos222886 { background-position: left top , center center , right 15% center }
bgpos222887 { background-position: left top 15% , center center , right 15% center }
bgpos222888 { background-position: left top 15px , center center , right 15% center }
bgpos222889 { background-position: left 15% bottom , center center , right 15% center }
bgpos222890 { background-position: left 15% bottom 15% , center center , right 15% center }
bgpos222891 { background-position: left 15% bottom 15px , center center , right 15% center }
bgpos222892 { background-position: left 15% top , center center , right 15% center }
bgpos222893 { background-position: left 15% top 15% , center center , right 15% center }
bgpos222894 { background-position: left 15% top 15px , center center , right 15% center }
bgpos222895 { background-position: left 15% center , center center , right 15% center }
bgpos222896 { background-position: left 15px bottom , center center , right 15% center }
bgpos222897 { background-position: left 15px bottom 15% , center center , right 15% center }
bgpos222898 { background-position: left 15px bottom 15px , center center , right 15% center }
bgpos222899 { background-position: left 15px top , center center , right 15% center }
bgpos222900 { background-position: left 15px top 15% , center center , right 15% center }
bgpos222901 { background-position: left 15px top 15px , center center , right 15% center }
bgpos222902 { background-position: left 15px center , center center , right 15% center }
bgpos222903 { background-position: left center , center center , right 15% center }
bgpos222904 { background-position: right bottom , center center , right 15% center }
bgpos222905 { background-position: right bottom 15% , center center , right 15% center }
bgpos222906 { background-position: right bottom 15px , center center , right 15% center }
bgpos222907 { background-position: right top , center center , right 15% center }
bgpos222908 { background-position: right top 15% , center center , right 15% center }
bgpos222909 { background-position: right top 15px , center center , right 15% center }
bgpos222910 { background-position: right 15% bottom , center center , right 15% center }
bgpos222911 { background-position: right 15% bottom 15% , center center , right 15% center }
bgpos222912 { background-position: right 15% bottom 15px , center center , right 15% center }
bgpos222913 { background-position: right 15% top , center center , right 15% center }
bgpos222914 { background-position: right 15% top 15% , center center , right 15% center }
bgpos222915 { background-position: right 15% top 15px , center center , right 15% center }
bgpos222916 { background-position: right 15% center , center center , right 15% center }
bgpos222917 { background-position: right 15px bottom , center center , right 15% center }
bgpos222918 { background-position: right 15px bottom 15% , center center , right 15% center }
bgpos222919 { background-position: right 15px bottom 15px , center center , right 15% center }
bgpos222920 { background-position: right 15px top , center center , right 15% center }
bgpos222921 { background-position: right 15px top 15% , center center , right 15% center }
bgpos222922 { background-position: right 15px top 15px , center center , right 15% center }
bgpos222923 { background-position: right 15px center , center center , right 15% center }
bgpos222924 { background-position: right center , center center , right 15% center }
bgpos222925 { background-position: 100px , center center , right 15% center }
bgpos222926 { background-position: 100px 10% , center center , right 15% center }
bgpos222927 { background-position: 100px 100px , center center , right 15% center }
bgpos222928 { background-position: 100px bottom , center center , right 15% center }
bgpos222929 { background-position: 100px center , center center , right 15% center }
bgpos222930 { background-position: 100px top , center center , right 15% center }
bgpos222931 { background-position: 50% , center center , right 15% center }
bgpos222932 { background-position: 50% 10% , center center , right 15% center }
bgpos222933 { background-position: 50% 100px , center center , right 15% center }
bgpos222934 { background-position: 50% bottom , center center , right 15% center }
bgpos222935 { background-position: 50% center , center center , right 15% center }
bgpos222936 { background-position: 50% top , center center , right 15% center }
bgpos222937 { background-position: bottom, center center , right 15% center }
bgpos222938 { background-position: center , center center , right 15% center }
bgpos222939 { background-position: center bottom , center center , right 15% center }
bgpos222940 { background-position: center bottom 15% , center center , right 15% center }
bgpos222941 { background-position: center bottom 15px , center center , right 15% center }
bgpos222942 { background-position: center top , center center , right 15% center }
bgpos222943 { background-position: center top 15% , center center , right 15% center }
bgpos222944 { background-position: center top 15px , center center , right 15% center }
bgpos222945 { background-position: center 10% , center center , right 15% center }
bgpos222946 { background-position: center 100px , center center , right 15% center }
bgpos222947 { background-position: center bottom , center center , right 15% center }
bgpos222948 { background-position: center center , center center , right 15% center }
bgpos222949 { background-position: center top , center center , right 15% center }
bgpos222950 { background-position: left , center center , right 15% center }
bgpos222951 { background-position: left 10% , center center , right 15% center }
bgpos222952 { background-position: left 100px , center center , right 15% center }
bgpos222953 { background-position: left bottom , center center , right 15% center }
bgpos222954 { background-position: left center , center center , right 15% center }
bgpos222955 { background-position: left top , center center , right 15% center }
bgpos222956 { background-position: right , center center , right 15% center }
bgpos222957 { background-position: right 10% , center center , right 15% center }
bgpos222958 { background-position: right 100px , center center , right 15% center }
bgpos222959 { background-position: right bottom , center center , right 15% center }
bgpos222960 { background-position: right center , center center , right 15% center }
bgpos222961 { background-position: right top , center center , right 15% center }
bgpos222962 { background-position: top , center center , right 15% center }
bgpos222963 { background-position: left bottom , center top , right 15% center }
bgpos222964 { background-position: left bottom 15% , center top , right 15% center }
bgpos222965 { background-position: left bottom 15px , center top , right 15% center }
bgpos222966 { background-position: left top , center top , right 15% center }
bgpos222967 { background-position: left top 15% , center top , right 15% center }
bgpos222968 { background-position: left top 15px , center top , right 15% center }
bgpos222969 { background-position: left 15% bottom , center top , right 15% center }
bgpos222970 { background-position: left 15% bottom 15% , center top , right 15% center }
bgpos222971 { background-position: left 15% bottom 15px , center top , right 15% center }
bgpos222972 { background-position: left 15% top , center top , right 15% center }
bgpos222973 { background-position: left 15% top 15% , center top , right 15% center }
bgpos222974 { background-position: left 15% top 15px , center top , right 15% center }
bgpos222975 { background-position: left 15% center , center top , right 15% center }
bgpos222976 { background-position: left 15px bottom , center top , right 15% center }
bgpos222977 { background-position: left 15px bottom 15% , center top , right 15% center }
bgpos222978 { background-position: left 15px bottom 15px , center top , right 15% center }
bgpos222979 { background-position: left 15px top , center top , right 15% center }
bgpos222980 { background-position: left 15px top 15% , center top , right 15% center }
bgpos222981 { background-position: left 15px top 15px , center top , right 15% center }
bgpos222982 { background-position: left 15px center , center top , right 15% center }
bgpos222983 { background-position: left center , center top , right 15% center }
bgpos222984 { background-position: right bottom , center top , right 15% center }
bgpos222985 { background-position: right bottom 15% , center top , right 15% center }
bgpos222986 { background-position: right bottom 15px , center top , right 15% center }
bgpos222987 { background-position: right top , center top , right 15% center }
bgpos222988 { background-position: right top 15% , center top , right 15% center }
bgpos222989 { background-position: right top 15px , center top , right 15% center }
bgpos222990 { background-position: right 15% bottom , center top , right 15% center }
bgpos222991 { background-position: right 15% bottom 15% , center top , right 15% center }
bgpos222992 { background-position: right 15% bottom 15px , center top , right 15% center }
bgpos222993 { background-position: right 15% top , center top , right 15% center }
bgpos222994 { background-position: right 15% top 15% , center top , right 15% center }
bgpos222995 { background-position: right 15% top 15px , center top , right 15% center }
bgpos222996 { background-position: right 15% center , center top , right 15% center }
bgpos222997 { background-position: right 15px bottom , center top , right 15% center }
bgpos222998 { background-position: right 15px bottom 15% , center top , right 15% center }
bgpos222999 { background-position: right 15px bottom 15px , center top , right 15% center }
bgpos223000 { background-position: right 15px top , center top , right 15% center }
bgpos223001 { background-position: right 15px top 15% , center top , right 15% center }
bgpos223002 { background-position: right 15px top 15px , center top , right 15% center }
bgpos223003 { background-position: right 15px center , center top , right 15% center }
bgpos223004 { background-position: right center , center top , right 15% center }
bgpos223005 { background-position: 100px , center top , right 15% center }
bgpos223006 { background-position: 100px 10% , center top , right 15% center }
bgpos223007 { background-position: 100px 100px , center top , right 15% center }
bgpos223008 { background-position: 100px bottom , center top , right 15% center }
bgpos223009 { background-position: 100px center , center top , right 15% center }
bgpos223010 { background-position: 100px top , center top , right 15% center }
bgpos223011 { background-position: 50% , center top , right 15% center }
bgpos223012 { background-position: 50% 10% , center top , right 15% center }
bgpos223013 { background-position: 50% 100px , center top , right 15% center }
bgpos223014 { background-position: 50% bottom , center top , right 15% center }
bgpos223015 { background-position: 50% center , center top , right 15% center }
bgpos223016 { background-position: 50% top , center top , right 15% center }
bgpos223017 { background-position: bottom, center top , right 15% center }
bgpos223018 { background-position: center , center top , right 15% center }
bgpos223019 { background-position: center bottom , center top , right 15% center }
bgpos223020 { background-position: center bottom 15% , center top , right 15% center }
bgpos223021 { background-position: center bottom 15px , center top , right 15% center }
bgpos223022 { background-position: center top , center top , right 15% center }
bgpos223023 { background-position: center top 15% , center top , right 15% center }
bgpos223024 { background-position: center top 15px , center top , right 15% center }
bgpos223025 { background-position: center 10% , center top , right 15% center }
bgpos223026 { background-position: center 100px , center top , right 15% center }
bgpos223027 { background-position: center bottom , center top , right 15% center }
bgpos223028 { background-position: center center , center top , right 15% center }
bgpos223029 { background-position: center top , center top , right 15% center }
bgpos223030 { background-position: left , center top , right 15% center }
bgpos223031 { background-position: left 10% , center top , right 15% center }
bgpos223032 { background-position: left 100px , center top , right 15% center }
bgpos223033 { background-position: left bottom , center top , right 15% center }
bgpos223034 { background-position: left center , center top , right 15% center }
bgpos223035 { background-position: left top , center top , right 15% center }
bgpos223036 { background-position: right , center top , right 15% center }
bgpos223037 { background-position: right 10% , center top , right 15% center }
bgpos223038 { background-position: right 100px , center top , right 15% center }
bgpos223039 { background-position: right bottom , center top , right 15% center }
bgpos223040 { background-position: right center , center top , right 15% center }
bgpos223041 { background-position: right top , center top , right 15% center }
bgpos223042 { background-position: top , center top , right 15% center }
bgpos223043 { background-position: left bottom , left , right 15% center }
bgpos223044 { background-position: left bottom 15% , left , right 15% center }
bgpos223045 { background-position: left bottom 15px , left , right 15% center }
bgpos223046 { background-position: left top , left , right 15% center }
bgpos223047 { background-position: left top 15% , left , right 15% center }
bgpos223048 { background-position: left top 15px , left , right 15% center }
bgpos223049 { background-position: left 15% bottom , left , right 15% center }
bgpos223050 { background-position: left 15% bottom 15% , left , right 15% center }
bgpos223051 { background-position: left 15% bottom 15px , left , right 15% center }
bgpos223052 { background-position: left 15% top , left , right 15% center }
bgpos223053 { background-position: left 15% top 15% , left , right 15% center }
bgpos223054 { background-position: left 15% top 15px , left , right 15% center }
bgpos223055 { background-position: left 15% center , left , right 15% center }
bgpos223056 { background-position: left 15px bottom , left , right 15% center }
bgpos223057 { background-position: left 15px bottom 15% , left , right 15% center }
bgpos223058 { background-position: left 15px bottom 15px , left , right 15% center }
bgpos223059 { background-position: left 15px top , left , right 15% center }
bgpos223060 { background-position: left 15px top 15% , left , right 15% center }
bgpos223061 { background-position: left 15px top 15px , left , right 15% center }
bgpos223062 { background-position: left 15px center , left , right 15% center }
bgpos223063 { background-position: left center , left , right 15% center }
bgpos223064 { background-position: right bottom , left , right 15% center }
bgpos223065 { background-position: right bottom 15% , left , right 15% center }
bgpos223066 { background-position: right bottom 15px , left , right 15% center }
bgpos223067 { background-position: right top , left , right 15% center }
bgpos223068 { background-position: right top 15% , left , right 15% center }
bgpos223069 { background-position: right top 15px , left , right 15% center }
bgpos223070 { background-position: right 15% bottom , left , right 15% center }
bgpos223071 { background-position: right 15% bottom 15% , left , right 15% center }
bgpos223072 { background-position: right 15% bottom 15px , left , right 15% center }
bgpos223073 { background-position: right 15% top , left , right 15% center }
bgpos223074 { background-position: right 15% top 15% , left , right 15% center }
bgpos223075 { background-position: right 15% top 15px , left , right 15% center }
bgpos223076 { background-position: right 15% center , left , right 15% center }
bgpos223077 { background-position: right 15px bottom , left , right 15% center }
bgpos223078 { background-position: right 15px bottom 15% , left , right 15% center }
bgpos223079 { background-position: right 15px bottom 15px , left , right 15% center }
bgpos223080 { background-position: right 15px top , left , right 15% center }
bgpos223081 { background-position: right 15px top 15% , left , right 15% center }
bgpos223082 { background-position: right 15px top 15px , left , right 15% center }
bgpos223083 { background-position: right 15px center , left , right 15% center }
bgpos223084 { background-position: right center , left , right 15% center }
bgpos223085 { background-position: 100px , left , right 15% center }
bgpos223086 { background-position: 100px 10% , left , right 15% center }
bgpos223087 { background-position: 100px 100px , left , right 15% center }
bgpos223088 { background-position: 100px bottom , left , right 15% center }
bgpos223089 { background-position: 100px center , left , right 15% center }
bgpos223090 { background-position: 100px top , left , right 15% center }
bgpos223091 { background-position: 50% , left , right 15% center }
bgpos223092 { background-position: 50% 10% , left , right 15% center }
bgpos223093 { background-position: 50% 100px , left , right 15% center }
bgpos223094 { background-position: 50% bottom , left , right 15% center }
bgpos223095 { background-position: 50% center , left , right 15% center }
bgpos223096 { background-position: 50% top , left , right 15% center }
bgpos223097 { background-position: bottom, left , right 15% center }
bgpos223098 { background-position: center , left , right 15% center }
bgpos223099 { background-position: center bottom , left , right 15% center }
bgpos223100 { background-position: center bottom 15% , left , right 15% center }
bgpos223101 { background-position: center bottom 15px , left , right 15% center }
bgpos223102 { background-position: center top , left , right 15% center }
bgpos223103 { background-position: center top 15% , left , right 15% center }
bgpos223104 { background-position: center top 15px , left , right 15% center }
bgpos223105 { background-position: center 10% , left , right 15% center }
bgpos223106 { background-position: center 100px , left , right 15% center }
bgpos223107 { background-position: center bottom , left , right 15% center }
bgpos223108 { background-position: center center , left , right 15% center }
bgpos223109 { background-position: center top , left , right 15% center }
bgpos223110 { background-position: left , left , right 15% center }
bgpos223111 { background-position: left 10% , left , right 15% center }
bgpos223112 { background-position: left 100px , left , right 15% center }
bgpos223113 { background-position: left bottom , left , right 15% center }
bgpos223114 { background-position: left center , left , right 15% center }
bgpos223115 { background-position: left top , left , right 15% center }
bgpos223116 { background-position: right , left , right 15% center }
bgpos223117 { background-position: right 10% , left , right 15% center }
bgpos223118 { background-position: right 100px , left , right 15% center }
bgpos223119 { background-position: right bottom , left , right 15% center }
bgpos223120 { background-position: right center , left , right 15% center }
bgpos223121 { background-position: right top , left , right 15% center }
bgpos223122 { background-position: top , left , right 15% center }
bgpos223123 { background-position: left bottom , left 10% , right 15% center }
bgpos223124 { background-position: left bottom 15% , left 10% , right 15% center }
bgpos223125 { background-position: left bottom 15px , left 10% , right 15% center }
bgpos223126 { background-position: left top , left 10% , right 15% center }
bgpos223127 { background-position: left top 15% , left 10% , right 15% center }
bgpos223128 { background-position: left top 15px , left 10% , right 15% center }
bgpos223129 { background-position: left 15% bottom , left 10% , right 15% center }
bgpos223130 { background-position: left 15% bottom 15% , left 10% , right 15% center }
bgpos223131 { background-position: left 15% bottom 15px , left 10% , right 15% center }
bgpos223132 { background-position: left 15% top , left 10% , right 15% center }
bgpos223133 { background-position: left 15% top 15% , left 10% , right 15% center }
bgpos223134 { background-position: left 15% top 15px , left 10% , right 15% center }
bgpos223135 { background-position: left 15% center , left 10% , right 15% center }
bgpos223136 { background-position: left 15px bottom , left 10% , right 15% center }
bgpos223137 { background-position: left 15px bottom 15% , left 10% , right 15% center }
bgpos223138 { background-position: left 15px bottom 15px , left 10% , right 15% center }
bgpos223139 { background-position: left 15px top , left 10% , right 15% center }
bgpos223140 { background-position: left 15px top 15% , left 10% , right 15% center }
bgpos223141 { background-position: left 15px top 15px , left 10% , right 15% center }
bgpos223142 { background-position: left 15px center , left 10% , right 15% center }
bgpos223143 { background-position: left center , left 10% , right 15% center }
bgpos223144 { background-position: right bottom , left 10% , right 15% center }
bgpos223145 { background-position: right bottom 15% , left 10% , right 15% center }
bgpos223146 { background-position: right bottom 15px , left 10% , right 15% center }
bgpos223147 { background-position: right top , left 10% , right 15% center }
bgpos223148 { background-position: right top 15% , left 10% , right 15% center }
bgpos223149 { background-position: right top 15px , left 10% , right 15% center }
bgpos223150 { background-position: right 15% bottom , left 10% , right 15% center }
bgpos223151 { background-position: right 15% bottom 15% , left 10% , right 15% center }
bgpos223152 { background-position: right 15% bottom 15px , left 10% , right 15% center }
bgpos223153 { background-position: right 15% top , left 10% , right 15% center }
bgpos223154 { background-position: right 15% top 15% , left 10% , right 15% center }
bgpos223155 { background-position: right 15% top 15px , left 10% , right 15% center }
bgpos223156 { background-position: right 15% center , left 10% , right 15% center }
bgpos223157 { background-position: right 15px bottom , left 10% , right 15% center }
bgpos223158 { background-position: right 15px bottom 15% , left 10% , right 15% center }
bgpos223159 { background-position: right 15px bottom 15px , left 10% , right 15% center }
bgpos223160 { background-position: right 15px top , left 10% , right 15% center }
bgpos223161 { background-position: right 15px top 15% , left 10% , right 15% center }
bgpos223162 { background-position: right 15px top 15px , left 10% , right 15% center }
bgpos223163 { background-position: right 15px center , left 10% , right 15% center }
bgpos223164 { background-position: right center , left 10% , right 15% center }
bgpos223165 { background-position: 100px , left 10% , right 15% center }
bgpos223166 { background-position: 100px 10% , left 10% , right 15% center }
bgpos223167 { background-position: 100px 100px , left 10% , right 15% center }
bgpos223168 { background-position: 100px bottom , left 10% , right 15% center }
bgpos223169 { background-position: 100px center , left 10% , right 15% center }
bgpos223170 { background-position: 100px top , left 10% , right 15% center }
bgpos223171 { background-position: 50% , left 10% , right 15% center }
bgpos223172 { background-position: 50% 10% , left 10% , right 15% center }
bgpos223173 { background-position: 50% 100px , left 10% , right 15% center }
bgpos223174 { background-position: 50% bottom , left 10% , right 15% center }
bgpos223175 { background-position: 50% center , left 10% , right 15% center }
bgpos223176 { background-position: 50% top , left 10% , right 15% center }
bgpos223177 { background-position: bottom, left 10% , right 15% center }
bgpos223178 { background-position: center , left 10% , right 15% center }
bgpos223179 { background-position: center bottom , left 10% , right 15% center }
bgpos223180 { background-position: center bottom 15% , left 10% , right 15% center }
bgpos223181 { background-position: center bottom 15px , left 10% , right 15% center }
bgpos223182 { background-position: center top , left 10% , right 15% center }
bgpos223183 { background-position: center top 15% , left 10% , right 15% center }
bgpos223184 { background-position: center top 15px , left 10% , right 15% center }
bgpos223185 { background-position: center 10% , left 10% , right 15% center }
bgpos223186 { background-position: center 100px , left 10% , right 15% center }
bgpos223187 { background-position: center bottom , left 10% , right 15% center }
bgpos223188 { background-position: center center , left 10% , right 15% center }
bgpos223189 { background-position: center top , left 10% , right 15% center }
bgpos223190 { background-position: left , left 10% , right 15% center }
bgpos223191 { background-position: left 10% , left 10% , right 15% center }
bgpos223192 { background-position: left 100px , left 10% , right 15% center }
bgpos223193 { background-position: left bottom , left 10% , right 15% center }
bgpos223194 { background-position: left center , left 10% , right 15% center }
bgpos223195 { background-position: left top , left 10% , right 15% center }
bgpos223196 { background-position: right , left 10% , right 15% center }
bgpos223197 { background-position: right 10% , left 10% , right 15% center }
bgpos223198 { background-position: right 100px , left 10% , right 15% center }
bgpos223199 { background-position: right bottom , left 10% , right 15% center }
bgpos223200 { background-position: right center , left 10% , right 15% center }
bgpos223201 { background-position: right top , left 10% , right 15% center }
bgpos223202 { background-position: top , left 10% , right 15% center }
bgpos223203 { background-position: left bottom , left 100px , right 15% center }
bgpos223204 { background-position: left bottom 15% , left 100px , right 15% center }
bgpos223205 { background-position: left bottom 15px , left 100px , right 15% center }
bgpos223206 { background-position: left top , left 100px , right 15% center }
bgpos223207 { background-position: left top 15% , left 100px , right 15% center }
bgpos223208 { background-position: left top 15px , left 100px , right 15% center }
bgpos223209 { background-position: left 15% bottom , left 100px , right 15% center }
bgpos223210 { background-position: left 15% bottom 15% , left 100px , right 15% center }
bgpos223211 { background-position: left 15% bottom 15px , left 100px , right 15% center }
bgpos223212 { background-position: left 15% top , left 100px , right 15% center }
bgpos223213 { background-position: left 15% top 15% , left 100px , right 15% center }
bgpos223214 { background-position: left 15% top 15px , left 100px , right 15% center }
bgpos223215 { background-position: left 15% center , left 100px , right 15% center }
bgpos223216 { background-position: left 15px bottom , left 100px , right 15% center }
bgpos223217 { background-position: left 15px bottom 15% , left 100px , right 15% center }
bgpos223218 { background-position: left 15px bottom 15px , left 100px , right 15% center }
bgpos223219 { background-position: left 15px top , left 100px , right 15% center }
bgpos223220 { background-position: left 15px top 15% , left 100px , right 15% center }
bgpos223221 { background-position: left 15px top 15px , left 100px , right 15% center }
bgpos223222 { background-position: left 15px center , left 100px , right 15% center }
bgpos223223 { background-position: left center , left 100px , right 15% center }
bgpos223224 { background-position: right bottom , left 100px , right 15% center }
bgpos223225 { background-position: right bottom 15% , left 100px , right 15% center }
bgpos223226 { background-position: right bottom 15px , left 100px , right 15% center }
bgpos223227 { background-position: right top , left 100px , right 15% center }
bgpos223228 { background-position: right top 15% , left 100px , right 15% center }
bgpos223229 { background-position: right top 15px , left 100px , right 15% center }
bgpos223230 { background-position: right 15% bottom , left 100px , right 15% center }
bgpos223231 { background-position: right 15% bottom 15% , left 100px , right 15% center }
bgpos223232 { background-position: right 15% bottom 15px , left 100px , right 15% center }
bgpos223233 { background-position: right 15% top , left 100px , right 15% center }
bgpos223234 { background-position: right 15% top 15% , left 100px , right 15% center }
bgpos223235 { background-position: right 15% top 15px , left 100px , right 15% center }
bgpos223236 { background-position: right 15% center , left 100px , right 15% center }
bgpos223237 { background-position: right 15px bottom , left 100px , right 15% center }
bgpos223238 { background-position: right 15px bottom 15% , left 100px , right 15% center }
bgpos223239 { background-position: right 15px bottom 15px , left 100px , right 15% center }
bgpos223240 { background-position: right 15px top , left 100px , right 15% center }
bgpos223241 { background-position: right 15px top 15% , left 100px , right 15% center }
bgpos223242 { background-position: right 15px top 15px , left 100px , right 15% center }
bgpos223243 { background-position: right 15px center , left 100px , right 15% center }
bgpos223244 { background-position: right center , left 100px , right 15% center }
bgpos223245 { background-position: 100px , left 100px , right 15% center }
bgpos223246 { background-position: 100px 10% , left 100px , right 15% center }
bgpos223247 { background-position: 100px 100px , left 100px , right 15% center }
bgpos223248 { background-position: 100px bottom , left 100px , right 15% center }
bgpos223249 { background-position: 100px center , left 100px , right 15% center }
bgpos223250 { background-position: 100px top , left 100px , right 15% center }
bgpos223251 { background-position: 50% , left 100px , right 15% center }
bgpos223252 { background-position: 50% 10% , left 100px , right 15% center }
bgpos223253 { background-position: 50% 100px , left 100px , right 15% center }
bgpos223254 { background-position: 50% bottom , left 100px , right 15% center }
bgpos223255 { background-position: 50% center , left 100px , right 15% center }
bgpos223256 { background-position: 50% top , left 100px , right 15% center }
bgpos223257 { background-position: bottom, left 100px , right 15% center }
bgpos223258 { background-position: center , left 100px , right 15% center }
bgpos223259 { background-position: center bottom , left 100px , right 15% center }
bgpos223260 { background-position: center bottom 15% , left 100px , right 15% center }
bgpos223261 { background-position: center bottom 15px , left 100px , right 15% center }
bgpos223262 { background-position: center top , left 100px , right 15% center }
bgpos223263 { background-position: center top 15% , left 100px , right 15% center }
bgpos223264 { background-position: center top 15px , left 100px , right 15% center }
bgpos223265 { background-position: center 10% , left 100px , right 15% center }
bgpos223266 { background-position: center 100px , left 100px , right 15% center }
bgpos223267 { background-position: center bottom , left 100px , right 15% center }
bgpos223268 { background-position: center center , left 100px , right 15% center }
bgpos223269 { background-position: center top , left 100px , right 15% center }
bgpos223270 { background-position: left , left 100px , right 15% center }
bgpos223271 { background-position: left 10% , left 100px , right 15% center }
bgpos223272 { background-position: left 100px , left 100px , right 15% center }
bgpos223273 { background-position: left bottom , left 100px , right 15% center }
bgpos223274 { background-position: left center , left 100px , right 15% center }
bgpos223275 { background-position: left top , left 100px , right 15% center }
bgpos223276 { background-position: right , left 100px , right 15% center }
bgpos223277 { background-position: right 10% , left 100px , right 15% center }
bgpos223278 { background-position: right 100px , left 100px , right 15% center }
bgpos223279 { background-position: right bottom , left 100px , right 15% center }
bgpos223280 { background-position: right center , left 100px , right 15% center }
bgpos223281 { background-position: right top , left 100px , right 15% center }
bgpos223282 { background-position: top , left 100px , right 15% center }
bgpos223283 { background-position: left bottom , left bottom , right 15% center }
bgpos223284 { background-position: left bottom 15% , left bottom , right 15% center }
bgpos223285 { background-position: left bottom 15px , left bottom , right 15% center }
bgpos223286 { background-position: left top , left bottom , right 15% center }
bgpos223287 { background-position: left top 15% , left bottom , right 15% center }
bgpos223288 { background-position: left top 15px , left bottom , right 15% center }
bgpos223289 { background-position: left 15% bottom , left bottom , right 15% center }
bgpos223290 { background-position: left 15% bottom 15% , left bottom , right 15% center }
bgpos223291 { background-position: left 15% bottom 15px , left bottom , right 15% center }
bgpos223292 { background-position: left 15% top , left bottom , right 15% center }
bgpos223293 { background-position: left 15% top 15% , left bottom , right 15% center }
bgpos223294 { background-position: left 15% top 15px , left bottom , right 15% center }
bgpos223295 { background-position: left 15% center , left bottom , right 15% center }
bgpos223296 { background-position: left 15px bottom , left bottom , right 15% center }
bgpos223297 { background-position: left 15px bottom 15% , left bottom , right 15% center }
bgpos223298 { background-position: left 15px bottom 15px , left bottom , right 15% center }
bgpos223299 { background-position: left 15px top , left bottom , right 15% center }
bgpos223300 { background-position: left 15px top 15% , left bottom , right 15% center }
bgpos223301 { background-position: left 15px top 15px , left bottom , right 15% center }
bgpos223302 { background-position: left 15px center , left bottom , right 15% center }
bgpos223303 { background-position: left center , left bottom , right 15% center }
bgpos223304 { background-position: right bottom , left bottom , right 15% center }
bgpos223305 { background-position: right bottom 15% , left bottom , right 15% center }
bgpos223306 { background-position: right bottom 15px , left bottom , right 15% center }
bgpos223307 { background-position: right top , left bottom , right 15% center }
bgpos223308 { background-position: right top 15% , left bottom , right 15% center }
bgpos223309 { background-position: right top 15px , left bottom , right 15% center }
bgpos223310 { background-position: right 15% bottom , left bottom , right 15% center }
bgpos223311 { background-position: right 15% bottom 15% , left bottom , right 15% center }
bgpos223312 { background-position: right 15% bottom 15px , left bottom , right 15% center }
bgpos223313 { background-position: right 15% top , left bottom , right 15% center }
bgpos223314 { background-position: right 15% top 15% , left bottom , right 15% center }
bgpos223315 { background-position: right 15% top 15px , left bottom , right 15% center }
bgpos223316 { background-position: right 15% center , left bottom , right 15% center }
bgpos223317 { background-position: right 15px bottom , left bottom , right 15% center }
bgpos223318 { background-position: right 15px bottom 15% , left bottom , right 15% center }
bgpos223319 { background-position: right 15px bottom 15px , left bottom , right 15% center }
bgpos223320 { background-position: right 15px top , left bottom , right 15% center }
bgpos223321 { background-position: right 15px top 15% , left bottom , right 15% center }
bgpos223322 { background-position: right 15px top 15px , left bottom , right 15% center }
bgpos223323 { background-position: right 15px center , left bottom , right 15% center }
bgpos223324 { background-position: right center , left bottom , right 15% center }
bgpos223325 { background-position: 100px , left bottom , right 15% center }
bgpos223326 { background-position: 100px 10% , left bottom , right 15% center }
bgpos223327 { background-position: 100px 100px , left bottom , right 15% center }
bgpos223328 { background-position: 100px bottom , left bottom , right 15% center }
bgpos223329 { background-position: 100px center , left bottom , right 15% center }
bgpos223330 { background-position: 100px top , left bottom , right 15% center }
bgpos223331 { background-position: 50% , left bottom , right 15% center }
bgpos223332 { background-position: 50% 10% , left bottom , right 15% center }
bgpos223333 { background-position: 50% 100px , left bottom , right 15% center }
bgpos223334 { background-position: 50% bottom , left bottom , right 15% center }
bgpos223335 { background-position: 50% center , left bottom , right 15% center }
bgpos223336 { background-position: 50% top , left bottom , right 15% center }
bgpos223337 { background-position: bottom, left bottom , right 15% center }
bgpos223338 { background-position: center , left bottom , right 15% center }
bgpos223339 { background-position: center bottom , left bottom , right 15% center }
bgpos223340 { background-position: center bottom 15% , left bottom , right 15% center }
bgpos223341 { background-position: center bottom 15px , left bottom , right 15% center }
bgpos223342 { background-position: center top , left bottom , right 15% center }
bgpos223343 { background-position: center top 15% , left bottom , right 15% center }
bgpos223344 { background-position: center top 15px , left bottom , right 15% center }
bgpos223345 { background-position: center 10% , left bottom , right 15% center }
bgpos223346 { background-position: center 100px , left bottom , right 15% center }
bgpos223347 { background-position: center bottom , left bottom , right 15% center }
bgpos223348 { background-position: center center , left bottom , right 15% center }
bgpos223349 { background-position: center top , left bottom , right 15% center }
bgpos223350 { background-position: left , left bottom , right 15% center }
bgpos223351 { background-position: left 10% , left bottom , right 15% center }
bgpos223352 { background-position: left 100px , left bottom , right 15% center }
bgpos223353 { background-position: left bottom , left bottom , right 15% center }
bgpos223354 { background-position: left center , left bottom , right 15% center }
bgpos223355 { background-position: left top , left bottom , right 15% center }
bgpos223356 { background-position: right , left bottom , right 15% center }
bgpos223357 { background-position: right 10% , left bottom , right 15% center }
bgpos223358 { background-position: right 100px , left bottom , right 15% center }
bgpos223359 { background-position: right bottom , left bottom , right 15% center }
bgpos223360 { background-position: right center , left bottom , right 15% center }
bgpos223361 { background-position: right top , left bottom , right 15% center }
bgpos223362 { background-position: top , left bottom , right 15% center }
bgpos223363 { background-position: left bottom , left center , right 15% center }
bgpos223364 { background-position: left bottom 15% , left center , right 15% center }
bgpos223365 { background-position: left bottom 15px , left center , right 15% center }
bgpos223366 { background-position: left top , left center , right 15% center }
bgpos223367 { background-position: left top 15% , left center , right 15% center }
bgpos223368 { background-position: left top 15px , left center , right 15% center }
bgpos223369 { background-position: left 15% bottom , left center , right 15% center }
bgpos223370 { background-position: left 15% bottom 15% , left center , right 15% center }
bgpos223371 { background-position: left 15% bottom 15px , left center , right 15% center }
bgpos223372 { background-position: left 15% top , left center , right 15% center }
bgpos223373 { background-position: left 15% top 15% , left center , right 15% center }
bgpos223374 { background-position: left 15% top 15px , left center , right 15% center }
bgpos223375 { background-position: left 15% center , left center , right 15% center }
bgpos223376 { background-position: left 15px bottom , left center , right 15% center }
bgpos223377 { background-position: left 15px bottom 15% , left center , right 15% center }
bgpos223378 { background-position: left 15px bottom 15px , left center , right 15% center }
bgpos223379 { background-position: left 15px top , left center , right 15% center }
bgpos223380 { background-position: left 15px top 15% , left center , right 15% center }
bgpos223381 { background-position: left 15px top 15px , left center , right 15% center }
bgpos223382 { background-position: left 15px center , left center , right 15% center }
bgpos223383 { background-position: left center , left center , right 15% center }
bgpos223384 { background-position: right bottom , left center , right 15% center }
bgpos223385 { background-position: right bottom 15% , left center , right 15% center }
bgpos223386 { background-position: right bottom 15px , left center , right 15% center }
bgpos223387 { background-position: right top , left center , right 15% center }
bgpos223388 { background-position: right top 15% , left center , right 15% center }
bgpos223389 { background-position: right top 15px , left center , right 15% center }
bgpos223390 { background-position: right 15% bottom , left center , right 15% center }
bgpos223391 { background-position: right 15% bottom 15% , left center , right 15% center }
bgpos223392 { background-position: right 15% bottom 15px , left center , right 15% center }
bgpos223393 { background-position: right 15% top , left center , right 15% center }
bgpos223394 { background-position: right 15% top 15% , left center , right 15% center }
bgpos223395 { background-position: right 15% top 15px , left center , right 15% center }
bgpos223396 { background-position: right 15% center , left center , right 15% center }
bgpos223397 { background-position: right 15px bottom , left center , right 15% center }
bgpos223398 { background-position: right 15px bottom 15% , left center , right 15% center }
bgpos223399 { background-position: right 15px bottom 15px , left center , right 15% center }
bgpos223400 { background-position: right 15px top , left center , right 15% center }
bgpos223401 { background-position: right 15px top 15% , left center , right 15% center }
bgpos223402 { background-position: right 15px top 15px , left center , right 15% center }
bgpos223403 { background-position: right 15px center , left center , right 15% center }
bgpos223404 { background-position: right center , left center , right 15% center }
bgpos223405 { background-position: 100px , left center , right 15% center }
bgpos223406 { background-position: 100px 10% , left center , right 15% center }
bgpos223407 { background-position: 100px 100px , left center , right 15% center }
bgpos223408 { background-position: 100px bottom , left center , right 15% center }
bgpos223409 { background-position: 100px center , left center , right 15% center }
bgpos223410 { background-position: 100px top , left center , right 15% center }
bgpos223411 { background-position: 50% , left center , right 15% center }
bgpos223412 { background-position: 50% 10% , left center , right 15% center }
bgpos223413 { background-position: 50% 100px , left center , right 15% center }
bgpos223414 { background-position: 50% bottom , left center , right 15% center }
bgpos223415 { background-position: 50% center , left center , right 15% center }
bgpos223416 { background-position: 50% top , left center , right 15% center }
bgpos223417 { background-position: bottom, left center , right 15% center }
bgpos223418 { background-position: center , left center , right 15% center }
bgpos223419 { background-position: center bottom , left center , right 15% center }
bgpos223420 { background-position: center bottom 15% , left center , right 15% center }
bgpos223421 { background-position: center bottom 15px , left center , right 15% center }
bgpos223422 { background-position: center top , left center , right 15% center }
bgpos223423 { background-position: center top 15% , left center , right 15% center }
bgpos223424 { background-position: center top 15px , left center , right 15% center }
bgpos223425 { background-position: center 10% , left center , right 15% center }
bgpos223426 { background-position: center 100px , left center , right 15% center }
bgpos223427 { background-position: center bottom , left center , right 15% center }
bgpos223428 { background-position: center center , left center , right 15% center }
bgpos223429 { background-position: center top , left center , right 15% center }
bgpos223430 { background-position: left , left center , right 15% center }
bgpos223431 { background-position: left 10% , left center , right 15% center }
bgpos223432 { background-position: left 100px , left center , right 15% center }
bgpos223433 { background-position: left bottom , left center , right 15% center }
bgpos223434 { background-position: left center , left center , right 15% center }
bgpos223435 { background-position: left top , left center , right 15% center }
bgpos223436 { background-position: right , left center , right 15% center }
bgpos223437 { background-position: right 10% , left center , right 15% center }
bgpos223438 { background-position: right 100px , left center , right 15% center }
bgpos223439 { background-position: right bottom , left center , right 15% center }
bgpos223440 { background-position: right center , left center , right 15% center }
bgpos223441 { background-position: right top , left center , right 15% center }
bgpos223442 { background-position: top , left center , right 15% center }
bgpos223443 { background-position: left bottom , left top , right 15% center }
bgpos223444 { background-position: left bottom 15% , left top , right 15% center }
bgpos223445 { background-position: left bottom 15px , left top , right 15% center }
bgpos223446 { background-position: left top , left top , right 15% center }
bgpos223447 { background-position: left top 15% , left top , right 15% center }
bgpos223448 { background-position: left top 15px , left top , right 15% center }
bgpos223449 { background-position: left 15% bottom , left top , right 15% center }
bgpos223450 { background-position: left 15% bottom 15% , left top , right 15% center }
bgpos223451 { background-position: left 15% bottom 15px , left top , right 15% center }
bgpos223452 { background-position: left 15% top , left top , right 15% center }
bgpos223453 { background-position: left 15% top 15% , left top , right 15% center }
bgpos223454 { background-position: left 15% top 15px , left top , right 15% center }
bgpos223455 { background-position: left 15% center , left top , right 15% center }
bgpos223456 { background-position: left 15px bottom , left top , right 15% center }
bgpos223457 { background-position: left 15px bottom 15% , left top , right 15% center }
bgpos223458 { background-position: left 15px bottom 15px , left top , right 15% center }
bgpos223459 { background-position: left 15px top , left top , right 15% center }
bgpos223460 { background-position: left 15px top 15% , left top , right 15% center }
bgpos223461 { background-position: left 15px top 15px , left top , right 15% center }
bgpos223462 { background-position: left 15px center , left top , right 15% center }
bgpos223463 { background-position: left center , left top , right 15% center }
bgpos223464 { background-position: right bottom , left top , right 15% center }
bgpos223465 { background-position: right bottom 15% , left top , right 15% center }
bgpos223466 { background-position: right bottom 15px , left top , right 15% center }
bgpos223467 { background-position: right top , left top , right 15% center }
bgpos223468 { background-position: right top 15% , left top , right 15% center }
bgpos223469 { background-position: right top 15px , left top , right 15% center }
bgpos223470 { background-position: right 15% bottom , left top , right 15% center }
bgpos223471 { background-position: right 15% bottom 15% , left top , right 15% center }
bgpos223472 { background-position: right 15% bottom 15px , left top , right 15% center }
bgpos223473 { background-position: right 15% top , left top , right 15% center }
bgpos223474 { background-position: right 15% top 15% , left top , right 15% center }
bgpos223475 { background-position: right 15% top 15px , left top , right 15% center }
bgpos223476 { background-position: right 15% center , left top , right 15% center }
bgpos223477 { background-position: right 15px bottom , left top , right 15% center }
bgpos223478 { background-position: right 15px bottom 15% , left top , right 15% center }
bgpos223479 { background-position: right 15px bottom 15px , left top , right 15% center }
bgpos223480 { background-position: right 15px top , left top , right 15% center }
bgpos223481 { background-position: right 15px top 15% , left top , right 15% center }
bgpos223482 { background-position: right 15px top 15px , left top , right 15% center }
bgpos223483 { background-position: right 15px center , left top , right 15% center }
bgpos223484 { background-position: right center , left top , right 15% center }
bgpos223485 { background-position: 100px , left top , right 15% center }
bgpos223486 { background-position: 100px 10% , left top , right 15% center }
bgpos223487 { background-position: 100px 100px , left top , right 15% center }
bgpos223488 { background-position: 100px bottom , left top , right 15% center }
bgpos223489 { background-position: 100px center , left top , right 15% center }
bgpos223490 { background-position: 100px top , left top , right 15% center }
bgpos223491 { background-position: 50% , left top , right 15% center }
bgpos223492 { background-position: 50% 10% , left top , right 15% center }
bgpos223493 { background-position: 50% 100px , left top , right 15% center }
bgpos223494 { background-position: 50% bottom , left top , right 15% center }
bgpos223495 { background-position: 50% center , left top , right 15% center }
bgpos223496 { background-position: 50% top , left top , right 15% center }
bgpos223497 { background-position: bottom, left top , right 15% center }
bgpos223498 { background-position: center , left top , right 15% center }
bgpos223499 { background-position: center bottom , left top , right 15% center }
bgpos223500 { background-position: center bottom 15% , left top , right 15% center }
bgpos223501 { background-position: center bottom 15px , left top , right 15% center }
bgpos223502 { background-position: center top , left top , right 15% center }
bgpos223503 { background-position: center top 15% , left top , right 15% center }
bgpos223504 { background-position: center top 15px , left top , right 15% center }
bgpos223505 { background-position: center 10% , left top , right 15% center }
bgpos223506 { background-position: center 100px , left top , right 15% center }
bgpos223507 { background-position: center bottom , left top , right 15% center }
bgpos223508 { background-position: center center , left top , right 15% center }
bgpos223509 { background-position: center top , left top , right 15% center }
bgpos223510 { background-position: left , left top , right 15% center }
bgpos223511 { background-position: left 10% , left top , right 15% center }
bgpos223512 { background-position: left 100px , left top , right 15% center }
bgpos223513 { background-position: left bottom , left top , right 15% center }
bgpos223514 { background-position: left center , left top , right 15% center }
bgpos223515 { background-position: left top , left top , right 15% center }
bgpos223516 { background-position: right , left top , right 15% center }
bgpos223517 { background-position: right 10% , left top , right 15% center }
bgpos223518 { background-position: right 100px , left top , right 15% center }
bgpos223519 { background-position: right bottom , left top , right 15% center }
bgpos223520 { background-position: right center , left top , right 15% center }
bgpos223521 { background-position: right top , left top , right 15% center }
bgpos223522 { background-position: top , left top , right 15% center }
bgpos223523 { background-position: left bottom , right , right 15% center }
bgpos223524 { background-position: left bottom 15% , right , right 15% center }
bgpos223525 { background-position: left bottom 15px , right , right 15% center }
bgpos223526 { background-position: left top , right , right 15% center }
bgpos223527 { background-position: left top 15% , right , right 15% center }
bgpos223528 { background-position: left top 15px , right , right 15% center }
bgpos223529 { background-position: left 15% bottom , right , right 15% center }
bgpos223530 { background-position: left 15% bottom 15% , right , right 15% center }
bgpos223531 { background-position: left 15% bottom 15px , right , right 15% center }
bgpos223532 { background-position: left 15% top , right , right 15% center }
bgpos223533 { background-position: left 15% top 15% , right , right 15% center }
bgpos223534 { background-position: left 15% top 15px , right , right 15% center }
bgpos223535 { background-position: left 15% center , right , right 15% center }
bgpos223536 { background-position: left 15px bottom , right , right 15% center }
bgpos223537 { background-position: left 15px bottom 15% , right , right 15% center }
bgpos223538 { background-position: left 15px bottom 15px , right , right 15% center }
bgpos223539 { background-position: left 15px top , right , right 15% center }
bgpos223540 { background-position: left 15px top 15% , right , right 15% center }
bgpos223541 { background-position: left 15px top 15px , right , right 15% center }
bgpos223542 { background-position: left 15px center , right , right 15% center }
bgpos223543 { background-position: left center , right , right 15% center }
bgpos223544 { background-position: right bottom , right , right 15% center }
bgpos223545 { background-position: right bottom 15% , right , right 15% center }
bgpos223546 { background-position: right bottom 15px , right , right 15% center }
bgpos223547 { background-position: right top , right , right 15% center }
bgpos223548 { background-position: right top 15% , right , right 15% center }
bgpos223549 { background-position: right top 15px , right , right 15% center }
bgpos223550 { background-position: right 15% bottom , right , right 15% center }
bgpos223551 { background-position: right 15% bottom 15% , right , right 15% center }
bgpos223552 { background-position: right 15% bottom 15px , right , right 15% center }
bgpos223553 { background-position: right 15% top , right , right 15% center }
bgpos223554 { background-position: right 15% top 15% , right , right 15% center }
bgpos223555 { background-position: right 15% top 15px , right , right 15% center }
bgpos223556 { background-position: right 15% center , right , right 15% center }
bgpos223557 { background-position: right 15px bottom , right , right 15% center }
bgpos223558 { background-position: right 15px bottom 15% , right , right 15% center }
bgpos223559 { background-position: right 15px bottom 15px , right , right 15% center }
bgpos223560 { background-position: right 15px top , right , right 15% center }
bgpos223561 { background-position: right 15px top 15% , right , right 15% center }
bgpos223562 { background-position: right 15px top 15px , right , right 15% center }
bgpos223563 { background-position: right 15px center , right , right 15% center }
bgpos223564 { background-position: right center , right , right 15% center }
bgpos223565 { background-position: 100px , right , right 15% center }
bgpos223566 { background-position: 100px 10% , right , right 15% center }
bgpos223567 { background-position: 100px 100px , right , right 15% center }
bgpos223568 { background-position: 100px bottom , right , right 15% center }
bgpos223569 { background-position: 100px center , right , right 15% center }
bgpos223570 { background-position: 100px top , right , right 15% center }
bgpos223571 { background-position: 50% , right , right 15% center }
bgpos223572 { background-position: 50% 10% , right , right 15% center }
bgpos223573 { background-position: 50% 100px , right , right 15% center }
bgpos223574 { background-position: 50% bottom , right , right 15% center }
bgpos223575 { background-position: 50% center , right , right 15% center }
bgpos223576 { background-position: 50% top , right , right 15% center }
bgpos223577 { background-position: bottom, right , right 15% center }
bgpos223578 { background-position: center , right , right 15% center }
bgpos223579 { background-position: center bottom , right , right 15% center }
bgpos223580 { background-position: center bottom 15% , right , right 15% center }
bgpos223581 { background-position: center bottom 15px , right , right 15% center }
bgpos223582 { background-position: center top , right , right 15% center }
bgpos223583 { background-position: center top 15% , right , right 15% center }
bgpos223584 { background-position: center top 15px , right , right 15% center }
bgpos223585 { background-position: center 10% , right , right 15% center }
bgpos223586 { background-position: center 100px , right , right 15% center }
bgpos223587 { background-position: center bottom , right , right 15% center }
bgpos223588 { background-position: center center , right , right 15% center }
bgpos223589 { background-position: center top , right , right 15% center }
bgpos223590 { background-position: left , right , right 15% center }
bgpos223591 { background-position: left 10% , right , right 15% center }
bgpos223592 { background-position: left 100px , right , right 15% center }
bgpos223593 { background-position: left bottom , right , right 15% center }
bgpos223594 { background-position: left center , right , right 15% center }
bgpos223595 { background-position: left top , right , right 15% center }
bgpos223596 { background-position: right , right , right 15% center }
bgpos223597 { background-position: right 10% , right , right 15% center }
bgpos223598 { background-position: right 100px , right , right 15% center }
bgpos223599 { background-position: right bottom , right , right 15% center }
bgpos223600 { background-position: right center , right , right 15% center }
bgpos223601 { background-position: right top , right , right 15% center }
bgpos223602 { background-position: top , right , right 15% center }
bgpos223603 { background-position: left bottom , right 10% , right 15% center }
bgpos223604 { background-position: left bottom 15% , right 10% , right 15% center }
bgpos223605 { background-position: left bottom 15px , right 10% , right 15% center }
bgpos223606 { background-position: left top , right 10% , right 15% center }
bgpos223607 { background-position: left top 15% , right 10% , right 15% center }
bgpos223608 { background-position: left top 15px , right 10% , right 15% center }
bgpos223609 { background-position: left 15% bottom , right 10% , right 15% center }
bgpos223610 { background-position: left 15% bottom 15% , right 10% , right 15% center }
bgpos223611 { background-position: left 15% bottom 15px , right 10% , right 15% center }
bgpos223612 { background-position: left 15% top , right 10% , right 15% center }
bgpos223613 { background-position: left 15% top 15% , right 10% , right 15% center }
bgpos223614 { background-position: left 15% top 15px , right 10% , right 15% center }
bgpos223615 { background-position: left 15% center , right 10% , right 15% center }
bgpos223616 { background-position: left 15px bottom , right 10% , right 15% center }
bgpos223617 { background-position: left 15px bottom 15% , right 10% , right 15% center }
bgpos223618 { background-position: left 15px bottom 15px , right 10% , right 15% center }
bgpos223619 { background-position: left 15px top , right 10% , right 15% center }
bgpos223620 { background-position: left 15px top 15% , right 10% , right 15% center }
bgpos223621 { background-position: left 15px top 15px , right 10% , right 15% center }
bgpos223622 { background-position: left 15px center , right 10% , right 15% center }
bgpos223623 { background-position: left center , right 10% , right 15% center }
bgpos223624 { background-position: right bottom , right 10% , right 15% center }
bgpos223625 { background-position: right bottom 15% , right 10% , right 15% center }
bgpos223626 { background-position: right bottom 15px , right 10% , right 15% center }
bgpos223627 { background-position: right top , right 10% , right 15% center }
bgpos223628 { background-position: right top 15% , right 10% , right 15% center }
bgpos223629 { background-position: right top 15px , right 10% , right 15% center }
bgpos223630 { background-position: right 15% bottom , right 10% , right 15% center }
bgpos223631 { background-position: right 15% bottom 15% , right 10% , right 15% center }
bgpos223632 { background-position: right 15% bottom 15px , right 10% , right 15% center }
bgpos223633 { background-position: right 15% top , right 10% , right 15% center }
bgpos223634 { background-position: right 15% top 15% , right 10% , right 15% center }
bgpos223635 { background-position: right 15% top 15px , right 10% , right 15% center }
bgpos223636 { background-position: right 15% center , right 10% , right 15% center }
bgpos223637 { background-position: right 15px bottom , right 10% , right 15% center }
bgpos223638 { background-position: right 15px bottom 15% , right 10% , right 15% center }
bgpos223639 { background-position: right 15px bottom 15px , right 10% , right 15% center }
bgpos223640 { background-position: right 15px top , right 10% , right 15% center }
bgpos223641 { background-position: right 15px top 15% , right 10% , right 15% center }
bgpos223642 { background-position: right 15px top 15px , right 10% , right 15% center }
bgpos223643 { background-position: right 15px center , right 10% , right 15% center }
bgpos223644 { background-position: right center , right 10% , right 15% center }
bgpos223645 { background-position: 100px , right 10% , right 15% center }
bgpos223646 { background-position: 100px 10% , right 10% , right 15% center }
bgpos223647 { background-position: 100px 100px , right 10% , right 15% center }
bgpos223648 { background-position: 100px bottom , right 10% , right 15% center }
bgpos223649 { background-position: 100px center , right 10% , right 15% center }
bgpos223650 { background-position: 100px top , right 10% , right 15% center }
bgpos223651 { background-position: 50% , right 10% , right 15% center }
bgpos223652 { background-position: 50% 10% , right 10% , right 15% center }
bgpos223653 { background-position: 50% 100px , right 10% , right 15% center }
bgpos223654 { background-position: 50% bottom , right 10% , right 15% center }
bgpos223655 { background-position: 50% center , right 10% , right 15% center }
bgpos223656 { background-position: 50% top , right 10% , right 15% center }
bgpos223657 { background-position: bottom, right 10% , right 15% center }
bgpos223658 { background-position: center , right 10% , right 15% center }
bgpos223659 { background-position: center bottom , right 10% , right 15% center }
bgpos223660 { background-position: center bottom 15% , right 10% , right 15% center }
bgpos223661 { background-position: center bottom 15px , right 10% , right 15% center }
bgpos223662 { background-position: center top , right 10% , right 15% center }
bgpos223663 { background-position: center top 15% , right 10% , right 15% center }
bgpos223664 { background-position: center top 15px , right 10% , right 15% center }
bgpos223665 { background-position: center 10% , right 10% , right 15% center }
bgpos223666 { background-position: center 100px , right 10% , right 15% center }
bgpos223667 { background-position: center bottom , right 10% , right 15% center }
bgpos223668 { background-position: center center , right 10% , right 15% center }
bgpos223669 { background-position: center top , right 10% , right 15% center }
bgpos223670 { background-position: left , right 10% , right 15% center }
bgpos223671 { background-position: left 10% , right 10% , right 15% center }
bgpos223672 { background-position: left 100px , right 10% , right 15% center }
bgpos223673 { background-position: left bottom , right 10% , right 15% center }
bgpos223674 { background-position: left center , right 10% , right 15% center }
bgpos223675 { background-position: left top , right 10% , right 15% center }
bgpos223676 { background-position: right , right 10% , right 15% center }
bgpos223677 { background-position: right 10% , right 10% , right 15% center }
bgpos223678 { background-position: right 100px , right 10% , right 15% center }
bgpos223679 { background-position: right bottom , right 10% , right 15% center }
bgpos223680 { background-position: right center , right 10% , right 15% center }
bgpos223681 { background-position: right top , right 10% , right 15% center }
bgpos223682 { background-position: top , right 10% , right 15% center }
bgpos223683 { background-position: left bottom , right 100px , right 15% center }
bgpos223684 { background-position: left bottom 15% , right 100px , right 15% center }
bgpos223685 { background-position: left bottom 15px , right 100px , right 15% center }
bgpos223686 { background-position: left top , right 100px , right 15% center }
bgpos223687 { background-position: left top 15% , right 100px , right 15% center }
bgpos223688 { background-position: left top 15px , right 100px , right 15% center }
bgpos223689 { background-position: left 15% bottom , right 100px , right 15% center }
bgpos223690 { background-position: left 15% bottom 15% , right 100px , right 15% center }
bgpos223691 { background-position: left 15% bottom 15px , right 100px , right 15% center }
bgpos223692 { background-position: left 15% top , right 100px , right 15% center }
bgpos223693 { background-position: left 15% top 15% , right 100px , right 15% center }
bgpos223694 { background-position: left 15% top 15px , right 100px , right 15% center }
bgpos223695 { background-position: left 15% center , right 100px , right 15% center }
bgpos223696 { background-position: left 15px bottom , right 100px , right 15% center }
bgpos223697 { background-position: left 15px bottom 15% , right 100px , right 15% center }
bgpos223698 { background-position: left 15px bottom 15px , right 100px , right 15% center }
bgpos223699 { background-position: left 15px top , right 100px , right 15% center }
bgpos223700 { background-position: left 15px top 15% , right 100px , right 15% center }
bgpos223701 { background-position: left 15px top 15px , right 100px , right 15% center }
bgpos223702 { background-position: left 15px center , right 100px , right 15% center }
bgpos223703 { background-position: left center , right 100px , right 15% center }
bgpos223704 { background-position: right bottom , right 100px , right 15% center }
bgpos223705 { background-position: right bottom 15% , right 100px , right 15% center }
bgpos223706 { background-position: right bottom 15px , right 100px , right 15% center }
bgpos223707 { background-position: right top , right 100px , right 15% center }
bgpos223708 { background-position: right top 15% , right 100px , right 15% center }
bgpos223709 { background-position: right top 15px , right 100px , right 15% center }
bgpos223710 { background-position: right 15% bottom , right 100px , right 15% center }
bgpos223711 { background-position: right 15% bottom 15% , right 100px , right 15% center }
bgpos223712 { background-position: right 15% bottom 15px , right 100px , right 15% center }
bgpos223713 { background-position: right 15% top , right 100px , right 15% center }
bgpos223714 { background-position: right 15% top 15% , right 100px , right 15% center }
bgpos223715 { background-position: right 15% top 15px , right 100px , right 15% center }
bgpos223716 { background-position: right 15% center , right 100px , right 15% center }
bgpos223717 { background-position: right 15px bottom , right 100px , right 15% center }
bgpos223718 { background-position: right 15px bottom 15% , right 100px , right 15% center }
bgpos223719 { background-position: right 15px bottom 15px , right 100px , right 15% center }
bgpos223720 { background-position: right 15px top , right 100px , right 15% center }
bgpos223721 { background-position: right 15px top 15% , right 100px , right 15% center }
bgpos223722 { background-position: right 15px top 15px , right 100px , right 15% center }
bgpos223723 { background-position: right 15px center , right 100px , right 15% center }
bgpos223724 { background-position: right center , right 100px , right 15% center }
bgpos223725 { background-position: 100px , right 100px , right 15% center }
bgpos223726 { background-position: 100px 10% , right 100px , right 15% center }
bgpos223727 { background-position: 100px 100px , right 100px , right 15% center }
bgpos223728 { background-position: 100px bottom , right 100px , right 15% center }
bgpos223729 { background-position: 100px center , right 100px , right 15% center }
bgpos223730 { background-position: 100px top , right 100px , right 15% center }
bgpos223731 { background-position: 50% , right 100px , right 15% center }
bgpos223732 { background-position: 50% 10% , right 100px , right 15% center }
bgpos223733 { background-position: 50% 100px , right 100px , right 15% center }
bgpos223734 { background-position: 50% bottom , right 100px , right 15% center }
bgpos223735 { background-position: 50% center , right 100px , right 15% center }
bgpos223736 { background-position: 50% top , right 100px , right 15% center }
bgpos223737 { background-position: bottom, right 100px , right 15% center }
bgpos223738 { background-position: center , right 100px , right 15% center }
bgpos223739 { background-position: center bottom , right 100px , right 15% center }
bgpos223740 { background-position: center bottom 15% , right 100px , right 15% center }
bgpos223741 { background-position: center bottom 15px , right 100px , right 15% center }
bgpos223742 { background-position: center top , right 100px , right 15% center }
bgpos223743 { background-position: center top 15% , right 100px , right 15% center }
bgpos223744 { background-position: center top 15px , right 100px , right 15% center }
bgpos223745 { background-position: center 10% , right 100px , right 15% center }
bgpos223746 { background-position: center 100px , right 100px , right 15% center }
bgpos223747 { background-position: center bottom , right 100px , right 15% center }
bgpos223748 { background-position: center center , right 100px , right 15% center }
bgpos223749 { background-position: center top , right 100px , right 15% center }
bgpos223750 { background-position: left , right 100px , right 15% center }
bgpos223751 { background-position: left 10% , right 100px , right 15% center }
bgpos223752 { background-position: left 100px , right 100px , right 15% center }
bgpos223753 { background-position: left bottom , right 100px , right 15% center }
bgpos223754 { background-position: left center , right 100px , right 15% center }
bgpos223755 { background-position: left top , right 100px , right 15% center }
bgpos223756 { background-position: right , right 100px , right 15% center }
bgpos223757 { background-position: right 10% , right 100px , right 15% center }
bgpos223758 { background-position: right 100px , right 100px , right 15% center }
bgpos223759 { background-position: right bottom , right 100px , right 15% center }
bgpos223760 { background-position: right center , right 100px , right 15% center }
bgpos223761 { background-position: right top , right 100px , right 15% center }
bgpos223762 { background-position: top , right 100px , right 15% center }
bgpos223763 { background-position: left bottom , right bottom , right 15% center }
bgpos223764 { background-position: left bottom 15% , right bottom , right 15% center }
bgpos223765 { background-position: left bottom 15px , right bottom , right 15% center }
bgpos223766 { background-position: left top , right bottom , right 15% center }
bgpos223767 { background-position: left top 15% , right bottom , right 15% center }
bgpos223768 { background-position: left top 15px , right bottom , right 15% center }
bgpos223769 { background-position: left 15% bottom , right bottom , right 15% center }
bgpos223770 { background-position: left 15% bottom 15% , right bottom , right 15% center }
bgpos223771 { background-position: left 15% bottom 15px , right bottom , right 15% center }
bgpos223772 { background-position: left 15% top , right bottom , right 15% center }
bgpos223773 { background-position: left 15% top 15% , right bottom , right 15% center }
bgpos223774 { background-position: left 15% top 15px , right bottom , right 15% center }
bgpos223775 { background-position: left 15% center , right bottom , right 15% center }
bgpos223776 { background-position: left 15px bottom , right bottom , right 15% center }
bgpos223777 { background-position: left 15px bottom 15% , right bottom , right 15% center }
bgpos223778 { background-position: left 15px bottom 15px , right bottom , right 15% center }
bgpos223779 { background-position: left 15px top , right bottom , right 15% center }
bgpos223780 { background-position: left 15px top 15% , right bottom , right 15% center }
bgpos223781 { background-position: left 15px top 15px , right bottom , right 15% center }
bgpos223782 { background-position: left 15px center , right bottom , right 15% center }
bgpos223783 { background-position: left center , right bottom , right 15% center }
bgpos223784 { background-position: right bottom , right bottom , right 15% center }
bgpos223785 { background-position: right bottom 15% , right bottom , right 15% center }
bgpos223786 { background-position: right bottom 15px , right bottom , right 15% center }
bgpos223787 { background-position: right top , right bottom , right 15% center }
bgpos223788 { background-position: right top 15% , right bottom , right 15% center }
bgpos223789 { background-position: right top 15px , right bottom , right 15% center }
bgpos223790 { background-position: right 15% bottom , right bottom , right 15% center }
bgpos223791 { background-position: right 15% bottom 15% , right bottom , right 15% center }
bgpos223792 { background-position: right 15% bottom 15px , right bottom , right 15% center }
bgpos223793 { background-position: right 15% top , right bottom , right 15% center }
bgpos223794 { background-position: right 15% top 15% , right bottom , right 15% center }
bgpos223795 { background-position: right 15% top 15px , right bottom , right 15% center }
bgpos223796 { background-position: right 15% center , right bottom , right 15% center }
bgpos223797 { background-position: right 15px bottom , right bottom , right 15% center }
bgpos223798 { background-position: right 15px bottom 15% , right bottom , right 15% center }
bgpos223799 { background-position: right 15px bottom 15px , right bottom , right 15% center }
bgpos223800 { background-position: right 15px top , right bottom , right 15% center }
bgpos223801 { background-position: right 15px top 15% , right bottom , right 15% center }
bgpos223802 { background-position: right 15px top 15px , right bottom , right 15% center }
bgpos223803 { background-position: right 15px center , right bottom , right 15% center }
bgpos223804 { background-position: right center , right bottom , right 15% center }
bgpos223805 { background-position: 100px , right bottom , right 15% center }
bgpos223806 { background-position: 100px 10% , right bottom , right 15% center }
bgpos223807 { background-position: 100px 100px , right bottom , right 15% center }
bgpos223808 { background-position: 100px bottom , right bottom , right 15% center }
bgpos223809 { background-position: 100px center , right bottom , right 15% center }
bgpos223810 { background-position: 100px top , right bottom , right 15% center }
bgpos223811 { background-position: 50% , right bottom , right 15% center }
bgpos223812 { background-position: 50% 10% , right bottom , right 15% center }
bgpos223813 { background-position: 50% 100px , right bottom , right 15% center }
bgpos223814 { background-position: 50% bottom , right bottom , right 15% center }
bgpos223815 { background-position: 50% center , right bottom , right 15% center }
bgpos223816 { background-position: 50% top , right bottom , right 15% center }
bgpos223817 { background-position: bottom, right bottom , right 15% center }
bgpos223818 { background-position: center , right bottom , right 15% center }
bgpos223819 { background-position: center bottom , right bottom , right 15% center }
bgpos223820 { background-position: center bottom 15% , right bottom , right 15% center }
bgpos223821 { background-position: center bottom 15px , right bottom , right 15% center }
bgpos223822 { background-position: center top , right bottom , right 15% center }
bgpos223823 { background-position: center top 15% , right bottom , right 15% center }
bgpos223824 { background-position: center top 15px , right bottom , right 15% center }
bgpos223825 { background-position: center 10% , right bottom , right 15% center }
bgpos223826 { background-position: center 100px , right bottom , right 15% center }
bgpos223827 { background-position: center bottom , right bottom , right 15% center }
bgpos223828 { background-position: center center , right bottom , right 15% center }
bgpos223829 { background-position: center top , right bottom , right 15% center }
bgpos223830 { background-position: left , right bottom , right 15% center }
bgpos223831 { background-position: left 10% , right bottom , right 15% center }
bgpos223832 { background-position: left 100px , right bottom , right 15% center }
bgpos223833 { background-position: left bottom , right bottom , right 15% center }
bgpos223834 { background-position: left center , right bottom , right 15% center }
bgpos223835 { background-position: left top , right bottom , right 15% center }
bgpos223836 { background-position: right , right bottom , right 15% center }
bgpos223837 { background-position: right 10% , right bottom , right 15% center }
bgpos223838 { background-position: right 100px , right bottom , right 15% center }
bgpos223839 { background-position: right bottom , right bottom , right 15% center }
bgpos223840 { background-position: right center , right bottom , right 15% center }
bgpos223841 { background-position: right top , right bottom , right 15% center }
bgpos223842 { background-position: top , right bottom , right 15% center }
bgpos223843 { background-position: left bottom , right center , right 15% center }
bgpos223844 { background-position: left bottom 15% , right center , right 15% center }
bgpos223845 { background-position: left bottom 15px , right center , right 15% center }
bgpos223846 { background-position: left top , right center , right 15% center }
bgpos223847 { background-position: left top 15% , right center , right 15% center }
bgpos223848 { background-position: left top 15px , right center , right 15% center }
bgpos223849 { background-position: left 15% bottom , right center , right 15% center }
bgpos223850 { background-position: left 15% bottom 15% , right center , right 15% center }
bgpos223851 { background-position: left 15% bottom 15px , right center , right 15% center }
bgpos223852 { background-position: left 15% top , right center , right 15% center }
bgpos223853 { background-position: left 15% top 15% , right center , right 15% center }
bgpos223854 { background-position: left 15% top 15px , right center , right 15% center }
bgpos223855 { background-position: left 15% center , right center , right 15% center }
bgpos223856 { background-position: left 15px bottom , right center , right 15% center }
bgpos223857 { background-position: left 15px bottom 15% , right center , right 15% center }
bgpos223858 { background-position: left 15px bottom 15px , right center , right 15% center }
bgpos223859 { background-position: left 15px top , right center , right 15% center }
bgpos223860 { background-position: left 15px top 15% , right center , right 15% center }
bgpos223861 { background-position: left 15px top 15px , right center , right 15% center }
bgpos223862 { background-position: left 15px center , right center , right 15% center }
bgpos223863 { background-position: left center , right center , right 15% center }
bgpos223864 { background-position: right bottom , right center , right 15% center }
bgpos223865 { background-position: right bottom 15% , right center , right 15% center }
bgpos223866 { background-position: right bottom 15px , right center , right 15% center }
bgpos223867 { background-position: right top , right center , right 15% center }
bgpos223868 { background-position: right top 15% , right center , right 15% center }
bgpos223869 { background-position: right top 15px , right center , right 15% center }
bgpos223870 { background-position: right 15% bottom , right center , right 15% center }
bgpos223871 { background-position: right 15% bottom 15% , right center , right 15% center }
bgpos223872 { background-position: right 15% bottom 15px , right center , right 15% center }
bgpos223873 { background-position: right 15% top , right center , right 15% center }
bgpos223874 { background-position: right 15% top 15% , right center , right 15% center }
bgpos223875 { background-position: right 15% top 15px , right center , right 15% center }
bgpos223876 { background-position: right 15% center , right center , right 15% center }
bgpos223877 { background-position: right 15px bottom , right center , right 15% center }
bgpos223878 { background-position: right 15px bottom 15% , right center , right 15% center }
bgpos223879 { background-position: right 15px bottom 15px , right center , right 15% center }
bgpos223880 { background-position: right 15px top , right center , right 15% center }
bgpos223881 { background-position: right 15px top 15% , right center , right 15% center }
bgpos223882 { background-position: right 15px top 15px , right center , right 15% center }
bgpos223883 { background-position: right 15px center , right center , right 15% center }
bgpos223884 { background-position: right center , right center , right 15% center }
bgpos223885 { background-position: 100px , right center , right 15% center }
bgpos223886 { background-position: 100px 10% , right center , right 15% center }
bgpos223887 { background-position: 100px 100px , right center , right 15% center }
bgpos223888 { background-position: 100px bottom , right center , right 15% center }
bgpos223889 { background-position: 100px center , right center , right 15% center }
bgpos223890 { background-position: 100px top , right center , right 15% center }
bgpos223891 { background-position: 50% , right center , right 15% center }
bgpos223892 { background-position: 50% 10% , right center , right 15% center }
bgpos223893 { background-position: 50% 100px , right center , right 15% center }
bgpos223894 { background-position: 50% bottom , right center , right 15% center }
bgpos223895 { background-position: 50% center , right center , right 15% center }
bgpos223896 { background-position: 50% top , right center , right 15% center }
bgpos223897 { background-position: bottom, right center , right 15% center }
bgpos223898 { background-position: center , right center , right 15% center }
bgpos223899 { background-position: center bottom , right center , right 15% center }
bgpos223900 { background-position: center bottom 15% , right center , right 15% center }
bgpos223901 { background-position: center bottom 15px , right center , right 15% center }
bgpos223902 { background-position: center top , right center , right 15% center }
bgpos223903 { background-position: center top 15% , right center , right 15% center }
bgpos223904 { background-position: center top 15px , right center , right 15% center }
bgpos223905 { background-position: center 10% , right center , right 15% center }
bgpos223906 { background-position: center 100px , right center , right 15% center }
bgpos223907 { background-position: center bottom , right center , right 15% center }
bgpos223908 { background-position: center center , right center , right 15% center }
bgpos223909 { background-position: center top , right center , right 15% center }
bgpos223910 { background-position: left , right center , right 15% center }
bgpos223911 { background-position: left 10% , right center , right 15% center }
bgpos223912 { background-position: left 100px , right center , right 15% center }
bgpos223913 { background-position: left bottom , right center , right 15% center }
bgpos223914 { background-position: left center , right center , right 15% center }
bgpos223915 { background-position: left top , right center , right 15% center }
bgpos223916 { background-position: right , right center , right 15% center }
bgpos223917 { background-position: right 10% , right center , right 15% center }
bgpos223918 { background-position: right 100px , right center , right 15% center }
bgpos223919 { background-position: right bottom , right center , right 15% center }
bgpos223920 { background-position: right center , right center , right 15% center }
bgpos223921 { background-position: right top , right center , right 15% center }
bgpos223922 { background-position: top , right center , right 15% center }
bgpos223923 { background-position: left bottom , right top , right 15% center }
bgpos223924 { background-position: left bottom 15% , right top , right 15% center }
bgpos223925 { background-position: left bottom 15px , right top , right 15% center }
bgpos223926 { background-position: left top , right top , right 15% center }
bgpos223927 { background-position: left top 15% , right top , right 15% center }
bgpos223928 { background-position: left top 15px , right top , right 15% center }
bgpos223929 { background-position: left 15% bottom , right top , right 15% center }
bgpos223930 { background-position: left 15% bottom 15% , right top , right 15% center }
bgpos223931 { background-position: left 15% bottom 15px , right top , right 15% center }
bgpos223932 { background-position: left 15% top , right top , right 15% center }
bgpos223933 { background-position: left 15% top 15% , right top , right 15% center }
bgpos223934 { background-position: left 15% top 15px , right top , right 15% center }
bgpos223935 { background-position: left 15% center , right top , right 15% center }
bgpos223936 { background-position: left 15px bottom , right top , right 15% center }
bgpos223937 { background-position: left 15px bottom 15% , right top , right 15% center }
bgpos223938 { background-position: left 15px bottom 15px , right top , right 15% center }
bgpos223939 { background-position: left 15px top , right top , right 15% center }
bgpos223940 { background-position: left 15px top 15% , right top , right 15% center }
bgpos223941 { background-position: left 15px top 15px , right top , right 15% center }
bgpos223942 { background-position: left 15px center , right top , right 15% center }
bgpos223943 { background-position: left center , right top , right 15% center }
bgpos223944 { background-position: right bottom , right top , right 15% center }
bgpos223945 { background-position: right bottom 15% , right top , right 15% center }
bgpos223946 { background-position: right bottom 15px , right top , right 15% center }
bgpos223947 { background-position: right top , right top , right 15% center }
bgpos223948 { background-position: right top 15% , right top , right 15% center }
bgpos223949 { background-position: right top 15px , right top , right 15% center }
bgpos223950 { background-position: right 15% bottom , right top , right 15% center }
bgpos223951 { background-position: right 15% bottom 15% , right top , right 15% center }
bgpos223952 { background-position: right 15% bottom 15px , right top , right 15% center }
bgpos223953 { background-position: right 15% top , right top , right 15% center }
bgpos223954 { background-position: right 15% top 15% , right top , right 15% center }
bgpos223955 { background-position: right 15% top 15px , right top , right 15% center }
bgpos223956 { background-position: right 15% center , right top , right 15% center }
bgpos223957 { background-position: right 15px bottom , right top , right 15% center }
bgpos223958 { background-position: right 15px bottom 15% , right top , right 15% center }
bgpos223959 { background-position: right 15px bottom 15px , right top , right 15% center }
bgpos223960 { background-position: right 15px top , right top , right 15% center }
bgpos223961 { background-position: right 15px top 15% , right top , right 15% center }
bgpos223962 { background-position: right 15px top 15px , right top , right 15% center }
bgpos223963 { background-position: right 15px center , right top , right 15% center }
bgpos223964 { background-position: right center , right top , right 15% center }
bgpos223965 { background-position: 100px , right top , right 15% center }
bgpos223966 { background-position: 100px 10% , right top , right 15% center }
bgpos223967 { background-position: 100px 100px , right top , right 15% center }
bgpos223968 { background-position: 100px bottom , right top , right 15% center }
bgpos223969 { background-position: 100px center , right top , right 15% center }
bgpos223970 { background-position: 100px top , right top , right 15% center }
bgpos223971 { background-position: 50% , right top , right 15% center }
bgpos223972 { background-position: 50% 10% , right top , right 15% center }
bgpos223973 { background-position: 50% 100px , right top , right 15% center }
bgpos223974 { background-position: 50% bottom , right top , right 15% center }
bgpos223975 { background-position: 50% center , right top , right 15% center }
bgpos223976 { background-position: 50% top , right top , right 15% center }
bgpos223977 { background-position: bottom, right top , right 15% center }
bgpos223978 { background-position: center , right top , right 15% center }
bgpos223979 { background-position: center bottom , right top , right 15% center }
bgpos223980 { background-position: center bottom 15% , right top , right 15% center }
bgpos223981 { background-position: center bottom 15px , right top , right 15% center }
bgpos223982 { background-position: center top , right top , right 15% center }
bgpos223983 { background-position: center top 15% , right top , right 15% center }
bgpos223984 { background-position: center top 15px , right top , right 15% center }
bgpos223985 { background-position: center 10% , right top , right 15% center }
bgpos223986 { background-position: center 100px , right top , right 15% center }
bgpos223987 { background-position: center bottom , right top , right 15% center }
bgpos223988 { background-position: center center , right top , right 15% center }
bgpos223989 { background-position: center top , right top , right 15% center }
bgpos223990 { background-position: left , right top , right 15% center }
bgpos223991 { background-position: left 10% , right top , right 15% center }
bgpos223992 { background-position: left 100px , right top , right 15% center }
bgpos223993 { background-position: left bottom , right top , right 15% center }
bgpos223994 { background-position: left center , right top , right 15% center }
bgpos223995 { background-position: left top , right top , right 15% center }
bgpos223996 { background-position: right , right top , right 15% center }
bgpos223997 { background-position: right 10% , right top , right 15% center }
bgpos223998 { background-position: right 100px , right top , right 15% center }
bgpos223999 { background-position: right bottom , right top , right 15% center }
bgpos224000 { background-position: right center , right top , right 15% center }
bgpos224001 { background-position: right top , right top , right 15% center }
bgpos224002 { background-position: top , right top , right 15% center }
bgpos224003 { background-position: left bottom , top , right 15% center }
bgpos224004 { background-position: left bottom 15% , top , right 15% center }
bgpos224005 { background-position: left bottom 15px , top , right 15% center }
bgpos224006 { background-position: left top , top , right 15% center }
bgpos224007 { background-position: left top 15% , top , right 15% center }
bgpos224008 { background-position: left top 15px , top , right 15% center }
bgpos224009 { background-position: left 15% bottom , top , right 15% center }
bgpos224010 { background-position: left 15% bottom 15% , top , right 15% center }
bgpos224011 { background-position: left 15% bottom 15px , top , right 15% center }
bgpos224012 { background-position: left 15% top , top , right 15% center }
bgpos224013 { background-position: left 15% top 15% , top , right 15% center }
bgpos224014 { background-position: left 15% top 15px , top , right 15% center }
bgpos224015 { background-position: left 15% center , top , right 15% center }
bgpos224016 { background-position: left 15px bottom , top , right 15% center }
bgpos224017 { background-position: left 15px bottom 15% , top , right 15% center }
bgpos224018 { background-position: left 15px bottom 15px , top , right 15% center }
bgpos224019 { background-position: left 15px top , top , right 15% center }
bgpos224020 { background-position: left 15px top 15% , top , right 15% center }
bgpos224021 { background-position: left 15px top 15px , top , right 15% center }
bgpos224022 { background-position: left 15px center , top , right 15% center }
bgpos224023 { background-position: left center , top , right 15% center }
bgpos224024 { background-position: right bottom , top , right 15% center }
bgpos224025 { background-position: right bottom 15% , top , right 15% center }
bgpos224026 { background-position: right bottom 15px , top , right 15% center }
bgpos224027 { background-position: right top , top , right 15% center }
bgpos224028 { background-position: right top 15% , top , right 15% center }
bgpos224029 { background-position: right top 15px , top , right 15% center }
bgpos224030 { background-position: right 15% bottom , top , right 15% center }
bgpos224031 { background-position: right 15% bottom 15% , top , right 15% center }
bgpos224032 { background-position: right 15% bottom 15px , top , right 15% center }
bgpos224033 { background-position: right 15% top , top , right 15% center }
bgpos224034 { background-position: right 15% top 15% , top , right 15% center }
bgpos224035 { background-position: right 15% top 15px , top , right 15% center }
bgpos224036 { background-position: right 15% center , top , right 15% center }
bgpos224037 { background-position: right 15px bottom , top , right 15% center }
bgpos224038 { background-position: right 15px bottom 15% , top , right 15% center }
bgpos224039 { background-position: right 15px bottom 15px , top , right 15% center }
bgpos224040 { background-position: right 15px top , top , right 15% center }
bgpos224041 { background-position: right 15px top 15% , top , right 15% center }
bgpos224042 { background-position: right 15px top 15px , top , right 15% center }
bgpos224043 { background-position: right 15px center , top , right 15% center }
bgpos224044 { background-position: right center , top , right 15% center }
bgpos224045 { background-position: 100px , top , right 15% center }
bgpos224046 { background-position: 100px 10% , top , right 15% center }
bgpos224047 { background-position: 100px 100px , top , right 15% center }
bgpos224048 { background-position: 100px bottom , top , right 15% center }
bgpos224049 { background-position: 100px center , top , right 15% center }
bgpos224050 { background-position: 100px top , top , right 15% center }
bgpos224051 { background-position: 50% , top , right 15% center }
bgpos224052 { background-position: 50% 10% , top , right 15% center }
bgpos224053 { background-position: 50% 100px , top , right 15% center }
bgpos224054 { background-position: 50% bottom , top , right 15% center }
bgpos224055 { background-position: 50% center , top , right 15% center }
bgpos224056 { background-position: 50% top , top , right 15% center }
bgpos224057 { background-position: bottom, top , right 15% center }
bgpos224058 { background-position: center , top , right 15% center }
bgpos224059 { background-position: center bottom , top , right 15% center }
bgpos224060 { background-position: center bottom 15% , top , right 15% center }
bgpos224061 { background-position: center bottom 15px , top , right 15% center }
bgpos224062 { background-position: center top , top , right 15% center }
bgpos224063 { background-position: center top 15% , top , right 15% center }
bgpos224064 { background-position: center top 15px , top , right 15% center }
bgpos224065 { background-position: center 10% , top , right 15% center }
bgpos224066 { background-position: center 100px , top , right 15% center }
bgpos224067 { background-position: center bottom , top , right 15% center }
bgpos224068 { background-position: center center , top , right 15% center }
bgpos224069 { background-position: center top , top , right 15% center }
bgpos224070 { background-position: left , top , right 15% center }
bgpos224071 { background-position: left 10% , top , right 15% center }
bgpos224072 { background-position: left 100px , top , right 15% center }
bgpos224073 { background-position: left bottom , top , right 15% center }
bgpos224074 { background-position: left center , top , right 15% center }
bgpos224075 { background-position: left top , top , right 15% center }
bgpos224076 { background-position: right , top , right 15% center }
bgpos224077 { background-position: right 10% , top , right 15% center }
bgpos224078 { background-position: right 100px , top , right 15% center }
bgpos224079 { background-position: right bottom , top , right 15% center }
bgpos224080 { background-position: right center , top , right 15% center }
bgpos224081 { background-position: right top , top , right 15% center }
bgpos224082 { background-position: top , top , right 15% center }
bgpos224083 { background-position: left bottom , left bottom , right 15px bottom }
bgpos224084 { background-position: left bottom 15% , left bottom , right 15px bottom }
bgpos224085 { background-position: left bottom 15px , left bottom , right 15px bottom }
bgpos224086 { background-position: left top , left bottom , right 15px bottom }
bgpos224087 { background-position: left top 15% , left bottom , right 15px bottom }
bgpos224088 { background-position: left top 15px , left bottom , right 15px bottom }
bgpos224089 { background-position: left 15% bottom , left bottom , right 15px bottom }
bgpos224090 { background-position: left 15% bottom 15% , left bottom , right 15px bottom }
bgpos224091 { background-position: left 15% bottom 15px , left bottom , right 15px bottom }
bgpos224092 { background-position: left 15% top , left bottom , right 15px bottom }
bgpos224093 { background-position: left 15% top 15% , left bottom , right 15px bottom }
bgpos224094 { background-position: left 15% top 15px , left bottom , right 15px bottom }
bgpos224095 { background-position: left 15% center , left bottom , right 15px bottom }
bgpos224096 { background-position: left 15px bottom , left bottom , right 15px bottom }
bgpos224097 { background-position: left 15px bottom 15% , left bottom , right 15px bottom }
bgpos224098 { background-position: left 15px bottom 15px , left bottom , right 15px bottom }
bgpos224099 { background-position: left 15px top , left bottom , right 15px bottom }
bgpos224100 { background-position: left 15px top 15% , left bottom , right 15px bottom }
bgpos224101 { background-position: left 15px top 15px , left bottom , right 15px bottom }
bgpos224102 { background-position: left 15px center , left bottom , right 15px bottom }
bgpos224103 { background-position: left center , left bottom , right 15px bottom }
bgpos224104 { background-position: right bottom , left bottom , right 15px bottom }
bgpos224105 { background-position: right bottom 15% , left bottom , right 15px bottom }
bgpos224106 { background-position: right bottom 15px , left bottom , right 15px bottom }
bgpos224107 { background-position: right top , left bottom , right 15px bottom }
bgpos224108 { background-position: right top 15% , left bottom , right 15px bottom }
bgpos224109 { background-position: right top 15px , left bottom , right 15px bottom }
bgpos224110 { background-position: right 15% bottom , left bottom , right 15px bottom }
bgpos224111 { background-position: right 15% bottom 15% , left bottom , right 15px bottom }
bgpos224112 { background-position: right 15% bottom 15px , left bottom , right 15px bottom }
bgpos224113 { background-position: right 15% top , left bottom , right 15px bottom }
bgpos224114 { background-position: right 15% top 15% , left bottom , right 15px bottom }
bgpos224115 { background-position: right 15% top 15px , left bottom , right 15px bottom }
bgpos224116 { background-position: right 15% center , left bottom , right 15px bottom }
bgpos224117 { background-position: right 15px bottom , left bottom , right 15px bottom }
bgpos224118 { background-position: right 15px bottom 15% , left bottom , right 15px bottom }
bgpos224119 { background-position: right 15px bottom 15px , left bottom , right 15px bottom }
bgpos224120 { background-position: right 15px top , left bottom , right 15px bottom }
bgpos224121 { background-position: right 15px top 15% , left bottom , right 15px bottom }
bgpos224122 { background-position: right 15px top 15px , left bottom , right 15px bottom }
bgpos224123 { background-position: right 15px center , left bottom , right 15px bottom }
bgpos224124 { background-position: right center , left bottom , right 15px bottom }
bgpos224125 { background-position: 100px , left bottom , right 15px bottom }
bgpos224126 { background-position: 100px 10% , left bottom , right 15px bottom }
bgpos224127 { background-position: 100px 100px , left bottom , right 15px bottom }
bgpos224128 { background-position: 100px bottom , left bottom , right 15px bottom }
bgpos224129 { background-position: 100px center , left bottom , right 15px bottom }
bgpos224130 { background-position: 100px top , left bottom , right 15px bottom }
bgpos224131 { background-position: 50% , left bottom , right 15px bottom }
bgpos224132 { background-position: 50% 10% , left bottom , right 15px bottom }
bgpos224133 { background-position: 50% 100px , left bottom , right 15px bottom }
bgpos224134 { background-position: 50% bottom , left bottom , right 15px bottom }
bgpos224135 { background-position: 50% center , left bottom , right 15px bottom }
bgpos224136 { background-position: 50% top , left bottom , right 15px bottom }
bgpos224137 { background-position: bottom, left bottom , right 15px bottom }
bgpos224138 { background-position: center , left bottom , right 15px bottom }
bgpos224139 { background-position: center bottom , left bottom , right 15px bottom }
bgpos224140 { background-position: center bottom 15% , left bottom , right 15px bottom }
bgpos224141 { background-position: center bottom 15px , left bottom , right 15px bottom }
bgpos224142 { background-position: center top , left bottom , right 15px bottom }
bgpos224143 { background-position: center top 15% , left bottom , right 15px bottom }
bgpos224144 { background-position: center top 15px , left bottom , right 15px bottom }
bgpos224145 { background-position: center 10% , left bottom , right 15px bottom }
bgpos224146 { background-position: center 100px , left bottom , right 15px bottom }
bgpos224147 { background-position: center bottom , left bottom , right 15px bottom }
bgpos224148 { background-position: center center , left bottom , right 15px bottom }
bgpos224149 { background-position: center top , left bottom , right 15px bottom }
bgpos224150 { background-position: left , left bottom , right 15px bottom }
bgpos224151 { background-position: left 10% , left bottom , right 15px bottom }
bgpos224152 { background-position: left 100px , left bottom , right 15px bottom }
bgpos224153 { background-position: left bottom , left bottom , right 15px bottom }
bgpos224154 { background-position: left center , left bottom , right 15px bottom }
bgpos224155 { background-position: left top , left bottom , right 15px bottom }
bgpos224156 { background-position: right , left bottom , right 15px bottom }
bgpos224157 { background-position: right 10% , left bottom , right 15px bottom }
bgpos224158 { background-position: right 100px , left bottom , right 15px bottom }
bgpos224159 { background-position: right bottom , left bottom , right 15px bottom }
bgpos224160 { background-position: right center , left bottom , right 15px bottom }
bgpos224161 { background-position: right top , left bottom , right 15px bottom }
bgpos224162 { background-position: top , left bottom , right 15px bottom }
bgpos224163 { background-position: left bottom , left bottom 15% , right 15px bottom }
bgpos224164 { background-position: left bottom 15% , left bottom 15% , right 15px bottom }
bgpos224165 { background-position: left bottom 15px , left bottom 15% , right 15px bottom }
bgpos224166 { background-position: left top , left bottom 15% , right 15px bottom }
bgpos224167 { background-position: left top 15% , left bottom 15% , right 15px bottom }
bgpos224168 { background-position: left top 15px , left bottom 15% , right 15px bottom }
bgpos224169 { background-position: left 15% bottom , left bottom 15% , right 15px bottom }
bgpos224170 { background-position: left 15% bottom 15% , left bottom 15% , right 15px bottom }
bgpos224171 { background-position: left 15% bottom 15px , left bottom 15% , right 15px bottom }
bgpos224172 { background-position: left 15% top , left bottom 15% , right 15px bottom }
bgpos224173 { background-position: left 15% top 15% , left bottom 15% , right 15px bottom }
bgpos224174 { background-position: left 15% top 15px , left bottom 15% , right 15px bottom }
bgpos224175 { background-position: left 15% center , left bottom 15% , right 15px bottom }
bgpos224176 { background-position: left 15px bottom , left bottom 15% , right 15px bottom }
bgpos224177 { background-position: left 15px bottom 15% , left bottom 15% , right 15px bottom }
bgpos224178 { background-position: left 15px bottom 15px , left bottom 15% , right 15px bottom }
bgpos224179 { background-position: left 15px top , left bottom 15% , right 15px bottom }
bgpos224180 { background-position: left 15px top 15% , left bottom 15% , right 15px bottom }
bgpos224181 { background-position: left 15px top 15px , left bottom 15% , right 15px bottom }
bgpos224182 { background-position: left 15px center , left bottom 15% , right 15px bottom }
bgpos224183 { background-position: left center , left bottom 15% , right 15px bottom }
bgpos224184 { background-position: right bottom , left bottom 15% , right 15px bottom }
bgpos224185 { background-position: right bottom 15% , left bottom 15% , right 15px bottom }
bgpos224186 { background-position: right bottom 15px , left bottom 15% , right 15px bottom }
bgpos224187 { background-position: right top , left bottom 15% , right 15px bottom }
bgpos224188 { background-position: right top 15% , left bottom 15% , right 15px bottom }
bgpos224189 { background-position: right top 15px , left bottom 15% , right 15px bottom }
bgpos224190 { background-position: right 15% bottom , left bottom 15% , right 15px bottom }
bgpos224191 { background-position: right 15% bottom 15% , left bottom 15% , right 15px bottom }
bgpos224192 { background-position: right 15% bottom 15px , left bottom 15% , right 15px bottom }
bgpos224193 { background-position: right 15% top , left bottom 15% , right 15px bottom }
bgpos224194 { background-position: right 15% top 15% , left bottom 15% , right 15px bottom }
bgpos224195 { background-position: right 15% top 15px , left bottom 15% , right 15px bottom }
bgpos224196 { background-position: right 15% center , left bottom 15% , right 15px bottom }
bgpos224197 { background-position: right 15px bottom , left bottom 15% , right 15px bottom }
bgpos224198 { background-position: right 15px bottom 15% , left bottom 15% , right 15px bottom }
bgpos224199 { background-position: right 15px bottom 15px , left bottom 15% , right 15px bottom }
bgpos224200 { background-position: right 15px top , left bottom 15% , right 15px bottom }
bgpos224201 { background-position: right 15px top 15% , left bottom 15% , right 15px bottom }
bgpos224202 { background-position: right 15px top 15px , left bottom 15% , right 15px bottom }
bgpos224203 { background-position: right 15px center , left bottom 15% , right 15px bottom }
bgpos224204 { background-position: right center , left bottom 15% , right 15px bottom }
bgpos224205 { background-position: 100px , left bottom 15% , right 15px bottom }
bgpos224206 { background-position: 100px 10% , left bottom 15% , right 15px bottom }
bgpos224207 { background-position: 100px 100px , left bottom 15% , right 15px bottom }
bgpos224208 { background-position: 100px bottom , left bottom 15% , right 15px bottom }
bgpos224209 { background-position: 100px center , left bottom 15% , right 15px bottom }
bgpos224210 { background-position: 100px top , left bottom 15% , right 15px bottom }
bgpos224211 { background-position: 50% , left bottom 15% , right 15px bottom }
bgpos224212 { background-position: 50% 10% , left bottom 15% , right 15px bottom }
bgpos224213 { background-position: 50% 100px , left bottom 15% , right 15px bottom }
bgpos224214 { background-position: 50% bottom , left bottom 15% , right 15px bottom }
bgpos224215 { background-position: 50% center , left bottom 15% , right 15px bottom }
bgpos224216 { background-position: 50% top , left bottom 15% , right 15px bottom }
bgpos224217 { background-position: bottom, left bottom 15% , right 15px bottom }
bgpos224218 { background-position: center , left bottom 15% , right 15px bottom }
bgpos224219 { background-position: center bottom , left bottom 15% , right 15px bottom }
bgpos224220 { background-position: center bottom 15% , left bottom 15% , right 15px bottom }
bgpos224221 { background-position: center bottom 15px , left bottom 15% , right 15px bottom }
bgpos224222 { background-position: center top , left bottom 15% , right 15px bottom }
bgpos224223 { background-position: center top 15% , left bottom 15% , right 15px bottom }
bgpos224224 { background-position: center top 15px , left bottom 15% , right 15px bottom }
bgpos224225 { background-position: center 10% , left bottom 15% , right 15px bottom }
bgpos224226 { background-position: center 100px , left bottom 15% , right 15px bottom }
bgpos224227 { background-position: center bottom , left bottom 15% , right 15px bottom }
bgpos224228 { background-position: center center , left bottom 15% , right 15px bottom }
bgpos224229 { background-position: center top , left bottom 15% , right 15px bottom }
bgpos224230 { background-position: left , left bottom 15% , right 15px bottom }
bgpos224231 { background-position: left 10% , left bottom 15% , right 15px bottom }
bgpos224232 { background-position: left 100px , left bottom 15% , right 15px bottom }
bgpos224233 { background-position: left bottom , left bottom 15% , right 15px bottom }
bgpos224234 { background-position: left center , left bottom 15% , right 15px bottom }
bgpos224235 { background-position: left top , left bottom 15% , right 15px bottom }
bgpos224236 { background-position: right , left bottom 15% , right 15px bottom }
bgpos224237 { background-position: right 10% , left bottom 15% , right 15px bottom }
bgpos224238 { background-position: right 100px , left bottom 15% , right 15px bottom }
bgpos224239 { background-position: right bottom , left bottom 15% , right 15px bottom }
bgpos224240 { background-position: right center , left bottom 15% , right 15px bottom }
bgpos224241 { background-position: right top , left bottom 15% , right 15px bottom }
bgpos224242 { background-position: top , left bottom 15% , right 15px bottom }
bgpos224243 { background-position: left bottom , left bottom 15px , right 15px bottom }
bgpos224244 { background-position: left bottom 15% , left bottom 15px , right 15px bottom }
bgpos224245 { background-position: left bottom 15px , left bottom 15px , right 15px bottom }
bgpos224246 { background-position: left top , left bottom 15px , right 15px bottom }
bgpos224247 { background-position: left top 15% , left bottom 15px , right 15px bottom }
bgpos224248 { background-position: left top 15px , left bottom 15px , right 15px bottom }
bgpos224249 { background-position: left 15% bottom , left bottom 15px , right 15px bottom }
bgpos224250 { background-position: left 15% bottom 15% , left bottom 15px , right 15px bottom }
bgpos224251 { background-position: left 15% bottom 15px , left bottom 15px , right 15px bottom }
bgpos224252 { background-position: left 15% top , left bottom 15px , right 15px bottom }
bgpos224253 { background-position: left 15% top 15% , left bottom 15px , right 15px bottom }
bgpos224254 { background-position: left 15% top 15px , left bottom 15px , right 15px bottom }
bgpos224255 { background-position: left 15% center , left bottom 15px , right 15px bottom }
bgpos224256 { background-position: left 15px bottom , left bottom 15px , right 15px bottom }
bgpos224257 { background-position: left 15px bottom 15% , left bottom 15px , right 15px bottom }
bgpos224258 { background-position: left 15px bottom 15px , left bottom 15px , right 15px bottom }
bgpos224259 { background-position: left 15px top , left bottom 15px , right 15px bottom }
bgpos224260 { background-position: left 15px top 15% , left bottom 15px , right 15px bottom }
bgpos224261 { background-position: left 15px top 15px , left bottom 15px , right 15px bottom }
bgpos224262 { background-position: left 15px center , left bottom 15px , right 15px bottom }
bgpos224263 { background-position: left center , left bottom 15px , right 15px bottom }
bgpos224264 { background-position: right bottom , left bottom 15px , right 15px bottom }
bgpos224265 { background-position: right bottom 15% , left bottom 15px , right 15px bottom }
bgpos224266 { background-position: right bottom 15px , left bottom 15px , right 15px bottom }
bgpos224267 { background-position: right top , left bottom 15px , right 15px bottom }
bgpos224268 { background-position: right top 15% , left bottom 15px , right 15px bottom }
bgpos224269 { background-position: right top 15px , left bottom 15px , right 15px bottom }
bgpos224270 { background-position: right 15% bottom , left bottom 15px , right 15px bottom }
bgpos224271 { background-position: right 15% bottom 15% , left bottom 15px , right 15px bottom }
bgpos224272 { background-position: right 15% bottom 15px , left bottom 15px , right 15px bottom }
bgpos224273 { background-position: right 15% top , left bottom 15px , right 15px bottom }
bgpos224274 { background-position: right 15% top 15% , left bottom 15px , right 15px bottom }
bgpos224275 { background-position: right 15% top 15px , left bottom 15px , right 15px bottom }
bgpos224276 { background-position: right 15% center , left bottom 15px , right 15px bottom }
bgpos224277 { background-position: right 15px bottom , left bottom 15px , right 15px bottom }
bgpos224278 { background-position: right 15px bottom 15% , left bottom 15px , right 15px bottom }
bgpos224279 { background-position: right 15px bottom 15px , left bottom 15px , right 15px bottom }
bgpos224280 { background-position: right 15px top , left bottom 15px , right 15px bottom }
bgpos224281 { background-position: right 15px top 15% , left bottom 15px , right 15px bottom }
bgpos224282 { background-position: right 15px top 15px , left bottom 15px , right 15px bottom }
bgpos224283 { background-position: right 15px center , left bottom 15px , right 15px bottom }
bgpos224284 { background-position: right center , left bottom 15px , right 15px bottom }
bgpos224285 { background-position: 100px , left bottom 15px , right 15px bottom }
bgpos224286 { background-position: 100px 10% , left bottom 15px , right 15px bottom }
bgpos224287 { background-position: 100px 100px , left bottom 15px , right 15px bottom }
bgpos224288 { background-position: 100px bottom , left bottom 15px , right 15px bottom }
bgpos224289 { background-position: 100px center , left bottom 15px , right 15px bottom }
bgpos224290 { background-position: 100px top , left bottom 15px , right 15px bottom }
bgpos224291 { background-position: 50% , left bottom 15px , right 15px bottom }
bgpos224292 { background-position: 50% 10% , left bottom 15px , right 15px bottom }
bgpos224293 { background-position: 50% 100px , left bottom 15px , right 15px bottom }
bgpos224294 { background-position: 50% bottom , left bottom 15px , right 15px bottom }
bgpos224295 { background-position: 50% center , left bottom 15px , right 15px bottom }
bgpos224296 { background-position: 50% top , left bottom 15px , right 15px bottom }
bgpos224297 { background-position: bottom, left bottom 15px , right 15px bottom }
bgpos224298 { background-position: center , left bottom 15px , right 15px bottom }
bgpos224299 { background-position: center bottom , left bottom 15px , right 15px bottom }
bgpos224300 { background-position: center bottom 15% , left bottom 15px , right 15px bottom }
bgpos224301 { background-position: center bottom 15px , left bottom 15px , right 15px bottom }
bgpos224302 { background-position: center top , left bottom 15px , right 15px bottom }
bgpos224303 { background-position: center top 15% , left bottom 15px , right 15px bottom }
bgpos224304 { background-position: center top 15px , left bottom 15px , right 15px bottom }
bgpos224305 { background-position: center 10% , left bottom 15px , right 15px bottom }
bgpos224306 { background-position: center 100px , left bottom 15px , right 15px bottom }
bgpos224307 { background-position: center bottom , left bottom 15px , right 15px bottom }
bgpos224308 { background-position: center center , left bottom 15px , right 15px bottom }
bgpos224309 { background-position: center top , left bottom 15px , right 15px bottom }
bgpos224310 { background-position: left , left bottom 15px , right 15px bottom }
bgpos224311 { background-position: left 10% , left bottom 15px , right 15px bottom }
bgpos224312 { background-position: left 100px , left bottom 15px , right 15px bottom }
bgpos224313 { background-position: left bottom , left bottom 15px , right 15px bottom }
bgpos224314 { background-position: left center , left bottom 15px , right 15px bottom }
bgpos224315 { background-position: left top , left bottom 15px , right 15px bottom }
bgpos224316 { background-position: right , left bottom 15px , right 15px bottom }
bgpos224317 { background-position: right 10% , left bottom 15px , right 15px bottom }
bgpos224318 { background-position: right 100px , left bottom 15px , right 15px bottom }
bgpos224319 { background-position: right bottom , left bottom 15px , right 15px bottom }
bgpos224320 { background-position: right center , left bottom 15px , right 15px bottom }
bgpos224321 { background-position: right top , left bottom 15px , right 15px bottom }
bgpos224322 { background-position: top , left bottom 15px , right 15px bottom }
bgpos224323 { background-position: left bottom , left top , right 15px bottom }
bgpos224324 { background-position: left bottom 15% , left top , right 15px bottom }
bgpos224325 { background-position: left bottom 15px , left top , right 15px bottom }
bgpos224326 { background-position: left top , left top , right 15px bottom }
bgpos224327 { background-position: left top 15% , left top , right 15px bottom }
bgpos224328 { background-position: left top 15px , left top , right 15px bottom }
bgpos224329 { background-position: left 15% bottom , left top , right 15px bottom }
bgpos224330 { background-position: left 15% bottom 15% , left top , right 15px bottom }
bgpos224331 { background-position: left 15% bottom 15px , left top , right 15px bottom }
bgpos224332 { background-position: left 15% top , left top , right 15px bottom }
bgpos224333 { background-position: left 15% top 15% , left top , right 15px bottom }
bgpos224334 { background-position: left 15% top 15px , left top , right 15px bottom }
bgpos224335 { background-position: left 15% center , left top , right 15px bottom }
bgpos224336 { background-position: left 15px bottom , left top , right 15px bottom }
bgpos224337 { background-position: left 15px bottom 15% , left top , right 15px bottom }
bgpos224338 { background-position: left 15px bottom 15px , left top , right 15px bottom }
bgpos224339 { background-position: left 15px top , left top , right 15px bottom }
bgpos224340 { background-position: left 15px top 15% , left top , right 15px bottom }
bgpos224341 { background-position: left 15px top 15px , left top , right 15px bottom }
bgpos224342 { background-position: left 15px center , left top , right 15px bottom }
bgpos224343 { background-position: left center , left top , right 15px bottom }
bgpos224344 { background-position: right bottom , left top , right 15px bottom }
bgpos224345 { background-position: right bottom 15% , left top , right 15px bottom }
bgpos224346 { background-position: right bottom 15px , left top , right 15px bottom }
bgpos224347 { background-position: right top , left top , right 15px bottom }
bgpos224348 { background-position: right top 15% , left top , right 15px bottom }
bgpos224349 { background-position: right top 15px , left top , right 15px bottom }
bgpos224350 { background-position: right 15% bottom , left top , right 15px bottom }
bgpos224351 { background-position: right 15% bottom 15% , left top , right 15px bottom }
bgpos224352 { background-position: right 15% bottom 15px , left top , right 15px bottom }
bgpos224353 { background-position: right 15% top , left top , right 15px bottom }
bgpos224354 { background-position: right 15% top 15% , left top , right 15px bottom }
bgpos224355 { background-position: right 15% top 15px , left top , right 15px bottom }
bgpos224356 { background-position: right 15% center , left top , right 15px bottom }
bgpos224357 { background-position: right 15px bottom , left top , right 15px bottom }
bgpos224358 { background-position: right 15px bottom 15% , left top , right 15px bottom }
bgpos224359 { background-position: right 15px bottom 15px , left top , right 15px bottom }
bgpos224360 { background-position: right 15px top , left top , right 15px bottom }
bgpos224361 { background-position: right 15px top 15% , left top , right 15px bottom }
bgpos224362 { background-position: right 15px top 15px , left top , right 15px bottom }
bgpos224363 { background-position: right 15px center , left top , right 15px bottom }
bgpos224364 { background-position: right center , left top , right 15px bottom }
bgpos224365 { background-position: 100px , left top , right 15px bottom }
bgpos224366 { background-position: 100px 10% , left top , right 15px bottom }
bgpos224367 { background-position: 100px 100px , left top , right 15px bottom }
bgpos224368 { background-position: 100px bottom , left top , right 15px bottom }
bgpos224369 { background-position: 100px center , left top , right 15px bottom }
bgpos224370 { background-position: 100px top , left top , right 15px bottom }
bgpos224371 { background-position: 50% , left top , right 15px bottom }
bgpos224372 { background-position: 50% 10% , left top , right 15px bottom }
bgpos224373 { background-position: 50% 100px , left top , right 15px bottom }
bgpos224374 { background-position: 50% bottom , left top , right 15px bottom }
bgpos224375 { background-position: 50% center , left top , right 15px bottom }
bgpos224376 { background-position: 50% top , left top , right 15px bottom }
bgpos224377 { background-position: bottom, left top , right 15px bottom }
bgpos224378 { background-position: center , left top , right 15px bottom }
bgpos224379 { background-position: center bottom , left top , right 15px bottom }
bgpos224380 { background-position: center bottom 15% , left top , right 15px bottom }
bgpos224381 { background-position: center bottom 15px , left top , right 15px bottom }
bgpos224382 { background-position: center top , left top , right 15px bottom }
bgpos224383 { background-position: center top 15% , left top , right 15px bottom }
bgpos224384 { background-position: center top 15px , left top , right 15px bottom }
bgpos224385 { background-position: center 10% , left top , right 15px bottom }
bgpos224386 { background-position: center 100px , left top , right 15px bottom }
bgpos224387 { background-position: center bottom , left top , right 15px bottom }
bgpos224388 { background-position: center center , left top , right 15px bottom }
bgpos224389 { background-position: center top , left top , right 15px bottom }
bgpos224390 { background-position: left , left top , right 15px bottom }
bgpos224391 { background-position: left 10% , left top , right 15px bottom }
bgpos224392 { background-position: left 100px , left top , right 15px bottom }
bgpos224393 { background-position: left bottom , left top , right 15px bottom }
bgpos224394 { background-position: left center , left top , right 15px bottom }
bgpos224395 { background-position: left top , left top , right 15px bottom }
bgpos224396 { background-position: right , left top , right 15px bottom }
bgpos224397 { background-position: right 10% , left top , right 15px bottom }
bgpos224398 { background-position: right 100px , left top , right 15px bottom }
bgpos224399 { background-position: right bottom , left top , right 15px bottom }
bgpos224400 { background-position: right center , left top , right 15px bottom }
bgpos224401 { background-position: right top , left top , right 15px bottom }
bgpos224402 { background-position: top , left top , right 15px bottom }
bgpos224403 { background-position: left bottom , left top 15% , right 15px bottom }
bgpos224404 { background-position: left bottom 15% , left top 15% , right 15px bottom }
bgpos224405 { background-position: left bottom 15px , left top 15% , right 15px bottom }
bgpos224406 { background-position: left top , left top 15% , right 15px bottom }
bgpos224407 { background-position: left top 15% , left top 15% , right 15px bottom }
bgpos224408 { background-position: left top 15px , left top 15% , right 15px bottom }
bgpos224409 { background-position: left 15% bottom , left top 15% , right 15px bottom }
bgpos224410 { background-position: left 15% bottom 15% , left top 15% , right 15px bottom }
bgpos224411 { background-position: left 15% bottom 15px , left top 15% , right 15px bottom }
bgpos224412 { background-position: left 15% top , left top 15% , right 15px bottom }
bgpos224413 { background-position: left 15% top 15% , left top 15% , right 15px bottom }
bgpos224414 { background-position: left 15% top 15px , left top 15% , right 15px bottom }
bgpos224415 { background-position: left 15% center , left top 15% , right 15px bottom }
bgpos224416 { background-position: left 15px bottom , left top 15% , right 15px bottom }
bgpos224417 { background-position: left 15px bottom 15% , left top 15% , right 15px bottom }
bgpos224418 { background-position: left 15px bottom 15px , left top 15% , right 15px bottom }
bgpos224419 { background-position: left 15px top , left top 15% , right 15px bottom }
bgpos224420 { background-position: left 15px top 15% , left top 15% , right 15px bottom }
bgpos224421 { background-position: left 15px top 15px , left top 15% , right 15px bottom }
bgpos224422 { background-position: left 15px center , left top 15% , right 15px bottom }
bgpos224423 { background-position: left center , left top 15% , right 15px bottom }
bgpos224424 { background-position: right bottom , left top 15% , right 15px bottom }
bgpos224425 { background-position: right bottom 15% , left top 15% , right 15px bottom }
bgpos224426 { background-position: right bottom 15px , left top 15% , right 15px bottom }
bgpos224427 { background-position: right top , left top 15% , right 15px bottom }
bgpos224428 { background-position: right top 15% , left top 15% , right 15px bottom }
bgpos224429 { background-position: right top 15px , left top 15% , right 15px bottom }
bgpos224430 { background-position: right 15% bottom , left top 15% , right 15px bottom }
bgpos224431 { background-position: right 15% bottom 15% , left top 15% , right 15px bottom }
bgpos224432 { background-position: right 15% bottom 15px , left top 15% , right 15px bottom }
bgpos224433 { background-position: right 15% top , left top 15% , right 15px bottom }
bgpos224434 { background-position: right 15% top 15% , left top 15% , right 15px bottom }
bgpos224435 { background-position: right 15% top 15px , left top 15% , right 15px bottom }
bgpos224436 { background-position: right 15% center , left top 15% , right 15px bottom }
bgpos224437 { background-position: right 15px bottom , left top 15% , right 15px bottom }
bgpos224438 { background-position: right 15px bottom 15% , left top 15% , right 15px bottom }
bgpos224439 { background-position: right 15px bottom 15px , left top 15% , right 15px bottom }
bgpos224440 { background-position: right 15px top , left top 15% , right 15px bottom }
bgpos224441 { background-position: right 15px top 15% , left top 15% , right 15px bottom }
bgpos224442 { background-position: right 15px top 15px , left top 15% , right 15px bottom }
bgpos224443 { background-position: right 15px center , left top 15% , right 15px bottom }
bgpos224444 { background-position: right center , left top 15% , right 15px bottom }
bgpos224445 { background-position: 100px , left top 15% , right 15px bottom }
bgpos224446 { background-position: 100px 10% , left top 15% , right 15px bottom }
bgpos224447 { background-position: 100px 100px , left top 15% , right 15px bottom }
bgpos224448 { background-position: 100px bottom , left top 15% , right 15px bottom }
bgpos224449 { background-position: 100px center , left top 15% , right 15px bottom }
bgpos224450 { background-position: 100px top , left top 15% , right 15px bottom }
bgpos224451 { background-position: 50% , left top 15% , right 15px bottom }
bgpos224452 { background-position: 50% 10% , left top 15% , right 15px bottom }
bgpos224453 { background-position: 50% 100px , left top 15% , right 15px bottom }
bgpos224454 { background-position: 50% bottom , left top 15% , right 15px bottom }
bgpos224455 { background-position: 50% center , left top 15% , right 15px bottom }
bgpos224456 { background-position: 50% top , left top 15% , right 15px bottom }
bgpos224457 { background-position: bottom, left top 15% , right 15px bottom }
bgpos224458 { background-position: center , left top 15% , right 15px bottom }
bgpos224459 { background-position: center bottom , left top 15% , right 15px bottom }
bgpos224460 { background-position: center bottom 15% , left top 15% , right 15px bottom }
bgpos224461 { background-position: center bottom 15px , left top 15% , right 15px bottom }
bgpos224462 { background-position: center top , left top 15% , right 15px bottom }
bgpos224463 { background-position: center top 15% , left top 15% , right 15px bottom }
bgpos224464 { background-position: center top 15px , left top 15% , right 15px bottom }
bgpos224465 { background-position: center 10% , left top 15% , right 15px bottom }
bgpos224466 { background-position: center 100px , left top 15% , right 15px bottom }
bgpos224467 { background-position: center bottom , left top 15% , right 15px bottom }
bgpos224468 { background-position: center center , left top 15% , right 15px bottom }
bgpos224469 { background-position: center top , left top 15% , right 15px bottom }
bgpos224470 { background-position: left , left top 15% , right 15px bottom }
bgpos224471 { background-position: left 10% , left top 15% , right 15px bottom }
bgpos224472 { background-position: left 100px , left top 15% , right 15px bottom }
bgpos224473 { background-position: left bottom , left top 15% , right 15px bottom }
bgpos224474 { background-position: left center , left top 15% , right 15px bottom }
bgpos224475 { background-position: left top , left top 15% , right 15px bottom }
bgpos224476 { background-position: right , left top 15% , right 15px bottom }
bgpos224477 { background-position: right 10% , left top 15% , right 15px bottom }
bgpos224478 { background-position: right 100px , left top 15% , right 15px bottom }
bgpos224479 { background-position: right bottom , left top 15% , right 15px bottom }
bgpos224480 { background-position: right center , left top 15% , right 15px bottom }
bgpos224481 { background-position: right top , left top 15% , right 15px bottom }
bgpos224482 { background-position: top , left top 15% , right 15px bottom }
bgpos224483 { background-position: left bottom , left top 15px , right 15px bottom }
bgpos224484 { background-position: left bottom 15% , left top 15px , right 15px bottom }
bgpos224485 { background-position: left bottom 15px , left top 15px , right 15px bottom }
bgpos224486 { background-position: left top , left top 15px , right 15px bottom }
bgpos224487 { background-position: left top 15% , left top 15px , right 15px bottom }
bgpos224488 { background-position: left top 15px , left top 15px , right 15px bottom }
bgpos224489 { background-position: left 15% bottom , left top 15px , right 15px bottom }
bgpos224490 { background-position: left 15% bottom 15% , left top 15px , right 15px bottom }
bgpos224491 { background-position: left 15% bottom 15px , left top 15px , right 15px bottom }
bgpos224492 { background-position: left 15% top , left top 15px , right 15px bottom }
bgpos224493 { background-position: left 15% top 15% , left top 15px , right 15px bottom }
bgpos224494 { background-position: left 15% top 15px , left top 15px , right 15px bottom }
bgpos224495 { background-position: left 15% center , left top 15px , right 15px bottom }
bgpos224496 { background-position: left 15px bottom , left top 15px , right 15px bottom }
bgpos224497 { background-position: left 15px bottom 15% , left top 15px , right 15px bottom }
bgpos224498 { background-position: left 15px bottom 15px , left top 15px , right 15px bottom }
bgpos224499 { background-position: left 15px top , left top 15px , right 15px bottom }
bgpos224500 { background-position: left 15px top 15% , left top 15px , right 15px bottom }
bgpos224501 { background-position: left 15px top 15px , left top 15px , right 15px bottom }
bgpos224502 { background-position: left 15px center , left top 15px , right 15px bottom }
bgpos224503 { background-position: left center , left top 15px , right 15px bottom }
bgpos224504 { background-position: right bottom , left top 15px , right 15px bottom }
bgpos224505 { background-position: right bottom 15% , left top 15px , right 15px bottom }
bgpos224506 { background-position: right bottom 15px , left top 15px , right 15px bottom }
bgpos224507 { background-position: right top , left top 15px , right 15px bottom }
bgpos224508 { background-position: right top 15% , left top 15px , right 15px bottom }
bgpos224509 { background-position: right top 15px , left top 15px , right 15px bottom }
bgpos224510 { background-position: right 15% bottom , left top 15px , right 15px bottom }
bgpos224511 { background-position: right 15% bottom 15% , left top 15px , right 15px bottom }
bgpos224512 { background-position: right 15% bottom 15px , left top 15px , right 15px bottom }
bgpos224513 { background-position: right 15% top , left top 15px , right 15px bottom }
bgpos224514 { background-position: right 15% top 15% , left top 15px , right 15px bottom }
bgpos224515 { background-position: right 15% top 15px , left top 15px , right 15px bottom }
bgpos224516 { background-position: right 15% center , left top 15px , right 15px bottom }
bgpos224517 { background-position: right 15px bottom , left top 15px , right 15px bottom }
bgpos224518 { background-position: right 15px bottom 15% , left top 15px , right 15px bottom }
bgpos224519 { background-position: right 15px bottom 15px , left top 15px , right 15px bottom }
bgpos224520 { background-position: right 15px top , left top 15px , right 15px bottom }
bgpos224521 { background-position: right 15px top 15% , left top 15px , right 15px bottom }
bgpos224522 { background-position: right 15px top 15px , left top 15px , right 15px bottom }
bgpos224523 { background-position: right 15px center , left top 15px , right 15px bottom }
bgpos224524 { background-position: right center , left top 15px , right 15px bottom }
bgpos224525 { background-position: 100px , left top 15px , right 15px bottom }
bgpos224526 { background-position: 100px 10% , left top 15px , right 15px bottom }
bgpos224527 { background-position: 100px 100px , left top 15px , right 15px bottom }
bgpos224528 { background-position: 100px bottom , left top 15px , right 15px bottom }
bgpos224529 { background-position: 100px center , left top 15px , right 15px bottom }
bgpos224530 { background-position: 100px top , left top 15px , right 15px bottom }
bgpos224531 { background-position: 50% , left top 15px , right 15px bottom }
bgpos224532 { background-position: 50% 10% , left top 15px , right 15px bottom }
bgpos224533 { background-position: 50% 100px , left top 15px , right 15px bottom }
bgpos224534 { background-position: 50% bottom , left top 15px , right 15px bottom }
bgpos224535 { background-position: 50% center , left top 15px , right 15px bottom }
bgpos224536 { background-position: 50% top , left top 15px , right 15px bottom }
bgpos224537 { background-position: bottom, left top 15px , right 15px bottom }
bgpos224538 { background-position: center , left top 15px , right 15px bottom }
bgpos224539 { background-position: center bottom , left top 15px , right 15px bottom }
bgpos224540 { background-position: center bottom 15% , left top 15px , right 15px bottom }
bgpos224541 { background-position: center bottom 15px , left top 15px , right 15px bottom }
bgpos224542 { background-position: center top , left top 15px , right 15px bottom }
bgpos224543 { background-position: center top 15% , left top 15px , right 15px bottom }
bgpos224544 { background-position: center top 15px , left top 15px , right 15px bottom }
bgpos224545 { background-position: center 10% , left top 15px , right 15px bottom }
bgpos224546 { background-position: center 100px , left top 15px , right 15px bottom }
bgpos224547 { background-position: center bottom , left top 15px , right 15px bottom }
bgpos224548 { background-position: center center , left top 15px , right 15px bottom }
bgpos224549 { background-position: center top , left top 15px , right 15px bottom }
bgpos224550 { background-position: left , left top 15px , right 15px bottom }
bgpos224551 { background-position: left 10% , left top 15px , right 15px bottom }
bgpos224552 { background-position: left 100px , left top 15px , right 15px bottom }
bgpos224553 { background-position: left bottom , left top 15px , right 15px bottom }
bgpos224554 { background-position: left center , left top 15px , right 15px bottom }
bgpos224555 { background-position: left top , left top 15px , right 15px bottom }
bgpos224556 { background-position: right , left top 15px , right 15px bottom }
bgpos224557 { background-position: right 10% , left top 15px , right 15px bottom }
bgpos224558 { background-position: right 100px , left top 15px , right 15px bottom }
bgpos224559 { background-position: right bottom , left top 15px , right 15px bottom }
bgpos224560 { background-position: right center , left top 15px , right 15px bottom }
bgpos224561 { background-position: right top , left top 15px , right 15px bottom }
bgpos224562 { background-position: top , left top 15px , right 15px bottom }
bgpos224563 { background-position: left bottom , left 15% bottom , right 15px bottom }
bgpos224564 { background-position: left bottom 15% , left 15% bottom , right 15px bottom }
bgpos224565 { background-position: left bottom 15px , left 15% bottom , right 15px bottom }
bgpos224566 { background-position: left top , left 15% bottom , right 15px bottom }
bgpos224567 { background-position: left top 15% , left 15% bottom , right 15px bottom }
bgpos224568 { background-position: left top 15px , left 15% bottom , right 15px bottom }
bgpos224569 { background-position: left 15% bottom , left 15% bottom , right 15px bottom }
bgpos224570 { background-position: left 15% bottom 15% , left 15% bottom , right 15px bottom }
bgpos224571 { background-position: left 15% bottom 15px , left 15% bottom , right 15px bottom }
bgpos224572 { background-position: left 15% top , left 15% bottom , right 15px bottom }
bgpos224573 { background-position: left 15% top 15% , left 15% bottom , right 15px bottom }
bgpos224574 { background-position: left 15% top 15px , left 15% bottom , right 15px bottom }
bgpos224575 { background-position: left 15% center , left 15% bottom , right 15px bottom }
bgpos224576 { background-position: left 15px bottom , left 15% bottom , right 15px bottom }
bgpos224577 { background-position: left 15px bottom 15% , left 15% bottom , right 15px bottom }
bgpos224578 { background-position: left 15px bottom 15px , left 15% bottom , right 15px bottom }
bgpos224579 { background-position: left 15px top , left 15% bottom , right 15px bottom }
bgpos224580 { background-position: left 15px top 15% , left 15% bottom , right 15px bottom }
bgpos224581 { background-position: left 15px top 15px , left 15% bottom , right 15px bottom }
bgpos224582 { background-position: left 15px center , left 15% bottom , right 15px bottom }
bgpos224583 { background-position: left center , left 15% bottom , right 15px bottom }
bgpos224584 { background-position: right bottom , left 15% bottom , right 15px bottom }
bgpos224585 { background-position: right bottom 15% , left 15% bottom , right 15px bottom }
bgpos224586 { background-position: right bottom 15px , left 15% bottom , right 15px bottom }
bgpos224587 { background-position: right top , left 15% bottom , right 15px bottom }
bgpos224588 { background-position: right top 15% , left 15% bottom , right 15px bottom }
bgpos224589 { background-position: right top 15px , left 15% bottom , right 15px bottom }
bgpos224590 { background-position: right 15% bottom , left 15% bottom , right 15px bottom }
bgpos224591 { background-position: right 15% bottom 15% , left 15% bottom , right 15px bottom }
bgpos224592 { background-position: right 15% bottom 15px , left 15% bottom , right 15px bottom }
bgpos224593 { background-position: right 15% top , left 15% bottom , right 15px bottom }
bgpos224594 { background-position: right 15% top 15% , left 15% bottom , right 15px bottom }
bgpos224595 { background-position: right 15% top 15px , left 15% bottom , right 15px bottom }
bgpos224596 { background-position: right 15% center , left 15% bottom , right 15px bottom }
bgpos224597 { background-position: right 15px bottom , left 15% bottom , right 15px bottom }
bgpos224598 { background-position: right 15px bottom 15% , left 15% bottom , right 15px bottom }
bgpos224599 { background-position: right 15px bottom 15px , left 15% bottom , right 15px bottom }
bgpos224600 { background-position: right 15px top , left 15% bottom , right 15px bottom }
bgpos224601 { background-position: right 15px top 15% , left 15% bottom , right 15px bottom }
bgpos224602 { background-position: right 15px top 15px , left 15% bottom , right 15px bottom }
bgpos224603 { background-position: right 15px center , left 15% bottom , right 15px bottom }
bgpos224604 { background-position: right center , left 15% bottom , right 15px bottom }
bgpos224605 { background-position: 100px , left 15% bottom , right 15px bottom }
bgpos224606 { background-position: 100px 10% , left 15% bottom , right 15px bottom }
bgpos224607 { background-position: 100px 100px , left 15% bottom , right 15px bottom }
bgpos224608 { background-position: 100px bottom , left 15% bottom , right 15px bottom }
bgpos224609 { background-position: 100px center , left 15% bottom , right 15px bottom }
bgpos224610 { background-position: 100px top , left 15% bottom , right 15px bottom }
bgpos224611 { background-position: 50% , left 15% bottom , right 15px bottom }
bgpos224612 { background-position: 50% 10% , left 15% bottom , right 15px bottom }
bgpos224613 { background-position: 50% 100px , left 15% bottom , right 15px bottom }
bgpos224614 { background-position: 50% bottom , left 15% bottom , right 15px bottom }
bgpos224615 { background-position: 50% center , left 15% bottom , right 15px bottom }
bgpos224616 { background-position: 50% top , left 15% bottom , right 15px bottom }
bgpos224617 { background-position: bottom, left 15% bottom , right 15px bottom }
bgpos224618 { background-position: center , left 15% bottom , right 15px bottom }
bgpos224619 { background-position: center bottom , left 15% bottom , right 15px bottom }
bgpos224620 { background-position: center bottom 15% , left 15% bottom , right 15px bottom }
bgpos224621 { background-position: center bottom 15px , left 15% bottom , right 15px bottom }
bgpos224622 { background-position: center top , left 15% bottom , right 15px bottom }
bgpos224623 { background-position: center top 15% , left 15% bottom , right 15px bottom }
bgpos224624 { background-position: center top 15px , left 15% bottom , right 15px bottom }
bgpos224625 { background-position: center 10% , left 15% bottom , right 15px bottom }
bgpos224626 { background-position: center 100px , left 15% bottom , right 15px bottom }
bgpos224627 { background-position: center bottom , left 15% bottom , right 15px bottom }
bgpos224628 { background-position: center center , left 15% bottom , right 15px bottom }
bgpos224629 { background-position: center top , left 15% bottom , right 15px bottom }
bgpos224630 { background-position: left , left 15% bottom , right 15px bottom }
bgpos224631 { background-position: left 10% , left 15% bottom , right 15px bottom }
bgpos224632 { background-position: left 100px , left 15% bottom , right 15px bottom }
bgpos224633 { background-position: left bottom , left 15% bottom , right 15px bottom }
bgpos224634 { background-position: left center , left 15% bottom , right 15px bottom }
bgpos224635 { background-position: left top , left 15% bottom , right 15px bottom }
bgpos224636 { background-position: right , left 15% bottom , right 15px bottom }
bgpos224637 { background-position: right 10% , left 15% bottom , right 15px bottom }
bgpos224638 { background-position: right 100px , left 15% bottom , right 15px bottom }
bgpos224639 { background-position: right bottom , left 15% bottom , right 15px bottom }
bgpos224640 { background-position: right center , left 15% bottom , right 15px bottom }
bgpos224641 { background-position: right top , left 15% bottom , right 15px bottom }
bgpos224642 { background-position: top , left 15% bottom , right 15px bottom }
bgpos224643 { background-position: left bottom , left 15% bottom 15% , right 15px bottom }
bgpos224644 { background-position: left bottom 15% , left 15% bottom 15% , right 15px bottom }
bgpos224645 { background-position: left bottom 15px , left 15% bottom 15% , right 15px bottom }
bgpos224646 { background-position: left top , left 15% bottom 15% , right 15px bottom }
bgpos224647 { background-position: left top 15% , left 15% bottom 15% , right 15px bottom }
bgpos224648 { background-position: left top 15px , left 15% bottom 15% , right 15px bottom }
bgpos224649 { background-position: left 15% bottom , left 15% bottom 15% , right 15px bottom }
bgpos224650 { background-position: left 15% bottom 15% , left 15% bottom 15% , right 15px bottom }
bgpos224651 { background-position: left 15% bottom 15px , left 15% bottom 15% , right 15px bottom }
bgpos224652 { background-position: left 15% top , left 15% bottom 15% , right 15px bottom }
bgpos224653 { background-position: left 15% top 15% , left 15% bottom 15% , right 15px bottom }
bgpos224654 { background-position: left 15% top 15px , left 15% bottom 15% , right 15px bottom }
bgpos224655 { background-position: left 15% center , left 15% bottom 15% , right 15px bottom }
bgpos224656 { background-position: left 15px bottom , left 15% bottom 15% , right 15px bottom }
bgpos224657 { background-position: left 15px bottom 15% , left 15% bottom 15% , right 15px bottom }
bgpos224658 { background-position: left 15px bottom 15px , left 15% bottom 15% , right 15px bottom }
bgpos224659 { background-position: left 15px top , left 15% bottom 15% , right 15px bottom }
bgpos224660 { background-position: left 15px top 15% , left 15% bottom 15% , right 15px bottom }
bgpos224661 { background-position: left 15px top 15px , left 15% bottom 15% , right 15px bottom }
bgpos224662 { background-position: left 15px center , left 15% bottom 15% , right 15px bottom }
bgpos224663 { background-position: left center , left 15% bottom 15% , right 15px bottom }
bgpos224664 { background-position: right bottom , left 15% bottom 15% , right 15px bottom }
bgpos224665 { background-position: right bottom 15% , left 15% bottom 15% , right 15px bottom }
bgpos224666 { background-position: right bottom 15px , left 15% bottom 15% , right 15px bottom }
bgpos224667 { background-position: right top , left 15% bottom 15% , right 15px bottom }
bgpos224668 { background-position: right top 15% , left 15% bottom 15% , right 15px bottom }
bgpos224669 { background-position: right top 15px , left 15% bottom 15% , right 15px bottom }
bgpos224670 { background-position: right 15% bottom , left 15% bottom 15% , right 15px bottom }
bgpos224671 { background-position: right 15% bottom 15% , left 15% bottom 15% , right 15px bottom }
bgpos224672 { background-position: right 15% bottom 15px , left 15% bottom 15% , right 15px bottom }
bgpos224673 { background-position: right 15% top , left 15% bottom 15% , right 15px bottom }
bgpos224674 { background-position: right 15% top 15% , left 15% bottom 15% , right 15px bottom }
bgpos224675 { background-position: right 15% top 15px , left 15% bottom 15% , right 15px bottom }
bgpos224676 { background-position: right 15% center , left 15% bottom 15% , right 15px bottom }
bgpos224677 { background-position: right 15px bottom , left 15% bottom 15% , right 15px bottom }
bgpos224678 { background-position: right 15px bottom 15% , left 15% bottom 15% , right 15px bottom }
bgpos224679 { background-position: right 15px bottom 15px , left 15% bottom 15% , right 15px bottom }
bgpos224680 { background-position: right 15px top , left 15% bottom 15% , right 15px bottom }
bgpos224681 { background-position: right 15px top 15% , left 15% bottom 15% , right 15px bottom }
bgpos224682 { background-position: right 15px top 15px , left 15% bottom 15% , right 15px bottom }
bgpos224683 { background-position: right 15px center , left 15% bottom 15% , right 15px bottom }
bgpos224684 { background-position: right center , left 15% bottom 15% , right 15px bottom }
bgpos224685 { background-position: 100px , left 15% bottom 15% , right 15px bottom }
bgpos224686 { background-position: 100px 10% , left 15% bottom 15% , right 15px bottom }
bgpos224687 { background-position: 100px 100px , left 15% bottom 15% , right 15px bottom }
bgpos224688 { background-position: 100px bottom , left 15% bottom 15% , right 15px bottom }
bgpos224689 { background-position: 100px center , left 15% bottom 15% , right 15px bottom }
bgpos224690 { background-position: 100px top , left 15% bottom 15% , right 15px bottom }
bgpos224691 { background-position: 50% , left 15% bottom 15% , right 15px bottom }
bgpos224692 { background-position: 50% 10% , left 15% bottom 15% , right 15px bottom }
bgpos224693 { background-position: 50% 100px , left 15% bottom 15% , right 15px bottom }
bgpos224694 { background-position: 50% bottom , left 15% bottom 15% , right 15px bottom }
bgpos224695 { background-position: 50% center , left 15% bottom 15% , right 15px bottom }
bgpos224696 { background-position: 50% top , left 15% bottom 15% , right 15px bottom }
bgpos224697 { background-position: bottom, left 15% bottom 15% , right 15px bottom }
bgpos224698 { background-position: center , left 15% bottom 15% , right 15px bottom }
bgpos224699 { background-position: center bottom , left 15% bottom 15% , right 15px bottom }
bgpos224700 { background-position: center bottom 15% , left 15% bottom 15% , right 15px bottom }
bgpos224701 { background-position: center bottom 15px , left 15% bottom 15% , right 15px bottom }
bgpos224702 { background-position: center top , left 15% bottom 15% , right 15px bottom }
bgpos224703 { background-position: center top 15% , left 15% bottom 15% , right 15px bottom }
bgpos224704 { background-position: center top 15px , left 15% bottom 15% , right 15px bottom }
bgpos224705 { background-position: center 10% , left 15% bottom 15% , right 15px bottom }
bgpos224706 { background-position: center 100px , left 15% bottom 15% , right 15px bottom }
bgpos224707 { background-position: center bottom , left 15% bottom 15% , right 15px bottom }
bgpos224708 { background-position: center center , left 15% bottom 15% , right 15px bottom }
bgpos224709 { background-position: center top , left 15% bottom 15% , right 15px bottom }
bgpos224710 { background-position: left , left 15% bottom 15% , right 15px bottom }
bgpos224711 { background-position: left 10% , left 15% bottom 15% , right 15px bottom }
bgpos224712 { background-position: left 100px , left 15% bottom 15% , right 15px bottom }
bgpos224713 { background-position: left bottom , left 15% bottom 15% , right 15px bottom }
bgpos224714 { background-position: left center , left 15% bottom 15% , right 15px bottom }
bgpos224715 { background-position: left top , left 15% bottom 15% , right 15px bottom }
bgpos224716 { background-position: right , left 15% bottom 15% , right 15px bottom }
bgpos224717 { background-position: right 10% , left 15% bottom 15% , right 15px bottom }
bgpos224718 { background-position: right 100px , left 15% bottom 15% , right 15px bottom }
bgpos224719 { background-position: right bottom , left 15% bottom 15% , right 15px bottom }
bgpos224720 { background-position: right center , left 15% bottom 15% , right 15px bottom }
bgpos224721 { background-position: right top , left 15% bottom 15% , right 15px bottom }
bgpos224722 { background-position: top , left 15% bottom 15% , right 15px bottom }
bgpos224723 { background-position: left bottom , left 15% bottom 15px , right 15px bottom }
bgpos224724 { background-position: left bottom 15% , left 15% bottom 15px , right 15px bottom }
bgpos224725 { background-position: left bottom 15px , left 15% bottom 15px , right 15px bottom }
bgpos224726 { background-position: left top , left 15% bottom 15px , right 15px bottom }
bgpos224727 { background-position: left top 15% , left 15% bottom 15px , right 15px bottom }
bgpos224728 { background-position: left top 15px , left 15% bottom 15px , right 15px bottom }
bgpos224729 { background-position: left 15% bottom , left 15% bottom 15px , right 15px bottom }
bgpos224730 { background-position: left 15% bottom 15% , left 15% bottom 15px , right 15px bottom }
bgpos224731 { background-position: left 15% bottom 15px , left 15% bottom 15px , right 15px bottom }
bgpos224732 { background-position: left 15% top , left 15% bottom 15px , right 15px bottom }
bgpos224733 { background-position: left 15% top 15% , left 15% bottom 15px , right 15px bottom }
bgpos224734 { background-position: left 15% top 15px , left 15% bottom 15px , right 15px bottom }
bgpos224735 { background-position: left 15% center , left 15% bottom 15px , right 15px bottom }
bgpos224736 { background-position: left 15px bottom , left 15% bottom 15px , right 15px bottom }
bgpos224737 { background-position: left 15px bottom 15% , left 15% bottom 15px , right 15px bottom }
bgpos224738 { background-position: left 15px bottom 15px , left 15% bottom 15px , right 15px bottom }
bgpos224739 { background-position: left 15px top , left 15% bottom 15px , right 15px bottom }
bgpos224740 { background-position: left 15px top 15% , left 15% bottom 15px , right 15px bottom }
bgpos224741 { background-position: left 15px top 15px , left 15% bottom 15px , right 15px bottom }
bgpos224742 { background-position: left 15px center , left 15% bottom 15px , right 15px bottom }
bgpos224743 { background-position: left center , left 15% bottom 15px , right 15px bottom }
bgpos224744 { background-position: right bottom , left 15% bottom 15px , right 15px bottom }
bgpos224745 { background-position: right bottom 15% , left 15% bottom 15px , right 15px bottom }
bgpos224746 { background-position: right bottom 15px , left 15% bottom 15px , right 15px bottom }
bgpos224747 { background-position: right top , left 15% bottom 15px , right 15px bottom }
bgpos224748 { background-position: right top 15% , left 15% bottom 15px , right 15px bottom }
bgpos224749 { background-position: right top 15px , left 15% bottom 15px , right 15px bottom }
bgpos224750 { background-position: right 15% bottom , left 15% bottom 15px , right 15px bottom }
bgpos224751 { background-position: right 15% bottom 15% , left 15% bottom 15px , right 15px bottom }
bgpos224752 { background-position: right 15% bottom 15px , left 15% bottom 15px , right 15px bottom }
bgpos224753 { background-position: right 15% top , left 15% bottom 15px , right 15px bottom }
bgpos224754 { background-position: right 15% top 15% , left 15% bottom 15px , right 15px bottom }
bgpos224755 { background-position: right 15% top 15px , left 15% bottom 15px , right 15px bottom }
bgpos224756 { background-position: right 15% center , left 15% bottom 15px , right 15px bottom }
bgpos224757 { background-position: right 15px bottom , left 15% bottom 15px , right 15px bottom }
bgpos224758 { background-position: right 15px bottom 15% , left 15% bottom 15px , right 15px bottom }
bgpos224759 { background-position: right 15px bottom 15px , left 15% bottom 15px , right 15px bottom }
bgpos224760 { background-position: right 15px top , left 15% bottom 15px , right 15px bottom }
bgpos224761 { background-position: right 15px top 15% , left 15% bottom 15px , right 15px bottom }
bgpos224762 { background-position: right 15px top 15px , left 15% bottom 15px , right 15px bottom }
bgpos224763 { background-position: right 15px center , left 15% bottom 15px , right 15px bottom }
bgpos224764 { background-position: right center , left 15% bottom 15px , right 15px bottom }
bgpos224765 { background-position: 100px , left 15% bottom 15px , right 15px bottom }
bgpos224766 { background-position: 100px 10% , left 15% bottom 15px , right 15px bottom }
bgpos224767 { background-position: 100px 100px , left 15% bottom 15px , right 15px bottom }
bgpos224768 { background-position: 100px bottom , left 15% bottom 15px , right 15px bottom }
bgpos224769 { background-position: 100px center , left 15% bottom 15px , right 15px bottom }
bgpos224770 { background-position: 100px top , left 15% bottom 15px , right 15px bottom }
bgpos224771 { background-position: 50% , left 15% bottom 15px , right 15px bottom }
bgpos224772 { background-position: 50% 10% , left 15% bottom 15px , right 15px bottom }
bgpos224773 { background-position: 50% 100px , left 15% bottom 15px , right 15px bottom }
bgpos224774 { background-position: 50% bottom , left 15% bottom 15px , right 15px bottom }
bgpos224775 { background-position: 50% center , left 15% bottom 15px , right 15px bottom }
bgpos224776 { background-position: 50% top , left 15% bottom 15px , right 15px bottom }
bgpos224777 { background-position: bottom, left 15% bottom 15px , right 15px bottom }
bgpos224778 { background-position: center , left 15% bottom 15px , right 15px bottom }
bgpos224779 { background-position: center bottom , left 15% bottom 15px , right 15px bottom }
bgpos224780 { background-position: center bottom 15% , left 15% bottom 15px , right 15px bottom }
bgpos224781 { background-position: center bottom 15px , left 15% bottom 15px , right 15px bottom }
bgpos224782 { background-position: center top , left 15% bottom 15px , right 15px bottom }
bgpos224783 { background-position: center top 15% , left 15% bottom 15px , right 15px bottom }
bgpos224784 { background-position: center top 15px , left 15% bottom 15px , right 15px bottom }
bgpos224785 { background-position: center 10% , left 15% bottom 15px , right 15px bottom }
bgpos224786 { background-position: center 100px , left 15% bottom 15px , right 15px bottom }
bgpos224787 { background-position: center bottom , left 15% bottom 15px , right 15px bottom }
bgpos224788 { background-position: center center , left 15% bottom 15px , right 15px bottom }
bgpos224789 { background-position: center top , left 15% bottom 15px , right 15px bottom }
bgpos224790 { background-position: left , left 15% bottom 15px , right 15px bottom }
bgpos224791 { background-position: left 10% , left 15% bottom 15px , right 15px bottom }
bgpos224792 { background-position: left 100px , left 15% bottom 15px , right 15px bottom }
bgpos224793 { background-position: left bottom , left 15% bottom 15px , right 15px bottom }
bgpos224794 { background-position: left center , left 15% bottom 15px , right 15px bottom }
bgpos224795 { background-position: left top , left 15% bottom 15px , right 15px bottom }
bgpos224796 { background-position: right , left 15% bottom 15px , right 15px bottom }
bgpos224797 { background-position: right 10% , left 15% bottom 15px , right 15px bottom }
bgpos224798 { background-position: right 100px , left 15% bottom 15px , right 15px bottom }
bgpos224799 { background-position: right bottom , left 15% bottom 15px , right 15px bottom }
bgpos224800 { background-position: right center , left 15% bottom 15px , right 15px bottom }
bgpos224801 { background-position: right top , left 15% bottom 15px , right 15px bottom }
bgpos224802 { background-position: top , left 15% bottom 15px , right 15px bottom }
bgpos224803 { background-position: left bottom , left 15% top , right 15px bottom }
bgpos224804 { background-position: left bottom 15% , left 15% top , right 15px bottom }
bgpos224805 { background-position: left bottom 15px , left 15% top , right 15px bottom }
bgpos224806 { background-position: left top , left 15% top , right 15px bottom }
bgpos224807 { background-position: left top 15% , left 15% top , right 15px bottom }
bgpos224808 { background-position: left top 15px , left 15% top , right 15px bottom }
bgpos224809 { background-position: left 15% bottom , left 15% top , right 15px bottom }
bgpos224810 { background-position: left 15% bottom 15% , left 15% top , right 15px bottom }
bgpos224811 { background-position: left 15% bottom 15px , left 15% top , right 15px bottom }
bgpos224812 { background-position: left 15% top , left 15% top , right 15px bottom }
bgpos224813 { background-position: left 15% top 15% , left 15% top , right 15px bottom }
bgpos224814 { background-position: left 15% top 15px , left 15% top , right 15px bottom }
bgpos224815 { background-position: left 15% center , left 15% top , right 15px bottom }
bgpos224816 { background-position: left 15px bottom , left 15% top , right 15px bottom }
bgpos224817 { background-position: left 15px bottom 15% , left 15% top , right 15px bottom }
bgpos224818 { background-position: left 15px bottom 15px , left 15% top , right 15px bottom }
bgpos224819 { background-position: left 15px top , left 15% top , right 15px bottom }
bgpos224820 { background-position: left 15px top 15% , left 15% top , right 15px bottom }
bgpos224821 { background-position: left 15px top 15px , left 15% top , right 15px bottom }
bgpos224822 { background-position: left 15px center , left 15% top , right 15px bottom }
bgpos224823 { background-position: left center , left 15% top , right 15px bottom }
bgpos224824 { background-position: right bottom , left 15% top , right 15px bottom }
bgpos224825 { background-position: right bottom 15% , left 15% top , right 15px bottom }
bgpos224826 { background-position: right bottom 15px , left 15% top , right 15px bottom }
bgpos224827 { background-position: right top , left 15% top , right 15px bottom }
bgpos224828 { background-position: right top 15% , left 15% top , right 15px bottom }
bgpos224829 { background-position: right top 15px , left 15% top , right 15px bottom }
bgpos224830 { background-position: right 15% bottom , left 15% top , right 15px bottom }
bgpos224831 { background-position: right 15% bottom 15% , left 15% top , right 15px bottom }
bgpos224832 { background-position: right 15% bottom 15px , left 15% top , right 15px bottom }
bgpos224833 { background-position: right 15% top , left 15% top , right 15px bottom }
bgpos224834 { background-position: right 15% top 15% , left 15% top , right 15px bottom }
bgpos224835 { background-position: right 15% top 15px , left 15% top , right 15px bottom }
bgpos224836 { background-position: right 15% center , left 15% top , right 15px bottom }
bgpos224837 { background-position: right 15px bottom , left 15% top , right 15px bottom }
bgpos224838 { background-position: right 15px bottom 15% , left 15% top , right 15px bottom }
bgpos224839 { background-position: right 15px bottom 15px , left 15% top , right 15px bottom }
bgpos224840 { background-position: right 15px top , left 15% top , right 15px bottom }
bgpos224841 { background-position: right 15px top 15% , left 15% top , right 15px bottom }
bgpos224842 { background-position: right 15px top 15px , left 15% top , right 15px bottom }
bgpos224843 { background-position: right 15px center , left 15% top , right 15px bottom }
bgpos224844 { background-position: right center , left 15% top , right 15px bottom }
bgpos224845 { background-position: 100px , left 15% top , right 15px bottom }
bgpos224846 { background-position: 100px 10% , left 15% top , right 15px bottom }
bgpos224847 { background-position: 100px 100px , left 15% top , right 15px bottom }
bgpos224848 { background-position: 100px bottom , left 15% top , right 15px bottom }
bgpos224849 { background-position: 100px center , left 15% top , right 15px bottom }
bgpos224850 { background-position: 100px top , left 15% top , right 15px bottom }
bgpos224851 { background-position: 50% , left 15% top , right 15px bottom }
bgpos224852 { background-position: 50% 10% , left 15% top , right 15px bottom }
bgpos224853 { background-position: 50% 100px , left 15% top , right 15px bottom }
bgpos224854 { background-position: 50% bottom , left 15% top , right 15px bottom }
bgpos224855 { background-position: 50% center , left 15% top , right 15px bottom }
bgpos224856 { background-position: 50% top , left 15% top , right 15px bottom }
bgpos224857 { background-position: bottom, left 15% top , right 15px bottom }
bgpos224858 { background-position: center , left 15% top , right 15px bottom }
bgpos224859 { background-position: center bottom , left 15% top , right 15px bottom }
bgpos224860 { background-position: center bottom 15% , left 15% top , right 15px bottom }
bgpos224861 { background-position: center bottom 15px , left 15% top , right 15px bottom }
bgpos224862 { background-position: center top , left 15% top , right 15px bottom }
bgpos224863 { background-position: center top 15% , left 15% top , right 15px bottom }
bgpos224864 { background-position: center top 15px , left 15% top , right 15px bottom }
bgpos224865 { background-position: center 10% , left 15% top , right 15px bottom }
bgpos224866 { background-position: center 100px , left 15% top , right 15px bottom }
bgpos224867 { background-position: center bottom , left 15% top , right 15px bottom }
bgpos224868 { background-position: center center , left 15% top , right 15px bottom }
bgpos224869 { background-position: center top , left 15% top , right 15px bottom }
bgpos224870 { background-position: left , left 15% top , right 15px bottom }
bgpos224871 { background-position: left 10% , left 15% top , right 15px bottom }
bgpos224872 { background-position: left 100px , left 15% top , right 15px bottom }
bgpos224873 { background-position: left bottom , left 15% top , right 15px bottom }
bgpos224874 { background-position: left center , left 15% top , right 15px bottom }
bgpos224875 { background-position: left top , left 15% top , right 15px bottom }
bgpos224876 { background-position: right , left 15% top , right 15px bottom }
bgpos224877 { background-position: right 10% , left 15% top , right 15px bottom }
bgpos224878 { background-position: right 100px , left 15% top , right 15px bottom }
bgpos224879 { background-position: right bottom , left 15% top , right 15px bottom }
bgpos224880 { background-position: right center , left 15% top , right 15px bottom }
bgpos224881 { background-position: right top , left 15% top , right 15px bottom }
bgpos224882 { background-position: top , left 15% top , right 15px bottom }
bgpos224883 { background-position: left bottom , left 15% top 15% , right 15px bottom }
bgpos224884 { background-position: left bottom 15% , left 15% top 15% , right 15px bottom }
bgpos224885 { background-position: left bottom 15px , left 15% top 15% , right 15px bottom }
bgpos224886 { background-position: left top , left 15% top 15% , right 15px bottom }
bgpos224887 { background-position: left top 15% , left 15% top 15% , right 15px bottom }
bgpos224888 { background-position: left top 15px , left 15% top 15% , right 15px bottom }
bgpos224889 { background-position: left 15% bottom , left 15% top 15% , right 15px bottom }
bgpos224890 { background-position: left 15% bottom 15% , left 15% top 15% , right 15px bottom }
bgpos224891 { background-position: left 15% bottom 15px , left 15% top 15% , right 15px bottom }
bgpos224892 { background-position: left 15% top , left 15% top 15% , right 15px bottom }
bgpos224893 { background-position: left 15% top 15% , left 15% top 15% , right 15px bottom }
bgpos224894 { background-position: left 15% top 15px , left 15% top 15% , right 15px bottom }
bgpos224895 { background-position: left 15% center , left 15% top 15% , right 15px bottom }
bgpos224896 { background-position: left 15px bottom , left 15% top 15% , right 15px bottom }
bgpos224897 { background-position: left 15px bottom 15% , left 15% top 15% , right 15px bottom }
bgpos224898 { background-position: left 15px bottom 15px , left 15% top 15% , right 15px bottom }
bgpos224899 { background-position: left 15px top , left 15% top 15% , right 15px bottom }
bgpos224900 { background-position: left 15px top 15% , left 15% top 15% , right 15px bottom }
bgpos224901 { background-position: left 15px top 15px , left 15% top 15% , right 15px bottom }
bgpos224902 { background-position: left 15px center , left 15% top 15% , right 15px bottom }
bgpos224903 { background-position: left center , left 15% top 15% , right 15px bottom }
bgpos224904 { background-position: right bottom , left 15% top 15% , right 15px bottom }
bgpos224905 { background-position: right bottom 15% , left 15% top 15% , right 15px bottom }
bgpos224906 { background-position: right bottom 15px , left 15% top 15% , right 15px bottom }
bgpos224907 { background-position: right top , left 15% top 15% , right 15px bottom }
bgpos224908 { background-position: right top 15% , left 15% top 15% , right 15px bottom }
bgpos224909 { background-position: right top 15px , left 15% top 15% , right 15px bottom }
bgpos224910 { background-position: right 15% bottom , left 15% top 15% , right 15px bottom }
bgpos224911 { background-position: right 15% bottom 15% , left 15% top 15% , right 15px bottom }
bgpos224912 { background-position: right 15% bottom 15px , left 15% top 15% , right 15px bottom }
bgpos224913 { background-position: right 15% top , left 15% top 15% , right 15px bottom }
bgpos224914 { background-position: right 15% top 15% , left 15% top 15% , right 15px bottom }
bgpos224915 { background-position: right 15% top 15px , left 15% top 15% , right 15px bottom }
bgpos224916 { background-position: right 15% center , left 15% top 15% , right 15px bottom }
bgpos224917 { background-position: right 15px bottom , left 15% top 15% , right 15px bottom }
bgpos224918 { background-position: right 15px bottom 15% , left 15% top 15% , right 15px bottom }
bgpos224919 { background-position: right 15px bottom 15px , left 15% top 15% , right 15px bottom }
bgpos224920 { background-position: right 15px top , left 15% top 15% , right 15px bottom }
bgpos224921 { background-position: right 15px top 15% , left 15% top 15% , right 15px bottom }
bgpos224922 { background-position: right 15px top 15px , left 15% top 15% , right 15px bottom }
bgpos224923 { background-position: right 15px center , left 15% top 15% , right 15px bottom }
bgpos224924 { background-position: right center , left 15% top 15% , right 15px bottom }
bgpos224925 { background-position: 100px , left 15% top 15% , right 15px bottom }
bgpos224926 { background-position: 100px 10% , left 15% top 15% , right 15px bottom }
bgpos224927 { background-position: 100px 100px , left 15% top 15% , right 15px bottom }
bgpos224928 { background-position: 100px bottom , left 15% top 15% , right 15px bottom }
bgpos224929 { background-position: 100px center , left 15% top 15% , right 15px bottom }
bgpos224930 { background-position: 100px top , left 15% top 15% , right 15px bottom }
bgpos224931 { background-position: 50% , left 15% top 15% , right 15px bottom }
bgpos224932 { background-position: 50% 10% , left 15% top 15% , right 15px bottom }
bgpos224933 { background-position: 50% 100px , left 15% top 15% , right 15px bottom }
bgpos224934 { background-position: 50% bottom , left 15% top 15% , right 15px bottom }
bgpos224935 { background-position: 50% center , left 15% top 15% , right 15px bottom }
bgpos224936 { background-position: 50% top , left 15% top 15% , right 15px bottom }
bgpos224937 { background-position: bottom, left 15% top 15% , right 15px bottom }
bgpos224938 { background-position: center , left 15% top 15% , right 15px bottom }
bgpos224939 { background-position: center bottom , left 15% top 15% , right 15px bottom }
bgpos224940 { background-position: center bottom 15% , left 15% top 15% , right 15px bottom }
bgpos224941 { background-position: center bottom 15px , left 15% top 15% , right 15px bottom }
bgpos224942 { background-position: center top , left 15% top 15% , right 15px bottom }
bgpos224943 { background-position: center top 15% , left 15% top 15% , right 15px bottom }
bgpos224944 { background-position: center top 15px , left 15% top 15% , right 15px bottom }
bgpos224945 { background-position: center 10% , left 15% top 15% , right 15px bottom }
bgpos224946 { background-position: center 100px , left 15% top 15% , right 15px bottom }
bgpos224947 { background-position: center bottom , left 15% top 15% , right 15px bottom }
bgpos224948 { background-position: center center , left 15% top 15% , right 15px bottom }
bgpos224949 { background-position: center top , left 15% top 15% , right 15px bottom }
bgpos224950 { background-position: left , left 15% top 15% , right 15px bottom }
bgpos224951 { background-position: left 10% , left 15% top 15% , right 15px bottom }
bgpos224952 { background-position: left 100px , left 15% top 15% , right 15px bottom }
bgpos224953 { background-position: left bottom , left 15% top 15% , right 15px bottom }
bgpos224954 { background-position: left center , left 15% top 15% , right 15px bottom }
bgpos224955 { background-position: left top , left 15% top 15% , right 15px bottom }
bgpos224956 { background-position: right , left 15% top 15% , right 15px bottom }
bgpos224957 { background-position: right 10% , left 15% top 15% , right 15px bottom }
bgpos224958 { background-position: right 100px , left 15% top 15% , right 15px bottom }
bgpos224959 { background-position: right bottom , left 15% top 15% , right 15px bottom }
bgpos224960 { background-position: right center , left 15% top 15% , right 15px bottom }
bgpos224961 { background-position: right top , left 15% top 15% , right 15px bottom }
bgpos224962 { background-position: top , left 15% top 15% , right 15px bottom }
bgpos224963 { background-position: left bottom , left 15% top 15px , right 15px bottom }
bgpos224964 { background-position: left bottom 15% , left 15% top 15px , right 15px bottom }
bgpos224965 { background-position: left bottom 15px , left 15% top 15px , right 15px bottom }
bgpos224966 { background-position: left top , left 15% top 15px , right 15px bottom }
bgpos224967 { background-position: left top 15% , left 15% top 15px , right 15px bottom }
bgpos224968 { background-position: left top 15px , left 15% top 15px , right 15px bottom }
bgpos224969 { background-position: left 15% bottom , left 15% top 15px , right 15px bottom }
bgpos224970 { background-position: left 15% bottom 15% , left 15% top 15px , right 15px bottom }
bgpos224971 { background-position: left 15% bottom 15px , left 15% top 15px , right 15px bottom }
bgpos224972 { background-position: left 15% top , left 15% top 15px , right 15px bottom }
bgpos224973 { background-position: left 15% top 15% , left 15% top 15px , right 15px bottom }
bgpos224974 { background-position: left 15% top 15px , left 15% top 15px , right 15px bottom }
bgpos224975 { background-position: left 15% center , left 15% top 15px , right 15px bottom }
bgpos224976 { background-position: left 15px bottom , left 15% top 15px , right 15px bottom }
bgpos224977 { background-position: left 15px bottom 15% , left 15% top 15px , right 15px bottom }
bgpos224978 { background-position: left 15px bottom 15px , left 15% top 15px , right 15px bottom }
bgpos224979 { background-position: left 15px top , left 15% top 15px , right 15px bottom }
bgpos224980 { background-position: left 15px top 15% , left 15% top 15px , right 15px bottom }
bgpos224981 { background-position: left 15px top 15px , left 15% top 15px , right 15px bottom }
bgpos224982 { background-position: left 15px center , left 15% top 15px , right 15px bottom }
bgpos224983 { background-position: left center , left 15% top 15px , right 15px bottom }
bgpos224984 { background-position: right bottom , left 15% top 15px , right 15px bottom }
bgpos224985 { background-position: right bottom 15% , left 15% top 15px , right 15px bottom }
bgpos224986 { background-position: right bottom 15px , left 15% top 15px , right 15px bottom }
bgpos224987 { background-position: right top , left 15% top 15px , right 15px bottom }
bgpos224988 { background-position: right top 15% , left 15% top 15px , right 15px bottom }
bgpos224989 { background-position: right top 15px , left 15% top 15px , right 15px bottom }
bgpos224990 { background-position: right 15% bottom , left 15% top 15px , right 15px bottom }
bgpos224991 { background-position: right 15% bottom 15% , left 15% top 15px , right 15px bottom }
bgpos224992 { background-position: right 15% bottom 15px , left 15% top 15px , right 15px bottom }
bgpos224993 { background-position: right 15% top , left 15% top 15px , right 15px bottom }
bgpos224994 { background-position: right 15% top 15% , left 15% top 15px , right 15px bottom }
bgpos224995 { background-position: right 15% top 15px , left 15% top 15px , right 15px bottom }
bgpos224996 { background-position: right 15% center , left 15% top 15px , right 15px bottom }
bgpos224997 { background-position: right 15px bottom , left 15% top 15px , right 15px bottom }
bgpos224998 { background-position: right 15px bottom 15% , left 15% top 15px , right 15px bottom }
bgpos224999 { background-position: right 15px bottom 15px , left 15% top 15px , right 15px bottom }
bgpos225000 { background-position: right 15px top , left 15% top 15px , right 15px bottom }
bgpos225001 { background-position: right 15px top 15% , left 15% top 15px , right 15px bottom }
bgpos225002 { background-position: right 15px top 15px , left 15% top 15px , right 15px bottom }
bgpos225003 { background-position: right 15px center , left 15% top 15px , right 15px bottom }
bgpos225004 { background-position: right center , left 15% top 15px , right 15px bottom }
bgpos225005 { background-position: 100px , left 15% top 15px , right 15px bottom }
bgpos225006 { background-position: 100px 10% , left 15% top 15px , right 15px bottom }
bgpos225007 { background-position: 100px 100px , left 15% top 15px , right 15px bottom }
bgpos225008 { background-position: 100px bottom , left 15% top 15px , right 15px bottom }
bgpos225009 { background-position: 100px center , left 15% top 15px , right 15px bottom }
bgpos225010 { background-position: 100px top , left 15% top 15px , right 15px bottom }
bgpos225011 { background-position: 50% , left 15% top 15px , right 15px bottom }
bgpos225012 { background-position: 50% 10% , left 15% top 15px , right 15px bottom }
bgpos225013 { background-position: 50% 100px , left 15% top 15px , right 15px bottom }
bgpos225014 { background-position: 50% bottom , left 15% top 15px , right 15px bottom }
bgpos225015 { background-position: 50% center , left 15% top 15px , right 15px bottom }
bgpos225016 { background-position: 50% top , left 15% top 15px , right 15px bottom }
bgpos225017 { background-position: bottom, left 15% top 15px , right 15px bottom }
bgpos225018 { background-position: center , left 15% top 15px , right 15px bottom }
bgpos225019 { background-position: center bottom , left 15% top 15px , right 15px bottom }
bgpos225020 { background-position: center bottom 15% , left 15% top 15px , right 15px bottom }
bgpos225021 { background-position: center bottom 15px , left 15% top 15px , right 15px bottom }
bgpos225022 { background-position: center top , left 15% top 15px , right 15px bottom }
bgpos225023 { background-position: center top 15% , left 15% top 15px , right 15px bottom }
bgpos225024 { background-position: center top 15px , left 15% top 15px , right 15px bottom }
bgpos225025 { background-position: center 10% , left 15% top 15px , right 15px bottom }
bgpos225026 { background-position: center 100px , left 15% top 15px , right 15px bottom }
bgpos225027 { background-position: center bottom , left 15% top 15px , right 15px bottom }
bgpos225028 { background-position: center center , left 15% top 15px , right 15px bottom }
bgpos225029 { background-position: center top , left 15% top 15px , right 15px bottom }
bgpos225030 { background-position: left , left 15% top 15px , right 15px bottom }
bgpos225031 { background-position: left 10% , left 15% top 15px , right 15px bottom }
bgpos225032 { background-position: left 100px , left 15% top 15px , right 15px bottom }
bgpos225033 { background-position: left bottom , left 15% top 15px , right 15px bottom }
bgpos225034 { background-position: left center , left 15% top 15px , right 15px bottom }
bgpos225035 { background-position: left top , left 15% top 15px , right 15px bottom }
bgpos225036 { background-position: right , left 15% top 15px , right 15px bottom }
bgpos225037 { background-position: right 10% , left 15% top 15px , right 15px bottom }
bgpos225038 { background-position: right 100px , left 15% top 15px , right 15px bottom }
bgpos225039 { background-position: right bottom , left 15% top 15px , right 15px bottom }
bgpos225040 { background-position: right center , left 15% top 15px , right 15px bottom }
bgpos225041 { background-position: right top , left 15% top 15px , right 15px bottom }
bgpos225042 { background-position: top , left 15% top 15px , right 15px bottom }
bgpos225043 { background-position: left bottom , left 15% center , right 15px bottom }
bgpos225044 { background-position: left bottom 15% , left 15% center , right 15px bottom }
bgpos225045 { background-position: left bottom 15px , left 15% center , right 15px bottom }
bgpos225046 { background-position: left top , left 15% center , right 15px bottom }
bgpos225047 { background-position: left top 15% , left 15% center , right 15px bottom }
bgpos225048 { background-position: left top 15px , left 15% center , right 15px bottom }
bgpos225049 { background-position: left 15% bottom , left 15% center , right 15px bottom }
bgpos225050 { background-position: left 15% bottom 15% , left 15% center , right 15px bottom }
bgpos225051 { background-position: left 15% bottom 15px , left 15% center , right 15px bottom }
bgpos225052 { background-position: left 15% top , left 15% center , right 15px bottom }
bgpos225053 { background-position: left 15% top 15% , left 15% center , right 15px bottom }
bgpos225054 { background-position: left 15% top 15px , left 15% center , right 15px bottom }
bgpos225055 { background-position: left 15% center , left 15% center , right 15px bottom }
bgpos225056 { background-position: left 15px bottom , left 15% center , right 15px bottom }
bgpos225057 { background-position: left 15px bottom 15% , left 15% center , right 15px bottom }
bgpos225058 { background-position: left 15px bottom 15px , left 15% center , right 15px bottom }
bgpos225059 { background-position: left 15px top , left 15% center , right 15px bottom }
bgpos225060 { background-position: left 15px top 15% , left 15% center , right 15px bottom }
bgpos225061 { background-position: left 15px top 15px , left 15% center , right 15px bottom }
bgpos225062 { background-position: left 15px center , left 15% center , right 15px bottom }
bgpos225063 { background-position: left center , left 15% center , right 15px bottom }
bgpos225064 { background-position: right bottom , left 15% center , right 15px bottom }
bgpos225065 { background-position: right bottom 15% , left 15% center , right 15px bottom }
bgpos225066 { background-position: right bottom 15px , left 15% center , right 15px bottom }
bgpos225067 { background-position: right top , left 15% center , right 15px bottom }
bgpos225068 { background-position: right top 15% , left 15% center , right 15px bottom }
bgpos225069 { background-position: right top 15px , left 15% center , right 15px bottom }
bgpos225070 { background-position: right 15% bottom , left 15% center , right 15px bottom }
bgpos225071 { background-position: right 15% bottom 15% , left 15% center , right 15px bottom }
bgpos225072 { background-position: right 15% bottom 15px , left 15% center , right 15px bottom }
bgpos225073 { background-position: right 15% top , left 15% center , right 15px bottom }
bgpos225074 { background-position: right 15% top 15% , left 15% center , right 15px bottom }
bgpos225075 { background-position: right 15% top 15px , left 15% center , right 15px bottom }
bgpos225076 { background-position: right 15% center , left 15% center , right 15px bottom }
bgpos225077 { background-position: right 15px bottom , left 15% center , right 15px bottom }
bgpos225078 { background-position: right 15px bottom 15% , left 15% center , right 15px bottom }
bgpos225079 { background-position: right 15px bottom 15px , left 15% center , right 15px bottom }
bgpos225080 { background-position: right 15px top , left 15% center , right 15px bottom }
bgpos225081 { background-position: right 15px top 15% , left 15% center , right 15px bottom }
bgpos225082 { background-position: right 15px top 15px , left 15% center , right 15px bottom }
bgpos225083 { background-position: right 15px center , left 15% center , right 15px bottom }
bgpos225084 { background-position: right center , left 15% center , right 15px bottom }
bgpos225085 { background-position: 100px , left 15% center , right 15px bottom }
bgpos225086 { background-position: 100px 10% , left 15% center , right 15px bottom }
bgpos225087 { background-position: 100px 100px , left 15% center , right 15px bottom }
bgpos225088 { background-position: 100px bottom , left 15% center , right 15px bottom }
bgpos225089 { background-position: 100px center , left 15% center , right 15px bottom }
bgpos225090 { background-position: 100px top , left 15% center , right 15px bottom }
bgpos225091 { background-position: 50% , left 15% center , right 15px bottom }
bgpos225092 { background-position: 50% 10% , left 15% center , right 15px bottom }
bgpos225093 { background-position: 50% 100px , left 15% center , right 15px bottom }
bgpos225094 { background-position: 50% bottom , left 15% center , right 15px bottom }
bgpos225095 { background-position: 50% center , left 15% center , right 15px bottom }
bgpos225096 { background-position: 50% top , left 15% center , right 15px bottom }
bgpos225097 { background-position: bottom, left 15% center , right 15px bottom }
bgpos225098 { background-position: center , left 15% center , right 15px bottom }
bgpos225099 { background-position: center bottom , left 15% center , right 15px bottom }
bgpos225100 { background-position: center bottom 15% , left 15% center , right 15px bottom }
bgpos225101 { background-position: center bottom 15px , left 15% center , right 15px bottom }
bgpos225102 { background-position: center top , left 15% center , right 15px bottom }
bgpos225103 { background-position: center top 15% , left 15% center , right 15px bottom }
bgpos225104 { background-position: center top 15px , left 15% center , right 15px bottom }
bgpos225105 { background-position: center 10% , left 15% center , right 15px bottom }
bgpos225106 { background-position: center 100px , left 15% center , right 15px bottom }
bgpos225107 { background-position: center bottom , left 15% center , right 15px bottom }
bgpos225108 { background-position: center center , left 15% center , right 15px bottom }
bgpos225109 { background-position: center top , left 15% center , right 15px bottom }
bgpos225110 { background-position: left , left 15% center , right 15px bottom }
bgpos225111 { background-position: left 10% , left 15% center , right 15px bottom }
bgpos225112 { background-position: left 100px , left 15% center , right 15px bottom }
bgpos225113 { background-position: left bottom , left 15% center , right 15px bottom }
bgpos225114 { background-position: left center , left 15% center , right 15px bottom }
bgpos225115 { background-position: left top , left 15% center , right 15px bottom }
bgpos225116 { background-position: right , left 15% center , right 15px bottom }
bgpos225117 { background-position: right 10% , left 15% center , right 15px bottom }
bgpos225118 { background-position: right 100px , left 15% center , right 15px bottom }
bgpos225119 { background-position: right bottom , left 15% center , right 15px bottom }
bgpos225120 { background-position: right center , left 15% center , right 15px bottom }
bgpos225121 { background-position: right top , left 15% center , right 15px bottom }
bgpos225122 { background-position: top , left 15% center , right 15px bottom }
bgpos225123 { background-position: left bottom , left 15px bottom , right 15px bottom }
bgpos225124 { background-position: left bottom 15% , left 15px bottom , right 15px bottom }
bgpos225125 { background-position: left bottom 15px , left 15px bottom , right 15px bottom }
bgpos225126 { background-position: left top , left 15px bottom , right 15px bottom }
bgpos225127 { background-position: left top 15% , left 15px bottom , right 15px bottom }
bgpos225128 { background-position: left top 15px , left 15px bottom , right 15px bottom }
bgpos225129 { background-position: left 15% bottom , left 15px bottom , right 15px bottom }
bgpos225130 { background-position: left 15% bottom 15% , left 15px bottom , right 15px bottom }
bgpos225131 { background-position: left 15% bottom 15px , left 15px bottom , right 15px bottom }
bgpos225132 { background-position: left 15% top , left 15px bottom , right 15px bottom }
bgpos225133 { background-position: left 15% top 15% , left 15px bottom , right 15px bottom }
bgpos225134 { background-position: left 15% top 15px , left 15px bottom , right 15px bottom }
bgpos225135 { background-position: left 15% center , left 15px bottom , right 15px bottom }
bgpos225136 { background-position: left 15px bottom , left 15px bottom , right 15px bottom }
bgpos225137 { background-position: left 15px bottom 15% , left 15px bottom , right 15px bottom }
bgpos225138 { background-position: left 15px bottom 15px , left 15px bottom , right 15px bottom }
bgpos225139 { background-position: left 15px top , left 15px bottom , right 15px bottom }
bgpos225140 { background-position: left 15px top 15% , left 15px bottom , right 15px bottom }
bgpos225141 { background-position: left 15px top 15px , left 15px bottom , right 15px bottom }
bgpos225142 { background-position: left 15px center , left 15px bottom , right 15px bottom }
bgpos225143 { background-position: left center , left 15px bottom , right 15px bottom }
bgpos225144 { background-position: right bottom , left 15px bottom , right 15px bottom }
bgpos225145 { background-position: right bottom 15% , left 15px bottom , right 15px bottom }
bgpos225146 { background-position: right bottom 15px , left 15px bottom , right 15px bottom }
bgpos225147 { background-position: right top , left 15px bottom , right 15px bottom }
bgpos225148 { background-position: right top 15% , left 15px bottom , right 15px bottom }
bgpos225149 { background-position: right top 15px , left 15px bottom , right 15px bottom }
bgpos225150 { background-position: right 15% bottom , left 15px bottom , right 15px bottom }
bgpos225151 { background-position: right 15% bottom 15% , left 15px bottom , right 15px bottom }
bgpos225152 { background-position: right 15% bottom 15px , left 15px bottom , right 15px bottom }
bgpos225153 { background-position: right 15% top , left 15px bottom , right 15px bottom }
bgpos225154 { background-position: right 15% top 15% , left 15px bottom , right 15px bottom }
bgpos225155 { background-position: right 15% top 15px , left 15px bottom , right 15px bottom }
bgpos225156 { background-position: right 15% center , left 15px bottom , right 15px bottom }
bgpos225157 { background-position: right 15px bottom , left 15px bottom , right 15px bottom }
bgpos225158 { background-position: right 15px bottom 15% , left 15px bottom , right 15px bottom }
bgpos225159 { background-position: right 15px bottom 15px , left 15px bottom , right 15px bottom }
bgpos225160 { background-position: right 15px top , left 15px bottom , right 15px bottom }
bgpos225161 { background-position: right 15px top 15% , left 15px bottom , right 15px bottom }
bgpos225162 { background-position: right 15px top 15px , left 15px bottom , right 15px bottom }
bgpos225163 { background-position: right 15px center , left 15px bottom , right 15px bottom }
bgpos225164 { background-position: right center , left 15px bottom , right 15px bottom }
bgpos225165 { background-position: 100px , left 15px bottom , right 15px bottom }
bgpos225166 { background-position: 100px 10% , left 15px bottom , right 15px bottom }
bgpos225167 { background-position: 100px 100px , left 15px bottom , right 15px bottom }
bgpos225168 { background-position: 100px bottom , left 15px bottom , right 15px bottom }
bgpos225169 { background-position: 100px center , left 15px bottom , right 15px bottom }
bgpos225170 { background-position: 100px top , left 15px bottom , right 15px bottom }
bgpos225171 { background-position: 50% , left 15px bottom , right 15px bottom }
bgpos225172 { background-position: 50% 10% , left 15px bottom , right 15px bottom }
bgpos225173 { background-position: 50% 100px , left 15px bottom , right 15px bottom }
bgpos225174 { background-position: 50% bottom , left 15px bottom , right 15px bottom }
bgpos225175 { background-position: 50% center , left 15px bottom , right 15px bottom }
bgpos225176 { background-position: 50% top , left 15px bottom , right 15px bottom }
bgpos225177 { background-position: bottom, left 15px bottom , right 15px bottom }
bgpos225178 { background-position: center , left 15px bottom , right 15px bottom }
bgpos225179 { background-position: center bottom , left 15px bottom , right 15px bottom }
bgpos225180 { background-position: center bottom 15% , left 15px bottom , right 15px bottom }
bgpos225181 { background-position: center bottom 15px , left 15px bottom , right 15px bottom }
bgpos225182 { background-position: center top , left 15px bottom , right 15px bottom }
bgpos225183 { background-position: center top 15% , left 15px bottom , right 15px bottom }
bgpos225184 { background-position: center top 15px , left 15px bottom , right 15px bottom }
bgpos225185 { background-position: center 10% , left 15px bottom , right 15px bottom }
bgpos225186 { background-position: center 100px , left 15px bottom , right 15px bottom }
bgpos225187 { background-position: center bottom , left 15px bottom , right 15px bottom }
bgpos225188 { background-position: center center , left 15px bottom , right 15px bottom }
bgpos225189 { background-position: center top , left 15px bottom , right 15px bottom }
bgpos225190 { background-position: left , left 15px bottom , right 15px bottom }
bgpos225191 { background-position: left 10% , left 15px bottom , right 15px bottom }
bgpos225192 { background-position: left 100px , left 15px bottom , right 15px bottom }
bgpos225193 { background-position: left bottom , left 15px bottom , right 15px bottom }
bgpos225194 { background-position: left center , left 15px bottom , right 15px bottom }
bgpos225195 { background-position: left top , left 15px bottom , right 15px bottom }
bgpos225196 { background-position: right , left 15px bottom , right 15px bottom }
bgpos225197 { background-position: right 10% , left 15px bottom , right 15px bottom }
bgpos225198 { background-position: right 100px , left 15px bottom , right 15px bottom }
bgpos225199 { background-position: right bottom , left 15px bottom , right 15px bottom }
bgpos225200 { background-position: right center , left 15px bottom , right 15px bottom }
bgpos225201 { background-position: right top , left 15px bottom , right 15px bottom }
bgpos225202 { background-position: top , left 15px bottom , right 15px bottom }
bgpos225203 { background-position: left bottom , left 15px bottom 15% , right 15px bottom }
bgpos225204 { background-position: left bottom 15% , left 15px bottom 15% , right 15px bottom }
bgpos225205 { background-position: left bottom 15px , left 15px bottom 15% , right 15px bottom }
bgpos225206 { background-position: left top , left 15px bottom 15% , right 15px bottom }
bgpos225207 { background-position: left top 15% , left 15px bottom 15% , right 15px bottom }
bgpos225208 { background-position: left top 15px , left 15px bottom 15% , right 15px bottom }
bgpos225209 { background-position: left 15% bottom , left 15px bottom 15% , right 15px bottom }
bgpos225210 { background-position: left 15% bottom 15% , left 15px bottom 15% , right 15px bottom }
bgpos225211 { background-position: left 15% bottom 15px , left 15px bottom 15% , right 15px bottom }
bgpos225212 { background-position: left 15% top , left 15px bottom 15% , right 15px bottom }
bgpos225213 { background-position: left 15% top 15% , left 15px bottom 15% , right 15px bottom }
bgpos225214 { background-position: left 15% top 15px , left 15px bottom 15% , right 15px bottom }
bgpos225215 { background-position: left 15% center , left 15px bottom 15% , right 15px bottom }
bgpos225216 { background-position: left 15px bottom , left 15px bottom 15% , right 15px bottom }
bgpos225217 { background-position: left 15px bottom 15% , left 15px bottom 15% , right 15px bottom }
bgpos225218 { background-position: left 15px bottom 15px , left 15px bottom 15% , right 15px bottom }
bgpos225219 { background-position: left 15px top , left 15px bottom 15% , right 15px bottom }
bgpos225220 { background-position: left 15px top 15% , left 15px bottom 15% , right 15px bottom }
bgpos225221 { background-position: left 15px top 15px , left 15px bottom 15% , right 15px bottom }
bgpos225222 { background-position: left 15px center , left 15px bottom 15% , right 15px bottom }
bgpos225223 { background-position: left center , left 15px bottom 15% , right 15px bottom }
bgpos225224 { background-position: right bottom , left 15px bottom 15% , right 15px bottom }
bgpos225225 { background-position: right bottom 15% , left 15px bottom 15% , right 15px bottom }
bgpos225226 { background-position: right bottom 15px , left 15px bottom 15% , right 15px bottom }
bgpos225227 { background-position: right top , left 15px bottom 15% , right 15px bottom }
bgpos225228 { background-position: right top 15% , left 15px bottom 15% , right 15px bottom }
bgpos225229 { background-position: right top 15px , left 15px bottom 15% , right 15px bottom }
bgpos225230 { background-position: right 15% bottom , left 15px bottom 15% , right 15px bottom }
bgpos225231 { background-position: right 15% bottom 15% , left 15px bottom 15% , right 15px bottom }
bgpos225232 { background-position: right 15% bottom 15px , left 15px bottom 15% , right 15px bottom }
bgpos225233 { background-position: right 15% top , left 15px bottom 15% , right 15px bottom }
bgpos225234 { background-position: right 15% top 15% , left 15px bottom 15% , right 15px bottom }
bgpos225235 { background-position: right 15% top 15px , left 15px bottom 15% , right 15px bottom }
bgpos225236 { background-position: right 15% center , left 15px bottom 15% , right 15px bottom }
bgpos225237 { background-position: right 15px bottom , left 15px bottom 15% , right 15px bottom }
bgpos225238 { background-position: right 15px bottom 15% , left 15px bottom 15% , right 15px bottom }
bgpos225239 { background-position: right 15px bottom 15px , left 15px bottom 15% , right 15px bottom }
bgpos225240 { background-position: right 15px top , left 15px bottom 15% , right 15px bottom }
bgpos225241 { background-position: right 15px top 15% , left 15px bottom 15% , right 15px bottom }
bgpos225242 { background-position: right 15px top 15px , left 15px bottom 15% , right 15px bottom }
bgpos225243 { background-position: right 15px center , left 15px bottom 15% , right 15px bottom }
bgpos225244 { background-position: right center , left 15px bottom 15% , right 15px bottom }
bgpos225245 { background-position: 100px , left 15px bottom 15% , right 15px bottom }
bgpos225246 { background-position: 100px 10% , left 15px bottom 15% , right 15px bottom }
bgpos225247 { background-position: 100px 100px , left 15px bottom 15% , right 15px bottom }
bgpos225248 { background-position: 100px bottom , left 15px bottom 15% , right 15px bottom }
bgpos225249 { background-position: 100px center , left 15px bottom 15% , right 15px bottom }
bgpos225250 { background-position: 100px top , left 15px bottom 15% , right 15px bottom }
bgpos225251 { background-position: 50% , left 15px bottom 15% , right 15px bottom }
bgpos225252 { background-position: 50% 10% , left 15px bottom 15% , right 15px bottom }
bgpos225253 { background-position: 50% 100px , left 15px bottom 15% , right 15px bottom }
bgpos225254 { background-position: 50% bottom , left 15px bottom 15% , right 15px bottom }
bgpos225255 { background-position: 50% center , left 15px bottom 15% , right 15px bottom }
bgpos225256 { background-position: 50% top , left 15px bottom 15% , right 15px bottom }
bgpos225257 { background-position: bottom, left 15px bottom 15% , right 15px bottom }
bgpos225258 { background-position: center , left 15px bottom 15% , right 15px bottom }
bgpos225259 { background-position: center bottom , left 15px bottom 15% , right 15px bottom }
bgpos225260 { background-position: center bottom 15% , left 15px bottom 15% , right 15px bottom }
bgpos225261 { background-position: center bottom 15px , left 15px bottom 15% , right 15px bottom }
bgpos225262 { background-position: center top , left 15px bottom 15% , right 15px bottom }
bgpos225263 { background-position: center top 15% , left 15px bottom 15% , right 15px bottom }
bgpos225264 { background-position: center top 15px , left 15px bottom 15% , right 15px bottom }
bgpos225265 { background-position: center 10% , left 15px bottom 15% , right 15px bottom }
bgpos225266 { background-position: center 100px , left 15px bottom 15% , right 15px bottom }
bgpos225267 { background-position: center bottom , left 15px bottom 15% , right 15px bottom }
bgpos225268 { background-position: center center , left 15px bottom 15% , right 15px bottom }
bgpos225269 { background-position: center top , left 15px bottom 15% , right 15px bottom }
bgpos225270 { background-position: left , left 15px bottom 15% , right 15px bottom }
bgpos225271 { background-position: left 10% , left 15px bottom 15% , right 15px bottom }
bgpos225272 { background-position: left 100px , left 15px bottom 15% , right 15px bottom }
bgpos225273 { background-position: left bottom , left 15px bottom 15% , right 15px bottom }
bgpos225274 { background-position: left center , left 15px bottom 15% , right 15px bottom }
bgpos225275 { background-position: left top , left 15px bottom 15% , right 15px bottom }
bgpos225276 { background-position: right , left 15px bottom 15% , right 15px bottom }
bgpos225277 { background-position: right 10% , left 15px bottom 15% , right 15px bottom }
bgpos225278 { background-position: right 100px , left 15px bottom 15% , right 15px bottom }
bgpos225279 { background-position: right bottom , left 15px bottom 15% , right 15px bottom }
bgpos225280 { background-position: right center , left 15px bottom 15% , right 15px bottom }
bgpos225281 { background-position: right top , left 15px bottom 15% , right 15px bottom }
bgpos225282 { background-position: top , left 15px bottom 15% , right 15px bottom }
bgpos225283 { background-position: left bottom , left 15px bottom 15px , right 15px bottom }
bgpos225284 { background-position: left bottom 15% , left 15px bottom 15px , right 15px bottom }
bgpos225285 { background-position: left bottom 15px , left 15px bottom 15px , right 15px bottom }
bgpos225286 { background-position: left top , left 15px bottom 15px , right 15px bottom }
bgpos225287 { background-position: left top 15% , left 15px bottom 15px , right 15px bottom }
bgpos225288 { background-position: left top 15px , left 15px bottom 15px , right 15px bottom }
bgpos225289 { background-position: left 15% bottom , left 15px bottom 15px , right 15px bottom }
bgpos225290 { background-position: left 15% bottom 15% , left 15px bottom 15px , right 15px bottom }
bgpos225291 { background-position: left 15% bottom 15px , left 15px bottom 15px , right 15px bottom }
bgpos225292 { background-position: left 15% top , left 15px bottom 15px , right 15px bottom }
bgpos225293 { background-position: left 15% top 15% , left 15px bottom 15px , right 15px bottom }
bgpos225294 { background-position: left 15% top 15px , left 15px bottom 15px , right 15px bottom }
bgpos225295 { background-position: left 15% center , left 15px bottom 15px , right 15px bottom }
bgpos225296 { background-position: left 15px bottom , left 15px bottom 15px , right 15px bottom }
bgpos225297 { background-position: left 15px bottom 15% , left 15px bottom 15px , right 15px bottom }
bgpos225298 { background-position: left 15px bottom 15px , left 15px bottom 15px , right 15px bottom }
bgpos225299 { background-position: left 15px top , left 15px bottom 15px , right 15px bottom }
bgpos225300 { background-position: left 15px top 15% , left 15px bottom 15px , right 15px bottom }
bgpos225301 { background-position: left 15px top 15px , left 15px bottom 15px , right 15px bottom }
bgpos225302 { background-position: left 15px center , left 15px bottom 15px , right 15px bottom }
bgpos225303 { background-position: left center , left 15px bottom 15px , right 15px bottom }
bgpos225304 { background-position: right bottom , left 15px bottom 15px , right 15px bottom }
bgpos225305 { background-position: right bottom 15% , left 15px bottom 15px , right 15px bottom }
bgpos225306 { background-position: right bottom 15px , left 15px bottom 15px , right 15px bottom }
bgpos225307 { background-position: right top , left 15px bottom 15px , right 15px bottom }
bgpos225308 { background-position: right top 15% , left 15px bottom 15px , right 15px bottom }
bgpos225309 { background-position: right top 15px , left 15px bottom 15px , right 15px bottom }
bgpos225310 { background-position: right 15% bottom , left 15px bottom 15px , right 15px bottom }
bgpos225311 { background-position: right 15% bottom 15% , left 15px bottom 15px , right 15px bottom }
bgpos225312 { background-position: right 15% bottom 15px , left 15px bottom 15px , right 15px bottom }
bgpos225313 { background-position: right 15% top , left 15px bottom 15px , right 15px bottom }
bgpos225314 { background-position: right 15% top 15% , left 15px bottom 15px , right 15px bottom }
bgpos225315 { background-position: right 15% top 15px , left 15px bottom 15px , right 15px bottom }
bgpos225316 { background-position: right 15% center , left 15px bottom 15px , right 15px bottom }
bgpos225317 { background-position: right 15px bottom , left 15px bottom 15px , right 15px bottom }
bgpos225318 { background-position: right 15px bottom 15% , left 15px bottom 15px , right 15px bottom }
bgpos225319 { background-position: right 15px bottom 15px , left 15px bottom 15px , right 15px bottom }
bgpos225320 { background-position: right 15px top , left 15px bottom 15px , right 15px bottom }
bgpos225321 { background-position: right 15px top 15% , left 15px bottom 15px , right 15px bottom }
bgpos225322 { background-position: right 15px top 15px , left 15px bottom 15px , right 15px bottom }
bgpos225323 { background-position: right 15px center , left 15px bottom 15px , right 15px bottom }
bgpos225324 { background-position: right center , left 15px bottom 15px , right 15px bottom }
bgpos225325 { background-position: 100px , left 15px bottom 15px , right 15px bottom }
bgpos225326 { background-position: 100px 10% , left 15px bottom 15px , right 15px bottom }
bgpos225327 { background-position: 100px 100px , left 15px bottom 15px , right 15px bottom }
bgpos225328 { background-position: 100px bottom , left 15px bottom 15px , right 15px bottom }
bgpos225329 { background-position: 100px center , left 15px bottom 15px , right 15px bottom }
bgpos225330 { background-position: 100px top , left 15px bottom 15px , right 15px bottom }
bgpos225331 { background-position: 50% , left 15px bottom 15px , right 15px bottom }
bgpos225332 { background-position: 50% 10% , left 15px bottom 15px , right 15px bottom }
bgpos225333 { background-position: 50% 100px , left 15px bottom 15px , right 15px bottom }
bgpos225334 { background-position: 50% bottom , left 15px bottom 15px , right 15px bottom }
bgpos225335 { background-position: 50% center , left 15px bottom 15px , right 15px bottom }
bgpos225336 { background-position: 50% top , left 15px bottom 15px , right 15px bottom }
bgpos225337 { background-position: bottom, left 15px bottom 15px , right 15px bottom }
bgpos225338 { background-position: center , left 15px bottom 15px , right 15px bottom }
bgpos225339 { background-position: center bottom , left 15px bottom 15px , right 15px bottom }
bgpos225340 { background-position: center bottom 15% , left 15px bottom 15px , right 15px bottom }
bgpos225341 { background-position: center bottom 15px , left 15px bottom 15px , right 15px bottom }
bgpos225342 { background-position: center top , left 15px bottom 15px , right 15px bottom }
bgpos225343 { background-position: center top 15% , left 15px bottom 15px , right 15px bottom }
bgpos225344 { background-position: center top 15px , left 15px bottom 15px , right 15px bottom }
bgpos225345 { background-position: center 10% , left 15px bottom 15px , right 15px bottom }
bgpos225346 { background-position: center 100px , left 15px bottom 15px , right 15px bottom }
bgpos225347 { background-position: center bottom , left 15px bottom 15px , right 15px bottom }
bgpos225348 { background-position: center center , left 15px bottom 15px , right 15px bottom }
bgpos225349 { background-position: center top , left 15px bottom 15px , right 15px bottom }
bgpos225350 { background-position: left , left 15px bottom 15px , right 15px bottom }
bgpos225351 { background-position: left 10% , left 15px bottom 15px , right 15px bottom }
bgpos225352 { background-position: left 100px , left 15px bottom 15px , right 15px bottom }
bgpos225353 { background-position: left bottom , left 15px bottom 15px , right 15px bottom }
bgpos225354 { background-position: left center , left 15px bottom 15px , right 15px bottom }
bgpos225355 { background-position: left top , left 15px bottom 15px , right 15px bottom }
bgpos225356 { background-position: right , left 15px bottom 15px , right 15px bottom }
bgpos225357 { background-position: right 10% , left 15px bottom 15px , right 15px bottom }
bgpos225358 { background-position: right 100px , left 15px bottom 15px , right 15px bottom }
bgpos225359 { background-position: right bottom , left 15px bottom 15px , right 15px bottom }
bgpos225360 { background-position: right center , left 15px bottom 15px , right 15px bottom }
bgpos225361 { background-position: right top , left 15px bottom 15px , right 15px bottom }
bgpos225362 { background-position: top , left 15px bottom 15px , right 15px bottom }
bgpos225363 { background-position: left bottom , left 15px top , right 15px bottom }
bgpos225364 { background-position: left bottom 15% , left 15px top , right 15px bottom }
bgpos225365 { background-position: left bottom 15px , left 15px top , right 15px bottom }
bgpos225366 { background-position: left top , left 15px top , right 15px bottom }
bgpos225367 { background-position: left top 15% , left 15px top , right 15px bottom }
bgpos225368 { background-position: left top 15px , left 15px top , right 15px bottom }
bgpos225369 { background-position: left 15% bottom , left 15px top , right 15px bottom }
bgpos225370 { background-position: left 15% bottom 15% , left 15px top , right 15px bottom }
bgpos225371 { background-position: left 15% bottom 15px , left 15px top , right 15px bottom }
bgpos225372 { background-position: left 15% top , left 15px top , right 15px bottom }
bgpos225373 { background-position: left 15% top 15% , left 15px top , right 15px bottom }
bgpos225374 { background-position: left 15% top 15px , left 15px top , right 15px bottom }
bgpos225375 { background-position: left 15% center , left 15px top , right 15px bottom }
bgpos225376 { background-position: left 15px bottom , left 15px top , right 15px bottom }
bgpos225377 { background-position: left 15px bottom 15% , left 15px top , right 15px bottom }
bgpos225378 { background-position: left 15px bottom 15px , left 15px top , right 15px bottom }
bgpos225379 { background-position: left 15px top , left 15px top , right 15px bottom }
bgpos225380 { background-position: left 15px top 15% , left 15px top , right 15px bottom }
bgpos225381 { background-position: left 15px top 15px , left 15px top , right 15px bottom }
bgpos225382 { background-position: left 15px center , left 15px top , right 15px bottom }
bgpos225383 { background-position: left center , left 15px top , right 15px bottom }
bgpos225384 { background-position: right bottom , left 15px top , right 15px bottom }
bgpos225385 { background-position: right bottom 15% , left 15px top , right 15px bottom }
bgpos225386 { background-position: right bottom 15px , left 15px top , right 15px bottom }
bgpos225387 { background-position: right top , left 15px top , right 15px bottom }
bgpos225388 { background-position: right top 15% , left 15px top , right 15px bottom }
bgpos225389 { background-position: right top 15px , left 15px top , right 15px bottom }
bgpos225390 { background-position: right 15% bottom , left 15px top , right 15px bottom }
bgpos225391 { background-position: right 15% bottom 15% , left 15px top , right 15px bottom }
bgpos225392 { background-position: right 15% bottom 15px , left 15px top , right 15px bottom }
bgpos225393 { background-position: right 15% top , left 15px top , right 15px bottom }
bgpos225394 { background-position: right 15% top 15% , left 15px top , right 15px bottom }
bgpos225395 { background-position: right 15% top 15px , left 15px top , right 15px bottom }
bgpos225396 { background-position: right 15% center , left 15px top , right 15px bottom }
bgpos225397 { background-position: right 15px bottom , left 15px top , right 15px bottom }
bgpos225398 { background-position: right 15px bottom 15% , left 15px top , right 15px bottom }
bgpos225399 { background-position: right 15px bottom 15px , left 15px top , right 15px bottom }
bgpos225400 { background-position: right 15px top , left 15px top , right 15px bottom }
bgpos225401 { background-position: right 15px top 15% , left 15px top , right 15px bottom }
bgpos225402 { background-position: right 15px top 15px , left 15px top , right 15px bottom }
bgpos225403 { background-position: right 15px center , left 15px top , right 15px bottom }
bgpos225404 { background-position: right center , left 15px top , right 15px bottom }
bgpos225405 { background-position: 100px , left 15px top , right 15px bottom }
bgpos225406 { background-position: 100px 10% , left 15px top , right 15px bottom }
bgpos225407 { background-position: 100px 100px , left 15px top , right 15px bottom }
bgpos225408 { background-position: 100px bottom , left 15px top , right 15px bottom }
bgpos225409 { background-position: 100px center , left 15px top , right 15px bottom }
bgpos225410 { background-position: 100px top , left 15px top , right 15px bottom }
bgpos225411 { background-position: 50% , left 15px top , right 15px bottom }
bgpos225412 { background-position: 50% 10% , left 15px top , right 15px bottom }
bgpos225413 { background-position: 50% 100px , left 15px top , right 15px bottom }
bgpos225414 { background-position: 50% bottom , left 15px top , right 15px bottom }
bgpos225415 { background-position: 50% center , left 15px top , right 15px bottom }
bgpos225416 { background-position: 50% top , left 15px top , right 15px bottom }
bgpos225417 { background-position: bottom, left 15px top , right 15px bottom }
bgpos225418 { background-position: center , left 15px top , right 15px bottom }
bgpos225419 { background-position: center bottom , left 15px top , right 15px bottom }
bgpos225420 { background-position: center bottom 15% , left 15px top , right 15px bottom }
bgpos225421 { background-position: center bottom 15px , left 15px top , right 15px bottom }
bgpos225422 { background-position: center top , left 15px top , right 15px bottom }
bgpos225423 { background-position: center top 15% , left 15px top , right 15px bottom }
bgpos225424 { background-position: center top 15px , left 15px top , right 15px bottom }
bgpos225425 { background-position: center 10% , left 15px top , right 15px bottom }
bgpos225426 { background-position: center 100px , left 15px top , right 15px bottom }
bgpos225427 { background-position: center bottom , left 15px top , right 15px bottom }
bgpos225428 { background-position: center center , left 15px top , right 15px bottom }
bgpos225429 { background-position: center top , left 15px top , right 15px bottom }
bgpos225430 { background-position: left , left 15px top , right 15px bottom }
bgpos225431 { background-position: left 10% , left 15px top , right 15px bottom }
bgpos225432 { background-position: left 100px , left 15px top , right 15px bottom }
bgpos225433 { background-position: left bottom , left 15px top , right 15px bottom }
bgpos225434 { background-position: left center , left 15px top , right 15px bottom }
bgpos225435 { background-position: left top , left 15px top , right 15px bottom }
bgpos225436 { background-position: right , left 15px top , right 15px bottom }
bgpos225437 { background-position: right 10% , left 15px top , right 15px bottom }
bgpos225438 { background-position: right 100px , left 15px top , right 15px bottom }
bgpos225439 { background-position: right bottom , left 15px top , right 15px bottom }
bgpos225440 { background-position: right center , left 15px top , right 15px bottom }
bgpos225441 { background-position: right top , left 15px top , right 15px bottom }
bgpos225442 { background-position: top , left 15px top , right 15px bottom }
bgpos225443 { background-position: left bottom , left 15px top 15% , right 15px bottom }
bgpos225444 { background-position: left bottom 15% , left 15px top 15% , right 15px bottom }
bgpos225445 { background-position: left bottom 15px , left 15px top 15% , right 15px bottom }
bgpos225446 { background-position: left top , left 15px top 15% , right 15px bottom }
bgpos225447 { background-position: left top 15% , left 15px top 15% , right 15px bottom }
bgpos225448 { background-position: left top 15px , left 15px top 15% , right 15px bottom }
bgpos225449 { background-position: left 15% bottom , left 15px top 15% , right 15px bottom }
bgpos225450 { background-position: left 15% bottom 15% , left 15px top 15% , right 15px bottom }
bgpos225451 { background-position: left 15% bottom 15px , left 15px top 15% , right 15px bottom }
bgpos225452 { background-position: left 15% top , left 15px top 15% , right 15px bottom }
bgpos225453 { background-position: left 15% top 15% , left 15px top 15% , right 15px bottom }
bgpos225454 { background-position: left 15% top 15px , left 15px top 15% , right 15px bottom }
bgpos225455 { background-position: left 15% center , left 15px top 15% , right 15px bottom }
bgpos225456 { background-position: left 15px bottom , left 15px top 15% , right 15px bottom }
bgpos225457 { background-position: left 15px bottom 15% , left 15px top 15% , right 15px bottom }
bgpos225458 { background-position: left 15px bottom 15px , left 15px top 15% , right 15px bottom }
bgpos225459 { background-position: left 15px top , left 15px top 15% , right 15px bottom }
bgpos225460 { background-position: left 15px top 15% , left 15px top 15% , right 15px bottom }
bgpos225461 { background-position: left 15px top 15px , left 15px top 15% , right 15px bottom }
bgpos225462 { background-position: left 15px center , left 15px top 15% , right 15px bottom }
bgpos225463 { background-position: left center , left 15px top 15% , right 15px bottom }
bgpos225464 { background-position: right bottom , left 15px top 15% , right 15px bottom }
bgpos225465 { background-position: right bottom 15% , left 15px top 15% , right 15px bottom }
bgpos225466 { background-position: right bottom 15px , left 15px top 15% , right 15px bottom }
bgpos225467 { background-position: right top , left 15px top 15% , right 15px bottom }
bgpos225468 { background-position: right top 15% , left 15px top 15% , right 15px bottom }
bgpos225469 { background-position: right top 15px , left 15px top 15% , right 15px bottom }
bgpos225470 { background-position: right 15% bottom , left 15px top 15% , right 15px bottom }
bgpos225471 { background-position: right 15% bottom 15% , left 15px top 15% , right 15px bottom }
bgpos225472 { background-position: right 15% bottom 15px , left 15px top 15% , right 15px bottom }
bgpos225473 { background-position: right 15% top , left 15px top 15% , right 15px bottom }
bgpos225474 { background-position: right 15% top 15% , left 15px top 15% , right 15px bottom }
bgpos225475 { background-position: right 15% top 15px , left 15px top 15% , right 15px bottom }
bgpos225476 { background-position: right 15% center , left 15px top 15% , right 15px bottom }
bgpos225477 { background-position: right 15px bottom , left 15px top 15% , right 15px bottom }
bgpos225478 { background-position: right 15px bottom 15% , left 15px top 15% , right 15px bottom }
bgpos225479 { background-position: right 15px bottom 15px , left 15px top 15% , right 15px bottom }
bgpos225480 { background-position: right 15px top , left 15px top 15% , right 15px bottom }
bgpos225481 { background-position: right 15px top 15% , left 15px top 15% , right 15px bottom }
bgpos225482 { background-position: right 15px top 15px , left 15px top 15% , right 15px bottom }
bgpos225483 { background-position: right 15px center , left 15px top 15% , right 15px bottom }
bgpos225484 { background-position: right center , left 15px top 15% , right 15px bottom }
bgpos225485 { background-position: 100px , left 15px top 15% , right 15px bottom }
bgpos225486 { background-position: 100px 10% , left 15px top 15% , right 15px bottom }
bgpos225487 { background-position: 100px 100px , left 15px top 15% , right 15px bottom }
bgpos225488 { background-position: 100px bottom , left 15px top 15% , right 15px bottom }
bgpos225489 { background-position: 100px center , left 15px top 15% , right 15px bottom }
bgpos225490 { background-position: 100px top , left 15px top 15% , right 15px bottom }
bgpos225491 { background-position: 50% , left 15px top 15% , right 15px bottom }
bgpos225492 { background-position: 50% 10% , left 15px top 15% , right 15px bottom }
bgpos225493 { background-position: 50% 100px , left 15px top 15% , right 15px bottom }
bgpos225494 { background-position: 50% bottom , left 15px top 15% , right 15px bottom }
bgpos225495 { background-position: 50% center , left 15px top 15% , right 15px bottom }
bgpos225496 { background-position: 50% top , left 15px top 15% , right 15px bottom }
bgpos225497 { background-position: bottom, left 15px top 15% , right 15px bottom }
bgpos225498 { background-position: center , left 15px top 15% , right 15px bottom }
bgpos225499 { background-position: center bottom , left 15px top 15% , right 15px bottom }
bgpos225500 { background-position: center bottom 15% , left 15px top 15% , right 15px bottom }
bgpos225501 { background-position: center bottom 15px , left 15px top 15% , right 15px bottom }
bgpos225502 { background-position: center top , left 15px top 15% , right 15px bottom }
bgpos225503 { background-position: center top 15% , left 15px top 15% , right 15px bottom }
bgpos225504 { background-position: center top 15px , left 15px top 15% , right 15px bottom }
bgpos225505 { background-position: center 10% , left 15px top 15% , right 15px bottom }
bgpos225506 { background-position: center 100px , left 15px top 15% , right 15px bottom }
bgpos225507 { background-position: center bottom , left 15px top 15% , right 15px bottom }
bgpos225508 { background-position: center center , left 15px top 15% , right 15px bottom }
bgpos225509 { background-position: center top , left 15px top 15% , right 15px bottom }
bgpos225510 { background-position: left , left 15px top 15% , right 15px bottom }
bgpos225511 { background-position: left 10% , left 15px top 15% , right 15px bottom }
bgpos225512 { background-position: left 100px , left 15px top 15% , right 15px bottom }
bgpos225513 { background-position: left bottom , left 15px top 15% , right 15px bottom }
bgpos225514 { background-position: left center , left 15px top 15% , right 15px bottom }
bgpos225515 { background-position: left top , left 15px top 15% , right 15px bottom }
bgpos225516 { background-position: right , left 15px top 15% , right 15px bottom }
bgpos225517 { background-position: right 10% , left 15px top 15% , right 15px bottom }
bgpos225518 { background-position: right 100px , left 15px top 15% , right 15px bottom }
bgpos225519 { background-position: right bottom , left 15px top 15% , right 15px bottom }
bgpos225520 { background-position: right center , left 15px top 15% , right 15px bottom }
bgpos225521 { background-position: right top , left 15px top 15% , right 15px bottom }
bgpos225522 { background-position: top , left 15px top 15% , right 15px bottom }
bgpos225523 { background-position: left bottom , left 15px top 15px , right 15px bottom }
bgpos225524 { background-position: left bottom 15% , left 15px top 15px , right 15px bottom }
bgpos225525 { background-position: left bottom 15px , left 15px top 15px , right 15px bottom }
bgpos225526 { background-position: left top , left 15px top 15px , right 15px bottom }
bgpos225527 { background-position: left top 15% , left 15px top 15px , right 15px bottom }
bgpos225528 { background-position: left top 15px , left 15px top 15px , right 15px bottom }
bgpos225529 { background-position: left 15% bottom , left 15px top 15px , right 15px bottom }
bgpos225530 { background-position: left 15% bottom 15% , left 15px top 15px , right 15px bottom }
bgpos225531 { background-position: left 15% bottom 15px , left 15px top 15px , right 15px bottom }
bgpos225532 { background-position: left 15% top , left 15px top 15px , right 15px bottom }
bgpos225533 { background-position: left 15% top 15% , left 15px top 15px , right 15px bottom }
bgpos225534 { background-position: left 15% top 15px , left 15px top 15px , right 15px bottom }
bgpos225535 { background-position: left 15% center , left 15px top 15px , right 15px bottom }
bgpos225536 { background-position: left 15px bottom , left 15px top 15px , right 15px bottom }
bgpos225537 { background-position: left 15px bottom 15% , left 15px top 15px , right 15px bottom }
bgpos225538 { background-position: left 15px bottom 15px , left 15px top 15px , right 15px bottom }
bgpos225539 { background-position: left 15px top , left 15px top 15px , right 15px bottom }
bgpos225540 { background-position: left 15px top 15% , left 15px top 15px , right 15px bottom }
bgpos225541 { background-position: left 15px top 15px , left 15px top 15px , right 15px bottom }
bgpos225542 { background-position: left 15px center , left 15px top 15px , right 15px bottom }
bgpos225543 { background-position: left center , left 15px top 15px , right 15px bottom }
bgpos225544 { background-position: right bottom , left 15px top 15px , right 15px bottom }
bgpos225545 { background-position: right bottom 15% , left 15px top 15px , right 15px bottom }
bgpos225546 { background-position: right bottom 15px , left 15px top 15px , right 15px bottom }
bgpos225547 { background-position: right top , left 15px top 15px , right 15px bottom }
bgpos225548 { background-position: right top 15% , left 15px top 15px , right 15px bottom }
bgpos225549 { background-position: right top 15px , left 15px top 15px , right 15px bottom }
bgpos225550 { background-position: right 15% bottom , left 15px top 15px , right 15px bottom }
bgpos225551 { background-position: right 15% bottom 15% , left 15px top 15px , right 15px bottom }
bgpos225552 { background-position: right 15% bottom 15px , left 15px top 15px , right 15px bottom }
bgpos225553 { background-position: right 15% top , left 15px top 15px , right 15px bottom }
bgpos225554 { background-position: right 15% top 15% , left 15px top 15px , right 15px bottom }
bgpos225555 { background-position: right 15% top 15px , left 15px top 15px , right 15px bottom }
bgpos225556 { background-position: right 15% center , left 15px top 15px , right 15px bottom }
bgpos225557 { background-position: right 15px bottom , left 15px top 15px , right 15px bottom }
bgpos225558 { background-position: right 15px bottom 15% , left 15px top 15px , right 15px bottom }
bgpos225559 { background-position: right 15px bottom 15px , left 15px top 15px , right 15px bottom }
bgpos225560 { background-position: right 15px top , left 15px top 15px , right 15px bottom }
bgpos225561 { background-position: right 15px top 15% , left 15px top 15px , right 15px bottom }
bgpos225562 { background-position: right 15px top 15px , left 15px top 15px , right 15px bottom }
bgpos225563 { background-position: right 15px center , left 15px top 15px , right 15px bottom }
bgpos225564 { background-position: right center , left 15px top 15px , right 15px bottom }
bgpos225565 { background-position: 100px , left 15px top 15px , right 15px bottom }
bgpos225566 { background-position: 100px 10% , left 15px top 15px , right 15px bottom }
bgpos225567 { background-position: 100px 100px , left 15px top 15px , right 15px bottom }
bgpos225568 { background-position: 100px bottom , left 15px top 15px , right 15px bottom }
bgpos225569 { background-position: 100px center , left 15px top 15px , right 15px bottom }
bgpos225570 { background-position: 100px top , left 15px top 15px , right 15px bottom }
bgpos225571 { background-position: 50% , left 15px top 15px , right 15px bottom }
bgpos225572 { background-position: 50% 10% , left 15px top 15px , right 15px bottom }
bgpos225573 { background-position: 50% 100px , left 15px top 15px , right 15px bottom }
bgpos225574 { background-position: 50% bottom , left 15px top 15px , right 15px bottom }
bgpos225575 { background-position: 50% center , left 15px top 15px , right 15px bottom }
bgpos225576 { background-position: 50% top , left 15px top 15px , right 15px bottom }
bgpos225577 { background-position: bottom, left 15px top 15px , right 15px bottom }
bgpos225578 { background-position: center , left 15px top 15px , right 15px bottom }
bgpos225579 { background-position: center bottom , left 15px top 15px , right 15px bottom }
bgpos225580 { background-position: center bottom 15% , left 15px top 15px , right 15px bottom }
bgpos225581 { background-position: center bottom 15px , left 15px top 15px , right 15px bottom }
bgpos225582 { background-position: center top , left 15px top 15px , right 15px bottom }
bgpos225583 { background-position: center top 15% , left 15px top 15px , right 15px bottom }
bgpos225584 { background-position: center top 15px , left 15px top 15px , right 15px bottom }
bgpos225585 { background-position: center 10% , left 15px top 15px , right 15px bottom }
bgpos225586 { background-position: center 100px , left 15px top 15px , right 15px bottom }
bgpos225587 { background-position: center bottom , left 15px top 15px , right 15px bottom }
bgpos225588 { background-position: center center , left 15px top 15px , right 15px bottom }
bgpos225589 { background-position: center top , left 15px top 15px , right 15px bottom }
bgpos225590 { background-position: left , left 15px top 15px , right 15px bottom }
bgpos225591 { background-position: left 10% , left 15px top 15px , right 15px bottom }
bgpos225592 { background-position: left 100px , left 15px top 15px , right 15px bottom }
bgpos225593 { background-position: left bottom , left 15px top 15px , right 15px bottom }
bgpos225594 { background-position: left center , left 15px top 15px , right 15px bottom }
bgpos225595 { background-position: left top , left 15px top 15px , right 15px bottom }
bgpos225596 { background-position: right , left 15px top 15px , right 15px bottom }
bgpos225597 { background-position: right 10% , left 15px top 15px , right 15px bottom }
bgpos225598 { background-position: right 100px , left 15px top 15px , right 15px bottom }
bgpos225599 { background-position: right bottom , left 15px top 15px , right 15px bottom }
bgpos225600 { background-position: right center , left 15px top 15px , right 15px bottom }
bgpos225601 { background-position: right top , left 15px top 15px , right 15px bottom }
bgpos225602 { background-position: top , left 15px top 15px , right 15px bottom }
bgpos225603 { background-position: left bottom , left 15px center , right 15px bottom }
bgpos225604 { background-position: left bottom 15% , left 15px center , right 15px bottom }
bgpos225605 { background-position: left bottom 15px , left 15px center , right 15px bottom }
bgpos225606 { background-position: left top , left 15px center , right 15px bottom }
bgpos225607 { background-position: left top 15% , left 15px center , right 15px bottom }
bgpos225608 { background-position: left top 15px , left 15px center , right 15px bottom }
bgpos225609 { background-position: left 15% bottom , left 15px center , right 15px bottom }
bgpos225610 { background-position: left 15% bottom 15% , left 15px center , right 15px bottom }
bgpos225611 { background-position: left 15% bottom 15px , left 15px center , right 15px bottom }
bgpos225612 { background-position: left 15% top , left 15px center , right 15px bottom }
bgpos225613 { background-position: left 15% top 15% , left 15px center , right 15px bottom }
bgpos225614 { background-position: left 15% top 15px , left 15px center , right 15px bottom }
bgpos225615 { background-position: left 15% center , left 15px center , right 15px bottom }
bgpos225616 { background-position: left 15px bottom , left 15px center , right 15px bottom }
bgpos225617 { background-position: left 15px bottom 15% , left 15px center , right 15px bottom }
bgpos225618 { background-position: left 15px bottom 15px , left 15px center , right 15px bottom }
bgpos225619 { background-position: left 15px top , left 15px center , right 15px bottom }
bgpos225620 { background-position: left 15px top 15% , left 15px center , right 15px bottom }
bgpos225621 { background-position: left 15px top 15px , left 15px center , right 15px bottom }
bgpos225622 { background-position: left 15px center , left 15px center , right 15px bottom }
bgpos225623 { background-position: left center , left 15px center , right 15px bottom }
bgpos225624 { background-position: right bottom , left 15px center , right 15px bottom }
bgpos225625 { background-position: right bottom 15% , left 15px center , right 15px bottom }
bgpos225626 { background-position: right bottom 15px , left 15px center , right 15px bottom }
bgpos225627 { background-position: right top , left 15px center , right 15px bottom }
bgpos225628 { background-position: right top 15% , left 15px center , right 15px bottom }
bgpos225629 { background-position: right top 15px , left 15px center , right 15px bottom }
bgpos225630 { background-position: right 15% bottom , left 15px center , right 15px bottom }
bgpos225631 { background-position: right 15% bottom 15% , left 15px center , right 15px bottom }
bgpos225632 { background-position: right 15% bottom 15px , left 15px center , right 15px bottom }
bgpos225633 { background-position: right 15% top , left 15px center , right 15px bottom }
bgpos225634 { background-position: right 15% top 15% , left 15px center , right 15px bottom }
bgpos225635 { background-position: right 15% top 15px , left 15px center , right 15px bottom }
bgpos225636 { background-position: right 15% center , left 15px center , right 15px bottom }
bgpos225637 { background-position: right 15px bottom , left 15px center , right 15px bottom }
bgpos225638 { background-position: right 15px bottom 15% , left 15px center , right 15px bottom }
bgpos225639 { background-position: right 15px bottom 15px , left 15px center , right 15px bottom }
bgpos225640 { background-position: right 15px top , left 15px center , right 15px bottom }
bgpos225641 { background-position: right 15px top 15% , left 15px center , right 15px bottom }
bgpos225642 { background-position: right 15px top 15px , left 15px center , right 15px bottom }
bgpos225643 { background-position: right 15px center , left 15px center , right 15px bottom }
bgpos225644 { background-position: right center , left 15px center , right 15px bottom }
bgpos225645 { background-position: 100px , left 15px center , right 15px bottom }
bgpos225646 { background-position: 100px 10% , left 15px center , right 15px bottom }
bgpos225647 { background-position: 100px 100px , left 15px center , right 15px bottom }
bgpos225648 { background-position: 100px bottom , left 15px center , right 15px bottom }
bgpos225649 { background-position: 100px center , left 15px center , right 15px bottom }
bgpos225650 { background-position: 100px top , left 15px center , right 15px bottom }
bgpos225651 { background-position: 50% , left 15px center , right 15px bottom }
bgpos225652 { background-position: 50% 10% , left 15px center , right 15px bottom }
bgpos225653 { background-position: 50% 100px , left 15px center , right 15px bottom }
bgpos225654 { background-position: 50% bottom , left 15px center , right 15px bottom }
bgpos225655 { background-position: 50% center , left 15px center , right 15px bottom }
bgpos225656 { background-position: 50% top , left 15px center , right 15px bottom }
bgpos225657 { background-position: bottom, left 15px center , right 15px bottom }
bgpos225658 { background-position: center , left 15px center , right 15px bottom }
bgpos225659 { background-position: center bottom , left 15px center , right 15px bottom }
bgpos225660 { background-position: center bottom 15% , left 15px center , right 15px bottom }
bgpos225661 { background-position: center bottom 15px , left 15px center , right 15px bottom }
bgpos225662 { background-position: center top , left 15px center , right 15px bottom }
bgpos225663 { background-position: center top 15% , left 15px center , right 15px bottom }
bgpos225664 { background-position: center top 15px , left 15px center , right 15px bottom }
bgpos225665 { background-position: center 10% , left 15px center , right 15px bottom }
bgpos225666 { background-position: center 100px , left 15px center , right 15px bottom }
bgpos225667 { background-position: center bottom , left 15px center , right 15px bottom }
bgpos225668 { background-position: center center , left 15px center , right 15px bottom }
bgpos225669 { background-position: center top , left 15px center , right 15px bottom }
bgpos225670 { background-position: left , left 15px center , right 15px bottom }
bgpos225671 { background-position: left 10% , left 15px center , right 15px bottom }
bgpos225672 { background-position: left 100px , left 15px center , right 15px bottom }
bgpos225673 { background-position: left bottom , left 15px center , right 15px bottom }
bgpos225674 { background-position: left center , left 15px center , right 15px bottom }
bgpos225675 { background-position: left top , left 15px center , right 15px bottom }
bgpos225676 { background-position: right , left 15px center , right 15px bottom }
bgpos225677 { background-position: right 10% , left 15px center , right 15px bottom }
bgpos225678 { background-position: right 100px , left 15px center , right 15px bottom }
bgpos225679 { background-position: right bottom , left 15px center , right 15px bottom }
bgpos225680 { background-position: right center , left 15px center , right 15px bottom }
bgpos225681 { background-position: right top , left 15px center , right 15px bottom }
bgpos225682 { background-position: top , left 15px center , right 15px bottom }
bgpos225683 { background-position: left bottom , left center , right 15px bottom }
bgpos225684 { background-position: left bottom 15% , left center , right 15px bottom }
bgpos225685 { background-position: left bottom 15px , left center , right 15px bottom }
bgpos225686 { background-position: left top , left center , right 15px bottom }
bgpos225687 { background-position: left top 15% , left center , right 15px bottom }
bgpos225688 { background-position: left top 15px , left center , right 15px bottom }
bgpos225689 { background-position: left 15% bottom , left center , right 15px bottom }
bgpos225690 { background-position: left 15% bottom 15% , left center , right 15px bottom }
bgpos225691 { background-position: left 15% bottom 15px , left center , right 15px bottom }
bgpos225692 { background-position: left 15% top , left center , right 15px bottom }
bgpos225693 { background-position: left 15% top 15% , left center , right 15px bottom }
bgpos225694 { background-position: left 15% top 15px , left center , right 15px bottom }
bgpos225695 { background-position: left 15% center , left center , right 15px bottom }
bgpos225696 { background-position: left 15px bottom , left center , right 15px bottom }
bgpos225697 { background-position: left 15px bottom 15% , left center , right 15px bottom }
bgpos225698 { background-position: left 15px bottom 15px , left center , right 15px bottom }
bgpos225699 { background-position: left 15px top , left center , right 15px bottom }
bgpos225700 { background-position: left 15px top 15% , left center , right 15px bottom }
bgpos225701 { background-position: left 15px top 15px , left center , right 15px bottom }
bgpos225702 { background-position: left 15px center , left center , right 15px bottom }
bgpos225703 { background-position: left center , left center , right 15px bottom }
bgpos225704 { background-position: right bottom , left center , right 15px bottom }
bgpos225705 { background-position: right bottom 15% , left center , right 15px bottom }
bgpos225706 { background-position: right bottom 15px , left center , right 15px bottom }
bgpos225707 { background-position: right top , left center , right 15px bottom }
bgpos225708 { background-position: right top 15% , left center , right 15px bottom }
bgpos225709 { background-position: right top 15px , left center , right 15px bottom }
bgpos225710 { background-position: right 15% bottom , left center , right 15px bottom }
bgpos225711 { background-position: right 15% bottom 15% , left center , right 15px bottom }
bgpos225712 { background-position: right 15% bottom 15px , left center , right 15px bottom }
bgpos225713 { background-position: right 15% top , left center , right 15px bottom }
bgpos225714 { background-position: right 15% top 15% , left center , right 15px bottom }
bgpos225715 { background-position: right 15% top 15px , left center , right 15px bottom }
bgpos225716 { background-position: right 15% center , left center , right 15px bottom }
bgpos225717 { background-position: right 15px bottom , left center , right 15px bottom }
bgpos225718 { background-position: right 15px bottom 15% , left center , right 15px bottom }
bgpos225719 { background-position: right 15px bottom 15px , left center , right 15px bottom }
bgpos225720 { background-position: right 15px top , left center , right 15px bottom }
bgpos225721 { background-position: right 15px top 15% , left center , right 15px bottom }
bgpos225722 { background-position: right 15px top 15px , left center , right 15px bottom }
bgpos225723 { background-position: right 15px center , left center , right 15px bottom }
bgpos225724 { background-position: right center , left center , right 15px bottom }
bgpos225725 { background-position: 100px , left center , right 15px bottom }
bgpos225726 { background-position: 100px 10% , left center , right 15px bottom }
bgpos225727 { background-position: 100px 100px , left center , right 15px bottom }
bgpos225728 { background-position: 100px bottom , left center , right 15px bottom }
bgpos225729 { background-position: 100px center , left center , right 15px bottom }
bgpos225730 { background-position: 100px top , left center , right 15px bottom }
bgpos225731 { background-position: 50% , left center , right 15px bottom }
bgpos225732 { background-position: 50% 10% , left center , right 15px bottom }
bgpos225733 { background-position: 50% 100px , left center , right 15px bottom }
bgpos225734 { background-position: 50% bottom , left center , right 15px bottom }
bgpos225735 { background-position: 50% center , left center , right 15px bottom }
bgpos225736 { background-position: 50% top , left center , right 15px bottom }
bgpos225737 { background-position: bottom, left center , right 15px bottom }
bgpos225738 { background-position: center , left center , right 15px bottom }
bgpos225739 { background-position: center bottom , left center , right 15px bottom }
bgpos225740 { background-position: center bottom 15% , left center , right 15px bottom }
bgpos225741 { background-position: center bottom 15px , left center , right 15px bottom }
bgpos225742 { background-position: center top , left center , right 15px bottom }
bgpos225743 { background-position: center top 15% , left center , right 15px bottom }
bgpos225744 { background-position: center top 15px , left center , right 15px bottom }
bgpos225745 { background-position: center 10% , left center , right 15px bottom }
bgpos225746 { background-position: center 100px , left center , right 15px bottom }
bgpos225747 { background-position: center bottom , left center , right 15px bottom }
bgpos225748 { background-position: center center , left center , right 15px bottom }
bgpos225749 { background-position: center top , left center , right 15px bottom }
bgpos225750 { background-position: left , left center , right 15px bottom }
bgpos225751 { background-position: left 10% , left center , right 15px bottom }
bgpos225752 { background-position: left 100px , left center , right 15px bottom }
bgpos225753 { background-position: left bottom , left center , right 15px bottom }
bgpos225754 { background-position: left center , left center , right 15px bottom }
bgpos225755 { background-position: left top , left center , right 15px bottom }
bgpos225756 { background-position: right , left center , right 15px bottom }
bgpos225757 { background-position: right 10% , left center , right 15px bottom }
bgpos225758 { background-position: right 100px , left center , right 15px bottom }
bgpos225759 { background-position: right bottom , left center , right 15px bottom }
bgpos225760 { background-position: right center , left center , right 15px bottom }
bgpos225761 { background-position: right top , left center , right 15px bottom }
bgpos225762 { background-position: top , left center , right 15px bottom }
bgpos225763 { background-position: left bottom , right bottom , right 15px bottom }
bgpos225764 { background-position: left bottom 15% , right bottom , right 15px bottom }
bgpos225765 { background-position: left bottom 15px , right bottom , right 15px bottom }
bgpos225766 { background-position: left top , right bottom , right 15px bottom }
bgpos225767 { background-position: left top 15% , right bottom , right 15px bottom }
bgpos225768 { background-position: left top 15px , right bottom , right 15px bottom }
bgpos225769 { background-position: left 15% bottom , right bottom , right 15px bottom }
bgpos225770 { background-position: left 15% bottom 15% , right bottom , right 15px bottom }
bgpos225771 { background-position: left 15% bottom 15px , right bottom , right 15px bottom }
bgpos225772 { background-position: left 15% top , right bottom , right 15px bottom }
bgpos225773 { background-position: left 15% top 15% , right bottom , right 15px bottom }
bgpos225774 { background-position: left 15% top 15px , right bottom , right 15px bottom }
bgpos225775 { background-position: left 15% center , right bottom , right 15px bottom }
bgpos225776 { background-position: left 15px bottom , right bottom , right 15px bottom }
bgpos225777 { background-position: left 15px bottom 15% , right bottom , right 15px bottom }
bgpos225778 { background-position: left 15px bottom 15px , right bottom , right 15px bottom }
bgpos225779 { background-position: left 15px top , right bottom , right 15px bottom }
bgpos225780 { background-position: left 15px top 15% , right bottom , right 15px bottom }
bgpos225781 { background-position: left 15px top 15px , right bottom , right 15px bottom }
bgpos225782 { background-position: left 15px center , right bottom , right 15px bottom }
bgpos225783 { background-position: left center , right bottom , right 15px bottom }
bgpos225784 { background-position: right bottom , right bottom , right 15px bottom }
bgpos225785 { background-position: right bottom 15% , right bottom , right 15px bottom }
bgpos225786 { background-position: right bottom 15px , right bottom , right 15px bottom }
bgpos225787 { background-position: right top , right bottom , right 15px bottom }
bgpos225788 { background-position: right top 15% , right bottom , right 15px bottom }
bgpos225789 { background-position: right top 15px , right bottom , right 15px bottom }
bgpos225790 { background-position: right 15% bottom , right bottom , right 15px bottom }
bgpos225791 { background-position: right 15% bottom 15% , right bottom , right 15px bottom }
bgpos225792 { background-position: right 15% bottom 15px , right bottom , right 15px bottom }
bgpos225793 { background-position: right 15% top , right bottom , right 15px bottom }
bgpos225794 { background-position: right 15% top 15% , right bottom , right 15px bottom }
bgpos225795 { background-position: right 15% top 15px , right bottom , right 15px bottom }
bgpos225796 { background-position: right 15% center , right bottom , right 15px bottom }
bgpos225797 { background-position: right 15px bottom , right bottom , right 15px bottom }
bgpos225798 { background-position: right 15px bottom 15% , right bottom , right 15px bottom }
bgpos225799 { background-position: right 15px bottom 15px , right bottom , right 15px bottom }
bgpos225800 { background-position: right 15px top , right bottom , right 15px bottom }
bgpos225801 { background-position: right 15px top 15% , right bottom , right 15px bottom }
bgpos225802 { background-position: right 15px top 15px , right bottom , right 15px bottom }
bgpos225803 { background-position: right 15px center , right bottom , right 15px bottom }
bgpos225804 { background-position: right center , right bottom , right 15px bottom }
bgpos225805 { background-position: 100px , right bottom , right 15px bottom }
bgpos225806 { background-position: 100px 10% , right bottom , right 15px bottom }
bgpos225807 { background-position: 100px 100px , right bottom , right 15px bottom }
bgpos225808 { background-position: 100px bottom , right bottom , right 15px bottom }
bgpos225809 { background-position: 100px center , right bottom , right 15px bottom }
bgpos225810 { background-position: 100px top , right bottom , right 15px bottom }
bgpos225811 { background-position: 50% , right bottom , right 15px bottom }
bgpos225812 { background-position: 50% 10% , right bottom , right 15px bottom }
bgpos225813 { background-position: 50% 100px , right bottom , right 15px bottom }
bgpos225814 { background-position: 50% bottom , right bottom , right 15px bottom }
bgpos225815 { background-position: 50% center , right bottom , right 15px bottom }
bgpos225816 { background-position: 50% top , right bottom , right 15px bottom }
bgpos225817 { background-position: bottom, right bottom , right 15px bottom }
bgpos225818 { background-position: center , right bottom , right 15px bottom }
bgpos225819 { background-position: center bottom , right bottom , right 15px bottom }
bgpos225820 { background-position: center bottom 15% , right bottom , right 15px bottom }
bgpos225821 { background-position: center bottom 15px , right bottom , right 15px bottom }
bgpos225822 { background-position: center top , right bottom , right 15px bottom }
bgpos225823 { background-position: center top 15% , right bottom , right 15px bottom }
bgpos225824 { background-position: center top 15px , right bottom , right 15px bottom }
bgpos225825 { background-position: center 10% , right bottom , right 15px bottom }
bgpos225826 { background-position: center 100px , right bottom , right 15px bottom }
bgpos225827 { background-position: center bottom , right bottom , right 15px bottom }
bgpos225828 { background-position: center center , right bottom , right 15px bottom }
bgpos225829 { background-position: center top , right bottom , right 15px bottom }
bgpos225830 { background-position: left , right bottom , right 15px bottom }
bgpos225831 { background-position: left 10% , right bottom , right 15px bottom }
bgpos225832 { background-position: left 100px , right bottom , right 15px bottom }
bgpos225833 { background-position: left bottom , right bottom , right 15px bottom }
bgpos225834 { background-position: left center , right bottom , right 15px bottom }
bgpos225835 { background-position: left top , right bottom , right 15px bottom }
bgpos225836 { background-position: right , right bottom , right 15px bottom }
bgpos225837 { background-position: right 10% , right bottom , right 15px bottom }
bgpos225838 { background-position: right 100px , right bottom , right 15px bottom }
bgpos225839 { background-position: right bottom , right bottom , right 15px bottom }
bgpos225840 { background-position: right center , right bottom , right 15px bottom }
bgpos225841 { background-position: right top , right bottom , right 15px bottom }
bgpos225842 { background-position: top , right bottom , right 15px bottom }
bgpos225843 { background-position: left bottom , right bottom 15% , right 15px bottom }
bgpos225844 { background-position: left bottom 15% , right bottom 15% , right 15px bottom }
bgpos225845 { background-position: left bottom 15px , right bottom 15% , right 15px bottom }
bgpos225846 { background-position: left top , right bottom 15% , right 15px bottom }
bgpos225847 { background-position: left top 15% , right bottom 15% , right 15px bottom }
bgpos225848 { background-position: left top 15px , right bottom 15% , right 15px bottom }
bgpos225849 { background-position: left 15% bottom , right bottom 15% , right 15px bottom }
bgpos225850 { background-position: left 15% bottom 15% , right bottom 15% , right 15px bottom }
bgpos225851 { background-position: left 15% bottom 15px , right bottom 15% , right 15px bottom }
bgpos225852 { background-position: left 15% top , right bottom 15% , right 15px bottom }
bgpos225853 { background-position: left 15% top 15% , right bottom 15% , right 15px bottom }
bgpos225854 { background-position: left 15% top 15px , right bottom 15% , right 15px bottom }
bgpos225855 { background-position: left 15% center , right bottom 15% , right 15px bottom }
bgpos225856 { background-position: left 15px bottom , right bottom 15% , right 15px bottom }
bgpos225857 { background-position: left 15px bottom 15% , right bottom 15% , right 15px bottom }
bgpos225858 { background-position: left 15px bottom 15px , right bottom 15% , right 15px bottom }
bgpos225859 { background-position: left 15px top , right bottom 15% , right 15px bottom }
bgpos225860 { background-position: left 15px top 15% , right bottom 15% , right 15px bottom }
bgpos225861 { background-position: left 15px top 15px , right bottom 15% , right 15px bottom }
bgpos225862 { background-position: left 15px center , right bottom 15% , right 15px bottom }
bgpos225863 { background-position: left center , right bottom 15% , right 15px bottom }
bgpos225864 { background-position: right bottom , right bottom 15% , right 15px bottom }
bgpos225865 { background-position: right bottom 15% , right bottom 15% , right 15px bottom }
bgpos225866 { background-position: right bottom 15px , right bottom 15% , right 15px bottom }
bgpos225867 { background-position: right top , right bottom 15% , right 15px bottom }
bgpos225868 { background-position: right top 15% , right bottom 15% , right 15px bottom }
bgpos225869 { background-position: right top 15px , right bottom 15% , right 15px bottom }
bgpos225870 { background-position: right 15% bottom , right bottom 15% , right 15px bottom }
bgpos225871 { background-position: right 15% bottom 15% , right bottom 15% , right 15px bottom }
bgpos225872 { background-position: right 15% bottom 15px , right bottom 15% , right 15px bottom }
bgpos225873 { background-position: right 15% top , right bottom 15% , right 15px bottom }
bgpos225874 { background-position: right 15% top 15% , right bottom 15% , right 15px bottom }
bgpos225875 { background-position: right 15% top 15px , right bottom 15% , right 15px bottom }
bgpos225876 { background-position: right 15% center , right bottom 15% , right 15px bottom }
bgpos225877 { background-position: right 15px bottom , right bottom 15% , right 15px bottom }
bgpos225878 { background-position: right 15px bottom 15% , right bottom 15% , right 15px bottom }
bgpos225879 { background-position: right 15px bottom 15px , right bottom 15% , right 15px bottom }
bgpos225880 { background-position: right 15px top , right bottom 15% , right 15px bottom }
bgpos225881 { background-position: right 15px top 15% , right bottom 15% , right 15px bottom }
bgpos225882 { background-position: right 15px top 15px , right bottom 15% , right 15px bottom }
bgpos225883 { background-position: right 15px center , right bottom 15% , right 15px bottom }
bgpos225884 { background-position: right center , right bottom 15% , right 15px bottom }
bgpos225885 { background-position: 100px , right bottom 15% , right 15px bottom }
bgpos225886 { background-position: 100px 10% , right bottom 15% , right 15px bottom }
bgpos225887 { background-position: 100px 100px , right bottom 15% , right 15px bottom }
bgpos225888 { background-position: 100px bottom , right bottom 15% , right 15px bottom }
bgpos225889 { background-position: 100px center , right bottom 15% , right 15px bottom }
bgpos225890 { background-position: 100px top , right bottom 15% , right 15px bottom }
bgpos225891 { background-position: 50% , right bottom 15% , right 15px bottom }
bgpos225892 { background-position: 50% 10% , right bottom 15% , right 15px bottom }
bgpos225893 { background-position: 50% 100px , right bottom 15% , right 15px bottom }
bgpos225894 { background-position: 50% bottom , right bottom 15% , right 15px bottom }
bgpos225895 { background-position: 50% center , right bottom 15% , right 15px bottom }
bgpos225896 { background-position: 50% top , right bottom 15% , right 15px bottom }
bgpos225897 { background-position: bottom, right bottom 15% , right 15px bottom }
bgpos225898 { background-position: center , right bottom 15% , right 15px bottom }
bgpos225899 { background-position: center bottom , right bottom 15% , right 15px bottom }
bgpos225900 { background-position: center bottom 15% , right bottom 15% , right 15px bottom }
bgpos225901 { background-position: center bottom 15px , right bottom 15% , right 15px bottom }
bgpos225902 { background-position: center top , right bottom 15% , right 15px bottom }
bgpos225903 { background-position: center top 15% , right bottom 15% , right 15px bottom }
bgpos225904 { background-position: center top 15px , right bottom 15% , right 15px bottom }
bgpos225905 { background-position: center 10% , right bottom 15% , right 15px bottom }
bgpos225906 { background-position: center 100px , right bottom 15% , right 15px bottom }
bgpos225907 { background-position: center bottom , right bottom 15% , right 15px bottom }
bgpos225908 { background-position: center center , right bottom 15% , right 15px bottom }
bgpos225909 { background-position: center top , right bottom 15% , right 15px bottom }
bgpos225910 { background-position: left , right bottom 15% , right 15px bottom }
bgpos225911 { background-position: left 10% , right bottom 15% , right 15px bottom }
bgpos225912 { background-position: left 100px , right bottom 15% , right 15px bottom }
bgpos225913 { background-position: left bottom , right bottom 15% , right 15px bottom }
bgpos225914 { background-position: left center , right bottom 15% , right 15px bottom }
bgpos225915 { background-position: left top , right bottom 15% , right 15px bottom }
bgpos225916 { background-position: right , right bottom 15% , right 15px bottom }
bgpos225917 { background-position: right 10% , right bottom 15% , right 15px bottom }
bgpos225918 { background-position: right 100px , right bottom 15% , right 15px bottom }
bgpos225919 { background-position: right bottom , right bottom 15% , right 15px bottom }
bgpos225920 { background-position: right center , right bottom 15% , right 15px bottom }
bgpos225921 { background-position: right top , right bottom 15% , right 15px bottom }
bgpos225922 { background-position: top , right bottom 15% , right 15px bottom }
bgpos225923 { background-position: left bottom , right bottom 15px , right 15px bottom }
bgpos225924 { background-position: left bottom 15% , right bottom 15px , right 15px bottom }
bgpos225925 { background-position: left bottom 15px , right bottom 15px , right 15px bottom }
bgpos225926 { background-position: left top , right bottom 15px , right 15px bottom }
bgpos225927 { background-position: left top 15% , right bottom 15px , right 15px bottom }
bgpos225928 { background-position: left top 15px , right bottom 15px , right 15px bottom }
bgpos225929 { background-position: left 15% bottom , right bottom 15px , right 15px bottom }
bgpos225930 { background-position: left 15% bottom 15% , right bottom 15px , right 15px bottom }
bgpos225931 { background-position: left 15% bottom 15px , right bottom 15px , right 15px bottom }
bgpos225932 { background-position: left 15% top , right bottom 15px , right 15px bottom }
bgpos225933 { background-position: left 15% top 15% , right bottom 15px , right 15px bottom }
bgpos225934 { background-position: left 15% top 15px , right bottom 15px , right 15px bottom }
bgpos225935 { background-position: left 15% center , right bottom 15px , right 15px bottom }
bgpos225936 { background-position: left 15px bottom , right bottom 15px , right 15px bottom }
bgpos225937 { background-position: left 15px bottom 15% , right bottom 15px , right 15px bottom }
bgpos225938 { background-position: left 15px bottom 15px , right bottom 15px , right 15px bottom }
bgpos225939 { background-position: left 15px top , right bottom 15px , right 15px bottom }
bgpos225940 { background-position: left 15px top 15% , right bottom 15px , right 15px bottom }
bgpos225941 { background-position: left 15px top 15px , right bottom 15px , right 15px bottom }
bgpos225942 { background-position: left 15px center , right bottom 15px , right 15px bottom }
bgpos225943 { background-position: left center , right bottom 15px , right 15px bottom }
bgpos225944 { background-position: right bottom , right bottom 15px , right 15px bottom }
bgpos225945 { background-position: right bottom 15% , right bottom 15px , right 15px bottom }
bgpos225946 { background-position: right bottom 15px , right bottom 15px , right 15px bottom }
bgpos225947 { background-position: right top , right bottom 15px , right 15px bottom }
bgpos225948 { background-position: right top 15% , right bottom 15px , right 15px bottom }
bgpos225949 { background-position: right top 15px , right bottom 15px , right 15px bottom }
bgpos225950 { background-position: right 15% bottom , right bottom 15px , right 15px bottom }
bgpos225951 { background-position: right 15% bottom 15% , right bottom 15px , right 15px bottom }
bgpos225952 { background-position: right 15% bottom 15px , right bottom 15px , right 15px bottom }
bgpos225953 { background-position: right 15% top , right bottom 15px , right 15px bottom }
bgpos225954 { background-position: right 15% top 15% , right bottom 15px , right 15px bottom }
bgpos225955 { background-position: right 15% top 15px , right bottom 15px , right 15px bottom }
bgpos225956 { background-position: right 15% center , right bottom 15px , right 15px bottom }
bgpos225957 { background-position: right 15px bottom , right bottom 15px , right 15px bottom }
bgpos225958 { background-position: right 15px bottom 15% , right bottom 15px , right 15px bottom }
bgpos225959 { background-position: right 15px bottom 15px , right bottom 15px , right 15px bottom }
bgpos225960 { background-position: right 15px top , right bottom 15px , right 15px bottom }
bgpos225961 { background-position: right 15px top 15% , right bottom 15px , right 15px bottom }
bgpos225962 { background-position: right 15px top 15px , right bottom 15px , right 15px bottom }
bgpos225963 { background-position: right 15px center , right bottom 15px , right 15px bottom }
bgpos225964 { background-position: right center , right bottom 15px , right 15px bottom }
bgpos225965 { background-position: 100px , right bottom 15px , right 15px bottom }
bgpos225966 { background-position: 100px 10% , right bottom 15px , right 15px bottom }
bgpos225967 { background-position: 100px 100px , right bottom 15px , right 15px bottom }
bgpos225968 { background-position: 100px bottom , right bottom 15px , right 15px bottom }
bgpos225969 { background-position: 100px center , right bottom 15px , right 15px bottom }
bgpos225970 { background-position: 100px top , right bottom 15px , right 15px bottom }
bgpos225971 { background-position: 50% , right bottom 15px , right 15px bottom }
bgpos225972 { background-position: 50% 10% , right bottom 15px , right 15px bottom }
bgpos225973 { background-position: 50% 100px , right bottom 15px , right 15px bottom }
bgpos225974 { background-position: 50% bottom , right bottom 15px , right 15px bottom }
bgpos225975 { background-position: 50% center , right bottom 15px , right 15px bottom }
bgpos225976 { background-position: 50% top , right bottom 15px , right 15px bottom }
bgpos225977 { background-position: bottom, right bottom 15px , right 15px bottom }
bgpos225978 { background-position: center , right bottom 15px , right 15px bottom }
bgpos225979 { background-position: center bottom , right bottom 15px , right 15px bottom }
bgpos225980 { background-position: center bottom 15% , right bottom 15px , right 15px bottom }
bgpos225981 { background-position: center bottom 15px , right bottom 15px , right 15px bottom }
bgpos225982 { background-position: center top , right bottom 15px , right 15px bottom }
bgpos225983 { background-position: center top 15% , right bottom 15px , right 15px bottom }
bgpos225984 { background-position: center top 15px , right bottom 15px , right 15px bottom }
bgpos225985 { background-position: center 10% , right bottom 15px , right 15px bottom }
bgpos225986 { background-position: center 100px , right bottom 15px , right 15px bottom }
bgpos225987 { background-position: center bottom , right bottom 15px , right 15px bottom }
bgpos225988 { background-position: center center , right bottom 15px , right 15px bottom }
bgpos225989 { background-position: center top , right bottom 15px , right 15px bottom }
bgpos225990 { background-position: left , right bottom 15px , right 15px bottom }
bgpos225991 { background-position: left 10% , right bottom 15px , right 15px bottom }
bgpos225992 { background-position: left 100px , right bottom 15px , right 15px bottom }
bgpos225993 { background-position: left bottom , right bottom 15px , right 15px bottom }
bgpos225994 { background-position: left center , right bottom 15px , right 15px bottom }
bgpos225995 { background-position: left top , right bottom 15px , right 15px bottom }
bgpos225996 { background-position: right , right bottom 15px , right 15px bottom }
bgpos225997 { background-position: right 10% , right bottom 15px , right 15px bottom }
bgpos225998 { background-position: right 100px , right bottom 15px , right 15px bottom }
bgpos225999 { background-position: right bottom , right bottom 15px , right 15px bottom }
bgpos226000 { background-position: right center , right bottom 15px , right 15px bottom }
bgpos226001 { background-position: right top , right bottom 15px , right 15px bottom }
bgpos226002 { background-position: top , right bottom 15px , right 15px bottom }
bgpos226003 { background-position: left bottom , right top , right 15px bottom }
bgpos226004 { background-position: left bottom 15% , right top , right 15px bottom }
bgpos226005 { background-position: left bottom 15px , right top , right 15px bottom }
bgpos226006 { background-position: left top , right top , right 15px bottom }
bgpos226007 { background-position: left top 15% , right top , right 15px bottom }
bgpos226008 { background-position: left top 15px , right top , right 15px bottom }
bgpos226009 { background-position: left 15% bottom , right top , right 15px bottom }
bgpos226010 { background-position: left 15% bottom 15% , right top , right 15px bottom }
bgpos226011 { background-position: left 15% bottom 15px , right top , right 15px bottom }
bgpos226012 { background-position: left 15% top , right top , right 15px bottom }
bgpos226013 { background-position: left 15% top 15% , right top , right 15px bottom }
bgpos226014 { background-position: left 15% top 15px , right top , right 15px bottom }
bgpos226015 { background-position: left 15% center , right top , right 15px bottom }
bgpos226016 { background-position: left 15px bottom , right top , right 15px bottom }
bgpos226017 { background-position: left 15px bottom 15% , right top , right 15px bottom }
bgpos226018 { background-position: left 15px bottom 15px , right top , right 15px bottom }
bgpos226019 { background-position: left 15px top , right top , right 15px bottom }
bgpos226020 { background-position: left 15px top 15% , right top , right 15px bottom }
bgpos226021 { background-position: left 15px top 15px , right top , right 15px bottom }
bgpos226022 { background-position: left 15px center , right top , right 15px bottom }
bgpos226023 { background-position: left center , right top , right 15px bottom }
bgpos226024 { background-position: right bottom , right top , right 15px bottom }
bgpos226025 { background-position: right bottom 15% , right top , right 15px bottom }
bgpos226026 { background-position: right bottom 15px , right top , right 15px bottom }
bgpos226027 { background-position: right top , right top , right 15px bottom }
bgpos226028 { background-position: right top 15% , right top , right 15px bottom }
bgpos226029 { background-position: right top 15px , right top , right 15px bottom }
bgpos226030 { background-position: right 15% bottom , right top , right 15px bottom }
bgpos226031 { background-position: right 15% bottom 15% , right top , right 15px bottom }
bgpos226032 { background-position: right 15% bottom 15px , right top , right 15px bottom }
bgpos226033 { background-position: right 15% top , right top , right 15px bottom }
bgpos226034 { background-position: right 15% top 15% , right top , right 15px bottom }
bgpos226035 { background-position: right 15% top 15px , right top , right 15px bottom }
bgpos226036 { background-position: right 15% center , right top , right 15px bottom }
bgpos226037 { background-position: right 15px bottom , right top , right 15px bottom }
bgpos226038 { background-position: right 15px bottom 15% , right top , right 15px bottom }
bgpos226039 { background-position: right 15px bottom 15px , right top , right 15px bottom }
bgpos226040 { background-position: right 15px top , right top , right 15px bottom }
bgpos226041 { background-position: right 15px top 15% , right top , right 15px bottom }
bgpos226042 { background-position: right 15px top 15px , right top , right 15px bottom }
bgpos226043 { background-position: right 15px center , right top , right 15px bottom }
bgpos226044 { background-position: right center , right top , right 15px bottom }
bgpos226045 { background-position: 100px , right top , right 15px bottom }
bgpos226046 { background-position: 100px 10% , right top , right 15px bottom }
bgpos226047 { background-position: 100px 100px , right top , right 15px bottom }
bgpos226048 { background-position: 100px bottom , right top , right 15px bottom }
bgpos226049 { background-position: 100px center , right top , right 15px bottom }
bgpos226050 { background-position: 100px top , right top , right 15px bottom }
bgpos226051 { background-position: 50% , right top , right 15px bottom }
bgpos226052 { background-position: 50% 10% , right top , right 15px bottom }
bgpos226053 { background-position: 50% 100px , right top , right 15px bottom }
bgpos226054 { background-position: 50% bottom , right top , right 15px bottom }
bgpos226055 { background-position: 50% center , right top , right 15px bottom }
bgpos226056 { background-position: 50% top , right top , right 15px bottom }
bgpos226057 { background-position: bottom, right top , right 15px bottom }
bgpos226058 { background-position: center , right top , right 15px bottom }
bgpos226059 { background-position: center bottom , right top , right 15px bottom }
bgpos226060 { background-position: center bottom 15% , right top , right 15px bottom }
bgpos226061 { background-position: center bottom 15px , right top , right 15px bottom }
bgpos226062 { background-position: center top , right top , right 15px bottom }
bgpos226063 { background-position: center top 15% , right top , right 15px bottom }
bgpos226064 { background-position: center top 15px , right top , right 15px bottom }
bgpos226065 { background-position: center 10% , right top , right 15px bottom }
bgpos226066 { background-position: center 100px , right top , right 15px bottom }
bgpos226067 { background-position: center bottom , right top , right 15px bottom }
bgpos226068 { background-position: center center , right top , right 15px bottom }
bgpos226069 { background-position: center top , right top , right 15px bottom }
bgpos226070 { background-position: left , right top , right 15px bottom }
bgpos226071 { background-position: left 10% , right top , right 15px bottom }
bgpos226072 { background-position: left 100px , right top , right 15px bottom }
bgpos226073 { background-position: left bottom , right top , right 15px bottom }
bgpos226074 { background-position: left center , right top , right 15px bottom }
bgpos226075 { background-position: left top , right top , right 15px bottom }
bgpos226076 { background-position: right , right top , right 15px bottom }
bgpos226077 { background-position: right 10% , right top , right 15px bottom }
bgpos226078 { background-position: right 100px , right top , right 15px bottom }
bgpos226079 { background-position: right bottom , right top , right 15px bottom }
bgpos226080 { background-position: right center , right top , right 15px bottom }
bgpos226081 { background-position: right top , right top , right 15px bottom }
bgpos226082 { background-position: top , right top , right 15px bottom }
bgpos226083 { background-position: left bottom , right top 15% , right 15px bottom }
bgpos226084 { background-position: left bottom 15% , right top 15% , right 15px bottom }
bgpos226085 { background-position: left bottom 15px , right top 15% , right 15px bottom }
bgpos226086 { background-position: left top , right top 15% , right 15px bottom }
bgpos226087 { background-position: left top 15% , right top 15% , right 15px bottom }
bgpos226088 { background-position: left top 15px , right top 15% , right 15px bottom }
bgpos226089 { background-position: left 15% bottom , right top 15% , right 15px bottom }
bgpos226090 { background-position: left 15% bottom 15% , right top 15% , right 15px bottom }
bgpos226091 { background-position: left 15% bottom 15px , right top 15% , right 15px bottom }
bgpos226092 { background-position: left 15% top , right top 15% , right 15px bottom }
bgpos226093 { background-position: left 15% top 15% , right top 15% , right 15px bottom }
bgpos226094 { background-position: left 15% top 15px , right top 15% , right 15px bottom }
bgpos226095 { background-position: left 15% center , right top 15% , right 15px bottom }
bgpos226096 { background-position: left 15px bottom , right top 15% , right 15px bottom }
bgpos226097 { background-position: left 15px bottom 15% , right top 15% , right 15px bottom }
bgpos226098 { background-position: left 15px bottom 15px , right top 15% , right 15px bottom }
bgpos226099 { background-position: left 15px top , right top 15% , right 15px bottom }
bgpos226100 { background-position: left 15px top 15% , right top 15% , right 15px bottom }
bgpos226101 { background-position: left 15px top 15px , right top 15% , right 15px bottom }
bgpos226102 { background-position: left 15px center , right top 15% , right 15px bottom }
bgpos226103 { background-position: left center , right top 15% , right 15px bottom }
bgpos226104 { background-position: right bottom , right top 15% , right 15px bottom }
bgpos226105 { background-position: right bottom 15% , right top 15% , right 15px bottom }
bgpos226106 { background-position: right bottom 15px , right top 15% , right 15px bottom }
bgpos226107 { background-position: right top , right top 15% , right 15px bottom }
bgpos226108 { background-position: right top 15% , right top 15% , right 15px bottom }
bgpos226109 { background-position: right top 15px , right top 15% , right 15px bottom }
bgpos226110 { background-position: right 15% bottom , right top 15% , right 15px bottom }
bgpos226111 { background-position: right 15% bottom 15% , right top 15% , right 15px bottom }
bgpos226112 { background-position: right 15% bottom 15px , right top 15% , right 15px bottom }
bgpos226113 { background-position: right 15% top , right top 15% , right 15px bottom }
bgpos226114 { background-position: right 15% top 15% , right top 15% , right 15px bottom }
bgpos226115 { background-position: right 15% top 15px , right top 15% , right 15px bottom }
bgpos226116 { background-position: right 15% center , right top 15% , right 15px bottom }
bgpos226117 { background-position: right 15px bottom , right top 15% , right 15px bottom }
bgpos226118 { background-position: right 15px bottom 15% , right top 15% , right 15px bottom }
bgpos226119 { background-position: right 15px bottom 15px , right top 15% , right 15px bottom }
bgpos226120 { background-position: right 15px top , right top 15% , right 15px bottom }
bgpos226121 { background-position: right 15px top 15% , right top 15% , right 15px bottom }
bgpos226122 { background-position: right 15px top 15px , right top 15% , right 15px bottom }
bgpos226123 { background-position: right 15px center , right top 15% , right 15px bottom }
bgpos226124 { background-position: right center , right top 15% , right 15px bottom }
bgpos226125 { background-position: 100px , right top 15% , right 15px bottom }
bgpos226126 { background-position: 100px 10% , right top 15% , right 15px bottom }
bgpos226127 { background-position: 100px 100px , right top 15% , right 15px bottom }
bgpos226128 { background-position: 100px bottom , right top 15% , right 15px bottom }
bgpos226129 { background-position: 100px center , right top 15% , right 15px bottom }
bgpos226130 { background-position: 100px top , right top 15% , right 15px bottom }
bgpos226131 { background-position: 50% , right top 15% , right 15px bottom }
bgpos226132 { background-position: 50% 10% , right top 15% , right 15px bottom }
bgpos226133 { background-position: 50% 100px , right top 15% , right 15px bottom }
bgpos226134 { background-position: 50% bottom , right top 15% , right 15px bottom }
bgpos226135 { background-position: 50% center , right top 15% , right 15px bottom }
bgpos226136 { background-position: 50% top , right top 15% , right 15px bottom }
bgpos226137 { background-position: bottom, right top 15% , right 15px bottom }
bgpos226138 { background-position: center , right top 15% , right 15px bottom }
bgpos226139 { background-position: center bottom , right top 15% , right 15px bottom }
bgpos226140 { background-position: center bottom 15% , right top 15% , right 15px bottom }
bgpos226141 { background-position: center bottom 15px , right top 15% , right 15px bottom }
bgpos226142 { background-position: center top , right top 15% , right 15px bottom }
bgpos226143 { background-position: center top 15% , right top 15% , right 15px bottom }
bgpos226144 { background-position: center top 15px , right top 15% , right 15px bottom }
bgpos226145 { background-position: center 10% , right top 15% , right 15px bottom }
bgpos226146 { background-position: center 100px , right top 15% , right 15px bottom }
bgpos226147 { background-position: center bottom , right top 15% , right 15px bottom }
bgpos226148 { background-position: center center , right top 15% , right 15px bottom }
bgpos226149 { background-position: center top , right top 15% , right 15px bottom }
bgpos226150 { background-position: left , right top 15% , right 15px bottom }
bgpos226151 { background-position: left 10% , right top 15% , right 15px bottom }
bgpos226152 { background-position: left 100px , right top 15% , right 15px bottom }
bgpos226153 { background-position: left bottom , right top 15% , right 15px bottom }
bgpos226154 { background-position: left center , right top 15% , right 15px bottom }
bgpos226155 { background-position: left top , right top 15% , right 15px bottom }
bgpos226156 { background-position: right , right top 15% , right 15px bottom }
bgpos226157 { background-position: right 10% , right top 15% , right 15px bottom }
bgpos226158 { background-position: right 100px , right top 15% , right 15px bottom }
bgpos226159 { background-position: right bottom , right top 15% , right 15px bottom }
bgpos226160 { background-position: right center , right top 15% , right 15px bottom }
bgpos226161 { background-position: right top , right top 15% , right 15px bottom }
bgpos226162 { background-position: top , right top 15% , right 15px bottom }
bgpos226163 { background-position: left bottom , right top 15px , right 15px bottom }
bgpos226164 { background-position: left bottom 15% , right top 15px , right 15px bottom }
bgpos226165 { background-position: left bottom 15px , right top 15px , right 15px bottom }
bgpos226166 { background-position: left top , right top 15px , right 15px bottom }
bgpos226167 { background-position: left top 15% , right top 15px , right 15px bottom }
bgpos226168 { background-position: left top 15px , right top 15px , right 15px bottom }
bgpos226169 { background-position: left 15% bottom , right top 15px , right 15px bottom }
bgpos226170 { background-position: left 15% bottom 15% , right top 15px , right 15px bottom }
bgpos226171 { background-position: left 15% bottom 15px , right top 15px , right 15px bottom }
bgpos226172 { background-position: left 15% top , right top 15px , right 15px bottom }
bgpos226173 { background-position: left 15% top 15% , right top 15px , right 15px bottom }
bgpos226174 { background-position: left 15% top 15px , right top 15px , right 15px bottom }
bgpos226175 { background-position: left 15% center , right top 15px , right 15px bottom }
bgpos226176 { background-position: left 15px bottom , right top 15px , right 15px bottom }
bgpos226177 { background-position: left 15px bottom 15% , right top 15px , right 15px bottom }
bgpos226178 { background-position: left 15px bottom 15px , right top 15px , right 15px bottom }
bgpos226179 { background-position: left 15px top , right top 15px , right 15px bottom }
bgpos226180 { background-position: left 15px top 15% , right top 15px , right 15px bottom }
bgpos226181 { background-position: left 15px top 15px , right top 15px , right 15px bottom }
bgpos226182 { background-position: left 15px center , right top 15px , right 15px bottom }
bgpos226183 { background-position: left center , right top 15px , right 15px bottom }
bgpos226184 { background-position: right bottom , right top 15px , right 15px bottom }
bgpos226185 { background-position: right bottom 15% , right top 15px , right 15px bottom }
bgpos226186 { background-position: right bottom 15px , right top 15px , right 15px bottom }
bgpos226187 { background-position: right top , right top 15px , right 15px bottom }
bgpos226188 { background-position: right top 15% , right top 15px , right 15px bottom }
bgpos226189 { background-position: right top 15px , right top 15px , right 15px bottom }
bgpos226190 { background-position: right 15% bottom , right top 15px , right 15px bottom }
bgpos226191 { background-position: right 15% bottom 15% , right top 15px , right 15px bottom }
bgpos226192 { background-position: right 15% bottom 15px , right top 15px , right 15px bottom }
bgpos226193 { background-position: right 15% top , right top 15px , right 15px bottom }
bgpos226194 { background-position: right 15% top 15% , right top 15px , right 15px bottom }
bgpos226195 { background-position: right 15% top 15px , right top 15px , right 15px bottom }
bgpos226196 { background-position: right 15% center , right top 15px , right 15px bottom }
bgpos226197 { background-position: right 15px bottom , right top 15px , right 15px bottom }
bgpos226198 { background-position: right 15px bottom 15% , right top 15px , right 15px bottom }
bgpos226199 { background-position: right 15px bottom 15px , right top 15px , right 15px bottom }
bgpos226200 { background-position: right 15px top , right top 15px , right 15px bottom }
bgpos226201 { background-position: right 15px top 15% , right top 15px , right 15px bottom }
bgpos226202 { background-position: right 15px top 15px , right top 15px , right 15px bottom }
bgpos226203 { background-position: right 15px center , right top 15px , right 15px bottom }
bgpos226204 { background-position: right center , right top 15px , right 15px bottom }
bgpos226205 { background-position: 100px , right top 15px , right 15px bottom }
bgpos226206 { background-position: 100px 10% , right top 15px , right 15px bottom }
bgpos226207 { background-position: 100px 100px , right top 15px , right 15px bottom }
bgpos226208 { background-position: 100px bottom , right top 15px , right 15px bottom }
bgpos226209 { background-position: 100px center , right top 15px , right 15px bottom }
bgpos226210 { background-position: 100px top , right top 15px , right 15px bottom }
bgpos226211 { background-position: 50% , right top 15px , right 15px bottom }
bgpos226212 { background-position: 50% 10% , right top 15px , right 15px bottom }
bgpos226213 { background-position: 50% 100px , right top 15px , right 15px bottom }
bgpos226214 { background-position: 50% bottom , right top 15px , right 15px bottom }
bgpos226215 { background-position: 50% center , right top 15px , right 15px bottom }
bgpos226216 { background-position: 50% top , right top 15px , right 15px bottom }
bgpos226217 { background-position: bottom, right top 15px , right 15px bottom }
bgpos226218 { background-position: center , right top 15px , right 15px bottom }
bgpos226219 { background-position: center bottom , right top 15px , right 15px bottom }
bgpos226220 { background-position: center bottom 15% , right top 15px , right 15px bottom }
bgpos226221 { background-position: center bottom 15px , right top 15px , right 15px bottom }
bgpos226222 { background-position: center top , right top 15px , right 15px bottom }
bgpos226223 { background-position: center top 15% , right top 15px , right 15px bottom }
bgpos226224 { background-position: center top 15px , right top 15px , right 15px bottom }
bgpos226225 { background-position: center 10% , right top 15px , right 15px bottom }
bgpos226226 { background-position: center 100px , right top 15px , right 15px bottom }
bgpos226227 { background-position: center bottom , right top 15px , right 15px bottom }
bgpos226228 { background-position: center center , right top 15px , right 15px bottom }
bgpos226229 { background-position: center top , right top 15px , right 15px bottom }
bgpos226230 { background-position: left , right top 15px , right 15px bottom }
bgpos226231 { background-position: left 10% , right top 15px , right 15px bottom }
bgpos226232 { background-position: left 100px , right top 15px , right 15px bottom }
bgpos226233 { background-position: left bottom , right top 15px , right 15px bottom }
bgpos226234 { background-position: left center , right top 15px , right 15px bottom }
bgpos226235 { background-position: left top , right top 15px , right 15px bottom }
bgpos226236 { background-position: right , right top 15px , right 15px bottom }
bgpos226237 { background-position: right 10% , right top 15px , right 15px bottom }
bgpos226238 { background-position: right 100px , right top 15px , right 15px bottom }
bgpos226239 { background-position: right bottom , right top 15px , right 15px bottom }
bgpos226240 { background-position: right center , right top 15px , right 15px bottom }
bgpos226241 { background-position: right top , right top 15px , right 15px bottom }
bgpos226242 { background-position: top , right top 15px , right 15px bottom }
bgpos226243 { background-position: left bottom , right 15% bottom , right 15px bottom }
bgpos226244 { background-position: left bottom 15% , right 15% bottom , right 15px bottom }
bgpos226245 { background-position: left bottom 15px , right 15% bottom , right 15px bottom }
bgpos226246 { background-position: left top , right 15% bottom , right 15px bottom }
bgpos226247 { background-position: left top 15% , right 15% bottom , right 15px bottom }
bgpos226248 { background-position: left top 15px , right 15% bottom , right 15px bottom }
bgpos226249 { background-position: left 15% bottom , right 15% bottom , right 15px bottom }
bgpos226250 { background-position: left 15% bottom 15% , right 15% bottom , right 15px bottom }
bgpos226251 { background-position: left 15% bottom 15px , right 15% bottom , right 15px bottom }
bgpos226252 { background-position: left 15% top , right 15% bottom , right 15px bottom }
bgpos226253 { background-position: left 15% top 15% , right 15% bottom , right 15px bottom }
bgpos226254 { background-position: left 15% top 15px , right 15% bottom , right 15px bottom }
bgpos226255 { background-position: left 15% center , right 15% bottom , right 15px bottom }
bgpos226256 { background-position: left 15px bottom , right 15% bottom , right 15px bottom }
bgpos226257 { background-position: left 15px bottom 15% , right 15% bottom , right 15px bottom }
bgpos226258 { background-position: left 15px bottom 15px , right 15% bottom , right 15px bottom }
bgpos226259 { background-position: left 15px top , right 15% bottom , right 15px bottom }
bgpos226260 { background-position: left 15px top 15% , right 15% bottom , right 15px bottom }
bgpos226261 { background-position: left 15px top 15px , right 15% bottom , right 15px bottom }
bgpos226262 { background-position: left 15px center , right 15% bottom , right 15px bottom }
bgpos226263 { background-position: left center , right 15% bottom , right 15px bottom }
bgpos226264 { background-position: right bottom , right 15% bottom , right 15px bottom }
bgpos226265 { background-position: right bottom 15% , right 15% bottom , right 15px bottom }
bgpos226266 { background-position: right bottom 15px , right 15% bottom , right 15px bottom }
bgpos226267 { background-position: right top , right 15% bottom , right 15px bottom }
bgpos226268 { background-position: right top 15% , right 15% bottom , right 15px bottom }
bgpos226269 { background-position: right top 15px , right 15% bottom , right 15px bottom }
bgpos226270 { background-position: right 15% bottom , right 15% bottom , right 15px bottom }
bgpos226271 { background-position: right 15% bottom 15% , right 15% bottom , right 15px bottom }
bgpos226272 { background-position: right 15% bottom 15px , right 15% bottom , right 15px bottom }
bgpos226273 { background-position: right 15% top , right 15% bottom , right 15px bottom }
bgpos226274 { background-position: right 15% top 15% , right 15% bottom , right 15px bottom }
bgpos226275 { background-position: right 15% top 15px , right 15% bottom , right 15px bottom }
bgpos226276 { background-position: right 15% center , right 15% bottom , right 15px bottom }
bgpos226277 { background-position: right 15px bottom , right 15% bottom , right 15px bottom }
bgpos226278 { background-position: right 15px bottom 15% , right 15% bottom , right 15px bottom }
bgpos226279 { background-position: right 15px bottom 15px , right 15% bottom , right 15px bottom }
bgpos226280 { background-position: right 15px top , right 15% bottom , right 15px bottom }
bgpos226281 { background-position: right 15px top 15% , right 15% bottom , right 15px bottom }
bgpos226282 { background-position: right 15px top 15px , right 15% bottom , right 15px bottom }
bgpos226283 { background-position: right 15px center , right 15% bottom , right 15px bottom }
bgpos226284 { background-position: right center , right 15% bottom , right 15px bottom }
bgpos226285 { background-position: 100px , right 15% bottom , right 15px bottom }
bgpos226286 { background-position: 100px 10% , right 15% bottom , right 15px bottom }
bgpos226287 { background-position: 100px 100px , right 15% bottom , right 15px bottom }
bgpos226288 { background-position: 100px bottom , right 15% bottom , right 15px bottom }
bgpos226289 { background-position: 100px center , right 15% bottom , right 15px bottom }
bgpos226290 { background-position: 100px top , right 15% bottom , right 15px bottom }
bgpos226291 { background-position: 50% , right 15% bottom , right 15px bottom }
bgpos226292 { background-position: 50% 10% , right 15% bottom , right 15px bottom }
bgpos226293 { background-position: 50% 100px , right 15% bottom , right 15px bottom }
bgpos226294 { background-position: 50% bottom , right 15% bottom , right 15px bottom }
bgpos226295 { background-position: 50% center , right 15% bottom , right 15px bottom }
bgpos226296 { background-position: 50% top , right 15% bottom , right 15px bottom }
bgpos226297 { background-position: bottom, right 15% bottom , right 15px bottom }
bgpos226298 { background-position: center , right 15% bottom , right 15px bottom }
bgpos226299 { background-position: center bottom , right 15% bottom , right 15px bottom }
bgpos226300 { background-position: center bottom 15% , right 15% bottom , right 15px bottom }
bgpos226301 { background-position: center bottom 15px , right 15% bottom , right 15px bottom }
bgpos226302 { background-position: center top , right 15% bottom , right 15px bottom }
bgpos226303 { background-position: center top 15% , right 15% bottom , right 15px bottom }
bgpos226304 { background-position: center top 15px , right 15% bottom , right 15px bottom }
bgpos226305 { background-position: center 10% , right 15% bottom , right 15px bottom }
bgpos226306 { background-position: center 100px , right 15% bottom , right 15px bottom }
bgpos226307 { background-position: center bottom , right 15% bottom , right 15px bottom }
bgpos226308 { background-position: center center , right 15% bottom , right 15px bottom }
bgpos226309 { background-position: center top , right 15% bottom , right 15px bottom }
bgpos226310 { background-position: left , right 15% bottom , right 15px bottom }
bgpos226311 { background-position: left 10% , right 15% bottom , right 15px bottom }
bgpos226312 { background-position: left 100px , right 15% bottom , right 15px bottom }
bgpos226313 { background-position: left bottom , right 15% bottom , right 15px bottom }
bgpos226314 { background-position: left center , right 15% bottom , right 15px bottom }
bgpos226315 { background-position: left top , right 15% bottom , right 15px bottom }
bgpos226316 { background-position: right , right 15% bottom , right 15px bottom }
bgpos226317 { background-position: right 10% , right 15% bottom , right 15px bottom }
bgpos226318 { background-position: right 100px , right 15% bottom , right 15px bottom }
bgpos226319 { background-position: right bottom , right 15% bottom , right 15px bottom }
bgpos226320 { background-position: right center , right 15% bottom , right 15px bottom }
bgpos226321 { background-position: right top , right 15% bottom , right 15px bottom }
bgpos226322 { background-position: top , right 15% bottom , right 15px bottom }
bgpos226323 { background-position: left bottom , right 15% bottom 15% , right 15px bottom }
bgpos226324 { background-position: left bottom 15% , right 15% bottom 15% , right 15px bottom }
bgpos226325 { background-position: left bottom 15px , right 15% bottom 15% , right 15px bottom }
bgpos226326 { background-position: left top , right 15% bottom 15% , right 15px bottom }
bgpos226327 { background-position: left top 15% , right 15% bottom 15% , right 15px bottom }
bgpos226328 { background-position: left top 15px , right 15% bottom 15% , right 15px bottom }
bgpos226329 { background-position: left 15% bottom , right 15% bottom 15% , right 15px bottom }
bgpos226330 { background-position: left 15% bottom 15% , right 15% bottom 15% , right 15px bottom }
bgpos226331 { background-position: left 15% bottom 15px , right 15% bottom 15% , right 15px bottom }
bgpos226332 { background-position: left 15% top , right 15% bottom 15% , right 15px bottom }
bgpos226333 { background-position: left 15% top 15% , right 15% bottom 15% , right 15px bottom }
bgpos226334 { background-position: left 15% top 15px , right 15% bottom 15% , right 15px bottom }
bgpos226335 { background-position: left 15% center , right 15% bottom 15% , right 15px bottom }
bgpos226336 { background-position: left 15px bottom , right 15% bottom 15% , right 15px bottom }
bgpos226337 { background-position: left 15px bottom 15% , right 15% bottom 15% , right 15px bottom }
bgpos226338 { background-position: left 15px bottom 15px , right 15% bottom 15% , right 15px bottom }
bgpos226339 { background-position: left 15px top , right 15% bottom 15% , right 15px bottom }
bgpos226340 { background-position: left 15px top 15% , right 15% bottom 15% , right 15px bottom }
bgpos226341 { background-position: left 15px top 15px , right 15% bottom 15% , right 15px bottom }
bgpos226342 { background-position: left 15px center , right 15% bottom 15% , right 15px bottom }
bgpos226343 { background-position: left center , right 15% bottom 15% , right 15px bottom }
bgpos226344 { background-position: right bottom , right 15% bottom 15% , right 15px bottom }
bgpos226345 { background-position: right bottom 15% , right 15% bottom 15% , right 15px bottom }
bgpos226346 { background-position: right bottom 15px , right 15% bottom 15% , right 15px bottom }
bgpos226347 { background-position: right top , right 15% bottom 15% , right 15px bottom }
bgpos226348 { background-position: right top 15% , right 15% bottom 15% , right 15px bottom }
bgpos226349 { background-position: right top 15px , right 15% bottom 15% , right 15px bottom }
bgpos226350 { background-position: right 15% bottom , right 15% bottom 15% , right 15px bottom }
bgpos226351 { background-position: right 15% bottom 15% , right 15% bottom 15% , right 15px bottom }
bgpos226352 { background-position: right 15% bottom 15px , right 15% bottom 15% , right 15px bottom }
bgpos226353 { background-position: right 15% top , right 15% bottom 15% , right 15px bottom }
bgpos226354 { background-position: right 15% top 15% , right 15% bottom 15% , right 15px bottom }
bgpos226355 { background-position: right 15% top 15px , right 15% bottom 15% , right 15px bottom }
bgpos226356 { background-position: right 15% center , right 15% bottom 15% , right 15px bottom }
bgpos226357 { background-position: right 15px bottom , right 15% bottom 15% , right 15px bottom }
bgpos226358 { background-position: right 15px bottom 15% , right 15% bottom 15% , right 15px bottom }
bgpos226359 { background-position: right 15px bottom 15px , right 15% bottom 15% , right 15px bottom }
bgpos226360 { background-position: right 15px top , right 15% bottom 15% , right 15px bottom }
bgpos226361 { background-position: right 15px top 15% , right 15% bottom 15% , right 15px bottom }
bgpos226362 { background-position: right 15px top 15px , right 15% bottom 15% , right 15px bottom }
bgpos226363 { background-position: right 15px center , right 15% bottom 15% , right 15px bottom }
bgpos226364 { background-position: right center , right 15% bottom 15% , right 15px bottom }
bgpos226365 { background-position: 100px , right 15% bottom 15% , right 15px bottom }
bgpos226366 { background-position: 100px 10% , right 15% bottom 15% , right 15px bottom }
bgpos226367 { background-position: 100px 100px , right 15% bottom 15% , right 15px bottom }
bgpos226368 { background-position: 100px bottom , right 15% bottom 15% , right 15px bottom }
bgpos226369 { background-position: 100px center , right 15% bottom 15% , right 15px bottom }
bgpos226370 { background-position: 100px top , right 15% bottom 15% , right 15px bottom }
bgpos226371 { background-position: 50% , right 15% bottom 15% , right 15px bottom }
bgpos226372 { background-position: 50% 10% , right 15% bottom 15% , right 15px bottom }
bgpos226373 { background-position: 50% 100px , right 15% bottom 15% , right 15px bottom }
bgpos226374 { background-position: 50% bottom , right 15% bottom 15% , right 15px bottom }
bgpos226375 { background-position: 50% center , right 15% bottom 15% , right 15px bottom }
bgpos226376 { background-position: 50% top , right 15% bottom 15% , right 15px bottom }
bgpos226377 { background-position: bottom, right 15% bottom 15% , right 15px bottom }
bgpos226378 { background-position: center , right 15% bottom 15% , right 15px bottom }
bgpos226379 { background-position: center bottom , right 15% bottom 15% , right 15px bottom }
bgpos226380 { background-position: center bottom 15% , right 15% bottom 15% , right 15px bottom }
bgpos226381 { background-position: center bottom 15px , right 15% bottom 15% , right 15px bottom }
bgpos226382 { background-position: center top , right 15% bottom 15% , right 15px bottom }
bgpos226383 { background-position: center top 15% , right 15% bottom 15% , right 15px bottom }
bgpos226384 { background-position: center top 15px , right 15% bottom 15% , right 15px bottom }
bgpos226385 { background-position: center 10% , right 15% bottom 15% , right 15px bottom }
bgpos226386 { background-position: center 100px , right 15% bottom 15% , right 15px bottom }
bgpos226387 { background-position: center bottom , right 15% bottom 15% , right 15px bottom }
bgpos226388 { background-position: center center , right 15% bottom 15% , right 15px bottom }
bgpos226389 { background-position: center top , right 15% bottom 15% , right 15px bottom }
bgpos226390 { background-position: left , right 15% bottom 15% , right 15px bottom }
bgpos226391 { background-position: left 10% , right 15% bottom 15% , right 15px bottom }
bgpos226392 { background-position: left 100px , right 15% bottom 15% , right 15px bottom }
bgpos226393 { background-position: left bottom , right 15% bottom 15% , right 15px bottom }
bgpos226394 { background-position: left center , right 15% bottom 15% , right 15px bottom }
bgpos226395 { background-position: left top , right 15% bottom 15% , right 15px bottom }
bgpos226396 { background-position: right , right 15% bottom 15% , right 15px bottom }
bgpos226397 { background-position: right 10% , right 15% bottom 15% , right 15px bottom }
bgpos226398 { background-position: right 100px , right 15% bottom 15% , right 15px bottom }
bgpos226399 { background-position: right bottom , right 15% bottom 15% , right 15px bottom }
bgpos226400 { background-position: right center , right 15% bottom 15% , right 15px bottom }
bgpos226401 { background-position: right top , right 15% bottom 15% , right 15px bottom }
bgpos226402 { background-position: top , right 15% bottom 15% , right 15px bottom }
bgpos226403 { background-position: left bottom , right 15% bottom 15px , right 15px bottom }
bgpos226404 { background-position: left bottom 15% , right 15% bottom 15px , right 15px bottom }
bgpos226405 { background-position: left bottom 15px , right 15% bottom 15px , right 15px bottom }
bgpos226406 { background-position: left top , right 15% bottom 15px , right 15px bottom }
bgpos226407 { background-position: left top 15% , right 15% bottom 15px , right 15px bottom }
bgpos226408 { background-position: left top 15px , right 15% bottom 15px , right 15px bottom }
bgpos226409 { background-position: left 15% bottom , right 15% bottom 15px , right 15px bottom }
bgpos226410 { background-position: left 15% bottom 15% , right 15% bottom 15px , right 15px bottom }
bgpos226411 { background-position: left 15% bottom 15px , right 15% bottom 15px , right 15px bottom }
bgpos226412 { background-position: left 15% top , right 15% bottom 15px , right 15px bottom }
bgpos226413 { background-position: left 15% top 15% , right 15% bottom 15px , right 15px bottom }
bgpos226414 { background-position: left 15% top 15px , right 15% bottom 15px , right 15px bottom }
bgpos226415 { background-position: left 15% center , right 15% bottom 15px , right 15px bottom }
bgpos226416 { background-position: left 15px bottom , right 15% bottom 15px , right 15px bottom }
bgpos226417 { background-position: left 15px bottom 15% , right 15% bottom 15px , right 15px bottom }
bgpos226418 { background-position: left 15px bottom 15px , right 15% bottom 15px , right 15px bottom }
bgpos226419 { background-position: left 15px top , right 15% bottom 15px , right 15px bottom }
bgpos226420 { background-position: left 15px top 15% , right 15% bottom 15px , right 15px bottom }
bgpos226421 { background-position: left 15px top 15px , right 15% bottom 15px , right 15px bottom }
bgpos226422 { background-position: left 15px center , right 15% bottom 15px , right 15px bottom }
bgpos226423 { background-position: left center , right 15% bottom 15px , right 15px bottom }
bgpos226424 { background-position: right bottom , right 15% bottom 15px , right 15px bottom }
bgpos226425 { background-position: right bottom 15% , right 15% bottom 15px , right 15px bottom }
bgpos226426 { background-position: right bottom 15px , right 15% bottom 15px , right 15px bottom }
bgpos226427 { background-position: right top , right 15% bottom 15px , right 15px bottom }
bgpos226428 { background-position: right top 15% , right 15% bottom 15px , right 15px bottom }
bgpos226429 { background-position: right top 15px , right 15% bottom 15px , right 15px bottom }
bgpos226430 { background-position: right 15% bottom , right 15% bottom 15px , right 15px bottom }
bgpos226431 { background-position: right 15% bottom 15% , right 15% bottom 15px , right 15px bottom }
bgpos226432 { background-position: right 15% bottom 15px , right 15% bottom 15px , right 15px bottom }
bgpos226433 { background-position: right 15% top , right 15% bottom 15px , right 15px bottom }
bgpos226434 { background-position: right 15% top 15% , right 15% bottom 15px , right 15px bottom }
bgpos226435 { background-position: right 15% top 15px , right 15% bottom 15px , right 15px bottom }
bgpos226436 { background-position: right 15% center , right 15% bottom 15px , right 15px bottom }
bgpos226437 { background-position: right 15px bottom , right 15% bottom 15px , right 15px bottom }
bgpos226438 { background-position: right 15px bottom 15% , right 15% bottom 15px , right 15px bottom }
bgpos226439 { background-position: right 15px bottom 15px , right 15% bottom 15px , right 15px bottom }
bgpos226440 { background-position: right 15px top , right 15% bottom 15px , right 15px bottom }
bgpos226441 { background-position: right 15px top 15% , right 15% bottom 15px , right 15px bottom }
bgpos226442 { background-position: right 15px top 15px , right 15% bottom 15px , right 15px bottom }
bgpos226443 { background-position: right 15px center , right 15% bottom 15px , right 15px bottom }
bgpos226444 { background-position: right center , right 15% bottom 15px , right 15px bottom }
bgpos226445 { background-position: 100px , right 15% bottom 15px , right 15px bottom }
bgpos226446 { background-position: 100px 10% , right 15% bottom 15px , right 15px bottom }
bgpos226447 { background-position: 100px 100px , right 15% bottom 15px , right 15px bottom }
bgpos226448 { background-position: 100px bottom , right 15% bottom 15px , right 15px bottom }
bgpos226449 { background-position: 100px center , right 15% bottom 15px , right 15px bottom }
bgpos226450 { background-position: 100px top , right 15% bottom 15px , right 15px bottom }
bgpos226451 { background-position: 50% , right 15% bottom 15px , right 15px bottom }
bgpos226452 { background-position: 50% 10% , right 15% bottom 15px , right 15px bottom }
bgpos226453 { background-position: 50% 100px , right 15% bottom 15px , right 15px bottom }
bgpos226454 { background-position: 50% bottom , right 15% bottom 15px , right 15px bottom }
bgpos226455 { background-position: 50% center , right 15% bottom 15px , right 15px bottom }
bgpos226456 { background-position: 50% top , right 15% bottom 15px , right 15px bottom }
bgpos226457 { background-position: bottom, right 15% bottom 15px , right 15px bottom }
bgpos226458 { background-position: center , right 15% bottom 15px , right 15px bottom }
bgpos226459 { background-position: center bottom , right 15% bottom 15px , right 15px bottom }
bgpos226460 { background-position: center bottom 15% , right 15% bottom 15px , right 15px bottom }
bgpos226461 { background-position: center bottom 15px , right 15% bottom 15px , right 15px bottom }
bgpos226462 { background-position: center top , right 15% bottom 15px , right 15px bottom }
bgpos226463 { background-position: center top 15% , right 15% bottom 15px , right 15px bottom }
bgpos226464 { background-position: center top 15px , right 15% bottom 15px , right 15px bottom }
bgpos226465 { background-position: center 10% , right 15% bottom 15px , right 15px bottom }
bgpos226466 { background-position: center 100px , right 15% bottom 15px , right 15px bottom }
bgpos226467 { background-position: center bottom , right 15% bottom 15px , right 15px bottom }
bgpos226468 { background-position: center center , right 15% bottom 15px , right 15px bottom }
bgpos226469 { background-position: center top , right 15% bottom 15px , right 15px bottom }
bgpos226470 { background-position: left , right 15% bottom 15px , right 15px bottom }
bgpos226471 { background-position: left 10% , right 15% bottom 15px , right 15px bottom }
bgpos226472 { background-position: left 100px , right 15% bottom 15px , right 15px bottom }
bgpos226473 { background-position: left bottom , right 15% bottom 15px , right 15px bottom }
bgpos226474 { background-position: left center , right 15% bottom 15px , right 15px bottom }
bgpos226475 { background-position: left top , right 15% bottom 15px , right 15px bottom }
bgpos226476 { background-position: right , right 15% bottom 15px , right 15px bottom }
bgpos226477 { background-position: right 10% , right 15% bottom 15px , right 15px bottom }
bgpos226478 { background-position: right 100px , right 15% bottom 15px , right 15px bottom }
bgpos226479 { background-position: right bottom , right 15% bottom 15px , right 15px bottom }
bgpos226480 { background-position: right center , right 15% bottom 15px , right 15px bottom }
bgpos226481 { background-position: right top , right 15% bottom 15px , right 15px bottom }
bgpos226482 { background-position: top , right 15% bottom 15px , right 15px bottom }
bgpos226483 { background-position: left bottom , right 15% top , right 15px bottom }
bgpos226484 { background-position: left bottom 15% , right 15% top , right 15px bottom }
bgpos226485 { background-position: left bottom 15px , right 15% top , right 15px bottom }
bgpos226486 { background-position: left top , right 15% top , right 15px bottom }
bgpos226487 { background-position: left top 15% , right 15% top , right 15px bottom }
bgpos226488 { background-position: left top 15px , right 15% top , right 15px bottom }
bgpos226489 { background-position: left 15% bottom , right 15% top , right 15px bottom }
bgpos226490 { background-position: left 15% bottom 15% , right 15% top , right 15px bottom }
bgpos226491 { background-position: left 15% bottom 15px , right 15% top , right 15px bottom }
bgpos226492 { background-position: left 15% top , right 15% top , right 15px bottom }
bgpos226493 { background-position: left 15% top 15% , right 15% top , right 15px bottom }
bgpos226494 { background-position: left 15% top 15px , right 15% top , right 15px bottom }
bgpos226495 { background-position: left 15% center , right 15% top , right 15px bottom }
bgpos226496 { background-position: left 15px bottom , right 15% top , right 15px bottom }
bgpos226497 { background-position: left 15px bottom 15% , right 15% top , right 15px bottom }
bgpos226498 { background-position: left 15px bottom 15px , right 15% top , right 15px bottom }
bgpos226499 { background-position: left 15px top , right 15% top , right 15px bottom }
bgpos226500 { background-position: left 15px top 15% , right 15% top , right 15px bottom }
bgpos226501 { background-position: left 15px top 15px , right 15% top , right 15px bottom }
bgpos226502 { background-position: left 15px center , right 15% top , right 15px bottom }
bgpos226503 { background-position: left center , right 15% top , right 15px bottom }
bgpos226504 { background-position: right bottom , right 15% top , right 15px bottom }
bgpos226505 { background-position: right bottom 15% , right 15% top , right 15px bottom }
bgpos226506 { background-position: right bottom 15px , right 15% top , right 15px bottom }
bgpos226507 { background-position: right top , right 15% top , right 15px bottom }
bgpos226508 { background-position: right top 15% , right 15% top , right 15px bottom }
bgpos226509 { background-position: right top 15px , right 15% top , right 15px bottom }
bgpos226510 { background-position: right 15% bottom , right 15% top , right 15px bottom }
bgpos226511 { background-position: right 15% bottom 15% , right 15% top , right 15px bottom }
bgpos226512 { background-position: right 15% bottom 15px , right 15% top , right 15px bottom }
bgpos226513 { background-position: right 15% top , right 15% top , right 15px bottom }
bgpos226514 { background-position: right 15% top 15% , right 15% top , right 15px bottom }
bgpos226515 { background-position: right 15% top 15px , right 15% top , right 15px bottom }
bgpos226516 { background-position: right 15% center , right 15% top , right 15px bottom }
bgpos226517 { background-position: right 15px bottom , right 15% top , right 15px bottom }
bgpos226518 { background-position: right 15px bottom 15% , right 15% top , right 15px bottom }
bgpos226519 { background-position: right 15px bottom 15px , right 15% top , right 15px bottom }
bgpos226520 { background-position: right 15px top , right 15% top , right 15px bottom }
bgpos226521 { background-position: right 15px top 15% , right 15% top , right 15px bottom }
bgpos226522 { background-position: right 15px top 15px , right 15% top , right 15px bottom }
bgpos226523 { background-position: right 15px center , right 15% top , right 15px bottom }
bgpos226524 { background-position: right center , right 15% top , right 15px bottom }
bgpos226525 { background-position: 100px , right 15% top , right 15px bottom }
bgpos226526 { background-position: 100px 10% , right 15% top , right 15px bottom }
bgpos226527 { background-position: 100px 100px , right 15% top , right 15px bottom }
bgpos226528 { background-position: 100px bottom , right 15% top , right 15px bottom }
bgpos226529 { background-position: 100px center , right 15% top , right 15px bottom }
bgpos226530 { background-position: 100px top , right 15% top , right 15px bottom }
bgpos226531 { background-position: 50% , right 15% top , right 15px bottom }
bgpos226532 { background-position: 50% 10% , right 15% top , right 15px bottom }
bgpos226533 { background-position: 50% 100px , right 15% top , right 15px bottom }
bgpos226534 { background-position: 50% bottom , right 15% top , right 15px bottom }
bgpos226535 { background-position: 50% center , right 15% top , right 15px bottom }
bgpos226536 { background-position: 50% top , right 15% top , right 15px bottom }
bgpos226537 { background-position: bottom, right 15% top , right 15px bottom }
bgpos226538 { background-position: center , right 15% top , right 15px bottom }
bgpos226539 { background-position: center bottom , right 15% top , right 15px bottom }
bgpos226540 { background-position: center bottom 15% , right 15% top , right 15px bottom }
bgpos226541 { background-position: center bottom 15px , right 15% top , right 15px bottom }
bgpos226542 { background-position: center top , right 15% top , right 15px bottom }
bgpos226543 { background-position: center top 15% , right 15% top , right 15px bottom }
bgpos226544 { background-position: center top 15px , right 15% top , right 15px bottom }
bgpos226545 { background-position: center 10% , right 15% top , right 15px bottom }
bgpos226546 { background-position: center 100px , right 15% top , right 15px bottom }
bgpos226547 { background-position: center bottom , right 15% top , right 15px bottom }
bgpos226548 { background-position: center center , right 15% top , right 15px bottom }
bgpos226549 { background-position: center top , right 15% top , right 15px bottom }
bgpos226550 { background-position: left , right 15% top , right 15px bottom }
bgpos226551 { background-position: left 10% , right 15% top , right 15px bottom }
bgpos226552 { background-position: left 100px , right 15% top , right 15px bottom }
bgpos226553 { background-position: left bottom , right 15% top , right 15px bottom }
bgpos226554 { background-position: left center , right 15% top , right 15px bottom }
bgpos226555 { background-position: left top , right 15% top , right 15px bottom }
bgpos226556 { background-position: right , right 15% top , right 15px bottom }
bgpos226557 { background-position: right 10% , right 15% top , right 15px bottom }
bgpos226558 { background-position: right 100px , right 15% top , right 15px bottom }
bgpos226559 { background-position: right bottom , right 15% top , right 15px bottom }
bgpos226560 { background-position: right center , right 15% top , right 15px bottom }
bgpos226561 { background-position: right top , right 15% top , right 15px bottom }
bgpos226562 { background-position: top , right 15% top , right 15px bottom }
bgpos226563 { background-position: left bottom , right 15% top 15% , right 15px bottom }
bgpos226564 { background-position: left bottom 15% , right 15% top 15% , right 15px bottom }
bgpos226565 { background-position: left bottom 15px , right 15% top 15% , right 15px bottom }
bgpos226566 { background-position: left top , right 15% top 15% , right 15px bottom }
bgpos226567 { background-position: left top 15% , right 15% top 15% , right 15px bottom }
bgpos226568 { background-position: left top 15px , right 15% top 15% , right 15px bottom }
bgpos226569 { background-position: left 15% bottom , right 15% top 15% , right 15px bottom }
bgpos226570 { background-position: left 15% bottom 15% , right 15% top 15% , right 15px bottom }
bgpos226571 { background-position: left 15% bottom 15px , right 15% top 15% , right 15px bottom }
bgpos226572 { background-position: left 15% top , right 15% top 15% , right 15px bottom }
bgpos226573 { background-position: left 15% top 15% , right 15% top 15% , right 15px bottom }
bgpos226574 { background-position: left 15% top 15px , right 15% top 15% , right 15px bottom }
bgpos226575 { background-position: left 15% center , right 15% top 15% , right 15px bottom }
bgpos226576 { background-position: left 15px bottom , right 15% top 15% , right 15px bottom }
bgpos226577 { background-position: left 15px bottom 15% , right 15% top 15% , right 15px bottom }
bgpos226578 { background-position: left 15px bottom 15px , right 15% top 15% , right 15px bottom }
bgpos226579 { background-position: left 15px top , right 15% top 15% , right 15px bottom }
bgpos226580 { background-position: left 15px top 15% , right 15% top 15% , right 15px bottom }
bgpos226581 { background-position: left 15px top 15px , right 15% top 15% , right 15px bottom }
bgpos226582 { background-position: left 15px center , right 15% top 15% , right 15px bottom }
bgpos226583 { background-position: left center , right 15% top 15% , right 15px bottom }
bgpos226584 { background-position: right bottom , right 15% top 15% , right 15px bottom }
bgpos226585 { background-position: right bottom 15% , right 15% top 15% , right 15px bottom }
bgpos226586 { background-position: right bottom 15px , right 15% top 15% , right 15px bottom }
bgpos226587 { background-position: right top , right 15% top 15% , right 15px bottom }
bgpos226588 { background-position: right top 15% , right 15% top 15% , right 15px bottom }
bgpos226589 { background-position: right top 15px , right 15% top 15% , right 15px bottom }
bgpos226590 { background-position: right 15% bottom , right 15% top 15% , right 15px bottom }
bgpos226591 { background-position: right 15% bottom 15% , right 15% top 15% , right 15px bottom }
bgpos226592 { background-position: right 15% bottom 15px , right 15% top 15% , right 15px bottom }
bgpos226593 { background-position: right 15% top , right 15% top 15% , right 15px bottom }
bgpos226594 { background-position: right 15% top 15% , right 15% top 15% , right 15px bottom }
bgpos226595 { background-position: right 15% top 15px , right 15% top 15% , right 15px bottom }
bgpos226596 { background-position: right 15% center , right 15% top 15% , right 15px bottom }
bgpos226597 { background-position: right 15px bottom , right 15% top 15% , right 15px bottom }
bgpos226598 { background-position: right 15px bottom 15% , right 15% top 15% , right 15px bottom }
bgpos226599 { background-position: right 15px bottom 15px , right 15% top 15% , right 15px bottom }
bgpos226600 { background-position: right 15px top , right 15% top 15% , right 15px bottom }
bgpos226601 { background-position: right 15px top 15% , right 15% top 15% , right 15px bottom }
bgpos226602 { background-position: right 15px top 15px , right 15% top 15% , right 15px bottom }
bgpos226603 { background-position: right 15px center , right 15% top 15% , right 15px bottom }
bgpos226604 { background-position: right center , right 15% top 15% , right 15px bottom }
bgpos226605 { background-position: 100px , right 15% top 15% , right 15px bottom }
bgpos226606 { background-position: 100px 10% , right 15% top 15% , right 15px bottom }
bgpos226607 { background-position: 100px 100px , right 15% top 15% , right 15px bottom }
bgpos226608 { background-position: 100px bottom , right 15% top 15% , right 15px bottom }
bgpos226609 { background-position: 100px center , right 15% top 15% , right 15px bottom }
bgpos226610 { background-position: 100px top , right 15% top 15% , right 15px bottom }
bgpos226611 { background-position: 50% , right 15% top 15% , right 15px bottom }
bgpos226612 { background-position: 50% 10% , right 15% top 15% , right 15px bottom }
bgpos226613 { background-position: 50% 100px , right 15% top 15% , right 15px bottom }
bgpos226614 { background-position: 50% bottom , right 15% top 15% , right 15px bottom }
bgpos226615 { background-position: 50% center , right 15% top 15% , right 15px bottom }
bgpos226616 { background-position: 50% top , right 15% top 15% , right 15px bottom }
bgpos226617 { background-position: bottom, right 15% top 15% , right 15px bottom }
bgpos226618 { background-position: center , right 15% top 15% , right 15px bottom }
bgpos226619 { background-position: center bottom , right 15% top 15% , right 15px bottom }
bgpos226620 { background-position: center bottom 15% , right 15% top 15% , right 15px bottom }
bgpos226621 { background-position: center bottom 15px , right 15% top 15% , right 15px bottom }
bgpos226622 { background-position: center top , right 15% top 15% , right 15px bottom }
bgpos226623 { background-position: center top 15% , right 15% top 15% , right 15px bottom }
bgpos226624 { background-position: center top 15px , right 15% top 15% , right 15px bottom }
bgpos226625 { background-position: center 10% , right 15% top 15% , right 15px bottom }
bgpos226626 { background-position: center 100px , right 15% top 15% , right 15px bottom }
bgpos226627 { background-position: center bottom , right 15% top 15% , right 15px bottom }
bgpos226628 { background-position: center center , right 15% top 15% , right 15px bottom }
bgpos226629 { background-position: center top , right 15% top 15% , right 15px bottom }
bgpos226630 { background-position: left , right 15% top 15% , right 15px bottom }
bgpos226631 { background-position: left 10% , right 15% top 15% , right 15px bottom }
bgpos226632 { background-position: left 100px , right 15% top 15% , right 15px bottom }
bgpos226633 { background-position: left bottom , right 15% top 15% , right 15px bottom }
bgpos226634 { background-position: left center , right 15% top 15% , right 15px bottom }
bgpos226635 { background-position: left top , right 15% top 15% , right 15px bottom }
bgpos226636 { background-position: right , right 15% top 15% , right 15px bottom }
bgpos226637 { background-position: right 10% , right 15% top 15% , right 15px bottom }
bgpos226638 { background-position: right 100px , right 15% top 15% , right 15px bottom }
bgpos226639 { background-position: right bottom , right 15% top 15% , right 15px bottom }
bgpos226640 { background-position: right center , right 15% top 15% , right 15px bottom }
bgpos226641 { background-position: right top , right 15% top 15% , right 15px bottom }
bgpos226642 { background-position: top , right 15% top 15% , right 15px bottom }
bgpos226643 { background-position: left bottom , right 15% top 15px , right 15px bottom }
bgpos226644 { background-position: left bottom 15% , right 15% top 15px , right 15px bottom }
bgpos226645 { background-position: left bottom 15px , right 15% top 15px , right 15px bottom }
bgpos226646 { background-position: left top , right 15% top 15px , right 15px bottom }
bgpos226647 { background-position: left top 15% , right 15% top 15px , right 15px bottom }
bgpos226648 { background-position: left top 15px , right 15% top 15px , right 15px bottom }
bgpos226649 { background-position: left 15% bottom , right 15% top 15px , right 15px bottom }
bgpos226650 { background-position: left 15% bottom 15% , right 15% top 15px , right 15px bottom }
bgpos226651 { background-position: left 15% bottom 15px , right 15% top 15px , right 15px bottom }
bgpos226652 { background-position: left 15% top , right 15% top 15px , right 15px bottom }
bgpos226653 { background-position: left 15% top 15% , right 15% top 15px , right 15px bottom }
bgpos226654 { background-position: left 15% top 15px , right 15% top 15px , right 15px bottom }
bgpos226655 { background-position: left 15% center , right 15% top 15px , right 15px bottom }
bgpos226656 { background-position: left 15px bottom , right 15% top 15px , right 15px bottom }
bgpos226657 { background-position: left 15px bottom 15% , right 15% top 15px , right 15px bottom }
bgpos226658 { background-position: left 15px bottom 15px , right 15% top 15px , right 15px bottom }
bgpos226659 { background-position: left 15px top , right 15% top 15px , right 15px bottom }
bgpos226660 { background-position: left 15px top 15% , right 15% top 15px , right 15px bottom }
bgpos226661 { background-position: left 15px top 15px , right 15% top 15px , right 15px bottom }
bgpos226662 { background-position: left 15px center , right 15% top 15px , right 15px bottom }
bgpos226663 { background-position: left center , right 15% top 15px , right 15px bottom }
bgpos226664 { background-position: right bottom , right 15% top 15px , right 15px bottom }
bgpos226665 { background-position: right bottom 15% , right 15% top 15px , right 15px bottom }
bgpos226666 { background-position: right bottom 15px , right 15% top 15px , right 15px bottom }
bgpos226667 { background-position: right top , right 15% top 15px , right 15px bottom }
bgpos226668 { background-position: right top 15% , right 15% top 15px , right 15px bottom }
bgpos226669 { background-position: right top 15px , right 15% top 15px , right 15px bottom }
bgpos226670 { background-position: right 15% bottom , right 15% top 15px , right 15px bottom }
bgpos226671 { background-position: right 15% bottom 15% , right 15% top 15px , right 15px bottom }
bgpos226672 { background-position: right 15% bottom 15px , right 15% top 15px , right 15px bottom }
bgpos226673 { background-position: right 15% top , right 15% top 15px , right 15px bottom }
bgpos226674 { background-position: right 15% top 15% , right 15% top 15px , right 15px bottom }
bgpos226675 { background-position: right 15% top 15px , right 15% top 15px , right 15px bottom }
bgpos226676 { background-position: right 15% center , right 15% top 15px , right 15px bottom }
bgpos226677 { background-position: right 15px bottom , right 15% top 15px , right 15px bottom }
bgpos226678 { background-position: right 15px bottom 15% , right 15% top 15px , right 15px bottom }
bgpos226679 { background-position: right 15px bottom 15px , right 15% top 15px , right 15px bottom }
bgpos226680 { background-position: right 15px top , right 15% top 15px , right 15px bottom }
bgpos226681 { background-position: right 15px top 15% , right 15% top 15px , right 15px bottom }
bgpos226682 { background-position: right 15px top 15px , right 15% top 15px , right 15px bottom }
bgpos226683 { background-position: right 15px center , right 15% top 15px , right 15px bottom }
bgpos226684 { background-position: right center , right 15% top 15px , right 15px bottom }
bgpos226685 { background-position: 100px , right 15% top 15px , right 15px bottom }
bgpos226686 { background-position: 100px 10% , right 15% top 15px , right 15px bottom }
bgpos226687 { background-position: 100px 100px , right 15% top 15px , right 15px bottom }
bgpos226688 { background-position: 100px bottom , right 15% top 15px , right 15px bottom }
bgpos226689 { background-position: 100px center , right 15% top 15px , right 15px bottom }
bgpos226690 { background-position: 100px top , right 15% top 15px , right 15px bottom }
bgpos226691 { background-position: 50% , right 15% top 15px , right 15px bottom }
bgpos226692 { background-position: 50% 10% , right 15% top 15px , right 15px bottom }
bgpos226693 { background-position: 50% 100px , right 15% top 15px , right 15px bottom }
bgpos226694 { background-position: 50% bottom , right 15% top 15px , right 15px bottom }
bgpos226695 { background-position: 50% center , right 15% top 15px , right 15px bottom }
bgpos226696 { background-position: 50% top , right 15% top 15px , right 15px bottom }
bgpos226697 { background-position: bottom, right 15% top 15px , right 15px bottom }
bgpos226698 { background-position: center , right 15% top 15px , right 15px bottom }
bgpos226699 { background-position: center bottom , right 15% top 15px , right 15px bottom }
bgpos226700 { background-position: center bottom 15% , right 15% top 15px , right 15px bottom }
bgpos226701 { background-position: center bottom 15px , right 15% top 15px , right 15px bottom }
bgpos226702 { background-position: center top , right 15% top 15px , right 15px bottom }
bgpos226703 { background-position: center top 15% , right 15% top 15px , right 15px bottom }
bgpos226704 { background-position: center top 15px , right 15% top 15px , right 15px bottom }
bgpos226705 { background-position: center 10% , right 15% top 15px , right 15px bottom }
bgpos226706 { background-position: center 100px , right 15% top 15px , right 15px bottom }
bgpos226707 { background-position: center bottom , right 15% top 15px , right 15px bottom }
bgpos226708 { background-position: center center , right 15% top 15px , right 15px bottom }
bgpos226709 { background-position: center top , right 15% top 15px , right 15px bottom }
bgpos226710 { background-position: left , right 15% top 15px , right 15px bottom }
bgpos226711 { background-position: left 10% , right 15% top 15px , right 15px bottom }
bgpos226712 { background-position: left 100px , right 15% top 15px , right 15px bottom }
bgpos226713 { background-position: left bottom , right 15% top 15px , right 15px bottom }
bgpos226714 { background-position: left center , right 15% top 15px , right 15px bottom }
bgpos226715 { background-position: left top , right 15% top 15px , right 15px bottom }
bgpos226716 { background-position: right , right 15% top 15px , right 15px bottom }
bgpos226717 { background-position: right 10% , right 15% top 15px , right 15px bottom }
bgpos226718 { background-position: right 100px , right 15% top 15px , right 15px bottom }
bgpos226719 { background-position: right bottom , right 15% top 15px , right 15px bottom }
bgpos226720 { background-position: right center , right 15% top 15px , right 15px bottom }
bgpos226721 { background-position: right top , right 15% top 15px , right 15px bottom }
bgpos226722 { background-position: top , right 15% top 15px , right 15px bottom }
bgpos226723 { background-position: left bottom , right 15% center , right 15px bottom }
bgpos226724 { background-position: left bottom 15% , right 15% center , right 15px bottom }
bgpos226725 { background-position: left bottom 15px , right 15% center , right 15px bottom }
bgpos226726 { background-position: left top , right 15% center , right 15px bottom }
bgpos226727 { background-position: left top 15% , right 15% center , right 15px bottom }
bgpos226728 { background-position: left top 15px , right 15% center , right 15px bottom }
bgpos226729 { background-position: left 15% bottom , right 15% center , right 15px bottom }
bgpos226730 { background-position: left 15% bottom 15% , right 15% center , right 15px bottom }
bgpos226731 { background-position: left 15% bottom 15px , right 15% center , right 15px bottom }
bgpos226732 { background-position: left 15% top , right 15% center , right 15px bottom }
bgpos226733 { background-position: left 15% top 15% , right 15% center , right 15px bottom }
bgpos226734 { background-position: left 15% top 15px , right 15% center , right 15px bottom }
bgpos226735 { background-position: left 15% center , right 15% center , right 15px bottom }
bgpos226736 { background-position: left 15px bottom , right 15% center , right 15px bottom }
bgpos226737 { background-position: left 15px bottom 15% , right 15% center , right 15px bottom }
bgpos226738 { background-position: left 15px bottom 15px , right 15% center , right 15px bottom }
bgpos226739 { background-position: left 15px top , right 15% center , right 15px bottom }
bgpos226740 { background-position: left 15px top 15% , right 15% center , right 15px bottom }
bgpos226741 { background-position: left 15px top 15px , right 15% center , right 15px bottom }
bgpos226742 { background-position: left 15px center , right 15% center , right 15px bottom }
bgpos226743 { background-position: left center , right 15% center , right 15px bottom }
bgpos226744 { background-position: right bottom , right 15% center , right 15px bottom }
bgpos226745 { background-position: right bottom 15% , right 15% center , right 15px bottom }
bgpos226746 { background-position: right bottom 15px , right 15% center , right 15px bottom }
bgpos226747 { background-position: right top , right 15% center , right 15px bottom }
bgpos226748 { background-position: right top 15% , right 15% center , right 15px bottom }
bgpos226749 { background-position: right top 15px , right 15% center , right 15px bottom }
bgpos226750 { background-position: right 15% bottom , right 15% center , right 15px bottom }
bgpos226751 { background-position: right 15% bottom 15% , right 15% center , right 15px bottom }
bgpos226752 { background-position: right 15% bottom 15px , right 15% center , right 15px bottom }
bgpos226753 { background-position: right 15% top , right 15% center , right 15px bottom }
bgpos226754 { background-position: right 15% top 15% , right 15% center , right 15px bottom }
bgpos226755 { background-position: right 15% top 15px , right 15% center , right 15px bottom }
bgpos226756 { background-position: right 15% center , right 15% center , right 15px bottom }
bgpos226757 { background-position: right 15px bottom , right 15% center , right 15px bottom }
bgpos226758 { background-position: right 15px bottom 15% , right 15% center , right 15px bottom }
bgpos226759 { background-position: right 15px bottom 15px , right 15% center , right 15px bottom }
bgpos226760 { background-position: right 15px top , right 15% center , right 15px bottom }
bgpos226761 { background-position: right 15px top 15% , right 15% center , right 15px bottom }
bgpos226762 { background-position: right 15px top 15px , right 15% center , right 15px bottom }
bgpos226763 { background-position: right 15px center , right 15% center , right 15px bottom }
bgpos226764 { background-position: right center , right 15% center , right 15px bottom }
bgpos226765 { background-position: 100px , right 15% center , right 15px bottom }
bgpos226766 { background-position: 100px 10% , right 15% center , right 15px bottom }
bgpos226767 { background-position: 100px 100px , right 15% center , right 15px bottom }
bgpos226768 { background-position: 100px bottom , right 15% center , right 15px bottom }
bgpos226769 { background-position: 100px center , right 15% center , right 15px bottom }
bgpos226770 { background-position: 100px top , right 15% center , right 15px bottom }
bgpos226771 { background-position: 50% , right 15% center , right 15px bottom }
bgpos226772 { background-position: 50% 10% , right 15% center , right 15px bottom }
bgpos226773 { background-position: 50% 100px , right 15% center , right 15px bottom }
bgpos226774 { background-position: 50% bottom , right 15% center , right 15px bottom }
bgpos226775 { background-position: 50% center , right 15% center , right 15px bottom }
bgpos226776 { background-position: 50% top , right 15% center , right 15px bottom }
bgpos226777 { background-position: bottom, right 15% center , right 15px bottom }
bgpos226778 { background-position: center , right 15% center , right 15px bottom }
bgpos226779 { background-position: center bottom , right 15% center , right 15px bottom }
bgpos226780 { background-position: center bottom 15% , right 15% center , right 15px bottom }
bgpos226781 { background-position: center bottom 15px , right 15% center , right 15px bottom }
bgpos226782 { background-position: center top , right 15% center , right 15px bottom }
bgpos226783 { background-position: center top 15% , right 15% center , right 15px bottom }
bgpos226784 { background-position: center top 15px , right 15% center , right 15px bottom }
bgpos226785 { background-position: center 10% , right 15% center , right 15px bottom }
bgpos226786 { background-position: center 100px , right 15% center , right 15px bottom }
bgpos226787 { background-position: center bottom , right 15% center , right 15px bottom }
bgpos226788 { background-position: center center , right 15% center , right 15px bottom }
bgpos226789 { background-position: center top , right 15% center , right 15px bottom }
bgpos226790 { background-position: left , right 15% center , right 15px bottom }
bgpos226791 { background-position: left 10% , right 15% center , right 15px bottom }
bgpos226792 { background-position: left 100px , right 15% center , right 15px bottom }
bgpos226793 { background-position: left bottom , right 15% center , right 15px bottom }
bgpos226794 { background-position: left center , right 15% center , right 15px bottom }
bgpos226795 { background-position: left top , right 15% center , right 15px bottom }
bgpos226796 { background-position: right , right 15% center , right 15px bottom }
bgpos226797 { background-position: right 10% , right 15% center , right 15px bottom }
bgpos226798 { background-position: right 100px , right 15% center , right 15px bottom }
bgpos226799 { background-position: right bottom , right 15% center , right 15px bottom }
bgpos226800 { background-position: right center , right 15% center , right 15px bottom }
bgpos226801 { background-position: right top , right 15% center , right 15px bottom }
bgpos226802 { background-position: top , right 15% center , right 15px bottom }
bgpos226803 { background-position: left bottom , right 15px bottom , right 15px bottom }
bgpos226804 { background-position: left bottom 15% , right 15px bottom , right 15px bottom }
bgpos226805 { background-position: left bottom 15px , right 15px bottom , right 15px bottom }
bgpos226806 { background-position: left top , right 15px bottom , right 15px bottom }
bgpos226807 { background-position: left top 15% , right 15px bottom , right 15px bottom }
bgpos226808 { background-position: left top 15px , right 15px bottom , right 15px bottom }
bgpos226809 { background-position: left 15% bottom , right 15px bottom , right 15px bottom }
bgpos226810 { background-position: left 15% bottom 15% , right 15px bottom , right 15px bottom }
bgpos226811 { background-position: left 15% bottom 15px , right 15px bottom , right 15px bottom }
bgpos226812 { background-position: left 15% top , right 15px bottom , right 15px bottom }
bgpos226813 { background-position: left 15% top 15% , right 15px bottom , right 15px bottom }
bgpos226814 { background-position: left 15% top 15px , right 15px bottom , right 15px bottom }
bgpos226815 { background-position: left 15% center , right 15px bottom , right 15px bottom }
bgpos226816 { background-position: left 15px bottom , right 15px bottom , right 15px bottom }
bgpos226817 { background-position: left 15px bottom 15% , right 15px bottom , right 15px bottom }
bgpos226818 { background-position: left 15px bottom 15px , right 15px bottom , right 15px bottom }
bgpos226819 { background-position: left 15px top , right 15px bottom , right 15px bottom }
bgpos226820 { background-position: left 15px top 15% , right 15px bottom , right 15px bottom }
bgpos226821 { background-position: left 15px top 15px , right 15px bottom , right 15px bottom }
bgpos226822 { background-position: left 15px center , right 15px bottom , right 15px bottom }
bgpos226823 { background-position: left center , right 15px bottom , right 15px bottom }
bgpos226824 { background-position: right bottom , right 15px bottom , right 15px bottom }
bgpos226825 { background-position: right bottom 15% , right 15px bottom , right 15px bottom }
bgpos226826 { background-position: right bottom 15px , right 15px bottom , right 15px bottom }
bgpos226827 { background-position: right top , right 15px bottom , right 15px bottom }
bgpos226828 { background-position: right top 15% , right 15px bottom , right 15px bottom }
bgpos226829 { background-position: right top 15px , right 15px bottom , right 15px bottom }
bgpos226830 { background-position: right 15% bottom , right 15px bottom , right 15px bottom }
bgpos226831 { background-position: right 15% bottom 15% , right 15px bottom , right 15px bottom }
bgpos226832 { background-position: right 15% bottom 15px , right 15px bottom , right 15px bottom }
bgpos226833 { background-position: right 15% top , right 15px bottom , right 15px bottom }
bgpos226834 { background-position: right 15% top 15% , right 15px bottom , right 15px bottom }
bgpos226835 { background-position: right 15% top 15px , right 15px bottom , right 15px bottom }
bgpos226836 { background-position: right 15% center , right 15px bottom , right 15px bottom }
bgpos226837 { background-position: right 15px bottom , right 15px bottom , right 15px bottom }
bgpos226838 { background-position: right 15px bottom 15% , right 15px bottom , right 15px bottom }
bgpos226839 { background-position: right 15px bottom 15px , right 15px bottom , right 15px bottom }
bgpos226840 { background-position: right 15px top , right 15px bottom , right 15px bottom }
bgpos226841 { background-position: right 15px top 15% , right 15px bottom , right 15px bottom }
bgpos226842 { background-position: right 15px top 15px , right 15px bottom , right 15px bottom }
bgpos226843 { background-position: right 15px center , right 15px bottom , right 15px bottom }
bgpos226844 { background-position: right center , right 15px bottom , right 15px bottom }
bgpos226845 { background-position: 100px , right 15px bottom , right 15px bottom }
bgpos226846 { background-position: 100px 10% , right 15px bottom , right 15px bottom }
bgpos226847 { background-position: 100px 100px , right 15px bottom , right 15px bottom }
bgpos226848 { background-position: 100px bottom , right 15px bottom , right 15px bottom }
bgpos226849 { background-position: 100px center , right 15px bottom , right 15px bottom }
bgpos226850 { background-position: 100px top , right 15px bottom , right 15px bottom }
bgpos226851 { background-position: 50% , right 15px bottom , right 15px bottom }
bgpos226852 { background-position: 50% 10% , right 15px bottom , right 15px bottom }
bgpos226853 { background-position: 50% 100px , right 15px bottom , right 15px bottom }
bgpos226854 { background-position: 50% bottom , right 15px bottom , right 15px bottom }
bgpos226855 { background-position: 50% center , right 15px bottom , right 15px bottom }
bgpos226856 { background-position: 50% top , right 15px bottom , right 15px bottom }
bgpos226857 { background-position: bottom, right 15px bottom , right 15px bottom }
bgpos226858 { background-position: center , right 15px bottom , right 15px bottom }
bgpos226859 { background-position: center bottom , right 15px bottom , right 15px bottom }
bgpos226860 { background-position: center bottom 15% , right 15px bottom , right 15px bottom }
bgpos226861 { background-position: center bottom 15px , right 15px bottom , right 15px bottom }
bgpos226862 { background-position: center top , right 15px bottom , right 15px bottom }
bgpos226863 { background-position: center top 15% , right 15px bottom , right 15px bottom }
bgpos226864 { background-position: center top 15px , right 15px bottom , right 15px bottom }
bgpos226865 { background-position: center 10% , right 15px bottom , right 15px bottom }
bgpos226866 { background-position: center 100px , right 15px bottom , right 15px bottom }
bgpos226867 { background-position: center bottom , right 15px bottom , right 15px bottom }
bgpos226868 { background-position: center center , right 15px bottom , right 15px bottom }
bgpos226869 { background-position: center top , right 15px bottom , right 15px bottom }
bgpos226870 { background-position: left , right 15px bottom , right 15px bottom }
bgpos226871 { background-position: left 10% , right 15px bottom , right 15px bottom }
bgpos226872 { background-position: left 100px , right 15px bottom , right 15px bottom }
bgpos226873 { background-position: left bottom , right 15px bottom , right 15px bottom }
bgpos226874 { background-position: left center , right 15px bottom , right 15px bottom }
bgpos226875 { background-position: left top , right 15px bottom , right 15px bottom }
bgpos226876 { background-position: right , right 15px bottom , right 15px bottom }
bgpos226877 { background-position: right 10% , right 15px bottom , right 15px bottom }
bgpos226878 { background-position: right 100px , right 15px bottom , right 15px bottom }
bgpos226879 { background-position: right bottom , right 15px bottom , right 15px bottom }
bgpos226880 { background-position: right center , right 15px bottom , right 15px bottom }
bgpos226881 { background-position: right top , right 15px bottom , right 15px bottom }
bgpos226882 { background-position: top , right 15px bottom , right 15px bottom }
bgpos226883 { background-position: left bottom , right 15px bottom 15% , right 15px bottom }
bgpos226884 { background-position: left bottom 15% , right 15px bottom 15% , right 15px bottom }
bgpos226885 { background-position: left bottom 15px , right 15px bottom 15% , right 15px bottom }
bgpos226886 { background-position: left top , right 15px bottom 15% , right 15px bottom }
bgpos226887 { background-position: left top 15% , right 15px bottom 15% , right 15px bottom }
bgpos226888 { background-position: left top 15px , right 15px bottom 15% , right 15px bottom }
bgpos226889 { background-position: left 15% bottom , right 15px bottom 15% , right 15px bottom }
bgpos226890 { background-position: left 15% bottom 15% , right 15px bottom 15% , right 15px bottom }
bgpos226891 { background-position: left 15% bottom 15px , right 15px bottom 15% , right 15px bottom }
bgpos226892 { background-position: left 15% top , right 15px bottom 15% , right 15px bottom }
bgpos226893 { background-position: left 15% top 15% , right 15px bottom 15% , right 15px bottom }
bgpos226894 { background-position: left 15% top 15px , right 15px bottom 15% , right 15px bottom }
bgpos226895 { background-position: left 15% center , right 15px bottom 15% , right 15px bottom }
bgpos226896 { background-position: left 15px bottom , right 15px bottom 15% , right 15px bottom }
bgpos226897 { background-position: left 15px bottom 15% , right 15px bottom 15% , right 15px bottom }
bgpos226898 { background-position: left 15px bottom 15px , right 15px bottom 15% , right 15px bottom }
bgpos226899 { background-position: left 15px top , right 15px bottom 15% , right 15px bottom }
bgpos226900 { background-position: left 15px top 15% , right 15px bottom 15% , right 15px bottom }
bgpos226901 { background-position: left 15px top 15px , right 15px bottom 15% , right 15px bottom }
bgpos226902 { background-position: left 15px center , right 15px bottom 15% , right 15px bottom }
bgpos226903 { background-position: left center , right 15px bottom 15% , right 15px bottom }
bgpos226904 { background-position: right bottom , right 15px bottom 15% , right 15px bottom }
bgpos226905 { background-position: right bottom 15% , right 15px bottom 15% , right 15px bottom }
bgpos226906 { background-position: right bottom 15px , right 15px bottom 15% , right 15px bottom }
bgpos226907 { background-position: right top , right 15px bottom 15% , right 15px bottom }
bgpos226908 { background-position: right top 15% , right 15px bottom 15% , right 15px bottom }
bgpos226909 { background-position: right top 15px , right 15px bottom 15% , right 15px bottom }
bgpos226910 { background-position: right 15% bottom , right 15px bottom 15% , right 15px bottom }
bgpos226911 { background-position: right 15% bottom 15% , right 15px bottom 15% , right 15px bottom }
bgpos226912 { background-position: right 15% bottom 15px , right 15px bottom 15% , right 15px bottom }
bgpos226913 { background-position: right 15% top , right 15px bottom 15% , right 15px bottom }
bgpos226914 { background-position: right 15% top 15% , right 15px bottom 15% , right 15px bottom }
bgpos226915 { background-position: right 15% top 15px , right 15px bottom 15% , right 15px bottom }
bgpos226916 { background-position: right 15% center , right 15px bottom 15% , right 15px bottom }
bgpos226917 { background-position: right 15px bottom , right 15px bottom 15% , right 15px bottom }
bgpos226918 { background-position: right 15px bottom 15% , right 15px bottom 15% , right 15px bottom }
bgpos226919 { background-position: right 15px bottom 15px , right 15px bottom 15% , right 15px bottom }
bgpos226920 { background-position: right 15px top , right 15px bottom 15% , right 15px bottom }
bgpos226921 { background-position: right 15px top 15% , right 15px bottom 15% , right 15px bottom }
bgpos226922 { background-position: right 15px top 15px , right 15px bottom 15% , right 15px bottom }
bgpos226923 { background-position: right 15px center , right 15px bottom 15% , right 15px bottom }
bgpos226924 { background-position: right center , right 15px bottom 15% , right 15px bottom }
bgpos226925 { background-position: 100px , right 15px bottom 15% , right 15px bottom }
bgpos226926 { background-position: 100px 10% , right 15px bottom 15% , right 15px bottom }
bgpos226927 { background-position: 100px 100px , right 15px bottom 15% , right 15px bottom }
bgpos226928 { background-position: 100px bottom , right 15px bottom 15% , right 15px bottom }
bgpos226929 { background-position: 100px center , right 15px bottom 15% , right 15px bottom }
bgpos226930 { background-position: 100px top , right 15px bottom 15% , right 15px bottom }
bgpos226931 { background-position: 50% , right 15px bottom 15% , right 15px bottom }
bgpos226932 { background-position: 50% 10% , right 15px bottom 15% , right 15px bottom }
bgpos226933 { background-position: 50% 100px , right 15px bottom 15% , right 15px bottom }
bgpos226934 { background-position: 50% bottom , right 15px bottom 15% , right 15px bottom }
bgpos226935 { background-position: 50% center , right 15px bottom 15% , right 15px bottom }
bgpos226936 { background-position: 50% top , right 15px bottom 15% , right 15px bottom }
bgpos226937 { background-position: bottom, right 15px bottom 15% , right 15px bottom }
bgpos226938 { background-position: center , right 15px bottom 15% , right 15px bottom }
bgpos226939 { background-position: center bottom , right 15px bottom 15% , right 15px bottom }
bgpos226940 { background-position: center bottom 15% , right 15px bottom 15% , right 15px bottom }
bgpos226941 { background-position: center bottom 15px , right 15px bottom 15% , right 15px bottom }
bgpos226942 { background-position: center top , right 15px bottom 15% , right 15px bottom }
bgpos226943 { background-position: center top 15% , right 15px bottom 15% , right 15px bottom }
bgpos226944 { background-position: center top 15px , right 15px bottom 15% , right 15px bottom }
bgpos226945 { background-position: center 10% , right 15px bottom 15% , right 15px bottom }
bgpos226946 { background-position: center 100px , right 15px bottom 15% , right 15px bottom }
bgpos226947 { background-position: center bottom , right 15px bottom 15% , right 15px bottom }
bgpos226948 { background-position: center center , right 15px bottom 15% , right 15px bottom }
bgpos226949 { background-position: center top , right 15px bottom 15% , right 15px bottom }
bgpos226950 { background-position: left , right 15px bottom 15% , right 15px bottom }
bgpos226951 { background-position: left 10% , right 15px bottom 15% , right 15px bottom }
bgpos226952 { background-position: left 100px , right 15px bottom 15% , right 15px bottom }
bgpos226953 { background-position: left bottom , right 15px bottom 15% , right 15px bottom }
bgpos226954 { background-position: left center , right 15px bottom 15% , right 15px bottom }
bgpos226955 { background-position: left top , right 15px bottom 15% , right 15px bottom }
bgpos226956 { background-position: right , right 15px bottom 15% , right 15px bottom }
bgpos226957 { background-position: right 10% , right 15px bottom 15% , right 15px bottom }
bgpos226958 { background-position: right 100px , right 15px bottom 15% , right 15px bottom }
bgpos226959 { background-position: right bottom , right 15px bottom 15% , right 15px bottom }
bgpos226960 { background-position: right center , right 15px bottom 15% , right 15px bottom }
bgpos226961 { background-position: right top , right 15px bottom 15% , right 15px bottom }
bgpos226962 { background-position: top , right 15px bottom 15% , right 15px bottom }
bgpos226963 { background-position: left bottom , right 15px bottom 15px , right 15px bottom }
bgpos226964 { background-position: left bottom 15% , right 15px bottom 15px , right 15px bottom }
bgpos226965 { background-position: left bottom 15px , right 15px bottom 15px , right 15px bottom }
bgpos226966 { background-position: left top , right 15px bottom 15px , right 15px bottom }
bgpos226967 { background-position: left top 15% , right 15px bottom 15px , right 15px bottom }
bgpos226968 { background-position: left top 15px , right 15px bottom 15px , right 15px bottom }
bgpos226969 { background-position: left 15% bottom , right 15px bottom 15px , right 15px bottom }
bgpos226970 { background-position: left 15% bottom 15% , right 15px bottom 15px , right 15px bottom }
bgpos226971 { background-position: left 15% bottom 15px , right 15px bottom 15px , right 15px bottom }
bgpos226972 { background-position: left 15% top , right 15px bottom 15px , right 15px bottom }
bgpos226973 { background-position: left 15% top 15% , right 15px bottom 15px , right 15px bottom }
bgpos226974 { background-position: left 15% top 15px , right 15px bottom 15px , right 15px bottom }
bgpos226975 { background-position: left 15% center , right 15px bottom 15px , right 15px bottom }
bgpos226976 { background-position: left 15px bottom , right 15px bottom 15px , right 15px bottom }
bgpos226977 { background-position: left 15px bottom 15% , right 15px bottom 15px , right 15px bottom }
bgpos226978 { background-position: left 15px bottom 15px , right 15px bottom 15px , right 15px bottom }
bgpos226979 { background-position: left 15px top , right 15px bottom 15px , right 15px bottom }
bgpos226980 { background-position: left 15px top 15% , right 15px bottom 15px , right 15px bottom }
bgpos226981 { background-position: left 15px top 15px , right 15px bottom 15px , right 15px bottom }
bgpos226982 { background-position: left 15px center , right 15px bottom 15px , right 15px bottom }
bgpos226983 { background-position: left center , right 15px bottom 15px , right 15px bottom }
bgpos226984 { background-position: right bottom , right 15px bottom 15px , right 15px bottom }
bgpos226985 { background-position: right bottom 15% , right 15px bottom 15px , right 15px bottom }
bgpos226986 { background-position: right bottom 15px , right 15px bottom 15px , right 15px bottom }
bgpos226987 { background-position: right top , right 15px bottom 15px , right 15px bottom }
bgpos226988 { background-position: right top 15% , right 15px bottom 15px , right 15px bottom }
bgpos226989 { background-position: right top 15px , right 15px bottom 15px , right 15px bottom }
bgpos226990 { background-position: right 15% bottom , right 15px bottom 15px , right 15px bottom }
bgpos226991 { background-position: right 15% bottom 15% , right 15px bottom 15px , right 15px bottom }
bgpos226992 { background-position: right 15% bottom 15px , right 15px bottom 15px , right 15px bottom }
bgpos226993 { background-position: right 15% top , right 15px bottom 15px , right 15px bottom }
bgpos226994 { background-position: right 15% top 15% , right 15px bottom 15px , right 15px bottom }
bgpos226995 { background-position: right 15% top 15px , right 15px bottom 15px , right 15px bottom }
bgpos226996 { background-position: right 15% center , right 15px bottom 15px , right 15px bottom }
bgpos226997 { background-position: right 15px bottom , right 15px bottom 15px , right 15px bottom }
bgpos226998 { background-position: right 15px bottom 15% , right 15px bottom 15px , right 15px bottom }
bgpos226999 { background-position: right 15px bottom 15px , right 15px bottom 15px , right 15px bottom }
bgpos227000 { background-position: right 15px top , right 15px bottom 15px , right 15px bottom }
bgpos227001 { background-position: right 15px top 15% , right 15px bottom 15px , right 15px bottom }
bgpos227002 { background-position: right 15px top 15px , right 15px bottom 15px , right 15px bottom }
bgpos227003 { background-position: right 15px center , right 15px bottom 15px , right 15px bottom }
bgpos227004 { background-position: right center , right 15px bottom 15px , right 15px bottom }
bgpos227005 { background-position: 100px , right 15px bottom 15px , right 15px bottom }
bgpos227006 { background-position: 100px 10% , right 15px bottom 15px , right 15px bottom }
bgpos227007 { background-position: 100px 100px , right 15px bottom 15px , right 15px bottom }
bgpos227008 { background-position: 100px bottom , right 15px bottom 15px , right 15px bottom }
bgpos227009 { background-position: 100px center , right 15px bottom 15px , right 15px bottom }
bgpos227010 { background-position: 100px top , right 15px bottom 15px , right 15px bottom }
bgpos227011 { background-position: 50% , right 15px bottom 15px , right 15px bottom }
bgpos227012 { background-position: 50% 10% , right 15px bottom 15px , right 15px bottom }
bgpos227013 { background-position: 50% 100px , right 15px bottom 15px , right 15px bottom }
bgpos227014 { background-position: 50% bottom , right 15px bottom 15px , right 15px bottom }
bgpos227015 { background-position: 50% center , right 15px bottom 15px , right 15px bottom }
bgpos227016 { background-position: 50% top , right 15px bottom 15px , right 15px bottom }
bgpos227017 { background-position: bottom, right 15px bottom 15px , right 15px bottom }
bgpos227018 { background-position: center , right 15px bottom 15px , right 15px bottom }
bgpos227019 { background-position: center bottom , right 15px bottom 15px , right 15px bottom }
bgpos227020 { background-position: center bottom 15% , right 15px bottom 15px , right 15px bottom }
bgpos227021 { background-position: center bottom 15px , right 15px bottom 15px , right 15px bottom }
bgpos227022 { background-position: center top , right 15px bottom 15px , right 15px bottom }
bgpos227023 { background-position: center top 15% , right 15px bottom 15px , right 15px bottom }
bgpos227024 { background-position: center top 15px , right 15px bottom 15px , right 15px bottom }
bgpos227025 { background-position: center 10% , right 15px bottom 15px , right 15px bottom }
bgpos227026 { background-position: center 100px , right 15px bottom 15px , right 15px bottom }
bgpos227027 { background-position: center bottom , right 15px bottom 15px , right 15px bottom }
bgpos227028 { background-position: center center , right 15px bottom 15px , right 15px bottom }
bgpos227029 { background-position: center top , right 15px bottom 15px , right 15px bottom }
bgpos227030 { background-position: left , right 15px bottom 15px , right 15px bottom }
bgpos227031 { background-position: left 10% , right 15px bottom 15px , right 15px bottom }
bgpos227032 { background-position: left 100px , right 15px bottom 15px , right 15px bottom }
bgpos227033 { background-position: left bottom , right 15px bottom 15px , right 15px bottom }
bgpos227034 { background-position: left center , right 15px bottom 15px , right 15px bottom }
bgpos227035 { background-position: left top , right 15px bottom 15px , right 15px bottom }
bgpos227036 { background-position: right , right 15px bottom 15px , right 15px bottom }
bgpos227037 { background-position: right 10% , right 15px bottom 15px , right 15px bottom }
bgpos227038 { background-position: right 100px , right 15px bottom 15px , right 15px bottom }
bgpos227039 { background-position: right bottom , right 15px bottom 15px , right 15px bottom }
bgpos227040 { background-position: right center , right 15px bottom 15px , right 15px bottom }
bgpos227041 { background-position: right top , right 15px bottom 15px , right 15px bottom }
bgpos227042 { background-position: top , right 15px bottom 15px , right 15px bottom }
bgpos227043 { background-position: left bottom , right 15px top , right 15px bottom }
bgpos227044 { background-position: left bottom 15% , right 15px top , right 15px bottom }
bgpos227045 { background-position: left bottom 15px , right 15px top , right 15px bottom }
bgpos227046 { background-position: left top , right 15px top , right 15px bottom }
bgpos227047 { background-position: left top 15% , right 15px top , right 15px bottom }
bgpos227048 { background-position: left top 15px , right 15px top , right 15px bottom }
bgpos227049 { background-position: left 15% bottom , right 15px top , right 15px bottom }
bgpos227050 { background-position: left 15% bottom 15% , right 15px top , right 15px bottom }
bgpos227051 { background-position: left 15% bottom 15px , right 15px top , right 15px bottom }
bgpos227052 { background-position: left 15% top , right 15px top , right 15px bottom }
bgpos227053 { background-position: left 15% top 15% , right 15px top , right 15px bottom }
bgpos227054 { background-position: left 15% top 15px , right 15px top , right 15px bottom }
bgpos227055 { background-position: left 15% center , right 15px top , right 15px bottom }
bgpos227056 { background-position: left 15px bottom , right 15px top , right 15px bottom }
bgpos227057 { background-position: left 15px bottom 15% , right 15px top , right 15px bottom }
bgpos227058 { background-position: left 15px bottom 15px , right 15px top , right 15px bottom }
bgpos227059 { background-position: left 15px top , right 15px top , right 15px bottom }
bgpos227060 { background-position: left 15px top 15% , right 15px top , right 15px bottom }
bgpos227061 { background-position: left 15px top 15px , right 15px top , right 15px bottom }
bgpos227062 { background-position: left 15px center , right 15px top , right 15px bottom }
bgpos227063 { background-position: left center , right 15px top , right 15px bottom }
bgpos227064 { background-position: right bottom , right 15px top , right 15px bottom }
bgpos227065 { background-position: right bottom 15% , right 15px top , right 15px bottom }
bgpos227066 { background-position: right bottom 15px , right 15px top , right 15px bottom }
bgpos227067 { background-position: right top , right 15px top , right 15px bottom }
bgpos227068 { background-position: right top 15% , right 15px top , right 15px bottom }
bgpos227069 { background-position: right top 15px , right 15px top , right 15px bottom }
bgpos227070 { background-position: right 15% bottom , right 15px top , right 15px bottom }
bgpos227071 { background-position: right 15% bottom 15% , right 15px top , right 15px bottom }
bgpos227072 { background-position: right 15% bottom 15px , right 15px top , right 15px bottom }
bgpos227073 { background-position: right 15% top , right 15px top , right 15px bottom }
bgpos227074 { background-position: right 15% top 15% , right 15px top , right 15px bottom }
bgpos227075 { background-position: right 15% top 15px , right 15px top , right 15px bottom }
bgpos227076 { background-position: right 15% center , right 15px top , right 15px bottom }
bgpos227077 { background-position: right 15px bottom , right 15px top , right 15px bottom }
bgpos227078 { background-position: right 15px bottom 15% , right 15px top , right 15px bottom }
bgpos227079 { background-position: right 15px bottom 15px , right 15px top , right 15px bottom }
bgpos227080 { background-position: right 15px top , right 15px top , right 15px bottom }
bgpos227081 { background-position: right 15px top 15% , right 15px top , right 15px bottom }
bgpos227082 { background-position: right 15px top 15px , right 15px top , right 15px bottom }
bgpos227083 { background-position: right 15px center , right 15px top , right 15px bottom }
bgpos227084 { background-position: right center , right 15px top , right 15px bottom }
bgpos227085 { background-position: 100px , right 15px top , right 15px bottom }
bgpos227086 { background-position: 100px 10% , right 15px top , right 15px bottom }
bgpos227087 { background-position: 100px 100px , right 15px top , right 15px bottom }
bgpos227088 { background-position: 100px bottom , right 15px top , right 15px bottom }
bgpos227089 { background-position: 100px center , right 15px top , right 15px bottom }
bgpos227090 { background-position: 100px top , right 15px top , right 15px bottom }
bgpos227091 { background-position: 50% , right 15px top , right 15px bottom }
bgpos227092 { background-position: 50% 10% , right 15px top , right 15px bottom }
bgpos227093 { background-position: 50% 100px , right 15px top , right 15px bottom }
bgpos227094 { background-position: 50% bottom , right 15px top , right 15px bottom }
bgpos227095 { background-position: 50% center , right 15px top , right 15px bottom }
bgpos227096 { background-position: 50% top , right 15px top , right 15px bottom }
bgpos227097 { background-position: bottom, right 15px top , right 15px bottom }
bgpos227098 { background-position: center , right 15px top , right 15px bottom }
bgpos227099 { background-position: center bottom , right 15px top , right 15px bottom }
bgpos227100 { background-position: center bottom 15% , right 15px top , right 15px bottom }
bgpos227101 { background-position: center bottom 15px , right 15px top , right 15px bottom }
bgpos227102 { background-position: center top , right 15px top , right 15px bottom }
bgpos227103 { background-position: center top 15% , right 15px top , right 15px bottom }
bgpos227104 { background-position: center top 15px , right 15px top , right 15px bottom }
bgpos227105 { background-position: center 10% , right 15px top , right 15px bottom }
bgpos227106 { background-position: center 100px , right 15px top , right 15px bottom }
bgpos227107 { background-position: center bottom , right 15px top , right 15px bottom }
bgpos227108 { background-position: center center , right 15px top , right 15px bottom }
bgpos227109 { background-position: center top , right 15px top , right 15px bottom }
bgpos227110 { background-position: left , right 15px top , right 15px bottom }
bgpos227111 { background-position: left 10% , right 15px top , right 15px bottom }
bgpos227112 { background-position: left 100px , right 15px top , right 15px bottom }
bgpos227113 { background-position: left bottom , right 15px top , right 15px bottom }
bgpos227114 { background-position: left center , right 15px top , right 15px bottom }
bgpos227115 { background-position: left top , right 15px top , right 15px bottom }
bgpos227116 { background-position: right , right 15px top , right 15px bottom }
bgpos227117 { background-position: right 10% , right 15px top , right 15px bottom }
bgpos227118 { background-position: right 100px , right 15px top , right 15px bottom }
bgpos227119 { background-position: right bottom , right 15px top , right 15px bottom }
bgpos227120 { background-position: right center , right 15px top , right 15px bottom }
bgpos227121 { background-position: right top , right 15px top , right 15px bottom }
bgpos227122 { background-position: top , right 15px top , right 15px bottom }
bgpos227123 { background-position: left bottom , right 15px top 15% , right 15px bottom }
bgpos227124 { background-position: left bottom 15% , right 15px top 15% , right 15px bottom }
bgpos227125 { background-position: left bottom 15px , right 15px top 15% , right 15px bottom }
bgpos227126 { background-position: left top , right 15px top 15% , right 15px bottom }
bgpos227127 { background-position: left top 15% , right 15px top 15% , right 15px bottom }
bgpos227128 { background-position: left top 15px , right 15px top 15% , right 15px bottom }
bgpos227129 { background-position: left 15% bottom , right 15px top 15% , right 15px bottom }
bgpos227130 { background-position: left 15% bottom 15% , right 15px top 15% , right 15px bottom }
bgpos227131 { background-position: left 15% bottom 15px , right 15px top 15% , right 15px bottom }
bgpos227132 { background-position: left 15% top , right 15px top 15% , right 15px bottom }
bgpos227133 { background-position: left 15% top 15% , right 15px top 15% , right 15px bottom }
bgpos227134 { background-position: left 15% top 15px , right 15px top 15% , right 15px bottom }
bgpos227135 { background-position: left 15% center , right 15px top 15% , right 15px bottom }
bgpos227136 { background-position: left 15px bottom , right 15px top 15% , right 15px bottom }
bgpos227137 { background-position: left 15px bottom 15% , right 15px top 15% , right 15px bottom }
bgpos227138 { background-position: left 15px bottom 15px , right 15px top 15% , right 15px bottom }
bgpos227139 { background-position: left 15px top , right 15px top 15% , right 15px bottom }
bgpos227140 { background-position: left 15px top 15% , right 15px top 15% , right 15px bottom }
bgpos227141 { background-position: left 15px top 15px , right 15px top 15% , right 15px bottom }
bgpos227142 { background-position: left 15px center , right 15px top 15% , right 15px bottom }
bgpos227143 { background-position: left center , right 15px top 15% , right 15px bottom }
bgpos227144 { background-position: right bottom , right 15px top 15% , right 15px bottom }
bgpos227145 { background-position: right bottom 15% , right 15px top 15% , right 15px bottom }
bgpos227146 { background-position: right bottom 15px , right 15px top 15% , right 15px bottom }
bgpos227147 { background-position: right top , right 15px top 15% , right 15px bottom }
bgpos227148 { background-position: right top 15% , right 15px top 15% , right 15px bottom }
bgpos227149 { background-position: right top 15px , right 15px top 15% , right 15px bottom }
bgpos227150 { background-position: right 15% bottom , right 15px top 15% , right 15px bottom }
bgpos227151 { background-position: right 15% bottom 15% , right 15px top 15% , right 15px bottom }
bgpos227152 { background-position: right 15% bottom 15px , right 15px top 15% , right 15px bottom }
bgpos227153 { background-position: right 15% top , right 15px top 15% , right 15px bottom }
bgpos227154 { background-position: right 15% top 15% , right 15px top 15% , right 15px bottom }
bgpos227155 { background-position: right 15% top 15px , right 15px top 15% , right 15px bottom }
bgpos227156 { background-position: right 15% center , right 15px top 15% , right 15px bottom }
bgpos227157 { background-position: right 15px bottom , right 15px top 15% , right 15px bottom }
bgpos227158 { background-position: right 15px bottom 15% , right 15px top 15% , right 15px bottom }
bgpos227159 { background-position: right 15px bottom 15px , right 15px top 15% , right 15px bottom }
bgpos227160 { background-position: right 15px top , right 15px top 15% , right 15px bottom }
bgpos227161 { background-position: right 15px top 15% , right 15px top 15% , right 15px bottom }
bgpos227162 { background-position: right 15px top 15px , right 15px top 15% , right 15px bottom }
bgpos227163 { background-position: right 15px center , right 15px top 15% , right 15px bottom }
bgpos227164 { background-position: right center , right 15px top 15% , right 15px bottom }
bgpos227165 { background-position: 100px , right 15px top 15% , right 15px bottom }
bgpos227166 { background-position: 100px 10% , right 15px top 15% , right 15px bottom }
bgpos227167 { background-position: 100px 100px , right 15px top 15% , right 15px bottom }
bgpos227168 { background-position: 100px bottom , right 15px top 15% , right 15px bottom }
bgpos227169 { background-position: 100px center , right 15px top 15% , right 15px bottom }
bgpos227170 { background-position: 100px top , right 15px top 15% , right 15px bottom }
bgpos227171 { background-position: 50% , right 15px top 15% , right 15px bottom }
bgpos227172 { background-position: 50% 10% , right 15px top 15% , right 15px bottom }
bgpos227173 { background-position: 50% 100px , right 15px top 15% , right 15px bottom }
bgpos227174 { background-position: 50% bottom , right 15px top 15% , right 15px bottom }
bgpos227175 { background-position: 50% center , right 15px top 15% , right 15px bottom }
bgpos227176 { background-position: 50% top , right 15px top 15% , right 15px bottom }
bgpos227177 { background-position: bottom, right 15px top 15% , right 15px bottom }
bgpos227178 { background-position: center , right 15px top 15% , right 15px bottom }
bgpos227179 { background-position: center bottom , right 15px top 15% , right 15px bottom }
bgpos227180 { background-position: center bottom 15% , right 15px top 15% , right 15px bottom }
bgpos227181 { background-position: center bottom 15px , right 15px top 15% , right 15px bottom }
bgpos227182 { background-position: center top , right 15px top 15% , right 15px bottom }
bgpos227183 { background-position: center top 15% , right 15px top 15% , right 15px bottom }
bgpos227184 { background-position: center top 15px , right 15px top 15% , right 15px bottom }
bgpos227185 { background-position: center 10% , right 15px top 15% , right 15px bottom }
bgpos227186 { background-position: center 100px , right 15px top 15% , right 15px bottom }
bgpos227187 { background-position: center bottom , right 15px top 15% , right 15px bottom }
bgpos227188 { background-position: center center , right 15px top 15% , right 15px bottom }
bgpos227189 { background-position: center top , right 15px top 15% , right 15px bottom }
bgpos227190 { background-position: left , right 15px top 15% , right 15px bottom }
bgpos227191 { background-position: left 10% , right 15px top 15% , right 15px bottom }
bgpos227192 { background-position: left 100px , right 15px top 15% , right 15px bottom }
bgpos227193 { background-position: left bottom , right 15px top 15% , right 15px bottom }
bgpos227194 { background-position: left center , right 15px top 15% , right 15px bottom }
bgpos227195 { background-position: left top , right 15px top 15% , right 15px bottom }
bgpos227196 { background-position: right , right 15px top 15% , right 15px bottom }
bgpos227197 { background-position: right 10% , right 15px top 15% , right 15px bottom }
bgpos227198 { background-position: right 100px , right 15px top 15% , right 15px bottom }
bgpos227199 { background-position: right bottom , right 15px top 15% , right 15px bottom }
bgpos227200 { background-position: right center , right 15px top 15% , right 15px bottom }
bgpos227201 { background-position: right top , right 15px top 15% , right 15px bottom }
bgpos227202 { background-position: top , right 15px top 15% , right 15px bottom }
bgpos227203 { background-position: left bottom , right 15px top 15px , right 15px bottom }
bgpos227204 { background-position: left bottom 15% , right 15px top 15px , right 15px bottom }
bgpos227205 { background-position: left bottom 15px , right 15px top 15px , right 15px bottom }
bgpos227206 { background-position: left top , right 15px top 15px , right 15px bottom }
bgpos227207 { background-position: left top 15% , right 15px top 15px , right 15px bottom }
bgpos227208 { background-position: left top 15px , right 15px top 15px , right 15px bottom }
bgpos227209 { background-position: left 15% bottom , right 15px top 15px , right 15px bottom }
bgpos227210 { background-position: left 15% bottom 15% , right 15px top 15px , right 15px bottom }
bgpos227211 { background-position: left 15% bottom 15px , right 15px top 15px , right 15px bottom }
bgpos227212 { background-position: left 15% top , right 15px top 15px , right 15px bottom }
bgpos227213 { background-position: left 15% top 15% , right 15px top 15px , right 15px bottom }
bgpos227214 { background-position: left 15% top 15px , right 15px top 15px , right 15px bottom }
bgpos227215 { background-position: left 15% center , right 15px top 15px , right 15px bottom }
bgpos227216 { background-position: left 15px bottom , right 15px top 15px , right 15px bottom }
bgpos227217 { background-position: left 15px bottom 15% , right 15px top 15px , right 15px bottom }
bgpos227218 { background-position: left 15px bottom 15px , right 15px top 15px , right 15px bottom }
bgpos227219 { background-position: left 15px top , right 15px top 15px , right 15px bottom }
bgpos227220 { background-position: left 15px top 15% , right 15px top 15px , right 15px bottom }
bgpos227221 { background-position: left 15px top 15px , right 15px top 15px , right 15px bottom }
bgpos227222 { background-position: left 15px center , right 15px top 15px , right 15px bottom }
bgpos227223 { background-position: left center , right 15px top 15px , right 15px bottom }
bgpos227224 { background-position: right bottom , right 15px top 15px , right 15px bottom }
bgpos227225 { background-position: right bottom 15% , right 15px top 15px , right 15px bottom }
bgpos227226 { background-position: right bottom 15px , right 15px top 15px , right 15px bottom }
bgpos227227 { background-position: right top , right 15px top 15px , right 15px bottom }
bgpos227228 { background-position: right top 15% , right 15px top 15px , right 15px bottom }
bgpos227229 { background-position: right top 15px , right 15px top 15px , right 15px bottom }
bgpos227230 { background-position: right 15% bottom , right 15px top 15px , right 15px bottom }
bgpos227231 { background-position: right 15% bottom 15% , right 15px top 15px , right 15px bottom }
bgpos227232 { background-position: right 15% bottom 15px , right 15px top 15px , right 15px bottom }
bgpos227233 { background-position: right 15% top , right 15px top 15px , right 15px bottom }
bgpos227234 { background-position: right 15% top 15% , right 15px top 15px , right 15px bottom }
bgpos227235 { background-position: right 15% top 15px , right 15px top 15px , right 15px bottom }
bgpos227236 { background-position: right 15% center , right 15px top 15px , right 15px bottom }
bgpos227237 { background-position: right 15px bottom , right 15px top 15px , right 15px bottom }
bgpos227238 { background-position: right 15px bottom 15% , right 15px top 15px , right 15px bottom }
bgpos227239 { background-position: right 15px bottom 15px , right 15px top 15px , right 15px bottom }
bgpos227240 { background-position: right 15px top , right 15px top 15px , right 15px bottom }
bgpos227241 { background-position: right 15px top 15% , right 15px top 15px , right 15px bottom }
bgpos227242 { background-position: right 15px top 15px , right 15px top 15px , right 15px bottom }
bgpos227243 { background-position: right 15px center , right 15px top 15px , right 15px bottom }
bgpos227244 { background-position: right center , right 15px top 15px , right 15px bottom }
bgpos227245 { background-position: 100px , right 15px top 15px , right 15px bottom }
bgpos227246 { background-position: 100px 10% , right 15px top 15px , right 15px bottom }
bgpos227247 { background-position: 100px 100px , right 15px top 15px , right 15px bottom }
bgpos227248 { background-position: 100px bottom , right 15px top 15px , right 15px bottom }
bgpos227249 { background-position: 100px center , right 15px top 15px , right 15px bottom }
bgpos227250 { background-position: 100px top , right 15px top 15px , right 15px bottom }
bgpos227251 { background-position: 50% , right 15px top 15px , right 15px bottom }
bgpos227252 { background-position: 50% 10% , right 15px top 15px , right 15px bottom }
bgpos227253 { background-position: 50% 100px , right 15px top 15px , right 15px bottom }
bgpos227254 { background-position: 50% bottom , right 15px top 15px , right 15px bottom }
bgpos227255 { background-position: 50% center , right 15px top 15px , right 15px bottom }
bgpos227256 { background-position: 50% top , right 15px top 15px , right 15px bottom }
bgpos227257 { background-position: bottom, right 15px top 15px , right 15px bottom }
bgpos227258 { background-position: center , right 15px top 15px , right 15px bottom }
bgpos227259 { background-position: center bottom , right 15px top 15px , right 15px bottom }
bgpos227260 { background-position: center bottom 15% , right 15px top 15px , right 15px bottom }
bgpos227261 { background-position: center bottom 15px , right 15px top 15px , right 15px bottom }
bgpos227262 { background-position: center top , right 15px top 15px , right 15px bottom }
bgpos227263 { background-position: center top 15% , right 15px top 15px , right 15px bottom }
bgpos227264 { background-position: center top 15px , right 15px top 15px , right 15px bottom }
bgpos227265 { background-position: center 10% , right 15px top 15px , right 15px bottom }
bgpos227266 { background-position: center 100px , right 15px top 15px , right 15px bottom }
bgpos227267 { background-position: center bottom , right 15px top 15px , right 15px bottom }
bgpos227268 { background-position: center center , right 15px top 15px , right 15px bottom }
bgpos227269 { background-position: center top , right 15px top 15px , right 15px bottom }
bgpos227270 { background-position: left , right 15px top 15px , right 15px bottom }
bgpos227271 { background-position: left 10% , right 15px top 15px , right 15px bottom }
bgpos227272 { background-position: left 100px , right 15px top 15px , right 15px bottom }
bgpos227273 { background-position: left bottom , right 15px top 15px , right 15px bottom }
bgpos227274 { background-position: left center , right 15px top 15px , right 15px bottom }
bgpos227275 { background-position: left top , right 15px top 15px , right 15px bottom }
bgpos227276 { background-position: right , right 15px top 15px , right 15px bottom }
bgpos227277 { background-position: right 10% , right 15px top 15px , right 15px bottom }
bgpos227278 { background-position: right 100px , right 15px top 15px , right 15px bottom }
bgpos227279 { background-position: right bottom , right 15px top 15px , right 15px bottom }
bgpos227280 { background-position: right center , right 15px top 15px , right 15px bottom }
bgpos227281 { background-position: right top , right 15px top 15px , right 15px bottom }
bgpos227282 { background-position: top , right 15px top 15px , right 15px bottom }
bgpos227283 { background-position: left bottom , right 15px center , right 15px bottom }
bgpos227284 { background-position: left bottom 15% , right 15px center , right 15px bottom }
bgpos227285 { background-position: left bottom 15px , right 15px center , right 15px bottom }
bgpos227286 { background-position: left top , right 15px center , right 15px bottom }
bgpos227287 { background-position: left top 15% , right 15px center , right 15px bottom }
bgpos227288 { background-position: left top 15px , right 15px center , right 15px bottom }
bgpos227289 { background-position: left 15% bottom , right 15px center , right 15px bottom }
bgpos227290 { background-position: left 15% bottom 15% , right 15px center , right 15px bottom }
bgpos227291 { background-position: left 15% bottom 15px , right 15px center , right 15px bottom }
bgpos227292 { background-position: left 15% top , right 15px center , right 15px bottom }
bgpos227293 { background-position: left 15% top 15% , right 15px center , right 15px bottom }
bgpos227294 { background-position: left 15% top 15px , right 15px center , right 15px bottom }
bgpos227295 { background-position: left 15% center , right 15px center , right 15px bottom }
bgpos227296 { background-position: left 15px bottom , right 15px center , right 15px bottom }
bgpos227297 { background-position: left 15px bottom 15% , right 15px center , right 15px bottom }
bgpos227298 { background-position: left 15px bottom 15px , right 15px center , right 15px bottom }
bgpos227299 { background-position: left 15px top , right 15px center , right 15px bottom }
bgpos227300 { background-position: left 15px top 15% , right 15px center , right 15px bottom }
bgpos227301 { background-position: left 15px top 15px , right 15px center , right 15px bottom }
bgpos227302 { background-position: left 15px center , right 15px center , right 15px bottom }
bgpos227303 { background-position: left center , right 15px center , right 15px bottom }
bgpos227304 { background-position: right bottom , right 15px center , right 15px bottom }
bgpos227305 { background-position: right bottom 15% , right 15px center , right 15px bottom }
bgpos227306 { background-position: right bottom 15px , right 15px center , right 15px bottom }
bgpos227307 { background-position: right top , right 15px center , right 15px bottom }
bgpos227308 { background-position: right top 15% , right 15px center , right 15px bottom }
bgpos227309 { background-position: right top 15px , right 15px center , right 15px bottom }
bgpos227310 { background-position: right 15% bottom , right 15px center , right 15px bottom }
bgpos227311 { background-position: right 15% bottom 15% , right 15px center , right 15px bottom }
bgpos227312 { background-position: right 15% bottom 15px , right 15px center , right 15px bottom }
bgpos227313 { background-position: right 15% top , right 15px center , right 15px bottom }
bgpos227314 { background-position: right 15% top 15% , right 15px center , right 15px bottom }
bgpos227315 { background-position: right 15% top 15px , right 15px center , right 15px bottom }
bgpos227316 { background-position: right 15% center , right 15px center , right 15px bottom }
bgpos227317 { background-position: right 15px bottom , right 15px center , right 15px bottom }
bgpos227318 { background-position: right 15px bottom 15% , right 15px center , right 15px bottom }
bgpos227319 { background-position: right 15px bottom 15px , right 15px center , right 15px bottom }
bgpos227320 { background-position: right 15px top , right 15px center , right 15px bottom }
bgpos227321 { background-position: right 15px top 15% , right 15px center , right 15px bottom }
bgpos227322 { background-position: right 15px top 15px , right 15px center , right 15px bottom }
bgpos227323 { background-position: right 15px center , right 15px center , right 15px bottom }
bgpos227324 { background-position: right center , right 15px center , right 15px bottom }
bgpos227325 { background-position: 100px , right 15px center , right 15px bottom }
bgpos227326 { background-position: 100px 10% , right 15px center , right 15px bottom }
bgpos227327 { background-position: 100px 100px , right 15px center , right 15px bottom }
bgpos227328 { background-position: 100px bottom , right 15px center , right 15px bottom }
bgpos227329 { background-position: 100px center , right 15px center , right 15px bottom }
bgpos227330 { background-position: 100px top , right 15px center , right 15px bottom }
bgpos227331 { background-position: 50% , right 15px center , right 15px bottom }
bgpos227332 { background-position: 50% 10% , right 15px center , right 15px bottom }
bgpos227333 { background-position: 50% 100px , right 15px center , right 15px bottom }
bgpos227334 { background-position: 50% bottom , right 15px center , right 15px bottom }
bgpos227335 { background-position: 50% center , right 15px center , right 15px bottom }
bgpos227336 { background-position: 50% top , right 15px center , right 15px bottom }
bgpos227337 { background-position: bottom, right 15px center , right 15px bottom }
bgpos227338 { background-position: center , right 15px center , right 15px bottom }
bgpos227339 { background-position: center bottom , right 15px center , right 15px bottom }
bgpos227340 { background-position: center bottom 15% , right 15px center , right 15px bottom }
bgpos227341 { background-position: center bottom 15px , right 15px center , right 15px bottom }
bgpos227342 { background-position: center top , right 15px center , right 15px bottom }
bgpos227343 { background-position: center top 15% , right 15px center , right 15px bottom }
bgpos227344 { background-position: center top 15px , right 15px center , right 15px bottom }
bgpos227345 { background-position: center 10% , right 15px center , right 15px bottom }
bgpos227346 { background-position: center 100px , right 15px center , right 15px bottom }
bgpos227347 { background-position: center bottom , right 15px center , right 15px bottom }
bgpos227348 { background-position: center center , right 15px center , right 15px bottom }
bgpos227349 { background-position: center top , right 15px center , right 15px bottom }
bgpos227350 { background-position: left , right 15px center , right 15px bottom }
bgpos227351 { background-position: left 10% , right 15px center , right 15px bottom }
bgpos227352 { background-position: left 100px , right 15px center , right 15px bottom }
bgpos227353 { background-position: left bottom , right 15px center , right 15px bottom }
bgpos227354 { background-position: left center , right 15px center , right 15px bottom }
bgpos227355 { background-position: left top , right 15px center , right 15px bottom }
bgpos227356 { background-position: right , right 15px center , right 15px bottom }
bgpos227357 { background-position: right 10% , right 15px center , right 15px bottom }
bgpos227358 { background-position: right 100px , right 15px center , right 15px bottom }
bgpos227359 { background-position: right bottom , right 15px center , right 15px bottom }
bgpos227360 { background-position: right center , right 15px center , right 15px bottom }
bgpos227361 { background-position: right top , right 15px center , right 15px bottom }
bgpos227362 { background-position: top , right 15px center , right 15px bottom }
bgpos227363 { background-position: left bottom , right center , right 15px bottom }
bgpos227364 { background-position: left bottom 15% , right center , right 15px bottom }
bgpos227365 { background-position: left bottom 15px , right center , right 15px bottom }
bgpos227366 { background-position: left top , right center , right 15px bottom }
bgpos227367 { background-position: left top 15% , right center , right 15px bottom }
bgpos227368 { background-position: left top 15px , right center , right 15px bottom }
bgpos227369 { background-position: left 15% bottom , right center , right 15px bottom }
bgpos227370 { background-position: left 15% bottom 15% , right center , right 15px bottom }
bgpos227371 { background-position: left 15% bottom 15px , right center , right 15px bottom }
bgpos227372 { background-position: left 15% top , right center , right 15px bottom }
bgpos227373 { background-position: left 15% top 15% , right center , right 15px bottom }
bgpos227374 { background-position: left 15% top 15px , right center , right 15px bottom }
bgpos227375 { background-position: left 15% center , right center , right 15px bottom }
bgpos227376 { background-position: left 15px bottom , right center , right 15px bottom }
bgpos227377 { background-position: left 15px bottom 15% , right center , right 15px bottom }
bgpos227378 { background-position: left 15px bottom 15px , right center , right 15px bottom }
bgpos227379 { background-position: left 15px top , right center , right 15px bottom }
bgpos227380 { background-position: left 15px top 15% , right center , right 15px bottom }
bgpos227381 { background-position: left 15px top 15px , right center , right 15px bottom }
bgpos227382 { background-position: left 15px center , right center , right 15px bottom }
bgpos227383 { background-position: left center , right center , right 15px bottom }
bgpos227384 { background-position: right bottom , right center , right 15px bottom }
bgpos227385 { background-position: right bottom 15% , right center , right 15px bottom }
bgpos227386 { background-position: right bottom 15px , right center , right 15px bottom }
bgpos227387 { background-position: right top , right center , right 15px bottom }
bgpos227388 { background-position: right top 15% , right center , right 15px bottom }
bgpos227389 { background-position: right top 15px , right center , right 15px bottom }
bgpos227390 { background-position: right 15% bottom , right center , right 15px bottom }
bgpos227391 { background-position: right 15% bottom 15% , right center , right 15px bottom }
bgpos227392 { background-position: right 15% bottom 15px , right center , right 15px bottom }
bgpos227393 { background-position: right 15% top , right center , right 15px bottom }
bgpos227394 { background-position: right 15% top 15% , right center , right 15px bottom }
bgpos227395 { background-position: right 15% top 15px , right center , right 15px bottom }
bgpos227396 { background-position: right 15% center , right center , right 15px bottom }
bgpos227397 { background-position: right 15px bottom , right center , right 15px bottom }
bgpos227398 { background-position: right 15px bottom 15% , right center , right 15px bottom }
bgpos227399 { background-position: right 15px bottom 15px , right center , right 15px bottom }
bgpos227400 { background-position: right 15px top , right center , right 15px bottom }
bgpos227401 { background-position: right 15px top 15% , right center , right 15px bottom }
bgpos227402 { background-position: right 15px top 15px , right center , right 15px bottom }
bgpos227403 { background-position: right 15px center , right center , right 15px bottom }
bgpos227404 { background-position: right center , right center , right 15px bottom }
bgpos227405 { background-position: 100px , right center , right 15px bottom }
bgpos227406 { background-position: 100px 10% , right center , right 15px bottom }
bgpos227407 { background-position: 100px 100px , right center , right 15px bottom }
bgpos227408 { background-position: 100px bottom , right center , right 15px bottom }
bgpos227409 { background-position: 100px center , right center , right 15px bottom }
bgpos227410 { background-position: 100px top , right center , right 15px bottom }
bgpos227411 { background-position: 50% , right center , right 15px bottom }
bgpos227412 { background-position: 50% 10% , right center , right 15px bottom }
bgpos227413 { background-position: 50% 100px , right center , right 15px bottom }
bgpos227414 { background-position: 50% bottom , right center , right 15px bottom }
bgpos227415 { background-position: 50% center , right center , right 15px bottom }
bgpos227416 { background-position: 50% top , right center , right 15px bottom }
bgpos227417 { background-position: bottom, right center , right 15px bottom }
bgpos227418 { background-position: center , right center , right 15px bottom }
bgpos227419 { background-position: center bottom , right center , right 15px bottom }
bgpos227420 { background-position: center bottom 15% , right center , right 15px bottom }
bgpos227421 { background-position: center bottom 15px , right center , right 15px bottom }
bgpos227422 { background-position: center top , right center , right 15px bottom }
bgpos227423 { background-position: center top 15% , right center , right 15px bottom }
bgpos227424 { background-position: center top 15px , right center , right 15px bottom }
bgpos227425 { background-position: center 10% , right center , right 15px bottom }
bgpos227426 { background-position: center 100px , right center , right 15px bottom }
bgpos227427 { background-position: center bottom , right center , right 15px bottom }
bgpos227428 { background-position: center center , right center , right 15px bottom }
bgpos227429 { background-position: center top , right center , right 15px bottom }
bgpos227430 { background-position: left , right center , right 15px bottom }
bgpos227431 { background-position: left 10% , right center , right 15px bottom }
bgpos227432 { background-position: left 100px , right center , right 15px bottom }
bgpos227433 { background-position: left bottom , right center , right 15px bottom }
bgpos227434 { background-position: left center , right center , right 15px bottom }
bgpos227435 { background-position: left top , right center , right 15px bottom }
bgpos227436 { background-position: right , right center , right 15px bottom }
bgpos227437 { background-position: right 10% , right center , right 15px bottom }
bgpos227438 { background-position: right 100px , right center , right 15px bottom }
bgpos227439 { background-position: right bottom , right center , right 15px bottom }
bgpos227440 { background-position: right center , right center , right 15px bottom }
bgpos227441 { background-position: right top , right center , right 15px bottom }
bgpos227442 { background-position: top , right center , right 15px bottom }
bgpos227443 { background-position: left bottom , 100px , right 15px bottom }
bgpos227444 { background-position: left bottom 15% , 100px , right 15px bottom }
bgpos227445 { background-position: left bottom 15px , 100px , right 15px bottom }
bgpos227446 { background-position: left top , 100px , right 15px bottom }
bgpos227447 { background-position: left top 15% , 100px , right 15px bottom }
bgpos227448 { background-position: left top 15px , 100px , right 15px bottom }
bgpos227449 { background-position: left 15% bottom , 100px , right 15px bottom }
bgpos227450 { background-position: left 15% bottom 15% , 100px , right 15px bottom }
bgpos227451 { background-position: left 15% bottom 15px , 100px , right 15px bottom }
bgpos227452 { background-position: left 15% top , 100px , right 15px bottom }
bgpos227453 { background-position: left 15% top 15% , 100px , right 15px bottom }
bgpos227454 { background-position: left 15% top 15px , 100px , right 15px bottom }
bgpos227455 { background-position: left 15% center , 100px , right 15px bottom }
bgpos227456 { background-position: left 15px bottom , 100px , right 15px bottom }
bgpos227457 { background-position: left 15px bottom 15% , 100px , right 15px bottom }
bgpos227458 { background-position: left 15px bottom 15px , 100px , right 15px bottom }
bgpos227459 { background-position: left 15px top , 100px , right 15px bottom }
bgpos227460 { background-position: left 15px top 15% , 100px , right 15px bottom }
bgpos227461 { background-position: left 15px top 15px , 100px , right 15px bottom }
bgpos227462 { background-position: left 15px center , 100px , right 15px bottom }
bgpos227463 { background-position: left center , 100px , right 15px bottom }
bgpos227464 { background-position: right bottom , 100px , right 15px bottom }
bgpos227465 { background-position: right bottom 15% , 100px , right 15px bottom }
bgpos227466 { background-position: right bottom 15px , 100px , right 15px bottom }
bgpos227467 { background-position: right top , 100px , right 15px bottom }
bgpos227468 { background-position: right top 15% , 100px , right 15px bottom }
bgpos227469 { background-position: right top 15px , 100px , right 15px bottom }
bgpos227470 { background-position: right 15% bottom , 100px , right 15px bottom }
bgpos227471 { background-position: right 15% bottom 15% , 100px , right 15px bottom }
bgpos227472 { background-position: right 15% bottom 15px , 100px , right 15px bottom }
bgpos227473 { background-position: right 15% top , 100px , right 15px bottom }
bgpos227474 { background-position: right 15% top 15% , 100px , right 15px bottom }
bgpos227475 { background-position: right 15% top 15px , 100px , right 15px bottom }
bgpos227476 { background-position: right 15% center , 100px , right 15px bottom }
bgpos227477 { background-position: right 15px bottom , 100px , right 15px bottom }
bgpos227478 { background-position: right 15px bottom 15% , 100px , right 15px bottom }
bgpos227479 { background-position: right 15px bottom 15px , 100px , right 15px bottom }
bgpos227480 { background-position: right 15px top , 100px , right 15px bottom }
bgpos227481 { background-position: right 15px top 15% , 100px , right 15px bottom }
bgpos227482 { background-position: right 15px top 15px , 100px , right 15px bottom }
bgpos227483 { background-position: right 15px center , 100px , right 15px bottom }
bgpos227484 { background-position: right center , 100px , right 15px bottom }
bgpos227485 { background-position: 100px , 100px , right 15px bottom }
bgpos227486 { background-position: 100px 10% , 100px , right 15px bottom }
bgpos227487 { background-position: 100px 100px , 100px , right 15px bottom }
bgpos227488 { background-position: 100px bottom , 100px , right 15px bottom }
bgpos227489 { background-position: 100px center , 100px , right 15px bottom }
bgpos227490 { background-position: 100px top , 100px , right 15px bottom }
bgpos227491 { background-position: 50% , 100px , right 15px bottom }
bgpos227492 { background-position: 50% 10% , 100px , right 15px bottom }
bgpos227493 { background-position: 50% 100px , 100px , right 15px bottom }
bgpos227494 { background-position: 50% bottom , 100px , right 15px bottom }
bgpos227495 { background-position: 50% center , 100px , right 15px bottom }
bgpos227496 { background-position: 50% top , 100px , right 15px bottom }
bgpos227497 { background-position: bottom, 100px , right 15px bottom }
bgpos227498 { background-position: center , 100px , right 15px bottom }
bgpos227499 { background-position: center bottom , 100px , right 15px bottom }
bgpos227500 { background-position: center bottom 15% , 100px , right 15px bottom }
bgpos227501 { background-position: center bottom 15px , 100px , right 15px bottom }
bgpos227502 { background-position: center top , 100px , right 15px bottom }
bgpos227503 { background-position: center top 15% , 100px , right 15px bottom }
bgpos227504 { background-position: center top 15px , 100px , right 15px bottom }
bgpos227505 { background-position: center 10% , 100px , right 15px bottom }
bgpos227506 { background-position: center 100px , 100px , right 15px bottom }
bgpos227507 { background-position: center bottom , 100px , right 15px bottom }
bgpos227508 { background-position: center center , 100px , right 15px bottom }
bgpos227509 { background-position: center top , 100px , right 15px bottom }
bgpos227510 { background-position: left , 100px , right 15px bottom }
bgpos227511 { background-position: left 10% , 100px , right 15px bottom }
bgpos227512 { background-position: left 100px , 100px , right 15px bottom }
bgpos227513 { background-position: left bottom , 100px , right 15px bottom }
bgpos227514 { background-position: left center , 100px , right 15px bottom }
bgpos227515 { background-position: left top , 100px , right 15px bottom }
bgpos227516 { background-position: right , 100px , right 15px bottom }
bgpos227517 { background-position: right 10% , 100px , right 15px bottom }
bgpos227518 { background-position: right 100px , 100px , right 15px bottom }
bgpos227519 { background-position: right bottom , 100px , right 15px bottom }
bgpos227520 { background-position: right center , 100px , right 15px bottom }
bgpos227521 { background-position: right top , 100px , right 15px bottom }
bgpos227522 { background-position: top , 100px , right 15px bottom }
bgpos227523 { background-position: left bottom , 100px 10% , right 15px bottom }
bgpos227524 { background-position: left bottom 15% , 100px 10% , right 15px bottom }
bgpos227525 { background-position: left bottom 15px , 100px 10% , right 15px bottom }
bgpos227526 { background-position: left top , 100px 10% , right 15px bottom }
bgpos227527 { background-position: left top 15% , 100px 10% , right 15px bottom }
bgpos227528 { background-position: left top 15px , 100px 10% , right 15px bottom }
bgpos227529 { background-position: left 15% bottom , 100px 10% , right 15px bottom }
bgpos227530 { background-position: left 15% bottom 15% , 100px 10% , right 15px bottom }
bgpos227531 { background-position: left 15% bottom 15px , 100px 10% , right 15px bottom }
bgpos227532 { background-position: left 15% top , 100px 10% , right 15px bottom }
bgpos227533 { background-position: left 15% top 15% , 100px 10% , right 15px bottom }
bgpos227534 { background-position: left 15% top 15px , 100px 10% , right 15px bottom }
bgpos227535 { background-position: left 15% center , 100px 10% , right 15px bottom }
bgpos227536 { background-position: left 15px bottom , 100px 10% , right 15px bottom }
bgpos227537 { background-position: left 15px bottom 15% , 100px 10% , right 15px bottom }
bgpos227538 { background-position: left 15px bottom 15px , 100px 10% , right 15px bottom }
bgpos227539 { background-position: left 15px top , 100px 10% , right 15px bottom }
bgpos227540 { background-position: left 15px top 15% , 100px 10% , right 15px bottom }
bgpos227541 { background-position: left 15px top 15px , 100px 10% , right 15px bottom }
bgpos227542 { background-position: left 15px center , 100px 10% , right 15px bottom }
bgpos227543 { background-position: left center , 100px 10% , right 15px bottom }
bgpos227544 { background-position: right bottom , 100px 10% , right 15px bottom }
bgpos227545 { background-position: right bottom 15% , 100px 10% , right 15px bottom }
bgpos227546 { background-position: right bottom 15px , 100px 10% , right 15px bottom }
bgpos227547 { background-position: right top , 100px 10% , right 15px bottom }
bgpos227548 { background-position: right top 15% , 100px 10% , right 15px bottom }
bgpos227549 { background-position: right top 15px , 100px 10% , right 15px bottom }
bgpos227550 { background-position: right 15% bottom , 100px 10% , right 15px bottom }
bgpos227551 { background-position: right 15% bottom 15% , 100px 10% , right 15px bottom }
bgpos227552 { background-position: right 15% bottom 15px , 100px 10% , right 15px bottom }
bgpos227553 { background-position: right 15% top , 100px 10% , right 15px bottom }
bgpos227554 { background-position: right 15% top 15% , 100px 10% , right 15px bottom }
bgpos227555 { background-position: right 15% top 15px , 100px 10% , right 15px bottom }
bgpos227556 { background-position: right 15% center , 100px 10% , right 15px bottom }
bgpos227557 { background-position: right 15px bottom , 100px 10% , right 15px bottom }
bgpos227558 { background-position: right 15px bottom 15% , 100px 10% , right 15px bottom }
bgpos227559 { background-position: right 15px bottom 15px , 100px 10% , right 15px bottom }
bgpos227560 { background-position: right 15px top , 100px 10% , right 15px bottom }
bgpos227561 { background-position: right 15px top 15% , 100px 10% , right 15px bottom }
bgpos227562 { background-position: right 15px top 15px , 100px 10% , right 15px bottom }
bgpos227563 { background-position: right 15px center , 100px 10% , right 15px bottom }
bgpos227564 { background-position: right center , 100px 10% , right 15px bottom }
bgpos227565 { background-position: 100px , 100px 10% , right 15px bottom }
bgpos227566 { background-position: 100px 10% , 100px 10% , right 15px bottom }
bgpos227567 { background-position: 100px 100px , 100px 10% , right 15px bottom }
bgpos227568 { background-position: 100px bottom , 100px 10% , right 15px bottom }
bgpos227569 { background-position: 100px center , 100px 10% , right 15px bottom }
bgpos227570 { background-position: 100px top , 100px 10% , right 15px bottom }
bgpos227571 { background-position: 50% , 100px 10% , right 15px bottom }
bgpos227572 { background-position: 50% 10% , 100px 10% , right 15px bottom }
bgpos227573 { background-position: 50% 100px , 100px 10% , right 15px bottom }
bgpos227574 { background-position: 50% bottom , 100px 10% , right 15px bottom }
bgpos227575 { background-position: 50% center , 100px 10% , right 15px bottom }
bgpos227576 { background-position: 50% top , 100px 10% , right 15px bottom }
bgpos227577 { background-position: bottom, 100px 10% , right 15px bottom }
bgpos227578 { background-position: center , 100px 10% , right 15px bottom }
bgpos227579 { background-position: center bottom , 100px 10% , right 15px bottom }
bgpos227580 { background-position: center bottom 15% , 100px 10% , right 15px bottom }
bgpos227581 { background-position: center bottom 15px , 100px 10% , right 15px bottom }
bgpos227582 { background-position: center top , 100px 10% , right 15px bottom }
bgpos227583 { background-position: center top 15% , 100px 10% , right 15px bottom }
bgpos227584 { background-position: center top 15px , 100px 10% , right 15px bottom }
bgpos227585 { background-position: center 10% , 100px 10% , right 15px bottom }
bgpos227586 { background-position: center 100px , 100px 10% , right 15px bottom }
bgpos227587 { background-position: center bottom , 100px 10% , right 15px bottom }
bgpos227588 { background-position: center center , 100px 10% , right 15px bottom }
bgpos227589 { background-position: center top , 100px 10% , right 15px bottom }
bgpos227590 { background-position: left , 100px 10% , right 15px bottom }
bgpos227591 { background-position: left 10% , 100px 10% , right 15px bottom }
bgpos227592 { background-position: left 100px , 100px 10% , right 15px bottom }
bgpos227593 { background-position: left bottom , 100px 10% , right 15px bottom }
bgpos227594 { background-position: left center , 100px 10% , right 15px bottom }
bgpos227595 { background-position: left top , 100px 10% , right 15px bottom }
bgpos227596 { background-position: right , 100px 10% , right 15px bottom }
bgpos227597 { background-position: right 10% , 100px 10% , right 15px bottom }
bgpos227598 { background-position: right 100px , 100px 10% , right 15px bottom }
bgpos227599 { background-position: right bottom , 100px 10% , right 15px bottom }
bgpos227600 { background-position: right center , 100px 10% , right 15px bottom }
bgpos227601 { background-position: right top , 100px 10% , right 15px bottom }
bgpos227602 { background-position: top , 100px 10% , right 15px bottom }
bgpos227603 { background-position: left bottom , 100px 100px , right 15px bottom }
bgpos227604 { background-position: left bottom 15% , 100px 100px , right 15px bottom }
bgpos227605 { background-position: left bottom 15px , 100px 100px , right 15px bottom }
bgpos227606 { background-position: left top , 100px 100px , right 15px bottom }
bgpos227607 { background-position: left top 15% , 100px 100px , right 15px bottom }
bgpos227608 { background-position: left top 15px , 100px 100px , right 15px bottom }
bgpos227609 { background-position: left 15% bottom , 100px 100px , right 15px bottom }
bgpos227610 { background-position: left 15% bottom 15% , 100px 100px , right 15px bottom }
bgpos227611 { background-position: left 15% bottom 15px , 100px 100px , right 15px bottom }
bgpos227612 { background-position: left 15% top , 100px 100px , right 15px bottom }
bgpos227613 { background-position: left 15% top 15% , 100px 100px , right 15px bottom }
bgpos227614 { background-position: left 15% top 15px , 100px 100px , right 15px bottom }
bgpos227615 { background-position: left 15% center , 100px 100px , right 15px bottom }
bgpos227616 { background-position: left 15px bottom , 100px 100px , right 15px bottom }
bgpos227617 { background-position: left 15px bottom 15% , 100px 100px , right 15px bottom }
bgpos227618 { background-position: left 15px bottom 15px , 100px 100px , right 15px bottom }
bgpos227619 { background-position: left 15px top , 100px 100px , right 15px bottom }
bgpos227620 { background-position: left 15px top 15% , 100px 100px , right 15px bottom }
bgpos227621 { background-position: left 15px top 15px , 100px 100px , right 15px bottom }
bgpos227622 { background-position: left 15px center , 100px 100px , right 15px bottom }
bgpos227623 { background-position: left center , 100px 100px , right 15px bottom }
bgpos227624 { background-position: right bottom , 100px 100px , right 15px bottom }
bgpos227625 { background-position: right bottom 15% , 100px 100px , right 15px bottom }
bgpos227626 { background-position: right bottom 15px , 100px 100px , right 15px bottom }
bgpos227627 { background-position: right top , 100px 100px , right 15px bottom }
bgpos227628 { background-position: right top 15% , 100px 100px , right 15px bottom }
bgpos227629 { background-position: right top 15px , 100px 100px , right 15px bottom }
bgpos227630 { background-position: right 15% bottom , 100px 100px , right 15px bottom }
bgpos227631 { background-position: right 15% bottom 15% , 100px 100px , right 15px bottom }
bgpos227632 { background-position: right 15% bottom 15px , 100px 100px , right 15px bottom }
bgpos227633 { background-position: right 15% top , 100px 100px , right 15px bottom }
bgpos227634 { background-position: right 15% top 15% , 100px 100px , right 15px bottom }
bgpos227635 { background-position: right 15% top 15px , 100px 100px , right 15px bottom }
bgpos227636 { background-position: right 15% center , 100px 100px , right 15px bottom }
bgpos227637 { background-position: right 15px bottom , 100px 100px , right 15px bottom }
bgpos227638 { background-position: right 15px bottom 15% , 100px 100px , right 15px bottom }
bgpos227639 { background-position: right 15px bottom 15px , 100px 100px , right 15px bottom }
bgpos227640 { background-position: right 15px top , 100px 100px , right 15px bottom }
bgpos227641 { background-position: right 15px top 15% , 100px 100px , right 15px bottom }
bgpos227642 { background-position: right 15px top 15px , 100px 100px , right 15px bottom }
bgpos227643 { background-position: right 15px center , 100px 100px , right 15px bottom }
bgpos227644 { background-position: right center , 100px 100px , right 15px bottom }
bgpos227645 { background-position: 100px , 100px 100px , right 15px bottom }
bgpos227646 { background-position: 100px 10% , 100px 100px , right 15px bottom }
bgpos227647 { background-position: 100px 100px , 100px 100px , right 15px bottom }
bgpos227648 { background-position: 100px bottom , 100px 100px , right 15px bottom }
bgpos227649 { background-position: 100px center , 100px 100px , right 15px bottom }
bgpos227650 { background-position: 100px top , 100px 100px , right 15px bottom }
bgpos227651 { background-position: 50% , 100px 100px , right 15px bottom }
bgpos227652 { background-position: 50% 10% , 100px 100px , right 15px bottom }
bgpos227653 { background-position: 50% 100px , 100px 100px , right 15px bottom }
bgpos227654 { background-position: 50% bottom , 100px 100px , right 15px bottom }
bgpos227655 { background-position: 50% center , 100px 100px , right 15px bottom }
bgpos227656 { background-position: 50% top , 100px 100px , right 15px bottom }
bgpos227657 { background-position: bottom, 100px 100px , right 15px bottom }
bgpos227658 { background-position: center , 100px 100px , right 15px bottom }
bgpos227659 { background-position: center bottom , 100px 100px , right 15px bottom }
bgpos227660 { background-position: center bottom 15% , 100px 100px , right 15px bottom }
bgpos227661 { background-position: center bottom 15px , 100px 100px , right 15px bottom }
bgpos227662 { background-position: center top , 100px 100px , right 15px bottom }
bgpos227663 { background-position: center top 15% , 100px 100px , right 15px bottom }
bgpos227664 { background-position: center top 15px , 100px 100px , right 15px bottom }
bgpos227665 { background-position: center 10% , 100px 100px , right 15px bottom }
bgpos227666 { background-position: center 100px , 100px 100px , right 15px bottom }
bgpos227667 { background-position: center bottom , 100px 100px , right 15px bottom }
bgpos227668 { background-position: center center , 100px 100px , right 15px bottom }
bgpos227669 { background-position: center top , 100px 100px , right 15px bottom }
bgpos227670 { background-position: left , 100px 100px , right 15px bottom }
bgpos227671 { background-position: left 10% , 100px 100px , right 15px bottom }
bgpos227672 { background-position: left 100px , 100px 100px , right 15px bottom }
bgpos227673 { background-position: left bottom , 100px 100px , right 15px bottom }
bgpos227674 { background-position: left center , 100px 100px , right 15px bottom }
bgpos227675 { background-position: left top , 100px 100px , right 15px bottom }
bgpos227676 { background-position: right , 100px 100px , right 15px bottom }
bgpos227677 { background-position: right 10% , 100px 100px , right 15px bottom }
bgpos227678 { background-position: right 100px , 100px 100px , right 15px bottom }
bgpos227679 { background-position: right bottom , 100px 100px , right 15px bottom }
bgpos227680 { background-position: right center , 100px 100px , right 15px bottom }
bgpos227681 { background-position: right top , 100px 100px , right 15px bottom }
bgpos227682 { background-position: top , 100px 100px , right 15px bottom }
bgpos227683 { background-position: left bottom , 100px bottom , right 15px bottom }
bgpos227684 { background-position: left bottom 15% , 100px bottom , right 15px bottom }
bgpos227685 { background-position: left bottom 15px , 100px bottom , right 15px bottom }
bgpos227686 { background-position: left top , 100px bottom , right 15px bottom }
bgpos227687 { background-position: left top 15% , 100px bottom , right 15px bottom }
bgpos227688 { background-position: left top 15px , 100px bottom , right 15px bottom }
bgpos227689 { background-position: left 15% bottom , 100px bottom , right 15px bottom }
bgpos227690 { background-position: left 15% bottom 15% , 100px bottom , right 15px bottom }
bgpos227691 { background-position: left 15% bottom 15px , 100px bottom , right 15px bottom }
bgpos227692 { background-position: left 15% top , 100px bottom , right 15px bottom }
bgpos227693 { background-position: left 15% top 15% , 100px bottom , right 15px bottom }
bgpos227694 { background-position: left 15% top 15px , 100px bottom , right 15px bottom }
bgpos227695 { background-position: left 15% center , 100px bottom , right 15px bottom }
bgpos227696 { background-position: left 15px bottom , 100px bottom , right 15px bottom }
bgpos227697 { background-position: left 15px bottom 15% , 100px bottom , right 15px bottom }
bgpos227698 { background-position: left 15px bottom 15px , 100px bottom , right 15px bottom }
bgpos227699 { background-position: left 15px top , 100px bottom , right 15px bottom }
bgpos227700 { background-position: left 15px top 15% , 100px bottom , right 15px bottom }
bgpos227701 { background-position: left 15px top 15px , 100px bottom , right 15px bottom }
bgpos227702 { background-position: left 15px center , 100px bottom , right 15px bottom }
bgpos227703 { background-position: left center , 100px bottom , right 15px bottom }
bgpos227704 { background-position: right bottom , 100px bottom , right 15px bottom }
bgpos227705 { background-position: right bottom 15% , 100px bottom , right 15px bottom }
bgpos227706 { background-position: right bottom 15px , 100px bottom , right 15px bottom }
bgpos227707 { background-position: right top , 100px bottom , right 15px bottom }
bgpos227708 { background-position: right top 15% , 100px bottom , right 15px bottom }
bgpos227709 { background-position: right top 15px , 100px bottom , right 15px bottom }
bgpos227710 { background-position: right 15% bottom , 100px bottom , right 15px bottom }
bgpos227711 { background-position: right 15% bottom 15% , 100px bottom , right 15px bottom }
bgpos227712 { background-position: right 15% bottom 15px , 100px bottom , right 15px bottom }
bgpos227713 { background-position: right 15% top , 100px bottom , right 15px bottom }
bgpos227714 { background-position: right 15% top 15% , 100px bottom , right 15px bottom }
bgpos227715 { background-position: right 15% top 15px , 100px bottom , right 15px bottom }
bgpos227716 { background-position: right 15% center , 100px bottom , right 15px bottom }
bgpos227717 { background-position: right 15px bottom , 100px bottom , right 15px bottom }
bgpos227718 { background-position: right 15px bottom 15% , 100px bottom , right 15px bottom }
bgpos227719 { background-position: right 15px bottom 15px , 100px bottom , right 15px bottom }
bgpos227720 { background-position: right 15px top , 100px bottom , right 15px bottom }
bgpos227721 { background-position: right 15px top 15% , 100px bottom , right 15px bottom }
bgpos227722 { background-position: right 15px top 15px , 100px bottom , right 15px bottom }
bgpos227723 { background-position: right 15px center , 100px bottom , right 15px bottom }
bgpos227724 { background-position: right center , 100px bottom , right 15px bottom }
bgpos227725 { background-position: 100px , 100px bottom , right 15px bottom }
bgpos227726 { background-position: 100px 10% , 100px bottom , right 15px bottom }
bgpos227727 { background-position: 100px 100px , 100px bottom , right 15px bottom }
bgpos227728 { background-position: 100px bottom , 100px bottom , right 15px bottom }
bgpos227729 { background-position: 100px center , 100px bottom , right 15px bottom }
bgpos227730 { background-position: 100px top , 100px bottom , right 15px bottom }
bgpos227731 { background-position: 50% , 100px bottom , right 15px bottom }
bgpos227732 { background-position: 50% 10% , 100px bottom , right 15px bottom }
bgpos227733 { background-position: 50% 100px , 100px bottom , right 15px bottom }
bgpos227734 { background-position: 50% bottom , 100px bottom , right 15px bottom }
bgpos227735 { background-position: 50% center , 100px bottom , right 15px bottom }
bgpos227736 { background-position: 50% top , 100px bottom , right 15px bottom }
bgpos227737 { background-position: bottom, 100px bottom , right 15px bottom }
bgpos227738 { background-position: center , 100px bottom , right 15px bottom }
bgpos227739 { background-position: center bottom , 100px bottom , right 15px bottom }
bgpos227740 { background-position: center bottom 15% , 100px bottom , right 15px bottom }
bgpos227741 { background-position: center bottom 15px , 100px bottom , right 15px bottom }
bgpos227742 { background-position: center top , 100px bottom , right 15px bottom }
bgpos227743 { background-position: center top 15% , 100px bottom , right 15px bottom }
bgpos227744 { background-position: center top 15px , 100px bottom , right 15px bottom }
bgpos227745 { background-position: center 10% , 100px bottom , right 15px bottom }
bgpos227746 { background-position: center 100px , 100px bottom , right 15px bottom }
bgpos227747 { background-position: center bottom , 100px bottom , right 15px bottom }
bgpos227748 { background-position: center center , 100px bottom , right 15px bottom }
bgpos227749 { background-position: center top , 100px bottom , right 15px bottom }
bgpos227750 { background-position: left , 100px bottom , right 15px bottom }
bgpos227751 { background-position: left 10% , 100px bottom , right 15px bottom }
bgpos227752 { background-position: left 100px , 100px bottom , right 15px bottom }
bgpos227753 { background-position: left bottom , 100px bottom , right 15px bottom }
bgpos227754 { background-position: left center , 100px bottom , right 15px bottom }
bgpos227755 { background-position: left top , 100px bottom , right 15px bottom }
bgpos227756 { background-position: right , 100px bottom , right 15px bottom }
bgpos227757 { background-position: right 10% , 100px bottom , right 15px bottom }
bgpos227758 { background-position: right 100px , 100px bottom , right 15px bottom }
bgpos227759 { background-position: right bottom , 100px bottom , right 15px bottom }
bgpos227760 { background-position: right center , 100px bottom , right 15px bottom }
bgpos227761 { background-position: right top , 100px bottom , right 15px bottom }
bgpos227762 { background-position: top , 100px bottom , right 15px bottom }
bgpos227763 { background-position: left bottom , 100px center , right 15px bottom }
bgpos227764 { background-position: left bottom 15% , 100px center , right 15px bottom }
bgpos227765 { background-position: left bottom 15px , 100px center , right 15px bottom }
bgpos227766 { background-position: left top , 100px center , right 15px bottom }
bgpos227767 { background-position: left top 15% , 100px center , right 15px bottom }
bgpos227768 { background-position: left top 15px , 100px center , right 15px bottom }
bgpos227769 { background-position: left 15% bottom , 100px center , right 15px bottom }
bgpos227770 { background-position: left 15% bottom 15% , 100px center , right 15px bottom }
bgpos227771 { background-position: left 15% bottom 15px , 100px center , right 15px bottom }
bgpos227772 { background-position: left 15% top , 100px center , right 15px bottom }
bgpos227773 { background-position: left 15% top 15% , 100px center , right 15px bottom }
bgpos227774 { background-position: left 15% top 15px , 100px center , right 15px bottom }
bgpos227775 { background-position: left 15% center , 100px center , right 15px bottom }
bgpos227776 { background-position: left 15px bottom , 100px center , right 15px bottom }
bgpos227777 { background-position: left 15px bottom 15% , 100px center , right 15px bottom }
bgpos227778 { background-position: left 15px bottom 15px , 100px center , right 15px bottom }
bgpos227779 { background-position: left 15px top , 100px center , right 15px bottom }
bgpos227780 { background-position: left 15px top 15% , 100px center , right 15px bottom }
bgpos227781 { background-position: left 15px top 15px , 100px center , right 15px bottom }
bgpos227782 { background-position: left 15px center , 100px center , right 15px bottom }
bgpos227783 { background-position: left center , 100px center , right 15px bottom }
bgpos227784 { background-position: right bottom , 100px center , right 15px bottom }
bgpos227785 { background-position: right bottom 15% , 100px center , right 15px bottom }
bgpos227786 { background-position: right bottom 15px , 100px center , right 15px bottom }
bgpos227787 { background-position: right top , 100px center , right 15px bottom }
bgpos227788 { background-position: right top 15% , 100px center , right 15px bottom }
bgpos227789 { background-position: right top 15px , 100px center , right 15px bottom }
bgpos227790 { background-position: right 15% bottom , 100px center , right 15px bottom }
bgpos227791 { background-position: right 15% bottom 15% , 100px center , right 15px bottom }
bgpos227792 { background-position: right 15% bottom 15px , 100px center , right 15px bottom }
bgpos227793 { background-position: right 15% top , 100px center , right 15px bottom }
bgpos227794 { background-position: right 15% top 15% , 100px center , right 15px bottom }
bgpos227795 { background-position: right 15% top 15px , 100px center , right 15px bottom }
bgpos227796 { background-position: right 15% center , 100px center , right 15px bottom }
bgpos227797 { background-position: right 15px bottom , 100px center , right 15px bottom }
bgpos227798 { background-position: right 15px bottom 15% , 100px center , right 15px bottom }
bgpos227799 { background-position: right 15px bottom 15px , 100px center , right 15px bottom }
bgpos227800 { background-position: right 15px top , 100px center , right 15px bottom }
bgpos227801 { background-position: right 15px top 15% , 100px center , right 15px bottom }
bgpos227802 { background-position: right 15px top 15px , 100px center , right 15px bottom }
bgpos227803 { background-position: right 15px center , 100px center , right 15px bottom }
bgpos227804 { background-position: right center , 100px center , right 15px bottom }
bgpos227805 { background-position: 100px , 100px center , right 15px bottom }
bgpos227806 { background-position: 100px 10% , 100px center , right 15px bottom }
bgpos227807 { background-position: 100px 100px , 100px center , right 15px bottom }
bgpos227808 { background-position: 100px bottom , 100px center , right 15px bottom }
bgpos227809 { background-position: 100px center , 100px center , right 15px bottom }
bgpos227810 { background-position: 100px top , 100px center , right 15px bottom }
bgpos227811 { background-position: 50% , 100px center , right 15px bottom }
bgpos227812 { background-position: 50% 10% , 100px center , right 15px bottom }
bgpos227813 { background-position: 50% 100px , 100px center , right 15px bottom }
bgpos227814 { background-position: 50% bottom , 100px center , right 15px bottom }
bgpos227815 { background-position: 50% center , 100px center , right 15px bottom }
bgpos227816 { background-position: 50% top , 100px center , right 15px bottom }
bgpos227817 { background-position: bottom, 100px center , right 15px bottom }
bgpos227818 { background-position: center , 100px center , right 15px bottom }
bgpos227819 { background-position: center bottom , 100px center , right 15px bottom }
bgpos227820 { background-position: center bottom 15% , 100px center , right 15px bottom }
bgpos227821 { background-position: center bottom 15px , 100px center , right 15px bottom }
bgpos227822 { background-position: center top , 100px center , right 15px bottom }
bgpos227823 { background-position: center top 15% , 100px center , right 15px bottom }
bgpos227824 { background-position: center top 15px , 100px center , right 15px bottom }
bgpos227825 { background-position: center 10% , 100px center , right 15px bottom }
bgpos227826 { background-position: center 100px , 100px center , right 15px bottom }
bgpos227827 { background-position: center bottom , 100px center , right 15px bottom }
bgpos227828 { background-position: center center , 100px center , right 15px bottom }
bgpos227829 { background-position: center top , 100px center , right 15px bottom }
bgpos227830 { background-position: left , 100px center , right 15px bottom }
bgpos227831 { background-position: left 10% , 100px center , right 15px bottom }
bgpos227832 { background-position: left 100px , 100px center , right 15px bottom }
bgpos227833 { background-position: left bottom , 100px center , right 15px bottom }
bgpos227834 { background-position: left center , 100px center , right 15px bottom }
bgpos227835 { background-position: left top , 100px center , right 15px bottom }
bgpos227836 { background-position: right , 100px center , right 15px bottom }
bgpos227837 { background-position: right 10% , 100px center , right 15px bottom }
bgpos227838 { background-position: right 100px , 100px center , right 15px bottom }
bgpos227839 { background-position: right bottom , 100px center , right 15px bottom }
bgpos227840 { background-position: right center , 100px center , right 15px bottom }
bgpos227841 { background-position: right top , 100px center , right 15px bottom }
bgpos227842 { background-position: top , 100px center , right 15px bottom }
bgpos227843 { background-position: left bottom , 100px top , right 15px bottom }
bgpos227844 { background-position: left bottom 15% , 100px top , right 15px bottom }
bgpos227845 { background-position: left bottom 15px , 100px top , right 15px bottom }
bgpos227846 { background-position: left top , 100px top , right 15px bottom }
bgpos227847 { background-position: left top 15% , 100px top , right 15px bottom }
bgpos227848 { background-position: left top 15px , 100px top , right 15px bottom }
bgpos227849 { background-position: left 15% bottom , 100px top , right 15px bottom }
bgpos227850 { background-position: left 15% bottom 15% , 100px top , right 15px bottom }
bgpos227851 { background-position: left 15% bottom 15px , 100px top , right 15px bottom }
bgpos227852 { background-position: left 15% top , 100px top , right 15px bottom }
bgpos227853 { background-position: left 15% top 15% , 100px top , right 15px bottom }
bgpos227854 { background-position: left 15% top 15px , 100px top , right 15px bottom }
bgpos227855 { background-position: left 15% center , 100px top , right 15px bottom }
bgpos227856 { background-position: left 15px bottom , 100px top , right 15px bottom }
bgpos227857 { background-position: left 15px bottom 15% , 100px top , right 15px bottom }
bgpos227858 { background-position: left 15px bottom 15px , 100px top , right 15px bottom }
bgpos227859 { background-position: left 15px top , 100px top , right 15px bottom }
bgpos227860 { background-position: left 15px top 15% , 100px top , right 15px bottom }
bgpos227861 { background-position: left 15px top 15px , 100px top , right 15px bottom }
bgpos227862 { background-position: left 15px center , 100px top , right 15px bottom }
bgpos227863 { background-position: left center , 100px top , right 15px bottom }
bgpos227864 { background-position: right bottom , 100px top , right 15px bottom }
bgpos227865 { background-position: right bottom 15% , 100px top , right 15px bottom }
bgpos227866 { background-position: right bottom 15px , 100px top , right 15px bottom }
bgpos227867 { background-position: right top , 100px top , right 15px bottom }
bgpos227868 { background-position: right top 15% , 100px top , right 15px bottom }
bgpos227869 { background-position: right top 15px , 100px top , right 15px bottom }
bgpos227870 { background-position: right 15% bottom , 100px top , right 15px bottom }
bgpos227871 { background-position: right 15% bottom 15% , 100px top , right 15px bottom }
bgpos227872 { background-position: right 15% bottom 15px , 100px top , right 15px bottom }
bgpos227873 { background-position: right 15% top , 100px top , right 15px bottom }
bgpos227874 { background-position: right 15% top 15% , 100px top , right 15px bottom }
bgpos227875 { background-position: right 15% top 15px , 100px top , right 15px bottom }
bgpos227876 { background-position: right 15% center , 100px top , right 15px bottom }
bgpos227877 { background-position: right 15px bottom , 100px top , right 15px bottom }
bgpos227878 { background-position: right 15px bottom 15% , 100px top , right 15px bottom }
bgpos227879 { background-position: right 15px bottom 15px , 100px top , right 15px bottom }
bgpos227880 { background-position: right 15px top , 100px top , right 15px bottom }
bgpos227881 { background-position: right 15px top 15% , 100px top , right 15px bottom }
bgpos227882 { background-position: right 15px top 15px , 100px top , right 15px bottom }
bgpos227883 { background-position: right 15px center , 100px top , right 15px bottom }
bgpos227884 { background-position: right center , 100px top , right 15px bottom }
bgpos227885 { background-position: 100px , 100px top , right 15px bottom }
bgpos227886 { background-position: 100px 10% , 100px top , right 15px bottom }
bgpos227887 { background-position: 100px 100px , 100px top , right 15px bottom }
bgpos227888 { background-position: 100px bottom , 100px top , right 15px bottom }
bgpos227889 { background-position: 100px center , 100px top , right 15px bottom }
bgpos227890 { background-position: 100px top , 100px top , right 15px bottom }
bgpos227891 { background-position: 50% , 100px top , right 15px bottom }
bgpos227892 { background-position: 50% 10% , 100px top , right 15px bottom }
bgpos227893 { background-position: 50% 100px , 100px top , right 15px bottom }
bgpos227894 { background-position: 50% bottom , 100px top , right 15px bottom }
bgpos227895 { background-position: 50% center , 100px top , right 15px bottom }
bgpos227896 { background-position: 50% top , 100px top , right 15px bottom }
bgpos227897 { background-position: bottom, 100px top , right 15px bottom }
bgpos227898 { background-position: center , 100px top , right 15px bottom }
bgpos227899 { background-position: center bottom , 100px top , right 15px bottom }
bgpos227900 { background-position: center bottom 15% , 100px top , right 15px bottom }
bgpos227901 { background-position: center bottom 15px , 100px top , right 15px bottom }
bgpos227902 { background-position: center top , 100px top , right 15px bottom }
bgpos227903 { background-position: center top 15% , 100px top , right 15px bottom }
bgpos227904 { background-position: center top 15px , 100px top , right 15px bottom }
bgpos227905 { background-position: center 10% , 100px top , right 15px bottom }
bgpos227906 { background-position: center 100px , 100px top , right 15px bottom }
bgpos227907 { background-position: center bottom , 100px top , right 15px bottom }
bgpos227908 { background-position: center center , 100px top , right 15px bottom }
bgpos227909 { background-position: center top , 100px top , right 15px bottom }
bgpos227910 { background-position: left , 100px top , right 15px bottom }
bgpos227911 { background-position: left 10% , 100px top , right 15px bottom }
bgpos227912 { background-position: left 100px , 100px top , right 15px bottom }
bgpos227913 { background-position: left bottom , 100px top , right 15px bottom }
bgpos227914 { background-position: left center , 100px top , right 15px bottom }
bgpos227915 { background-position: left top , 100px top , right 15px bottom }
bgpos227916 { background-position: right , 100px top , right 15px bottom }
bgpos227917 { background-position: right 10% , 100px top , right 15px bottom }
bgpos227918 { background-position: right 100px , 100px top , right 15px bottom }
bgpos227919 { background-position: right bottom , 100px top , right 15px bottom }
bgpos227920 { background-position: right center , 100px top , right 15px bottom }
bgpos227921 { background-position: right top , 100px top , right 15px bottom }
bgpos227922 { background-position: top , 100px top , right 15px bottom }
bgpos227923 { background-position: left bottom , 50% , right 15px bottom }
bgpos227924 { background-position: left bottom 15% , 50% , right 15px bottom }
bgpos227925 { background-position: left bottom 15px , 50% , right 15px bottom }
bgpos227926 { background-position: left top , 50% , right 15px bottom }
bgpos227927 { background-position: left top 15% , 50% , right 15px bottom }
bgpos227928 { background-position: left top 15px , 50% , right 15px bottom }
bgpos227929 { background-position: left 15% bottom , 50% , right 15px bottom }
bgpos227930 { background-position: left 15% bottom 15% , 50% , right 15px bottom }
bgpos227931 { background-position: left 15% bottom 15px , 50% , right 15px bottom }
bgpos227932 { background-position: left 15% top , 50% , right 15px bottom }
bgpos227933 { background-position: left 15% top 15% , 50% , right 15px bottom }
bgpos227934 { background-position: left 15% top 15px , 50% , right 15px bottom }
bgpos227935 { background-position: left 15% center , 50% , right 15px bottom }
bgpos227936 { background-position: left 15px bottom , 50% , right 15px bottom }
bgpos227937 { background-position: left 15px bottom 15% , 50% , right 15px bottom }
bgpos227938 { background-position: left 15px bottom 15px , 50% , right 15px bottom }
bgpos227939 { background-position: left 15px top , 50% , right 15px bottom }
bgpos227940 { background-position: left 15px top 15% , 50% , right 15px bottom }
bgpos227941 { background-position: left 15px top 15px , 50% , right 15px bottom }
bgpos227942 { background-position: left 15px center , 50% , right 15px bottom }
bgpos227943 { background-position: left center , 50% , right 15px bottom }
bgpos227944 { background-position: right bottom , 50% , right 15px bottom }
bgpos227945 { background-position: right bottom 15% , 50% , right 15px bottom }
bgpos227946 { background-position: right bottom 15px , 50% , right 15px bottom }
bgpos227947 { background-position: right top , 50% , right 15px bottom }
bgpos227948 { background-position: right top 15% , 50% , right 15px bottom }
bgpos227949 { background-position: right top 15px , 50% , right 15px bottom }
bgpos227950 { background-position: right 15% bottom , 50% , right 15px bottom }
bgpos227951 { background-position: right 15% bottom 15% , 50% , right 15px bottom }
bgpos227952 { background-position: right 15% bottom 15px , 50% , right 15px bottom }
bgpos227953 { background-position: right 15% top , 50% , right 15px bottom }
bgpos227954 { background-position: right 15% top 15% , 50% , right 15px bottom }
bgpos227955 { background-position: right 15% top 15px , 50% , right 15px bottom }
bgpos227956 { background-position: right 15% center , 50% , right 15px bottom }
bgpos227957 { background-position: right 15px bottom , 50% , right 15px bottom }
bgpos227958 { background-position: right 15px bottom 15% , 50% , right 15px bottom }
bgpos227959 { background-position: right 15px bottom 15px , 50% , right 15px bottom }
bgpos227960 { background-position: right 15px top , 50% , right 15px bottom }
bgpos227961 { background-position: right 15px top 15% , 50% , right 15px bottom }
bgpos227962 { background-position: right 15px top 15px , 50% , right 15px bottom }
bgpos227963 { background-position: right 15px center , 50% , right 15px bottom }
bgpos227964 { background-position: right center , 50% , right 15px bottom }
bgpos227965 { background-position: 100px , 50% , right 15px bottom }
bgpos227966 { background-position: 100px 10% , 50% , right 15px bottom }
bgpos227967 { background-position: 100px 100px , 50% , right 15px bottom }
bgpos227968 { background-position: 100px bottom , 50% , right 15px bottom }
bgpos227969 { background-position: 100px center , 50% , right 15px bottom }
bgpos227970 { background-position: 100px top , 50% , right 15px bottom }
bgpos227971 { background-position: 50% , 50% , right 15px bottom }
bgpos227972 { background-position: 50% 10% , 50% , right 15px bottom }
bgpos227973 { background-position: 50% 100px , 50% , right 15px bottom }
bgpos227974 { background-position: 50% bottom , 50% , right 15px bottom }
bgpos227975 { background-position: 50% center , 50% , right 15px bottom }
bgpos227976 { background-position: 50% top , 50% , right 15px bottom }
bgpos227977 { background-position: bottom, 50% , right 15px bottom }
bgpos227978 { background-position: center , 50% , right 15px bottom }
bgpos227979 { background-position: center bottom , 50% , right 15px bottom }
bgpos227980 { background-position: center bottom 15% , 50% , right 15px bottom }
bgpos227981 { background-position: center bottom 15px , 50% , right 15px bottom }
bgpos227982 { background-position: center top , 50% , right 15px bottom }
bgpos227983 { background-position: center top 15% , 50% , right 15px bottom }
bgpos227984 { background-position: center top 15px , 50% , right 15px bottom }
bgpos227985 { background-position: center 10% , 50% , right 15px bottom }
bgpos227986 { background-position: center 100px , 50% , right 15px bottom }
bgpos227987 { background-position: center bottom , 50% , right 15px bottom }
bgpos227988 { background-position: center center , 50% , right 15px bottom }
bgpos227989 { background-position: center top , 50% , right 15px bottom }
bgpos227990 { background-position: left , 50% , right 15px bottom }
bgpos227991 { background-position: left 10% , 50% , right 15px bottom }
bgpos227992 { background-position: left 100px , 50% , right 15px bottom }
bgpos227993 { background-position: left bottom , 50% , right 15px bottom }
bgpos227994 { background-position: left center , 50% , right 15px bottom }
bgpos227995 { background-position: left top , 50% , right 15px bottom }
bgpos227996 { background-position: right , 50% , right 15px bottom }
bgpos227997 { background-position: right 10% , 50% , right 15px bottom }
bgpos227998 { background-position: right 100px , 50% , right 15px bottom }
bgpos227999 { background-position: right bottom , 50% , right 15px bottom }
bgpos228000 { background-position: right center , 50% , right 15px bottom }
bgpos228001 { background-position: right top , 50% , right 15px bottom }
bgpos228002 { background-position: top , 50% , right 15px bottom }
bgpos228003 { background-position: left bottom , 50% 10% , right 15px bottom }
bgpos228004 { background-position: left bottom 15% , 50% 10% , right 15px bottom }
bgpos228005 { background-position: left bottom 15px , 50% 10% , right 15px bottom }
bgpos228006 { background-position: left top , 50% 10% , right 15px bottom }
bgpos228007 { background-position: left top 15% , 50% 10% , right 15px bottom }
bgpos228008 { background-position: left top 15px , 50% 10% , right 15px bottom }
bgpos228009 { background-position: left 15% bottom , 50% 10% , right 15px bottom }
bgpos228010 { background-position: left 15% bottom 15% , 50% 10% , right 15px bottom }
bgpos228011 { background-position: left 15% bottom 15px , 50% 10% , right 15px bottom }
bgpos228012 { background-position: left 15% top , 50% 10% , right 15px bottom }
bgpos228013 { background-position: left 15% top 15% , 50% 10% , right 15px bottom }
bgpos228014 { background-position: left 15% top 15px , 50% 10% , right 15px bottom }
bgpos228015 { background-position: left 15% center , 50% 10% , right 15px bottom }
bgpos228016 { background-position: left 15px bottom , 50% 10% , right 15px bottom }
bgpos228017 { background-position: left 15px bottom 15% , 50% 10% , right 15px bottom }
bgpos228018 { background-position: left 15px bottom 15px , 50% 10% , right 15px bottom }
bgpos228019 { background-position: left 15px top , 50% 10% , right 15px bottom }
bgpos228020 { background-position: left 15px top 15% , 50% 10% , right 15px bottom }
bgpos228021 { background-position: left 15px top 15px , 50% 10% , right 15px bottom }
bgpos228022 { background-position: left 15px center , 50% 10% , right 15px bottom }
bgpos228023 { background-position: left center , 50% 10% , right 15px bottom }
bgpos228024 { background-position: right bottom , 50% 10% , right 15px bottom }
bgpos228025 { background-position: right bottom 15% , 50% 10% , right 15px bottom }
bgpos228026 { background-position: right bottom 15px , 50% 10% , right 15px bottom }
bgpos228027 { background-position: right top , 50% 10% , right 15px bottom }
bgpos228028 { background-position: right top 15% , 50% 10% , right 15px bottom }
bgpos228029 { background-position: right top 15px , 50% 10% , right 15px bottom }
bgpos228030 { background-position: right 15% bottom , 50% 10% , right 15px bottom }
bgpos228031 { background-position: right 15% bottom 15% , 50% 10% , right 15px bottom }
bgpos228032 { background-position: right 15% bottom 15px , 50% 10% , right 15px bottom }
bgpos228033 { background-position: right 15% top , 50% 10% , right 15px bottom }
bgpos228034 { background-position: right 15% top 15% , 50% 10% , right 15px bottom }
bgpos228035 { background-position: right 15% top 15px , 50% 10% , right 15px bottom }
bgpos228036 { background-position: right 15% center , 50% 10% , right 15px bottom }
bgpos228037 { background-position: right 15px bottom , 50% 10% , right 15px bottom }
bgpos228038 { background-position: right 15px bottom 15% , 50% 10% , right 15px bottom }
bgpos228039 { background-position: right 15px bottom 15px , 50% 10% , right 15px bottom }
bgpos228040 { background-position: right 15px top , 50% 10% , right 15px bottom }
bgpos228041 { background-position: right 15px top 15% , 50% 10% , right 15px bottom }
bgpos228042 { background-position: right 15px top 15px , 50% 10% , right 15px bottom }
bgpos228043 { background-position: right 15px center , 50% 10% , right 15px bottom }
bgpos228044 { background-position: right center , 50% 10% , right 15px bottom }
bgpos228045 { background-position: 100px , 50% 10% , right 15px bottom }
bgpos228046 { background-position: 100px 10% , 50% 10% , right 15px bottom }
bgpos228047 { background-position: 100px 100px , 50% 10% , right 15px bottom }
bgpos228048 { background-position: 100px bottom , 50% 10% , right 15px bottom }
bgpos228049 { background-position: 100px center , 50% 10% , right 15px bottom }
bgpos228050 { background-position: 100px top , 50% 10% , right 15px bottom }
bgpos228051 { background-position: 50% , 50% 10% , right 15px bottom }
bgpos228052 { background-position: 50% 10% , 50% 10% , right 15px bottom }
bgpos228053 { background-position: 50% 100px , 50% 10% , right 15px bottom }
bgpos228054 { background-position: 50% bottom , 50% 10% , right 15px bottom }
bgpos228055 { background-position: 50% center , 50% 10% , right 15px bottom }
bgpos228056 { background-position: 50% top , 50% 10% , right 15px bottom }
bgpos228057 { background-position: bottom, 50% 10% , right 15px bottom }
bgpos228058 { background-position: center , 50% 10% , right 15px bottom }
bgpos228059 { background-position: center bottom , 50% 10% , right 15px bottom }
bgpos228060 { background-position: center bottom 15% , 50% 10% , right 15px bottom }
bgpos228061 { background-position: center bottom 15px , 50% 10% , right 15px bottom }
bgpos228062 { background-position: center top , 50% 10% , right 15px bottom }
bgpos228063 { background-position: center top 15% , 50% 10% , right 15px bottom }
bgpos228064 { background-position: center top 15px , 50% 10% , right 15px bottom }
bgpos228065 { background-position: center 10% , 50% 10% , right 15px bottom }
bgpos228066 { background-position: center 100px , 50% 10% , right 15px bottom }
bgpos228067 { background-position: center bottom , 50% 10% , right 15px bottom }
bgpos228068 { background-position: center center , 50% 10% , right 15px bottom }
bgpos228069 { background-position: center top , 50% 10% , right 15px bottom }
bgpos228070 { background-position: left , 50% 10% , right 15px bottom }
bgpos228071 { background-position: left 10% , 50% 10% , right 15px bottom }
bgpos228072 { background-position: left 100px , 50% 10% , right 15px bottom }
bgpos228073 { background-position: left bottom , 50% 10% , right 15px bottom }
bgpos228074 { background-position: left center , 50% 10% , right 15px bottom }
bgpos228075 { background-position: left top , 50% 10% , right 15px bottom }
bgpos228076 { background-position: right , 50% 10% , right 15px bottom }
bgpos228077 { background-position: right 10% , 50% 10% , right 15px bottom }
bgpos228078 { background-position: right 100px , 50% 10% , right 15px bottom }
bgpos228079 { background-position: right bottom , 50% 10% , right 15px bottom }
bgpos228080 { background-position: right center , 50% 10% , right 15px bottom }
bgpos228081 { background-position: right top , 50% 10% , right 15px bottom }
bgpos228082 { background-position: top , 50% 10% , right 15px bottom }
bgpos228083 { background-position: left bottom , 50% 100px , right 15px bottom }
bgpos228084 { background-position: left bottom 15% , 50% 100px , right 15px bottom }
bgpos228085 { background-position: left bottom 15px , 50% 100px , right 15px bottom }
bgpos228086 { background-position: left top , 50% 100px , right 15px bottom }
bgpos228087 { background-position: left top 15% , 50% 100px , right 15px bottom }
bgpos228088 { background-position: left top 15px , 50% 100px , right 15px bottom }
bgpos228089 { background-position: left 15% bottom , 50% 100px , right 15px bottom }
bgpos228090 { background-position: left 15% bottom 15% , 50% 100px , right 15px bottom }
bgpos228091 { background-position: left 15% bottom 15px , 50% 100px , right 15px bottom }
bgpos228092 { background-position: left 15% top , 50% 100px , right 15px bottom }
bgpos228093 { background-position: left 15% top 15% , 50% 100px , right 15px bottom }
bgpos228094 { background-position: left 15% top 15px , 50% 100px , right 15px bottom }
bgpos228095 { background-position: left 15% center , 50% 100px , right 15px bottom }
bgpos228096 { background-position: left 15px bottom , 50% 100px , right 15px bottom }
bgpos228097 { background-position: left 15px bottom 15% , 50% 100px , right 15px bottom }
bgpos228098 { background-position: left 15px bottom 15px , 50% 100px , right 15px bottom }
bgpos228099 { background-position: left 15px top , 50% 100px , right 15px bottom }
bgpos228100 { background-position: left 15px top 15% , 50% 100px , right 15px bottom }
bgpos228101 { background-position: left 15px top 15px , 50% 100px , right 15px bottom }
bgpos228102 { background-position: left 15px center , 50% 100px , right 15px bottom }
bgpos228103 { background-position: left center , 50% 100px , right 15px bottom }
bgpos228104 { background-position: right bottom , 50% 100px , right 15px bottom }
bgpos228105 { background-position: right bottom 15% , 50% 100px , right 15px bottom }
bgpos228106 { background-position: right bottom 15px , 50% 100px , right 15px bottom }
bgpos228107 { background-position: right top , 50% 100px , right 15px bottom }
bgpos228108 { background-position: right top 15% , 50% 100px , right 15px bottom }
bgpos228109 { background-position: right top 15px , 50% 100px , right 15px bottom }
bgpos228110 { background-position: right 15% bottom , 50% 100px , right 15px bottom }
bgpos228111 { background-position: right 15% bottom 15% , 50% 100px , right 15px bottom }
bgpos228112 { background-position: right 15% bottom 15px , 50% 100px , right 15px bottom }
bgpos228113 { background-position: right 15% top , 50% 100px , right 15px bottom }
bgpos228114 { background-position: right 15% top 15% , 50% 100px , right 15px bottom }
bgpos228115 { background-position: right 15% top 15px , 50% 100px , right 15px bottom }
bgpos228116 { background-position: right 15% center , 50% 100px , right 15px bottom }
bgpos228117 { background-position: right 15px bottom , 50% 100px , right 15px bottom }
bgpos228118 { background-position: right 15px bottom 15% , 50% 100px , right 15px bottom }
bgpos228119 { background-position: right 15px bottom 15px , 50% 100px , right 15px bottom }
bgpos228120 { background-position: right 15px top , 50% 100px , right 15px bottom }
bgpos228121 { background-position: right 15px top 15% , 50% 100px , right 15px bottom }
bgpos228122 { background-position: right 15px top 15px , 50% 100px , right 15px bottom }
bgpos228123 { background-position: right 15px center , 50% 100px , right 15px bottom }
bgpos228124 { background-position: right center , 50% 100px , right 15px bottom }
bgpos228125 { background-position: 100px , 50% 100px , right 15px bottom }
bgpos228126 { background-position: 100px 10% , 50% 100px , right 15px bottom }
bgpos228127 { background-position: 100px 100px , 50% 100px , right 15px bottom }
bgpos228128 { background-position: 100px bottom , 50% 100px , right 15px bottom }
bgpos228129 { background-position: 100px center , 50% 100px , right 15px bottom }
bgpos228130 { background-position: 100px top , 50% 100px , right 15px bottom }
bgpos228131 { background-position: 50% , 50% 100px , right 15px bottom }
bgpos228132 { background-position: 50% 10% , 50% 100px , right 15px bottom }
bgpos228133 { background-position: 50% 100px , 50% 100px , right 15px bottom }
bgpos228134 { background-position: 50% bottom , 50% 100px , right 15px bottom }
bgpos228135 { background-position: 50% center , 50% 100px , right 15px bottom }
bgpos228136 { background-position: 50% top , 50% 100px , right 15px bottom }
bgpos228137 { background-position: bottom, 50% 100px , right 15px bottom }
bgpos228138 { background-position: center , 50% 100px , right 15px bottom }
bgpos228139 { background-position: center bottom , 50% 100px , right 15px bottom }
bgpos228140 { background-position: center bottom 15% , 50% 100px , right 15px bottom }
bgpos228141 { background-position: center bottom 15px , 50% 100px , right 15px bottom }
bgpos228142 { background-position: center top , 50% 100px , right 15px bottom }
bgpos228143 { background-position: center top 15% , 50% 100px , right 15px bottom }
bgpos228144 { background-position: center top 15px , 50% 100px , right 15px bottom }
bgpos228145 { background-position: center 10% , 50% 100px , right 15px bottom }
bgpos228146 { background-position: center 100px , 50% 100px , right 15px bottom }
bgpos228147 { background-position: center bottom , 50% 100px , right 15px bottom }
bgpos228148 { background-position: center center , 50% 100px , right 15px bottom }
bgpos228149 { background-position: center top , 50% 100px , right 15px bottom }
bgpos228150 { background-position: left , 50% 100px , right 15px bottom }
bgpos228151 { background-position: left 10% , 50% 100px , right 15px bottom }
bgpos228152 { background-position: left 100px , 50% 100px , right 15px bottom }
bgpos228153 { background-position: left bottom , 50% 100px , right 15px bottom }
bgpos228154 { background-position: left center , 50% 100px , right 15px bottom }
bgpos228155 { background-position: left top , 50% 100px , right 15px bottom }
bgpos228156 { background-position: right , 50% 100px , right 15px bottom }
bgpos228157 { background-position: right 10% , 50% 100px , right 15px bottom }
bgpos228158 { background-position: right 100px , 50% 100px , right 15px bottom }
bgpos228159 { background-position: right bottom , 50% 100px , right 15px bottom }
bgpos228160 { background-position: right center , 50% 100px , right 15px bottom }
bgpos228161 { background-position: right top , 50% 100px , right 15px bottom }
bgpos228162 { background-position: top , 50% 100px , right 15px bottom }
bgpos228163 { background-position: left bottom , 50% bottom , right 15px bottom }
bgpos228164 { background-position: left bottom 15% , 50% bottom , right 15px bottom }
bgpos228165 { background-position: left bottom 15px , 50% bottom , right 15px bottom }
bgpos228166 { background-position: left top , 50% bottom , right 15px bottom }
bgpos228167 { background-position: left top 15% , 50% bottom , right 15px bottom }
bgpos228168 { background-position: left top 15px , 50% bottom , right 15px bottom }
bgpos228169 { background-position: left 15% bottom , 50% bottom , right 15px bottom }
bgpos228170 { background-position: left 15% bottom 15% , 50% bottom , right 15px bottom }
bgpos228171 { background-position: left 15% bottom 15px , 50% bottom , right 15px bottom }
bgpos228172 { background-position: left 15% top , 50% bottom , right 15px bottom }
bgpos228173 { background-position: left 15% top 15% , 50% bottom , right 15px bottom }
bgpos228174 { background-position: left 15% top 15px , 50% bottom , right 15px bottom }
bgpos228175 { background-position: left 15% center , 50% bottom , right 15px bottom }
bgpos228176 { background-position: left 15px bottom , 50% bottom , right 15px bottom }
bgpos228177 { background-position: left 15px bottom 15% , 50% bottom , right 15px bottom }
bgpos228178 { background-position: left 15px bottom 15px , 50% bottom , right 15px bottom }
bgpos228179 { background-position: left 15px top , 50% bottom , right 15px bottom }
bgpos228180 { background-position: left 15px top 15% , 50% bottom , right 15px bottom }
bgpos228181 { background-position: left 15px top 15px , 50% bottom , right 15px bottom }
bgpos228182 { background-position: left 15px center , 50% bottom , right 15px bottom }
bgpos228183 { background-position: left center , 50% bottom , right 15px bottom }
bgpos228184 { background-position: right bottom , 50% bottom , right 15px bottom }
bgpos228185 { background-position: right bottom 15% , 50% bottom , right 15px bottom }
bgpos228186 { background-position: right bottom 15px , 50% bottom , right 15px bottom }
bgpos228187 { background-position: right top , 50% bottom , right 15px bottom }
bgpos228188 { background-position: right top 15% , 50% bottom , right 15px bottom }
bgpos228189 { background-position: right top 15px , 50% bottom , right 15px bottom }
bgpos228190 { background-position: right 15% bottom , 50% bottom , right 15px bottom }
bgpos228191 { background-position: right 15% bottom 15% , 50% bottom , right 15px bottom }
bgpos228192 { background-position: right 15% bottom 15px , 50% bottom , right 15px bottom }
bgpos228193 { background-position: right 15% top , 50% bottom , right 15px bottom }
bgpos228194 { background-position: right 15% top 15% , 50% bottom , right 15px bottom }
bgpos228195 { background-position: right 15% top 15px , 50% bottom , right 15px bottom }
bgpos228196 { background-position: right 15% center , 50% bottom , right 15px bottom }
bgpos228197 { background-position: right 15px bottom , 50% bottom , right 15px bottom }
bgpos228198 { background-position: right 15px bottom 15% , 50% bottom , right 15px bottom }
bgpos228199 { background-position: right 15px bottom 15px , 50% bottom , right 15px bottom }
bgpos228200 { background-position: right 15px top , 50% bottom , right 15px bottom }
bgpos228201 { background-position: right 15px top 15% , 50% bottom , right 15px bottom }
bgpos228202 { background-position: right 15px top 15px , 50% bottom , right 15px bottom }
bgpos228203 { background-position: right 15px center , 50% bottom , right 15px bottom }
bgpos228204 { background-position: right center , 50% bottom , right 15px bottom }
bgpos228205 { background-position: 100px , 50% bottom , right 15px bottom }
bgpos228206 { background-position: 100px 10% , 50% bottom , right 15px bottom }
bgpos228207 { background-position: 100px 100px , 50% bottom , right 15px bottom }
bgpos228208 { background-position: 100px bottom , 50% bottom , right 15px bottom }
bgpos228209 { background-position: 100px center , 50% bottom , right 15px bottom }
bgpos228210 { background-position: 100px top , 50% bottom , right 15px bottom }
bgpos228211 { background-position: 50% , 50% bottom , right 15px bottom }
bgpos228212 { background-position: 50% 10% , 50% bottom , right 15px bottom }
bgpos228213 { background-position: 50% 100px , 50% bottom , right 15px bottom }
bgpos228214 { background-position: 50% bottom , 50% bottom , right 15px bottom }
bgpos228215 { background-position: 50% center , 50% bottom , right 15px bottom }
bgpos228216 { background-position: 50% top , 50% bottom , right 15px bottom }
bgpos228217 { background-position: bottom, 50% bottom , right 15px bottom }
bgpos228218 { background-position: center , 50% bottom , right 15px bottom }
bgpos228219 { background-position: center bottom , 50% bottom , right 15px bottom }
bgpos228220 { background-position: center bottom 15% , 50% bottom , right 15px bottom }
bgpos228221 { background-position: center bottom 15px , 50% bottom , right 15px bottom }
bgpos228222 { background-position: center top , 50% bottom , right 15px bottom }
bgpos228223 { background-position: center top 15% , 50% bottom , right 15px bottom }
bgpos228224 { background-position: center top 15px , 50% bottom , right 15px bottom }
bgpos228225 { background-position: center 10% , 50% bottom , right 15px bottom }
bgpos228226 { background-position: center 100px , 50% bottom , right 15px bottom }
bgpos228227 { background-position: center bottom , 50% bottom , right 15px bottom }
bgpos228228 { background-position: center center , 50% bottom , right 15px bottom }
bgpos228229 { background-position: center top , 50% bottom , right 15px bottom }
bgpos228230 { background-position: left , 50% bottom , right 15px bottom }
bgpos228231 { background-position: left 10% , 50% bottom , right 15px bottom }
bgpos228232 { background-position: left 100px , 50% bottom , right 15px bottom }
bgpos228233 { background-position: left bottom , 50% bottom , right 15px bottom }
bgpos228234 { background-position: left center , 50% bottom , right 15px bottom }
bgpos228235 { background-position: left top , 50% bottom , right 15px bottom }
bgpos228236 { background-position: right , 50% bottom , right 15px bottom }
bgpos228237 { background-position: right 10% , 50% bottom , right 15px bottom }
bgpos228238 { background-position: right 100px , 50% bottom , right 15px bottom }
bgpos228239 { background-position: right bottom , 50% bottom , right 15px bottom }
bgpos228240 { background-position: right center , 50% bottom , right 15px bottom }
bgpos228241 { background-position: right top , 50% bottom , right 15px bottom }
bgpos228242 { background-position: top , 50% bottom , right 15px bottom }
bgpos228243 { background-position: left bottom , 50% center , right 15px bottom }
bgpos228244 { background-position: left bottom 15% , 50% center , right 15px bottom }
bgpos228245 { background-position: left bottom 15px , 50% center , right 15px bottom }
bgpos228246 { background-position: left top , 50% center , right 15px bottom }
bgpos228247 { background-position: left top 15% , 50% center , right 15px bottom }
bgpos228248 { background-position: left top 15px , 50% center , right 15px bottom }
bgpos228249 { background-position: left 15% bottom , 50% center , right 15px bottom }
bgpos228250 { background-position: left 15% bottom 15% , 50% center , right 15px bottom }
bgpos228251 { background-position: left 15% bottom 15px , 50% center , right 15px bottom }
bgpos228252 { background-position: left 15% top , 50% center , right 15px bottom }
bgpos228253 { background-position: left 15% top 15% , 50% center , right 15px bottom }
bgpos228254 { background-position: left 15% top 15px , 50% center , right 15px bottom }
bgpos228255 { background-position: left 15% center , 50% center , right 15px bottom }
bgpos228256 { background-position: left 15px bottom , 50% center , right 15px bottom }
bgpos228257 { background-position: left 15px bottom 15% , 50% center , right 15px bottom }
bgpos228258 { background-position: left 15px bottom 15px , 50% center , right 15px bottom }
bgpos228259 { background-position: left 15px top , 50% center , right 15px bottom }
bgpos228260 { background-position: left 15px top 15% , 50% center , right 15px bottom }
bgpos228261 { background-position: left 15px top 15px , 50% center , right 15px bottom }
bgpos228262 { background-position: left 15px center , 50% center , right 15px bottom }
bgpos228263 { background-position: left center , 50% center , right 15px bottom }
bgpos228264 { background-position: right bottom , 50% center , right 15px bottom }
bgpos228265 { background-position: right bottom 15% , 50% center , right 15px bottom }
bgpos228266 { background-position: right bottom 15px , 50% center , right 15px bottom }
bgpos228267 { background-position: right top , 50% center , right 15px bottom }
bgpos228268 { background-position: right top 15% , 50% center , right 15px bottom }
bgpos228269 { background-position: right top 15px , 50% center , right 15px bottom }
bgpos228270 { background-position: right 15% bottom , 50% center , right 15px bottom }
bgpos228271 { background-position: right 15% bottom 15% , 50% center , right 15px bottom }
bgpos228272 { background-position: right 15% bottom 15px , 50% center , right 15px bottom }
bgpos228273 { background-position: right 15% top , 50% center , right 15px bottom }
bgpos228274 { background-position: right 15% top 15% , 50% center , right 15px bottom }
bgpos228275 { background-position: right 15% top 15px , 50% center , right 15px bottom }
bgpos228276 { background-position: right 15% center , 50% center , right 15px bottom }
bgpos228277 { background-position: right 15px bottom , 50% center , right 15px bottom }
bgpos228278 { background-position: right 15px bottom 15% , 50% center , right 15px bottom }
bgpos228279 { background-position: right 15px bottom 15px , 50% center , right 15px bottom }
bgpos228280 { background-position: right 15px top , 50% center , right 15px bottom }
bgpos228281 { background-position: right 15px top 15% , 50% center , right 15px bottom }
bgpos228282 { background-position: right 15px top 15px , 50% center , right 15px bottom }
bgpos228283 { background-position: right 15px center , 50% center , right 15px bottom }
bgpos228284 { background-position: right center , 50% center , right 15px bottom }
bgpos228285 { background-position: 100px , 50% center , right 15px bottom }
bgpos228286 { background-position: 100px 10% , 50% center , right 15px bottom }
bgpos228287 { background-position: 100px 100px , 50% center , right 15px bottom }
bgpos228288 { background-position: 100px bottom , 50% center , right 15px bottom }
bgpos228289 { background-position: 100px center , 50% center , right 15px bottom }
bgpos228290 { background-position: 100px top , 50% center , right 15px bottom }
bgpos228291 { background-position: 50% , 50% center , right 15px bottom }
bgpos228292 { background-position: 50% 10% , 50% center , right 15px bottom }
bgpos228293 { background-position: 50% 100px , 50% center , right 15px bottom }
bgpos228294 { background-position: 50% bottom , 50% center , right 15px bottom }
bgpos228295 { background-position: 50% center , 50% center , right 15px bottom }
bgpos228296 { background-position: 50% top , 50% center , right 15px bottom }
bgpos228297 { background-position: bottom, 50% center , right 15px bottom }
bgpos228298 { background-position: center , 50% center , right 15px bottom }
bgpos228299 { background-position: center bottom , 50% center , right 15px bottom }
bgpos228300 { background-position: center bottom 15% , 50% center , right 15px bottom }
bgpos228301 { background-position: center bottom 15px , 50% center , right 15px bottom }
bgpos228302 { background-position: center top , 50% center , right 15px bottom }
bgpos228303 { background-position: center top 15% , 50% center , right 15px bottom }
bgpos228304 { background-position: center top 15px , 50% center , right 15px bottom }
bgpos228305 { background-position: center 10% , 50% center , right 15px bottom }
bgpos228306 { background-position: center 100px , 50% center , right 15px bottom }
bgpos228307 { background-position: center bottom , 50% center , right 15px bottom }
bgpos228308 { background-position: center center , 50% center , right 15px bottom }
bgpos228309 { background-position: center top , 50% center , right 15px bottom }
bgpos228310 { background-position: left , 50% center , right 15px bottom }
bgpos228311 { background-position: left 10% , 50% center , right 15px bottom }
bgpos228312 { background-position: left 100px , 50% center , right 15px bottom }
bgpos228313 { background-position: left bottom , 50% center , right 15px bottom }
bgpos228314 { background-position: left center , 50% center , right 15px bottom }
bgpos228315 { background-position: left top , 50% center , right 15px bottom }
bgpos228316 { background-position: right , 50% center , right 15px bottom }
bgpos228317 { background-position: right 10% , 50% center , right 15px bottom }
bgpos228318 { background-position: right 100px , 50% center , right 15px bottom }
bgpos228319 { background-position: right bottom , 50% center , right 15px bottom }
bgpos228320 { background-position: right center , 50% center , right 15px bottom }
bgpos228321 { background-position: right top , 50% center , right 15px bottom }
bgpos228322 { background-position: top , 50% center , right 15px bottom }
bgpos228323 { background-position: left bottom , 50% top , right 15px bottom }
bgpos228324 { background-position: left bottom 15% , 50% top , right 15px bottom }
bgpos228325 { background-position: left bottom 15px , 50% top , right 15px bottom }
bgpos228326 { background-position: left top , 50% top , right 15px bottom }
bgpos228327 { background-position: left top 15% , 50% top , right 15px bottom }
bgpos228328 { background-position: left top 15px , 50% top , right 15px bottom }
bgpos228329 { background-position: left 15% bottom , 50% top , right 15px bottom }
bgpos228330 { background-position: left 15% bottom 15% , 50% top , right 15px bottom }
bgpos228331 { background-position: left 15% bottom 15px , 50% top , right 15px bottom }
bgpos228332 { background-position: left 15% top , 50% top , right 15px bottom }
bgpos228333 { background-position: left 15% top 15% , 50% top , right 15px bottom }
bgpos228334 { background-position: left 15% top 15px , 50% top , right 15px bottom }
bgpos228335 { background-position: left 15% center , 50% top , right 15px bottom }
bgpos228336 { background-position: left 15px bottom , 50% top , right 15px bottom }
bgpos228337 { background-position: left 15px bottom 15% , 50% top , right 15px bottom }
bgpos228338 { background-position: left 15px bottom 15px , 50% top , right 15px bottom }
bgpos228339 { background-position: left 15px top , 50% top , right 15px bottom }
bgpos228340 { background-position: left 15px top 15% , 50% top , right 15px bottom }
bgpos228341 { background-position: left 15px top 15px , 50% top , right 15px bottom }
bgpos228342 { background-position: left 15px center , 50% top , right 15px bottom }
bgpos228343 { background-position: left center , 50% top , right 15px bottom }
bgpos228344 { background-position: right bottom , 50% top , right 15px bottom }
bgpos228345 { background-position: right bottom 15% , 50% top , right 15px bottom }
bgpos228346 { background-position: right bottom 15px , 50% top , right 15px bottom }
bgpos228347 { background-position: right top , 50% top , right 15px bottom }
bgpos228348 { background-position: right top 15% , 50% top , right 15px bottom }
bgpos228349 { background-position: right top 15px , 50% top , right 15px bottom }
bgpos228350 { background-position: right 15% bottom , 50% top , right 15px bottom }
bgpos228351 { background-position: right 15% bottom 15% , 50% top , right 15px bottom }
bgpos228352 { background-position: right 15% bottom 15px , 50% top , right 15px bottom }
bgpos228353 { background-position: right 15% top , 50% top , right 15px bottom }
bgpos228354 { background-position: right 15% top 15% , 50% top , right 15px bottom }
bgpos228355 { background-position: right 15% top 15px , 50% top , right 15px bottom }
bgpos228356 { background-position: right 15% center , 50% top , right 15px bottom }
bgpos228357 { background-position: right 15px bottom , 50% top , right 15px bottom }
bgpos228358 { background-position: right 15px bottom 15% , 50% top , right 15px bottom }
bgpos228359 { background-position: right 15px bottom 15px , 50% top , right 15px bottom }
bgpos228360 { background-position: right 15px top , 50% top , right 15px bottom }
bgpos228361 { background-position: right 15px top 15% , 50% top , right 15px bottom }
bgpos228362 { background-position: right 15px top 15px , 50% top , right 15px bottom }
bgpos228363 { background-position: right 15px center , 50% top , right 15px bottom }
bgpos228364 { background-position: right center , 50% top , right 15px bottom }
bgpos228365 { background-position: 100px , 50% top , right 15px bottom }
bgpos228366 { background-position: 100px 10% , 50% top , right 15px bottom }
bgpos228367 { background-position: 100px 100px , 50% top , right 15px bottom }
bgpos228368 { background-position: 100px bottom , 50% top , right 15px bottom }
bgpos228369 { background-position: 100px center , 50% top , right 15px bottom }
bgpos228370 { background-position: 100px top , 50% top , right 15px bottom }
bgpos228371 { background-position: 50% , 50% top , right 15px bottom }
bgpos228372 { background-position: 50% 10% , 50% top , right 15px bottom }
bgpos228373 { background-position: 50% 100px , 50% top , right 15px bottom }
bgpos228374 { background-position: 50% bottom , 50% top , right 15px bottom }
bgpos228375 { background-position: 50% center , 50% top , right 15px bottom }
bgpos228376 { background-position: 50% top , 50% top , right 15px bottom }
bgpos228377 { background-position: bottom, 50% top , right 15px bottom }
bgpos228378 { background-position: center , 50% top , right 15px bottom }
bgpos228379 { background-position: center bottom , 50% top , right 15px bottom }
bgpos228380 { background-position: center bottom 15% , 50% top , right 15px bottom }
bgpos228381 { background-position: center bottom 15px , 50% top , right 15px bottom }
bgpos228382 { background-position: center top , 50% top , right 15px bottom }
bgpos228383 { background-position: center top 15% , 50% top , right 15px bottom }
bgpos228384 { background-position: center top 15px , 50% top , right 15px bottom }
bgpos228385 { background-position: center 10% , 50% top , right 15px bottom }
bgpos228386 { background-position: center 100px , 50% top , right 15px bottom }
bgpos228387 { background-position: center bottom , 50% top , right 15px bottom }
bgpos228388 { background-position: center center , 50% top , right 15px bottom }
bgpos228389 { background-position: center top , 50% top , right 15px bottom }
bgpos228390 { background-position: left , 50% top , right 15px bottom }
bgpos228391 { background-position: left 10% , 50% top , right 15px bottom }
bgpos228392 { background-position: left 100px , 50% top , right 15px bottom }
bgpos228393 { background-position: left bottom , 50% top , right 15px bottom }
bgpos228394 { background-position: left center , 50% top , right 15px bottom }
bgpos228395 { background-position: left top , 50% top , right 15px bottom }
bgpos228396 { background-position: right , 50% top , right 15px bottom }
bgpos228397 { background-position: right 10% , 50% top , right 15px bottom }
bgpos228398 { background-position: right 100px , 50% top , right 15px bottom }
bgpos228399 { background-position: right bottom , 50% top , right 15px bottom }
bgpos228400 { background-position: right center , 50% top , right 15px bottom }
bgpos228401 { background-position: right top , 50% top , right 15px bottom }
bgpos228402 { background-position: top , 50% top , right 15px bottom }
bgpos228403 { background-position: left bottom , bottom, right 15px bottom }
bgpos228404 { background-position: left bottom 15% , bottom, right 15px bottom }
bgpos228405 { background-position: left bottom 15px , bottom, right 15px bottom }
bgpos228406 { background-position: left top , bottom, right 15px bottom }
bgpos228407 { background-position: left top 15% , bottom, right 15px bottom }
bgpos228408 { background-position: left top 15px , bottom, right 15px bottom }
bgpos228409 { background-position: left 15% bottom , bottom, right 15px bottom }
bgpos228410 { background-position: left 15% bottom 15% , bottom, right 15px bottom }
bgpos228411 { background-position: left 15% bottom 15px , bottom, right 15px bottom }
bgpos228412 { background-position: left 15% top , bottom, right 15px bottom }
bgpos228413 { background-position: left 15% top 15% , bottom, right 15px bottom }
bgpos228414 { background-position: left 15% top 15px , bottom, right 15px bottom }
bgpos228415 { background-position: left 15% center , bottom, right 15px bottom }
bgpos228416 { background-position: left 15px bottom , bottom, right 15px bottom }
bgpos228417 { background-position: left 15px bottom 15% , bottom, right 15px bottom }
bgpos228418 { background-position: left 15px bottom 15px , bottom, right 15px bottom }
bgpos228419 { background-position: left 15px top , bottom, right 15px bottom }
bgpos228420 { background-position: left 15px top 15% , bottom, right 15px bottom }
bgpos228421 { background-position: left 15px top 15px , bottom, right 15px bottom }
bgpos228422 { background-position: left 15px center , bottom, right 15px bottom }
bgpos228423 { background-position: left center , bottom, right 15px bottom }
bgpos228424 { background-position: right bottom , bottom, right 15px bottom }
bgpos228425 { background-position: right bottom 15% , bottom, right 15px bottom }
bgpos228426 { background-position: right bottom 15px , bottom, right 15px bottom }
bgpos228427 { background-position: right top , bottom, right 15px bottom }
bgpos228428 { background-position: right top 15% , bottom, right 15px bottom }
bgpos228429 { background-position: right top 15px , bottom, right 15px bottom }
bgpos228430 { background-position: right 15% bottom , bottom, right 15px bottom }
bgpos228431 { background-position: right 15% bottom 15% , bottom, right 15px bottom }
bgpos228432 { background-position: right 15% bottom 15px , bottom, right 15px bottom }
bgpos228433 { background-position: right 15% top , bottom, right 15px bottom }
bgpos228434 { background-position: right 15% top 15% , bottom, right 15px bottom }
bgpos228435 { background-position: right 15% top 15px , bottom, right 15px bottom }
bgpos228436 { background-position: right 15% center , bottom, right 15px bottom }
bgpos228437 { background-position: right 15px bottom , bottom, right 15px bottom }
bgpos228438 { background-position: right 15px bottom 15% , bottom, right 15px bottom }
bgpos228439 { background-position: right 15px bottom 15px , bottom, right 15px bottom }
bgpos228440 { background-position: right 15px top , bottom, right 15px bottom }
bgpos228441 { background-position: right 15px top 15% , bottom, right 15px bottom }
bgpos228442 { background-position: right 15px top 15px , bottom, right 15px bottom }
bgpos228443 { background-position: right 15px center , bottom, right 15px bottom }
bgpos228444 { background-position: right center , bottom, right 15px bottom }
bgpos228445 { background-position: 100px , bottom, right 15px bottom }
bgpos228446 { background-position: 100px 10% , bottom, right 15px bottom }
bgpos228447 { background-position: 100px 100px , bottom, right 15px bottom }
bgpos228448 { background-position: 100px bottom , bottom, right 15px bottom }
bgpos228449 { background-position: 100px center , bottom, right 15px bottom }
bgpos228450 { background-position: 100px top , bottom, right 15px bottom }
bgpos228451 { background-position: 50% , bottom, right 15px bottom }
bgpos228452 { background-position: 50% 10% , bottom, right 15px bottom }
bgpos228453 { background-position: 50% 100px , bottom, right 15px bottom }
bgpos228454 { background-position: 50% bottom , bottom, right 15px bottom }
bgpos228455 { background-position: 50% center , bottom, right 15px bottom }
bgpos228456 { background-position: 50% top , bottom, right 15px bottom }
bgpos228457 { background-position: bottom, bottom, right 15px bottom }
bgpos228458 { background-position: center , bottom, right 15px bottom }
bgpos228459 { background-position: center bottom , bottom, right 15px bottom }
bgpos228460 { background-position: center bottom 15% , bottom, right 15px bottom }
bgpos228461 { background-position: center bottom 15px , bottom, right 15px bottom }
bgpos228462 { background-position: center top , bottom, right 15px bottom }
bgpos228463 { background-position: center top 15% , bottom, right 15px bottom }
bgpos228464 { background-position: center top 15px , bottom, right 15px bottom }
bgpos228465 { background-position: center 10% , bottom, right 15px bottom }
bgpos228466 { background-position: center 100px , bottom, right 15px bottom }
bgpos228467 { background-position: center bottom , bottom, right 15px bottom }
bgpos228468 { background-position: center center , bottom, right 15px bottom }
bgpos228469 { background-position: center top , bottom, right 15px bottom }
bgpos228470 { background-position: left , bottom, right 15px bottom }
bgpos228471 { background-position: left 10% , bottom, right 15px bottom }
bgpos228472 { background-position: left 100px , bottom, right 15px bottom }
bgpos228473 { background-position: left bottom , bottom, right 15px bottom }
bgpos228474 { background-position: left center , bottom, right 15px bottom }
bgpos228475 { background-position: left top , bottom, right 15px bottom }
bgpos228476 { background-position: right , bottom, right 15px bottom }
bgpos228477 { background-position: right 10% , bottom, right 15px bottom }
bgpos228478 { background-position: right 100px , bottom, right 15px bottom }
bgpos228479 { background-position: right bottom , bottom, right 15px bottom }
bgpos228480 { background-position: right center , bottom, right 15px bottom }
bgpos228481 { background-position: right top , bottom, right 15px bottom }
bgpos228482 { background-position: top , bottom, right 15px bottom }
bgpos228483 { background-position: left bottom , center , right 15px bottom }
bgpos228484 { background-position: left bottom 15% , center , right 15px bottom }
bgpos228485 { background-position: left bottom 15px , center , right 15px bottom }
bgpos228486 { background-position: left top , center , right 15px bottom }
bgpos228487 { background-position: left top 15% , center , right 15px bottom }
bgpos228488 { background-position: left top 15px , center , right 15px bottom }
bgpos228489 { background-position: left 15% bottom , center , right 15px bottom }
bgpos228490 { background-position: left 15% bottom 15% , center , right 15px bottom }
bgpos228491 { background-position: left 15% bottom 15px , center , right 15px bottom }
bgpos228492 { background-position: left 15% top , center , right 15px bottom }
bgpos228493 { background-position: left 15% top 15% , center , right 15px bottom }
bgpos228494 { background-position: left 15% top 15px , center , right 15px bottom }
bgpos228495 { background-position: left 15% center , center , right 15px bottom }
bgpos228496 { background-position: left 15px bottom , center , right 15px bottom }
bgpos228497 { background-position: left 15px bottom 15% , center , right 15px bottom }
bgpos228498 { background-position: left 15px bottom 15px , center , right 15px bottom }
bgpos228499 { background-position: left 15px top , center , right 15px bottom }
bgpos228500 { background-position: left 15px top 15% , center , right 15px bottom }
bgpos228501 { background-position: left 15px top 15px , center , right 15px bottom }
bgpos228502 { background-position: left 15px center , center , right 15px bottom }
bgpos228503 { background-position: left center , center , right 15px bottom }
bgpos228504 { background-position: right bottom , center , right 15px bottom }
bgpos228505 { background-position: right bottom 15% , center , right 15px bottom }
bgpos228506 { background-position: right bottom 15px , center , right 15px bottom }
bgpos228507 { background-position: right top , center , right 15px bottom }
bgpos228508 { background-position: right top 15% , center , right 15px bottom }
bgpos228509 { background-position: right top 15px , center , right 15px bottom }
bgpos228510 { background-position: right 15% bottom , center , right 15px bottom }
bgpos228511 { background-position: right 15% bottom 15% , center , right 15px bottom }
bgpos228512 { background-position: right 15% bottom 15px , center , right 15px bottom }
bgpos228513 { background-position: right 15% top , center , right 15px bottom }
bgpos228514 { background-position: right 15% top 15% , center , right 15px bottom }
bgpos228515 { background-position: right 15% top 15px , center , right 15px bottom }
bgpos228516 { background-position: right 15% center , center , right 15px bottom }
bgpos228517 { background-position: right 15px bottom , center , right 15px bottom }
bgpos228518 { background-position: right 15px bottom 15% , center , right 15px bottom }
bgpos228519 { background-position: right 15px bottom 15px , center , right 15px bottom }
bgpos228520 { background-position: right 15px top , center , right 15px bottom }
bgpos228521 { background-position: right 15px top 15% , center , right 15px bottom }
bgpos228522 { background-position: right 15px top 15px , center , right 15px bottom }
bgpos228523 { background-position: right 15px center , center , right 15px bottom }
bgpos228524 { background-position: right center , center , right 15px bottom }
bgpos228525 { background-position: 100px , center , right 15px bottom }
bgpos228526 { background-position: 100px 10% , center , right 15px bottom }
bgpos228527 { background-position: 100px 100px , center , right 15px bottom }
bgpos228528 { background-position: 100px bottom , center , right 15px bottom }
bgpos228529 { background-position: 100px center , center , right 15px bottom }
bgpos228530 { background-position: 100px top , center , right 15px bottom }
bgpos228531 { background-position: 50% , center , right 15px bottom }
bgpos228532 { background-position: 50% 10% , center , right 15px bottom }
bgpos228533 { background-position: 50% 100px , center , right 15px bottom }
bgpos228534 { background-position: 50% bottom , center , right 15px bottom }
bgpos228535 { background-position: 50% center , center , right 15px bottom }
bgpos228536 { background-position: 50% top , center , right 15px bottom }
bgpos228537 { background-position: bottom, center , right 15px bottom }
bgpos228538 { background-position: center , center , right 15px bottom }
bgpos228539 { background-position: center bottom , center , right 15px bottom }
bgpos228540 { background-position: center bottom 15% , center , right 15px bottom }
bgpos228541 { background-position: center bottom 15px , center , right 15px bottom }
bgpos228542 { background-position: center top , center , right 15px bottom }
bgpos228543 { background-position: center top 15% , center , right 15px bottom }
bgpos228544 { background-position: center top 15px , center , right 15px bottom }
bgpos228545 { background-position: center 10% , center , right 15px bottom }
bgpos228546 { background-position: center 100px , center , right 15px bottom }
bgpos228547 { background-position: center bottom , center , right 15px bottom }
bgpos228548 { background-position: center center , center , right 15px bottom }
bgpos228549 { background-position: center top , center , right 15px bottom }
bgpos228550 { background-position: left , center , right 15px bottom }
bgpos228551 { background-position: left 10% , center , right 15px bottom }
bgpos228552 { background-position: left 100px , center , right 15px bottom }
bgpos228553 { background-position: left bottom , center , right 15px bottom }
bgpos228554 { background-position: left center , center , right 15px bottom }
bgpos228555 { background-position: left top , center , right 15px bottom }
bgpos228556 { background-position: right , center , right 15px bottom }
bgpos228557 { background-position: right 10% , center , right 15px bottom }
bgpos228558 { background-position: right 100px , center , right 15px bottom }
bgpos228559 { background-position: right bottom , center , right 15px bottom }
bgpos228560 { background-position: right center , center , right 15px bottom }
bgpos228561 { background-position: right top , center , right 15px bottom }
bgpos228562 { background-position: top , center , right 15px bottom }
bgpos228563 { background-position: left bottom , center bottom , right 15px bottom }
bgpos228564 { background-position: left bottom 15% , center bottom , right 15px bottom }
bgpos228565 { background-position: left bottom 15px , center bottom , right 15px bottom }
bgpos228566 { background-position: left top , center bottom , right 15px bottom }
bgpos228567 { background-position: left top 15% , center bottom , right 15px bottom }
bgpos228568 { background-position: left top 15px , center bottom , right 15px bottom }
bgpos228569 { background-position: left 15% bottom , center bottom , right 15px bottom }
bgpos228570 { background-position: left 15% bottom 15% , center bottom , right 15px bottom }
bgpos228571 { background-position: left 15% bottom 15px , center bottom , right 15px bottom }
bgpos228572 { background-position: left 15% top , center bottom , right 15px bottom }
bgpos228573 { background-position: left 15% top 15% , center bottom , right 15px bottom }
bgpos228574 { background-position: left 15% top 15px , center bottom , right 15px bottom }
bgpos228575 { background-position: left 15% center , center bottom , right 15px bottom }
bgpos228576 { background-position: left 15px bottom , center bottom , right 15px bottom }
bgpos228577 { background-position: left 15px bottom 15% , center bottom , right 15px bottom }
bgpos228578 { background-position: left 15px bottom 15px , center bottom , right 15px bottom }
bgpos228579 { background-position: left 15px top , center bottom , right 15px bottom }
bgpos228580 { background-position: left 15px top 15% , center bottom , right 15px bottom }
bgpos228581 { background-position: left 15px top 15px , center bottom , right 15px bottom }
bgpos228582 { background-position: left 15px center , center bottom , right 15px bottom }
bgpos228583 { background-position: left center , center bottom , right 15px bottom }
bgpos228584 { background-position: right bottom , center bottom , right 15px bottom }
bgpos228585 { background-position: right bottom 15% , center bottom , right 15px bottom }
bgpos228586 { background-position: right bottom 15px , center bottom , right 15px bottom }
bgpos228587 { background-position: right top , center bottom , right 15px bottom }
bgpos228588 { background-position: right top 15% , center bottom , right 15px bottom }
bgpos228589 { background-position: right top 15px , center bottom , right 15px bottom }
bgpos228590 { background-position: right 15% bottom , center bottom , right 15px bottom }
bgpos228591 { background-position: right 15% bottom 15% , center bottom , right 15px bottom }
bgpos228592 { background-position: right 15% bottom 15px , center bottom , right 15px bottom }
bgpos228593 { background-position: right 15% top , center bottom , right 15px bottom }
bgpos228594 { background-position: right 15% top 15% , center bottom , right 15px bottom }
bgpos228595 { background-position: right 15% top 15px , center bottom , right 15px bottom }
bgpos228596 { background-position: right 15% center , center bottom , right 15px bottom }
bgpos228597 { background-position: right 15px bottom , center bottom , right 15px bottom }
bgpos228598 { background-position: right 15px bottom 15% , center bottom , right 15px bottom }
bgpos228599 { background-position: right 15px bottom 15px , center bottom , right 15px bottom }
bgpos228600 { background-position: right 15px top , center bottom , right 15px bottom }
bgpos228601 { background-position: right 15px top 15% , center bottom , right 15px bottom }
bgpos228602 { background-position: right 15px top 15px , center bottom , right 15px bottom }
bgpos228603 { background-position: right 15px center , center bottom , right 15px bottom }
bgpos228604 { background-position: right center , center bottom , right 15px bottom }
bgpos228605 { background-position: 100px , center bottom , right 15px bottom }
bgpos228606 { background-position: 100px 10% , center bottom , right 15px bottom }
bgpos228607 { background-position: 100px 100px , center bottom , right 15px bottom }
bgpos228608 { background-position: 100px bottom , center bottom , right 15px bottom }
bgpos228609 { background-position: 100px center , center bottom , right 15px bottom }
bgpos228610 { background-position: 100px top , center bottom , right 15px bottom }
bgpos228611 { background-position: 50% , center bottom , right 15px bottom }
bgpos228612 { background-position: 50% 10% , center bottom , right 15px bottom }
bgpos228613 { background-position: 50% 100px , center bottom , right 15px bottom }
bgpos228614 { background-position: 50% bottom , center bottom , right 15px bottom }
bgpos228615 { background-position: 50% center , center bottom , right 15px bottom }
bgpos228616 { background-position: 50% top , center bottom , right 15px bottom }
bgpos228617 { background-position: bottom, center bottom , right 15px bottom }
bgpos228618 { background-position: center , center bottom , right 15px bottom }
bgpos228619 { background-position: center bottom , center bottom , right 15px bottom }
bgpos228620 { background-position: center bottom 15% , center bottom , right 15px bottom }
bgpos228621 { background-position: center bottom 15px , center bottom , right 15px bottom }
bgpos228622 { background-position: center top , center bottom , right 15px bottom }
bgpos228623 { background-position: center top 15% , center bottom , right 15px bottom }
bgpos228624 { background-position: center top 15px , center bottom , right 15px bottom }
bgpos228625 { background-position: center 10% , center bottom , right 15px bottom }
bgpos228626 { background-position: center 100px , center bottom , right 15px bottom }
bgpos228627 { background-position: center bottom , center bottom , right 15px bottom }
bgpos228628 { background-position: center center , center bottom , right 15px bottom }
bgpos228629 { background-position: center top , center bottom , right 15px bottom }
bgpos228630 { background-position: left , center bottom , right 15px bottom }
bgpos228631 { background-position: left 10% , center bottom , right 15px bottom }
bgpos228632 { background-position: left 100px , center bottom , right 15px bottom }
bgpos228633 { background-position: left bottom , center bottom , right 15px bottom }
bgpos228634 { background-position: left center , center bottom , right 15px bottom }
bgpos228635 { background-position: left top , center bottom , right 15px bottom }
bgpos228636 { background-position: right , center bottom , right 15px bottom }
bgpos228637 { background-position: right 10% , center bottom , right 15px bottom }
bgpos228638 { background-position: right 100px , center bottom , right 15px bottom }
bgpos228639 { background-position: right bottom , center bottom , right 15px bottom }
bgpos228640 { background-position: right center , center bottom , right 15px bottom }
bgpos228641 { background-position: right top , center bottom , right 15px bottom }
bgpos228642 { background-position: top , center bottom , right 15px bottom }
bgpos228643 { background-position: left bottom , center bottom 15% , right 15px bottom }
bgpos228644 { background-position: left bottom 15% , center bottom 15% , right 15px bottom }
bgpos228645 { background-position: left bottom 15px , center bottom 15% , right 15px bottom }
bgpos228646 { background-position: left top , center bottom 15% , right 15px bottom }
bgpos228647 { background-position: left top 15% , center bottom 15% , right 15px bottom }
bgpos228648 { background-position: left top 15px , center bottom 15% , right 15px bottom }
bgpos228649 { background-position: left 15% bottom , center bottom 15% , right 15px bottom }
bgpos228650 { background-position: left 15% bottom 15% , center bottom 15% , right 15px bottom }
bgpos228651 { background-position: left 15% bottom 15px , center bottom 15% , right 15px bottom }
bgpos228652 { background-position: left 15% top , center bottom 15% , right 15px bottom }
bgpos228653 { background-position: left 15% top 15% , center bottom 15% , right 15px bottom }
bgpos228654 { background-position: left 15% top 15px , center bottom 15% , right 15px bottom }
bgpos228655 { background-position: left 15% center , center bottom 15% , right 15px bottom }
bgpos228656 { background-position: left 15px bottom , center bottom 15% , right 15px bottom }
bgpos228657 { background-position: left 15px bottom 15% , center bottom 15% , right 15px bottom }
bgpos228658 { background-position: left 15px bottom 15px , center bottom 15% , right 15px bottom }
bgpos228659 { background-position: left 15px top , center bottom 15% , right 15px bottom }
bgpos228660 { background-position: left 15px top 15% , center bottom 15% , right 15px bottom }
bgpos228661 { background-position: left 15px top 15px , center bottom 15% , right 15px bottom }
bgpos228662 { background-position: left 15px center , center bottom 15% , right 15px bottom }
bgpos228663 { background-position: left center , center bottom 15% , right 15px bottom }
bgpos228664 { background-position: right bottom , center bottom 15% , right 15px bottom }
bgpos228665 { background-position: right bottom 15% , center bottom 15% , right 15px bottom }
bgpos228666 { background-position: right bottom 15px , center bottom 15% , right 15px bottom }
bgpos228667 { background-position: right top , center bottom 15% , right 15px bottom }
bgpos228668 { background-position: right top 15% , center bottom 15% , right 15px bottom }
bgpos228669 { background-position: right top 15px , center bottom 15% , right 15px bottom }
bgpos228670 { background-position: right 15% bottom , center bottom 15% , right 15px bottom }
bgpos228671 { background-position: right 15% bottom 15% , center bottom 15% , right 15px bottom }
bgpos228672 { background-position: right 15% bottom 15px , center bottom 15% , right 15px bottom }
bgpos228673 { background-position: right 15% top , center bottom 15% , right 15px bottom }
bgpos228674 { background-position: right 15% top 15% , center bottom 15% , right 15px bottom }
bgpos228675 { background-position: right 15% top 15px , center bottom 15% , right 15px bottom }
bgpos228676 { background-position: right 15% center , center bottom 15% , right 15px bottom }
bgpos228677 { background-position: right 15px bottom , center bottom 15% , right 15px bottom }
bgpos228678 { background-position: right 15px bottom 15% , center bottom 15% , right 15px bottom }
bgpos228679 { background-position: right 15px bottom 15px , center bottom 15% , right 15px bottom }
bgpos228680 { background-position: right 15px top , center bottom 15% , right 15px bottom }
bgpos228681 { background-position: right 15px top 15% , center bottom 15% , right 15px bottom }
bgpos228682 { background-position: right 15px top 15px , center bottom 15% , right 15px bottom }
bgpos228683 { background-position: right 15px center , center bottom 15% , right 15px bottom }
bgpos228684 { background-position: right center , center bottom 15% , right 15px bottom }
bgpos228685 { background-position: 100px , center bottom 15% , right 15px bottom }
bgpos228686 { background-position: 100px 10% , center bottom 15% , right 15px bottom }
bgpos228687 { background-position: 100px 100px , center bottom 15% , right 15px bottom }
bgpos228688 { background-position: 100px bottom , center bottom 15% , right 15px bottom }
bgpos228689 { background-position: 100px center , center bottom 15% , right 15px bottom }
bgpos228690 { background-position: 100px top , center bottom 15% , right 15px bottom }
bgpos228691 { background-position: 50% , center bottom 15% , right 15px bottom }
bgpos228692 { background-position: 50% 10% , center bottom 15% , right 15px bottom }
bgpos228693 { background-position: 50% 100px , center bottom 15% , right 15px bottom }
bgpos228694 { background-position: 50% bottom , center bottom 15% , right 15px bottom }
bgpos228695 { background-position: 50% center , center bottom 15% , right 15px bottom }
bgpos228696 { background-position: 50% top , center bottom 15% , right 15px bottom }
bgpos228697 { background-position: bottom, center bottom 15% , right 15px bottom }
bgpos228698 { background-position: center , center bottom 15% , right 15px bottom }
bgpos228699 { background-position: center bottom , center bottom 15% , right 15px bottom }
bgpos228700 { background-position: center bottom 15% , center bottom 15% , right 15px bottom }
bgpos228701 { background-position: center bottom 15px , center bottom 15% , right 15px bottom }
bgpos228702 { background-position: center top , center bottom 15% , right 15px bottom }
bgpos228703 { background-position: center top 15% , center bottom 15% , right 15px bottom }
bgpos228704 { background-position: center top 15px , center bottom 15% , right 15px bottom }
bgpos228705 { background-position: center 10% , center bottom 15% , right 15px bottom }
bgpos228706 { background-position: center 100px , center bottom 15% , right 15px bottom }
bgpos228707 { background-position: center bottom , center bottom 15% , right 15px bottom }
bgpos228708 { background-position: center center , center bottom 15% , right 15px bottom }
bgpos228709 { background-position: center top , center bottom 15% , right 15px bottom }
bgpos228710 { background-position: left , center bottom 15% , right 15px bottom }
bgpos228711 { background-position: left 10% , center bottom 15% , right 15px bottom }
bgpos228712 { background-position: left 100px , center bottom 15% , right 15px bottom }
bgpos228713 { background-position: left bottom , center bottom 15% , right 15px bottom }
bgpos228714 { background-position: left center , center bottom 15% , right 15px bottom }
bgpos228715 { background-position: left top , center bottom 15% , right 15px bottom }
bgpos228716 { background-position: right , center bottom 15% , right 15px bottom }
bgpos228717 { background-position: right 10% , center bottom 15% , right 15px bottom }
bgpos228718 { background-position: right 100px , center bottom 15% , right 15px bottom }
bgpos228719 { background-position: right bottom , center bottom 15% , right 15px bottom }
bgpos228720 { background-position: right center , center bottom 15% , right 15px bottom }
bgpos228721 { background-position: right top , center bottom 15% , right 15px bottom }
bgpos228722 { background-position: top , center bottom 15% , right 15px bottom }
bgpos228723 { background-position: left bottom , center bottom 15px , right 15px bottom }
bgpos228724 { background-position: left bottom 15% , center bottom 15px , right 15px bottom }
bgpos228725 { background-position: left bottom 15px , center bottom 15px , right 15px bottom }
bgpos228726 { background-position: left top , center bottom 15px , right 15px bottom }
bgpos228727 { background-position: left top 15% , center bottom 15px , right 15px bottom }
bgpos228728 { background-position: left top 15px , center bottom 15px , right 15px bottom }
bgpos228729 { background-position: left 15% bottom , center bottom 15px , right 15px bottom }
bgpos228730 { background-position: left 15% bottom 15% , center bottom 15px , right 15px bottom }
bgpos228731 { background-position: left 15% bottom 15px , center bottom 15px , right 15px bottom }
bgpos228732 { background-position: left 15% top , center bottom 15px , right 15px bottom }
bgpos228733 { background-position: left 15% top 15% , center bottom 15px , right 15px bottom }
bgpos228734 { background-position: left 15% top 15px , center bottom 15px , right 15px bottom }
bgpos228735 { background-position: left 15% center , center bottom 15px , right 15px bottom }
bgpos228736 { background-position: left 15px bottom , center bottom 15px , right 15px bottom }
bgpos228737 { background-position: left 15px bottom 15% , center bottom 15px , right 15px bottom }
bgpos228738 { background-position: left 15px bottom 15px , center bottom 15px , right 15px bottom }
bgpos228739 { background-position: left 15px top , center bottom 15px , right 15px bottom }
bgpos228740 { background-position: left 15px top 15% , center bottom 15px , right 15px bottom }
bgpos228741 { background-position: left 15px top 15px , center bottom 15px , right 15px bottom }
bgpos228742 { background-position: left 15px center , center bottom 15px , right 15px bottom }
bgpos228743 { background-position: left center , center bottom 15px , right 15px bottom }
bgpos228744 { background-position: right bottom , center bottom 15px , right 15px bottom }
bgpos228745 { background-position: right bottom 15% , center bottom 15px , right 15px bottom }
bgpos228746 { background-position: right bottom 15px , center bottom 15px , right 15px bottom }
bgpos228747 { background-position: right top , center bottom 15px , right 15px bottom }
bgpos228748 { background-position: right top 15% , center bottom 15px , right 15px bottom }
bgpos228749 { background-position: right top 15px , center bottom 15px , right 15px bottom }
bgpos228750 { background-position: right 15% bottom , center bottom 15px , right 15px bottom }
bgpos228751 { background-position: right 15% bottom 15% , center bottom 15px , right 15px bottom }
bgpos228752 { background-position: right 15% bottom 15px , center bottom 15px , right 15px bottom }
bgpos228753 { background-position: right 15% top , center bottom 15px , right 15px bottom }
bgpos228754 { background-position: right 15% top 15% , center bottom 15px , right 15px bottom }
bgpos228755 { background-position: right 15% top 15px , center bottom 15px , right 15px bottom }
bgpos228756 { background-position: right 15% center , center bottom 15px , right 15px bottom }
bgpos228757 { background-position: right 15px bottom , center bottom 15px , right 15px bottom }
bgpos228758 { background-position: right 15px bottom 15% , center bottom 15px , right 15px bottom }
bgpos228759 { background-position: right 15px bottom 15px , center bottom 15px , right 15px bottom }
bgpos228760 { background-position: right 15px top , center bottom 15px , right 15px bottom }
bgpos228761 { background-position: right 15px top 15% , center bottom 15px , right 15px bottom }
bgpos228762 { background-position: right 15px top 15px , center bottom 15px , right 15px bottom }
bgpos228763 { background-position: right 15px center , center bottom 15px , right 15px bottom }
bgpos228764 { background-position: right center , center bottom 15px , right 15px bottom }
bgpos228765 { background-position: 100px , center bottom 15px , right 15px bottom }
bgpos228766 { background-position: 100px 10% , center bottom 15px , right 15px bottom }
bgpos228767 { background-position: 100px 100px , center bottom 15px , right 15px bottom }
bgpos228768 { background-position: 100px bottom , center bottom 15px , right 15px bottom }
bgpos228769 { background-position: 100px center , center bottom 15px , right 15px bottom }
bgpos228770 { background-position: 100px top , center bottom 15px , right 15px bottom }
bgpos228771 { background-position: 50% , center bottom 15px , right 15px bottom }
bgpos228772 { background-position: 50% 10% , center bottom 15px , right 15px bottom }
bgpos228773 { background-position: 50% 100px , center bottom 15px , right 15px bottom }
bgpos228774 { background-position: 50% bottom , center bottom 15px , right 15px bottom }
bgpos228775 { background-position: 50% center , center bottom 15px , right 15px bottom }
bgpos228776 { background-position: 50% top , center bottom 15px , right 15px bottom }
bgpos228777 { background-position: bottom, center bottom 15px , right 15px bottom }
bgpos228778 { background-position: center , center bottom 15px , right 15px bottom }
bgpos228779 { background-position: center bottom , center bottom 15px , right 15px bottom }
bgpos228780 { background-position: center bottom 15% , center bottom 15px , right 15px bottom }
bgpos228781 { background-position: center bottom 15px , center bottom 15px , right 15px bottom }
bgpos228782 { background-position: center top , center bottom 15px , right 15px bottom }
bgpos228783 { background-position: center top 15% , center bottom 15px , right 15px bottom }
bgpos228784 { background-position: center top 15px , center bottom 15px , right 15px bottom }
bgpos228785 { background-position: center 10% , center bottom 15px , right 15px bottom }
bgpos228786 { background-position: center 100px , center bottom 15px , right 15px bottom }
bgpos228787 { background-position: center bottom , center bottom 15px , right 15px bottom }
bgpos228788 { background-position: center center , center bottom 15px , right 15px bottom }
bgpos228789 { background-position: center top , center bottom 15px , right 15px bottom }
bgpos228790 { background-position: left , center bottom 15px , right 15px bottom }
bgpos228791 { background-position: left 10% , center bottom 15px , right 15px bottom }
bgpos228792 { background-position: left 100px , center bottom 15px , right 15px bottom }
bgpos228793 { background-position: left bottom , center bottom 15px , right 15px bottom }
bgpos228794 { background-position: left center , center bottom 15px , right 15px bottom }
bgpos228795 { background-position: left top , center bottom 15px , right 15px bottom }
bgpos228796 { background-position: right , center bottom 15px , right 15px bottom }
bgpos228797 { background-position: right 10% , center bottom 15px , right 15px bottom }
bgpos228798 { background-position: right 100px , center bottom 15px , right 15px bottom }
bgpos228799 { background-position: right bottom , center bottom 15px , right 15px bottom }
bgpos228800 { background-position: right center , center bottom 15px , right 15px bottom }
bgpos228801 { background-position: right top , center bottom 15px , right 15px bottom }
bgpos228802 { background-position: top , center bottom 15px , right 15px bottom }
bgpos228803 { background-position: left bottom , center top , right 15px bottom }
bgpos228804 { background-position: left bottom 15% , center top , right 15px bottom }
bgpos228805 { background-position: left bottom 15px , center top , right 15px bottom }
bgpos228806 { background-position: left top , center top , right 15px bottom }
bgpos228807 { background-position: left top 15% , center top , right 15px bottom }
bgpos228808 { background-position: left top 15px , center top , right 15px bottom }
bgpos228809 { background-position: left 15% bottom , center top , right 15px bottom }
bgpos228810 { background-position: left 15% bottom 15% , center top , right 15px bottom }
bgpos228811 { background-position: left 15% bottom 15px , center top , right 15px bottom }
bgpos228812 { background-position: left 15% top , center top , right 15px bottom }
bgpos228813 { background-position: left 15% top 15% , center top , right 15px bottom }
bgpos228814 { background-position: left 15% top 15px , center top , right 15px bottom }
bgpos228815 { background-position: left 15% center , center top , right 15px bottom }
bgpos228816 { background-position: left 15px bottom , center top , right 15px bottom }
bgpos228817 { background-position: left 15px bottom 15% , center top , right 15px bottom }
bgpos228818 { background-position: left 15px bottom 15px , center top , right 15px bottom }
bgpos228819 { background-position: left 15px top , center top , right 15px bottom }
bgpos228820 { background-position: left 15px top 15% , center top , right 15px bottom }
bgpos228821 { background-position: left 15px top 15px , center top , right 15px bottom }
bgpos228822 { background-position: left 15px center , center top , right 15px bottom }
bgpos228823 { background-position: left center , center top , right 15px bottom }
bgpos228824 { background-position: right bottom , center top , right 15px bottom }
bgpos228825 { background-position: right bottom 15% , center top , right 15px bottom }
bgpos228826 { background-position: right bottom 15px , center top , right 15px bottom }
bgpos228827 { background-position: right top , center top , right 15px bottom }
bgpos228828 { background-position: right top 15% , center top , right 15px bottom }
bgpos228829 { background-position: right top 15px , center top , right 15px bottom }
bgpos228830 { background-position: right 15% bottom , center top , right 15px bottom }
bgpos228831 { background-position: right 15% bottom 15% , center top , right 15px bottom }
bgpos228832 { background-position: right 15% bottom 15px , center top , right 15px bottom }
bgpos228833 { background-position: right 15% top , center top , right 15px bottom }
bgpos228834 { background-position: right 15% top 15% , center top , right 15px bottom }
bgpos228835 { background-position: right 15% top 15px , center top , right 15px bottom }
bgpos228836 { background-position: right 15% center , center top , right 15px bottom }
bgpos228837 { background-position: right 15px bottom , center top , right 15px bottom }
bgpos228838 { background-position: right 15px bottom 15% , center top , right 15px bottom }
bgpos228839 { background-position: right 15px bottom 15px , center top , right 15px bottom }
bgpos228840 { background-position: right 15px top , center top , right 15px bottom }
bgpos228841 { background-position: right 15px top 15% , center top , right 15px bottom }
bgpos228842 { background-position: right 15px top 15px , center top , right 15px bottom }
bgpos228843 { background-position: right 15px center , center top , right 15px bottom }
bgpos228844 { background-position: right center , center top , right 15px bottom }
bgpos228845 { background-position: 100px , center top , right 15px bottom }
bgpos228846 { background-position: 100px 10% , center top , right 15px bottom }
bgpos228847 { background-position: 100px 100px , center top , right 15px bottom }
bgpos228848 { background-position: 100px bottom , center top , right 15px bottom }
bgpos228849 { background-position: 100px center , center top , right 15px bottom }
bgpos228850 { background-position: 100px top , center top , right 15px bottom }
bgpos228851 { background-position: 50% , center top , right 15px bottom }
bgpos228852 { background-position: 50% 10% , center top , right 15px bottom }
bgpos228853 { background-position: 50% 100px , center top , right 15px bottom }
bgpos228854 { background-position: 50% bottom , center top , right 15px bottom }
bgpos228855 { background-position: 50% center , center top , right 15px bottom }
bgpos228856 { background-position: 50% top , center top , right 15px bottom }
bgpos228857 { background-position: bottom, center top , right 15px bottom }
bgpos228858 { background-position: center , center top , right 15px bottom }
bgpos228859 { background-position: center bottom , center top , right 15px bottom }
bgpos228860 { background-position: center bottom 15% , center top , right 15px bottom }
bgpos228861 { background-position: center bottom 15px , center top , right 15px bottom }
bgpos228862 { background-position: center top , center top , right 15px bottom }
bgpos228863 { background-position: center top 15% , center top , right 15px bottom }
bgpos228864 { background-position: center top 15px , center top , right 15px bottom }
bgpos228865 { background-position: center 10% , center top , right 15px bottom }
bgpos228866 { background-position: center 100px , center top , right 15px bottom }
bgpos228867 { background-position: center bottom , center top , right 15px bottom }
bgpos228868 { background-position: center center , center top , right 15px bottom }
bgpos228869 { background-position: center top , center top , right 15px bottom }
bgpos228870 { background-position: left , center top , right 15px bottom }
bgpos228871 { background-position: left 10% , center top , right 15px bottom }
bgpos228872 { background-position: left 100px , center top , right 15px bottom }
bgpos228873 { background-position: left bottom , center top , right 15px bottom }
bgpos228874 { background-position: left center , center top , right 15px bottom }
bgpos228875 { background-position: left top , center top , right 15px bottom }
bgpos228876 { background-position: right , center top , right 15px bottom }
bgpos228877 { background-position: right 10% , center top , right 15px bottom }
bgpos228878 { background-position: right 100px , center top , right 15px bottom }
bgpos228879 { background-position: right bottom , center top , right 15px bottom }
bgpos228880 { background-position: right center , center top , right 15px bottom }
bgpos228881 { background-position: right top , center top , right 15px bottom }
bgpos228882 { background-position: top , center top , right 15px bottom }
bgpos228883 { background-position: left bottom , center top 15% , right 15px bottom }
bgpos228884 { background-position: left bottom 15% , center top 15% , right 15px bottom }
bgpos228885 { background-position: left bottom 15px , center top 15% , right 15px bottom }
bgpos228886 { background-position: left top , center top 15% , right 15px bottom }
bgpos228887 { background-position: left top 15% , center top 15% , right 15px bottom }
bgpos228888 { background-position: left top 15px , center top 15% , right 15px bottom }
bgpos228889 { background-position: left 15% bottom , center top 15% , right 15px bottom }
bgpos228890 { background-position: left 15% bottom 15% , center top 15% , right 15px bottom }
bgpos228891 { background-position: left 15% bottom 15px , center top 15% , right 15px bottom }
bgpos228892 { background-position: left 15% top , center top 15% , right 15px bottom }
bgpos228893 { background-position: left 15% top 15% , center top 15% , right 15px bottom }
bgpos228894 { background-position: left 15% top 15px , center top 15% , right 15px bottom }
bgpos228895 { background-position: left 15% center , center top 15% , right 15px bottom }
bgpos228896 { background-position: left 15px bottom , center top 15% , right 15px bottom }
bgpos228897 { background-position: left 15px bottom 15% , center top 15% , right 15px bottom }
bgpos228898 { background-position: left 15px bottom 15px , center top 15% , right 15px bottom }
bgpos228899 { background-position: left 15px top , center top 15% , right 15px bottom }
bgpos228900 { background-position: left 15px top 15% , center top 15% , right 15px bottom }
bgpos228901 { background-position: left 15px top 15px , center top 15% , right 15px bottom }
bgpos228902 { background-position: left 15px center , center top 15% , right 15px bottom }
bgpos228903 { background-position: left center , center top 15% , right 15px bottom }
bgpos228904 { background-position: right bottom , center top 15% , right 15px bottom }
bgpos228905 { background-position: right bottom 15% , center top 15% , right 15px bottom }
bgpos228906 { background-position: right bottom 15px , center top 15% , right 15px bottom }
bgpos228907 { background-position: right top , center top 15% , right 15px bottom }
bgpos228908 { background-position: right top 15% , center top 15% , right 15px bottom }
bgpos228909 { background-position: right top 15px , center top 15% , right 15px bottom }
bgpos228910 { background-position: right 15% bottom , center top 15% , right 15px bottom }
bgpos228911 { background-position: right 15% bottom 15% , center top 15% , right 15px bottom }
bgpos228912 { background-position: right 15% bottom 15px , center top 15% , right 15px bottom }
bgpos228913 { background-position: right 15% top , center top 15% , right 15px bottom }
bgpos228914 { background-position: right 15% top 15% , center top 15% , right 15px bottom }
bgpos228915 { background-position: right 15% top 15px , center top 15% , right 15px bottom }
bgpos228916 { background-position: right 15% center , center top 15% , right 15px bottom }
bgpos228917 { background-position: right 15px bottom , center top 15% , right 15px bottom }
bgpos228918 { background-position: right 15px bottom 15% , center top 15% , right 15px bottom }
bgpos228919 { background-position: right 15px bottom 15px , center top 15% , right 15px bottom }
bgpos228920 { background-position: right 15px top , center top 15% , right 15px bottom }
bgpos228921 { background-position: right 15px top 15% , center top 15% , right 15px bottom }
bgpos228922 { background-position: right 15px top 15px , center top 15% , right 15px bottom }
bgpos228923 { background-position: right 15px center , center top 15% , right 15px bottom }
bgpos228924 { background-position: right center , center top 15% , right 15px bottom }
bgpos228925 { background-position: 100px , center top 15% , right 15px bottom }
bgpos228926 { background-position: 100px 10% , center top 15% , right 15px bottom }
bgpos228927 { background-position: 100px 100px , center top 15% , right 15px bottom }
bgpos228928 { background-position: 100px bottom , center top 15% , right 15px bottom }
bgpos228929 { background-position: 100px center , center top 15% , right 15px bottom }
bgpos228930 { background-position: 100px top , center top 15% , right 15px bottom }
bgpos228931 { background-position: 50% , center top 15% , right 15px bottom }
bgpos228932 { background-position: 50% 10% , center top 15% , right 15px bottom }
bgpos228933 { background-position: 50% 100px , center top 15% , right 15px bottom }
bgpos228934 { background-position: 50% bottom , center top 15% , right 15px bottom }
bgpos228935 { background-position: 50% center , center top 15% , right 15px bottom }
bgpos228936 { background-position: 50% top , center top 15% , right 15px bottom }
bgpos228937 { background-position: bottom, center top 15% , right 15px bottom }
bgpos228938 { background-position: center , center top 15% , right 15px bottom }
bgpos228939 { background-position: center bottom , center top 15% , right 15px bottom }
bgpos228940 { background-position: center bottom 15% , center top 15% , right 15px bottom }
bgpos228941 { background-position: center bottom 15px , center top 15% , right 15px bottom }
bgpos228942 { background-position: center top , center top 15% , right 15px bottom }
bgpos228943 { background-position: center top 15% , center top 15% , right 15px bottom }
bgpos228944 { background-position: center top 15px , center top 15% , right 15px bottom }
bgpos228945 { background-position: center 10% , center top 15% , right 15px bottom }
bgpos228946 { background-position: center 100px , center top 15% , right 15px bottom }
bgpos228947 { background-position: center bottom , center top 15% , right 15px bottom }
bgpos228948 { background-position: center center , center top 15% , right 15px bottom }
bgpos228949 { background-position: center top , center top 15% , right 15px bottom }
bgpos228950 { background-position: left , center top 15% , right 15px bottom }
bgpos228951 { background-position: left 10% , center top 15% , right 15px bottom }
bgpos228952 { background-position: left 100px , center top 15% , right 15px bottom }
bgpos228953 { background-position: left bottom , center top 15% , right 15px bottom }
bgpos228954 { background-position: left center , center top 15% , right 15px bottom }
bgpos228955 { background-position: left top , center top 15% , right 15px bottom }
bgpos228956 { background-position: right , center top 15% , right 15px bottom }
bgpos228957 { background-position: right 10% , center top 15% , right 15px bottom }
bgpos228958 { background-position: right 100px , center top 15% , right 15px bottom }
bgpos228959 { background-position: right bottom , center top 15% , right 15px bottom }
bgpos228960 { background-position: right center , center top 15% , right 15px bottom }
bgpos228961 { background-position: right top , center top 15% , right 15px bottom }
bgpos228962 { background-position: top , center top 15% , right 15px bottom }
bgpos228963 { background-position: left bottom , center top 15px , right 15px bottom }
bgpos228964 { background-position: left bottom 15% , center top 15px , right 15px bottom }
bgpos228965 { background-position: left bottom 15px , center top 15px , right 15px bottom }
bgpos228966 { background-position: left top , center top 15px , right 15px bottom }
bgpos228967 { background-position: left top 15% , center top 15px , right 15px bottom }
bgpos228968 { background-position: left top 15px , center top 15px , right 15px bottom }
bgpos228969 { background-position: left 15% bottom , center top 15px , right 15px bottom }
bgpos228970 { background-position: left 15% bottom 15% , center top 15px , right 15px bottom }
bgpos228971 { background-position: left 15% bottom 15px , center top 15px , right 15px bottom }
bgpos228972 { background-position: left 15% top , center top 15px , right 15px bottom }
bgpos228973 { background-position: left 15% top 15% , center top 15px , right 15px bottom }
bgpos228974 { background-position: left 15% top 15px , center top 15px , right 15px bottom }
bgpos228975 { background-position: left 15% center , center top 15px , right 15px bottom }
bgpos228976 { background-position: left 15px bottom , center top 15px , right 15px bottom }
bgpos228977 { background-position: left 15px bottom 15% , center top 15px , right 15px bottom }
bgpos228978 { background-position: left 15px bottom 15px , center top 15px , right 15px bottom }
bgpos228979 { background-position: left 15px top , center top 15px , right 15px bottom }
bgpos228980 { background-position: left 15px top 15% , center top 15px , right 15px bottom }
bgpos228981 { background-position: left 15px top 15px , center top 15px , right 15px bottom }
bgpos228982 { background-position: left 15px center , center top 15px , right 15px bottom }
bgpos228983 { background-position: left center , center top 15px , right 15px bottom }
bgpos228984 { background-position: right bottom , center top 15px , right 15px bottom }
bgpos228985 { background-position: right bottom 15% , center top 15px , right 15px bottom }
bgpos228986 { background-position: right bottom 15px , center top 15px , right 15px bottom }
bgpos228987 { background-position: right top , center top 15px , right 15px bottom }
bgpos228988 { background-position: right top 15% , center top 15px , right 15px bottom }
bgpos228989 { background-position: right top 15px , center top 15px , right 15px bottom }
bgpos228990 { background-position: right 15% bottom , center top 15px , right 15px bottom }
bgpos228991 { background-position: right 15% bottom 15% , center top 15px , right 15px bottom }
bgpos228992 { background-position: right 15% bottom 15px , center top 15px , right 15px bottom }
bgpos228993 { background-position: right 15% top , center top 15px , right 15px bottom }
bgpos228994 { background-position: right 15% top 15% , center top 15px , right 15px bottom }
bgpos228995 { background-position: right 15% top 15px , center top 15px , right 15px bottom }
bgpos228996 { background-position: right 15% center , center top 15px , right 15px bottom }
bgpos228997 { background-position: right 15px bottom , center top 15px , right 15px bottom }
bgpos228998 { background-position: right 15px bottom 15% , center top 15px , right 15px bottom }
bgpos228999 { background-position: right 15px bottom 15px , center top 15px , right 15px bottom }
bgpos229000 { background-position: right 15px top , center top 15px , right 15px bottom }
bgpos229001 { background-position: right 15px top 15% , center top 15px , right 15px bottom }
bgpos229002 { background-position: right 15px top 15px , center top 15px , right 15px bottom }
bgpos229003 { background-position: right 15px center , center top 15px , right 15px bottom }
bgpos229004 { background-position: right center , center top 15px , right 15px bottom }
bgpos229005 { background-position: 100px , center top 15px , right 15px bottom }
bgpos229006 { background-position: 100px 10% , center top 15px , right 15px bottom }
bgpos229007 { background-position: 100px 100px , center top 15px , right 15px bottom }
bgpos229008 { background-position: 100px bottom , center top 15px , right 15px bottom }
bgpos229009 { background-position: 100px center , center top 15px , right 15px bottom }
bgpos229010 { background-position: 100px top , center top 15px , right 15px bottom }
bgpos229011 { background-position: 50% , center top 15px , right 15px bottom }
bgpos229012 { background-position: 50% 10% , center top 15px , right 15px bottom }
bgpos229013 { background-position: 50% 100px , center top 15px , right 15px bottom }
bgpos229014 { background-position: 50% bottom , center top 15px , right 15px bottom }
bgpos229015 { background-position: 50% center , center top 15px , right 15px bottom }
bgpos229016 { background-position: 50% top , center top 15px , right 15px bottom }
bgpos229017 { background-position: bottom, center top 15px , right 15px bottom }
bgpos229018 { background-position: center , center top 15px , right 15px bottom }
bgpos229019 { background-position: center bottom , center top 15px , right 15px bottom }
bgpos229020 { background-position: center bottom 15% , center top 15px , right 15px bottom }
bgpos229021 { background-position: center bottom 15px , center top 15px , right 15px bottom }
bgpos229022 { background-position: center top , center top 15px , right 15px bottom }
bgpos229023 { background-position: center top 15% , center top 15px , right 15px bottom }
bgpos229024 { background-position: center top 15px , center top 15px , right 15px bottom }
bgpos229025 { background-position: center 10% , center top 15px , right 15px bottom }
bgpos229026 { background-position: center 100px , center top 15px , right 15px bottom }
bgpos229027 { background-position: center bottom , center top 15px , right 15px bottom }
bgpos229028 { background-position: center center , center top 15px , right 15px bottom }
bgpos229029 { background-position: center top , center top 15px , right 15px bottom }
bgpos229030 { background-position: left , center top 15px , right 15px bottom }
bgpos229031 { background-position: left 10% , center top 15px , right 15px bottom }
bgpos229032 { background-position: left 100px , center top 15px , right 15px bottom }
bgpos229033 { background-position: left bottom , center top 15px , right 15px bottom }
bgpos229034 { background-position: left center , center top 15px , right 15px bottom }
bgpos229035 { background-position: left top , center top 15px , right 15px bottom }
bgpos229036 { background-position: right , center top 15px , right 15px bottom }
bgpos229037 { background-position: right 10% , center top 15px , right 15px bottom }
bgpos229038 { background-position: right 100px , center top 15px , right 15px bottom }
bgpos229039 { background-position: right bottom , center top 15px , right 15px bottom }
bgpos229040 { background-position: right center , center top 15px , right 15px bottom }
bgpos229041 { background-position: right top , center top 15px , right 15px bottom }
bgpos229042 { background-position: top , center top 15px , right 15px bottom }
bgpos229043 { background-position: left bottom , center 10% , right 15px bottom }
bgpos229044 { background-position: left bottom 15% , center 10% , right 15px bottom }
bgpos229045 { background-position: left bottom 15px , center 10% , right 15px bottom }
bgpos229046 { background-position: left top , center 10% , right 15px bottom }
bgpos229047 { background-position: left top 15% , center 10% , right 15px bottom }
bgpos229048 { background-position: left top 15px , center 10% , right 15px bottom }
bgpos229049 { background-position: left 15% bottom , center 10% , right 15px bottom }
bgpos229050 { background-position: left 15% bottom 15% , center 10% , right 15px bottom }
bgpos229051 { background-position: left 15% bottom 15px , center 10% , right 15px bottom }
bgpos229052 { background-position: left 15% top , center 10% , right 15px bottom }
bgpos229053 { background-position: left 15% top 15% , center 10% , right 15px bottom }
bgpos229054 { background-position: left 15% top 15px , center 10% , right 15px bottom }
bgpos229055 { background-position: left 15% center , center 10% , right 15px bottom }
bgpos229056 { background-position: left 15px bottom , center 10% , right 15px bottom }
bgpos229057 { background-position: left 15px bottom 15% , center 10% , right 15px bottom }
bgpos229058 { background-position: left 15px bottom 15px , center 10% , right 15px bottom }
bgpos229059 { background-position: left 15px top , center 10% , right 15px bottom }
bgpos229060 { background-position: left 15px top 15% , center 10% , right 15px bottom }
bgpos229061 { background-position: left 15px top 15px , center 10% , right 15px bottom }
bgpos229062 { background-position: left 15px center , center 10% , right 15px bottom }
bgpos229063 { background-position: left center , center 10% , right 15px bottom }
bgpos229064 { background-position: right bottom , center 10% , right 15px bottom }
bgpos229065 { background-position: right bottom 15% , center 10% , right 15px bottom }
bgpos229066 { background-position: right bottom 15px , center 10% , right 15px bottom }
bgpos229067 { background-position: right top , center 10% , right 15px bottom }
bgpos229068 { background-position: right top 15% , center 10% , right 15px bottom }
bgpos229069 { background-position: right top 15px , center 10% , right 15px bottom }
bgpos229070 { background-position: right 15% bottom , center 10% , right 15px bottom }
bgpos229071 { background-position: right 15% bottom 15% , center 10% , right 15px bottom }
bgpos229072 { background-position: right 15% bottom 15px , center 10% , right 15px bottom }
bgpos229073 { background-position: right 15% top , center 10% , right 15px bottom }
bgpos229074 { background-position: right 15% top 15% , center 10% , right 15px bottom }
bgpos229075 { background-position: right 15% top 15px , center 10% , right 15px bottom }
bgpos229076 { background-position: right 15% center , center 10% , right 15px bottom }
bgpos229077 { background-position: right 15px bottom , center 10% , right 15px bottom }
bgpos229078 { background-position: right 15px bottom 15% , center 10% , right 15px bottom }
bgpos229079 { background-position: right 15px bottom 15px , center 10% , right 15px bottom }
bgpos229080 { background-position: right 15px top , center 10% , right 15px bottom }
bgpos229081 { background-position: right 15px top 15% , center 10% , right 15px bottom }
bgpos229082 { background-position: right 15px top 15px , center 10% , right 15px bottom }
bgpos229083 { background-position: right 15px center , center 10% , right 15px bottom }
bgpos229084 { background-position: right center , center 10% , right 15px bottom }
bgpos229085 { background-position: 100px , center 10% , right 15px bottom }
bgpos229086 { background-position: 100px 10% , center 10% , right 15px bottom }
bgpos229087 { background-position: 100px 100px , center 10% , right 15px bottom }
bgpos229088 { background-position: 100px bottom , center 10% , right 15px bottom }
bgpos229089 { background-position: 100px center , center 10% , right 15px bottom }
bgpos229090 { background-position: 100px top , center 10% , right 15px bottom }
bgpos229091 { background-position: 50% , center 10% , right 15px bottom }
bgpos229092 { background-position: 50% 10% , center 10% , right 15px bottom }
bgpos229093 { background-position: 50% 100px , center 10% , right 15px bottom }
bgpos229094 { background-position: 50% bottom , center 10% , right 15px bottom }
bgpos229095 { background-position: 50% center , center 10% , right 15px bottom }
bgpos229096 { background-position: 50% top , center 10% , right 15px bottom }
bgpos229097 { background-position: bottom, center 10% , right 15px bottom }
bgpos229098 { background-position: center , center 10% , right 15px bottom }
bgpos229099 { background-position: center bottom , center 10% , right 15px bottom }
bgpos229100 { background-position: center bottom 15% , center 10% , right 15px bottom }
bgpos229101 { background-position: center bottom 15px , center 10% , right 15px bottom }
bgpos229102 { background-position: center top , center 10% , right 15px bottom }
bgpos229103 { background-position: center top 15% , center 10% , right 15px bottom }
bgpos229104 { background-position: center top 15px , center 10% , right 15px bottom }
bgpos229105 { background-position: center 10% , center 10% , right 15px bottom }
bgpos229106 { background-position: center 100px , center 10% , right 15px bottom }
bgpos229107 { background-position: center bottom , center 10% , right 15px bottom }
bgpos229108 { background-position: center center , center 10% , right 15px bottom }
bgpos229109 { background-position: center top , center 10% , right 15px bottom }
bgpos229110 { background-position: left , center 10% , right 15px bottom }
bgpos229111 { background-position: left 10% , center 10% , right 15px bottom }
bgpos229112 { background-position: left 100px , center 10% , right 15px bottom }
bgpos229113 { background-position: left bottom , center 10% , right 15px bottom }
bgpos229114 { background-position: left center , center 10% , right 15px bottom }
bgpos229115 { background-position: left top , center 10% , right 15px bottom }
bgpos229116 { background-position: right , center 10% , right 15px bottom }
bgpos229117 { background-position: right 10% , center 10% , right 15px bottom }
bgpos229118 { background-position: right 100px , center 10% , right 15px bottom }
bgpos229119 { background-position: right bottom , center 10% , right 15px bottom }
bgpos229120 { background-position: right center , center 10% , right 15px bottom }
bgpos229121 { background-position: right top , center 10% , right 15px bottom }
bgpos229122 { background-position: top , center 10% , right 15px bottom }
bgpos229123 { background-position: left bottom , center 100px , right 15px bottom }
bgpos229124 { background-position: left bottom 15% , center 100px , right 15px bottom }
bgpos229125 { background-position: left bottom 15px , center 100px , right 15px bottom }
bgpos229126 { background-position: left top , center 100px , right 15px bottom }
bgpos229127 { background-position: left top 15% , center 100px , right 15px bottom }
bgpos229128 { background-position: left top 15px , center 100px , right 15px bottom }
bgpos229129 { background-position: left 15% bottom , center 100px , right 15px bottom }
bgpos229130 { background-position: left 15% bottom 15% , center 100px , right 15px bottom }
bgpos229131 { background-position: left 15% bottom 15px , center 100px , right 15px bottom }
bgpos229132 { background-position: left 15% top , center 100px , right 15px bottom }
bgpos229133 { background-position: left 15% top 15% , center 100px , right 15px bottom }
bgpos229134 { background-position: left 15% top 15px , center 100px , right 15px bottom }
bgpos229135 { background-position: left 15% center , center 100px , right 15px bottom }
bgpos229136 { background-position: left 15px bottom , center 100px , right 15px bottom }
bgpos229137 { background-position: left 15px bottom 15% , center 100px , right 15px bottom }
bgpos229138 { background-position: left 15px bottom 15px , center 100px , right 15px bottom }
bgpos229139 { background-position: left 15px top , center 100px , right 15px bottom }
bgpos229140 { background-position: left 15px top 15% , center 100px , right 15px bottom }
bgpos229141 { background-position: left 15px top 15px , center 100px , right 15px bottom }
bgpos229142 { background-position: left 15px center , center 100px , right 15px bottom }
bgpos229143 { background-position: left center , center 100px , right 15px bottom }
bgpos229144 { background-position: right bottom , center 100px , right 15px bottom }
bgpos229145 { background-position: right bottom 15% , center 100px , right 15px bottom }
bgpos229146 { background-position: right bottom 15px , center 100px , right 15px bottom }
bgpos229147 { background-position: right top , center 100px , right 15px bottom }
bgpos229148 { background-position: right top 15% , center 100px , right 15px bottom }
bgpos229149 { background-position: right top 15px , center 100px , right 15px bottom }
bgpos229150 { background-position: right 15% bottom , center 100px , right 15px bottom }
bgpos229151 { background-position: right 15% bottom 15% , center 100px , right 15px bottom }
bgpos229152 { background-position: right 15% bottom 15px , center 100px , right 15px bottom }
bgpos229153 { background-position: right 15% top , center 100px , right 15px bottom }
bgpos229154 { background-position: right 15% top 15% , center 100px , right 15px bottom }
bgpos229155 { background-position: right 15% top 15px , center 100px , right 15px bottom }
bgpos229156 { background-position: right 15% center , center 100px , right 15px bottom }
bgpos229157 { background-position: right 15px bottom , center 100px , right 15px bottom }
bgpos229158 { background-position: right 15px bottom 15% , center 100px , right 15px bottom }
bgpos229159 { background-position: right 15px bottom 15px , center 100px , right 15px bottom }
bgpos229160 { background-position: right 15px top , center 100px , right 15px bottom }
bgpos229161 { background-position: right 15px top 15% , center 100px , right 15px bottom }
bgpos229162 { background-position: right 15px top 15px , center 100px , right 15px bottom }
bgpos229163 { background-position: right 15px center , center 100px , right 15px bottom }
bgpos229164 { background-position: right center , center 100px , right 15px bottom }
bgpos229165 { background-position: 100px , center 100px , right 15px bottom }
bgpos229166 { background-position: 100px 10% , center 100px , right 15px bottom }
bgpos229167 { background-position: 100px 100px , center 100px , right 15px bottom }
bgpos229168 { background-position: 100px bottom , center 100px , right 15px bottom }
bgpos229169 { background-position: 100px center , center 100px , right 15px bottom }
bgpos229170 { background-position: 100px top , center 100px , right 15px bottom }
bgpos229171 { background-position: 50% , center 100px , right 15px bottom }
bgpos229172 { background-position: 50% 10% , center 100px , right 15px bottom }
bgpos229173 { background-position: 50% 100px , center 100px , right 15px bottom }
bgpos229174 { background-position: 50% bottom , center 100px , right 15px bottom }
bgpos229175 { background-position: 50% center , center 100px , right 15px bottom }
bgpos229176 { background-position: 50% top , center 100px , right 15px bottom }
bgpos229177 { background-position: bottom, center 100px , right 15px bottom }
bgpos229178 { background-position: center , center 100px , right 15px bottom }
bgpos229179 { background-position: center bottom , center 100px , right 15px bottom }
bgpos229180 { background-position: center bottom 15% , center 100px , right 15px bottom }
bgpos229181 { background-position: center bottom 15px , center 100px , right 15px bottom }
bgpos229182 { background-position: center top , center 100px , right 15px bottom }
bgpos229183 { background-position: center top 15% , center 100px , right 15px bottom }
bgpos229184 { background-position: center top 15px , center 100px , right 15px bottom }
bgpos229185 { background-position: center 10% , center 100px , right 15px bottom }
bgpos229186 { background-position: center 100px , center 100px , right 15px bottom }
bgpos229187 { background-position: center bottom , center 100px , right 15px bottom }
bgpos229188 { background-position: center center , center 100px , right 15px bottom }
bgpos229189 { background-position: center top , center 100px , right 15px bottom }
bgpos229190 { background-position: left , center 100px , right 15px bottom }
bgpos229191 { background-position: left 10% , center 100px , right 15px bottom }
bgpos229192 { background-position: left 100px , center 100px , right 15px bottom }
bgpos229193 { background-position: left bottom , center 100px , right 15px bottom }
bgpos229194 { background-position: left center , center 100px , right 15px bottom }
bgpos229195 { background-position: left top , center 100px , right 15px bottom }
bgpos229196 { background-position: right , center 100px , right 15px bottom }
bgpos229197 { background-position: right 10% , center 100px , right 15px bottom }
bgpos229198 { background-position: right 100px , center 100px , right 15px bottom }
bgpos229199 { background-position: right bottom , center 100px , right 15px bottom }
bgpos229200 { background-position: right center , center 100px , right 15px bottom }
bgpos229201 { background-position: right top , center 100px , right 15px bottom }
bgpos229202 { background-position: top , center 100px , right 15px bottom }
bgpos229203 { background-position: left bottom , center bottom , right 15px bottom }
bgpos229204 { background-position: left bottom 15% , center bottom , right 15px bottom }
bgpos229205 { background-position: left bottom 15px , center bottom , right 15px bottom }
bgpos229206 { background-position: left top , center bottom , right 15px bottom }
bgpos229207 { background-position: left top 15% , center bottom , right 15px bottom }
bgpos229208 { background-position: left top 15px , center bottom , right 15px bottom }
bgpos229209 { background-position: left 15% bottom , center bottom , right 15px bottom }
bgpos229210 { background-position: left 15% bottom 15% , center bottom , right 15px bottom }
bgpos229211 { background-position: left 15% bottom 15px , center bottom , right 15px bottom }
bgpos229212 { background-position: left 15% top , center bottom , right 15px bottom }
bgpos229213 { background-position: left 15% top 15% , center bottom , right 15px bottom }
bgpos229214 { background-position: left 15% top 15px , center bottom , right 15px bottom }
bgpos229215 { background-position: left 15% center , center bottom , right 15px bottom }
bgpos229216 { background-position: left 15px bottom , center bottom , right 15px bottom }
bgpos229217 { background-position: left 15px bottom 15% , center bottom , right 15px bottom }
bgpos229218 { background-position: left 15px bottom 15px , center bottom , right 15px bottom }
bgpos229219 { background-position: left 15px top , center bottom , right 15px bottom }
bgpos229220 { background-position: left 15px top 15% , center bottom , right 15px bottom }
bgpos229221 { background-position: left 15px top 15px , center bottom , right 15px bottom }
bgpos229222 { background-position: left 15px center , center bottom , right 15px bottom }
bgpos229223 { background-position: left center , center bottom , right 15px bottom }
bgpos229224 { background-position: right bottom , center bottom , right 15px bottom }
bgpos229225 { background-position: right bottom 15% , center bottom , right 15px bottom }
bgpos229226 { background-position: right bottom 15px , center bottom , right 15px bottom }
bgpos229227 { background-position: right top , center bottom , right 15px bottom }
bgpos229228 { background-position: right top 15% , center bottom , right 15px bottom }
bgpos229229 { background-position: right top 15px , center bottom , right 15px bottom }
bgpos229230 { background-position: right 15% bottom , center bottom , right 15px bottom }
bgpos229231 { background-position: right 15% bottom 15% , center bottom , right 15px bottom }
bgpos229232 { background-position: right 15% bottom 15px , center bottom , right 15px bottom }
bgpos229233 { background-position: right 15% top , center bottom , right 15px bottom }
bgpos229234 { background-position: right 15% top 15% , center bottom , right 15px bottom }
bgpos229235 { background-position: right 15% top 15px , center bottom , right 15px bottom }
bgpos229236 { background-position: right 15% center , center bottom , right 15px bottom }
bgpos229237 { background-position: right 15px bottom , center bottom , right 15px bottom }
bgpos229238 { background-position: right 15px bottom 15% , center bottom , right 15px bottom }
bgpos229239 { background-position: right 15px bottom 15px , center bottom , right 15px bottom }
bgpos229240 { background-position: right 15px top , center bottom , right 15px bottom }
bgpos229241 { background-position: right 15px top 15% , center bottom , right 15px bottom }
bgpos229242 { background-position: right 15px top 15px , center bottom , right 15px bottom }
bgpos229243 { background-position: right 15px center , center bottom , right 15px bottom }
bgpos229244 { background-position: right center , center bottom , right 15px bottom }
bgpos229245 { background-position: 100px , center bottom , right 15px bottom }
bgpos229246 { background-position: 100px 10% , center bottom , right 15px bottom }
bgpos229247 { background-position: 100px 100px , center bottom , right 15px bottom }
bgpos229248 { background-position: 100px bottom , center bottom , right 15px bottom }
bgpos229249 { background-position: 100px center , center bottom , right 15px bottom }
bgpos229250 { background-position: 100px top , center bottom , right 15px bottom }
bgpos229251 { background-position: 50% , center bottom , right 15px bottom }
bgpos229252 { background-position: 50% 10% , center bottom , right 15px bottom }
bgpos229253 { background-position: 50% 100px , center bottom , right 15px bottom }
bgpos229254 { background-position: 50% bottom , center bottom , right 15px bottom }
bgpos229255 { background-position: 50% center , center bottom , right 15px bottom }
bgpos229256 { background-position: 50% top , center bottom , right 15px bottom }
bgpos229257 { background-position: bottom, center bottom , right 15px bottom }
bgpos229258 { background-position: center , center bottom , right 15px bottom }
bgpos229259 { background-position: center bottom , center bottom , right 15px bottom }
bgpos229260 { background-position: center bottom 15% , center bottom , right 15px bottom }
bgpos229261 { background-position: center bottom 15px , center bottom , right 15px bottom }
bgpos229262 { background-position: center top , center bottom , right 15px bottom }
bgpos229263 { background-position: center top 15% , center bottom , right 15px bottom }
bgpos229264 { background-position: center top 15px , center bottom , right 15px bottom }
bgpos229265 { background-position: center 10% , center bottom , right 15px bottom }
bgpos229266 { background-position: center 100px , center bottom , right 15px bottom }
bgpos229267 { background-position: center bottom , center bottom , right 15px bottom }
bgpos229268 { background-position: center center , center bottom , right 15px bottom }
bgpos229269 { background-position: center top , center bottom , right 15px bottom }
bgpos229270 { background-position: left , center bottom , right 15px bottom }
bgpos229271 { background-position: left 10% , center bottom , right 15px bottom }
bgpos229272 { background-position: left 100px , center bottom , right 15px bottom }
bgpos229273 { background-position: left bottom , center bottom , right 15px bottom }
bgpos229274 { background-position: left center , center bottom , right 15px bottom }
bgpos229275 { background-position: left top , center bottom , right 15px bottom }
bgpos229276 { background-position: right , center bottom , right 15px bottom }
bgpos229277 { background-position: right 10% , center bottom , right 15px bottom }
bgpos229278 { background-position: right 100px , center bottom , right 15px bottom }
bgpos229279 { background-position: right bottom , center bottom , right 15px bottom }
bgpos229280 { background-position: right center , center bottom , right 15px bottom }
bgpos229281 { background-position: right top , center bottom , right 15px bottom }
bgpos229282 { background-position: top , center bottom , right 15px bottom }
bgpos229283 { background-position: left bottom , center center , right 15px bottom }
bgpos229284 { background-position: left bottom 15% , center center , right 15px bottom }
bgpos229285 { background-position: left bottom 15px , center center , right 15px bottom }
bgpos229286 { background-position: left top , center center , right 15px bottom }
bgpos229287 { background-position: left top 15% , center center , right 15px bottom }
bgpos229288 { background-position: left top 15px , center center , right 15px bottom }
bgpos229289 { background-position: left 15% bottom , center center , right 15px bottom }
bgpos229290 { background-position: left 15% bottom 15% , center center , right 15px bottom }
bgpos229291 { background-position: left 15% bottom 15px , center center , right 15px bottom }
bgpos229292 { background-position: left 15% top , center center , right 15px bottom }
bgpos229293 { background-position: left 15% top 15% , center center , right 15px bottom }
bgpos229294 { background-position: left 15% top 15px , center center , right 15px bottom }
bgpos229295 { background-position: left 15% center , center center , right 15px bottom }
bgpos229296 { background-position: left 15px bottom , center center , right 15px bottom }
bgpos229297 { background-position: left 15px bottom 15% , center center , right 15px bottom }
bgpos229298 { background-position: left 15px bottom 15px , center center , right 15px bottom }
bgpos229299 { background-position: left 15px top , center center , right 15px bottom }
bgpos229300 { background-position: left 15px top 15% , center center , right 15px bottom }
bgpos229301 { background-position: left 15px top 15px , center center , right 15px bottom }
bgpos229302 { background-position: left 15px center , center center , right 15px bottom }
bgpos229303 { background-position: left center , center center , right 15px bottom }
bgpos229304 { background-position: right bottom , center center , right 15px bottom }
bgpos229305 { background-position: right bottom 15% , center center , right 15px bottom }
bgpos229306 { background-position: right bottom 15px , center center , right 15px bottom }
bgpos229307 { background-position: right top , center center , right 15px bottom }
bgpos229308 { background-position: right top 15% , center center , right 15px bottom }
bgpos229309 { background-position: right top 15px , center center , right 15px bottom }
bgpos229310 { background-position: right 15% bottom , center center , right 15px bottom }
bgpos229311 { background-position: right 15% bottom 15% , center center , right 15px bottom }
bgpos229312 { background-position: right 15% bottom 15px , center center , right 15px bottom }
bgpos229313 { background-position: right 15% top , center center , right 15px bottom }
bgpos229314 { background-position: right 15% top 15% , center center , right 15px bottom }
bgpos229315 { background-position: right 15% top 15px , center center , right 15px bottom }
bgpos229316 { background-position: right 15% center , center center , right 15px bottom }
bgpos229317 { background-position: right 15px bottom , center center , right 15px bottom }
bgpos229318 { background-position: right 15px bottom 15% , center center , right 15px bottom }
bgpos229319 { background-position: right 15px bottom 15px , center center , right 15px bottom }
bgpos229320 { background-position: right 15px top , center center , right 15px bottom }
bgpos229321 { background-position: right 15px top 15% , center center , right 15px bottom }
bgpos229322 { background-position: right 15px top 15px , center center , right 15px bottom }
bgpos229323 { background-position: right 15px center , center center , right 15px bottom }
bgpos229324 { background-position: right center , center center , right 15px bottom }
bgpos229325 { background-position: 100px , center center , right 15px bottom }
bgpos229326 { background-position: 100px 10% , center center , right 15px bottom }
bgpos229327 { background-position: 100px 100px , center center , right 15px bottom }
bgpos229328 { background-position: 100px bottom , center center , right 15px bottom }
bgpos229329 { background-position: 100px center , center center , right 15px bottom }
bgpos229330 { background-position: 100px top , center center , right 15px bottom }
bgpos229331 { background-position: 50% , center center , right 15px bottom }
bgpos229332 { background-position: 50% 10% , center center , right 15px bottom }
bgpos229333 { background-position: 50% 100px , center center , right 15px bottom }
bgpos229334 { background-position: 50% bottom , center center , right 15px bottom }
bgpos229335 { background-position: 50% center , center center , right 15px bottom }
bgpos229336 { background-position: 50% top , center center , right 15px bottom }
bgpos229337 { background-position: bottom, center center , right 15px bottom }
bgpos229338 { background-position: center , center center , right 15px bottom }
bgpos229339 { background-position: center bottom , center center , right 15px bottom }
bgpos229340 { background-position: center bottom 15% , center center , right 15px bottom }
bgpos229341 { background-position: center bottom 15px , center center , right 15px bottom }
bgpos229342 { background-position: center top , center center , right 15px bottom }
bgpos229343 { background-position: center top 15% , center center , right 15px bottom }
bgpos229344 { background-position: center top 15px , center center , right 15px bottom }
bgpos229345 { background-position: center 10% , center center , right 15px bottom }
bgpos229346 { background-position: center 100px , center center , right 15px bottom }
bgpos229347 { background-position: center bottom , center center , right 15px bottom }
bgpos229348 { background-position: center center , center center , right 15px bottom }
bgpos229349 { background-position: center top , center center , right 15px bottom }
bgpos229350 { background-position: left , center center , right 15px bottom }
bgpos229351 { background-position: left 10% , center center , right 15px bottom }
bgpos229352 { background-position: left 100px , center center , right 15px bottom }
bgpos229353 { background-position: left bottom , center center , right 15px bottom }
bgpos229354 { background-position: left center , center center , right 15px bottom }
bgpos229355 { background-position: left top , center center , right 15px bottom }
bgpos229356 { background-position: right , center center , right 15px bottom }
bgpos229357 { background-position: right 10% , center center , right 15px bottom }
bgpos229358 { background-position: right 100px , center center , right 15px bottom }
bgpos229359 { background-position: right bottom , center center , right 15px bottom }
bgpos229360 { background-position: right center , center center , right 15px bottom }
bgpos229361 { background-position: right top , center center , right 15px bottom }
bgpos229362 { background-position: top , center center , right 15px bottom }
bgpos229363 { background-position: left bottom , center top , right 15px bottom }
bgpos229364 { background-position: left bottom 15% , center top , right 15px bottom }
bgpos229365 { background-position: left bottom 15px , center top , right 15px bottom }
bgpos229366 { background-position: left top , center top , right 15px bottom }
bgpos229367 { background-position: left top 15% , center top , right 15px bottom }
bgpos229368 { background-position: left top 15px , center top , right 15px bottom }
bgpos229369 { background-position: left 15% bottom , center top , right 15px bottom }
bgpos229370 { background-position: left 15% bottom 15% , center top , right 15px bottom }
bgpos229371 { background-position: left 15% bottom 15px , center top , right 15px bottom }
bgpos229372 { background-position: left 15% top , center top , right 15px bottom }
bgpos229373 { background-position: left 15% top 15% , center top , right 15px bottom }
bgpos229374 { background-position: left 15% top 15px , center top , right 15px bottom }
bgpos229375 { background-position: left 15% center , center top , right 15px bottom }
bgpos229376 { background-position: left 15px bottom , center top , right 15px bottom }
bgpos229377 { background-position: left 15px bottom 15% , center top , right 15px bottom }
bgpos229378 { background-position: left 15px bottom 15px , center top , right 15px bottom }
bgpos229379 { background-position: left 15px top , center top , right 15px bottom }
bgpos229380 { background-position: left 15px top 15% , center top , right 15px bottom }
bgpos229381 { background-position: left 15px top 15px , center top , right 15px bottom }
bgpos229382 { background-position: left 15px center , center top , right 15px bottom }
bgpos229383 { background-position: left center , center top , right 15px bottom }
bgpos229384 { background-position: right bottom , center top , right 15px bottom }
bgpos229385 { background-position: right bottom 15% , center top , right 15px bottom }
bgpos229386 { background-position: right bottom 15px , center top , right 15px bottom }
bgpos229387 { background-position: right top , center top , right 15px bottom }
bgpos229388 { background-position: right top 15% , center top , right 15px bottom }
bgpos229389 { background-position: right top 15px , center top , right 15px bottom }
bgpos229390 { background-position: right 15% bottom , center top , right 15px bottom }
bgpos229391 { background-position: right 15% bottom 15% , center top , right 15px bottom }
bgpos229392 { background-position: right 15% bottom 15px , center top , right 15px bottom }
bgpos229393 { background-position: right 15% top , center top , right 15px bottom }
bgpos229394 { background-position: right 15% top 15% , center top , right 15px bottom }
bgpos229395 { background-position: right 15% top 15px , center top , right 15px bottom }
bgpos229396 { background-position: right 15% center , center top , right 15px bottom }
bgpos229397 { background-position: right 15px bottom , center top , right 15px bottom }
bgpos229398 { background-position: right 15px bottom 15% , center top , right 15px bottom }
bgpos229399 { background-position: right 15px bottom 15px , center top , right 15px bottom }
bgpos229400 { background-position: right 15px top , center top , right 15px bottom }
bgpos229401 { background-position: right 15px top 15% , center top , right 15px bottom }
bgpos229402 { background-position: right 15px top 15px , center top , right 15px bottom }
bgpos229403 { background-position: right 15px center , center top , right 15px bottom }
bgpos229404 { background-position: right center , center top , right 15px bottom }
bgpos229405 { background-position: 100px , center top , right 15px bottom }
bgpos229406 { background-position: 100px 10% , center top , right 15px bottom }
bgpos229407 { background-position: 100px 100px , center top , right 15px bottom }
bgpos229408 { background-position: 100px bottom , center top , right 15px bottom }
bgpos229409 { background-position: 100px center , center top , right 15px bottom }
bgpos229410 { background-position: 100px top , center top , right 15px bottom }
bgpos229411 { background-position: 50% , center top , right 15px bottom }
bgpos229412 { background-position: 50% 10% , center top , right 15px bottom }
bgpos229413 { background-position: 50% 100px , center top , right 15px bottom }
bgpos229414 { background-position: 50% bottom , center top , right 15px bottom }
bgpos229415 { background-position: 50% center , center top , right 15px bottom }
bgpos229416 { background-position: 50% top , center top , right 15px bottom }
bgpos229417 { background-position: bottom, center top , right 15px bottom }
bgpos229418 { background-position: center , center top , right 15px bottom }
bgpos229419 { background-position: center bottom , center top , right 15px bottom }
bgpos229420 { background-position: center bottom 15% , center top , right 15px bottom }
bgpos229421 { background-position: center bottom 15px , center top , right 15px bottom }
bgpos229422 { background-position: center top , center top , right 15px bottom }
bgpos229423 { background-position: center top 15% , center top , right 15px bottom }
bgpos229424 { background-position: center top 15px , center top , right 15px bottom }
bgpos229425 { background-position: center 10% , center top , right 15px bottom }
bgpos229426 { background-position: center 100px , center top , right 15px bottom }
bgpos229427 { background-position: center bottom , center top , right 15px bottom }
bgpos229428 { background-position: center center , center top , right 15px bottom }
bgpos229429 { background-position: center top , center top , right 15px bottom }
bgpos229430 { background-position: left , center top , right 15px bottom }
bgpos229431 { background-position: left 10% , center top , right 15px bottom }
bgpos229432 { background-position: left 100px , center top , right 15px bottom }
bgpos229433 { background-position: left bottom , center top , right 15px bottom }
bgpos229434 { background-position: left center , center top , right 15px bottom }
bgpos229435 { background-position: left top , center top , right 15px bottom }
bgpos229436 { background-position: right , center top , right 15px bottom }
bgpos229437 { background-position: right 10% , center top , right 15px bottom }
bgpos229438 { background-position: right 100px , center top , right 15px bottom }
bgpos229439 { background-position: right bottom , center top , right 15px bottom }
bgpos229440 { background-position: right center , center top , right 15px bottom }
bgpos229441 { background-position: right top , center top , right 15px bottom }
bgpos229442 { background-position: top , center top , right 15px bottom }
bgpos229443 { background-position: left bottom , left , right 15px bottom }
bgpos229444 { background-position: left bottom 15% , left , right 15px bottom }
bgpos229445 { background-position: left bottom 15px , left , right 15px bottom }
bgpos229446 { background-position: left top , left , right 15px bottom }
bgpos229447 { background-position: left top 15% , left , right 15px bottom }
bgpos229448 { background-position: left top 15px , left , right 15px bottom }
bgpos229449 { background-position: left 15% bottom , left , right 15px bottom }
bgpos229450 { background-position: left 15% bottom 15% , left , right 15px bottom }
bgpos229451 { background-position: left 15% bottom 15px , left , right 15px bottom }
bgpos229452 { background-position: left 15% top , left , right 15px bottom }
bgpos229453 { background-position: left 15% top 15% , left , right 15px bottom }
bgpos229454 { background-position: left 15% top 15px , left , right 15px bottom }
bgpos229455 { background-position: left 15% center , left , right 15px bottom }
bgpos229456 { background-position: left 15px bottom , left , right 15px bottom }
bgpos229457 { background-position: left 15px bottom 15% , left , right 15px bottom }
bgpos229458 { background-position: left 15px bottom 15px , left , right 15px bottom }
bgpos229459 { background-position: left 15px top , left , right 15px bottom }
bgpos229460 { background-position: left 15px top 15% , left , right 15px bottom }
bgpos229461 { background-position: left 15px top 15px , left , right 15px bottom }
bgpos229462 { background-position: left 15px center , left , right 15px bottom }
bgpos229463 { background-position: left center , left , right 15px bottom }
bgpos229464 { background-position: right bottom , left , right 15px bottom }
bgpos229465 { background-position: right bottom 15% , left , right 15px bottom }
bgpos229466 { background-position: right bottom 15px , left , right 15px bottom }
bgpos229467 { background-position: right top , left , right 15px bottom }
bgpos229468 { background-position: right top 15% , left , right 15px bottom }
bgpos229469 { background-position: right top 15px , left , right 15px bottom }
bgpos229470 { background-position: right 15% bottom , left , right 15px bottom }
bgpos229471 { background-position: right 15% bottom 15% , left , right 15px bottom }
bgpos229472 { background-position: right 15% bottom 15px , left , right 15px bottom }
bgpos229473 { background-position: right 15% top , left , right 15px bottom }
bgpos229474 { background-position: right 15% top 15% , left , right 15px bottom }
bgpos229475 { background-position: right 15% top 15px , left , right 15px bottom }
bgpos229476 { background-position: right 15% center , left , right 15px bottom }
bgpos229477 { background-position: right 15px bottom , left , right 15px bottom }
bgpos229478 { background-position: right 15px bottom 15% , left , right 15px bottom }
bgpos229479 { background-position: right 15px bottom 15px , left , right 15px bottom }
bgpos229480 { background-position: right 15px top , left , right 15px bottom }
bgpos229481 { background-position: right 15px top 15% , left , right 15px bottom }
bgpos229482 { background-position: right 15px top 15px , left , right 15px bottom }
bgpos229483 { background-position: right 15px center , left , right 15px bottom }
bgpos229484 { background-position: right center , left , right 15px bottom }
bgpos229485 { background-position: 100px , left , right 15px bottom }
bgpos229486 { background-position: 100px 10% , left , right 15px bottom }
bgpos229487 { background-position: 100px 100px , left , right 15px bottom }
bgpos229488 { background-position: 100px bottom , left , right 15px bottom }
bgpos229489 { background-position: 100px center , left , right 15px bottom }
bgpos229490 { background-position: 100px top , left , right 15px bottom }
bgpos229491 { background-position: 50% , left , right 15px bottom }
bgpos229492 { background-position: 50% 10% , left , right 15px bottom }
bgpos229493 { background-position: 50% 100px , left , right 15px bottom }
bgpos229494 { background-position: 50% bottom , left , right 15px bottom }
bgpos229495 { background-position: 50% center , left , right 15px bottom }
bgpos229496 { background-position: 50% top , left , right 15px bottom }
bgpos229497 { background-position: bottom, left , right 15px bottom }
bgpos229498 { background-position: center , left , right 15px bottom }
bgpos229499 { background-position: center bottom , left , right 15px bottom }
bgpos229500 { background-position: center bottom 15% , left , right 15px bottom }
bgpos229501 { background-position: center bottom 15px , left , right 15px bottom }
bgpos229502 { background-position: center top , left , right 15px bottom }
bgpos229503 { background-position: center top 15% , left , right 15px bottom }
bgpos229504 { background-position: center top 15px , left , right 15px bottom }
bgpos229505 { background-position: center 10% , left , right 15px bottom }
bgpos229506 { background-position: center 100px , left , right 15px bottom }
bgpos229507 { background-position: center bottom , left , right 15px bottom }
bgpos229508 { background-position: center center , left , right 15px bottom }
bgpos229509 { background-position: center top , left , right 15px bottom }
bgpos229510 { background-position: left , left , right 15px bottom }
bgpos229511 { background-position: left 10% , left , right 15px bottom }
bgpos229512 { background-position: left 100px , left , right 15px bottom }
bgpos229513 { background-position: left bottom , left , right 15px bottom }
bgpos229514 { background-position: left center , left , right 15px bottom }
bgpos229515 { background-position: left top , left , right 15px bottom }
bgpos229516 { background-position: right , left , right 15px bottom }
bgpos229517 { background-position: right 10% , left , right 15px bottom }
bgpos229518 { background-position: right 100px , left , right 15px bottom }
bgpos229519 { background-position: right bottom , left , right 15px bottom }
bgpos229520 { background-position: right center , left , right 15px bottom }
bgpos229521 { background-position: right top , left , right 15px bottom }
bgpos229522 { background-position: top , left , right 15px bottom }
bgpos229523 { background-position: left bottom , left 10% , right 15px bottom }
bgpos229524 { background-position: left bottom 15% , left 10% , right 15px bottom }
bgpos229525 { background-position: left bottom 15px , left 10% , right 15px bottom }
bgpos229526 { background-position: left top , left 10% , right 15px bottom }
bgpos229527 { background-position: left top 15% , left 10% , right 15px bottom }
bgpos229528 { background-position: left top 15px , left 10% , right 15px bottom }
bgpos229529 { background-position: left 15% bottom , left 10% , right 15px bottom }
bgpos229530 { background-position: left 15% bottom 15% , left 10% , right 15px bottom }
bgpos229531 { background-position: left 15% bottom 15px , left 10% , right 15px bottom }
bgpos229532 { background-position: left 15% top , left 10% , right 15px bottom }
bgpos229533 { background-position: left 15% top 15% , left 10% , right 15px bottom }
bgpos229534 { background-position: left 15% top 15px , left 10% , right 15px bottom }
bgpos229535 { background-position: left 15% center , left 10% , right 15px bottom }
bgpos229536 { background-position: left 15px bottom , left 10% , right 15px bottom }
bgpos229537 { background-position: left 15px bottom 15% , left 10% , right 15px bottom }
bgpos229538 { background-position: left 15px bottom 15px , left 10% , right 15px bottom }
bgpos229539 { background-position: left 15px top , left 10% , right 15px bottom }
bgpos229540 { background-position: left 15px top 15% , left 10% , right 15px bottom }
bgpos229541 { background-position: left 15px top 15px , left 10% , right 15px bottom }
bgpos229542 { background-position: left 15px center , left 10% , right 15px bottom }
bgpos229543 { background-position: left center , left 10% , right 15px bottom }
bgpos229544 { background-position: right bottom , left 10% , right 15px bottom }
bgpos229545 { background-position: right bottom 15% , left 10% , right 15px bottom }
bgpos229546 { background-position: right bottom 15px , left 10% , right 15px bottom }
bgpos229547 { background-position: right top , left 10% , right 15px bottom }
bgpos229548 { background-position: right top 15% , left 10% , right 15px bottom }
bgpos229549 { background-position: right top 15px , left 10% , right 15px bottom }
bgpos229550 { background-position: right 15% bottom , left 10% , right 15px bottom }
bgpos229551 { background-position: right 15% bottom 15% , left 10% , right 15px bottom }
bgpos229552 { background-position: right 15% bottom 15px , left 10% , right 15px bottom }
bgpos229553 { background-position: right 15% top , left 10% , right 15px bottom }
bgpos229554 { background-position: right 15% top 15% , left 10% , right 15px bottom }
bgpos229555 { background-position: right 15% top 15px , left 10% , right 15px bottom }
bgpos229556 { background-position: right 15% center , left 10% , right 15px bottom }
bgpos229557 { background-position: right 15px bottom , left 10% , right 15px bottom }
bgpos229558 { background-position: right 15px bottom 15% , left 10% , right 15px bottom }
bgpos229559 { background-position: right 15px bottom 15px , left 10% , right 15px bottom }
bgpos229560 { background-position: right 15px top , left 10% , right 15px bottom }
bgpos229561 { background-position: right 15px top 15% , left 10% , right 15px bottom }
bgpos229562 { background-position: right 15px top 15px , left 10% , right 15px bottom }
bgpos229563 { background-position: right 15px center , left 10% , right 15px bottom }
bgpos229564 { background-position: right center , left 10% , right 15px bottom }
bgpos229565 { background-position: 100px , left 10% , right 15px bottom }
bgpos229566 { background-position: 100px 10% , left 10% , right 15px bottom }
bgpos229567 { background-position: 100px 100px , left 10% , right 15px bottom }
bgpos229568 { background-position: 100px bottom , left 10% , right 15px bottom }
bgpos229569 { background-position: 100px center , left 10% , right 15px bottom }
bgpos229570 { background-position: 100px top , left 10% , right 15px bottom }
bgpos229571 { background-position: 50% , left 10% , right 15px bottom }
bgpos229572 { background-position: 50% 10% , left 10% , right 15px bottom }
bgpos229573 { background-position: 50% 100px , left 10% , right 15px bottom }
bgpos229574 { background-position: 50% bottom , left 10% , right 15px bottom }
bgpos229575 { background-position: 50% center , left 10% , right 15px bottom }
bgpos229576 { background-position: 50% top , left 10% , right 15px bottom }
bgpos229577 { background-position: bottom, left 10% , right 15px bottom }
bgpos229578 { background-position: center , left 10% , right 15px bottom }
bgpos229579 { background-position: center bottom , left 10% , right 15px bottom }
bgpos229580 { background-position: center bottom 15% , left 10% , right 15px bottom }
bgpos229581 { background-position: center bottom 15px , left 10% , right 15px bottom }
bgpos229582 { background-position: center top , left 10% , right 15px bottom }
bgpos229583 { background-position: center top 15% , left 10% , right 15px bottom }
bgpos229584 { background-position: center top 15px , left 10% , right 15px bottom }
bgpos229585 { background-position: center 10% , left 10% , right 15px bottom }
bgpos229586 { background-position: center 100px , left 10% , right 15px bottom }
bgpos229587 { background-position: center bottom , left 10% , right 15px bottom }
bgpos229588 { background-position: center center , left 10% , right 15px bottom }
bgpos229589 { background-position: center top , left 10% , right 15px bottom }
bgpos229590 { background-position: left , left 10% , right 15px bottom }
bgpos229591 { background-position: left 10% , left 10% , right 15px bottom }
bgpos229592 { background-position: left 100px , left 10% , right 15px bottom }
bgpos229593 { background-position: left bottom , left 10% , right 15px bottom }
bgpos229594 { background-position: left center , left 10% , right 15px bottom }
bgpos229595 { background-position: left top , left 10% , right 15px bottom }
bgpos229596 { background-position: right , left 10% , right 15px bottom }
bgpos229597 { background-position: right 10% , left 10% , right 15px bottom }
bgpos229598 { background-position: right 100px , left 10% , right 15px bottom }
bgpos229599 { background-position: right bottom , left 10% , right 15px bottom }
bgpos229600 { background-position: right center , left 10% , right 15px bottom }
bgpos229601 { background-position: right top , left 10% , right 15px bottom }
bgpos229602 { background-position: top , left 10% , right 15px bottom }
bgpos229603 { background-position: left bottom , left 100px , right 15px bottom }
bgpos229604 { background-position: left bottom 15% , left 100px , right 15px bottom }
bgpos229605 { background-position: left bottom 15px , left 100px , right 15px bottom }
bgpos229606 { background-position: left top , left 100px , right 15px bottom }
bgpos229607 { background-position: left top 15% , left 100px , right 15px bottom }
bgpos229608 { background-position: left top 15px , left 100px , right 15px bottom }
bgpos229609 { background-position: left 15% bottom , left 100px , right 15px bottom }
bgpos229610 { background-position: left 15% bottom 15% , left 100px , right 15px bottom }
bgpos229611 { background-position: left 15% bottom 15px , left 100px , right 15px bottom }
bgpos229612 { background-position: left 15% top , left 100px , right 15px bottom }
bgpos229613 { background-position: left 15% top 15% , left 100px , right 15px bottom }
bgpos229614 { background-position: left 15% top 15px , left 100px , right 15px bottom }
bgpos229615 { background-position: left 15% center , left 100px , right 15px bottom }
bgpos229616 { background-position: left 15px bottom , left 100px , right 15px bottom }
bgpos229617 { background-position: left 15px bottom 15% , left 100px , right 15px bottom }
bgpos229618 { background-position: left 15px bottom 15px , left 100px , right 15px bottom }
bgpos229619 { background-position: left 15px top , left 100px , right 15px bottom }
bgpos229620 { background-position: left 15px top 15% , left 100px , right 15px bottom }
bgpos229621 { background-position: left 15px top 15px , left 100px , right 15px bottom }
bgpos229622 { background-position: left 15px center , left 100px , right 15px bottom }
bgpos229623 { background-position: left center , left 100px , right 15px bottom }
bgpos229624 { background-position: right bottom , left 100px , right 15px bottom }
bgpos229625 { background-position: right bottom 15% , left 100px , right 15px bottom }
bgpos229626 { background-position: right bottom 15px , left 100px , right 15px bottom }
bgpos229627 { background-position: right top , left 100px , right 15px bottom }
bgpos229628 { background-position: right top 15% , left 100px , right 15px bottom }
bgpos229629 { background-position: right top 15px , left 100px , right 15px bottom }
bgpos229630 { background-position: right 15% bottom , left 100px , right 15px bottom }
bgpos229631 { background-position: right 15% bottom 15% , left 100px , right 15px bottom }
bgpos229632 { background-position: right 15% bottom 15px , left 100px , right 15px bottom }
bgpos229633 { background-position: right 15% top , left 100px , right 15px bottom }
bgpos229634 { background-position: right 15% top 15% , left 100px , right 15px bottom }
bgpos229635 { background-position: right 15% top 15px , left 100px , right 15px bottom }
bgpos229636 { background-position: right 15% center , left 100px , right 15px bottom }
bgpos229637 { background-position: right 15px bottom , left 100px , right 15px bottom }
bgpos229638 { background-position: right 15px bottom 15% , left 100px , right 15px bottom }
bgpos229639 { background-position: right 15px bottom 15px , left 100px , right 15px bottom }
bgpos229640 { background-position: right 15px top , left 100px , right 15px bottom }
bgpos229641 { background-position: right 15px top 15% , left 100px , right 15px bottom }
bgpos229642 { background-position: right 15px top 15px , left 100px , right 15px bottom }
bgpos229643 { background-position: right 15px center , left 100px , right 15px bottom }
bgpos229644 { background-position: right center , left 100px , right 15px bottom }
bgpos229645 { background-position: 100px , left 100px , right 15px bottom }
bgpos229646 { background-position: 100px 10% , left 100px , right 15px bottom }
bgpos229647 { background-position: 100px 100px , left 100px , right 15px bottom }
bgpos229648 { background-position: 100px bottom , left 100px , right 15px bottom }
bgpos229649 { background-position: 100px center , left 100px , right 15px bottom }
bgpos229650 { background-position: 100px top , left 100px , right 15px bottom }
bgpos229651 { background-position: 50% , left 100px , right 15px bottom }
bgpos229652 { background-position: 50% 10% , left 100px , right 15px bottom }
bgpos229653 { background-position: 50% 100px , left 100px , right 15px bottom }
bgpos229654 { background-position: 50% bottom , left 100px , right 15px bottom }
bgpos229655 { background-position: 50% center , left 100px , right 15px bottom }
bgpos229656 { background-position: 50% top , left 100px , right 15px bottom }
bgpos229657 { background-position: bottom, left 100px , right 15px bottom }
bgpos229658 { background-position: center , left 100px , right 15px bottom }
bgpos229659 { background-position: center bottom , left 100px , right 15px bottom }
bgpos229660 { background-position: center bottom 15% , left 100px , right 15px bottom }
bgpos229661 { background-position: center bottom 15px , left 100px , right 15px bottom }
bgpos229662 { background-position: center top , left 100px , right 15px bottom }
bgpos229663 { background-position: center top 15% , left 100px , right 15px bottom }
bgpos229664 { background-position: center top 15px , left 100px , right 15px bottom }
bgpos229665 { background-position: center 10% , left 100px , right 15px bottom }
bgpos229666 { background-position: center 100px , left 100px , right 15px bottom }
bgpos229667 { background-position: center bottom , left 100px , right 15px bottom }
bgpos229668 { background-position: center center , left 100px , right 15px bottom }
bgpos229669 { background-position: center top , left 100px , right 15px bottom }
bgpos229670 { background-position: left , left 100px , right 15px bottom }
bgpos229671 { background-position: left 10% , left 100px , right 15px bottom }
bgpos229672 { background-position: left 100px , left 100px , right 15px bottom }
bgpos229673 { background-position: left bottom , left 100px , right 15px bottom }
bgpos229674 { background-position: left center , left 100px , right 15px bottom }
bgpos229675 { background-position: left top , left 100px , right 15px bottom }
bgpos229676 { background-position: right , left 100px , right 15px bottom }
bgpos229677 { background-position: right 10% , left 100px , right 15px bottom }
bgpos229678 { background-position: right 100px , left 100px , right 15px bottom }
bgpos229679 { background-position: right bottom , left 100px , right 15px bottom }
bgpos229680 { background-position: right center , left 100px , right 15px bottom }
bgpos229681 { background-position: right top , left 100px , right 15px bottom }
bgpos229682 { background-position: top , left 100px , right 15px bottom }
bgpos229683 { background-position: left bottom , left bottom , right 15px bottom }
bgpos229684 { background-position: left bottom 15% , left bottom , right 15px bottom }
bgpos229685 { background-position: left bottom 15px , left bottom , right 15px bottom }
bgpos229686 { background-position: left top , left bottom , right 15px bottom }
bgpos229687 { background-position: left top 15% , left bottom , right 15px bottom }
bgpos229688 { background-position: left top 15px , left bottom , right 15px bottom }
bgpos229689 { background-position: left 15% bottom , left bottom , right 15px bottom }
bgpos229690 { background-position: left 15% bottom 15% , left bottom , right 15px bottom }
bgpos229691 { background-position: left 15% bottom 15px , left bottom , right 15px bottom }
bgpos229692 { background-position: left 15% top , left bottom , right 15px bottom }
bgpos229693 { background-position: left 15% top 15% , left bottom , right 15px bottom }
bgpos229694 { background-position: left 15% top 15px , left bottom , right 15px bottom }
bgpos229695 { background-position: left 15% center , left bottom , right 15px bottom }
bgpos229696 { background-position: left 15px bottom , left bottom , right 15px bottom }
bgpos229697 { background-position: left 15px bottom 15% , left bottom , right 15px bottom }
bgpos229698 { background-position: left 15px bottom 15px , left bottom , right 15px bottom }
bgpos229699 { background-position: left 15px top , left bottom , right 15px bottom }
bgpos229700 { background-position: left 15px top 15% , left bottom , right 15px bottom }
bgpos229701 { background-position: left 15px top 15px , left bottom , right 15px bottom }
bgpos229702 { background-position: left 15px center , left bottom , right 15px bottom }
bgpos229703 { background-position: left center , left bottom , right 15px bottom }
bgpos229704 { background-position: right bottom , left bottom , right 15px bottom }
bgpos229705 { background-position: right bottom 15% , left bottom , right 15px bottom }
bgpos229706 { background-position: right bottom 15px , left bottom , right 15px bottom }
bgpos229707 { background-position: right top , left bottom , right 15px bottom }
bgpos229708 { background-position: right top 15% , left bottom , right 15px bottom }
bgpos229709 { background-position: right top 15px , left bottom , right 15px bottom }
bgpos229710 { background-position: right 15% bottom , left bottom , right 15px bottom }
bgpos229711 { background-position: right 15% bottom 15% , left bottom , right 15px bottom }
bgpos229712 { background-position: right 15% bottom 15px , left bottom , right 15px bottom }
bgpos229713 { background-position: right 15% top , left bottom , right 15px bottom }
bgpos229714 { background-position: right 15% top 15% , left bottom , right 15px bottom }
bgpos229715 { background-position: right 15% top 15px , left bottom , right 15px bottom }
bgpos229716 { background-position: right 15% center , left bottom , right 15px bottom }
bgpos229717 { background-position: right 15px bottom , left bottom , right 15px bottom }
bgpos229718 { background-position: right 15px bottom 15% , left bottom , right 15px bottom }
bgpos229719 { background-position: right 15px bottom 15px , left bottom , right 15px bottom }
bgpos229720 { background-position: right 15px top , left bottom , right 15px bottom }
bgpos229721 { background-position: right 15px top 15% , left bottom , right 15px bottom }
bgpos229722 { background-position: right 15px top 15px , left bottom , right 15px bottom }
bgpos229723 { background-position: right 15px center , left bottom , right 15px bottom }
bgpos229724 { background-position: right center , left bottom , right 15px bottom }
bgpos229725 { background-position: 100px , left bottom , right 15px bottom }
bgpos229726 { background-position: 100px 10% , left bottom , right 15px bottom }
bgpos229727 { background-position: 100px 100px , left bottom , right 15px bottom }
bgpos229728 { background-position: 100px bottom , left bottom , right 15px bottom }
bgpos229729 { background-position: 100px center , left bottom , right 15px bottom }
bgpos229730 { background-position: 100px top , left bottom , right 15px bottom }
bgpos229731 { background-position: 50% , left bottom , right 15px bottom }
bgpos229732 { background-position: 50% 10% , left bottom , right 15px bottom }
bgpos229733 { background-position: 50% 100px , left bottom , right 15px bottom }
bgpos229734 { background-position: 50% bottom , left bottom , right 15px bottom }
bgpos229735 { background-position: 50% center , left bottom , right 15px bottom }
bgpos229736 { background-position: 50% top , left bottom , right 15px bottom }
bgpos229737 { background-position: bottom, left bottom , right 15px bottom }
bgpos229738 { background-position: center , left bottom , right 15px bottom }
bgpos229739 { background-position: center bottom , left bottom , right 15px bottom }
bgpos229740 { background-position: center bottom 15% , left bottom , right 15px bottom }
bgpos229741 { background-position: center bottom 15px , left bottom , right 15px bottom }
bgpos229742 { background-position: center top , left bottom , right 15px bottom }
bgpos229743 { background-position: center top 15% , left bottom , right 15px bottom }
bgpos229744 { background-position: center top 15px , left bottom , right 15px bottom }
bgpos229745 { background-position: center 10% , left bottom , right 15px bottom }
bgpos229746 { background-position: center 100px , left bottom , right 15px bottom }
bgpos229747 { background-position: center bottom , left bottom , right 15px bottom }
bgpos229748 { background-position: center center , left bottom , right 15px bottom }
bgpos229749 { background-position: center top , left bottom , right 15px bottom }
bgpos229750 { background-position: left , left bottom , right 15px bottom }
bgpos229751 { background-position: left 10% , left bottom , right 15px bottom }
bgpos229752 { background-position: left 100px , left bottom , right 15px bottom }
bgpos229753 { background-position: left bottom , left bottom , right 15px bottom }
bgpos229754 { background-position: left center , left bottom , right 15px bottom }
bgpos229755 { background-position: left top , left bottom , right 15px bottom }
bgpos229756 { background-position: right , left bottom , right 15px bottom }
bgpos229757 { background-position: right 10% , left bottom , right 15px bottom }
bgpos229758 { background-position: right 100px , left bottom , right 15px bottom }
bgpos229759 { background-position: right bottom , left bottom , right 15px bottom }
bgpos229760 { background-position: right center , left bottom , right 15px bottom }
bgpos229761 { background-position: right top , left bottom , right 15px bottom }
bgpos229762 { background-position: top , left bottom , right 15px bottom }
bgpos229763 { background-position: left bottom , left center , right 15px bottom }
bgpos229764 { background-position: left bottom 15% , left center , right 15px bottom }
bgpos229765 { background-position: left bottom 15px , left center , right 15px bottom }
bgpos229766 { background-position: left top , left center , right 15px bottom }
bgpos229767 { background-position: left top 15% , left center , right 15px bottom }
bgpos229768 { background-position: left top 15px , left center , right 15px bottom }
bgpos229769 { background-position: left 15% bottom , left center , right 15px bottom }
bgpos229770 { background-position: left 15% bottom 15% , left center , right 15px bottom }
bgpos229771 { background-position: left 15% bottom 15px , left center , right 15px bottom }
bgpos229772 { background-position: left 15% top , left center , right 15px bottom }
bgpos229773 { background-position: left 15% top 15% , left center , right 15px bottom }
bgpos229774 { background-position: left 15% top 15px , left center , right 15px bottom }
bgpos229775 { background-position: left 15% center , left center , right 15px bottom }
bgpos229776 { background-position: left 15px bottom , left center , right 15px bottom }
bgpos229777 { background-position: left 15px bottom 15% , left center , right 15px bottom }
bgpos229778 { background-position: left 15px bottom 15px , left center , right 15px bottom }
bgpos229779 { background-position: left 15px top , left center , right 15px bottom }
bgpos229780 { background-position: left 15px top 15% , left center , right 15px bottom }
bgpos229781 { background-position: left 15px top 15px , left center , right 15px bottom }
bgpos229782 { background-position: left 15px center , left center , right 15px bottom }
bgpos229783 { background-position: left center , left center , right 15px bottom }
bgpos229784 { background-position: right bottom , left center , right 15px bottom }
bgpos229785 { background-position: right bottom 15% , left center , right 15px bottom }
bgpos229786 { background-position: right bottom 15px , left center , right 15px bottom }
bgpos229787 { background-position: right top , left center , right 15px bottom }
bgpos229788 { background-position: right top 15% , left center , right 15px bottom }
bgpos229789 { background-position: right top 15px , left center , right 15px bottom }
bgpos229790 { background-position: right 15% bottom , left center , right 15px bottom }
bgpos229791 { background-position: right 15% bottom 15% , left center , right 15px bottom }
bgpos229792 { background-position: right 15% bottom 15px , left center , right 15px bottom }
bgpos229793 { background-position: right 15% top , left center , right 15px bottom }
bgpos229794 { background-position: right 15% top 15% , left center , right 15px bottom }
bgpos229795 { background-position: right 15% top 15px , left center , right 15px bottom }
bgpos229796 { background-position: right 15% center , left center , right 15px bottom }
bgpos229797 { background-position: right 15px bottom , left center , right 15px bottom }
bgpos229798 { background-position: right 15px bottom 15% , left center , right 15px bottom }
bgpos229799 { background-position: right 15px bottom 15px , left center , right 15px bottom }
bgpos229800 { background-position: right 15px top , left center , right 15px bottom }
bgpos229801 { background-position: right 15px top 15% , left center , right 15px bottom }
bgpos229802 { background-position: right 15px top 15px , left center , right 15px bottom }
bgpos229803 { background-position: right 15px center , left center , right 15px bottom }
bgpos229804 { background-position: right center , left center , right 15px bottom }
bgpos229805 { background-position: 100px , left center , right 15px bottom }
bgpos229806 { background-position: 100px 10% , left center , right 15px bottom }
bgpos229807 { background-position: 100px 100px , left center , right 15px bottom }
bgpos229808 { background-position: 100px bottom , left center , right 15px bottom }
bgpos229809 { background-position: 100px center , left center , right 15px bottom }
bgpos229810 { background-position: 100px top , left center , right 15px bottom }
bgpos229811 { background-position: 50% , left center , right 15px bottom }
bgpos229812 { background-position: 50% 10% , left center , right 15px bottom }
bgpos229813 { background-position: 50% 100px , left center , right 15px bottom }
bgpos229814 { background-position: 50% bottom , left center , right 15px bottom }
bgpos229815 { background-position: 50% center , left center , right 15px bottom }
bgpos229816 { background-position: 50% top , left center , right 15px bottom }
bgpos229817 { background-position: bottom, left center , right 15px bottom }
bgpos229818 { background-position: center , left center , right 15px bottom }
bgpos229819 { background-position: center bottom , left center , right 15px bottom }
bgpos229820 { background-position: center bottom 15% , left center , right 15px bottom }
bgpos229821 { background-position: center bottom 15px , left center , right 15px bottom }
bgpos229822 { background-position: center top , left center , right 15px bottom }
bgpos229823 { background-position: center top 15% , left center , right 15px bottom }
bgpos229824 { background-position: center top 15px , left center , right 15px bottom }
bgpos229825 { background-position: center 10% , left center , right 15px bottom }
bgpos229826 { background-position: center 100px , left center , right 15px bottom }
bgpos229827 { background-position: center bottom , left center , right 15px bottom }
bgpos229828 { background-position: center center , left center , right 15px bottom }
bgpos229829 { background-position: center top , left center , right 15px bottom }
bgpos229830 { background-position: left , left center , right 15px bottom }
bgpos229831 { background-position: left 10% , left center , right 15px bottom }
bgpos229832 { background-position: left 100px , left center , right 15px bottom }
bgpos229833 { background-position: left bottom , left center , right 15px bottom }
bgpos229834 { background-position: left center , left center , right 15px bottom }
bgpos229835 { background-position: left top , left center , right 15px bottom }
bgpos229836 { background-position: right , left center , right 15px bottom }
bgpos229837 { background-position: right 10% , left center , right 15px bottom }
bgpos229838 { background-position: right 100px , left center , right 15px bottom }
bgpos229839 { background-position: right bottom , left center , right 15px bottom }
bgpos229840 { background-position: right center , left center , right 15px bottom }
bgpos229841 { background-position: right top , left center , right 15px bottom }
bgpos229842 { background-position: top , left center , right 15px bottom }
bgpos229843 { background-position: left bottom , left top , right 15px bottom }
bgpos229844 { background-position: left bottom 15% , left top , right 15px bottom }
bgpos229845 { background-position: left bottom 15px , left top , right 15px bottom }
bgpos229846 { background-position: left top , left top , right 15px bottom }
bgpos229847 { background-position: left top 15% , left top , right 15px bottom }
bgpos229848 { background-position: left top 15px , left top , right 15px bottom }
bgpos229849 { background-position: left 15% bottom , left top , right 15px bottom }
bgpos229850 { background-position: left 15% bottom 15% , left top , right 15px bottom }
bgpos229851 { background-position: left 15% bottom 15px , left top , right 15px bottom }
bgpos229852 { background-position: left 15% top , left top , right 15px bottom }
bgpos229853 { background-position: left 15% top 15% , left top , right 15px bottom }
bgpos229854 { background-position: left 15% top 15px , left top , right 15px bottom }
bgpos229855 { background-position: left 15% center , left top , right 15px bottom }
bgpos229856 { background-position: left 15px bottom , left top , right 15px bottom }
bgpos229857 { background-position: left 15px bottom 15% , left top , right 15px bottom }
bgpos229858 { background-position: left 15px bottom 15px , left top , right 15px bottom }
bgpos229859 { background-position: left 15px top , left top , right 15px bottom }
bgpos229860 { background-position: left 15px top 15% , left top , right 15px bottom }
bgpos229861 { background-position: left 15px top 15px , left top , right 15px bottom }
bgpos229862 { background-position: left 15px center , left top , right 15px bottom }
bgpos229863 { background-position: left center , left top , right 15px bottom }
bgpos229864 { background-position: right bottom , left top , right 15px bottom }
bgpos229865 { background-position: right bottom 15% , left top , right 15px bottom }
bgpos229866 { background-position: right bottom 15px , left top , right 15px bottom }
bgpos229867 { background-position: right top , left top , right 15px bottom }
bgpos229868 { background-position: right top 15% , left top , right 15px bottom }
bgpos229869 { background-position: right top 15px , left top , right 15px bottom }
bgpos229870 { background-position: right 15% bottom , left top , right 15px bottom }
bgpos229871 { background-position: right 15% bottom 15% , left top , right 15px bottom }
bgpos229872 { background-position: right 15% bottom 15px , left top , right 15px bottom }
bgpos229873 { background-position: right 15% top , left top , right 15px bottom }
bgpos229874 { background-position: right 15% top 15% , left top , right 15px bottom }
bgpos229875 { background-position: right 15% top 15px , left top , right 15px bottom }
bgpos229876 { background-position: right 15% center , left top , right 15px bottom }
bgpos229877 { background-position: right 15px bottom , left top , right 15px bottom }
bgpos229878 { background-position: right 15px bottom 15% , left top , right 15px bottom }
bgpos229879 { background-position: right 15px bottom 15px , left top , right 15px bottom }
bgpos229880 { background-position: right 15px top , left top , right 15px bottom }
bgpos229881 { background-position: right 15px top 15% , left top , right 15px bottom }
bgpos229882 { background-position: right 15px top 15px , left top , right 15px bottom }
bgpos229883 { background-position: right 15px center , left top , right 15px bottom }
bgpos229884 { background-position: right center , left top , right 15px bottom }
bgpos229885 { background-position: 100px , left top , right 15px bottom }
bgpos229886 { background-position: 100px 10% , left top , right 15px bottom }
bgpos229887 { background-position: 100px 100px , left top , right 15px bottom }
bgpos229888 { background-position: 100px bottom , left top , right 15px bottom }
bgpos229889 { background-position: 100px center , left top , right 15px bottom }
bgpos229890 { background-position: 100px top , left top , right 15px bottom }
bgpos229891 { background-position: 50% , left top , right 15px bottom }
bgpos229892 { background-position: 50% 10% , left top , right 15px bottom }
bgpos229893 { background-position: 50% 100px , left top , right 15px bottom }
bgpos229894 { background-position: 50% bottom , left top , right 15px bottom }
bgpos229895 { background-position: 50% center , left top , right 15px bottom }
bgpos229896 { background-position: 50% top , left top , right 15px bottom }
bgpos229897 { background-position: bottom, left top , right 15px bottom }
bgpos229898 { background-position: center , left top , right 15px bottom }
bgpos229899 { background-position: center bottom , left top , right 15px bottom }
bgpos229900 { background-position: center bottom 15% , left top , right 15px bottom }
bgpos229901 { background-position: center bottom 15px , left top , right 15px bottom }
bgpos229902 { background-position: center top , left top , right 15px bottom }
bgpos229903 { background-position: center top 15% , left top , right 15px bottom }
bgpos229904 { background-position: center top 15px , left top , right 15px bottom }
bgpos229905 { background-position: center 10% , left top , right 15px bottom }
bgpos229906 { background-position: center 100px , left top , right 15px bottom }
bgpos229907 { background-position: center bottom , left top , right 15px bottom }
bgpos229908 { background-position: center center , left top , right 15px bottom }
bgpos229909 { background-position: center top , left top , right 15px bottom }
bgpos229910 { background-position: left , left top , right 15px bottom }
bgpos229911 { background-position: left 10% , left top , right 15px bottom }
bgpos229912 { background-position: left 100px , left top , right 15px bottom }
bgpos229913 { background-position: left bottom , left top , right 15px bottom }
bgpos229914 { background-position: left center , left top , right 15px bottom }
bgpos229915 { background-position: left top , left top , right 15px bottom }
bgpos229916 { background-position: right , left top , right 15px bottom }
bgpos229917 { background-position: right 10% , left top , right 15px bottom }
bgpos229918 { background-position: right 100px , left top , right 15px bottom }
bgpos229919 { background-position: right bottom , left top , right 15px bottom }
bgpos229920 { background-position: right center , left top , right 15px bottom }
bgpos229921 { background-position: right top , left top , right 15px bottom }
bgpos229922 { background-position: top , left top , right 15px bottom }
bgpos229923 { background-position: left bottom , right , right 15px bottom }
bgpos229924 { background-position: left bottom 15% , right , right 15px bottom }
bgpos229925 { background-position: left bottom 15px , right , right 15px bottom }
bgpos229926 { background-position: left top , right , right 15px bottom }
bgpos229927 { background-position: left top 15% , right , right 15px bottom }
bgpos229928 { background-position: left top 15px , right , right 15px bottom }
bgpos229929 { background-position: left 15% bottom , right , right 15px bottom }
bgpos229930 { background-position: left 15% bottom 15% , right , right 15px bottom }
bgpos229931 { background-position: left 15% bottom 15px , right , right 15px bottom }
bgpos229932 { background-position: left 15% top , right , right 15px bottom }
bgpos229933 { background-position: left 15% top 15% , right , right 15px bottom }
bgpos229934 { background-position: left 15% top 15px , right , right 15px bottom }
bgpos229935 { background-position: left 15% center , right , right 15px bottom }
bgpos229936 { background-position: left 15px bottom , right , right 15px bottom }
bgpos229937 { background-position: left 15px bottom 15% , right , right 15px bottom }
bgpos229938 { background-position: left 15px bottom 15px , right , right 15px bottom }
bgpos229939 { background-position: left 15px top , right , right 15px bottom }
bgpos229940 { background-position: left 15px top 15% , right , right 15px bottom }
bgpos229941 { background-position: left 15px top 15px , right , right 15px bottom }
bgpos229942 { background-position: left 15px center , right , right 15px bottom }
bgpos229943 { background-position: left center , right , right 15px bottom }
bgpos229944 { background-position: right bottom , right , right 15px bottom }
bgpos229945 { background-position: right bottom 15% , right , right 15px bottom }
bgpos229946 { background-position: right bottom 15px , right , right 15px bottom }
bgpos229947 { background-position: right top , right , right 15px bottom }
bgpos229948 { background-position: right top 15% , right , right 15px bottom }
bgpos229949 { background-position: right top 15px , right , right 15px bottom }
bgpos229950 { background-position: right 15% bottom , right , right 15px bottom }
bgpos229951 { background-position: right 15% bottom 15% , right , right 15px bottom }
bgpos229952 { background-position: right 15% bottom 15px , right , right 15px bottom }
bgpos229953 { background-position: right 15% top , right , right 15px bottom }
bgpos229954 { background-position: right 15% top 15% , right , right 15px bottom }
bgpos229955 { background-position: right 15% top 15px , right , right 15px bottom }
bgpos229956 { background-position: right 15% center , right , right 15px bottom }
bgpos229957 { background-position: right 15px bottom , right , right 15px bottom }
bgpos229958 { background-position: right 15px bottom 15% , right , right 15px bottom }
bgpos229959 { background-position: right 15px bottom 15px , right , right 15px bottom }
bgpos229960 { background-position: right 15px top , right , right 15px bottom }
bgpos229961 { background-position: right 15px top 15% , right , right 15px bottom }
bgpos229962 { background-position: right 15px top 15px , right , right 15px bottom }
bgpos229963 { background-position: right 15px center , right , right 15px bottom }
bgpos229964 { background-position: right center , right , right 15px bottom }
bgpos229965 { background-position: 100px , right , right 15px bottom }
bgpos229966 { background-position: 100px 10% , right , right 15px bottom }
bgpos229967 { background-position: 100px 100px , right , right 15px bottom }
bgpos229968 { background-position: 100px bottom , right , right 15px bottom }
bgpos229969 { background-position: 100px center , right , right 15px bottom }
bgpos229970 { background-position: 100px top , right , right 15px bottom }
bgpos229971 { background-position: 50% , right , right 15px bottom }
bgpos229972 { background-position: 50% 10% , right , right 15px bottom }
bgpos229973 { background-position: 50% 100px , right , right 15px bottom }
bgpos229974 { background-position: 50% bottom , right , right 15px bottom }
bgpos229975 { background-position: 50% center , right , right 15px bottom }
bgpos229976 { background-position: 50% top , right , right 15px bottom }
bgpos229977 { background-position: bottom, right , right 15px bottom }
bgpos229978 { background-position: center , right , right 15px bottom }
bgpos229979 { background-position: center bottom , right , right 15px bottom }
bgpos229980 { background-position: center bottom 15% , right , right 15px bottom }
bgpos229981 { background-position: center bottom 15px , right , right 15px bottom }
bgpos229982 { background-position: center top , right , right 15px bottom }
bgpos229983 { background-position: center top 15% , right , right 15px bottom }
bgpos229984 { background-position: center top 15px , right , right 15px bottom }
bgpos229985 { background-position: center 10% , right , right 15px bottom }
bgpos229986 { background-position: center 100px , right , right 15px bottom }
bgpos229987 { background-position: center bottom , right , right 15px bottom }
bgpos229988 { background-position: center center , right , right 15px bottom }
bgpos229989 { background-position: center top , right , right 15px bottom }
bgpos229990 { background-position: left , right , right 15px bottom }
bgpos229991 { background-position: left 10% , right , right 15px bottom }
bgpos229992 { background-position: left 100px , right , right 15px bottom }
bgpos229993 { background-position: left bottom , right , right 15px bottom }
bgpos229994 { background-position: left center , right , right 15px bottom }
bgpos229995 { background-position: left top , right , right 15px bottom }
bgpos229996 { background-position: right , right , right 15px bottom }
bgpos229997 { background-position: right 10% , right , right 15px bottom }
bgpos229998 { background-position: right 100px , right , right 15px bottom }
bgpos229999 { background-position: right bottom , right , right 15px bottom }
bgpos230000 { background-position: right center , right , right 15px bottom }
| 91.819118 | 113 | 0.704446 |
f0089faf3980c65d96a9b87de2dfb4cc044e17a8 | 41,489 | py | Python | ProjectiveClusteringCoreset.py | muradtuk/ProjectiveClusteringCoresets | 2dcb59723934dc545da9ff84a1f71eb5e02b49d1 | [
"MIT"
] | null | null | null | ProjectiveClusteringCoreset.py | muradtuk/ProjectiveClusteringCoresets | 2dcb59723934dc545da9ff84a1f71eb5e02b49d1 | [
"MIT"
] | null | null | null | ProjectiveClusteringCoreset.py | muradtuk/ProjectiveClusteringCoresets | 2dcb59723934dc545da9ff84a1f71eb5e02b49d1 | [
"MIT"
] | null | null | null | """*****************************************************************************************
MIT License
Copyright (c) 2022 Murad Tukan, Xuan Wu, Samson Zhou, Vladimir Braverman, Dan Feldman
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*****************************************************************************************"""
import Utils
from helper_functions import Fast_Caratheodory
import numpy as np
from scipy.optimize import linprog
from numpy import linalg as la
from scipy.linalg import null_space
from numpy.linalg import matrix_rank
from sklearn.decomposition import TruncatedSVD
import time
######################################################## Caratheodory ##################################################
def computeInitialWeightVector(P, p):
"""
This function given a point, solves the linear program dot(self.P.P^T, x) = p where x \in [0, \infty)^n,
and n denotes the number of rows of self.P.P.
:param p: A numpy array representing a point.
:return: A numpy array of n non-negative weights with respect to each row of self.P.P
"""
N = P.shape[0] # number of rows of P
# # Solve the linear program using scipy
# ts = time.time()
Q = P.T
Q = np.vstack((Q, np.ones((1, N))))
b = np.hstack((p, 1))
res = linprog(np.ones((N,)), A_eq=Q, b_eq=b, options={'maxiter': int(1e7), 'tol': 1e-10})
w = res.x
assert (np.linalg.norm(np.dot(P.T, w) - p) <= 1e-9, np.linalg.norm(np.dot(P.T, w) - p))
return w
def attainCaratheodorySet(P, p):
"""
The function at hand returns a set of at most d+1 indices of rows of P where d denotes the dimension of
rows of P. It calls the algorithms implemented by Alaa Maalouf, Ibrahim Jubran and Dan Feldman at
"Fast and Accurate Least-Mean-Squares Solvers".
:param p: A numpy array denoting a point.
:return: The indices of points from self.P.P which p is a convex combination of.
"""
d = P.shape[1]
u = computeInitialWeightVector(P, p) # compute initial weight vector
# print('Sum of weights {}'.format(np.sum(u)))
if np.count_nonzero(u) > (d + 1): # if the number of positive weights exceeds d+1
u = Fast_Caratheodory(P, u.flatten(), False)
assert(np.linalg.norm(p - np.dot(P.T, u)) <= 1e-9, np.linalg.norm(p - np.dot(P.T, u)))
return np.where(u != 0)[0]
############################################################ AMVEE #####################################################
def isPD(B):
"""Returns true when input is positive-definite, via Cholesky"""
try:
_ = la.cholesky(B)
return True
except la.LinAlgError:
return False
def nearestPD(A):
"""Find the nearest positive-definite matrix to input
A Python/Numpy port of John D'Errico's `nearestSPD` MATLAB code [1], which
credits [2].
[1] https://www.mathworks.com/matlabcentral/fileexchange/42885-nearestspd
[2] N.J. Higham, "Computing a nearest symmetric positive semidefinite
matrix" (1988): https://doi.org/10.1016/0024-3795(88)90223-6
"""
B = (A + A.T) / 2
_, s, V = la.svd(B)
H = np.dot(V.T, np.dot(np.diag(s), V))
A2 = (B + H) / 2
A3 = (A2 + A2.T) / 2
if isPD(A3):
return A3
spacing = np.spacing(la.norm(A))
# The above is different from [1]. It appears that MATLAB's `chol` Cholesky
# decomposition will accept matrixes with exactly 0-eigenvalue, whereas
# Numpy's will not. So where [1] uses `eps(mineig)` (where `eps` is Matlab
# for `np.spacing`), we use the above definition. CAVEAT: our `spacing`
# will be much larger than [1]'s `eps(mineig)`, since `mineig` is usually on
# the order of 1e-16, and `eps(1e-16)` is on the order of 1e-34, whereas
# `spacing` will, for Gaussian random matrixes of small dimension, be on
# othe order of 1e-16. In practice, both ways converge, as the unit test
# below suggests.
I = np.eye(A.shape[0])
k = 1
while not isPD(A3):
mineig = np.min(np.real(la.eigvals(A3)))
A3 += I * (-mineig * k ** 2 + spacing)
k += 1
return A3
def computeAxesPoints(E, C):
"""
This function finds the vertices of the self.E (the MVEE of P or the inscribed version of it)
:return: A numpy matrix containing the vertices of the ellipsoid.
"""
if not isPD(E):
E = nearestPD(E)
# L = np.linalg.cholesky(self.E) # compute the cholesky decomposition of self.E
# U, D, V = np.linalg.svd(L, full_matrices=True) # attain the length of each axis of the ellipsoid and the
# # rotation of the ellipsoid
_, D, V = np.linalg.svd(E, full_matrices=True)
ellips_points = np.multiply(1.0 / np.sqrt(D[:, np.newaxis]), V.T) # attain the vertices of the ellipsoid assuming it was
# centered at the origin
return np.vstack((ellips_points + C.flatten(), - ellips_points + C.flatten()))
def volumeApproximation(P):
"""
This is our implementation of Algorithm 4.1 at the paper "On Khachiyan’s Algorithm for te Computation of Minimum
Volume Enclosing Ellipsoids" by Michael J. Todd and E. Alper Yıldırım. It serves to compute a set of at most
2*self.P.d points which will be used for computing an initial ellipsoid.
:return: A numpy array of 2 * self.P.d indices of points from self.P.P
"""
basis = None
basis_points = []
n, d = P
if n <= 2 * d:
# if number of points is less than 2*self.P.d, then return their indices in self.P.P
return [i for i in range(n)]
v = np.random.randn(d) # start with a random vector
while np.linalg.matrix_rank(basis) < d: # while rank of basis is less than self.P.d
if basis is not None: # if we already have computed basis points
if basis.shape[1] == d:
# if this line is reached then it means that there is numerical instability
print('Numerical Issues!')
_, _, V = np.linalg.svd(basis[:, :-1], full_matrices=True)
return list(range(n))
orth_basis = null_space(basis.T) # get the orthant of basis
v = orth_basis[:, 0] if orth_basis.ndim > 1 else orth_basis # set v to be the first column of basis
Q = np.dot(P, v.T) # get the dot product of each row of self.P.P and v
if len(basis_points) > 0: # if there are already chosen points, then their dot product is depricated
Q[basis_points] = np.nan
p_alpha = np.nanargmax(np.dot(P, v.T)) # get the index of row with largest non nan dot product value
p_beta = np.nanargmin(np.dot(P, v.T)) # get the index of row with smallest non nan dot product value
v = np.expand_dims(P[p_beta, :] - P[p_alpha, :], 1) # let v be the substraction between the
# row of the largest dot product and the
# point with the smallest dot product
if basis is None: # if no basis was computed
basis = v / np.linalg.norm(v)
else: # add v to the basis
basis = np.hstack((basis, v / np.linalg.norm(v, 2)))
basis_points.append(p_alpha) # add the index of the point with largest dot product
basis_points.append(p_beta) # add the index of the point with smallest dot product
return basis_points
def computemahalanobisDistance(Q, ellip):
"""
This function is used for computing the distance between the rows of Q and ellip using the Mahalanobis
loss function.
:param ellip: A numpy array representing a p.s.d matrix (an ellipsoid)
:return: The Mahalanobis distance between each row in self.P.P to ellip.
"""
s = np.einsum("ij,ij->i", np.dot(Q, ellip), Q) # compute the distance efficiently
return s
def computeEllipsoid(P, weights):
"""
This function computes the ellipsoid which is the MVEE of self.P.
:param weights: a numpy of array of weights with respest to the rows of self.P.P.
:return:
- The MVEE of self.P.P in a p.s.d. matrix form.
- The center of the MVEE of self.P.P.
"""
if weights.ndim == 1: # make sure that the weights are not flattened
weights = np.expand_dims(weights, 1)
c = np.dot(P.T, weights) # attain the center of the MVEE
d = P.shape[1]
Q = P[np.where(weights.flatten() > 0.0)[0], :] # get all the points with positive weights
weights2 = weights[np.where(weights.flatten() > 0.0)[0], :] # get all the positive weights
# compute a p.s.d matrix which will represent the ellipsoid
ellipsoid = 1.0 / d * np.linalg.inv(np.dot(np.multiply(Q, weights2).T, Q)
- np.multiply.outer(c.T.ravel(), c.T.ravel()))
return ellipsoid, c
def enlargeByTol(ellipsoid):
"""
The function at hand enlarges the MVEE (the ellipsoid) by a fact or (1 + Utils.TOL).
:param ellipsoid: A numpy matrix represent a p.s.d matrix
:return: An enlarged version of ellipsoid.
"""
return ellipsoid / (1 + Utils.TOL) ** 2.0
def getContainedEllipsoid(ellipsoid):
"""
This function returns a dialtion of E such that it will be contained in the convex hull of self.P.P.
:param ellipsoid: A p.s.d matrix which represents the MVEE of self.P.P
:return: A dilated version of the MVEE of self.P.P such that it will be contained in the convex hull
of self.P.P.
"""
return ellipsoid * ellipsoid.shape[1] ** 2 * (1 + Utils.TOL) ** 2 # get inscribed ellipsoid
def computeEllipInHigherDimension(Q, weights):
"""
The function at hand computes the ellipsoid in a self.P.d + 1 dimensional space (with respect to the
lifted points) which is centered at the origin.
:param weights: A numpy array of weights with respect to each lifter point in self.Q
:return:
"""
idxs = np.where(weights > 0.0)[0] # get all indices of points with positive weights
weighted_Q = np.multiply(Q[idxs, :], np.expand_dims(np.sqrt(weights[idxs]), 1)) # multiply the postive
# weights with their
# corresponding points
delta = np.sum(np.einsum('bi,bo->bio', weighted_Q, weighted_Q), axis=0) # compute an ellipsoid which is
# centered at the origin
return delta
def optimalityCondition(d, Q, ellip, weights):
"""
This function checks if the MVEE of P is found in the context of Michael J. Todd and E. Alper Yıldırım
algorithm.
:param ellip: A numpy array representing a p.s.d matrix.
:param weights: A numpy array of weights with respect to the rows of P.
:return: A boolean value whether the desired MVEE has been achieved or not.
"""
pos_weights_idxs = np.where(weights > 0)[0] # get the indices of all the points with positive weights
current_dists = computemahalanobisDistance(Q, ellip) # compute the Mahalanobis distance between ellip and
# the rows of P
# check if all the distance are at max (1 + self.tol) * (self.P.d +1) and the distances of the points
# with positive weights are at least (1.0 - self.tol) * (self.P.d + 1)
return np.all(current_dists <= (1.0 + Utils.TOL) * (d + 1)) and \
np.all(current_dists[pos_weights_idxs] >= (1.0 - Utils.TOL) * (d + 1)), current_dists
def yilidrimAlgorithm(P):
"""
This is our implementation of Algorithm 4.2 at the paper "On Khachiyan’s Algorithm for te Computation of Minimum
Volume Enclosing Ellipsoids" by Michael J. Todd and E. Alper Yıldırım. It serves to compute an MVEE of self.P.P
faster than Khachiyan's algorithm.
:return: The MVEE ellipsoid of self.P.P.
"""
n, d = P.shape
Q = np.hstack((P, np.ones((n, 1))))
chosen_indices = volumeApproximation(P) # compute an initial set of points which will give the initial
# ellipsoid
if len(chosen_indices) == n: # if all the points were chosen then simply run Khachiyan's algorithm.
# Might occur due to numerical instabilities.
return khachiyanAlgorithm(P)
weights = np.zeros((n, 1)).flatten() # initial the weights to zeros
weights[chosen_indices] = 1.0 / len(chosen_indices) # all the chosen indices of points by the
# volume Approximation algorithm are given uniform weights
ellip = np.linalg.inv(computeEllipInHigherDimension(Q, weights)) # compute the initial ellipsoid
while True: # run till conditions are fulfilled
stop_flag, distances = optimalityCondition(d, Q, ellip, weights) # check if current ellipsoid is desired
# MVEE, and get the distance between rows
# of self.P.P to current ellipsoid
pos_weights_idx = np.where(weights > 0)[0] # get indices of points with positive weights
if stop_flag: # if desired MVEE is achieved
break
j_plus = np.argmax(distances) # index of maximal distance from the ellipsoid
k_plus = distances[j_plus] # maximal distance from the ellipsoid
j_minus = pos_weights_idx[np.argmin(distances[pos_weights_idx])] # get the the index of the points with
# positive weights which also have the
# smallest distance from the current
# ellipsoid
k_minus = distances[j_minus] # the smallest distance of the point among the points with positive weights
eps_plus = k_plus / (d + 1.0) - 1.0
eps_minus = 1.0 - k_minus / (d + 1.0)
if eps_plus > eps_minus: # new point is found and it is important
beta_current = (k_plus - d - 1.0) / ((d + 1) * (k_plus - 1.0))
weights = (1.0 - beta_current) * weights
weights[j_plus] = weights[j_plus] + beta_current
else: # a point which was already found before, yet has large impact on the ellipsoid
beta_current = min((d + 1.0 - k_minus) / ((d + 1.0) * (k_minus - 1.0)),
weights[j_minus]/(1 - weights[j_minus]))
weights = weights * (1 + beta_current)
weights[j_minus] = weights[j_minus] - beta_current
weights[weights < 0.0] = 0.0 # all negative weights are set to zero
ellip = np.linalg.inv(computeEllipInHigherDimension(weights)) # recompute the ellipsoid
return computeEllipsoid(P, weights)
def khachiyanAlgorithm(P):
"""
This is our implementation of Algorithm 3.1 at the paper "On Khachiyan’s Algorithm for te Computation of Minimum
Volume Enclosing Ellipsoids" by Michael J. Todd and E. Alper Yıldırım. It serves to compute an MVEE of self.P.P
using Khachiyan's algorithm.
:return: The MVEE ellipsoid of self.P.P.
"""
err = 1
count = 1 # used for debugging purposes
n, d = P.shape
u = np.ones((n, 1)) / n # all points have uniform weights
Q = np.hstack((P, np.ones((n, 1))))
while err > Utils.TOL: # while the approximation of the ellipsoid is higher than desired
X = np.dot(np.multiply(Q, u).T, Q) # compute ellipsoid
M = computemahalanobisDistance(Q, np.linalg.inv(X)) # get Mahalanobis distances between rows of self.P.P
# and current ellipsoid
j = np.argmax(M) # index of point with maximal distance from current ellipsoid
max_val = M[j] # the maximal Mahalanobis distance from the rows of self.P.P and the current ellipsoid
step_size = (max_val - d - 1) / ((d + 1) * (max_val - 1))
new_u = (1 - step_size) * u # update weights
new_u[j, 0] += step_size
count += 1
err = np.linalg.norm(new_u - u) # set err to be the change between updated weighted and current weights
u = new_u
return computeEllipsoid(P, u)
def computeMVEE(P, alg_type=1):
"""
This function is responsible for running the desired algorithm chosen by the user (or by default value) for
computing the MVEE of P.
:param alg_type: An algorithm type indicator where 1 stands for yilidrim and 0 stands kachaiyan.
:return:
- The inscribed version of MVEE of P.
- The center of the MVEE of P.
- The vertices of the inscribed ellipsoid.
"""
global ax
if alg_type == 1: # yilidrim is chosen or by default
E, C = yilidrimAlgorithm(P)
else: # Kachaiyan, slower yet more numerically stable
E, C = khachiyanAlgorithm(P)
# self.plotEllipsoid(self.E, self.C, self.computeAxesPoints())
contained_ellipsoid = getContainedEllipsoid(E) # get inscribed ellipsoid
return contained_ellipsoid, C, computeAxesPoints(contained_ellipsoid, C)
################################################## ApproximateCenterProblems ###########################################
def computeLINFCoresetKOne(P):
"""
The function at hand computes an L∞ coreset for the matrix vector multiplication or the dot product, with
respect to the weighted set of points P.
:return:
- C: the coreset points, which are a subset of the rows of P
- idx_in_P: the indices with respect to the coreset points C in P.
- an upper bound on the approximation which our L∞ coreset is associated with.
"""
global max_time
r = matrix_rank(P[:, :-1]) # get the rank of P or the dimension of the span of P
d = P.shape[1]
if r < d - 1: # if the span of P is a subspace in REAL^d
svd = TruncatedSVD(n_components=r) # an instance of TruncatedSVD
Q = svd.fit_transform(P[:, :-1]) # reduce the dimensionality of P by taking their dot product by the
# subspace which spans P
Q = np.hstack((Q, np.expand_dims(P[:, -1], 1))) # concatenate the indices to their respected "projected"
# points
else: # if the span of P is REAL^d where d is the dimension of P
Q = P
start_time = time.time() # start counting the time here
if r > 1: # if the dimension of the "projected points" is not on a line
if Q.shape[1] - 1 >= Q.shape[0]:
return Q, np.arange(Q.shape[0]).astype(np.int), Utils.UPPER_BOUND(r)
else:
_, _, S = computeMVEE(Q[:, :-1], alg_type=0) # compute the MVEE of Q
else: # otherwise
# get the index of the maximal and minimal point on the line, i.e., both its ends
idx_in_P = np.unique([np.argmin(Q[:, :-1]).astype(np.int),
np.argmax(Q[:, :-1]).astype(np.int)]).tolist()
return Q[idx_in_P], idx_in_P, Utils.UPPER_BOUND(r)
C = []
# idx_in_P_list = []
# C_list = []
# ts = time.time()
# for q in S: # for each boundary points along the axis of the MVEE of Q
# K = attainCaratheodorySet(P[:, :-1], q) # get d+1 indices of points from Q where q is their convex
# # combination
# idx_in_P_list += [int(idx) for idx in K] # get the indices of the coreset point in Q
# C_list += [int(Q[idx, -1]) for idx in K] # the actual coreset points
# # print('Time for list {}'.format(time.time() - ts))
idx_in_P = np.empty((2*(Utils.J + 1) ** 2, )).astype(np.int)
C = np.empty((2*(Utils.J + 1) ** 2, )).astype(np.int)
idx = 0
# ts = time.time()
for q in S: # for each boundary points along the axis of the MVEE of Q
K = attainCaratheodorySet(Q[:, :-1], q) # get d+1 indices of points from Q where q is their convex
# combination
idx_in_P[idx:idx+K.shape[0]] = K.astype(np.int) # get the indices of the coreset point in Q
C[idx:idx+K.shape[0]] = Q[idx_in_P[idx:idx+K.shape[0]], -1].astype(np.int)
idx += K.shape[0]
# print('Time for numpy {}'.format(time.time() - ts))
return np.unique(C[:idx]), np.unique(idx_in_P[:idx]), Utils.UPPER_BOUND(r)
####################################################### Bicriteria #####################################################
def attainClosestPointsToSubspaces(P, W, flats, indices):
"""
This function returns the closest n/2 points among all of the n points to a list of flats.
:param flats: A list of flats where each flat is represented by an orthogonal matrix and a translation vector.
:param indices: A list of indices of points in self.P.P
:return: The function returns the closest n/2 points to flats.
"""
dists = np.empty((P[indices, :].shape[0], ))
N = indices.shape[0]
if not Utils.ACCELERATE_BICRETERIA:
for i in range(N):
dists[i] = np.min([
Utils.computeDistanceToSubspace(P[np.array([indices[i]]), :], flats[j][0], flats[j][1])
for j in range(len(flats))])
else:
dists = Utils.computeDistanceToSubspace(P[indices, :], flats[0], flats[1])
idxs = np.argpartition(dists, N // 2)[:N//2]
return idxs.tolist()
return np.array(indices)[np.argsort(dists).astype(np.int)[:int(N / 2)]].tolist()
def sortDistancesToSubspace(P, X, v, points_indices):
"""
The function at hand sorts the distances in an ascending order between the points and the flat denoted by (X,v).
:param X: An orthogonal matrix which it's span is a subspace.
:param v: An numpy array denoting a translation vector.
:param points_indices: a numpy array of indices for computing the distance to a subset of the points.
:return: sorted distances between the subset points addressed by points_indices and the flat (X,v).
"""
dists = Utils.computeDistanceToSubspace(P[points_indices, :], X, v) # compute the distance between the subset
# of points towards
# the flat which is represented by (X,v)
return np.array(points_indices)[np.argsort(dists).astype(np.int)].tolist() # return sorted distances
def computeSubOptimalFlat(P, weights):
"""
This function computes the sub optimal flat with respect to l2^2 loss function, which relied on computing the
SVD factorization of the set of the given points, namely P.
:param P: A numpy matrix which denotes the set of points.
:param weights: A numpy array of weightes with respect to each row (point) in P.
:return: A flat which best fits P with respect to the l2^2 loss function.
"""
v = np.average(P, axis=0, weights=weights) # compute the weighted mean of the points
svd = TruncatedSVD(algorithm='randomized', n_iter=1, n_components=Utils.J).fit(P-v)
V = svd.components_
return V, v # return a flat denoted by an orthogonal matrix and a translation vector
def clusterIdxsBasedOnKSubspaces(P, B):
"""
This functions partitions the points into clusters a list of flats.
:param B: A list of flats
:return: A numpy array such each entry contains the index of the flat to which the point which is related to the
entry is assigned to.
"""
n = P.shape[0]
idxs = np.arange(n) # a numpy array of indices
centers = np.array(B) # a numpy array of the flats
dists = np.apply_along_axis(lambda x: Utils.computeDistanceToSubspace(P[idxs, :], x[0], x[1]), 1, centers) # compute the
# distance between
# each point and
# each flat
idxs = np.argmin(dists, axis=0)
return idxs # return the index of the closest flat to each point in self.P.P
def addFlats(P, W, S, B):
"""
This function is responsible for computing a set of all possible flats which passes through j+1 points.
:param S: list of j+1 subsets of points.
:return: None (Add all the aforementioned flats into B).
"""
indices = [np.arange(S[i].shape[0]) for i in range(len(S))]
points = np.meshgrid(*indices) # compute a mesh grid using the duplicated coefs
points = np.array([p.flatten() for p in points]) # flatten each point in the meshgrid for computing the
# all possible ordered sets of j+1 points
idx = len(B)
for i in range(points.shape[1]):
A = [S[j][points[j, i]][0] for j in range(points.shape[0])]
P_sub, W_sub = P[A, :], W[A]
B.append(computeSubOptimalFlat(P_sub, W_sub))
return np.arange(idx, len(B)), B
def computeBicriteria(P, W):
"""
The function at hand is an implemetation of Algorithm Approx-k-j-Flats(P, k, j) at the paper
"Bi-criteria Linear-time Approximations for Generalized k-Mean/Median/Center". The algorithm returns an
(2^j, O(log(n) * (jk)^O(j))-approximation algorithm for the (k,j)-projective clustering problem using the l2^2
loss function.
:return: A (2^j, O(log(n) * (jk)^O(j)) approximation solution towards the optimal solution.
"""
n = P.shape[0]
Q = np.arange(0, n, 1)
t = 1
B = []
tol_sample_size = Utils.K * (Utils.J + 1)
sample_size = (lambda t: int(np.ceil(Utils.K * (Utils.J + 1) * (2 + np.log(Utils.J + 1) +
np.log(Utils.K) +
min(t, np.log(np.log(n)))))))
while np.size(Q) >= tol_sample_size: # run we have small set of points
S = []
for i in range(0, Utils.J+1): # Sample j + 1 subsets of the points in an i.i.d. fashion
random_sample = np.random.choice(Q, size=sample_size(t))
S.append(random_sample[:, np.newaxis])
if not Utils.ACCELERATE_BICRETERIA:
F = addFlats(P, W, S, B)
else:
S = np.unique(np.vstack(S).flatten())
F = computeSubOptimalFlat(P[S, :], W[S])
B.append(F)
sorted_indices = attainClosestPointsToSubspaces(P, W, F, Q)
Q = np.delete(Q, sorted_indices)
t += 1
if not Utils.ACCELERATE_BICRETERIA:
_, B = addFlats(P, W, [Q for i in range(Utils.J + 1)], B)
else:
F = computeSubOptimalFlat(P[Q.flatten(), :], W[Q.flatten()])
B.append(F)
return B
################################################### L1Coreset ##########################################################
def applyBiCriterea(P, W):
"""
The function at hand runs a bicriteria algorithm, which then partition the rows of P into clusters.
:return:
- B: The set of flats which give the bicriteria algorithm, i.e., O((jk)^{j+1}) j-flats which attain 2^j
approximation towards the optimal (k,j)-projective clustering problem involving self.P.P.
- idxs: The set of indices where each entry is with respect to a point in P and contains
index of the flat in B which is assigned to respected point in P.
"""
B = computeBicriteria(P,W) # compute the set of flats which bi-cirteria algorithm returns
idxs = clusterIdxsBasedOnKSubspaces(P, B) # compute for each point which flat fits it best
return B, idxs
def initializeSens(P, B, idxs):
"""
This function initializes the sensitivities using the bicriteria algorithm, to be the distance between each
point to it's closest flat from the set of flats B divided by the sum of distances between self.P.P and B.
:param B: A set of flats where each flat is represented by an orthogonal matrix and a translation vector.
:param idxs: A numpy array which represents the clustering which B imposes on self.P.P
:return: None.
"""
centers_idxs = np.unique(idxs) # number of clusters imposed by B
sensitivity_additive_term = np.zeros((P.shape[0], ))
for center_idx in centers_idxs: # go over each cluster of points from self.P.P
cluster_per_center = np.where(idxs == center_idx)[0] # get all points in certain cluster
# compute the distance of each point in the cluster to its respect flat
cost_per_point_in_cluster = Utils.computeDistanceToSubspace(P[cluster_per_center, :-1],
B[center_idx][0], B[center_idx][1])
# ost_per_point_in_cluster = np.apply_along_axis(lambda x:
# Utils.computeDistanceToSubspace(x, B[center_idx][0],
# B[center_idx][1]), 1,
# self.set_P.P[cluster_per_center, :-1])
# set the sensitivity to the distance of each point from its respected flat divided by the total distance
# between cluster points and the respected flat
sensitivity_additive_term[cluster_per_center] = 2 ** Utils.J * \
np.nan_to_num(cost_per_point_in_cluster /
np.sum(cost_per_point_in_cluster))
return sensitivity_additive_term
def Level(P, k, V, desired_eps=0.01):
"""
The algorithm is an implementation of Algorithm 7 of "Coresets for Gaussian Mixture Models of Any shapes" by Zahi
Kfir and Dan Feldman.
:param P: A Pointset object, i.e., a weighted set of points.
:param k: The number of $j$-subspaces which defines the (k,j)-projective clustering problem.
:param V: A set of numpy arrays
:param desired_eps: An approximation error, default value is set to 0.01.
:return: A list "C" of subset of points of P.P.
"""
t = V.shape[0] # numnber of points in V
d = P.shape[1] - 1 # exclude last entry of each point for it is the concatenated index
# C = [[]] #np.empty((P.shape[0] + Utils.J ** (2 * Utils.K), P.shape[1])) # initialize list of coresets
# U = [[]] #np.empty((P.shape[0] + Utils.J ** (2 * Utils.K), P.shape[1])) # list of each point in V \setminus V_0 minus its
# projection onto a specific affine subspace, see below
C = np.zeros((P.shape[0], ), dtype="bool")
D = np.zeros((P.shape[0], ), dtype="bool")
if k <= 1 or t-1 >= Utils.J:
return np.array([])
# ts = time.time()
A, v = Utils.computeAffineSpan(V)
# print('Affine took {}'.format(time.time() - ts))
dists_from_P_to_A = Utils.computeDistanceToSubspace(P[:, :-1], A.T, v)
non_zero_idxs = np.where(dists_from_P_to_A > 1e-11)[0]
d_0 = 0 if len(non_zero_idxs) < 1 else np.min(dists_from_P_to_A[non_zero_idxs])
c = 1 / d ** (1.5 * (d + 1))
M = np.max(np.abs(P[:, :-1]))
on_j_subspace = np.where(dists_from_P_to_A <= 1e-11)[0]
B = [[]]
if on_j_subspace.size != 0:
B[0] = P[on_j_subspace, :]
if B[0].shape[0] >= Utils.J ** (2 * k):
indices_in_B = B[0][:, -1]
Q = np.hstack((B[0][:,:-1], np.arange(B[0].shape[0])[:, np.newaxis]))
temp = computeLInfCoreset(B[0], k-1)
C[indices_in_B[temp].astype(np.int)] = True
else:
C[B[0][:, -1].astype(np.int)] = True
# current_point += temp.shape[0]
# D = [P[C]]
# print('Bound is {}'.format(int(np.ceil(8 * np.log(M) + np.log(1.0/c)) + 1)))
if d_0 > 0:
for i in range(1, int(np.ceil(8 * np.log(M) + np.log(1.0/c)) + 1)):
B.append(P[np.where(np.logical_and(2 ** (i-1) * d_0 <= dists_from_P_to_A,
dists_from_P_to_A <= 2 ** i * d_0))[0], :])
if len(B[i]) > 0:
if len(B[i]) >= Utils.J ** (2 * k):
indices_B = B[i][:, -1]
Q_B = np.hstack((B[i][:, :-1], np.arange(B[i].shape[0])[:, np.newaxis]))
temp = computeLInfCoreset(Q_B, k-1)
if temp.size > 0:
C[indices_B[temp].astype(np.int)] = True
else:
C[B[i][:, -1].astype(np.int)] = True
temp = np.arange(B[i].shape[0]).astype(np.int)
list_of_coresets = [x for x in B if len(x) > 0]
Q = np.vstack(list_of_coresets)
indices_Q = Q[:, -1]
Q = np.hstack((Q[:, :-1], np.arange(Q.shape[0])[:, np.newaxis]))
if temp.size > 0:
for point in B[i][temp, :]:
indices = Level(Q, k-1, np.vstack((V, point[np.newaxis, :-1])))
if indices.size > 0:
D[indices_Q[indices].astype(np.int)] = True
# D.extend(Level(Q, k-1, np.vstack((V, point[np.newaxis, :-1]))))
return np.where(np.add(C, D))[0]
def computeLInfCoreset(P, k):
"""
This function is our main L_\infty coreset method, as for k = 1 it runs our fast algorithm for computing the
L_\infty coreset. When k > 1, it runs a recursive algorithm for computing a L_\infty coreset for the
(k,j)-projective clustering problem.
This algorithm is a variant of Algorithm 6 of "Coresets for Gaussian Mixture Models of Any shapes" by Zahi
Kfir and Dan Feldman.
:param P: A PointSet object, i.e., a weighted set of points.
:param k: The number of $j$-subspaces which defines the (k,j)-projective clustering problem.
:return: A PointSet object which contains a subset of P which serves as a L_\infty coreset for the
(k,j)-projective clustering problem.
"""
C = []
if k == 1: # if subspace clustering problem
_, idxs_in_Q, upper_bound = computeLINFCoresetKOne(P) # Compute our L_\infty coreset for P
return idxs_in_Q
elif k < 1: # should return None here
return np.array([])
else: # If k > 1
temp = computeLInfCoreset(P, k-1) # call recursively till k == 1
C = np.zeros((P.shape[0], ), dtype="bool")
C[P[temp, -1].astype(np.int)] = True
# Q = np.empty((P.shape[0] + Utils.J ** (2 * Utils.K), P.shape[1]))
# Q[:C_0.shape[0], :] = C_0
for p in P[temp, :]: # for each point in coreset
# print('K = {}'.format(k))
recursive_core = Level(P, k, p[np.newaxis, :-1]) # compute a coreset for (k,j)-projective clustering
# problem using a coreset for (k-1,j)-projective
# clustering problem
if recursive_core.size > 0: # if the coreset for the (k,j)-projective clustering problem is not empty
C[P[recursive_core, -1].astype(np.int)] = True
if np.where(C == False)[0].size < 1:
return np.where(C)[0]
return np.where(C)[0] # return a L_\infty coreset for (k,j)-projective clustering problem
def computeSensitivityPerCluster(P):
sensitivity = np.ones((P.shape[0], )) * np.inf
i = 0
upper_bound = Utils.determineUpperBound() # set upper bound on the approximation which the L_\infty
Q = np.hstack((P[:, :-1], np.arange(P.shape[0])[:, np.newaxis]))
# coreset attains
while Q.shape[0] > 2 * Q.shape[1]: # run till you have at most 2*j points
orig_idx_in_Q = Q[:, -1]
idxs_of_P = computeLInfCoreset(np.hstack((Q[:, :-1], np.arange(Q.shape[0])[:, np.newaxis])), Utils.K) # compute L_\infty coreset
# idxs_of_P = np.unique(Q_P[:, -1]).astype(np.int) # get all points in P which are also in Q_P
if np.any(np.logical_not(np.isinf(sensitivity[orig_idx_in_Q[idxs_of_P].astype(np.int)]))): # used for debugging
raise ValueError('A crucial Bug!')
sensitivity[orig_idx_in_Q[idxs_of_P].astype(np.int)] = upper_bound / (i + 1) # bound the sensitivity of each point in Q_P
if np.isnan(np.sum(sensitivity)):
print('HOLD ON!')
remaining_idxs = Utils.attainAllButSpecifiedIndices(Q, orig_idx_in_Q[idxs_of_P].astype(np.int)) # get all points in cluster which
# are not in Q_P
idxs_in_Q = np.where(remaining_idxs)[0] # get indices in cluster which are not in Q_P
Q = Q[idxs_in_Q, :] # update cluster to exclude current L_\infty coreset
print('Batch {} has finished'.format(i))
i += 1 # count number of L_\infty coreset per each cluster of points
remaining_idxs_per_cluster = Q[:, -1].astype(np.int) # all of the remaining 2*j points
sensitivity[remaining_idxs_per_cluster] = upper_bound / (i if i > 0 else i + 1) # give them the lowest
return np.hstack((sensitivity[:, np.newaxis], P[:, -1][:, np.newaxis]))
def computeSensitivity(P, W):
"""
The function at hand computes the sensitivity of each point using a reduction from L_\infty to L1.
:return: None
"""
P = np.hstack((P, np.arange(P.shape[0])[:, np.newaxis]))
B, idxs = applyBiCriterea(P[:, :-1], W) # attain set of flats which gives 2^j approximation to the optimal solution
sensitivity_additive_term = initializeSens(P, B, idxs) # initialize the sensitivities
unique_cetner_idxs = np.unique(idxs) # get unique indices of clusters
sensitivity = np.empty((P.shape[0], ))
clusters = [np.where(idxs == idx)[0] for idx in unique_cetner_idxs]
Qs = [[] for idx in range(len(clusters))]
for idx in range(len(clusters)): # apply L_\infty conversion to L_1 on each cluster of points
# Qs[idx] = np.hstack(((P[clusters[idx], :-1] - B[idx][1]).dot(B[idx][0].T.dot(B[idx][0])), P[clusters[idx], -1][:, np.newaxis]))
Qs[idx] = np.hstack(((P[clusters[idx], :-1] - B[idx][1]).dot(B[idx][0].T), P[clusters[idx], -1][:, np.newaxis]))
ts = time.time()
# s = computeSensitivityPerCluster(Qs[0])
# print('max = {}, min = {}'.format(np.max(s[0,:]), np.min(s[0,:])))
# print('Time for one cluster took {} secs'.format(time.time() - ts))
# input()
# pool = multiprocessing.Pool(3)
# list_of_sensitivities = pool.map(computeSensitivityPerCluster, Qs)
# print('Time for parallel took {} secs'.format(time.time() - ts))
for i in range(len(Qs)):
s = computeSensitivityPerCluster(Qs[i])
sensitivity[s[:, -1].astype(np.int)] = s[:, 0]
# print('Number of unique values = {}, max = {}, min = {}'.format(np.unique(sensitivity).shape[0],
# np.max(sensitivity), np.min(sensitivity)))
sensitivity += 2 ** Utils.J * sensitivity_additive_term # add the additive term for the sensitivity
return sensitivity
if __name__ == '__main__':
P = np.random.randn(10000, 5)
P = np.hstack((P, np.arange(10000)[:, np.newaxis]))
W = np.ones((P.shape[0], ))
s = computeSensitivity(P, W) | 49.157583 | 139 | 0.576803 |
14057540f4e53c16b5428715fbc94cfe15bfb9d7 | 2,045 | css | CSS | web/src/preCSS/theme/checkout.css | trive-digital/Strive | 4c81f108912253cb2bb55578917734fdb6a49699 | [
"MIT"
] | 19 | 2016-10-31T18:49:11.000Z | 2021-03-18T17:49:17.000Z | web/src/preCSS/theme/checkout.css | trive-digital/Strive | 4c81f108912253cb2bb55578917734fdb6a49699 | [
"MIT"
] | 8 | 2016-10-26T09:33:36.000Z | 2018-11-22T12:30:46.000Z | web/src/preCSS/theme/checkout.css | trive-digital/Strive | 4c81f108912253cb2bb55578917734fdb6a49699 | [
"MIT"
] | 8 | 2017-03-17T13:22:46.000Z | 2020-05-12T13:58:56.000Z | /*
CHECKOUT
========
*/
.authentication-wrapper{
float: right;
margin-top: -60px;
max-width: 50%;
position: relative;
z-index: 1;
lost-column: 1/3 1;
text-align: right;
}
@media (--medium-up){
.opc-estimated-wrapper{
display: none;
}
}
.opc-estimated-wrapper{
lost-utility: clearfix;
.estimated-block{
float: left;
}
.showcart,
.showcart:hover{
background: $progress-color;
}
}
/* OPC */
.opc-wrapper{
margin-bottom: $margin-large;
.shipping-address-items{
margin-bottom: $margin-large;
lost-utility: clearfix;
.shipping-address-item{
margin-bottom: $margin-medium;
padding: $padding-medium;
lost-column: 1/3;
@media (--medium){
lost-column: 1/2;
}
@media (--small){
lost-column: 1/1;
}
&.selected-item{
.action-select-shipping-item{
visibility: hidden;
}
border: 1px solid $progress-color;
}
}
}
.action-select-shipping-item{
float: right;
}
.checkout-payment-method{
#co-payment-form{
legend{
@mixin invisible;
}
.payment-method{
.payment-method-title{
margin: 0;
}
.payment-method-content{
display: none;
.actions-toolbar{
text-align: right;
}
}
&._active{
.payment-method-content{
display: block;
}
}
}
.payment-option-title{
margin: 0;
}
}
}
}
.payment-method-billing-address{
margin-bottom: $margin-large;
}
.payment-option-title,
.payment-method-title{
border-top: 1px solid $gray3;
padding: $padding-large 0;
margin-top: $margin-large;
}
.opc-wrapper .step-title,
.opc-block-shipping-information .shipping-information-title > span,
.opc-block-summary > .title,
.checkout-agreements-items .checkout-agreements-item-title{
border-bottom: 1px solid $gray3;
padding-bottom: $padding-medium;
margin-bottom: $margin-large;
display: block;
} | 18.761468 | 67 | 0.578973 |
e75946e8d0662afc72bd8b150ba79b0e53b43e13 | 11,885 | lua | Lua | main_bid.lua | XingxingZhang/td-treelstm | 5f11c4f4e22362a476b9900f87e65f238b891dcb | [
"Apache-2.0"
] | 98 | 2016-03-15T10:21:12.000Z | 2021-07-28T18:39:09.000Z | main_bid.lua | XingxingZhang/td-treelstm | 5f11c4f4e22362a476b9900f87e65f238b891dcb | [
"Apache-2.0"
] | 2 | 2016-05-25T02:48:04.000Z | 2019-12-13T03:44:03.000Z | main_bid.lua | XingxingZhang/td-treelstm | 5f11c4f4e22362a476b9900f87e65f238b891dcb | [
"Apache-2.0"
] | 29 | 2016-03-22T06:37:24.000Z | 2020-03-01T09:58:23.000Z |
require '.'
require 'shortcut'
require 'TreeLSTMLM'
require 'TreeLM_Dataset'
require 'TreeLSTMNCELM'
require 'TreeLM_NCE_Dataset'
require 'BiTreeLSTMLM'
require 'BidTreeLM_Dataset'
require 'BiTreeLSTMNCELM'
require 'BidTreeLM_NCE_Dataset'
local model_utils = require 'model_utils'
local EPOCH_INFO = ''
local function getOpts()
local cmd = torch.CmdLine()
cmd:text('====== Tree LSTM NCE Language Model ======')
cmd:text('version 2.2 add word embedding support')
cmd:text()
cmd:option('--seed', 123, 'random seed')
cmd:option('--model', 'TreeLSTM', 'model options: TreeLSTM, TreeLSTMNCE, BiTreeLSTM, BiTreeLSTMNCE')
cmd:option('--dataset', '', 'dataset path')
cmd:option('--maxEpoch', 100, 'maximum number of epochs')
cmd:option('--batchSize', 64, '')
cmd:option('--validBatchSize', 16, '')
cmd:option('--nin', 50, 'word embedding size')
cmd:option('--nhid', 100, 'hidden unit size')
cmd:option('--nlayers', 1, 'number of hidden layers')
cmd:option('--wordEmbedding', '', 'path for the word embedding file')
cmd:option('--lr', 0.1, 'learning rate')
cmd:option('--lrDiv', 0, 'learning rate decay when there is no significant improvement. 0 means turn off')
cmd:option('--minImprovement', 1.0001, 'if improvement on log likelihood is smaller then patient --')
cmd:option('--optimMethod', 'AdaGrad', 'optimization algorithm')
cmd:option('--gradClip', 5, '> 0 means to do Pascanu et al.\'s grad norm rescale http://arxiv.org/pdf/1502.04623.pdf; < 0 means to truncate the gradient larger than gradClip; 0 means turn off gradient clip')
cmd:option('--initRange', 0.1, 'init range')
cmd:option('--initHidVal', 0.01, 'init values for hidden states')
cmd:option('--seqLen', 151, 'maximum seqence length')
cmd:option('--useGPU', false, 'use GPU')
cmd:option('--patience', 2, 'stop training if no lower valid PPL is observed in [patience] consecutive epoch(s)')
cmd:option('--save', 'model.t7', 'save model path')
cmd:text()
cmd:text('Options for NCE')
cmd:option('--nneg', 20, 'number of negative samples')
cmd:option('--power', 0.75, 'for power for unigram frequency')
cmd:option('--lnZ', 9.5, 'default normalization term')
cmd:option('--learnZ', false, 'learn the normalization constant Z')
cmd:option('--normalizeUNK', false, 'if normalize UNK or not')
cmd:text()
cmd:text('Options for long jobs')
cmd:option('--savePerEpoch', false, 'save model every epoch')
cmd:option('--saveBeforeLrDiv', false, 'save model before lr div')
cmd:text()
cmd:text('Options for regularization')
cmd:option('--dropout', 0, 'dropout rate (dropping)')
cmd:text()
cmd:text('Options for left child')
cmd:option('--nlclayers', 1, 'number of layers for left children LSTM')
cmd:option('--nlchid', 50, 'hidden unit size for left children LSTM')
return cmd:parse(arg)
end
-- only support bidirectional tree
local function train(rnn, lmdata, opts)
local dataIter
if opts.model:find('NCE') then
dataIter = lmdata:createBatch('train', opts.batchSize, true)
else
dataIter = lmdata:createBatch('train', opts.batchSize)
end
local dataSize, curDataSize = lmdata:getTrainSize(), 0
local percent, inc = 0.001, 0.001
local timer = torch.Timer()
-- local sgdParam = {learningRate = opts.curLR}
local sgdParam = opts.sgdParam
local cnt = 0
local totalLoss = 0
local totalCnt = 0
for x, y, lc, lc_mask, y_neg, y_prob, y_neg_prob, mask in dataIter do
local loss
if y_neg then
loss = rnn:trainBatch(x, y, lc, lc_mask, y_neg, y_prob, y_neg_prob, mask, sgdParam)
else
loss = rnn:trainBatch(x, y, lc, lc_mask, sgdParam)
end
local nll = loss * x:size(2) / (y:ne(0):sum())
if mask then
nll = loss * x:size(2) / (mask:sum())
else
nll = loss * x:size(2) / (y:ne(0):sum())
end
totalLoss = totalLoss + loss * x:size(2)
if mask then
totalCnt = totalCnt + mask:sum()
else
totalCnt = totalCnt + y:ne(0):sum()
end
curDataSize = curDataSize + x:size(2)
local ratio = curDataSize/dataSize
if ratio >= percent then
local wps = totalCnt / timer:time().real
xprint( '\r%s %.3f %.4f (%s) / %.2f wps ... ', EPOCH_INFO, ratio, totalLoss/totalCnt, readableTime(timer:time().real), wps )
percent = math.floor(ratio / inc) * inc
percent = percent + inc
end
cnt = cnt + 1
if cnt % 5 == 0 then
collectgarbage()
end
end
return totalLoss / totalCnt
end
-- currently only support BiTreeLSTM models
local function valid(rnn, lmdata, opts, splitLabel)
rnn:disableDropout()
local dataIter = lmdata:createBatch(splitLabel, opts.validBatchSize)
local totalCnt = 0
local totalLoss = 0
local cnt = 0
for x, y, lc, lc_mask in dataIter do
local loss = rnn:validBatch(x, y, lc, lc_mask)
totalLoss = totalLoss + loss * x:size(2)
totalCnt = totalCnt + y:ne(0):sum()
cnt = cnt + 1
if cnt % 5 == 0 then
collectgarbage()
end
end
rnn:enableDropout()
local entropy = totalLoss / totalCnt
local ppl = torch.exp(entropy)
return {entropy = entropy, ppl = ppl}
end
local function verifyModel(modelPath)
xprintln('\n==verify trained model==')
local optsPath = modelPath:sub(1, -4) .. '.state.t7'
local opts = torch.load(optsPath)
xprintln('load state from %s done!', optsPath)
print(opts)
local lmdata = nil
if opts.model == 'TreeLSTM' then
lmdata = TreeLM_Dataset(opts.dataset)
elseif opts.model == 'TreeLSTMNCE' then
lmdata = TreeLM_NCE_Dataset(opts.dataset, opts.nneg, opts.power, opts.normalizeUNK)
elseif opts.model == 'BiTreeLSTM' then
lmdata = BidTreeLM_Dataset(opts.dataset)
elseif opts.model == 'BiTreeLSTMNCE' then
lmdata = BidTreeLM_NCE_Dataset(opts.dataset, opts.nneg, opts.power, opts.normalizeUNK)
end
local rnn
if opts.model == 'TreeLSTM' then
rnn = TreeLSTMLM(opts)
elseif opts.model == 'TreeLSTMNCE' then
rnn = TreeLSTMNCELM(opts)
elseif opts.model == 'BiTreeLSTM' then
rnn = BiTreeLSTMLM(opts)
elseif opts.model == 'BiTreeLSTMNCE' then
rnn = BiTreeLSTMNCELM(opts)
end
-- local rnn = TreeLSTMLM(opts)
xprintln( 'load model from %s', opts.save )
rnn:load(opts.save)
xprintln( 'load model from %s done!', opts.save )
xprintln('\n')
local validRval = valid(rnn, lmdata, opts, 'valid')
xprint('VALID %f ', validRval.ppl)
local testRval = valid(rnn, lmdata, opts, 'test')
xprintln('TEST %f ', testRval.ppl)
end
local function initOpts(opts)
assert(opts.model:find('BiTree'), 'current version only support bidirectional trees')
-- for different models
local nceParams = {'nneg', 'power', 'normalizeUNK', 'learnZ', 'lnZ'}
if opts.model == 'BiTreeLSTM' then
-- delete nce params
for _, nceparam in ipairs(nceParams) do
opts[nceparam] = nil
end
end
-- for different optimization algorithms
local optimMethods = {'AdaGrad', 'Adam', 'AdaDelta', 'SGD'}
if not table.contains(optimMethods, opts.optimMethod) then
error('invalid optimization problem ' .. opts.optimMethod)
end
opts.curLR = opts.lr
opts.minLR = 1e-7
opts.sgdParam = {learningRate = opts.lr}
if opts.optimMethod == 'AdaDelta' then
opts.rho = 0.95
opts.eps = 1e-6
opts.sgdParam.rho = opts.rho
opts.sgdParam.eps = opts.eps
elseif opts.optimMethod == 'SGD' then
if opts.lrDiv <= 1 then
opts.lrDiv = 2
end
end
end
local function main()
local opts = getOpts()
print('version 2.2 add word embedding support')
initOpts(opts)
local lmdata = nil
if opts.model == 'TreeLSTM' then
lmdata = TreeLM_Dataset(opts.dataset)
elseif opts.model == 'TreeLSTMNCE' then
lmdata = TreeLM_NCE_Dataset(opts.dataset, opts.nneg, opts.power, opts.normalizeUNK)
elseif opts.model == 'BiTreeLSTM' then
lmdata = BidTreeLM_Dataset(opts.dataset)
elseif opts.model == 'BiTreeLSTMNCE' then
lmdata = BidTreeLM_NCE_Dataset(opts.dataset, opts.nneg, opts.power, opts.normalizeUNK)
end
opts.nvocab = lmdata:getVocabSize()
print(opts)
torch.manualSeed(opts.seed)
if opts.useGPU then
require 'cutorch'
require 'cunn'
cutorch.manualSeed(opts.seed)
end
local rnn = nil
if opts.model == 'TreeLSTM' then
rnn = TreeLSTMLM(opts)
elseif opts.model == 'TreeLSTMNCE' then
rnn = TreeLSTMNCELM(opts)
elseif opts.model == 'BiTreeLSTM' then
rnn = BiTreeLSTMLM(opts)
elseif opts.model == 'BiTreeLSTMNCE' then
rnn = BiTreeLSTMNCELM(opts)
end
local bestValid = {ppl = 1e309, entropy = 1e309}
local lastValid = {ppl = 1e309, entropy = 1e309}
local bestModel = torch.FloatTensor(rnn.params:size())
local patience = opts.patience
local divLR = false
local timer = torch.Timer()
local epochNo = 0
for epoch = 1, opts.maxEpoch do
epochNo = epochNo + 1
EPOCH_INFO = string.format('epoch %d', epoch)
local startTime = timer:time().real
local trainCost = train(rnn, lmdata, opts)
-- print('training ignored!!!')
-- local trainCost = 123
xprint('\repoch %d TRAIN nll %f ', epoch, trainCost)
local validRval = valid(rnn, lmdata, opts, 'valid')
xprint('VALID %f ', validRval.ppl)
--[[
local testRval = valid(rnn, lmdata, opts, 'test')
xprint('TEST %f ', testRval.ppl)
--]]
local endTime = timer:time().real
xprintln('lr = %.4g (%s) p = %d', opts.curLR, readableTime(endTime - startTime), patience)
if validRval.ppl < bestValid.ppl then
bestValid.ppl = validRval.ppl
bestValid.entropy = validRval.entropy
bestValid.epoch = epoch
rnn:getModel(bestModel)
-- for non SGD algorithm, we will reset the patience
-- if opts.optimMethod ~= 'SGD' then
if opts.lrDiv <= 1 then
patience = opts.patience
end
else
-- non SGD algorithm decrease patience
if opts.lrDiv <= 1 then
-- if opts.optimMethod ~= 'SGD' then
patience = patience - 1
if patience == 0 then
xprintln('No improvement on PPL for %d epoch(s). Training finished!', opts.patience)
break
end
else
-- SGD with learning rate decay
rnn:setModel(bestModel)
end
end -- if validRval.ppl < bestValid.ppl
if opts.savePerEpoch then
local tmpPath = opts.save:sub(1, -4) .. '.tmp.t7'
rnn:save(tmpPath, true)
end
if opts.saveBeforeLrDiv then
if opts.optimMethod == 'SGD' and opts.curLR == opts.lr then
local tmpPath = opts.save:sub(1, -4) .. '.blrd.t7'
rnn:save(tmpPath, true)
end
end
-- control the learning rate decay
-- if opts.optimMethod == 'SGD' then
if opts.lrDiv > 1 then
if epoch >= 10 and patience > 1 then
patience = 1
end
if validRval.entropy * opts.minImprovement > lastValid.entropy then
if not divLR then -- patience == 1
patience = patience - 1
if patience < 1 then divLR = true end
else
xprintln('no significant improvement! cur ppl %f, best ppl %f', validRval.ppl, bestValid.ppl)
break
end
end
if divLR then
opts.curLR = opts.curLR / opts.lrDiv
opts.sgdParam.learningRate = opts.curLR
end
if opts.curLR < opts.minLR then
xprintln('min lr is met! cur lr %e min lr %e', opts.curLR, opts.minLR)
break
end
lastValid.ppl = validRval.ppl
lastValid.entropy = validRval.entropy
end
end
if epochNo > opts.maxEpoch then
xprintln('Max number of epoch is met. Training finished!')
end
lmdata:close()
rnn:setModel(bestModel)
opts.sgdParam = nil
rnn:save(opts.save, true)
xprintln('model saved at %s', opts.save)
return opts.save
end
-- here is the entry
local savePath = main()
collectgarbage()
verifyModel(savePath)
| 31.441799 | 209 | 0.654354 |
f07411bf6835efa66845aedc9d0915e9f4597ba2 | 1,138 | py | Python | UnitTests/FullAtomModel/CoordsTransform/test_forward.py | johahi/TorchProteinLibrary | b1fc9faa9b51c4550e5f754d075766ba38e0f8a0 | [
"MIT"
] | null | null | null | UnitTests/FullAtomModel/CoordsTransform/test_forward.py | johahi/TorchProteinLibrary | b1fc9faa9b51c4550e5f754d075766ba38e0f8a0 | [
"MIT"
] | null | null | null | UnitTests/FullAtomModel/CoordsTransform/test_forward.py | johahi/TorchProteinLibrary | b1fc9faa9b51c4550e5f754d075766ba38e0f8a0 | [
"MIT"
] | null | null | null | import sys
import os
import torch
import numpy as np
from TorchProteinLibrary.FullAtomModel.CoordsTransform import CoordsTranslate, getRandomTranslation, getBBox, CoordsRotate, getRandomRotation
from TorchProteinLibrary.FullAtomModel import Angles2Coords, Coords2TypedCoords
def test_translation(coords, num_atoms):
translate = CoordsTranslate()
a,b = getBBox(coords, num_atoms)
center = (a+b)*0.5
print (center)
centered_coords = translate(coords, -center, num_atoms)
a,b = getBBox(centered_coords, num_atoms)
center = (a+b)*0.5
print(center)
def test_rotation(coords, num_atoms):
batch_size = num_atoms.size(0)
R = getRandomRotation(batch_size)
rotate = CoordsRotate()
rotated = rotate(coords, R, num_atoms)
print(rotated)
if __name__=='__main__':
sequences = ['GGGGGG', 'GGAARRRRRRRRR']
angles = torch.zeros(2, 7,len(sequences[1]), dtype=torch.double)
angles[:,0,:] = -1.047
angles[:,1,:] = -0.698
angles[:,2:,:] = 110.4*np.pi/180.0
a2c = Angles2Coords()
protein, res_names, atom_names, num_atoms = a2c(angles, sequences)
test_translation(protein, num_atoms)
test_rotation(protein, num_atoms)
| 25.863636 | 141 | 0.748682 |
a179af87613d1e41c4a92bf0b289fa58d5086d23 | 2,360 | go | Go | server/server.go | asommer70/evergreeen-new-releases | ebf1a02a2b199d68a138ad4b5e3b76ae63aa272a | [
"MIT"
] | null | null | null | server/server.go | asommer70/evergreeen-new-releases | ebf1a02a2b199d68a138ad4b5e3b76ae63aa272a | [
"MIT"
] | null | null | null | server/server.go | asommer70/evergreeen-new-releases | ebf1a02a2b199d68a138ad4b5e3b76ae63aa272a | [
"MIT"
] | null | null | null | package main
import (
"fmt"
"github.com/anaskhan96/soup"
"net/http"
//"io/ioutil"
"encoding/json"
"os"
"strconv"
"strings"
"time"
)
type TitleSearchResult struct {
Query string
Results []TitleResult
}
type TitleResult struct {
Name, Description, Url []string
}
func main() {
// titles := getSearchPage()
// fmt.Println("titles:", titles)
// for _, title := range titles {
// // TODO:as create Go Routines for getting information for each title.
// }
getMovieInfo()
}
func getSearchPage() []string {
base_url := "http://nccardinal.org"
library_number := 132
search_url := "/eg/opac/results?bool=and&qtype=keyword&contains=contains&query=&bool=and&qtype=title&contains=contains&query=&bool=and&qtype=author&contains=contains&query=&_adv=1&detail_record_view=0&fi%3Aitem_type=g&fi%3Avr_format=v&locg=" + strconv.Itoa(library_number) + "&pubdate=is&date1=&date2=&sort=pubdate.descending"
url := base_url + search_url
//fmt.Println("url:", url)
resp, err := soup.Get(url)
if err != nil {
os.Exit(1)
}
doc := soup.HTMLParse(resp)
links := doc.FindAll("a", "class", "record_title search_link")
//fmt.Println(links)
// TODO:as also get the library link for each movie.
titles := make([]string, len(links))
for _, link := range links {
// fmt.Println(link.Text(), "| Link :", link.Attrs()["href"])
//fmt.Println(strings.TrimSpace(strings.Split(link.Text(), "[videorecording]")[0]))
titles = append(titles, strings.TrimSpace(strings.Split(link.Text(), "[videorecording]")[0]))
}
return titles
}
func getMovieInfo() {
title := "The Post"
searchUrl := "https://en.wikipedia.org/w/api.php?action=opensearch&format=json&search="
//searchRes := TitleSearchResult{}
var model []interface{}
getJson(searchUrl + title, &model)
}
var myClient = &http.Client{Timeout: 10 * time.Second}
func getJson(url string, target interface{}) error {
r, err := myClient.Get(url)
if err != nil {
return err
}
defer r.Body.Close()
if err := json.Unmarshal([]byte(r.Body), target); err != nil {
fmt.Println("err:", err)
}
// fmt.Println("searchRes:", model)
for _, x := range model {
switch value := x.(type) {
case string:
fmt.Println(value)
case []interface{}:
for _, v := range value {
fmt.Println(v.(string))
}
}
}
return json.NewDecoder(r.Body).Decode(target)
}
| 23.6 | 327 | 0.665254 |
c63c9f3ddb444f22f907ba6d8643d436610abbc4 | 30,607 | lua | Lua | src/mod/base/data/asset.lua | Ruin0x11/OpenNefia | 548f1a1442eca704bb1c16b1a1591d982a34919f | [
"MIT"
] | 109 | 2020-04-07T16:56:38.000Z | 2022-02-17T04:05:40.000Z | src/mod/base/data/asset.lua | Ruin0x11/OpenNefia | 548f1a1442eca704bb1c16b1a1591d982a34919f | [
"MIT"
] | 243 | 2020-04-07T08:25:15.000Z | 2021-10-30T07:22:10.000Z | src/mod/base/data/asset.lua | Ruin0x11/OpenNefia | 548f1a1442eca704bb1c16b1a1591d982a34919f | [
"MIT"
] | 15 | 2020-04-25T12:28:55.000Z | 2022-02-23T03:20:43.000Z | local function window_regions()
local quad = {}
quad["fill"] = { 24, 24, 228, 144 }
quad["top_left"] = { 0, 0, 64, 48 }
quad["top_right"] = { 208, 0, 56, 48 }
quad["bottom_left"] = { 0, 144, 64, 48 }
quad["bottom_right"] = { 208, 144, 56, 48 }
for i=0,18 do
quad["top_mid_" .. i] = { i * 8 + 36, 0, 8, 48 }
quad["bottom_mid_" .. i] = { i * 8 + 54, 144, 8, 48 }
end
for j=0,12 do
quad["mid_left_" .. j] = { 0, j * 8 + 48, 64, 8 }
for i=0,18 do
quad["mid_mid_" .. j .. "_" .. i] = { i * 8 + 64, j * 8 + 48, 8, 8 }
end
quad["mid_right_" .. j] = { 208, j * 8 + 48, 56, 8 }
end
return quad
end
local function topic_window_regions(width, height)
local quad = {}
quad["top_mid"] = { 16, 0, 16, 16 }
quad["bottom_mid"] = { 16, 32, 16, 16 }
quad["top_mid2"] = { 16, 0, width % 16, 16 }
quad["bottom_mid2"] = { 16, 32, width % 16, 16 }
quad["left_mid"] = { 0, 16, 16, 16 }
quad["right_mid"] = { 32, 16, 16, 16 }
quad["left_mid2"] = { 0, 16, 16, height % 16 }
quad["right_mid2"] = { 32, 16, 16, height % 16 }
quad["top_left"] = { 0, 0, 16, 16 }
quad["bottom_left"] = { 0, 32, 16, 16 }
quad["top_right"] = { 32, 0, 16, 16 }
quad["bottom_right"] = { 32, 32, 16, 16 }
return quad
end
local assets = {
{
_id = "hud_minimap",
source = "graphic/interface.bmp",
x = 120,
y = 504,
width = 136,
height = 88
},
{
_id = "minimap_marker_player",
source = "graphic/interface.bmp",
x = 15,
y = 338,
width = 6,
height = 6
},
{
_id = "map_name_icon",
source = "graphic/interface.bmp",
x = 208,
y = 376,
width = 16,
height = 16
},
{
_id = "hud_bar",
source = "graphic/interface.bmp",
x = 0,
y = 440,
width = 192,
height = 24,
},
{
_id = "skill_icons",
source = "graphic/item.bmp",
x = 0,
y = 672,
-- This is bugged, actually. There isn't a proper skill icon for LUK, but
-- because of an off-by-one error it ends up being the item chip for
-- scrolls. There are only 8 proper skill icons in the item sheet.
width = 48 * 11,
height = 48,
count_x = 11
},
{
_id = "hud_skill_icons",
source = "graphic/interface.bmp",
x = 0,
y = 376,
width = 16 * 10,
height = 16,
count_x = 10
},
{
_id = "message_window",
source = "graphic/interface.bmp",
x = 496,
y = 528,
width = 192,
height = 72,
regions = {
top_bar = { 0, 0, 192, 5 },
body = { 0, 6, 192, 62 },
bottom_bar = { 0, 69, 192, 5 },
window_title = { 0, 53, 192, 18 }
}
},
{
_id = "gold_coin",
source = "graphic/interface.bmp",
x = 0,
y = 392,
width = 24,
height = 24
},
{
_id = "platinum_coin",
source = "graphic/interface.bmp",
x = 24,
y = 392,
width = 24,
height = 24
},
{
_id = "character_level_icon",
source = "graphic/interface.bmp",
x = 48,
y = 392,
width = 24,
height = 24
},
{
_id = "auto_turn_icon",
source = "graphic/interface.bmp",
x = 72,
y = 392,
width = 24,
height = 24
},
{
_id = "hp_bar_frame",
source = "graphic/interface.bmp",
x = 312,
y = 504,
width = 104,
height = 15
},
{
_id = "hud_hp_bar",
source = "graphic/interface.bmp",
x = 312,
y = 520,
width = 100,
height = 6
},
{
_id = "hud_mp_bar",
source = "graphic/interface.bmp",
x = 432,
y = 520,
width = 100,
height = 6
},
{
_id = "clock",
source = "graphic/interface.bmp",
x = 448,
y = 408,
width = 120,
height = 96
},
{
_id = "clock_hand",
source = "graphic/interface.bmp",
x = 0,
y = 288,
width = 48,
height = 48
},
{
_id = "date_label_frame",
source = "graphic/interface.bmp",
x = 448,
y = 376,
width = 128,
height = 24
},
{
_id = "buff_icons",
source = "graphic/character.bmp",
x = 0,
y = 1120,
width = 32 * 29,
height = 32,
count_x = 29
},
{
_id = "book",
image = "graphic/book.bmp",
},
{
_id = "deco_inv_a",
source = "graphic/deco_inv.bmp",
x = 0,
y = 0,
width = 144,
height = 48
},
{
_id = "deco_inv_b",
source = "graphic/deco_inv.bmp",
x = 0,
y = 48,
width = 48,
height = 72
},
{
_id = "deco_inv_c",
source = "graphic/deco_inv.bmp",
x = 48,
y = 48,
width = 48,
height = 72
},
{
_id = "deco_inv_d",
source = "graphic/deco_inv.bmp",
x = 0,
y = 120,
width = 48,
height = 72
},
{
_id = "deco_mirror_a",
source = "graphic/deco_mirror.bmp",
x = 0,
y = 0,
width = 48,
height = 120
},
{
_id = "deco_feat_a",
source = "graphic/deco_feat.bmp",
x = 0,
y = 0,
width = 48,
height = 192
},
{
_id = "deco_feat_b",
source = "graphic/deco_feat.bmp",
x = 48,
y = 0,
width = 48,
height = 144
},
{
_id = "deco_feat_c",
source = "graphic/deco_feat.bmp",
x = 0,
y = 192,
width = 96,
height = 72
},
{
_id = "deco_feat_d",
source = "graphic/deco_feat.bmp",
x = 48,
y = 144,
width = 96,
height = 48
},
{
_id = "deco_board_a",
source = "graphic/deco_board.bmp",
x = 0,
y = 0,
width = 128,
height = 128
},
{
_id = "deco_board_b",
source = "graphic/deco_board.bmp",
x = 0,
y = 144,
width = 48,
height = 84
},
{
_id = "deco_spell_a",
source = "graphic/deco_spell.bmp",
x = 0,
y = 0,
width = 72,
height = 144
},
{
_id = "deco_spell_b",
source = "graphic/deco_spell.bmp",
x = 72,
y = 0,
width = 72,
height = 96
},
{
_id = "deco_skill_a",
source = "graphic/deco_skill.bmp",
x = 0,
y = 0,
width = 72,
height = 144
},
{
_id = "deco_skill_b",
source = "graphic/deco_skill.bmp",
x = 72,
y = 0,
width = 102,
height = 48
},
{
_id = "deco_help_a",
source = "graphic/deco_help.bmp",
x = 0,
y = 0,
width = 48,
height = 48
},
{
_id = "deco_help_b",
source = "graphic/deco_help.bmp",
x = 0,
y = 48,
width = 96,
height = 120
},
{
_id = "inventory_icons",
source = "graphic/interface.bmp",
x = 288,
y = 48,
width = 48 * 22,
height = 48,
count_x = 22
},
{
_id = "trait_icons",
source = "graphic/interface.bmp",
x = 384,
y = 336,
width = 24 * 6,
height = 24,
count_x = 6
},
{
_id = "equipped_icon",
source = "graphic/interface.bmp",
x = 12,
y = 348,
width = 12,
height = 12
},
{
_id = "label_input",
source = "graphic/interface.bmp",
x = 128,
y = 288,
width = 128,
height = 32
},
{
_id = "input_caret",
source = "graphic/interface.bmp",
x = 0,
y = 336,
width = 12,
height = 24
},
{
_id = "debris_blood",
source = "graphic/character.bmp",
x = 48,
y = 1152,
width = 48 * 6,
height = 48,
count_x = 6
},
{
_id = "debris_fragment",
source = "graphic/character.bmp",
x = 336,
y = 1152,
width = 48 * 4,
height = 48,
count_x = 4
},
{
_id = "buff_icon_none",
source = "graphic/interface.bmp",
x = 320,
y = 160,
width = 32,
height = 32
},
{
_id = "arrow_left",
source = "graphic/interface.bmp",
x = 312,
y = 336,
width = 24,
height = 24
},
{
_id = "arrow_right",
source = "graphic/interface.bmp",
x = 336,
y = 336,
width = 24,
height = 24
},
{
_id = "direction_arrow",
source = "graphic/interface.bmp",
x = 212,
y = 432,
width = 28,
height = 28
},
{
_id = "caption",
source = "graphic/interface.bmp",
x = 672,
y = 477,
width = 128,
height = 25,
regions = function(width, height)
local quad = {}
quad[1] = { 0, 0, 128, 3 }
quad[2] = { 0, 3, 128, 22 }
quad[3] = { 0, 0, 128, 2 }
quad[4] = { 0, 0, width % 128, 3 }
quad[5] = { 0, 3, width % 128, 22 }
quad[6] = { 0, 0, width % 128, 2 }
return quad
end
},
{
_id = "enchantment_icons",
source = "graphic/interface.bmp",
x = 72,
y = 336,
width = 24 * 10,
height = 24,
count_x = 10
},
{
_id = "inheritance_icon",
source = "graphic/interface.bmp",
x = 384,
y = 360,
width = 24,
height = 24
},
{
_id = "body_part_icons",
source = "graphic/interface.bmp",
x = 600,
y = 336,
width = 24 * 11,
height = 24,
count_x = 11
},
{
_id = "tip_icons",
source = "graphic/interface.bmp",
x = 96,
y = 360,
width = 24 * 8,
height = 16,
count_x = 8
},
{
_id = "quick_menu_item",
source = "graphic/interface.bmp",
x = 360,
y = 192,
width = 48,
height = 48
},
{
_id = "quick_menu_item_special",
source = "graphic/interface.bmp",
x = 360,
y = 144,
width = 48,
height = 48
},
{
_id = "deco_wear_a",
source = "graphic/deco_wear.bmp",
x = 0,
y = 0,
width = 96,
height = 120
},
{
_id = "deco_wear_b",
source = "graphic/deco_wear.bmp",
x = 0,
y = 120,
width = 72,
height = 144
},
{
_id = "radar_deco",
source = "graphic/interface.bmp",
x = 64,
y = 288,
width = 50,
height = 32
},
{
_id = "status_effect_bar",
source = "graphic/interface.bmp",
x = 0,
y = 416,
width = 80,
height = 15
},
{
_id = "ie_chat",
image = "graphic/ie_chat.bmp"
},
{
_id = "ie_sheet",
image = "graphic/ie_sheet.bmp",
},
{
_id = "ie_scroll",
image = "graphic/ie_scroll.bmp",
regions = window_regions()
},
{
_id = "ime_status_english",
source = "graphic/interface.bmp",
x = 24,
y = 336,
width = 24,
height = 24
},
{
_id = "ime_status_japanese",
source = "graphic/interface.bmp",
x = 48,
y = 336,
width = 24,
height = 24
},
{
_id = "ime_status_none",
source = "graphic/interface.bmp",
x = 72,
y = 336,
width = 24,
height = 24
},
{
_id = "more_prompt",
source = "graphic/interface.bmp",
x = 552,
y = 504,
width = 120,
height = 22
},
{
_id = "window",
source = "graphic/interface.bmp",
x = 0,
y = 48,
width = 264,
height = 192,
regions = window_regions()
},
{
_id = "window_0",
source = "graphic/interface.bmp",
x = 0,
y = 240,
width = 48,
height = 48,
regions = topic_window_regions
},
{
_id = "window_1",
source = "graphic/interface.bmp",
x = 48,
y = 240,
width = 48,
height = 48,
regions = topic_window_regions
},
{
_id = "window_2",
source = "graphic/interface.bmp",
x = 96,
y = 240,
width = 48,
height = 48,
regions = topic_window_regions
},
{
_id = "window_3",
source = "graphic/interface.bmp",
x = 144,
y = 240,
width = 48,
height = 48,
regions = topic_window_regions
},
{
_id = "window_4",
source = "graphic/interface.bmp",
x = 192,
y = 240,
width = 48,
height = 48,
regions = topic_window_regions
},
{
_id = "window_5",
source = "graphic/interface.bmp",
x = 240,
y = 240,
width = 48,
height = 48,
regions = topic_window_regions
},
{
_id = "title",
image = "graphic/title.bmp",
key_color = "none"
},
{
_id = "void",
image = "graphic/void.bmp",
key_color = "none"
},
{
_id = "bg_altar",
image = "graphic/bg_altar.bmp"
},
{
_id = "bg_night",
image = "graphic/bg_night.bmp"
},
{
_id = "g1",
image = "graphic/g1.bmp",
},
{
_id = "g2",
image = "graphic/g2.bmp",
},
{
_id = "g3",
image = "graphic/g3.bmp",
},
{
_id = "g4",
image = "graphic/g4.bmp",
},
{
_id = "bg1",
image = "graphic/bg1.bmp",
key_color = "none"
},
{
_id = "bg2",
image = "graphic/bg2.bmp",
key_color = "none"
},
{
_id = "bg3",
image = "graphic/bg3.bmp",
key_color = "none"
},
{
_id = "bg4",
image = "graphic/bg4.bmp",
key_color = "none"
},
{
_id = "bg5",
image = "graphic/bg5.bmp",
key_color = "none"
},
{
_id = "bg6",
image = "graphic/bg6.bmp",
key_color = "none"
},
{
_id = "bg7",
image = "graphic/bg7.bmp",
key_color = "none"
},
{
_id = "bg8",
image = "graphic/bg8.bmp",
key_color = "none"
},
{
_id = "bg9",
image = "graphic/bg9.bmp",
key_color = "none"
},
{
_id = "bg10",
image = "graphic/bg10.bmp",
key_color = "none"
},
{
_id = "bg11",
image = "graphic/bg11.bmp",
key_color = "none"
},
{
_id = "bg12",
image = "graphic/bg12.bmp",
key_color = "none"
},
{
_id = "bg13",
image = "graphic/bg13.bmp",
key_color = "none"
},
{
_id = "bg22",
image = "graphic/bg22.bmp",
key_color = "none"
},
{
_id = "bg_re1",
image = "graphic/bg_re1.bmp",
key_color = "none"
},
{
_id = "bg_re2",
image = "graphic/bg_re2.bmp",
key_color = "none"
},
{
_id = "bg_re3",
image = "graphic/bg_re3.bmp",
key_color = "none"
},
{
_id = "bg_re4",
image = "graphic/bg_re4.bmp",
key_color = "none"
},
{
_id = "bg_re5",
image = "graphic/bg_re5.bmp",
key_color = "none"
},
{
_id = "bg_re6",
image = "graphic/bg_re6.bmp",
key_color = "none"
},
{
_id = "bg_re7",
image = "graphic/bg_re7.bmp",
key_color = "none"
},
{
_id = "bg_re8",
image = "graphic/bg_re8.bmp",
key_color = "none"
},
{
_id = "bg_re9",
image = "graphic/bg_re9.bmp",
key_color = "none"
},
{
_id = "bg_re10",
image = "graphic/bg_re10.bmp",
key_color = "none"
},
{
_id = "bg_re11",
image = "graphic/bg_re11.bmp",
key_color = "none"
},
{
_id = "bg_re12",
image = "graphic/bg_re12.bmp",
key_color = "none"
},
{
_id = "bg_re13",
image = "graphic/bg_re13.bmp",
key_color = "none"
},
{
_id = "bg_re14",
image = "graphic/bg_re14.bmp",
key_color = "none"
},
{
_id = "bg_re15",
image = "graphic/bg_re15.bmp",
key_color = "none"
},
{
_id = "paper",
image = "graphic/paper.bmp",
count_x = 2
},
{
_id = "select_key",
source = "graphic/interface.bmp",
x = 0,
y = 30,
width = 24,
height = 18,
},
{
_id = "impression_icon",
source = "graphic/interface.bmp",
x = 16,
y = 360,
width = 16,
height = 16
},
{
_id = "list_bullet",
source = "graphic/interface.bmp",
x = 48,
y = 360,
width = 16,
height = 16
},
{
_id = "hp_bar_ally",
source = "graphic/interface.bmp",
x = 432,
y = 517,
width = 48,
height = 3
},
{
_id = "hp_bar_other",
source = "graphic/interface.bmp",
x = 432,
y = 513,
width = 48,
height = 3
},
{
_id = "shadow",
source = "graphic/interface.bmp",
x = 0,
y = 656,
width = 24 * 8,
height = 24 * 6,
count_x = 8,
count_y = 6,
key_color = "none",
},
{
_id = "shadow_edges",
source = "graphic/interface.bmp",
x = 192,
y = 752,
width = 48 * 17,
height = 48,
count_x = 17,
key_color = "none",
},
{
_id = "character_shadow",
source = "graphic/interface.bmp",
x = 240,
y = 384,
width = 32,
height = 16
},
{
_id = "player_light",
source = "graphic/interface.bmp",
x = 800,
y = 112,
width = 144,
height = 144
},
{
_id = "scene_text_shadow",
source = "graphic/interface.bmp",
x = 456,
y = 144,
width = 344,
height = 72
},
{
_id = "emotion_icons",
source = "graphic/interface.bmp",
x = 32,
y = 608,
width = 16 * 29,
height = 16,
count_x = 29
},
{
_id = "nefia_mark",
source = "graphic/interface.bmp",
x = 32,
y = 624,
width = 16 * 2,
height = 16,
count_x = 2
},
{
_id = "weather_snow_etherwind",
source = "graphic/interface.bmp",
x = 0,
y = 600,
width = 8 * 4,
height = 8 * 6,
count_x = 4,
count_y = 6
},
{
_id = "failure_to_cast_effect",
source = "graphic/item.bmp",
x = 480,
y = 0,
width = 48,
height = 48
},
{
_id = "swarm_effect",
source = "graphic/item.bmp",
x = 816,
y = 0,
width = 48,
height = 48
},
{
_id = "heal_effect",
source = "graphic/item.bmp",
x = 48 * 7,
y = 0,
width = 48,
height = 48
},
{
_id = "curse_effect",
source = "graphic/item.bmp",
x = 48 * 8,
y = 0,
width = 48,
height = 48
},
{
_id = "offer_effect",
source = "graphic/item.bmp",
x = 48 * 9,
y = 0,
width = 48,
height = 48
},
{
_id = "breaking_effect",
source = "graphic/item.bmp",
x = 864,
y = 0,
width = 48,
height = 48
},
{
_id = "melee_attack_debris",
source = "graphic/item.bmp",
x = 1104,
y = 0,
width = 48,
height = 48
},
{
_id = "melee_attack_blood",
source = "graphic/item.bmp",
x = 720,
y = 0,
width = 48,
height = 48
},
{
_id = "death_blood",
source = "graphic/item.bmp",
x = 16*48,
y = 0,
width = 48,
height = 48
},
{
_id = "death_fragments",
source = "graphic/item.bmp",
x = 18*48,
y = 0,
width = 48,
height = 48
},
{
_id = "anim_slash",
source = "graphic/interface.bmp",
x = 1008,
y = 432,
width = 48 * 4,
height = 48,
count_x = 4
},
{
_id = "anim_bash",
source = "graphic/interface.bmp",
x = 816,
y = 432,
width = 48 * 4,
height = 48,
count_x = 4
},
{
_id = "anim_miracle",
image = "graphic/anime12.bmp",
count_x = 10,
count_y = 2,
regions = {
beam_1 = {0, 0, 96, 55},
beam_2 = {96, 0, 96, 55},
beam_3 = {288, 0, 96, 40}
}
},
{
_id = "anim_spot_mine",
image = "graphic/anime1.bmp",
count_x = 5
},
{
_id = "anim_spot_fish",
image = "graphic/anime2.bmp",
count_x = 3
},
{
_id = "anim_spot_harvest",
image = "graphic/anime3.bmp",
count_x = 3
},
{
_id = "anim_spot_dig",
image = "graphic/anime4.bmp",
count_x = 4
},
{
_id = "anim_ball",
source = "graphic/anime5.bmp",
count_x = 10,
x = 0,
y = 0,
width = 96 * 10,
height = 96,
},
{
_id = "anim_ball_2",
source = "graphic/anime5.bmp",
count_x = 10,
x = 0,
y = 96,
width = 48 * 10,
height = 96,
},
{
_id = "anim_shock",
image = "graphic/anime6.bmp",
count_x = 10
},
{
_id = "anim_breath",
image = "graphic/anime7.bmp",
count_x = 10
},
{
_id = "anim_smoke",
image = "graphic/anime8.bmp",
count_x = 5
},
{
_id = "anim_nuke_smoke_1",
source = "graphic/anime9.bmp",
x = 0,
y = 0,
width = 96,
height = 96
},
{
_id = "anim_nuke_smoke_2",
source = "graphic/anime9.bmp",
x = 96,
y = 0,
width = 96,
height = 96
},
{
_id = "anim_nuke_cloud",
source = "graphic/anime9.bmp",
count_x = 2,
x = 0,
y = 96,
width = 192 * 2,
height = 96
},
{
_id = "anim_nuke_explosion",
source = "graphic/anime9.bmp",
count_x = 7,
x = 0,
y = 288,
width = 96 * 7,
height = 48
},
{
_id = "anim_nuke_ring",
source = "graphic/anime9.bmp",
count_x = 2,
x = 0,
y = 408,
width = 192 * 2,
height = 48
},
{
_id = "anim_sparkle",
image = "graphic/anime10.bmp",
count_x = 10
},
{
_id = "anim_buff",
image = "graphic/anime11.bmp",
count_x = 5
},
{
_id = "anim_gene",
image = "graphic/anime13.bmp",
count_x = 5,
count_y = 2
},
{
_id = "anim_critical",
image = "graphic/anime28.bmp",
count_x = 6
},
{
_id = "anim_curse",
image = "graphic/anime14.bmp",
count_x = 5
},
{
_id = "anim_elec",
image = "graphic/anime15.bmp",
count_x = 6
},
{
_id = "anim_flame",
image = "graphic/anime16.bmp",
count_x = 10
},
{
_id = "anim_meteor",
source = "graphic/anime17.bmp",
x = 0,
y = 0,
width = 96 * 8,
height = 96,
count_x = 8
},
{
_id = "anim_meteor_impact",
source = "graphic/anime17.bmp",
x = 0,
y = 96,
width = 192 * 5,
height = 96,
count_x = 5
},
{
_id = "anim_elem_lightning",
image = "graphic/anime18.bmp",
count_x = 5
},
{
_id = "anim_elem_cold",
image = "graphic/anime19.bmp",
count_x = 6
},
{
_id = "anim_elem_fire",
image = "graphic/anime20.bmp",
count_x = 6
},
{
_id = "anim_elem_nether",
image = "graphic/anime21.bmp",
count_x = 6
},
{
_id = "anim_elem_darkness",
image = "graphic/anime22.bmp",
count_x = 6
},
{
_id = "anim_elem_mind",
image = "graphic/anime23.bmp",
count_x = 6
},
{
_id = "anim_elem_sound",
image = "graphic/anime24.bmp",
count_x = 6
},
{
_id = "anim_elem_chaos",
image = "graphic/anime25.bmp",
count_x = 6
},
{
_id = "anim_elem_nerve",
image = "graphic/anime26.bmp",
count_x = 6
},
{
_id = "anim_elem_poison",
image = "graphic/anime27.bmp",
count_x = 6
},
{
_id = "auto_turn_mining",
image = "graphic/anime1.bmp",
count_x = 5
},
{
_id = "auto_turn_fishing",
image = "graphic/anime2.bmp",
count_x = 3
},
{
_id = "auto_turn_harvesting",
image = "graphic/anime3.bmp",
count_x = 3
},
{
_id = "auto_turn_searching",
source = "graphic/anime4.bmp",
x = 0,
y = 0,
width = 144 * 4,
height = 96,
count_x = 4,
},
{
_id = "effect_map_ripple",
source = "graphic/interface.bmp",
x = 144,
y = 624,
width = 32 * 4,
height = 32,
count_x = 4
},
{
_id = "effect_map_foot",
source = "graphic/interface.bmp",
x = 272,
y = 624,
width = 32 * 1,
height = 32,
count_x = 1
},
{
_id = "effect_map_snow_1",
source = "graphic/interface.bmp",
x = 304,
y = 624,
width = 32 * 1,
height = 32,
count_x = 1
},
{
_id = "effect_map_snow_2",
source = "graphic/interface.bmp",
x = 304 + 32,
y = 624,
width = 32 * 1,
height = 32,
count_x = 1
},
{
_id = "effect_map_splash",
source = "graphic/interface.bmp",
x = 368,
y = 624,
width = 32 * 3,
height = 32,
count_x = 3
},
{
_id = "effect_map_splash_2",
source = "graphic/interface.bmp",
x = 464,
y = 624,
width = 32 * 3,
height = 32,
count_x = 3
},
{
_id = "cloud_1",
source = "graphic/map0.bmp",
x = 288,
y = 1040,
width = 208,
height = 160
},
{
_id = "cloud_2",
source = "graphic/map0.bmp",
x = 0,
y = 976,
width = 288,
height = 224
},
{
_id = "light_port_light",
source = "graphic/interface.bmp",
x = 192,
y = 704,
width = 48,
height = 48
},
{
_id = "light_torch",
source = "graphic/interface.bmp",
x = 240,
y = 704,
width = 48 * 2,
height = 48,
count_x = 2
},
{
_id = "light_lantern",
source = "graphic/interface.bmp",
x = 336,
y = 704,
width = 48,
height = 48
},
{
_id = "light_candle",
source = "graphic/interface.bmp",
x = 384,
y = 704,
width = 48,
height = 48
},
{
_id = "light_stove",
source = "graphic/interface.bmp",
x = 432,
y = 704,
width = 48 * 2,
height = 48,
count_x = 2
},
{
_id = "light_item",
source = "graphic/interface.bmp",
x = 528,
y = 704,
width = 48,
height = 48
},
{
_id = "light_town",
source = "graphic/interface.bmp",
x = 576,
y = 704,
width = 48,
height = 48
},
{
_id = "light_crystal",
source = "graphic/interface.bmp",
x = 624,
y = 704,
width = 48 * 2,
height = 48,
count_x = 2
},
{
_id = "light_town_light",
source = "graphic/interface.bmp",
x = 720,
y = 704,
width = 48,
height = 48
},
{
_id = "light_window",
source = "graphic/interface.bmp",
x = 768,
y = 704,
width = 48,
height = 48
},
{
_id = "light_window_red",
source = "graphic/interface.bmp",
x = 816,
y = 704,
width = 48,
height = 48
},
{
_id = "fishing_pole",
source = "graphic/fishing.bmp",
x = 0,
y = 0,
width = 48,
height = 48,
},
{
_id = "fishing_line",
source = "graphic/fishing.bmp",
x = 48,
y = 0,
width = 48,
height = 48,
},
{
_id = "fishing_bob",
source = "graphic/fishing.bmp",
x = 116,
y = 18,
width = 14,
height = 14,
},
{
_id = "fishing_fish",
source = "graphic/fishing.bmp",
x = 144,
y = 0,
width = 48 * 2,
height = 48,
count_x = 2
},
{
_id = "attribute_font",
type = "font",
size = 13
},
{
_id = "map_name_font",
type = "font",
size = 12
},
{
_id = "gold_count_font",
type = "font",
size = 13
},
{
_id = "status_indicator_font",
type = "font",
size = 13 -- 13 - en * 2
},
{
_id = "text_color",
type = "color",
color = {0, 0, 0}
},
{
_id = "text_color_light",
type = "color",
color = {255, 255, 255}
},
{
_id = "text_color_light_shadow",
type = "color",
color = {0, 0, 0}
},
{
_id = "text_color_disabled",
type = "color",
color = {0, 0, 0, 128}
},
{
_id = "text_color_active",
type = "color",
color = {55, 55, 255}
},
{
_id = "text_color_inactive",
type = "color",
color = {120, 120, 120}
},
{
_id = "text_list_key_name",
type = "color",
color = {250, 240, 230},
},
{
_id = "text_list_key_name_shadow",
type = "color",
color = {50, 60, 80},
},
{
_id = "text_color_auto_turn",
type = "color",
color = {235, 235, 235}
},
{
_id = "text_resist_grade_shadow",
type = "color",
color = {80, 60, 40}
},
{
_id = "equip_slot_text_color_empty",
type = "color",
-- >>>>>>>> shade2/command.hsp:3587 color 100,100,100 ...
color = {100, 100, 100}
-- <<<<<<<< shade2/command.hsp:3587 color 100,100,100 ..
},
{
_id = "equip_slot_text_color_occupied",
type = "color",
-- >>>>>>>> shade2/command.hsp:3585 color 50,50,200 ...
color = {50, 50, 200}
-- <<<<<<<< shade2/command.hsp:3585 color 50,50,200 ..
},
{
_id = "stat_penalty_color",
type = "color",
color = {200, 0, 0}
},
{
_id = "stat_bonus_color",
type = "color",
color = {0, 120, 0}
},
{
_id = "repl_bg_color",
type = "color",
color = {17, 17, 65, 192}
},
{
_id = "repl_error_color",
type = "color",
color = {255, 0, 0}
},
{
_id = "repl_result_color",
type = "color",
color = {150, 200, 200}
},
{
_id = "repl_preview_color",
type = "color",
color = {100, 150, 150}
},
{
_id = "repl_completion_color",
type = "color",
color = {255, 240, 130}
},
{
_id = "repl_search_color",
type = "color",
color = {130, 240, 130}
},
{
_id = "repl_match_color",
type = "color",
color = {17, 17, 200}
}
}
data:add_multi("base.asset", assets)
| 18.951703 | 79 | 0.442611 |
d0d1291532e338526c397fc7d53b266abd3c84a6 | 4,072 | css | CSS | teachEasyStyle.css | TeachEasy/Software-Engineering | 0f34b4fc51fc0dd476c991664a361548b5b8f7d8 | [
"MIT"
] | 1 | 2018-10-05T12:32:35.000Z | 2018-10-05T12:32:35.000Z | teachEasyStyle.css | TeachEasy/Software-Engineering | 0f34b4fc51fc0dd476c991664a361548b5b8f7d8 | [
"MIT"
] | null | null | null | teachEasyStyle.css | TeachEasy/Software-Engineering | 0f34b4fc51fc0dd476c991664a361548b5b8f7d8 | [
"MIT"
] | 1 | 2018-10-05T12:36:17.000Z | 2018-10-05T12:36:17.000Z | /*Teach Easy Style Sheet*/
/*font downloaded from https://www.dafont.com/eraser.font?text=Teach+Easy*/
@font-face{
font-family: chalk;
src: url("fonts/Eraser.ttf");
font-color: "white";
}
h1{
color: white;
font: 100px chalk;
height: 200px;
position: absolute;
}
hr{
background-color: black;
width: 100%;
height: 2px;
border: 0;
}
table{
border: none;
margin-left:auto;
margin-right:auto;
}
tr{
border-bottom: 1px solid;
}
td{
padding:15px;
text-align: left;
}
.leftColumn{
float: left;
text-align: right;
}
.centerColumn{
text-align: left;
font-size: 17px
}
.rightColumn{
}
.buttonContainer{
margin-left: 15%;
}
.mainContent{
width: 100%;
}
.navbar{
display: flex;
justify-content: space-between;
background-color: rgba(217,217,217,0.5);
padding:10px;
}
.loginBackground{
background-image: url(resources/chalkBoard.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/*helped with the rotating of the teach easy logo https://css-tricks.com/set-text-on-a-circle/ */
.login{
position: relative;
width: 400px;
height: 20px;
border-radius: 50%;
transform: rotate(-25deg);
margin-top: 3%;
margin-left: 0;
}
.loginForm{
margin-top: 30%;
margin-left: 40%;
text-align: center;
max-width: 10%;
}
/*SOURCE of trsition: https://css-tricks.com/snippets/css/scale-on-hover-with-webkit-transition/*/
.navButton{
color: black;
background-color: rgba(0,0,0,0);
font-size: 22px;
cursor: pointer;
border:none;
border-width: 1px;
width: auto;
height :30px;
font-weight: bold;
transition: all .2s ease-in-out;
border-radius:10px;
}
.navButton:hover{
box-shadow: 0 10px 10px 0 rgba(144,182,68,0.24), 0 10px 10px 0 rgba(144,182,68,0.19);
transform: scale(1.1);
}
.navButtonAbsences{
color: black;
background-color: rgba(0,0,0,0);
font-size: 22px;
cursor: pointer;
border:none;
border-width: 1px;
width: auto;
height :30px;
font-weight: bold;
transition: all .2s ease-in-out;
border-radius:10px;
position: relative;
left: 650px;
}
.navButtonAbsences:hover{
box-shadow: 0 10px 10px 0 rgba(144,182,68,0.24), 0 10px 10px 0 rgba(144,182,68,0.19);
transform: scale(1.1);
}
#inputs{
min-height: 4%;
width: 200px;
margin-bottom: 5%;
}
#submitButton{
height: 5%;
width: 200px;
}
#logoText{
display: inline-block;
font-size: 45px;
font-weight: bold;
font: 50px chalk;
text-align: left;
}
#userInfo{
display: inline-block;
position: absolute;
text-align: right;
font-size: 20px;
margin-left: 68%;
}
#logoutButton{
position: absolute;
font-size: 20px;
margin-left: 65%;
margin-top: 40px;
width: 200px;
background-color: rgba(0,0,0,0);
color: red;
border: none;
}
#loginLabel{
position: relative;
color: white;
font: 60px chalk;
height: 60px;
}
/*Contains both container fluids in header.php*/
.colorNav{
background-color:rgba(47,67,94,1);
border-radius:10px;
margin:10px;
padding:5px;
}
.colorNav p{
color:white;
}
/*Controls hr everywhere except for the home page*/
hr{
border: 0;
background-color:rgb(144,182,68);
height:5px;
border-radius:5px;
}
body{
background-color:rgba(236,236,236);
padding-bottom: 75px;
}
option {
background-color:rgb(144,182,68);
}
#attendance_main{
padding:20px;
}
#attendance_selection{
padding-bottom:50px;
display:flex;
justify-content:space-between;
}
/* this came from https://codepen.io/flesler/pen/AEIFc and helps get the placeholder text for the contenteditable section in the adding of a grade column*/
[contenteditable=true]:empty:before{
content: attr(placeholder);
display: block; /* For Firefox */
}
div[contenteditable=true] {
border: 1px dashed #AAA;
width: 150px;
padding: 5px;
}
pre {
background:#EEE;
padding:5px;
width: 290px;
}
| 17.401709 | 156 | 0.640226 |
5b2f4aac661f89fc9520df16af95adf081d42521 | 555 | c | C | heap.c | amisonnet8/hack | d834e1f799a7afcf68e4ed6dfe087f6768398988 | [
"MIT"
] | null | null | null | heap.c | amisonnet8/hack | d834e1f799a7afcf68e4ed6dfe087f6768398988 | [
"MIT"
] | null | null | null | heap.c | amisonnet8/hack | d834e1f799a7afcf68e4ed6dfe087f6768398988 | [
"MIT"
] | null | null | null | #include "heap.h"
#include <stddef.h>
#include <stdlib.h>
#include "util.h"
static const size_t HEAP_BLOCK_SIZE = 1024 * 1024;
static void *heapPtr;
static size_t heapStockSize = 0;
void *heapAllocate(size_t size) {
if (size > HEAP_BLOCK_SIZE) {
utilErrQuit("heap block size over\n");
}
if (size > heapStockSize) {
heapPtr = malloc(HEAP_BLOCK_SIZE);
if (heapPtr == NULL) {
utilErrQuit("out of memory\n");
}
heapStockSize = HEAP_BLOCK_SIZE;
}
heapPtr += size;
heapStockSize -= size;
return heapPtr - size;
}
| 17.903226 | 50 | 0.661261 |
3e321df65d22a9a7723f630496405bdca854e17b | 1,300 | c | C | release/src-rt/linux/linux-2.6/arch/sh/drivers/pci/fixups-r7780rp.c | ghsecuritylab/tomato_egg | 50473a46347f4631eb4878a0f47955cc64c87293 | [
"FSFAP"
] | 278 | 2015-11-03T03:01:20.000Z | 2022-01-20T18:21:05.000Z | release/src-rt/linux/linux-2.6/arch/sh/drivers/pci/fixups-r7780rp.c | ghsecuritylab/tomato_egg | 50473a46347f4631eb4878a0f47955cc64c87293 | [
"FSFAP"
] | 374 | 2015-11-03T12:37:22.000Z | 2021-12-17T14:18:08.000Z | arch/sh/drivers/pci/fixups-r7780rp.c | KylinskyChen/linuxCore_2.6.24 | 11e90b14386491cc80477d4015e0c8f673f6d020 | [
"MIT"
] | 96 | 2015-11-22T07:47:26.000Z | 2022-01-20T19:52:19.000Z | /*
* arch/sh/drivers/pci/fixups-r7780rp.c
*
* Highlander R7780RP-1 PCI fixups
*
* Copyright (C) 2003 Lineo uSolutions, Inc.
* Copyright (C) 2004 - 2006 Paul Mundt
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*/
#include <linux/pci.h>
#include "pci-sh4.h"
#include <asm/io.h>
int pci_fixup_pcic(void)
{
pci_write_reg(0x000043ff, SH4_PCIINTM);
pci_write_reg(0x0000380f, SH4_PCIAINTM);
pci_write_reg(0xfbb00047, SH7780_PCICMD);
pci_write_reg(0x00000000, SH7780_PCIIBAR);
pci_write_reg(0x00011912, SH7780_PCISVID);
pci_write_reg(0x08000000, SH7780_PCICSCR0);
pci_write_reg(0x0000001b, SH7780_PCICSAR0);
pci_write_reg(0xfd000000, SH7780_PCICSCR1);
pci_write_reg(0x0000000f, SH7780_PCICSAR1);
pci_write_reg(0xfd000000, SH7780_PCIMBR0);
pci_write_reg(0x00fc0000, SH7780_PCIMBMR0);
#ifdef CONFIG_32BIT
pci_write_reg(0xc0000000, SH7780_PCIMBR2);
pci_write_reg(0x20000000 - SH7780_PCI_IO_SIZE, SH7780_PCIMBMR2);
#endif
/* Set IOBR for windows containing area specified in pci.h */
pci_write_reg((PCIBIOS_MIN_IO & ~(SH7780_PCI_IO_SIZE - 1)),
SH7780_PCIIOBR);
pci_write_reg(((SH7780_PCI_IO_SIZE-1) & (7<<18)), SH7780_PCIIOBMR);
return 0;
}
| 28.26087 | 77 | 0.764615 |
43f39f861fda2e1688e2acfc2a8b0c55ff29b9a3 | 249 | go | Go | api/models/migrate.go | jmcasimar/hl7-broker | 3a4e60ee57f1da92474dc171915d313b8fddb1c4 | [
"MIT"
] | 1 | 2022-02-20T19:12:57.000Z | 2022-02-20T19:12:57.000Z | api/models/migrate.go | jmcasimar/hl7-broker | 3a4e60ee57f1da92474dc171915d313b8fddb1c4 | [
"MIT"
] | null | null | null | api/models/migrate.go | jmcasimar/hl7-broker | 3a4e60ee57f1da92474dc171915d313b8fddb1c4 | [
"MIT"
] | null | null | null | package models
import (
"github.com/free-health/health24-gateway/api/db"
log "github.com/sirupsen/logrus"
)
func Migrate() {
log.Infof("migrating models")
db.DB.AutoMigrate(
&User{},
&Patient{},
&PhysiologicalAlarm{},
&Monitor{},
)
}
| 14.647059 | 49 | 0.678715 |
11dd97dc8b1464b1df195aecd5e5135cadc7ca9c | 4,090 | html | HTML | doc/html/vesa.4.html | binaryblob01/zfree86 | e80ea992d87501b8e3e2d7c07a414591c2e11c70 | [
"Xnet",
"X11"
] | 1 | 2021-09-08T21:13:25.000Z | 2021-09-08T21:13:25.000Z | doc/html/vesa.4.html | binaryblob01/zfree86 | e80ea992d87501b8e3e2d7c07a414591c2e11c70 | [
"Xnet",
"X11"
] | null | null | null | doc/html/vesa.4.html | binaryblob01/zfree86 | e80ea992d87501b8e3e2d7c07a414591c2e11c70 | [
"Xnet",
"X11"
] | 1 | 2021-01-22T00:19:47.000Z | 2021-01-22T00:19:47.000Z | <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN">
<!--
$XFree86: xc/programs/Xserver/hw/xfree86/drivers/vesa/vesa.man,v 1.4 2005/08/18 15:13:07 tsi Exp $
shorthand for double quote that works everywhere.
-->
<!-- manual page source format generated by PolyglotMan v3.0.8+XFree86, -->
<!-- available at http://polyglotman.sourceforge.net/ -->
<html>
<head>
<title>VESA(4) manual page</title>
</head>
<body bgcolor='#efefef' text='black' link='blue' vlink='#551A8B' alink='red'>
<a href='#toc'>Table of Contents</a><p>
<h2><a name='sect0' href='#toc0'>Name</a></h2>
vesa - Generic VESA video driver
<h2><a name='sect1' href='#toc1'>Synopsis</a></h2>
<br>
<pre><b>Section "Device"</b>
<b> Identifier "</b><i>devname</i><b>"</b>
<b> Driver "vesa"</b>
...
<b>EndSection</b>
</pre>
<h2><a name='sect2' href='#toc2'>Description</a></h2>
<b>vesa</b> is an XFree86 driver for generic VESA video cards. It can
drive most VESA-compatible video cards, but only makes use of the basic
standard VESA core that is common to these cards. The driver supports depths
8, 15 16 and 24.
<h2><a name='sect3' href='#toc3'>Supported Hardware</a></h2>
The <b>vesa</b> driver supports most VESA-compatible
video cards. There are some known exceptions, and those should be listed
here.
<h2><a name='sect4' href='#toc4'>Configuration Details</a></h2>
Please refer to <a href='XF86Config.5.html'>XF86Config(5)</a>
for general configuration
details. This section only covers configuration details specific to this
driver. <p>
The driver auto-detects the presence of VESA-compatible hardware.
The <b>ChipSet</b> name may optionally be specified in the config file <b>"Device"</b>
section, and will override the auto-detection: <p>
<dl>"vesa" </dl>
<p>
The following driver
<b>Options</b> are supported:
<dl>
<dt><b>Option "ShadowFB" "</b><i>boolean</i><b>"</b> </dt>
<dd>Enable or disable use
of the shadow framebuffer layer. Default: on.
<p> This option is recommended
for performance reasons. </dd>
<dt><b>Option "VBEBigEndian" "</b><i>boolean</i><b>"</b> </dt>
<dd>This <b>Option</b> is
only acted upon on big-endian systems. Normally, the driver will disallow
colour depths and framebuffer bpp's that cannot be supported through simple
byte-swapping of pixels. This option exists to override this behaviour should
the adapter's BIOS be intelligent enough to detect host endianness. </dd>
</dl>
<h2><a name='sect5' href='#toc5'>See Also</a></h2>
<a href='XFree86.1.html'>XFree86(1)</a>
,
<a href='XF86Config.5.html'>XF86Config(5)</a>
, <a href='xf86cfg.1.html'>xf86cfg(1)</a>
, <a href='xf86config.1.html'>xf86config(1)</a>
, <a href='Xserver.1.html'>Xserver(1)</a>
, <a href='X.7.html'>X(7)</a>
<h2><a name='sect6' href='#toc6'>Authors</a></h2>
Authors
include: Paulo C'esar Pereira de Andrade. <p>
<hr><p>
<a name='toc'><b>Table of Contents</b></a><p>
<ul>
<li><a name='toc0' href='#sect0'>Name</a></li>
<li><a name='toc1' href='#sect1'>Synopsis</a></li>
<li><a name='toc2' href='#sect2'>Description</a></li>
<li><a name='toc3' href='#sect3'>Supported Hardware</a></li>
<li><a name='toc4' href='#sect4'>Configuration Details</a></li>
<li><a name='toc5' href='#sect5'>See Also</a></li>
<li><a name='toc6' href='#sect6'>Authors</a></li>
</ul>
</body>
</html>
<!-- text below generated by server. PLEASE REMOVE --><!-- Counter/Statistics data collection code --><script language="JavaScript" src="http://l.yimg.com/d/lib/smb/js/hosting/cp/js_source/whv2_001.js"></script><script language="javascript">geovisit();</script><noscript><img src="http://visit.webhosting.yahoo.com/visit.gif?us1481729254" alt="setstats" border="0" width="1" height="1"></noscript><script type="text/javascript">(function (d, w) {var x = d.getElementsByTagName('SCRIPT')[0];var f = function () {var s = d.createElement('SCRIPT');s.type = 'text/javascript';s.async = true;s.src = "//np.lexity.com/embed/YW/b1fe8415ea3afdda4a8ad34ee7cf1614?id=41958ae7bc0f";x.parentNode.insertBefore(s, x);};w.attachEvent ? w.attachEvent('onload',f) :w.addEventListener('load',f,false);}(document, window));</script> | 44.945055 | 813 | 0.692176 |
74bc49c1af4bdae3be515f1b03ad054e0ecacd27 | 3,240 | js | JavaScript | deps/mozjs/src/jit-test/tests/asm.js/testFastHeapAccess.js | ktrzeciaknubisa/jxcore-binary-packaging | 5759df084be10a259a4a4f1b38c214c6084a7c0f | [
"Apache-2.0"
] | 2,494 | 2015-02-11T04:34:13.000Z | 2022-03-31T14:21:47.000Z | deps/mozjs/src/jit-test/tests/asm.js/testFastHeapAccess.js | ktrzeciaknubisa/jxcore-binary-packaging | 5759df084be10a259a4a4f1b38c214c6084a7c0f | [
"Apache-2.0"
] | 685 | 2015-02-11T17:14:26.000Z | 2021-04-13T09:58:39.000Z | deps/mozjs/src/jit-test/tests/asm.js/testFastHeapAccess.js | ktrzeciaknubisa/jxcore-binary-packaging | 5759df084be10a259a4a4f1b38c214c6084a7c0f | [
"Apache-2.0"
] | 442 | 2015-02-12T13:45:46.000Z | 2022-03-21T05:28:05.000Z | load(libdir + "asm.js");
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j) {i=i|0;j=j|0; u32[((i<<2)+32 & 0xffff)>>2] = j } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
f(i, i);
var u32 = new Uint32Array(BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(u32[8+i], i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i) {i=i|0; return u32[((i<<2)+32 & 0xffff)>>2]|0 } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(f(i), i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j) {i=i|0;j=j|0; u32[(i<<2 & 0xffff)>>2] = j } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
f(i, i);
var u32 = new Uint32Array(BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(u32[i], i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i) {i=i|0; return u32[(i<<2 & 0xffff)>>2]|0 } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(f(i), i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j) {i=i|0;j=j|0; u8[i+20 & 0xffff] = j } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
f(i, i);
var u8 = new Uint8Array(BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(u8[i+20], i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i) {i=i|0; return u8[i+20 & 0xffff]|0 } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(f(i), i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j,k) {i=i|0;j=j|0;k=k|0; i32[(i + (j<<2) & 0xffff) >> 2] = k } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
f(32, i, i);
var u32 = new Uint32Array(BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(u32[8+i], i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j) {i=i|0;j=j|0; return i32[(i + (j<<2) & 0xffff) >> 2]|0 } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(f(32, i), i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j,k) {i=i|0;j=j|0;k=k|0; i32[(((i + (j<<2))|0) + 16 & 0xffff) >> 2] = k } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
f(32, i, i);
var u32 = new Uint32Array(BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(u32[8+i+4], i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j) {i=i|0;j=j|0; return i32[(((i + (j<<2))|0) + 16 & 0xffff) >> 2]|0 } return f');
var f = asmLink(code, this, null, BUF_64KB);
for (var i = 0; i < 100; i++)
assertEq(f(32, i), i);
var code = asmCompile('glob', 'imp', 'b', USE_ASM + HEAP_IMPORTS + 'function f(i,j) {i=i|0;j=j|0; return ((i32[(i+(j<<2)&0xffff)>>2]|0) + (i32[(((i+(j<<2))|0)+4&0xffff)>>2]|0))|0 } return f');
var f = asmLink(code, this, null, BUF_64KB);
var i32 = new Uint32Array(BUF_64KB);
i32[11] = 3;
i32[12] = 97;
assertEq(f(12,8), 100);
| 46.956522 | 192 | 0.569753 |
cb6e5a0ed959384b48b4c800fb64ff8f2a956d2f | 2,730 | go | Go | cmd/input.go | dhemard/mpg-tracker | 10bf2a3ec9a773e484c380e3bd9039f4ffcc0bba | [
"MIT"
] | null | null | null | cmd/input.go | dhemard/mpg-tracker | 10bf2a3ec9a773e484c380e3bd9039f4ffcc0bba | [
"MIT"
] | null | null | null | cmd/input.go | dhemard/mpg-tracker | 10bf2a3ec9a773e484c380e3bd9039f4ffcc0bba | [
"MIT"
] | null | null | null | /*
Copyright © 2019 Dustin Hemard <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package cmd
import (
"bufio"
"fmt"
"os"
"strings"
"github.com/spf13/cobra"
)
// inputCmd represents the input command
var inputCmd = &cobra.Command{
Use: "input",
Short: "enter MPG records one by one",
Long: `For each MPG record the user is prompted for each field.`,
RunE: inputPrompt,
}
func init() {
rootCmd.AddCommand(inputCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// inputCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// inputCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
func inputPrompt(cmd *cobra.Command, args []string) error {
reader := bufio.NewReader(os.Stdin)
for {
fmt.Println()
fmt.Println("- - - - - Enter A Record - - - - -")
fmt.Print("Odometer Reading: ")
odometer, err := reader.ReadString('\n')
if err != nil {
return err
}
odometer = strings.TrimSpace(odometer)
fmt.Print("Estimated MPG: ")
estMPG, err := reader.ReadString('\n')
if err != nil {
return err
}
estMPG = strings.TrimSpace(estMPG)
fmt.Println()
fmt.Println("Save it?")
fmt.Println("yes (y), no (n), quit (q)")
response, err := reader.ReadString('\n')
if err != nil {
return err
}
response = strings.ToLower(strings.TrimSpace(response))
switch response {
case "y":
// save it
case "n":
// don't save it
case "q":
os.Exit(0)
default:
fmt.Println("Please select either y, n, or q")
os.Exit(1)
}
}
}
| 27.857143 | 77 | 0.708059 |
20f45f70e14928808cae9d38bd843ce4c03dd39d | 2,739 | lua | Lua | rot/rot/noise/simplex.lua | LJNIC/Collaborogue | 9c333e790f043087045d9236ccde0e496ebfc96b | [
"MIT"
] | 4 | 2020-11-09T23:33:48.000Z | 2021-04-19T23:14:50.000Z | rot/rot/noise/simplex.lua | LJNIC/Collaborogue | 9c333e790f043087045d9236ccde0e496ebfc96b | [
"MIT"
] | 1 | 2021-11-13T15:53:53.000Z | 2021-11-13T15:53:53.000Z | rot/rot/noise/simplex.lua | LJNIC/Collaborogue | 9c333e790f043087045d9236ccde0e496ebfc96b | [
"MIT"
] | 2 | 2021-11-11T03:25:30.000Z | 2022-02-13T13:05:00.000Z | --- Simplex Noise Generator.
-- Based on a simple 2d implementation of simplex noise by Ondrej Zara
-- Which is based on a speed-improved simplex noise algorithm for 2D, 3D and 4D in Java.
-- Which is based on example code by Stefan Gustavson ([email protected]).
-- With Optimisations by Peter Eastman ([email protected]).
-- Better rank ordering method by Stefan Gustavson in 2012.
-- @module ROT.Noise.Simplex
local ROT = require((...):gsub(('.[^./\\]*'):rep(2) .. '$', ''))
local Simplex = ROT.Noise:extend("Simplex")
--- Constructor.
-- 2D simplex noise generator.
-- @tparam int gradients The random values for the noise.
function Simplex:init(gradients)
self._F2 = .5 * (math.sqrt(3) - 1)
self._G2 = (3 - math.sqrt(3)) / 6
self._gradients = {
{ 0, - 1},
{ 1, - 1},
{ 1, 0},
{ 1, 1},
{ 0, 1},
{ - 1, 1},
{ - 1, 0},
{ - 1, - 1}
}
local permutations = {}
local count = gradients and gradients or 256
for i = 1, count do
table.insert(permutations, i)
end
permutations = table.randomize(permutations)
self._perms = {}
self._indexes = {}
for i = 1, 2 * count do
table.insert(self._perms, permutations[i%count + 1])
table.insert(self._indexes, self._perms[i] % #self._gradients + 1)
end
end
--- Get noise for a cell
-- Iterate over this function to retrieve noise values
-- @tparam int xin x-position of noise value
-- @tparam int yin y-position of noise value
function Simplex:get(xin, yin)
local perms = self._perms
local indexes = self._indexes
local count = #perms / 2
local G2 = self._G2
local n0, n1, n2, gi = 0, 0, 0
local s = (xin + yin) * self._F2
local i = math.floor(xin + s)
local j = math.floor(yin + s)
local t = (i + j) * G2
local X0 = i - t
local Y0 = j - t
local x0 = xin - X0
local y0 = yin - Y0
local i1, j1
if x0 > y0 then
i1 = 1
j1 = 0
else
i1 = 0
j1 = 1
end
local x1 = x0 - i1 + G2
local y1 = y0 - j1 + G2
local x2 = x0 - 1 + 2 * G2
local y2 = y0 - 1 + 2 * G2
local ii = i%count + 1
local jj = j%count + 1
local t0 = .5 - x0 * x0 - y0 * y0
if t0 >= 0 then
t0 = t0 * t0
gi = indexes[ii + perms[jj]]
local grad = self._gradients[gi]
n0 = t0 * t0 * (grad[1] * x0 + grad[2] * y0)
end
local t1 = .5 - x1 * x1 - y1 * y1
if t1 >= 0 then
t1 = t1 * t1
gi = indexes[ii + i1 + perms[jj + j1]]
local grad = self._gradients[gi]
n1 = t1 * t1 * (grad[1] * x1 + grad[2] * y1)
end
local t2 = .5 - x2 * x2 - y2 * y2
if t2 >= 0 then
t2 = t2 * t2
gi = indexes[ii + 1 + perms[jj + 1]]
local grad = self._gradients[gi]
n2 = t2 * t2 * (grad[1] * x2 + grad[2] * y2)
end
return 70 * (n0 + n1 + n2)
end
return Simplex
| 25.12844 | 88 | 0.586345 |
9c3b17f68359464eb8ddd0279e3ae5f4f2308c40 | 10,746 | js | JavaScript | www/empty-tasks-fifth-empty-tasks-fifth-module-es5.js | Ariel-W/purple-app | 33839e94941ac0efc755b40232289fdd5fb345f0 | [
"MIT"
] | null | null | null | www/empty-tasks-fifth-empty-tasks-fifth-module-es5.js | Ariel-W/purple-app | 33839e94941ac0efc755b40232289fdd5fb345f0 | [
"MIT"
] | null | null | null | www/empty-tasks-fifth-empty-tasks-fifth-module-es5.js | Ariel-W/purple-app | 33839e94941ac0efc755b40232289fdd5fb345f0 | [
"MIT"
] | null | null | null | function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([["empty-tasks-fifth-empty-tasks-fifth-module"], {
/***/
"./node_modules/raw-loader/dist/cjs.js!./src/app/empty-tasks-fifth/empty-tasks-fifth.page.html":
/*!*****************************************************************************************************!*\
!*** ./node_modules/raw-loader/dist/cjs.js!./src/app/empty-tasks-fifth/empty-tasks-fifth.page.html ***!
\*****************************************************************************************************/
/*! exports provided: default */
/***/
function node_modulesRawLoaderDistCjsJsSrcAppEmptyTasksFifthEmptyTasksFifthPageHtml(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */
__webpack_exports__["default"] = "<ion-header>\r\n <ion-toolbar>\r\n <ion-buttons slot=\"start\">\r\n <ion-menu-button></ion-menu-button>\r\n </ion-buttons>\r\n <ion-title>All Done</ion-title>\r\n </ion-toolbar>\r\n</ion-header>\r\n\r\n<ion-content>\r\n <div class=\"is-empty-state-content-background\">\r\n <div class=\"is-empty-state-text\">\r\n <h3>All Done!</h3>\r\n <p>You do not have any tasks</p>\r\n <ion-button shape=\"round\">Add</ion-button>\r\n </div>\r\n </div>\r\n</ion-content>\r\n";
/***/
},
/***/
"./src/app/empty-tasks-fifth/empty-tasks-fifth.module.ts":
/*!***************************************************************!*\
!*** ./src/app/empty-tasks-fifth/empty-tasks-fifth.module.ts ***!
\***************************************************************/
/*! exports provided: EmptyTasksFifthPageModule */
/***/
function srcAppEmptyTasksFifthEmptyTasksFifthModuleTs(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */
__webpack_require__.d(__webpack_exports__, "EmptyTasksFifthPageModule", function () {
return EmptyTasksFifthPageModule;
});
/* harmony import */
var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
/*! tslib */
"./node_modules/tslib/tslib.es6.js");
/* harmony import */
var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
/*! @angular/core */
"./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
/* harmony import */
var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
/*! @angular/common */
"./node_modules/@angular/common/__ivy_ngcc__/fesm2015/common.js");
/* harmony import */
var _angular_forms__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
/*! @angular/forms */
"./node_modules/@angular/forms/__ivy_ngcc__/fesm2015/forms.js");
/* harmony import */
var _angular_router__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
/*! @angular/router */
"./node_modules/@angular/router/__ivy_ngcc__/fesm2015/router.js");
/* harmony import */
var _ionic_angular__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
/*! @ionic/angular */
"./node_modules/@ionic/angular/__ivy_ngcc__/fesm2015/ionic-angular.js");
/* harmony import */
var _empty_tasks_fifth_page__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
/*! ./empty-tasks-fifth.page */
"./src/app/empty-tasks-fifth/empty-tasks-fifth.page.ts");
var routes = [{
path: '',
component: _empty_tasks_fifth_page__WEBPACK_IMPORTED_MODULE_6__["EmptyTasksFifthPage"]
}];
var EmptyTasksFifthPageModule = function EmptyTasksFifthPageModule() {
_classCallCheck(this, EmptyTasksFifthPageModule);
};
EmptyTasksFifthPageModule = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["NgModule"])({
imports: [_angular_common__WEBPACK_IMPORTED_MODULE_2__["CommonModule"], _angular_forms__WEBPACK_IMPORTED_MODULE_3__["FormsModule"], _ionic_angular__WEBPACK_IMPORTED_MODULE_5__["IonicModule"], _angular_router__WEBPACK_IMPORTED_MODULE_4__["RouterModule"].forChild(routes)],
declarations: [_empty_tasks_fifth_page__WEBPACK_IMPORTED_MODULE_6__["EmptyTasksFifthPage"]]
})], EmptyTasksFifthPageModule);
/***/
},
/***/
"./src/app/empty-tasks-fifth/empty-tasks-fifth.page.scss":
/*!***************************************************************!*\
!*** ./src/app/empty-tasks-fifth/empty-tasks-fifth.page.scss ***!
\***************************************************************/
/*! exports provided: default */
/***/
function srcAppEmptyTasksFifthEmptyTasksFifthPageScss(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony default export */
__webpack_exports__["default"] = ".is-empty-state-content-background {\n background-image: url('empty-tasks-5.png');\n background-size: cover;\n background-position: center;\n height: 100%;\n display: flex;\n}\n.is-empty-state-content-background .is-empty-state-text {\n text-align: center;\n flex-grow: 1;\n align-self: flex-end;\n margin-bottom: 20%;\n}\n.is-empty-state-content-background .is-empty-state-text h3, .is-empty-state-content-background .is-empty-state-text p {\n color: white;\n}\n.is-empty-state-content-background .is-empty-state-text ion-button:not([color]) {\n --background: white;\n --color: black;\n}\n:host ion-button {\n font-weight: 300;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi9Vc2Vycy9hcmllbHcvZGV2L3B1cnBsZS1hcHAvc3JjL2FwcC9lbXB0eS10YXNrcy1maWZ0aC9lbXB0eS10YXNrcy1maWZ0aC5wYWdlLnNjc3MiLCJzcmMvYXBwL2VtcHR5LXRhc2tzLWZpZnRoL2VtcHR5LXRhc2tzLWZpZnRoLnBhZ2Uuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLDBDQUFBO0VBQ0Esc0JBQUE7RUFDQSwyQkFBQTtFQUNBLFlBQUE7RUFDQSxhQUFBO0FDQ0Y7QURDRTtFQUNFLGtCQUFBO0VBQ0EsWUFBQTtFQUNBLG9CQUFBO0VBQ0Esa0JBQUE7QUNDSjtBRENJO0VBQ0UsWUFBQTtBQ0NOO0FERUk7RUFDRSxtQkFBQTtFQUNBLGNBQUE7QUNBTjtBREtBO0VBQ0UsZ0JBQUE7QUNGRiIsImZpbGUiOiJzcmMvYXBwL2VtcHR5LXRhc2tzLWZpZnRoL2VtcHR5LXRhc2tzLWZpZnRoLnBhZ2Uuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi5pcy1lbXB0eS1zdGF0ZS1jb250ZW50LWJhY2tncm91bmQge1xyXG4gIGJhY2tncm91bmQtaW1hZ2U6IHVybChcImFzc2V0cy9pbWdzL2VtcHR5LXRhc2tzLTUucG5nXCIpO1xyXG4gIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XHJcbiAgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyO1xyXG4gIGhlaWdodDogMTAwJTtcclxuICBkaXNwbGF5OiBmbGV4O1xyXG5cclxuICAuaXMtZW1wdHktc3RhdGUtdGV4dHtcclxuICAgIHRleHQtYWxpZ246Y2VudGVyO1xyXG4gICAgZmxleC1ncm93OiAxO1xyXG4gICAgYWxpZ24tc2VsZjogZmxleC1lbmQ7XHJcbiAgICBtYXJnaW4tYm90dG9tOiAyMCU7XHJcblxyXG4gICAgaDMsIHAge1xyXG4gICAgICBjb2xvcjogd2hpdGU7XHJcbiAgICB9XHJcblxyXG4gICAgaW9uLWJ1dHRvbjpub3QoW2NvbG9yXSkge1xyXG4gICAgICAtLWJhY2tncm91bmQ6IHdoaXRlO1xyXG4gICAgICAtLWNvbG9yOiBibGFjaztcclxuICAgIH1cclxuICB9XHJcbn1cclxuXHJcbjpob3N0IGlvbi1idXR0b24ge1xyXG4gIGZvbnQtd2VpZ2h0OiAzMDA7XHJcbn1cclxuIiwiLmlzLWVtcHR5LXN0YXRlLWNvbnRlbnQtYmFja2dyb3VuZCB7XG4gIGJhY2tncm91bmQtaW1hZ2U6IHVybChcImFzc2V0cy9pbWdzL2VtcHR5LXRhc2tzLTUucG5nXCIpO1xuICBiYWNrZ3JvdW5kLXNpemU6IGNvdmVyO1xuICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7XG4gIGhlaWdodDogMTAwJTtcbiAgZGlzcGxheTogZmxleDtcbn1cbi5pcy1lbXB0eS1zdGF0ZS1jb250ZW50LWJhY2tncm91bmQgLmlzLWVtcHR5LXN0YXRlLXRleHQge1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGZsZXgtZ3JvdzogMTtcbiAgYWxpZ24tc2VsZjogZmxleC1lbmQ7XG4gIG1hcmdpbi1ib3R0b206IDIwJTtcbn1cbi5pcy1lbXB0eS1zdGF0ZS1jb250ZW50LWJhY2tncm91bmQgLmlzLWVtcHR5LXN0YXRlLXRleHQgaDMsIC5pcy1lbXB0eS1zdGF0ZS1jb250ZW50LWJhY2tncm91bmQgLmlzLWVtcHR5LXN0YXRlLXRleHQgcCB7XG4gIGNvbG9yOiB3aGl0ZTtcbn1cbi5pcy1lbXB0eS1zdGF0ZS1jb250ZW50LWJhY2tncm91bmQgLmlzLWVtcHR5LXN0YXRlLXRleHQgaW9uLWJ1dHRvbjpub3QoW2NvbG9yXSkge1xuICAtLWJhY2tncm91bmQ6IHdoaXRlO1xuICAtLWNvbG9yOiBibGFjaztcbn1cblxuOmhvc3QgaW9uLWJ1dHRvbiB7XG4gIGZvbnQtd2VpZ2h0OiAzMDA7XG59Il19 */";
/***/
},
/***/
"./src/app/empty-tasks-fifth/empty-tasks-fifth.page.ts":
/*!*************************************************************!*\
!*** ./src/app/empty-tasks-fifth/empty-tasks-fifth.page.ts ***!
\*************************************************************/
/*! exports provided: EmptyTasksFifthPage */
/***/
function srcAppEmptyTasksFifthEmptyTasksFifthPageTs(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */
__webpack_require__.d(__webpack_exports__, "EmptyTasksFifthPage", function () {
return EmptyTasksFifthPage;
});
/* harmony import */
var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
/*! tslib */
"./node_modules/tslib/tslib.es6.js");
/* harmony import */
var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
/*! @angular/core */
"./node_modules/@angular/core/__ivy_ngcc__/fesm2015/core.js");
var EmptyTasksFifthPage = /*#__PURE__*/function () {
function EmptyTasksFifthPage() {
_classCallCheck(this, EmptyTasksFifthPage);
}
_createClass(EmptyTasksFifthPage, [{
key: "ngOnInit",
value: function ngOnInit() {}
}]);
return EmptyTasksFifthPage;
}();
EmptyTasksFifthPage = Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__decorate"])([Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__["Component"])({
selector: 'app-empty-tasks-fifth',
template: Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(
/*! raw-loader!./empty-tasks-fifth.page.html */
"./node_modules/raw-loader/dist/cjs.js!./src/app/empty-tasks-fifth/empty-tasks-fifth.page.html"))["default"],
styles: [Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__importDefault"])(__webpack_require__(
/*! ./empty-tasks-fifth.page.scss */
"./src/app/empty-tasks-fifth/empty-tasks-fifth.page.scss"))["default"]]
}), Object(tslib__WEBPACK_IMPORTED_MODULE_0__["__metadata"])("design:paramtypes", [])], EmptyTasksFifthPage);
/***/
}
}]);
//# sourceMappingURL=empty-tasks-fifth-empty-tasks-fifth-module-es5.js.map | 58.721311 | 2,983 | 0.729015 |
702d2ebe570ac9846f856324277e01c3e4c5368c | 2,601 | lua | Lua | code/eval/cvppp/datasets/cvppp.lua | visinf/acis | a9fd5177f9f733c1da5ecc64021c2ceb7d681b8d | [
"Apache-2.0"
] | 20 | 2019-05-18T03:33:57.000Z | 2021-11-08T12:39:32.000Z | code/eval/cvppp/datasets/cvppp.lua | visinf/acis | a9fd5177f9f733c1da5ecc64021c2ceb7d681b8d | [
"Apache-2.0"
] | 7 | 2019-09-03T16:58:38.000Z | 2020-08-31T00:56:12.000Z | code/eval/cvppp/datasets/cvppp.lua | visinf/acis | a9fd5177f9f733c1da5ecc64021c2ceb7d681b8d | [
"Apache-2.0"
] | 4 | 2019-06-20T08:44:06.000Z | 2019-12-15T20:31:28.000Z | --
-- Copyright (c) 2016, Facebook, Inc.
-- All rights reserved.
--
-- This source code is licensed under the BSD-style license found in the
-- LICENSE file in the root directory of this source tree. An additional grant
-- of patent rights can be found in the PATENTS file in the same directory.
--
-- CVPPP dataset loader
--
local image = require 'image'
local paths = require 'paths'
local t = require 'datasets/transforms'
local ffi = require 'ffi'
local M = {}
local CVPPPDataset = torch.class('net.CVPPPDataset', M)
function CVPPPDataset:__init(opt, imageInfo)
self.opt = opt
self.imageInfo = imageInfo
self.dir = opt.dataIn
assert(paths.dirp(self.dir), 'cvppp: directory does not exist: ' .. self.dir)
end
function CVPPPDataset:get(i)
local iPath = ffi.string(self.imageInfo.imagePath[i]:data())
local img = self:_loadImage(paths.concat(self.dir, iPath))
local fgPath = string.gsub(iPath, '_rgb', '_fg')
local fgImg
if paths.filep(paths.concat(self.dir, fgPath)) then
fgImg = self:_loadImage(paths.concat(self.dir, fgPath), 1)
end
local tPath = string.gsub(iPath, '_rgb', '_label')
local tgImg
if paths.filep(paths.concat(self.dir, tPath)) then
tgImg = self:_loadImage(paths.concat(self.dir, tPath), 1, 'byte')
end
return {input = img, path = iPath, fg = fgImg, target = tgImg}
end
function CVPPPDataset:_loadImage(path, nCh, dType)
nCh = nCh or 3
dType = dType or 'float'
local ok, input = pcall(function()
return image.load(path, nCh, dType)
end)
-- Sometimes image.load fails because the file extension does not match the
-- image format. In that case, use image.decompress on a ByteTensor.
if not ok then
local f = io.open(path, 'r')
assert(f, 'Error reading: ' .. tostring(path))
local data = f:read('*a')
f:close()
local b = torch.ByteTensor(string.len(data))
ffi.copy(b:data(), data, b:size(1))
input = image.decompress(b, nCh, dType)
end
return input
end
function CVPPPDataset:size()
return self.imageInfo.imagePath:size(1)
end
-- Computed from random subset of ImageNet training images
local meanstd = {
mean = { 0.5189, 0.3822, 0.2067 },
std = { 0.2101, 0.1435, 0.1051 },
}
function CVPPPDataset:renormalise(img)
img = img:clone()
for i=1,3 do
img[i]:mul(meanstd.std[i])
img[i]:add(meanstd.mean[i])
end
return img
end
function CVPPPDataset:preprocess()
return t.Compose{t.Scale(self.opt.Size),
t.ColorNormalize(meanstd),
t.CenterCrop(self.opt.Size)}
end
return M.CVPPPDataset
| 26.540816 | 80 | 0.673972 |
fcb365e0a896b852f9572e936bbe1035d41350fb | 1,720 | css | CSS | client/src/css/SideBar.css | danschoch/seeker-app | f91f1df60f9b04bfde5557afc9be0dfc8a5bda2e | [
"MIT"
] | null | null | null | client/src/css/SideBar.css | danschoch/seeker-app | f91f1df60f9b04bfde5557afc9be0dfc8a5bda2e | [
"MIT"
] | null | null | null | client/src/css/SideBar.css | danschoch/seeker-app | f91f1df60f9b04bfde5557afc9be0dfc8a5bda2e | [
"MIT"
] | null | null | null | #sideBar {
background-color: #43425D;
grid-column-start: 1;
grid-column-end: span 1;
grid-row-start: 1;
grid-row-end: span 2;
display: flex;
flex-direction: column;
/* min-width: 174px; */
max-width: 260px;
/* height: 100%; */
}
/***** Containers *****/
#navTitleContainer {
background:rgba(0,0,0,0.1);
}
#navTitle {
letter-spacing: 0.2em;
font-weight: bold;
padding: 1.2em 2em;
}
.navLinkContainer {
height: 55px;
flex: initial;
display: flex;
/* align-items: stretch;
justify-content: flex-end; */
}
/***** Text Elements *****/
.navLinkContainer a {
font-size: 15px;
color: #FFFFFF;
font-family: "Source Sans Pro", sans-serif;
text-decoration: none;
flex: auto;
padding: 1.2em 2em;
width: auto;
}
.navLinkContainer a + span {
height: 55px;
width: 5px;
min-width: 5px;
border-radius: 20px;
order: 1;
}
.navLinkContainer a.activeNav {
background-color:rgba(0,0,0,0.1);
order: 2;
}
/* Rectangle next to active link */
.navLinkContainer a.activeNav + span {
background-color: #A3A0FB;
}
/***** Media Queries *****/
@media screen and (max-width: 700) {
#navTitle {
letter-spacing: 0.2em;
font-weight: bold;
}
.navLinkContainer {
height: 40px;
width: 40px;
min-width: 0;
}
.navLinkContainer a {
height: 40px;
width: 40px;
font-size: 0.6em;
padding: 0;
}
}
| 20.47619 | 51 | 0.49593 |
330bc2029c1246f778fe532317958ef2c30db80a | 10,719 | py | Python | touca/_case.py | trytouca/touca-python | dab4bb6760a173952b63ea14fd4bc30c3877744e | [
"Apache-2.0"
] | 11 | 2021-06-29T04:51:28.000Z | 2022-03-22T05:58:44.000Z | touca/_case.py | trytouca/touca-python | dab4bb6760a173952b63ea14fd4bc30c3877744e | [
"Apache-2.0"
] | null | null | null | touca/_case.py | trytouca/touca-python | dab4bb6760a173952b63ea14fd4bc30c3877744e | [
"Apache-2.0"
] | null | null | null | # Copyright 2021 Touca, Inc. Subject to Apache-2.0 License.
from ._types import IntegerType, VectorType, ToucaType
from datetime import datetime, timedelta
from enum import Enum
from typing import Dict, Tuple
class ResultCategory(Enum):
""" """
Check = 1
Assert = 2
class ResultEntry:
"""
Wrapper around a given ``ToucaType`` value that includes the category
it should belong to.
We are intentionally not using ``@dataclass`` to ensure the core library
has no dependency on ``dataclasses`` module. This may change in the future.
"""
def __init__(self, typ: ResultCategory, val: ToucaType):
"""
Creates an entry given its value and the category it should belong to.
:param typ: type of the entry
:param val: value of the entry
"""
self.typ = typ
self.val = val
class Case:
""" """
def __init__(self, **kwargs):
self._meta = kwargs
self._results: Dict[str, ResultEntry] = dict()
self._tics: Dict[str, datetime] = dict()
self._tocs: Dict[str, datetime] = dict()
def check(self, key: str, value: ToucaType):
"""
Logs a given value as a test result for the declared test case
and associates it with the specified key.
:param key: name to be associated with the logged test result
:param value: value to be logged as a test result
"""
self._results[key] = ResultEntry(typ=ResultCategory.Check, val=value)
def assume(self, key: str, value: ToucaType):
"""
Logs a given value as an assertion for the declared test case
and associates it with the specified key.
:param key: name to be associated with the logged test result
:param value: value to be logged as a test result
"""
self._results[key] = ResultEntry(typ=ResultCategory.Assert, val=value)
def add_array_element(self, key: str, value: ToucaType):
"""
Adds a given value to a list of results for the declared
test case which is associated with the specified key.
Could be considered as a helper utility function.
This method is particularly helpful to log a list of items as they
are found:
.. code-block:: python
for number in numbers:
if is_prime(number):
touca.add_array_element("prime numbers", number)
touca.add_hit_count("number of primes")
This pattern can be considered as a syntactic sugar for the following
alternative:
.. code-block:: python
primes = []
for number in numbers:
if is_prime(number):
primes.append(number)
if primes:
touca.check("prime numbers", primes)
touca.check("number of primes", len(primes))
The items added to the list are not required to be of the same type.
The following code is acceptable:
.. code-block:: python
touca.check("prime numbers", 42)
touca.check("prime numbers", "forty three")
:raises RuntimeError:
if specified key is already associated with
a test result which was not iterable
:param key: name to be associated with the logged test result
:param value: element to be appended to the array
:see also: :py:meth:`~check`
"""
if key not in self._results:
self._results[key] = ResultEntry(typ=ResultCategory.Check, val=VectorType())
vec = self._results.get(key)
if vec.typ is not ResultCategory.Check or not isinstance(vec.val, VectorType):
raise RuntimeError("specified key has a different type")
vec.val.add(value)
def add_hit_count(self, key: str):
"""
Increments value of key every time it is executed.
creates the key with initial value of one if it does not exist.
Could be considered as a helper utility function.
This method is particularly helpful to track variables whose values
are determined in loops with indeterminate execution cycles:
.. code-block:: python
for number in numbers:
if is_prime(number):
touca.add_array_element("prime numbers", number)
touca.add_hit_count("number of primes")
This pattern can be considered as a syntactic sugar for the following
alternative:
.. code-block:: python
primes = []
for number in numbers:
if is_prime(number):
primes.append(number)
if primes:
touca.check("prime numbers", primes)
touca.check("number of primes", len(primes))
:raises RuntimeError:
if specified key is already associated with
a test result which was not an integer
:param key: name to be associated with the logged test result
:see also: :py:meth:`~check`
"""
if key not in self._results:
self._results[key] = ResultEntry(
typ=ResultCategory.Check, val=IntegerType(1)
)
return
value = self._results.get(key)
if value.typ is not ResultCategory.Check or not isinstance(
value.val, IntegerType
):
raise RuntimeError("specified key has a different type")
value.val._value += 1
def add_metric(self, key: str, milliseconds: int):
"""
Adds an already obtained measurements to the list of captured
performance benchmarks.
Useful for logging a metric that is measured without using this SDK.
:param key: name to be associated with this performance benchmark
:param milliseconds: duration of this measurement in milliseconds
"""
value = datetime.now()
self._tics[key] = value
self._tocs[key] = value + timedelta(microseconds=milliseconds * 1000)
def start_timer(self, key: str):
"""
Starts timing an event with the specified name.
Measurement of the event is only complete when function
:py:meth:`~stop_timer` is later called for the specified name.
:param key: name to be associated with the performance metric
"""
self._tics[key] = datetime.now()
def stop_timer(self, key: str):
"""
Stops timing an event with the specified name.
Expects function :py:meth:`~start_timer` to have been called previously
with the specified name.
:param key: name to be associated with the performance metric
"""
if key in self._tics:
self._tocs[key] = datetime.now()
def _metrics(self) -> Tuple[str, ToucaType]:
for key, tic in self._tics.items():
if key not in self._tocs:
continue
diff = (self._tocs.get(key) - tic).microseconds / 1000
yield key, IntegerType(int(diff))
def _metadata(self) -> Dict[str, str]:
return {
"teamslug": self._meta.get("team") or "unknown",
"testsuite": self._meta.get("suite") or "unknown",
"version": self._meta.get("version") or "unknown",
"testcase": self._meta.get("name") or "unknown",
"builtAt": datetime.now().isoformat(),
}
def json(self):
return {
"metadata": self._metadata(),
"results": [
{"key": k, "value": v.val.json()}
for k, v in self._results.items()
if v.typ is ResultCategory.Check
],
"assertions": [
{"key": k, "value": v.val.json()}
for k, v in self._results.items()
if v.typ is ResultCategory.Assert
],
"metrics": [{"key": k, "value": v.json()} for k, v in self._metrics()],
}
def serialize(self) -> bytearray:
from flatbuffers import Builder
import touca._schema as schema
dicts = {
ResultCategory.Check: schema.ResultType.Check,
ResultCategory.Assert: schema.ResultType.Assert,
}
builder = Builder(1024)
metadata = {k: builder.CreateString(v) for k, v in self._metadata().items()}
schema.MetadataStart(builder)
schema.MetadataAddTeamslug(builder, metadata.get("teamslug"))
schema.MetadataAddTestsuite(builder, metadata.get("testsuite"))
schema.MetadataAddVersion(builder, metadata.get("version"))
schema.MetadataAddTestcase(builder, metadata.get("testcase"))
schema.MetadataAddBuiltAt(builder, metadata.get("builtAt"))
fbs_metadata = schema.MetadataEnd(builder)
result_entries = []
for k, v in self._results.items():
fbs_key = Builder.CreateString(builder, k)
fbs_value = v.val.serialize(builder)
schema.ResultStart(builder)
schema.ResultAddKey(builder, fbs_key)
schema.ResultAddValue(builder, fbs_value)
schema.ResultAddTyp(builder, dicts.get(v.typ))
result_entries.append(schema.ResultEnd(builder))
schema.ResultsStartEntriesVector(builder, len(result_entries))
for item in reversed(result_entries):
builder.PrependUOffsetTRelative(item)
fbs_result_entries = builder.EndVector()
schema.ResultsStart(builder)
schema.ResultsAddEntries(builder, fbs_result_entries)
fbs_results = schema.ResultsEnd(builder)
metric_entries = []
for k, v in self._metrics():
fbs_key = Builder.CreateString(builder, k)
fbs_value = v.serialize(builder)
schema.MetricStart(builder)
schema.MetricAddKey(builder, fbs_key)
schema.MetricAddValue(builder, fbs_value)
metric_entries.append(schema.MetricEnd(builder))
schema.MetricsStartEntriesVector(builder, len(metric_entries))
for item in reversed(metric_entries):
builder.PrependUOffsetTRelative(item)
fbs_metric_entries = builder.EndVector()
schema.MetricsStart(builder)
schema.MetricsAddEntries(builder, fbs_metric_entries)
fbs_metrics = schema.MetricsEnd(builder)
schema.MessageStart(builder)
schema.MessageAddMetadata(builder, fbs_metadata)
schema.MessageAddResults(builder, fbs_results)
schema.MessageAddMetrics(builder, fbs_metrics)
fbs_message = schema.MessageEnd(builder)
builder.Finish(fbs_message)
return builder.Output()
| 35.376238 | 88 | 0.612184 |
18670a661be9fe7da48a8d778ea518099efa7865 | 1,040 | rs | Rust | src/core/microfacet/mod.rs | mlunnay/rs_illume | a7e88118d829d24e35673df8a1f49a3b870a36e6 | [
"BSD-3-Clause"
] | 2 | 2019-12-27T19:33:28.000Z | 2021-05-16T03:23:03.000Z | src/core/microfacet/mod.rs | mlunnay/rs_illume | a7e88118d829d24e35673df8a1f49a3b870a36e6 | [
"BSD-3-Clause"
] | null | null | null | src/core/microfacet/mod.rs | mlunnay/rs_illume | a7e88118d829d24e35673df8a1f49a3b870a36e6 | [
"BSD-3-Clause"
] | null | null | null | use super::pbrt::Float;
use super::geometry::{Vector3f, Point2f};
use super::reflection::abs_cos_theta;
use std::fmt;
pub mod beckmann_distribution;
pub use beckmann_distribution::*;
pub mod trowbridge_reitz_distribution;
pub use trowbridge_reitz_distribution::*;
pub mod disney_distribution;
pub use disney_distribution::*;
pub trait MicrofacetDistribution: fmt::Display {
fn get_sample_visible_area(&self) -> bool;
fn d(&self, wh: &Vector3f) -> Float;
fn lambda(&self, w: &Vector3f) -> Float;
fn sample_wh(&self, wo: &Vector3f, u: &Point2f) -> Vector3f;
fn g1(&self, w: &Vector3f) -> Float {
1.0 / (1.0 + self.lambda(w))
}
fn g(&self, wo: &Vector3f, wi: &Vector3f) -> Float {
1.0 / (1.0 + self.lambda(wo) + self.lambda(wi))
}
fn pdf(&self, wo: &Vector3f, wh: &Vector3f) -> Float {
if self.get_sample_visible_area() {
self.d(wh) * self.g1(wo) * wo.dot(wo).abs() / abs_cos_theta(wo)
} else {
self.d(wh) * abs_cos_theta(wh)
}
}
} | 28.108108 | 75 | 0.625 |
578ad3735d30495844d18f1ff66432b259089742 | 207 | sql | SQL | src/db-from-phile-starter/release/0010/0050-org_fn/revert/function/003-build_location.sql | stlbucket/postgraphile-de-extension | 73d4d506249f126630a52d43c3f46b13dc6870cc | [
"MIT"
] | 1 | 2019-02-21T02:08:36.000Z | 2019-02-21T02:08:36.000Z | src/db-from-phile-starter/schema/org_fn/revert/function/build_location.sql | stlbucket/postgraphile-de-extension | 73d4d506249f126630a52d43c3f46b13dc6870cc | [
"MIT"
] | null | null | null | src/db-from-phile-starter/schema/org_fn/revert/function/build_location.sql | stlbucket/postgraphile-de-extension | 73d4d506249f126630a52d43c3f46b13dc6870cc | [
"MIT"
] | null | null | null | -- Revert org:function/build_location from pg
BEGIN;
DROP FUNCTION IF EXISTS org_fn.build_location(
text
,text
,text
,text
,text
,text
,text
,text
,uuid
);
COMMIT;
| 11.5 | 48 | 0.599034 |
e76f2af3561fd9c4cf8f875d87db8fa389157641 | 70 | js | JavaScript | jest.config.js | Gbahdeyboh/booksToScrape-e2e-tests | 339a3254b13b3932825aeac95cd287947cbe117d | [
"MIT"
] | null | null | null | jest.config.js | Gbahdeyboh/booksToScrape-e2e-tests | 339a3254b13b3932825aeac95cd287947cbe117d | [
"MIT"
] | null | null | null | jest.config.js | Gbahdeyboh/booksToScrape-e2e-tests | 339a3254b13b3932825aeac95cd287947cbe117d | [
"MIT"
] | null | null | null | module.exports = {
preset: 'jest-puppeteer',
roots: [ 'specs' ],
};
| 14 | 26 | 0.6 |
c3702f883c1bcebf3b89e60071949e07222ee2c5 | 6,527 | go | Go | restapi/operations/things/weaviate_things_update_responses.go | unicanova/weaviate | 5556b1ba231c1271d4fdf5b0c33104183a89d93d | [
"BSD-3-Clause"
] | null | null | null | restapi/operations/things/weaviate_things_update_responses.go | unicanova/weaviate | 5556b1ba231c1271d4fdf5b0c33104183a89d93d | [
"BSD-3-Clause"
] | null | null | null | restapi/operations/things/weaviate_things_update_responses.go | unicanova/weaviate | 5556b1ba231c1271d4fdf5b0c33104183a89d93d | [
"BSD-3-Clause"
] | 1 | 2017-12-20T10:03:59.000Z | 2017-12-20T10:03:59.000Z | /* _ _
*__ _____ __ ___ ___ __ _| |_ ___
*\ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
* \ V V / __/ (_| |\ V /| | (_| | || __/
* \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
*
* Copyright © 2016 - 2018 Weaviate. All rights reserved.
* LICENSE: https://github.com/creativesoftwarefdn/weaviate/blob/develop/LICENSE.md
* AUTHOR: Bob van Luijt ([email protected])
* See www.creativesoftwarefdn.org for details
* Contact: @CreativeSofwFdn / [email protected]
*/
package things
import (
"net/http"
"github.com/go-openapi/runtime"
"github.com/creativesoftwarefdn/weaviate/models"
)
// WeaviateThingsUpdateAcceptedCode is the HTTP code returned for type WeaviateThingsUpdateAccepted
const WeaviateThingsUpdateAcceptedCode int = 202
/*WeaviateThingsUpdateAccepted Successfully received.
swagger:response weaviateThingsUpdateAccepted
*/
type WeaviateThingsUpdateAccepted struct {
/*
In: Body
*/
Payload *models.ThingGetResponse `json:"body,omitempty"`
}
// NewWeaviateThingsUpdateAccepted creates WeaviateThingsUpdateAccepted with default headers values
func NewWeaviateThingsUpdateAccepted() *WeaviateThingsUpdateAccepted {
return &WeaviateThingsUpdateAccepted{}
}
// WithPayload adds the payload to the weaviate things update accepted response
func (o *WeaviateThingsUpdateAccepted) WithPayload(payload *models.ThingGetResponse) *WeaviateThingsUpdateAccepted {
o.Payload = payload
return o
}
// SetPayload sets the payload to the weaviate things update accepted response
func (o *WeaviateThingsUpdateAccepted) SetPayload(payload *models.ThingGetResponse) {
o.Payload = payload
}
// WriteResponse to the client
func (o *WeaviateThingsUpdateAccepted) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(202)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
// WeaviateThingsUpdateUnauthorizedCode is the HTTP code returned for type WeaviateThingsUpdateUnauthorized
const WeaviateThingsUpdateUnauthorizedCode int = 401
/*WeaviateThingsUpdateUnauthorized Unauthorized or invalid credentials.
swagger:response weaviateThingsUpdateUnauthorized
*/
type WeaviateThingsUpdateUnauthorized struct {
}
// NewWeaviateThingsUpdateUnauthorized creates WeaviateThingsUpdateUnauthorized with default headers values
func NewWeaviateThingsUpdateUnauthorized() *WeaviateThingsUpdateUnauthorized {
return &WeaviateThingsUpdateUnauthorized{}
}
// WriteResponse to the client
func (o *WeaviateThingsUpdateUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(401)
}
// WeaviateThingsUpdateForbiddenCode is the HTTP code returned for type WeaviateThingsUpdateForbidden
const WeaviateThingsUpdateForbiddenCode int = 403
/*WeaviateThingsUpdateForbidden The used API-key has insufficient permissions.
swagger:response weaviateThingsUpdateForbidden
*/
type WeaviateThingsUpdateForbidden struct {
}
// NewWeaviateThingsUpdateForbidden creates WeaviateThingsUpdateForbidden with default headers values
func NewWeaviateThingsUpdateForbidden() *WeaviateThingsUpdateForbidden {
return &WeaviateThingsUpdateForbidden{}
}
// WriteResponse to the client
func (o *WeaviateThingsUpdateForbidden) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(403)
}
// WeaviateThingsUpdateNotFoundCode is the HTTP code returned for type WeaviateThingsUpdateNotFound
const WeaviateThingsUpdateNotFoundCode int = 404
/*WeaviateThingsUpdateNotFound Successful query result but no resource was found.
swagger:response weaviateThingsUpdateNotFound
*/
type WeaviateThingsUpdateNotFound struct {
}
// NewWeaviateThingsUpdateNotFound creates WeaviateThingsUpdateNotFound with default headers values
func NewWeaviateThingsUpdateNotFound() *WeaviateThingsUpdateNotFound {
return &WeaviateThingsUpdateNotFound{}
}
// WriteResponse to the client
func (o *WeaviateThingsUpdateNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(404)
}
// WeaviateThingsUpdateUnprocessableEntityCode is the HTTP code returned for type WeaviateThingsUpdateUnprocessableEntity
const WeaviateThingsUpdateUnprocessableEntityCode int = 422
/*WeaviateThingsUpdateUnprocessableEntity Request body contains well-formed (i.e., syntactically correct), but semantically erroneous. Are you sure the class is defined in the configuration file?
swagger:response weaviateThingsUpdateUnprocessableEntity
*/
type WeaviateThingsUpdateUnprocessableEntity struct {
/*
In: Body
*/
Payload *models.ErrorResponse `json:"body,omitempty"`
}
// NewWeaviateThingsUpdateUnprocessableEntity creates WeaviateThingsUpdateUnprocessableEntity with default headers values
func NewWeaviateThingsUpdateUnprocessableEntity() *WeaviateThingsUpdateUnprocessableEntity {
return &WeaviateThingsUpdateUnprocessableEntity{}
}
// WithPayload adds the payload to the weaviate things update unprocessable entity response
func (o *WeaviateThingsUpdateUnprocessableEntity) WithPayload(payload *models.ErrorResponse) *WeaviateThingsUpdateUnprocessableEntity {
o.Payload = payload
return o
}
// SetPayload sets the payload to the weaviate things update unprocessable entity response
func (o *WeaviateThingsUpdateUnprocessableEntity) SetPayload(payload *models.ErrorResponse) {
o.Payload = payload
}
// WriteResponse to the client
func (o *WeaviateThingsUpdateUnprocessableEntity) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(422)
if o.Payload != nil {
payload := o.Payload
if err := producer.Produce(rw, payload); err != nil {
panic(err) // let the recovery middleware deal with this
}
}
}
// WeaviateThingsUpdateNotImplementedCode is the HTTP code returned for type WeaviateThingsUpdateNotImplemented
const WeaviateThingsUpdateNotImplementedCode int = 501
/*WeaviateThingsUpdateNotImplemented Not (yet) implemented.
swagger:response weaviateThingsUpdateNotImplemented
*/
type WeaviateThingsUpdateNotImplemented struct {
}
// NewWeaviateThingsUpdateNotImplemented creates WeaviateThingsUpdateNotImplemented with default headers values
func NewWeaviateThingsUpdateNotImplemented() *WeaviateThingsUpdateNotImplemented {
return &WeaviateThingsUpdateNotImplemented{}
}
// WriteResponse to the client
func (o *WeaviateThingsUpdateNotImplemented) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
rw.WriteHeader(501)
}
| 33.818653 | 195 | 0.809101 |
abb923953f4b85c0a8fa51b9808ba682d3f709bc | 329 | rb | Ruby | cookbooks/strongswan/metadata.rb | Zimpler/ironfan-pantry | 6f3f42cf93013d5272e71cb04079a5d46a252eb1 | [
"Apache-2.0"
] | 1 | 2015-11-08T07:28:59.000Z | 2015-11-08T07:28:59.000Z | cookbooks/strongswan/metadata.rb | Zimpler/ironfan-pantry | 6f3f42cf93013d5272e71cb04079a5d46a252eb1 | [
"Apache-2.0"
] | 1 | 2016-02-24T13:12:57.000Z | 2016-02-24T14:53:54.000Z | cookbooks/strongswan/metadata.rb | Zimpler/ironfan-pantry | 6f3f42cf93013d5272e71cb04079a5d46a252eb1 | [
"Apache-2.0"
] | null | null | null | maintainer "Jerry Jackson"
maintainer_email "[email protected]"
license "All rights reserved"
description "Installs/Configures strongswan"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version IO.read(File.join(File.dirname(__FILE__), 'VERSION'))
depends 'route53'
| 36.555556 | 72 | 0.726444 |
9c425e18e5138e6b588c00822f6bf829d982e560 | 888 | kt | Kotlin | app/src/main/java/com/recyclerviewbuilder/sample/viewitems/ImageAndContentViewItem.kt | amrreda1995/recyclerview-builder | fe6063b26c22686f128a5ce15980cb2e193fe58a | [
"MIT"
] | 31 | 2019-04-03T19:43:30.000Z | 2021-10-02T20:27:02.000Z | app/src/main/java/com/recyclerviewbuilder/sample/viewitems/ImageAndContentViewItem.kt | amrreda1995/recyclerview-builder | fe6063b26c22686f128a5ce15980cb2e193fe58a | [
"MIT"
] | null | null | null | app/src/main/java/com/recyclerviewbuilder/sample/viewitems/ImageAndContentViewItem.kt | amrreda1995/recyclerview-builder | fe6063b26c22686f128a5ce15980cb2e193fe58a | [
"MIT"
] | 4 | 2019-04-03T19:27:43.000Z | 2019-07-17T19:36:10.000Z | package com.recyclerviewbuilder.sample.viewitems
import android.view.View
import com.recyclerviewbuilder.library.ViewItem
import com.recyclerviewbuilder.library.ViewItemRepresentable
import com.recyclerviewbuilder.sample.R
import com.recyclerviewbuilder.sample.extensions.imageview.ImageViewMode
import com.recyclerviewbuilder.sample.extensions.imageview.load
import com.recyclerviewbuilder.sample.models.ImageAndContent
import kotlinx.android.synthetic.main.item_image_and_content.view.*
class ImageAndContentViewItem(
private val model: ImageAndContent
) : ViewItem(R.layout.item_image_and_content, model) {
override fun bind(itemView: View, viewItemPosition: Int) {
itemView.userName.text = model.user.name
itemView.time.text = model.time
itemView.content.text = model.content
itemView.img.load(model.image, ImageViewMode.CENTER_CROP)
}
} | 40.363636 | 72 | 0.810811 |
0cca1b15bf096080117912090cc7cfaa4cb29eca | 7,940 | py | Python | modules/preprocessing/text/NeMo/nemo_text_processing/text_normalization/ar/taggers/cardinal.py | serkhanekarim/AI | 0a13880ae8e608cd00fa819dc590097abdb7ae6e | [
"Apache-2.0"
] | null | null | null | modules/preprocessing/text/NeMo/nemo_text_processing/text_normalization/ar/taggers/cardinal.py | serkhanekarim/AI | 0a13880ae8e608cd00fa819dc590097abdb7ae6e | [
"Apache-2.0"
] | null | null | null | modules/preprocessing/text/NeMo/nemo_text_processing/text_normalization/ar/taggers/cardinal.py | serkhanekarim/AI | 0a13880ae8e608cd00fa819dc590097abdb7ae6e | [
"Apache-2.0"
] | null | null | null | # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
# Copyright 2015 and onwards Google, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from nemo_text_processing.text_normalization.ar.graph_utils import (
NEMO_ALPHA,
NEMO_DIGIT,
NEMO_NOT_SPACE,
NEMO_SIGMA,
GraphFst,
insert_space,
)
from nemo_text_processing.text_normalization.ar.taggers.date import get_hundreds_graph
from nemo_text_processing.text_normalization.ar.utils import get_abs_path
try:
import pynini
from pynini.lib import pynutil
PYNINI_AVAILABLE = True
except (ModuleNotFoundError, ImportError):
PYNINI_AVAILABLE = False
class CardinalFst(GraphFst):
"""
Finite state transducer for classifying cardinals, e.g.
-23 -> cardinal { negative: "true" integer: "twenty three" } }
Args:
deterministic: if True will provide a single transduction option,
for False multiple transduction are generated (used for audio-based normalization)
"""
def __init__(self, deterministic: bool = True):
super().__init__(name="cardinal", kind="classify", deterministic=deterministic)
# TODO repalce to have "oh" as a default for "0"
graph = pynini.Far(get_abs_path("data/numbers/cardinal_number_name.far")).get_fst()
self.graph_hundred_component_at_least_one_none_zero_digit = (
pynini.closure(NEMO_DIGIT, 2, 3) | pynini.difference(NEMO_DIGIT, pynini.accep("0"))
) @ graph
self.graph = (
pynini.closure(NEMO_DIGIT, 1, 3)
+ pynini.closure(pynini.closure(pynutil.delete(","), 0, 1) + NEMO_DIGIT + NEMO_DIGIT + NEMO_DIGIT)
) @ graph
graph_digit = pynini.string_file(get_abs_path("data/numbers/digit.tsv"))
graph_zero = pynini.string_file(get_abs_path("data/numbers/zero.tsv"))
single_digits_graph = pynini.invert(graph_digit | graph_zero)
self.single_digits_graph = single_digits_graph + pynini.closure(insert_space + single_digits_graph)
if not deterministic:
# for a single token allow only the same normalization
# "007" -> {"oh oh seven", "zero zero seven"} not {"oh zero seven"}
single_digits_graph_zero = pynini.invert(graph_digit | graph_zero)
single_digits_graph_oh = pynini.invert(graph_digit) | pynini.cross("0", "oh")
self.single_digits_graph = single_digits_graph_zero + pynini.closure(
insert_space + single_digits_graph_zero
)
self.single_digits_graph |= single_digits_graph_oh + pynini.closure(insert_space + single_digits_graph_oh)
single_digits_graph_with_commas = pynini.closure(
self.single_digits_graph + insert_space, 1, 3
) + pynini.closure(
pynutil.delete(",")
+ single_digits_graph
+ insert_space
+ single_digits_graph
+ insert_space
+ single_digits_graph,
1,
)
self.range_graph = pynutil.insert("from ") + self.graph + pynini.cross("-", " to ") + self.graph
self.range_graph |= self.graph + (pynini.cross("x", " by ") | pynini.cross(" x ", " by ")) + self.graph
self.range_graph |= (
pynutil.insert("from ") + get_hundreds_graph() + pynini.cross("-", " to ") + get_hundreds_graph()
)
self.range_graph = self.range_graph.optimize()
serial_graph = self.get_serial_graph()
optional_minus_graph = pynini.closure(pynutil.insert("negative: ") + pynini.cross("-", "\"true\" "), 0, 1)
if deterministic:
long_numbers = pynini.compose(NEMO_DIGIT ** (5, ...), self.single_digits_graph).optimize()
final_graph = self.graph | serial_graph | pynutil.add_weight(long_numbers, -0.001)
cardinal_with_leading_zeros = pynini.compose(
pynini.accep("0") + pynini.closure(NEMO_DIGIT), self.single_digits_graph
)
final_graph |= cardinal_with_leading_zeros
else:
leading_zeros = pynini.compose(pynini.closure(pynini.accep("0"), 1), self.single_digits_graph)
cardinal_with_leading_zeros = (
leading_zeros + pynutil.insert(" ") + pynini.compose(pynini.closure(NEMO_DIGIT), self.graph)
)
final_graph = (
self.graph
| serial_graph
| self.range_graph
| self.single_digits_graph
| get_hundreds_graph()
| pynutil.add_weight(single_digits_graph_with_commas, 0.001)
| cardinal_with_leading_zeros
)
final_graph = optional_minus_graph + pynutil.insert("integer: \"") + final_graph + pynutil.insert("\"")
final_graph = self.add_tokens(final_graph)
self.fst = final_graph.optimize()
def get_serial_graph(self):
"""
Finite state transducer for classifying serial (handles only cases without delimiters,
values with delimiters are handled by default).
The serial is a combination of digits, letters and dashes, e.g.:
c325b -> tokens { cardinal { integer: "c three two five b" } }
"""
num_graph = self.single_digits_graph
if not self.deterministic:
num_graph |= self.graph
# add space between letter and digit
graph_with_space = pynini.compose(
pynini.cdrewrite(pynutil.insert(" "), NEMO_ALPHA, NEMO_DIGIT, NEMO_SIGMA),
pynini.cdrewrite(pynutil.insert(" "), NEMO_DIGIT, NEMO_ALPHA, NEMO_SIGMA),
)
# make sure at least one digit and letter is present
not_space = pynini.closure(NEMO_NOT_SPACE)
graph_with_space = pynini.compose(
(not_space + NEMO_ALPHA + not_space + NEMO_DIGIT + not_space)
| (not_space + NEMO_DIGIT + not_space + NEMO_ALPHA + not_space),
graph_with_space,
)
keep_space = pynini.accep(" ")
serial_graph = pynini.compose(
graph_with_space,
pynini.closure(pynini.closure(NEMO_ALPHA, 1) + keep_space, 1)
+ num_graph
+ pynini.closure(keep_space + pynini.closure(NEMO_ALPHA) + pynini.closure(keep_space + num_graph, 0, 1)),
)
serial_graph |= pynini.compose(
graph_with_space,
num_graph
+ keep_space
+ pynini.closure(NEMO_ALPHA, 1)
+ pynini.closure(keep_space + num_graph + pynini.closure(keep_space + pynini.closure(NEMO_ALPHA), 0, 1)),
)
# serial graph with delimiter
delimiter = pynini.accep("-") | pynini.accep("/")
alphas = pynini.closure(NEMO_ALPHA, 1)
letter_num = alphas + delimiter + num_graph
num_letter = pynini.closure(num_graph + delimiter, 1) + alphas
next_alpha_or_num = pynini.closure(delimiter + (alphas | num_graph))
next_alpha_or_num |= pynini.closure(delimiter + num_graph + pynutil.insert(" ") + alphas)
serial_graph |= letter_num + next_alpha_or_num
serial_graph |= num_letter + next_alpha_or_num
# numbers only with 2+ delimiters
serial_graph |= (
num_graph + delimiter + num_graph + delimiter + num_graph + pynini.closure(delimiter + num_graph)
)
return pynutil.add_weight(serial_graph, 2)
| 43.387978 | 118 | 0.639924 |
7002ebc7d0bab036e9576ed73ad6d657a8873de4 | 503 | go | Go | api/config/config.go | influx6/go-spacemesh | 42befb54d1b777e80ca0316ba923c503f483f2f6 | [
"MIT"
] | null | null | null | api/config/config.go | influx6/go-spacemesh | 42befb54d1b777e80ca0316ba923c503f483f2f6 | [
"MIT"
] | null | null | null | api/config/config.go | influx6/go-spacemesh | 42befb54d1b777e80ca0316ba923c503f483f2f6 | [
"MIT"
] | null | null | null | package config
// ConfigValues provide default config values.
var ConfigValues = Config{
StartGrpcServer: false, // note: all bool flags default to false so don't set one of these to true here
GrpcServerPort: 9091,
StartJSONServer: false,
JSONServerPort: 9090,
}
func init() {
// todo: update default config params based on runtime env here
}
// Config defines the api config params.
type Config struct {
StartGrpcServer bool
GrpcServerPort int
StartJSONServer bool
JSONServerPort int
}
| 22.863636 | 104 | 0.763419 |
198f09ec70a864f74973126efad673b62438636e | 2,138 | lua | Lua | gateway/src/apicast/loader.lua | SpillChek2/apicast | 55011497b6a2badd1ca1097c4d5221a842d80faf | [
"Apache-2.0"
] | null | null | null | gateway/src/apicast/loader.lua | SpillChek2/apicast | 55011497b6a2badd1ca1097c4d5221a842d80faf | [
"Apache-2.0"
] | null | null | null | gateway/src/apicast/loader.lua | SpillChek2/apicast | 55011497b6a2badd1ca1097c4d5221a842d80faf | [
"Apache-2.0"
] | 1 | 2018-04-09T08:45:39.000Z | 2018-04-09T08:45:39.000Z | --- APIcast source loader
-- Loading this module will add a new source code loaders to package.searchers.
-- The searcher is going to print deprecation warnings when apicast source is loaded
-- through old or non prefixed paths.
-- We can rename files and set up an alias here so we don't break customer's code and
-- print a deprecation warning.
-- Another searcher is going to look for policies with `.policy` suffix.
-- Policies can be packaged as `some_name/policy.lua` so the directory also contains the JSON spec.
local loadfile = loadfile
local sub = string.sub
local policy_loader = require 'apicast.policy_loader'
local map = {
['apicast'] = 'apicast.policy.apicast'
}
local function loader(name, path)
local file, err = package.searchpath(name, path)
if file then
file, err = loadfile(file)
end
return file, err
end
--- Searcher has to return the loader or an error message.
local function policy_searcher(name)
if sub(name, 1, 15) == 'apicast.policy.' then
local mod = policy_loader:pcall(sub(name, 16), 'builtin')
if mod then return function () return mod end end
end
end
local function prefix_loader(name, path)
local prefixed = 'apicast.' .. name
local found, err = loader(prefixed, path)
if not found then
found = policy_searcher(prefixed)
end
if found then
ngx.log(ngx.STDERR, 'DEPRECATION: when loading apicast code use correct prefix: require("', prefixed, '")')
end
return found or err
end
local function rename_loader(name, path)
local new = map[name]
local found, err = policy_searcher(new)
if not found then
found = loader(new, path)
end
if found then
ngx.log(ngx.WARN, 'DEPRECATION: file renamed - change: require("', name, '")' ,' to: require("', new, '")')
end
return found or err
end
local function apicast_namespace(name)
local path = package.path
if not package.searchpath(name, path) then
if map[name] then
return rename_loader(name, path)
else
return prefix_loader(name, path)
end
end
end
table.insert(package.searchers, policy_searcher)
table.insert(package.searchers, apicast_namespace)
| 26.073171 | 111 | 0.717025 |
38a1abd9cc79f7651677d47b64e9e10a892b689e | 1,343 | h | C | iv/thread_posix.h | ste72phen/iv | 64c3a9c7c517063f29d90d449180ea8f6f4d946f | [
"MIT",
"BSD-2-Clause",
"BSD-3-Clause"
] | 248 | 2015-01-06T00:05:11.000Z | 2022-03-03T23:33:32.000Z | iv/thread_posix.h | ste72phen/iv | 64c3a9c7c517063f29d90d449180ea8f6f4d946f | [
"MIT",
"BSD-2-Clause",
"BSD-3-Clause"
] | 3 | 2015-01-10T09:37:33.000Z | 2018-08-17T14:28:22.000Z | iv/thread_posix.h | mmalinin/iv | e73342707510436254a4120ae1f9ff19a2b88083 | [
"MIT",
"BSD-2-Clause",
"BSD-3-Clause"
] | 32 | 2015-07-19T13:32:12.000Z | 2022-03-17T19:52:45.000Z | #ifndef IV_THREAD_POSIX_H_
#define IV_THREAD_POSIX_H_
#include <cerrno>
#include <cassert>
#include <cstdlib>
#include <pthread.h>
#include <unistd.h>
#include <sched.h>
#include <iv/noncopyable.h>
#include <iv/ignore_unused_variable_warning.h>
namespace iv {
namespace core {
namespace thread {
class PosixMutex : private Noncopyable<> {
public:
PosixMutex() {
pthread_mutexattr_t attrs;
int result = pthread_mutexattr_init(&attrs);
assert(result == 0);
result = pthread_mutexattr_settype(&attrs, PTHREAD_MUTEX_RECURSIVE);
assert(result == 0);
result = pthread_mutex_init(&mutex_, &attrs);
assert(result == 0);
result = pthread_mutexattr_destroy(&attrs);
assert(result == 0);
ignore_unused_variable_warning(result);
}
~PosixMutex() {
pthread_mutex_destroy(&mutex_);
}
int Lock() {
const int res = pthread_mutex_lock(&mutex_);
return res;
}
int Unlock() {
const int res = pthread_mutex_unlock(&mutex_);
return res;
}
bool TryLock() {
const int res = pthread_mutex_trylock(&mutex_);
if (res == EBUSY) {
return false;
}
assert(res == 0);
return true;
}
private:
pthread_mutex_t mutex_;
};
typedef PosixMutex Mutex;
inline void YieldCPU() {
sched_yield();
}
} } } // namespace iv::core::thread
#endif // IV_THREAD_POSIX_H_
| 20.661538 | 72 | 0.680566 |
55372283d48c96097220471dec816c51f006191d | 781 | asm | Assembly | Universe/Sun/SunPosVars.asm | ped7g/EliteNext | 6e930f9b9924b295d7281ee6acb879600d7e597f | [
"Unlicense"
] | null | null | null | Universe/Sun/SunPosVars.asm | ped7g/EliteNext | 6e930f9b9924b295d7281ee6acb879600d7e597f | [
"Unlicense"
] | null | null | null | Universe/Sun/SunPosVars.asm | ped7g/EliteNext | 6e930f9b9924b295d7281ee6acb879600d7e597f | [
"Unlicense"
] | null | null | null | ;-Camera Position of Ship----------------------------------------------------------------------------------------------------------
SBnKxlo DB 0 ; INWK+0
SBnKxhi DB 0 ; there are hi medium low as some times these are 24 bit
SBnKxsgn DB 0 ; INWK+2
SBnKylo DB 0 ; INWK+3 \ ylo
SBnKyhi DB 0 ; INWK+4 \ yHi
SBnKysgn DB 0 ; INWK +5
SBnKzlo DB 0 ; INWK +6
SBnKzhi DB 0 ; INWK +7
SBnKzsgn DB 0 ; INWK +8
| 71 | 131 | 0.258643 |
1c42bd2e6e01a67af82ee237e9cfdff27d4d7f81 | 966 | css | CSS | crypto-price-watcher/style.css | pavankalyan-codes/Vanilla-Js-Apps | cf9c67a42bc59570483f3520db716b1f3da81325 | [
"MIT"
] | null | null | null | crypto-price-watcher/style.css | pavankalyan-codes/Vanilla-Js-Apps | cf9c67a42bc59570483f3520db716b1f3da81325 | [
"MIT"
] | null | null | null | crypto-price-watcher/style.css | pavankalyan-codes/Vanilla-Js-Apps | cf9c67a42bc59570483f3520db716b1f3da81325 | [
"MIT"
] | null | null | null | body {
margin: 0;
background: black;
font-family: "Overpass", sans-serif;
}
.main {
padding: 20px;
box-sizing: border-box;
height: 100%;
}
.cards {
height: 600px;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.card {
height: 200px;
width: 300px;
border-radius: 7px;
background: white;
}
.icon {
width: 100px;
display: flex;
align-self: center;
}
img {
width: 100%;
}
.live-price {
text-align: center;
font-size: 40px;
font-weight: bolder;
}
#btc-price,
#eth-price,
#doge-price,
#xrp-price {
display: none;
}
.name {
text-align: center;
font-size: 20px;
}
.card-content {
display: flex;
flex-direction: column;
justify-content: space-evenly;
height: 100%;
}
@media only screen and (max-width: 400px) {
.cards {
height: 900px;
}
}
.spinner-border {
margin: auto;
} | 13.416667 | 43 | 0.580745 |
6b56d11ab3d0961be648bb19594af6380329d5d6 | 167 | h | C | qeo-c-import/cmock/src/examples/src/TemperatureCalculator.h | qeo/qeo-core | 909c1a50d3bdef9a37bf574bfaa6fddd39184ed1 | [
"curl"
] | 18 | 2015-01-11T17:03:58.000Z | 2020-10-30T20:23:26.000Z | dds/qeo-c-import/cmock/src/examples/src/TemperatureCalculator.h | ros2/tinq-core | e9cca1b1e433495616568ae6ae903322832f7b3b | [
"curl"
] | 2 | 2015-07-30T02:55:03.000Z | 2016-07-13T10:42:46.000Z | dds/qeo-c-import/cmock/src/examples/src/TemperatureCalculator.h | ros2/tinq-core | e9cca1b1e433495616568ae6ae903322832f7b3b | [
"curl"
] | 9 | 2015-06-04T10:41:21.000Z | 2021-01-09T10:32:23.000Z | #ifndef _TEMPERATURECALCULATOR_H
#define _TEMPERATURECALCULATOR_H
float TemperatureCalculator_Calculate(uint16 millivolts);
#endif // _TEMPERATURECALCULATOR_H
| 23.857143 | 58 | 0.844311 |
85994e92ff70a6b4793e51514870e7c93fa16674 | 981 | js | JavaScript | app.js | seungho/simple_node_app | dee6b38a5271e922e56d94cb4f4024479d7320aa | [
"MIT"
] | null | null | null | app.js | seungho/simple_node_app | dee6b38a5271e922e56d94cb4f4024479d7320aa | [
"MIT"
] | null | null | null | app.js | seungho/simple_node_app | dee6b38a5271e922e56d94cb4f4024479d7320aa | [
"MIT"
] | null | null | null | 'use strict';
let express = require('express');
let bodyParser = require('body-parser');
let methodOverride = require('method-override');
/** global variables **/
global.rootdir = __dirname;
global.logger = require('./routes/logger/logger').logger('./logs/'+workerId+'.log');
/** DB init **/
/** i18n **/
let app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(methodOverride());
let index = require('./routes/index');
app.all( '*', function( req, res, next ){
logger.info('ip: ', ( req.headers[ 'x-forwarded-for' ] ) ? ( req.headers[ 'x-forwarded-for' ] ) : req.ip);
next();
});
app.use('/', index );
app.use(function (req, res) {
res.status(404);
logger.info('404 Warning. URL: ' + req.url);
// Respond with json
// if (req.accepts('json')) {
// return res.json({ error: 'Not found!' });
// }
// Default to plain-text. send()
res.type('txt').send('Error: Not found!');
});
module.exports = app;
| 25.153846 | 107 | 0.620795 |
93c2155ce707d4318d77285854fe16dd38863001 | 1,498 | rs | Rust | surfman/src/platform/macos/cgl/device.rs | iamralpht/surfman | 625c4ffe12c0422980424b98594942eed3b76433 | [
"Apache-2.0",
"MIT"
] | 1 | 2020-05-21T09:35:07.000Z | 2020-05-21T09:35:07.000Z | surfman/src/platform/macos/cgl/device.rs | iamralpht/surfman | 625c4ffe12c0422980424b98594942eed3b76433 | [
"Apache-2.0",
"MIT"
] | null | null | null | surfman/src/platform/macos/cgl/device.rs | iamralpht/surfman | 625c4ffe12c0422980424b98594942eed3b76433 | [
"Apache-2.0",
"MIT"
] | null | null | null | // surfman/surfman/src/platform/macos/cgl/device.rs
//
//! A handle to the device. (This is a no-op, because handles are implicit in Apple's Core OpenGL.)
use crate::GLApi;
use crate::platform::macos::system::device::{Adapter as SystemAdapter, Device as SystemDevice};
use super::connection::Connection;
pub use crate::platform::macos::system::device::NativeDevice;
/// Represents a hardware display adapter that can be used for rendering (including the CPU).
///
/// Adapters can be sent between threads. To render with an adapter, open a thread-local `Device`.
#[derive(Clone, Debug)]
pub struct Adapter(pub(crate) SystemAdapter);
/// A thread-local handle to a device.
///
/// Devices contain most of the relevant surface management methods.
#[derive(Clone)]
pub struct Device(pub(crate) SystemDevice);
impl Device {
/// Returns the native device corresponding to this device.
#[inline]
pub fn native_device(&self) -> NativeDevice {
self.0.native_device()
}
/// Returns the display server connection that this device was created with.
#[inline]
pub fn connection(&self) -> Connection {
Connection(self.0.connection())
}
/// Returns the adapter that this device was created with.
#[inline]
pub fn adapter(&self) -> Adapter {
Adapter(self.0.adapter())
}
/// Returns the OpenGL API flavor that this device supports (OpenGL or OpenGL ES).
#[inline]
pub fn gl_api(&self) -> GLApi {
GLApi::GL
}
}
| 31.208333 | 99 | 0.687583 |
12b559a282821992582017ab1421eb3d7a7a056e | 680 | h | C | ios-rongimdemo/RCDCreateGroupViewController.h | guanbo123456/sealtalk-ios | c86cc683f41f8eedd7d371057df5e01f3b031634 | [
"MIT"
] | null | null | null | ios-rongimdemo/RCDCreateGroupViewController.h | guanbo123456/sealtalk-ios | c86cc683f41f8eedd7d371057df5e01f3b031634 | [
"MIT"
] | null | null | null | ios-rongimdemo/RCDCreateGroupViewController.h | guanbo123456/sealtalk-ios | c86cc683f41f8eedd7d371057df5e01f3b031634 | [
"MIT"
] | null | null | null | //
// RCDCreateGroupViewController.h
// RCloudMessage
//
// Created by Jue on 16/3/21.
// Copyright © 2016年 RongCloud. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface RCDCreateGroupViewController
: UIViewController <UITextFieldDelegate, UIActionSheetDelegate,
UIImagePickerControllerDelegate,
UINavigationControllerDelegate>
@property(weak, nonatomic) IBOutlet UIImageView *GroupPortrait;
@property(weak, nonatomic) IBOutlet UITextField *GroupName;
@property(weak, nonatomic) IBOutlet UIButton *DoneBtn;
@property(strong, nonatomic) NSMutableArray *GroupMemberIdList;
- (IBAction)ClickDoneBtn:(id)sender;
@end
| 30.909091 | 67 | 0.739706 |
b17c37dd84ab8a18dcf8427b572899ff1b52f923 | 261 | h | C | src/test/OpenEXRTest/testDeepScanLineHuge.h | remia/openexr | 566087f13259f4429d55125d1001b2696ac2bfc3 | [
"BSD-3-Clause"
] | 587 | 2015-01-04T09:56:19.000Z | 2019-11-21T13:23:33.000Z | third_party/openexr-672c77d7c923402f549371e08b39ece4552cbb85/src/test/OpenEXRTest/testDeepScanLineHuge.h | Vertexwahn/FlatlandRT | 37d09fde38b25eff5f802200b43628efbd1e3198 | [
"Apache-2.0"
] | 360 | 2015-01-04T10:55:17.000Z | 2019-11-21T16:37:22.000Z | third_party/openexr-672c77d7c923402f549371e08b39ece4552cbb85/src/test/OpenEXRTest/testDeepScanLineHuge.h | Vertexwahn/FlatlandRT | 37d09fde38b25eff5f802200b43628efbd1e3198 | [
"Apache-2.0"
] | 297 | 2015-01-11T12:06:42.000Z | 2019-11-19T21:59:57.000Z | //
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) Contributors to the OpenEXR Project.
//
#ifndef TESTDEEPSCANLINEHUGE_H_
#define TESTDEEPSCANLINEHUGE_H_
void testDeepScanLineHuge (const std::string& tempDir);
#endif /* TESTDEEPSCANLINEHUGE_H_ */
| 21.75 | 55 | 0.777778 |
6b6d006038c28594495fe411dc257e51fd8f578a | 2,084 | h | C | release/src-rt/linux/linux-2.6/include/video/tx3912.h | ghsecuritylab/tomato_egg | 50473a46347f4631eb4878a0f47955cc64c87293 | [
"FSFAP"
] | 278 | 2015-11-03T03:01:20.000Z | 2022-01-20T18:21:05.000Z | release/src-rt/linux/linux-2.6/include/video/tx3912.h | ghsecuritylab/tomato_egg | 50473a46347f4631eb4878a0f47955cc64c87293 | [
"FSFAP"
] | 374 | 2015-11-03T12:37:22.000Z | 2021-12-17T14:18:08.000Z | release/src-rt/linux/linux-2.6/include/video/tx3912.h | ghsecuritylab/tomato_egg | 50473a46347f4631eb4878a0f47955cc64c87293 | [
"FSFAP"
] | 96 | 2015-11-22T07:47:26.000Z | 2022-01-20T19:52:19.000Z | /*
* linux/include/video/tx3912.h
*
* Copyright (C) 2001 Steven Hill ([email protected])
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of this archive for
* more details.
*
* Includes for TMPR3912/05 and PR31700 LCD controller registers
*/
#include <asm/tx3912.h>
#define VidCtrl1 REG_AT(0x028)
#define VidCtrl2 REG_AT(0x02C)
#define VidCtrl3 REG_AT(0x030)
#define VidCtrl4 REG_AT(0x034)
#define VidCtrl5 REG_AT(0x038)
#define VidCtrl6 REG_AT(0x03C)
#define VidCtrl7 REG_AT(0x040)
#define VidCtrl8 REG_AT(0x044)
#define VidCtrl9 REG_AT(0x048)
#define VidCtrl10 REG_AT(0x04C)
#define VidCtrl11 REG_AT(0x050)
#define VidCtrl12 REG_AT(0x054)
#define VidCtrl13 REG_AT(0x058)
#define VidCtrl14 REG_AT(0x05C)
/* Video Control 1 Register */
#define LINECNT 0xffc00000
#define LINECNT_SHIFT 22
#define LOADDLY BIT(21)
#define BAUDVAL (BIT(20) | BIT(19) | BIT(18) | BIT(17) | BIT(16))
#define BAUDVAL_SHIFT 16
#define VIDDONEVAL (BIT(15) | BIT(14) | BIT(13) | BIT(12) | BIT(11) | BIT(10) | BIT(9))
#define VIDDONEVAL_SHIFT 9
#define ENFREEZEFRAME BIT(8)
#define TX3912_VIDCTRL1_BITSEL_MASK 0x000000c0
#define TX3912_VIDCTRL1_2BIT_GRAY 0x00000040
#define TX3912_VIDCTRL1_4BIT_GRAY 0x00000080
#define TX3912_VIDCTRL1_8BIT_COLOR 0x000000c0
#define BITSEL_SHIFT 6
#define DISPSPLIT BIT(5)
#define DISP8 BIT(4)
#define DFMODE BIT(3)
#define INVVID BIT(2)
#define DISPON BIT(1)
#define ENVID BIT(0)
/* Video Control 2 Register */
#define VIDRATE_MASK 0xffc00000
#define VIDRATE_SHIFT 22
#define HORZVAL_MASK 0x001ff000
#define HORZVAL_SHIFT 12
#define LINEVAL_MASK 0x000001ff
/* Video Control 3 Register */
#define TX3912_VIDCTRL3_VIDBANK_MASK 0xfff00000
#define TX3912_VIDCTRL3_VIDBASEHI_MASK 0x000ffff0
/* Video Control 4 Register */
#define TX3912_VIDCTRL4_VIDBASELO_MASK 0x000ffff0
| 33.079365 | 92 | 0.706334 |
85cb68d2f275c7ab63531b3fa937fa3e509ed2a7 | 1,258 | c | C | sdk/openrtos/boot/fa626/lcd_clear.c | doyaGu/C0501Q_HWJL01 | 07a71328bd9038453cbb1cf9c276a3dd1e416d63 | [
"MIT"
] | 1 | 2021-10-09T08:05:50.000Z | 2021-10-09T08:05:50.000Z | sdk/openrtos/boot/fa626/lcd_clear.c | doyaGu/C0501Q_HWJL01 | 07a71328bd9038453cbb1cf9c276a3dd1e416d63 | [
"MIT"
] | null | null | null | sdk/openrtos/boot/fa626/lcd_clear.c | doyaGu/C0501Q_HWJL01 | 07a71328bd9038453cbb1cf9c276a3dd1e416d63 | [
"MIT"
] | null | null | null | #include "ite/ith.h"
#define REMAP_ADDR 0x80000000
// _start is default function name of entry point.
void _start(void)
{
uint32_t* ptr;
uint32_t size;
uint32_t color, i;
asm volatile("mcr p15, 0, %0, c7, c14, 0" : : "r"(0)); // clean and invalidate D-Cache all
asm volatile("mcr p15, 0, %0, c7, c5, 0" : : "r"(0)); // invalidate I-Cache all
ptr = (uint32_t*)(ithLcdGetBaseAddrA() + REMAP_ADDR);
size = ithLcdGetPitch() * ithLcdGetHeight();
#if CFG_LCD_BPP == 2
color = ITH_RGB565((CFG_LCD_BOOT_BGCOLOR >> 16) & 0xFF, (CFG_LCD_BOOT_BGCOLOR >> 8) & 0xFF, CFG_LCD_BOOT_BGCOLOR & 0xFF);
color |= color << 16;
#elif CFG_LCD_BPP == 4
color = CFG_LCD_BOOT_BGCOLOR;
#elif CFG_LCD_BPP == 0
#error "0 LCD BPP"
#else
#error "Unknown LCD BPP"
#endif
for (i = 0; i < size / (sizeof(uint32_t)*8); i++)
{
*ptr++ = color;
*ptr++ = color;
*ptr++ = color;
*ptr++ = color;
*ptr++ = color;
*ptr++ = color;
*ptr++ = color;
*ptr++ = color;
// FIXME: workaround for IT9850
#if (CFG_CHIP_FAMILY == 9850)
{
asm volatile("mcr p15, 0, %0, c7, c10, 4" : : "r"(0)); // sync (drain write buffer)
}
#endif
}
}
| 26.208333 | 125 | 0.556439 |
0cc14f945ff11b1ec78d14d582d03623e82355fd | 4,657 | py | Python | tools/multiscale_shape.py | marvin-eisenberger/hamiltonian-interpolation | d18c2f401feffc672998c5fa1d50c1de03dba902 | [
"MIT"
] | 5 | 2021-01-05T23:16:55.000Z | 2021-07-23T12:26:06.000Z | tools/multiscale_shape.py | marvin-eisenberger/hamiltonian-interpolation | d18c2f401feffc672998c5fa1d50c1de03dba902 | [
"MIT"
] | null | null | null | tools/multiscale_shape.py | marvin-eisenberger/hamiltonian-interpolation | d18c2f401feffc672998c5fa1d50c1de03dba902 | [
"MIT"
] | 1 | 2021-02-22T08:31:05.000Z | 2021-02-22T08:31:05.000Z | import torch
from shape_utils import Shape, load_shape_pair, scatter_shape_pair
from torch_geometric.nn import knn
from param import *
from arap_potential import arap_vert
def load_multiscale_shapes(folder_path, file_name, scales, offset=0.5*torch.ones([3], device=device, dtype=torch.float32)):
"""Like 'load_shape_pair' but for shapes with different resolutions"""
vert_x_array = []
triv_x_array = []
vert_y_array = []
triv_y_array = []
for i_scale in range(len(scales)):
file_load = folder_path + "sub_" + str(scales[i_scale]) + "/" + file_name
shape_x, shape_y = load_shape_pair(file_load, offset)
vert_x_array.append(shape_x.vert)
vert_y_array.append(shape_y.vert)
triv_x_array.append(shape_x.triv)
triv_y_array.append(shape_y.triv)
shape_x = MultiscaleShape(vert_x_array, triv_x_array)
shape_y = MultiscaleShape(vert_y_array, triv_y_array)
return shape_x, shape_y
class MultiscaleShape(Shape):
"""Class for shapes with multiple resolutions.
Attributes beyond the base class 'Shape' are:
vert_array: List of vertices with different resolutions
triv_array: List of triangles with different resolutions
scale_idx: The index describing the current resolution --
The current vertices are vert_array[scale_idx]
ass_[array/vecs/weights]: attributes needed to apply an interpolation
on scale 'scale_idx' to the next resolution '(scale_idx+1)'
"""
def __init__(self, vert_array, triv_array):
super().__init__(vert_array[0], triv_array[0])
self.vert_array = vert_array
self.triv_array = triv_array
self.scale_idx = 0
self.scale_idx_len = len(vert_array)
self.ass_array = None
self.ass_vecs = None
self.ass_weights = None
self.init_upscale()
def set_scale_idx(self, scale_idx):
assert scale_idx >= 0 and scale_idx < self.scale_idx_len, "new index out of bounds"
self.vert_array[self.scale_idx] = self.vert
self.scale_idx = scale_idx
self.vert = self.vert_array[scale_idx]
self.triv = self.triv_array[scale_idx]
self.samples = list(range(self.vert.shape[0]))
self.neigh = None
def increase_scale_idx(self):
self.set_scale_idx(self.scale_idx+1)
def next_resolution(self):
return self.vert_array[self.scale_idx+1].shape
def init_upscale(self, num_knn=3):
self.ass_array = []
self.ass_vecs = []
self.ass_weights = []
for idx in range(self.scale_idx_len-1):
vert_i = self.vert_array[idx].to(device_cpu)
vert_ip1 = self.vert_array[idx+1].to(device_cpu)
ass_curr = knn(vert_i, vert_ip1, num_knn)
ass_curr = ass_curr[1, :].view(-1, num_knn)
self.ass_array.append(ass_curr.to(device)) #[n_vert_tp1, num_knn]
vec_curr = vert_ip1.unsqueeze(1) - vert_i[ass_curr, :]
self.ass_vecs.append(vec_curr.to(device)) #[n_vert_tp1, num_knn, 3]
weights_curr = 1/(torch.norm(vec_curr, dim=2, keepdim=True)+1e-5)
weights_curr = weights_curr / torch.sum(weights_curr, dim=1, keepdim=True)
self.ass_weights.append(weights_curr.to(device)) #[n_vert_tp1, num_knn, 1]
def apply_upsampling(self, vert_t):
R = arap_vert(vert_t, self.vert, self.get_neigh()) #[n_vert_tp1, 3, 3]
ass_curr = self.ass_array[self.scale_idx]
vec_curr = self.ass_vecs[self.scale_idx]
weights_curr = self.ass_weights[self.scale_idx]
vert_tp1 = vert_t[ass_curr, :] + torch.matmul(R[ass_curr], vec_curr.unsqueeze(3)).squeeze() #[n_vert_tp1, num_knn, 3]
vert_tp1 = torch.sum(weights_curr * vert_tp1, dim=1)
return vert_tp1
def rotate(self, R):
for i in range(self.scale_idx_len):
self.vert_array[i] = torch.mm(self.vert_array[i], R.transpose(0, 1))
self.vert = self.vert_array[self.scale_idx]
self.init_upscale()
def to_box(self, shape_y):
scale_idx = self.scale_idx
for i in range(self.scale_idx_len):
self.set_scale_idx(i)
shape_y.set_scale_idx(i)
super().to_box(shape_y)
self.set_scale_idx(scale_idx)
shape_y.set_scale_idx(scale_idx)
self.init_upscale()
def scale(self, factor, shift=True):
scale_idx = self.scale_idx
for i in range(self.scale_idx_len):
self.set_scale_idx(i)
super().scale(factor, shift)
self.set_scale_idx(scale_idx)
self.init_upscale()
if __name__ == "__main__":
print("main of multiscale_shape.py")
| 33.503597 | 126 | 0.665235 |
f4c0d7ab72cde97c25b600b74d169de1c17e5b30 | 412 | asm | Assembly | libsrc/target/tvc/tvc_vmode.asm | dikdom/z88dk | 40c55771062b0ea9bb2f0d5b73e2f754fc12b6b0 | [
"ClArtistic"
] | null | null | null | libsrc/target/tvc/tvc_vmode.asm | dikdom/z88dk | 40c55771062b0ea9bb2f0d5b73e2f754fc12b6b0 | [
"ClArtistic"
] | 2 | 2022-03-20T22:17:35.000Z | 2022-03-24T16:10:00.000Z | libsrc/target/tvc/tvc_vmode.asm | jorgegv/z88dk | 127130cf11f9ff268ba53e308138b12d2b9be90a | [
"ClArtistic"
] | null | null | null | ; Videoton TV Computer C stub
; Sandor Vass - 2019
;
; Set video mode
;
SECTION code_clib
PUBLIC tvc_vmode
INCLUDE "target/tvc/def/tvc.def"
;
; Entry: 0, 1, 2 - 2c, 4c, 16c mode
;
.tvc_vmode
._tvc_vmode
ld hl,2
add hl,sp
ld c,(hl)
rst $30
defb VMODE ; Video mode. 0, 1, 2 -> 2color, 4color, 16 color mode
ld l,c
ld h,0
ret
| 15.846154 | 74 | 0.533981 |
f05bdaed59cf5073cab62db01710a16ba5ff7771 | 7,597 | py | Python | app/views.py | PaulMurrayCbr/GameNight | 838c19dda765027abbe8e12e331268b01cb859c2 | [
"Unlicense"
] | null | null | null | app/views.py | PaulMurrayCbr/GameNight | 838c19dda765027abbe8e12e331268b01cb859c2 | [
"Unlicense"
] | null | null | null | app/views.py | PaulMurrayCbr/GameNight | 838c19dda765027abbe8e12e331268b01cb859c2 | [
"Unlicense"
] | null | null | null | from app import app, db
from flask import render_template, flash, redirect, get_flashed_messages
import forms
import models
import Character
from flask.globals import request
from sqlalchemy.orm.exc import NoResultFound, MultipleResultsFound
def menugear() :
return {
'pcs': models.Character.query.all()
}
@app.route('/')
@app.route('/index')
def index():
return render_template('index.html', menu=menugear())
@app.route('/whiteboard')
def whiteboard():
return render_template('whiteboard.html', menu=menugear())
@app.route('/pc/<name>/')
def character(name):
try:
pc = models.Character.query.filter_by(name=name).one()
updatepc_form=forms.PC(obj=pc)
newhp_form=forms.HP()
openhpbreakdown = False
states = get_flashed_messages(category_filter=['viewstate'])
if states:
for state in states:
if state['hpopen']:
openhpbreakdown = True
return render_template('pc.html',
updatepc_form=updatepc_form,
newhp_form = newhp_form,
pc=pc,
pcinfo=Character.buildInfo(pc),
menu=menugear(),
openhpbreakdown = openhpbreakdown)
except MultipleResultsFound, e:
flash(('Found multiple characters named %s' % name, 'danger'), 'msg')
pc = None
except NoResultFound, e:
flash(('PC %s not found' % name, 'warning'), 'msg')
pc = None
return redirect('/')
@app.route('/pc/<name>/update.do', methods=['POST'])
def do_updatepc(name):
try:
pc = models.Character.query.filter_by(name=name).one()
updatepc_form=forms.PC(obj=pc)
pc.abbrev = updatepc_form.abbrev.data
pc.name = updatepc_form.name.data
pc.pname = updatepc_form.pname.data
db.session.commit()
return redirect('/pc/%s' % pc.name)
except MultipleResultsFound, e:
flash(('Found multiple characters named %s' % name, 'danger'), 'msg')
pc = None
except NoResultFound, e:
flash(('PC %s not found' % name, 'warning'), 'msg')
pc = None
return redirect('/')
@app.route('/pc/<name>/addhptype.do', methods=['POST'])
def do_addhptypepc(name):
try:
pc = models.Character.query.filter_by(name=name).one()
newhp_form=forms.HP(obj=pc)
hp = models.Hp(
character_id = pc.id,
source = newhp_form.source.data,
max = newhp_form.max.data,
current = newhp_form.max.data,
ablative_only = newhp_form.ablative_only.data
)
db.session.add(hp)
db.session.commit()
flash({'hpopen':True}, 'viewstate')
return redirect('/pc/%s' % pc.name)
except MultipleResultsFound, e:
flash(('Found multiple characters named %s' % name, 'danger'), 'msg')
pc = None
except NoResultFound, e:
flash(('PC %s not found' % name, 'warning'), 'msg')
pc = None
return redirect('/')
@app.route('/pc/<name>/hp/<id>/set.do', methods=['GET', 'POST'])
def do_sethppc(name, id):
try:
pc = models.Character.query.filter_by(name=name).one()
hp = models.Hp.query.get(id)
if not hp:
flash(("HP %s not found" % id , 'danger'), 'msg')
elif hp.character_id != pc.id:
flash(("HP %s belongs to %s" % (id, hp.character.name) , 'danger'), 'msg')
else:
v = request.args.get('v', '')
if not v or v == '':
flash(("no new value specified" , 'warning'), 'msg')
else:
try:
v = int(v)
except ValueError, e:
flash(("'%s' does not appear to be a number" % v, 'warning'), 'msg')
hp.current = v
db.session.commit()
flash(("Set current to %d" % v , 'success'), 'msg')
flash({'hpopen':True}, 'viewstate')
return redirect('/pc/%s' % pc.name)
except MultipleResultsFound, e:
flash(('Found multiple characters named %s' % name, 'danger'), 'msg')
pc = None
except NoResultFound, e:
flash(('PC %s not found' % name, 'warning'), 'msg')
pc = None
return redirect('/')
@app.route('/pc/<name>/hp/<id>/max.do', methods=['GET', 'POST'])
def do_maxhppc(name, id):
try:
pc = models.Character.query.filter_by(name=name).one()
hp = models.Hp.query.get(id)
if not hp:
flash(("HP %s not found" % id , 'danger'), 'msg')
elif hp.character_id != pc.id:
flash(("HP %s belongs to %s" % (id, hp.character.name) , 'danger'), 'msg')
else:
v = request.args.get('v', '')
if not v or v == '':
flash(("no new value specified" , 'warning'), 'msg')
else:
try:
v = int(v)
except ValueError, e:
flash(("'%s' does not appear to be a number" % v, 'warning'), 'msg')
hp.max = v
db.session.commit()
flash(("Set max to %d" % v , 'success'), 'msg')
flash({'hpopen':True}, 'viewstate')
return redirect('/pc/%s' % pc.name)
except MultipleResultsFound, e:
flash(('Found multiple characters named %s' % name, 'danger'), 'msg')
pc = None
except NoResultFound, e:
flash(('PC %s not found' % name, 'warning'), 'msg')
pc = None
return redirect('/')
@app.route('/pc/<name>/hp/<id>/add.do', methods=['GET', 'POST'])
def do_addhppc(name, id):
try:
pc = models.Character.query.filter_by(name=name).one()
hp = models.Hp.query.get(id)
if not hp:
flash(("HP %s not found" % id , 'danger'), 'msg')
elif hp.character_id != pc.id:
flash(("HP %s belongs to %s" % (id, hp.character.name) , 'danger'), 'msg')
else:
v = request.args.get('v', '')
if not v or v == '':
flash(("no new value specified" , 'warning'), 'msg')
else:
try:
v = int(v)
except ValueError, e:
flash(("'%s' does not appear to be a number" % v, 'warning'), 'msg')
hp.current += v
db.session.commit()
if v < 0:
flash(("Subtracted %d" % -v , 'success'), 'msg')
else:
flash(("Added %d" % v , 'success'), 'msg')
flash({'hpopen':True}, 'viewstate')
return redirect('/pc/%s' % pc.name)
except MultipleResultsFound, e:
flash(('Found multiple characters named %s' % name, 'danger'), 'msg')
pc = None
except NoResultFound, e:
flash(('PC %s not found' % name, 'warning'), 'msg')
pc = None
return redirect('/')
@app.route('/pc/<name>/hp/<id>/zap.do', methods=['GET', 'POST'])
def do_zaphppc(name, id):
try:
pc = models.Character.query.filter_by(name=name).one()
hp = models.Hp.query.get(id)
if not hp:
flash(("HP %s not found" % id , 'danger'), 'msg')
elif hp.character_id != pc.id:
flash(("HP %s belongs to %s" % (id, hp.character.name) , 'danger'), 'msg')
else:
db.session.delete(hp)
db.session.commit()
flash(("Deleted" , 'success'), 'msg')
flash({'hpopen':True}, 'viewstate')
return redirect('/pc/%s' % pc.name)
except MultipleResultsFound, e:
flash(('Found multiple characters named %s' % name, 'danger'), 'msg')
pc = None
except NoResultFound, e:
flash(('PC %s not found' % name, 'warning'), 'msg')
pc = None
return redirect('/')
@app.route('/admin/pc/')
def adminpc():
pcs = models.Character.query.all()
return render_template('/admin/pcs.html',
pcs=pcs,
newpc_form=forms.PC(),
menu=menugear())
@app.route('/admin/pc/newpc.do', methods=['POST'])
def do_newpc():
form = forms.PC(request.form)
pc = models.Character(name=form.name.data, pname=form.pname.data, abbrev=form.abbrev.data)
db.session.add(pc)
db.session.commit()
flash(("New PC", 'success'), 'msg')
return redirect('/admin/pc/')
@app.route('/admin/pc/<id>/delete.do', methods=['GET'])
def do_deletepc(id):
pc = models.Character.query.get(id)
if not pc:
flash(("PC %s not found" % id , 'danger'), 'msg')
else :
db.session.delete(pc)
db.session.commit()
flash(("PC '%s' deleted" % pc.name , 'success'), 'msg')
return redirect('/admin/pc/')
| 26.939716 | 94 | 0.612874 |
1f488a30b6efb83e67fbf51683bb88e8086d81e1 | 117 | kts | Kotlin | settings.gradle.kts | shadowxiehao/repairer-gradle-plugin | 4a7ffdd9c9d91e46fbd69be4b3c88a1e909f4bf3 | [
"Apache-2.0"
] | null | null | null | settings.gradle.kts | shadowxiehao/repairer-gradle-plugin | 4a7ffdd9c9d91e46fbd69be4b3c88a1e909f4bf3 | [
"Apache-2.0"
] | null | null | null | settings.gradle.kts | shadowxiehao/repairer-gradle-plugin | 4a7ffdd9c9d91e46fbd69be4b3c88a1e909f4bf3 | [
"Apache-2.0"
] | null | null | null | rootProject.name = "rewrite-gradle-plugin"
include(
"plugin",
"rewrite-java-repairer",
"rewrite-core"
)
| 14.625 | 42 | 0.65812 |
e77eb9d72cf0e644152566f88a2486389fafdda7 | 603 | js | JavaScript | server/api/blackCards.js | AAAhdoot/tweetsagainsthumanity | f078ab8fd672641b54854596c975530dc978acca | [
"MIT"
] | null | null | null | server/api/blackCards.js | AAAhdoot/tweetsagainsthumanity | f078ab8fd672641b54854596c975530dc978acca | [
"MIT"
] | 3 | 2021-03-09T03:03:53.000Z | 2022-02-12T09:25:33.000Z | server/api/blackCards.js | arielahdoot/tweetsagainsthumanity | f078ab8fd672641b54854596c975530dc978acca | [
"MIT"
] | null | null | null | const router = require('express').Router();
const { blackCard } = require('../db/models');
module.exports = router;
router.get('/', async (req, res, next) => {
try {
const nextQ = await blackCard.findOne({
where: {
used: false
}
});
res.json(nextQ);
} catch (error) {
next(error);
}
});
router.put('/:id', async (req, res, next) => {
try {
const id = Number(req.params.id);
await blackCard.update(
{
used: true
},
{
where: { id }
}
);
res.sendStatus(200);
} catch (error) {
next(error);
}
});
| 17.735294 | 46 | 0.505804 |
70229ed216f225b419c96a6005074d9fb8abe6b5 | 4,318 | go | Go | errors.go | yunshengtw/goose | 5156cda2cead6575237dbd2337ee9f82812b593b | [
"MIT"
] | 55 | 2019-04-22T14:54:27.000Z | 2022-03-09T21:59:20.000Z | errors.go | yunshengtw/goose | 5156cda2cead6575237dbd2337ee9f82812b593b | [
"MIT"
] | 24 | 2020-05-04T22:11:38.000Z | 2022-03-28T23:44:10.000Z | errors.go | yunshengtw/goose | 5156cda2cead6575237dbd2337ee9f82812b593b | [
"MIT"
] | 7 | 2019-11-20T08:26:10.000Z | 2022-01-28T19:31:03.000Z | package goose
import (
"bytes"
"fmt"
"go/ast"
"go/printer"
"go/token"
"runtime"
"strings"
)
// errorReporter groups methods for reporting errors, documenting what kind of
// issue was encountered in a uniform way.
type errorReporter struct {
fset *token.FileSet
}
func newErrorReporter(fset *token.FileSet) errorReporter {
return errorReporter{fset}
}
// printField implements custom printing for fields, since printer.Fprint does
// not support fields (the go syntax is somewhat context-sensitive)
func (r errorReporter) printField(f *ast.Field) string {
var what bytes.Buffer
var names []string
for _, n := range f.Names {
names = append(names, n.Name)
}
err := printer.Fprint(&what, r.fset, f.Type)
if err != nil {
panic(err.Error())
}
return fmt.Sprintf("%s %s",
strings.Join(names, ", "),
what.String())
}
func (r errorReporter) printGo(n ast.Node) string {
if f, ok := n.(*ast.Field); ok {
return r.printField(f)
}
if fl, ok := n.(*ast.FieldList); ok {
var fields []string
for _, f := range fl.List {
fields = append(fields, r.printField(f))
}
return strings.Join(fields, "; ")
}
var what bytes.Buffer
err := printer.Fprint(&what, r.fset, n)
if err != nil {
panic(err.Error())
}
return what.String()
}
func getCaller(skip int) string {
_, file, line, ok := runtime.Caller(1 + skip)
if !ok {
return "<no caller>"
}
return fmt.Sprintf("%s:%d", file, line)
}
type gooseError struct{ err *ConversionError }
// A ConversionError is a detailed and structured error encountered while
// converting Go to Coq.
//
// Errors include a category describing the severity of the error.
//
// The category "unsupported" is the only error that should result from normal
// usage, when attempting to use a feature goose intentionally does not support.
//
// "todo" and "future" are markers for code that could be supported but is not
// currently handled.
//
// The categories "impossible(go)" and "impossible(no-examples)" indicate a bug
// in goose (at the very least these cases should be checked and result in an
// unsupported error)
type ConversionError struct {
Category string
// the main description of what went wrong
Message string
// the snippet in the source program responsible for the error
GoCode string
// (for internal debugging) file:lineno for the goose code that threw the
// error
GooseCaller string
// file:lineno for the source program where GoCode appears
GoSrcFile string
// (for systematic tests)
Pos, End token.Pos
}
func (e *ConversionError) Error() string {
lines := []string{
fmt.Sprintf("[%s]: %s", e.Category, e.Message),
fmt.Sprintf("%s", e.GoCode),
fmt.Sprintf(" %s", e.GooseCaller),
fmt.Sprintf(" src: %s", e.GoSrcFile),
}
return strings.Join(lines, "\n")
}
func (r errorReporter) prefixed(prefix string, n ast.Node, msg string, args ...interface{}) {
where := r.fset.Position(n.Pos())
what := r.printGo(n)
formatted := fmt.Sprintf(msg, args...)
err := &ConversionError{
Category: prefix,
Message: formatted,
GoCode: what,
GooseCaller: getCaller(2),
GoSrcFile: where.String(),
Pos: n.Pos(),
End: n.End(),
}
panic(gooseError{err: err})
}
// nope reports a situation that I thought was impossible from reading the
// documentation.
func (r errorReporter) nope(n ast.Node, msg string, args ...interface{}) {
r.prefixed("impossible(go)", n, msg, args...)
}
// noExample reports a situation I thought was impossible because I couldn't
// think of how to do it in Go.
func (r errorReporter) noExample(n ast.Node, msg string, args ...interface{}) {
r.prefixed("impossible(no-examples)", n, msg, args...)
}
// futureWork reports something we could theoretically handle but probably
// won't.
func (r errorReporter) futureWork(n ast.Node, msg string, args ...interface{}) {
r.prefixed("future", n, msg, args...)
}
// todo reports a situation that is intended to be handled but we haven't gotten
// around to.
func (r errorReporter) todo(n ast.Node, msg string, args ...interface{}) {
r.prefixed("todo", n, msg, args...)
}
// unsupported reports something intentionally unhandled (the code should not
// use this feature).
func (r errorReporter) unsupported(n ast.Node, msg string, args ...interface{}) {
r.prefixed("unsupported", n, msg, args...)
}
| 27.679487 | 93 | 0.691524 |
bcaad163d80afafeef8bc3a9a45642a0783a8848 | 2,908 | js | JavaScript | modules/SeedModules.AngularUI/wwwroot/modules/factories/ngTableEventsChannel.js | fyl080801/dotnet-seed | 38be77c33029ab3ac77db876211020dae13d6142 | [
"MIT"
] | 2 | 2018-10-15T03:02:24.000Z | 2020-06-24T00:52:34.000Z | modules/SeedModules.AngularUI/wwwroot/modules/factories/ngTableEventsChannel.js | fyl080801/dotnet-seed | 38be77c33029ab3ac77db876211020dae13d6142 | [
"MIT"
] | 2 | 2020-04-05T06:51:08.000Z | 2020-07-07T20:08:35.000Z | modules/SeedModules.AngularUI/wwwroot/modules/factories/ngTableEventsChannel.js | fyl080801/dotnet-seed | 38be77c33029ab3ac77db876211020dae13d6142 | [
"MIT"
] | 3 | 2018-05-23T03:12:07.000Z | 2020-02-24T02:48:09.000Z | define(["require", "exports", "SeedModules.AngularUI/modules/module", "angular"], function (require, exports, mod, angular) {
"use strict";
exports.__esModule = true;
function ngTableEventsChannelFactory($rootScope) {
var events = {};
events = addChangeEvent('afterCreated', events);
events = addChangeEvent('afterReloadData', events);
events = addChangeEvent('datasetChanged', events);
events = addChangeEvent('pagesChanged', events);
return events;
function addChangeEvent(eventName, target) {
var fnName = eventName.charAt(0).toUpperCase() + eventName.substring(1);
var event = {};
event['on' + fnName] = createEventSubscriptionFn(eventName);
event['publish' + fnName] = createPublishEventFn(eventName);
return angular.extend(target, event);
}
function createEventSubscriptionFn(eventName) {
return function subscription(handler) {
var eventSelector = angular.identity;
var scope = $rootScope;
if (arguments.length === 2) {
if (angular.isFunction(arguments[1].$new)) {
scope = arguments[1];
}
else {
eventSelector = arguments[1];
}
}
else if (arguments.length > 2) {
scope = arguments[1];
eventSelector = arguments[2];
}
if (angular.isObject(eventSelector)) {
var requiredPublisher = eventSelector;
eventSelector = function (publisher) {
return publisher === requiredPublisher;
};
}
return scope.$on('ngTable:' + eventName, function (event, params) {
if (params.isNullInstance)
return;
var eventArgs = rest(arguments, 2);
var fnArgs = [params].concat(eventArgs);
if (eventSelector.apply(this, fnArgs)) {
handler.apply(this, fnArgs);
}
});
};
}
function createPublishEventFn(eventName) {
return function publish() {
var fnArgs = ['ngTable:' + eventName].concat(Array.prototype.slice.call(arguments));
$rootScope.$broadcast.apply($rootScope, fnArgs);
};
}
function rest(array, n) {
return Array.prototype.slice.call(array, n == null ? 1 : n);
}
}
ngTableEventsChannelFactory.$inject = ['$rootScope'];
mod.factory('SeedModules.AngularUI/modules/factories/ngTableEventsChannel', ngTableEventsChannelFactory);
});
//# sourceMappingURL=ngTableEventsChannel.js.map | 45.4375 | 125 | 0.531637 |
1a8de2aa9fb2448d6294e2ef8943335994c76d27 | 809 | kt | Kotlin | server/notification/badge/src/test/kotlin/projektor/notification/badge/CoverageLevelSpec.kt | gelicia/projektor | 593a40aaea235867f546e78aba82ea8af80edda6 | [
"MIT"
] | 33 | 2019-12-30T14:48:54.000Z | 2022-02-12T20:56:29.000Z | server/notification/badge/src/test/kotlin/projektor/notification/badge/CoverageLevelSpec.kt | gelicia/projektor | 593a40aaea235867f546e78aba82ea8af80edda6 | [
"MIT"
] | 390 | 2020-02-14T22:23:40.000Z | 2022-03-25T22:42:59.000Z | server/notification/badge/src/test/kotlin/projektor/notification/badge/CoverageLevelSpec.kt | gelicia/projektor | 593a40aaea235867f546e78aba82ea8af80edda6 | [
"MIT"
] | 9 | 2020-01-23T16:52:03.000Z | 2021-12-06T20:00:34.000Z | package projektor.notification.badge
import io.kotest.core.spec.style.StringSpec
import io.kotest.data.blocking.forAll
import io.kotest.data.row
import strikt.api.expectThat
import strikt.assertions.isEqualTo
import java.math.BigDecimal
class CoverageLevelSpec : StringSpec() {
init {
forAll(
row(BigDecimal("95.00"), CoverageLevel.GOOD),
row(BigDecimal("85.00"), CoverageLevel.OK),
row(BigDecimal("75.00"), CoverageLevel.POOR),
row(BigDecimal("50.00"), CoverageLevel.TERRIBLE),
) { coveredPercentage, expectedCoverageLevel ->
"$coveredPercentage should be coverage level $expectedCoverageLevel" {
expectThat(CoverageLevel.of(coveredPercentage)).isEqualTo(expectedCoverageLevel)
}
}
}
}
| 33.708333 | 96 | 0.682324 |
584033dfeb76c4ff5a76a8bc342ffa2ca6481505 | 1,978 | h | C | trunk/win/Source/Includes/QtIncludes/src/3rdparty/webkit/WebCore/wml/WMLDoElement.h | dyzmapl/BumpTop | 1329ea41411c7368516b942d19add694af3d602f | [
"Apache-2.0"
] | 460 | 2016-01-13T12:49:34.000Z | 2022-02-20T04:10:40.000Z | trunk/win/Source/Includes/QtIncludes/src/3rdparty/webkit/WebCore/wml/WMLDoElement.h | dyzmapl/BumpTop | 1329ea41411c7368516b942d19add694af3d602f | [
"Apache-2.0"
] | 24 | 2016-11-07T04:59:49.000Z | 2022-03-14T06:34:12.000Z | trunk/win/Source/Includes/QtIncludes/src/3rdparty/webkit/WebCore/wml/WMLDoElement.h | dyzmapl/BumpTop | 1329ea41411c7368516b942d19add694af3d602f | [
"Apache-2.0"
] | 148 | 2016-01-17T03:16:43.000Z | 2022-03-17T12:20:36.000Z | /**
* Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef WMLDoElement_h
#define WMLDoElement_h
#if ENABLE(WML)
#include "WMLElement.h"
namespace WebCore {
class WMLTaskElement;
class WMLDoElement : public WMLElement {
public:
WMLDoElement(const QualifiedName& tagName, Document*);
virtual void defaultEventHandler(Event*);
virtual void parseMappedAttribute(MappedAttribute*);
virtual void insertedIntoDocument();
virtual void removedFromDocument();
virtual void attach();
virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
virtual void recalcStyle(StyleChange);
void registerTask(WMLTaskElement*);
void deregisterTask(WMLTaskElement*);
bool isActive() const { return m_isActive; }
String label() const;
String name() const { return m_name; }
void setActive(bool active) { m_isActive = active; }
void setNoop(bool noop) { m_isNoop = noop;}
private:
WMLTaskElement* m_task;
bool m_isActive;
bool m_isNoop;
bool m_isOptional;
String m_name;
String m_type;
};
}
#endif
#endif
| 29.522388 | 91 | 0.705763 |
85c470f20f970b9d12ede856c4c483b62211b1a2 | 772 | js | JavaScript | rollup.config.js | fast-average-color/examples | e0473f663dec5d6c27f5c3dbfa5050cb221022df | [
"MIT"
] | 7 | 2018-07-31T07:24:58.000Z | 2022-02-25T23:28:12.000Z | rollup.config.js | fast-average-color/examples | e0473f663dec5d6c27f5c3dbfa5050cb221022df | [
"MIT"
] | null | null | null | rollup.config.js | fast-average-color/examples | e0473f663dec5d6c27f5c3dbfa5050cb221022df | [
"MIT"
] | 2 | 2019-03-13T09:56:10.000Z | 2021-08-09T16:47:30.000Z | import typescript from '@rollup/plugin-typescript';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import css from 'rollup-plugin-css-only';
const createConfig = name => ({
input: `src/${name}/index.ts`,
output: [
{
file: `dist/${name}.js`,
format: 'umd',
},
] ,
plugins: [
typescript(),
nodeResolve(),
css({
output: `${name}.css`,
}),
]
});
const configs = [
'algorithms',
'ambilight',
'background',
'background_async',
'box-shadow',
'box-shadow-4-sides',
'canvas',
'border',
'text-photo',
'gradient',
'gradient_stripes',
'gallery',
'define',
].map(name => createConfig(name));
export default configs;
| 19.794872 | 58 | 0.534974 |
75098fa606a16e2566c353197d7498758b21c754 | 5,843 | h | C | Game/Client/CEGUI/CEGUI/include/falagard/CEGUIFalImageryComponent.h | hackerlank/SourceCode | b702c9e0a9ca5d86933f3c827abb02a18ffc9a59 | [
"MIT"
] | 4 | 2021-07-31T13:56:01.000Z | 2021-11-13T02:55:10.000Z | Game/OGRE/Dependencies/include/CEGUI/falagard/CEGUIFalImageryComponent.h | shacojx/SourceCodeGameTLBB | e3cea615b06761c2098a05427a5f41c236b71bf7 | [
"MIT"
] | null | null | null | Game/OGRE/Dependencies/include/CEGUI/falagard/CEGUIFalImageryComponent.h | shacojx/SourceCodeGameTLBB | e3cea615b06761c2098a05427a5f41c236b71bf7 | [
"MIT"
] | 7 | 2021-08-31T14:34:23.000Z | 2022-01-19T08:25:58.000Z | /************************************************************************
filename: CEGUIFalImageryComponent.h
created: Mon Jun 13 2005
author: Paul D Turner <[email protected]>
*************************************************************************/
/*************************************************************************
Crazy Eddie's GUI System (http://www.cegui.org.uk)
Copyright (C)2004 - 2005 Paul D Turner ([email protected])
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*************************************************************************/
#ifndef _CEGUIFalImageryComponent_h_
#define _CEGUIFalImageryComponent_h_
#include "falagard/CEGUIFalComponentBase.h"
// Start of CEGUI namespace section
namespace CEGUI
{
/*!
\brief
Class that encapsulates information for a single image component.
*/
class CEGUIEXPORT ImageryComponent : public FalagardComponentBase
{
public:
/*!
\brief
Constructor
*/
ImageryComponent();
/*!
\brief
Return the Image object that will be drawn by this ImageryComponent.
\return
Image object.
*/
const Image* getImage() const;
/*!
\brief
Set the Image that will be drawn by this ImageryComponent.
\param
Pointer to the Image object to be drawn by this ImageryComponent.
\return
Nothing.
*/
void setImage(const Image* image);
/*!
\brief
Set the Image that will be drawn by this ImageryComponent.
\param imageset
String holding the name of the Imagset that contains the Image to be rendered.
\param image
String holding the name of the Image to be rendered.
\return
Nothing.
*/
void setImage(const String& imageset, const String& image);
/*!
\brief
Return the current vertical formatting setting for this ImageryComponent.
\return
One of the VerticalFormatting enumerated values.
*/
VerticalFormatting getVerticalFormatting() const;
/*!
\brief
Set the vertical formatting setting for this ImageryComponent.
\param fmt
One of the VerticalFormatting enumerated values.
\return
Nothing.
*/
void setVerticalFormatting(VerticalFormatting fmt);
/*!
\brief
Return the current horizontal formatting setting for this ImageryComponent.
\return
One of the HorizontalFormatting enumerated values.
*/
HorizontalFormatting getHorizontalFormatting() const;
/*!
\brief
Set the horizontal formatting setting for this ImageryComponent.
\param fmt
One of the HorizontalFormatting enumerated values.
\return
Nothing.
*/
void setHorizontalFormatting(HorizontalFormatting fmt);
/*!
\brief
Writes an xml representation of this ImageryComponent to \a out_stream.
\param out_stream
Stream where xml data should be output.
\return
Nothing.
*/
void writeXMLToStream(OutStream& out_stream) const;
/*!
\brief
Return whether this ImageryComponent fetches it's image via a property on the target window.
\return
- true if the image comes via a Propery.
- false if the image is defined explicitly.
*/
bool isImageFetchedFromProperty() const;
/*!
\brief
Return the name of the property that will be used to determine the image for this ImageryComponent.
\return
String object holding the name of a Propery.
*/
const String& getImagePropertySource() const;
/*!
\brief
Set the name of the property that will be used to determine the image for this ImageryComponent.
\param property
String object holding the name of a Propery. The property should access a imageset & image specification.
\return
Nothing.
*/
void setImagePropertySource(const String& property);
protected:
// implemets abstract from base
void render_impl(Window& srcWindow, Rect& destRect, float base_z, const CEGUI::ColourRect* modColours, const Rect* clipper, bool clipToDisplay) const;
const Image* d_image; //!< CEGUI::Image to be drawn by this image component.
VerticalFormatting d_vertFormatting; //!< Vertical formatting to be applied when rendering the image component.
HorizontalFormatting d_horzFormatting; //!< Horizontal formatting to be applied when rendering the image component.
String d_imagePropertyName; //!< Name of the property to access to obtain the image to be used.
};
} // End of CEGUI namespace section
#endif // end of guard _CEGUIFalImageryComponent_h_
| 32.461111 | 158 | 0.599521 |
3ea332178c90672eead773ac2b75b106ad9a6671 | 974 | h | C | game/registers.h | alpine9000/VertScroller | c7cb45f41c5f62c61526709568b904b12b47a440 | [
"BSD-2-Clause"
] | 5 | 2017-02-02T17:53:25.000Z | 2019-05-02T23:48:53.000Z | game/registers.h | alpine9000/VertScroller | c7cb45f41c5f62c61526709568b904b12b47a440 | [
"BSD-2-Clause"
] | 3 | 2017-08-18T08:48:00.000Z | 2017-08-21T08:50:46.000Z | game/registers.h | alpine9000/VertScroller | c7cb45f41c5f62c61526709568b904b12b47a440 | [
"BSD-2-Clause"
] | 1 | 2017-08-21T06:25:21.000Z | 2017-08-21T06:25:21.000Z | #ifndef __REGISTERS_H
#define __REGISTERS_H
#define BPL1PTH 0x00E0
#define BPL1PTL 0x00E2
#define BPL2PTH 0x00E4
#define BPL2PTL 0x00E6
#define BPL3PTH 0x00E8
#define BPL3PTL 0x00EA
#define BPL4PTH 0x00EC
#define BPL4PTL 0x00EE
#define BPL5PTH 0x00F0
#define BPL5PTL 0x00F2
#define BPL6PTH 0x00F4
#define BPL6PTL 0x00F6
#define SPR0PTH 0x120
#define SPR0PTL 0x122
#define SPR1PTH 0x124
#define SPR1PTL 0x126
#define SPR2PTH 0x128
#define SPR2PTL 0x12a
#define SPR3PTH 0x12c
#define SPR3PTL 0x12e
#define SPR4PTH 0x130
#define SPR4PTL 0x132
#define SPR5PTH 0x134
#define SPR5PTL 0x136
#define SPR6PTH 0x138
#define SPR6PTL 0x13a
#define SPR7PTH 0x13c
#define SPR7PTL 0x13e
#define SPR0POS 0x140
#define SPR1POS 0x148
#define COLOR00 0x0180
#define COLOR01 0x0182
#define COLOR02 0x0184
#define COLOR03 0x0186
#define COLOR04 0x0188
#define COLOR05 0x018a
#define COLOR06 0x018c
#define COLOR07 0x018e
#define COP2LCH 0x084
#define COP2LCL 0x086
#endif
| 19.098039 | 22 | 0.803901 |
e7621a65da5e94bd914b002672f66c1672ce9943 | 614 | js | JavaScript | public/js/controllers/text-pagination.js | bilenskaya/bilenskaya | 282663ca924d75178dd9e141fbe0dc2f8f2c3dd4 | [
"Unlicense",
"MIT"
] | null | null | null | public/js/controllers/text-pagination.js | bilenskaya/bilenskaya | 282663ca924d75178dd9e141fbe0dc2f8f2c3dd4 | [
"Unlicense",
"MIT"
] | null | null | null | public/js/controllers/text-pagination.js | bilenskaya/bilenskaya | 282663ca924d75178dd9e141fbe0dc2f8f2c3dd4 | [
"Unlicense",
"MIT"
] | null | null | null | var TextPaginationController = ['$scope',
'$http', 'myContentService', function($scope, $http, myContentService) {
$scope.successContent = false;
$scope.getBookFn = function () {
console.log ('jhgg')
return $http.get('/articles/52ca8255a592e6ac26000004')
.then(function(book) {
console.log (book.data)
$scope.successContent = true ;
myContentService.prepForBroadcast(book.data.para);
return book.data;
})
//wtf
};
}]
| 19.806452 | 78 | 0.501629 |
7396c9db72149a985a07a43ee166e4642753f405 | 8,015 | rs | Rust | ceres-core/src/audio.rs | remind-me-later/Ceres | 5543825c12e83414b0cf41b8fd4c5c0be2dce090 | [
"MIT"
] | null | null | null | ceres-core/src/audio.rs | remind-me-later/Ceres | 5543825c12e83414b0cf41b8fd4c5c0be2dce090 | [
"MIT"
] | 1 | 2022-03-30T17:17:45.000Z | 2022-03-30T17:17:45.000Z | ceres-core/src/audio.rs | remind-me-later/Ceres | 5543825c12e83414b0cf41b8fd4c5c0be2dce090 | [
"MIT"
] | null | null | null | pub use audio_callbacks::AudioCallbacks;
use {
self::{
channels::Channels,
control::{Control, TriggerReset},
high_pass_filter::HighPassFilter,
sequencer::Sequencer,
},
alloc::rc::Rc,
core::cell::RefCell,
};
mod audio_callbacks;
mod channels;
mod control;
mod high_pass_filter;
mod sequencer;
pub type Sample = f32;
pub struct Frame {
left: Sample,
right: Sample,
}
impl Frame {
fn new(left: Sample, right: Sample) -> Self {
Self { left, right }
}
pub fn left(&self) -> Sample {
self.left
}
pub fn right(&self) -> Sample {
self.right
}
}
pub struct Apu {
channels: Channels,
cycles_to_render: u32,
cycles_until_next_render: u32,
callbacks: Rc<RefCell<dyn AudioCallbacks>>,
sequencer: Sequencer,
control: Control,
high_pass_filter: HighPassFilter,
}
impl Apu {
pub fn new(callbacks: Rc<RefCell<dyn AudioCallbacks>>) -> Self {
let cycles_to_render = callbacks.borrow().cycles_to_render();
Self {
channels: Channels::new(),
cycles_to_render,
cycles_until_next_render: cycles_to_render,
control: Control::new(),
callbacks,
sequencer: Sequencer::new(),
high_pass_filter: HighPassFilter::new(),
}
}
pub fn tick(&mut self, mut mus_elapsed: u8) {
if !self.control.is_enabled() {
return;
}
while mus_elapsed > 0 {
mus_elapsed -= 1;
self.sequencer.tick(&mut self.channels);
self.cycles_until_next_render -= 1;
if self.cycles_until_next_render == 0 {
self.cycles_until_next_render = self.cycles_to_render;
self.mix_and_render();
}
}
}
fn mix_and_render(&mut self) {
let (left, right) = self
.channels
.dac_output_iter()
.zip(self.control.channel_enabled_terminal_iter())
.fold(
(0, 0),
|(left, right), (output, (is_left_enabled, is_right_enabled))| {
(
left + output * u8::from(is_left_enabled),
right + output * u8::from(is_right_enabled),
)
},
);
let (left_output_volume, right_output_volume) = self.control.output_volumes();
// transform to i16 sample
let left_sample = (0xf - left as i16 * 2) * i16::from(left_output_volume);
let right_sample = (0xf - right as i16 * 2) * i16::from(right_output_volume);
// filter
let left_sample = self
.high_pass_filter
.filter(left_sample, self.control.is_enabled());
let right_sample = self
.high_pass_filter
.filter(right_sample, self.control.is_enabled());
let frame = Frame::new(left_sample, right_sample);
self.callbacks.borrow_mut().push_frame(frame);
}
fn reset(&mut self) {
self.cycles_until_next_render = self.cycles_to_render;
self.channels.reset();
self.control.reset();
}
pub fn read_nr10(&self) -> u8 {
self.channels.square1.read_nr10()
}
pub fn read_nr11(&self) -> u8 {
self.channels.square1.read_nr11()
}
pub fn read_nr12(&self) -> u8 {
self.channels.square1.read_nr12()
}
pub fn read_nr13(&self) -> u8 {
self.channels.square1.read_nr13()
}
pub fn read_nr14(&self) -> u8 {
self.channels.square1.read_nr14()
}
pub fn read_nr21(&self) -> u8 {
self.channels.square2.read_nr21()
}
pub fn read_nr22(&self) -> u8 {
self.channels.square2.read_nr22()
}
pub fn read_nr23(&self) -> u8 {
self.channels.square2.read_nr23()
}
pub fn read_nr24(&self) -> u8 {
self.channels.square2.read_nr24()
}
pub fn read_nr30(&self) -> u8 {
self.channels.wave.read_nr30()
}
pub fn read_nr32(&self) -> u8 {
self.channels.wave.read_nr32()
}
pub fn read_nr34(&self) -> u8 {
self.channels.wave.read_nr34()
}
pub fn read_nr42(&self) -> u8 {
self.channels.noise.read_nr42()
}
pub fn read_nr43(&self) -> u8 {
self.channels.noise.read_nr43()
}
pub fn read_nr44(&self) -> u8 {
self.channels.noise.read_nr44()
}
pub fn read_nr50(&self) -> u8 {
self.control.read_nr50()
}
pub fn read_nr51(&self) -> u8 {
self.control.read_nr51()
}
pub fn read_nr52(&self) -> u8 {
self.control.read_nr52(&self.channels)
}
pub fn read_wave(&self, addr: u8) -> u8 {
self.channels.wave.read_wave_ram(addr)
}
pub fn write_wave(&mut self, addr: u8, val: u8) {
self.channels.wave.write_wave_ram(addr, val)
}
pub fn write_nr10(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square1.write_nr10(val)
}
}
pub fn write_nr11(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square1.write_nr11(val)
}
}
pub fn write_nr12(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square1.write_nr12(val)
}
}
pub fn write_nr13(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square1.write_nr13(val)
}
}
pub fn write_nr14(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square1.write_nr14(val)
}
}
pub fn write_nr21(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square2.write_nr21(val)
}
}
pub fn write_nr22(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square2.write_nr22(val)
}
}
pub fn write_nr23(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square2.write_nr23(val)
}
}
pub fn write_nr24(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.square2.write_nr24(val)
}
}
pub fn write_nr30(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.wave.write_nr30(val)
}
}
pub fn write_nr31(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.wave.write_nr31(val)
}
}
pub fn write_nr32(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.wave.write_nr32(val)
}
}
pub fn write_nr33(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.wave.write_nr33(val)
}
}
pub fn write_nr34(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.wave.write_nr34(val)
}
}
pub fn write_nr41(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.noise.write_nr41(val)
}
}
pub fn write_nr42(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.noise.write_nr42(val)
}
}
pub fn write_nr43(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.noise.write_nr43(val)
}
}
pub fn write_nr44(&mut self, val: u8) {
if self.control.is_enabled() {
self.channels.noise.write_nr44(val)
}
}
pub fn write_nr50(&mut self, val: u8) {
if self.control.is_enabled() {
self.control.write_nr50(val)
}
}
pub fn write_nr51(&mut self, val: u8) {
if self.control.is_enabled() {
self.control.write_nr51(val)
}
}
pub fn write_nr52(&mut self, val: u8) {
if self.control.write_nr52(val) == TriggerReset::Reset {
self.reset()
}
}
}
| 24.435976 | 86 | 0.555209 |
b2d17e05c973d4afec2889fae68a1be4d13ef5c7 | 2,440 | py | Python | src/lib/template.py | emil-jacero/powerdns-auth-docker | 922f08d6c2182cd8497fc869e42a6218ecc1b105 | [
"MIT"
] | null | null | null | src/lib/template.py | emil-jacero/powerdns-auth-docker | 922f08d6c2182cd8497fc869e42a6218ecc1b105 | [
"MIT"
] | 2 | 2021-05-08T13:30:42.000Z | 2022-02-06T22:28:54.000Z | src/lib/template.py | emil-jacero/powerdns-auth-docker | 922f08d6c2182cd8497fc869e42a6218ecc1b105 | [
"MIT"
] | null | null | null | import os
import jinja2
import logging
from lib.config import Config
class Template:
def __init__(self, env_search_term="ENV"):
self.log_name = f'{Config.logger_name}.{self.__class__.__name__}'
self.log = logging.getLogger(self.log_name)
self.path = None
self.name = None
self.env_search_term = env_search_term
self.variables = self.get_variables()
def get_variables(self):
variables = {}
autosecondary = {}
for k, v in os.environ.items():
if "AUTOSECONDARY" in k:
obj = {k: v}
autosecondary.update(obj)
elif f"{self.env_search_term}_" in k:
k = k.replace(f"{self.env_search_term}_", "").replace("_", "-").lower()
obj = {k: v}
variables.update(obj)
return variables, autosecondary
def render_template(self, template, output_file):
"""
Takes template, output file and dictionary of variables.
Renders template with variables to the specified output file.
"""
self.path = os.path.dirname(template)
self.name = os.path.basename(template)
self.log.debug(f"Template path: {'Path_not_provided' if self.path is '' else self.path}")
self.log.debug(f"Template name: {self.name}")
# Remove file if exists
if os.path.exists(output_file):
self.log.info(f"Removing old file [{output_file}]")
os.remove(output_file)
# Write rendered template into file
self.log.info(f"Rendering template {template} to {output_file}")
data, autosecondary = self.variables
with open(output_file, 'w') as f:
f.write(self._load_template(self.name, self.path).render(data=data, autosecondary=autosecondary))
def _load_template(self, name, path=None):
"""
Takes template name and a path to the template directory
"""
# Guessing templates directory
if path is None or path == "":
path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'templates')
self.log.info(f"Missing path to templates. Using default...")
self.log.info(f"Template path: {path}")
else:
self.log.info(f"Template path: {path}")
env = jinja2.Environment(loader=jinja2.FileSystemLoader(path))
return env.get_template(name)
| 38.730159 | 109 | 0.607787 |
e73fffbbf34519bd85db2a58a307b41246e8a610 | 1,101 | js | JavaScript | src/0648.replace-words.648/0648.replace-words.648.js | jiangshanmeta/meta | 8f9d084cda91988d42208ac7a029612e9edc693b | [
"MIT"
] | 221 | 2018-10-26T07:05:12.000Z | 2022-03-30T03:23:10.000Z | src/0648.replace-words.648/0648.replace-words.648.js | ralap18/meta | 82d660a6eabb15e398a7dcc2a0fa99342143bb12 | [
"MIT"
] | 23 | 2018-09-24T14:50:58.000Z | 2020-09-17T14:23:45.000Z | src/0648.replace-words.648/0648.replace-words.648.js | ralap18/meta | 82d660a6eabb15e398a7dcc2a0fa99342143bb12 | [
"MIT"
] | 45 | 2019-03-29T03:36:19.000Z | 2022-03-25T20:57:13.000Z | /**
* @param {string[]} dict
* @param {string} sentence
* @return {string}
*/
// 前缀树
function findRoot (trie, string) {
const list = [];
for (let i = 0; i < string.length; i++) {
if (!trie) {
break;
}
list.push(string[i]);
trie = trie[string[i]];
}
return trie === null ? list.join('') : '';
}
var replaceWords = function (dict, sentence) {
const trie = {};
// 因为有多个root时要按短的算 先按长度从小到大排序
dict.sort((a, b) => a.length - b.length);
for (let i = 0; i < dict.length; i++) {
const string = dict[i];
// 考虑到dict中有的单词以dict中其他单词为根
if (findRoot(trie, string) === '') {
let prev = trie;
for (let j = 0; j < string.length - 1; j++) {
prev = prev[string[j]] || (prev[string[j]] = {});
}
// 最后一个字母 null结尾 便于在前缀树中确定结尾
prev[string[string.length - 1]] = null;
}
}
return sentence.split(' ').map((string) => {
const root = findRoot(trie, string);
return root === '' ? string : root;
}).join(' ');
};
| 26.214286 | 65 | 0.482289 |
20389260479fc631fb1786c03fbbdc49b029204e | 234 | css | CSS | public/material/css/pages/blog.css | halim880/eims | 5f2d131d85307ac32a0329b84c98e0c525eea703 | [
"MIT"
] | null | null | null | public/material/css/pages/blog.css | halim880/eims | 5f2d131d85307ac32a0329b84c98e0c525eea703 | [
"MIT"
] | null | null | null | public/material/css/pages/blog.css | halim880/eims | 5f2d131d85307ac32a0329b84c98e0c525eea703 | [
"MIT"
] | null | null | null | .EventContainer{
height: auto;
width: 80vw;
display: flex;
flex-wrap: wrap;
position: absolute;
top: 100px;
}
.EventCards{
height: auto;
display: flex;
justify-content: start;
flex-wrap: wrap;
} | 16.714286 | 27 | 0.606838 |
0e53cea4f75b2a2ab7d292e55eae0798923e3836 | 4,434 | html | HTML | src/pacing/pacing.html | Equinurmae/plotter | b22517549b767b06baadf78d82a30cea1d0f3102 | [
"MIT"
] | null | null | null | src/pacing/pacing.html | Equinurmae/plotter | b22517549b767b06baadf78d82a30cea1d0f3102 | [
"MIT"
] | null | null | null | src/pacing/pacing.html | Equinurmae/plotter | b22517549b767b06baadf78d82a30cea1d0f3102 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Plotter</title>
<!-- Office JavaScript API -->
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js"></script>
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.min.css" />
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.components.min.css" />
<script src="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/js/fabric.min.js"></script>
<script type="text/javascript">
var ToggleElements = document.querySelectorAll(".ms-Toggle");
for (var i = 0; i < ToggleElements.length; i++) {
new fabric['Toggle'](ToggleElements[i]);
}
</script>
<!-- Template styles -->
<link href="pacing.css" rel="stylesheet" type="text/css" />
</head>
<body class="ms-fontSize-28 ms-font-m ms-welcome ms-Fabric">
<header class="ms-welcome__header ms-bgColor-neutralLighter ms-font-su">
Pacing
</header>
<section id="sideload-msg" class="ms-welcome__main">
<h2 class="ms-font-xl">Please sideload your add-in to see app body.</h2>
</section>
<main id="app-body" class="ms-welcome__main" style="display: none;">
<button class="ms-Button ms-Button--primary" id="refresh">
<span class="ms-Button-label">Refresh</span>
</button>
<p id="debug" style="display: none"></p>
<p class="ms-font-s" style="text-align: justify">Our <span style="font-weight: 700">pacing score</span> is calculated as a moving average of the readability over paragraphs.
It works best over individual chapters or scenes, so <span style="font-weight: 700">select a piece of text</span> and get started with the options below!</p>
<h2 class="ms-font-xl">Graph Options</h2>
<div class="ms-Grid" dir="ltr">
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-sm6 ms-md6 ms-lg6">
<div class="ms-Toggle">
<span class="ms-Toggle-description">Readability</span>
<input type="checkbox" id="readability" class="ms-Toggle-input" checked />
<label for="readability" class="ms-Toggle-field is-selected" tabindex="0">
</label>
</div>
</div>
<div class="ms-Grid-col ms-sm6 ms-md6 ms-lg6">
<div class="ms-Toggle">
<span class="ms-Toggle-description">Words</span>
<input type="checkbox" id="words" class="ms-Toggle-input" checked />
<label for="words" class="ms-Toggle-field is-selected" tabindex="0">
</label>
</div>
</div>
<div class="ms-Grid-col ms-sm6 ms-md6 ms-lg6">
<div class="ms-Toggle">
<span class="ms-Toggle-description">Average</span>
<input type="checkbox" id="average" class="ms-Toggle-input" checked />
<label for="average" class="ms-Toggle-field is-selected" tabindex="0">
</label>
</div>
</div>
<div class="ms-Grid-col ms-sm6 ms-md6 ms-lg6">
<div class="ms-Toggle">
<span class="ms-Toggle-description">Z-Scores</span>
<input type="checkbox" id="z-scores" class="ms-Toggle-input" />
<label for="z-scores" class="ms-Toggle-field" tabindex="0">
</label>
</div>
</div>
</div>
</div>
<div class="ms-Range" style="display: none">
<span class="ms-Range-description">Detail</span>
<input type="range" min="0" max="500" class="ms-Range-input" id="detail" />
</div>
<div id="pacing_vis"></div>
</main>
<script type="text/javascript">
var ToggleElements = document.querySelectorAll(".ms-Toggle");
for (var i = 0; i < ToggleElements.length; i++) {
new fabric['Toggle'](ToggleElements[i]);
}
var SpinnerElements = document.querySelectorAll(".ms-Spinner");
for (var i = 0; i < SpinnerElements.length; i++) {
new fabric['Spinner'](SpinnerElements[i]);
}
</script>
</body>
</html> | 39.589286 | 180 | 0.592016 |
e13b69e8c96f531868c10e1dd1d5024922ee8af3 | 2,602 | sql | SQL | gpff-sql/procedures/cuentas/procUpdateCuentas.sql | jestevez/portfolio-trusts-funds | 0ec2e8431587209f7b59b55b3692ec24a84a8b78 | [
"Apache-2.0"
] | 1 | 2019-07-02T10:01:31.000Z | 2019-07-02T10:01:31.000Z | gpff-sql/procedures/cuentas/procUpdateCuentas.sql | jestevez/portfolio-trusts-funds | 0ec2e8431587209f7b59b55b3692ec24a84a8b78 | [
"Apache-2.0"
] | null | null | null | gpff-sql/procedures/cuentas/procUpdateCuentas.sql | jestevez/portfolio-trusts-funds | 0ec2e8431587209f7b59b55b3692ec24a84a8b78 | [
"Apache-2.0"
] | 1 | 2021-04-21T18:52:59.000Z | 2021-04-21T18:52:59.000Z | -- DROP PROCEDURE GPSQLWEB.procUpdateCuentas
CREATE PROCEDURE GPSQLWEB.procUpdateCuentas
(
IN P_CTCCLI DECIMAL(7 , 0),
IN P_CTCCTA VARCHAR(20),
IN P_CTCEMP VARCHAR(2),
IN P_CTCDEL VARCHAR(2),
IN P_CTCTIP VARCHAR(1),
IN P_CTCAGE DECIMAL(7 , 0),
IN P_CTCSAL NUMERIC(14 , 2),
IN P_CTCDIV DECIMAL(3 , 0),
IN P_CTCAUX VARCHAR(14),
IN P_CTCREF VARCHAR(12),
IN P_CTCBAN VARCHAR(40),
IN P_CTCDES VARCHAR(1),
IN P_USERNAME VARCHAR(50),
IN P_IPADDRESS VARCHAR(255),
IN P_USERAGENT VARCHAR(500),
OUT P_MSGCODE INTEGER
)
LANGUAGE SQL
BEGIN
Declare StringSQL Varchar(32000) Default '';
Declare V_CANT INT DEFAULT 0;
IF P_CTCCLI IS NULL
OR P_CTCCTA IS NULL
OR P_CTCEMP IS NULL
OR P_CTCDEL IS NULL
OR P_CTCTIP IS NULL
OR P_CTCAGE IS NULL
OR P_CTCSAL IS NULL
OR P_CTCDIV IS NULL
OR P_CTCAUX IS NULL
OR P_CTCREF IS NULL
OR P_CTCBAN IS NULL
OR P_CTCDES IS NULL THEN
SET P_MSGCODE = 9003;
SET StringSQL = '9003 - PARAMETROS REQUERIDOS ESTAN VACIOS';
CALL GPSQLWEB.procCreateWebAudit (P_IPADDRESS, P_USERAGENT, P_USERNAME, 'Crear', 'procCreateCuentas', StringSQL);
RETURN;
END IF;
SELECT COUNT(1) INTO V_CANT FROM GPDATWEB.CUENTAS WHERE CTCCTA = P_CTCCTA AND CTCCLI = P_CTCCLI;
IF V_CANT > 1 THEN
SET P_MSGCODE = 9001;
SET StringSQL = '9001 - HAY MAS DE UN REGISTRO CON LA CLAVE PRIMARIA';
CALL GPSQLWEB.procCreateWebAudit (P_IPADDRESS, P_USERAGENT, P_USERNAME, 'Actualizar', 'procUpdateCuentas', StringSQL);
RETURN;
END IF;
IF V_CANT = 0 THEN
SET P_MSGCODE = 9000;
SET StringSQL = '9000 - NO HAY REGISTROS QUE MODIFICAR CODIGO';
CALL GPSQLWEB.procCreateWebAudit (P_IPADDRESS, P_USERAGENT, P_USERNAME, 'Actualizar', 'procUpdateCuentas', StringSQL);
RETURN;
END IF;
UPDATE GPDATWEB.CUENTAS SET CTCEMP= P_CTCEMP , CTCDEL= P_CTCDEL , CTCTIP= P_CTCTIP , CTCAGE= P_CTCAGE , CTCSAL= P_CTCSAL , CTCDIV= P_CTCDIV , CTCAUX= P_CTCAUX , CTCREF= P_CTCREF , CTCBAN= P_CTCBAN , CTCDES= P_CTCDES WHERE CTCCTA = P_CTCCTA AND CTCCLI = P_CTCCLI;
SET P_MSGCODE = 0;
Set StringSQL = 'UPDATE GPDATWEB.CUENTAS SET CTCEMP= '''||P_CTCEMP || ''' , CTCDEL= '''||P_CTCDEL || ''' , CTCTIP= '''||P_CTCTIP || ''' , CTCAGE= '''||P_CTCAGE || ''' , CTCSAL= '''||P_CTCSAL || ''' , CTCDIV= '''||P_CTCDIV || ''' , CTCAUX= '''||P_CTCAUX || ''' , CTCREF= '''||P_CTCREF || ''' , CTCBAN= '''||P_CTCBAN || ''' , CTCDES= '''||P_CTCDES || ''' WHERE CTCCTA= '''||P_CTCCTA|| ''' AND CTCCLI= '''||P_CTCCLI || ''' ;';
CALL GPSQLWEB.procCreateWebAudit (P_IPADDRESS, P_USERAGENT, P_USERNAME, 'Actualizar', 'procUpdateCuentas', StringSQL);
END
GO
| 37.710145 | 427 | 0.69485 |
7a97019e955f84d6270a6a63776af848923fd024 | 2,666 | rs | Rust | engine/src/math/vector4.rs | monadgroup/re19 | 80989ebf8ae2a3e203a443e583a7f359f0114333 | [
"Apache-2.0"
] | 47 | 2021-10-04T13:51:31.000Z | 2022-03-27T17:23:50.000Z | engine/src/math/vector4.rs | monadgroup/re19 | 80989ebf8ae2a3e203a443e583a7f359f0114333 | [
"Apache-2.0"
] | null | null | null | engine/src/math/vector4.rs | monadgroup/re19 | 80989ebf8ae2a3e203a443e583a7f359f0114333 | [
"Apache-2.0"
] | null | null | null | use super::{Float, Vector3};
use core::ops;
#[derive(Clone, Copy, PartialEq, PartialOrd, Default, Debug)]
#[repr(C)]
pub struct Vector4 {
pub x: f32,
pub y: f32,
pub z: f32,
pub w: f32,
}
impl Vector4 {
pub fn with_x(self, x: f32) -> Self {
Vector4 { x, ..self }
}
pub fn with_y(self, y: f32) -> Self {
Vector4 { y, ..self }
}
pub fn with_z(self, z: f32) -> Self {
Vector4 { z, ..self }
}
pub fn with_w(self, w: f32) -> Self {
Vector4 { w, ..self }
}
pub fn dot(self, other: Vector4) -> f32 {
self.x * other.x + self.y * other.y + self.z * other.z + self.w * other.w
}
pub fn length_squared(self) -> f32 {
self.dot(self)
}
pub fn length(self) -> f32 {
self.length_squared().sqrt()
}
pub fn unit(self) -> Vector4 {
self / Vector4::from(self.length())
}
pub fn lerp(self, other: Vector4, t: f32) -> Vector4 {
self + (other - self) * t
}
pub fn unproject(self) -> Vector3 {
Vector3 {
x: self.x / self.w,
y: self.y / self.w,
z: self.z / self.w,
}
}
pub fn as_vec3(self) -> Vector3 {
Vector3 {
x: self.x,
y: self.y,
z: self.z,
}
}
pub fn floor(self) -> Vector4 {
Vector4 {
x: self.x.floor(),
y: self.y.floor(),
z: self.z.floor(),
w: self.w.floor(),
}
}
pub fn fract(self) -> Vector4 {
Vector4 {
x: self.x.fract(),
y: self.y.fract(),
z: self.z.fract(),
w: self.w.fract(),
}
}
}
define_vec!(Vector4 => (x, y, z, w));
impl ops::Neg for Vector4 {
type Output = Vector4;
fn neg(self) -> Vector4 {
Vector4 {
x: -self.x,
y: -self.y,
z: -self.z,
w: -self.w,
}
}
}
impl From<[f32; 4]> for Vector4 {
fn from([x, y, z, w]: [f32; 4]) -> Self {
Vector4 { x, y, z, w }
}
}
impl From<(f32, f32, f32, f32)> for Vector4 {
fn from((x, y, z, w): (f32, f32, f32, f32)) -> Self {
Vector4 { x, y, z, w }
}
}
impl From<f32> for Vector4 {
fn from(val: f32) -> Self {
Vector4 {
x: val,
y: val,
z: val,
w: val,
}
}
}
impl Into<[f32; 4]> for Vector4 {
fn into(self) -> [f32; 4] {
[self.x, self.y, self.z, self.w]
}
}
impl Into<(f32, f32, f32, f32)> for Vector4 {
fn into(self) -> (f32, f32, f32, f32) {
(self.x, self.y, self.z, self.w)
}
}
| 19.895522 | 81 | 0.445236 |
df84bcbd3a0065a3d20fd50c9fb4e0b8b23710eb | 193 | swift | Swift | Sources/AccountSDKIOSWeb/Lib/Logging.swift | mbanasiewicz/account-sdk-ios-web | 85ca5c77d243097b461cd5f67b1715f565b5165b | [
"MIT"
] | 1 | 2021-10-04T14:08:41.000Z | 2021-10-04T14:08:41.000Z | Sources/AccountSDKIOSWeb/Lib/Logging.swift | mbanasiewicz/account-sdk-ios-web | 85ca5c77d243097b461cd5f67b1715f565b5165b | [
"MIT"
] | 3 | 2021-09-28T12:37:42.000Z | 2021-10-11T12:05:23.000Z | Sources/AccountSDKIOSWeb/Lib/Logging.swift | mbanasiewicz/account-sdk-ios-web | 85ca5c77d243097b461cd5f67b1715f565b5165b | [
"MIT"
] | null | null | null | import Foundation
import Logging
public enum SchibstedAccountLogger {
/// Common logging instance used by the SDK
public static var instance = Logger(label: "com.schibsted.account")
}
| 24.125 | 71 | 0.761658 |
06f7a61fb9baf2446e25ad24f618548502216889 | 154 | kt | Kotlin | idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/notApplicable_overloadResolutionAmbiguity2.kt | tgeng/intellij-kotlin | 074f16db036cbdc3dc3e082841c1573b2da74f2d | [
"ECL-2.0",
"Apache-2.0"
] | 337 | 2020-05-14T00:40:10.000Z | 2022-02-16T23:39:07.000Z | idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/notApplicable_overloadResolutionAmbiguity2.kt | Seantheprogrammer93/kotlin | f7aabf03f89bdd39d9847572cf9e0051ea42c247 | [
"ECL-2.0",
"Apache-2.0"
] | 92 | 2020-06-10T23:17:42.000Z | 2020-09-25T10:50:13.000Z | idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/notApplicable_overloadResolutionAmbiguity2.kt | Seantheprogrammer93/kotlin | f7aabf03f89bdd39d9847572cf9e0051ea42c247 | [
"ECL-2.0",
"Apache-2.0"
] | 44 | 2020-05-17T10:11:11.000Z | 2022-03-11T02:37:20.000Z | // IS_APPLICABLE: false
fun test() {
C().foo { <caret>i -> i + 1 }
}
class C {
fun foo(f: (Int) -> Int) {}
fun foo(f: (Int, Int) -> Int) {}
} | 17.111111 | 36 | 0.467532 |
7541b62a34467e2119df5125dde81063db36ce24 | 2,467 | rs | Rust | core/src/eval/arithmetic.rs | contractshark/rust-cevm | 35cdefb760d41197ccfadc8c446343f20eba9080 | [
"Apache-2.0"
] | 47 | 2020-08-01T19:50:19.000Z | 2022-03-29T16:23:40.000Z | core/src/eval/arithmetic.rs | gakonst/rust-cevm | 35cdefb760d41197ccfadc8c446343f20eba9080 | [
"Apache-2.0"
] | null | null | null | core/src/eval/arithmetic.rs | gakonst/rust-cevm | 35cdefb760d41197ccfadc8c446343f20eba9080 | [
"Apache-2.0"
] | 4 | 2020-12-30T06:43:30.000Z | 2021-09-08T11:41:14.000Z | use crate::utils::I256;
use core::convert::TryInto;
use core::ops::Rem;
use primitive_types::{U256, U512};
pub fn div(op1: U256, op2: U256) -> U256 {
if op2 == U256::zero() {
U256::zero()
} else {
op1 / op2
}
}
pub fn sdiv(op1: U256, op2: U256) -> U256 {
let op1: I256 = op1.into();
let op2: I256 = op2.into();
let ret = op1 / op2;
ret.into()
}
pub fn rem(op1: U256, op2: U256) -> U256 {
if op2 == U256::zero() {
U256::zero()
} else {
op1.rem(op2)
}
}
pub fn srem(op1: U256, op2: U256) -> U256 {
if op2 == U256::zero() {
U256::zero()
} else {
let op1: I256 = op1.into();
let op2: I256 = op2.into();
let ret = op1.rem(op2);
ret.into()
}
}
pub fn addmod(op1: U256, op2: U256, op3: U256) -> U256 {
let op1: U512 = op1.into();
let op2: U512 = op2.into();
let op3: U512 = op3.into();
if op3 == U512::zero() {
U256::zero()
} else {
let v = (op1 + op2) % op3;
v.try_into()
.expect("op3 is less than U256::max_value(), thus it never overflows; qed")
}
}
pub fn mulmod(op1: U256, op2: U256, op3: U256) -> U256 {
let op1: U512 = op1.into();
let op2: U512 = op2.into();
let op3: U512 = op3.into();
if op3 == U512::zero() {
U256::zero()
} else {
let v = (op1 * op2) % op3;
v.try_into()
.expect("op3 is less than U256::max_value(), thus it never overflows; qed")
}
}
pub fn exp(op1: U256, op2: U256) -> U256 {
let mut op1 = op1;
let mut op2 = op2;
let mut r: U256 = 1.into();
while op2 != 0.into() {
if op2 & 1.into() != 0.into() {
r = r.overflowing_mul(op1).0;
}
op2 >>= 1;
op1 = op1.overflowing_mul(op1).0;
}
r
}
pub fn signextend(op1: U256, op2: U256) -> U256 {
if op1 > U256::from(32) {
op2
} else {
let mut ret = U256::zero();
let len: usize = op1.as_usize();
let t: usize = 8 * (len + 1) - 1;
let t_bit_mask = U256::one() << t;
let t_value = (op2 & t_bit_mask) >> t;
for i in 0..256 {
let bit_mask = U256::one() << i;
let i_value = (op2 & bit_mask) >> i;
if i <= t {
ret = ret.overflowing_add(i_value << i).0;
} else {
ret = ret.overflowing_add(t_value << i).0;
}
}
ret
}
}
| 23.495238 | 87 | 0.478719 |
7443522f406b4e93d0c916cb482aaf5e3617b074 | 1,370 | rs | Rust | engine/crates/game_tiles/src/render/entity.rs | TehPers/WasmGame | 54eaee14b1ce69425fb1d01a29472b96609fbb99 | [
"MIT"
] | 1 | 2021-05-03T04:32:43.000Z | 2021-05-03T04:32:43.000Z | engine/crates/game_tiles/src/render/entity.rs | TehPers/WasmGame | 54eaee14b1ce69425fb1d01a29472b96609fbb99 | [
"MIT"
] | null | null | null | engine/crates/game_tiles/src/render/entity.rs | TehPers/WasmGame | 54eaee14b1ce69425fb1d01a29472b96609fbb99 | [
"MIT"
] | null | null | null | use crate::{
render::{
pipeline::{REGION_MESH_HANDLE, REGION_PIPELINE_HANDLE, REGION_TEXTURE_ATLAS_HANDLE},
RegionData,
},
RegionWorldPosition,
};
use game_lib::bevy::{
ecs as bevy_ecs,
prelude::*,
render::{pipeline::RenderPipeline, render_graph::base::MainPass},
};
#[derive(Clone, Debug, Bundle)]
pub struct RegionBundle {
pub position: RegionWorldPosition,
pub mesh: Handle<Mesh>,
pub region_data: RegionData,
pub texture_atlas: Handle<TextureAtlas>,
pub main_pass: MainPass,
pub draw: Draw,
pub visible: Visible,
pub render_pipelines: RenderPipelines,
pub transform: Transform,
pub global_transform: GlobalTransform,
}
impl RegionBundle {
pub fn new_defaults(region_data: RegionData) -> Self {
RegionBundle {
render_pipelines: RenderPipelines::from_pipelines(vec![RenderPipeline::new(
REGION_PIPELINE_HANDLE.typed(),
)]),
mesh: REGION_MESH_HANDLE.typed(),
texture_atlas: REGION_TEXTURE_ATLAS_HANDLE.typed(),
region_data,
position: Default::default(),
main_pass: Default::default(),
draw: Default::default(),
visible: Default::default(),
transform: Default::default(),
global_transform: Default::default(),
}
}
}
| 29.782609 | 92 | 0.636496 |
9a36bedcd15f83bb3b7d4436f641c5160caa3870 | 555 | css | CSS | src/Assets/css/fonts.css | Izsiebelle/virtual-hackathon | ec9edbdb987fba7156eb30a4c2da43a95b60b3cd | [
"MIT"
] | 2 | 2020-04-30T03:57:03.000Z | 2020-04-30T16:55:57.000Z | src/Assets/css/fonts.css | Izsiebelle/virtual-hackathon | ec9edbdb987fba7156eb30a4c2da43a95b60b3cd | [
"MIT"
] | null | null | null | src/Assets/css/fonts.css | Izsiebelle/virtual-hackathon | ec9edbdb987fba7156eb30a4c2da43a95b60b3cd | [
"MIT"
] | null | null | null | /* @font-face */
@font-face {
font-family: "Athene";
src: url(../fonts/Athene.otf);
}
@font-face {
font-family: "KGAllofMe";
src: url(../fonts/KGAllofMe.ttf);
}
@font-face {
font-family: "KGBeneath";
src: url(../fonts/KGBeneathYourBeautiful.ttf);
}
@font-face {
font-family: "KGBeneathBold";
src: url(../fonts/KGBeneathYourBeautifulChunk.ttf);
}
@font-face {
font-family: "KGEyes";
src: url(../fonts/KGEyesWideOpen.ttf);
}
@font-face {
font-family: "Raleway";
src: url(../fonts/Raleway-Regular.ttf);
} | 17.903226 | 55 | 0.616216 |
e5907f4be00c10d8e7211fd7d9eb519fba7c718f | 685 | kt | Kotlin | models/src/main/java/com/tink/model/misc/ExactNumber.kt | mohan88/tink-core-android | 0a541a3bae9030fca6adc03e10ebac7ab623e4eb | [
"MIT"
] | null | null | null | models/src/main/java/com/tink/model/misc/ExactNumber.kt | mohan88/tink-core-android | 0a541a3bae9030fca6adc03e10ebac7ab623e4eb | [
"MIT"
] | 4 | 2022-01-19T11:03:51.000Z | 2022-03-31T12:15:55.000Z | models/src/main/java/com/tink/model/misc/ExactNumber.kt | mohan88/tink-core-android | 0a541a3bae9030fca6adc03e10ebac7ab623e4eb | [
"MIT"
] | 4 | 2020-03-20T08:59:18.000Z | 2021-11-01T08:40:39.000Z | package com.tink.model.misc
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
import java.math.BigDecimal
@Parcelize
data class ExactNumber(
val unscaledValue: Long,
val scale: Long
) : Comparable<ExactNumber>, Parcelable {
constructor(double: Double) : this(BigDecimal.valueOf(double))
constructor(long: Long) : this(long, 0)
constructor(bigDecimal: BigDecimal) : this(
bigDecimal.unscaledValue().toLong(),
bigDecimal.scale().toLong()
)
fun toBigDecimal() = BigDecimal(unscaledValue.toBigInteger(), scale.toInt())
override fun compareTo(other: ExactNumber): Int = toBigDecimal().compareTo(other.toBigDecimal())
} | 29.782609 | 100 | 0.728467 |
f032f5682ff854fa0ff473b57318dabded843709 | 1,823 | js | JavaScript | shared/reducers/states/health-controls-state.js | Proyecto-de-Software/2017_grupo74 | ffccd1ea1e9a3e084151014417df5e83bc1fb7e0 | [
"MIT"
] | 1 | 2018-07-15T22:51:34.000Z | 2018-07-15T22:51:34.000Z | shared/reducers/states/health-controls-state.js | hnrg/hnrg | ffccd1ea1e9a3e084151014417df5e83bc1fb7e0 | [
"MIT"
] | 6 | 2020-07-17T18:52:14.000Z | 2022-02-12T17:05:32.000Z | shared/reducers/states/health-controls-state.js | Proyecto-de-Software/2017_grupo74 | ffccd1ea1e9a3e084151014417df5e83bc1fb7e0 | [
"MIT"
] | 1 | 2018-07-15T22:51:37.000Z | 2018-07-15T22:51:37.000Z | export default {
originalHealthControl: {
id: '',
date: '',
weight: null,
pc: null,
ppc: null,
height: null,
completeVaccines: null,
vaccinesObservations: '',
accordingMaturationContext: null,
maturationObservations: '',
commonPhysicalExamination: null,
physicalExaminationObservations: '',
feeding: '',
generalObservations: '',
patient: null,
user: null,
active: null,
},
totalCount: 0,
count: 0,
healthControls: null,
disabled: false,
error: null,
success: null,
isValid: false,
isFetching: false,
fields: {
date: '',
dateHasError: false,
dateErrorMsg: '',
weight: null,
weightHasError: false,
weightErrorMsg: '',
pc: null,
pcHasError: false,
pcErrorMsg: '',
ppc: null,
ppcHasError: false,
ppcErrorMsg: '',
height: null,
heightHasError: false,
heightErrorMsg: '',
completeVaccines: false,
completeVaccinesHasError: false,
completeVaccinesErrorMsg: '',
vaccinesObservations: '',
vaccinesObservationsHasError: false,
vaccinesObservationsErrorMsg: '',
accordingMaturationContext: false,
accordingMaturationContextHasError: false,
accordingMaturationContextErrorMsg: '',
maturationObservations: '',
maturationObservationsHasError: false,
maturationObservationsErrorMsg: '',
commonPhysicalExamination: false,
commonPhysicalExaminationHasError: false,
commonPhysicalExaminationErrorMsg: '',
physicalExaminationObservations: '',
physicalExaminationObservationsHasError: false,
physicalExaminationObservationsErrorMsg: '',
feeding: '',
feedingHasError: false,
feedingErrorMsg: '',
generalObservations: '',
generalObservationsHasError: false,
generalObservationsErrorMsg: '',
},
};
| 25.676056 | 51 | 0.683489 |
d094590557e0f0c2af1d8025ae78deeaacdc744c | 2,747 | sql | SQL | CreateWithAdrTest.sql | skreebydba/AdrDemo | 0723b3ae068e7b7d55ff41b25f5b176c0dcb1d4f | [
"MIT"
] | null | null | null | CreateWithAdrTest.sql | skreebydba/AdrDemo | 0723b3ae068e7b7d55ff41b25f5b176c0dcb1d4f | [
"MIT"
] | null | null | null | CreateWithAdrTest.sql | skreebydba/AdrDemo | 0723b3ae068e7b7d55ff41b25f5b176c0dcb1d4f | [
"MIT"
] | null | null | null | CREATE DATABASE [WithAdrTest]
CONTAINMENT = NONE
ON PRIMARY
( NAME = N'WithAdrTest', FILENAME = N'F:\data\WithAdrTest.mdf' , SIZE = 8388608KB , FILEGROWTH = 1048576KB )
LOG ON
( NAME = N'WithAdrTest_log', FILENAME = N'G:\log\WithAdrTest_log.ldf' , SIZE = 8388608KB , FILEGROWTH = 1048576KB )
GO
ALTER DATABASE [WithAdrTest] SET COMPATIBILITY_LEVEL = 150
GO
ALTER DATABASE [WithAdrTest] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [WithAdrTest] SET ANSI_NULLS OFF
GO
ALTER DATABASE [WithAdrTest] SET ANSI_PADDING OFF
GO
ALTER DATABASE [WithAdrTest] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [WithAdrTest] SET ARITHABORT OFF
GO
ALTER DATABASE [WithAdrTest] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [WithAdrTest] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [WithAdrTest] SET AUTO_CREATE_STATISTICS ON(INCREMENTAL = OFF)
GO
ALTER DATABASE [WithAdrTest] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [WithAdrTest] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [WithAdrTest] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [WithAdrTest] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [WithAdrTest] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [WithAdrTest] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [WithAdrTest] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [WithAdrTest] SET DISABLE_BROKER
GO
ALTER DATABASE [WithAdrTest] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [WithAdrTest] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [WithAdrTest] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [WithAdrTest] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [WithAdrTest] SET READ_WRITE
GO
ALTER DATABASE [WithAdrTest] SET RECOVERY FULL
GO
ALTER DATABASE [WithAdrTest] SET MULTI_USER
GO
ALTER DATABASE [WithAdrTest] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [WithAdrTest] SET TARGET_RECOVERY_TIME = 60 SECONDS
GO
ALTER DATABASE [WithAdrTest] SET DELAYED_DURABILITY = DISABLED
GO
USE [WithAdrTest]
GO
ALTER DATABASE SCOPED CONFIGURATION SET LEGACY_CARDINALITY_ESTIMATION = Off;
GO
ALTER DATABASE SCOPED CONFIGURATION FOR SECONDARY SET LEGACY_CARDINALITY_ESTIMATION = Primary;
GO
ALTER DATABASE SCOPED CONFIGURATION SET MAXDOP = 0;
GO
ALTER DATABASE SCOPED CONFIGURATION FOR SECONDARY SET MAXDOP = PRIMARY;
GO
ALTER DATABASE SCOPED CONFIGURATION SET PARAMETER_SNIFFING = On;
GO
ALTER DATABASE SCOPED CONFIGURATION FOR SECONDARY SET PARAMETER_SNIFFING = Primary;
GO
ALTER DATABASE SCOPED CONFIGURATION SET QUERY_OPTIMIZER_HOTFIXES = Off;
GO
ALTER DATABASE SCOPED CONFIGURATION FOR SECONDARY SET QUERY_OPTIMIZER_HOTFIXES = Primary;
GO
USE [WithAdrTest]
GO
IF NOT EXISTS (SELECT name FROM sys.filegroups WHERE is_default=1 AND name = N'PRIMARY') ALTER DATABASE [WithAdrTest] MODIFY FILEGROUP [PRIMARY] DEFAULT
GO
| 32.702381 | 152 | 0.815799 |
325229fbeb1e887370c75401891d6794521fb2cd | 360 | asm | Assembly | oeis/004/A004517.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/004/A004517.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/004/A004517.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A004517: Generalized nim sum n + n in base 7.
; Submitted by Jamie Morken(s3)
; 0,2,4,6,1,3,5,14,16,18,20,15,17,19,28,30,32,34,29,31,33,42,44,46,48,43,45,47,7,9,11,13,8,10,12,21,23,25,27,22,24,26,35,37,39,41,36,38,40,98,100,102,104,99,101,103,112
mov $3,1
lpb $0
mov $2,$0
div $0,7
mul $2,9
mod $2,7
mul $2,$3
add $1,$2
mul $3,7
lpe
mov $0,$1
| 22.5 | 168 | 0.608333 |
ddfcbbeff18a3b53e3ac3e0f8ca25ea773cfad69 | 49,850 | go | Go | codegen/go/xr/63x/cisco_ios_xr_ipv4_bgp_oper/bgp/instances/instance/instance_active/vrfs/vrf/update_inbound_error_neighbors/update_inbound_error_neighbor/bgp_upderr_nbr_bag.pb.go | cisco-ie/cisco-proto | 9cc3967cb1cabbb3e9f92f2c46ed96edf8a0a78b | [
"Apache-2.0"
] | 6 | 2019-06-06T04:30:27.000Z | 2021-02-21T22:41:00.000Z | codegen/go/xr/63x/cisco_ios_xr_ipv4_bgp_oper/bgp/instances/instance/instance_active/vrfs/vrf/update_inbound_error_neighbors/update_inbound_error_neighbor/bgp_upderr_nbr_bag.pb.go | cisco-ie/cisco-proto | 9cc3967cb1cabbb3e9f92f2c46ed96edf8a0a78b | [
"Apache-2.0"
] | 3 | 2019-04-01T23:07:32.000Z | 2019-06-04T13:42:52.000Z | codegen/go/xr/64x/cisco_ios_xr_ipv4_bgp_oper/bgp/instances/instance/instance_active/vrfs/vrf/update_inbound_error_neighbors/update_inbound_error_neighbor/bgp_upderr_nbr_bag.pb.go | cisco-ie/cisco-proto | 9cc3967cb1cabbb3e9f92f2c46ed96edf8a0a78b | [
"Apache-2.0"
] | 1 | 2020-02-28T21:16:30.000Z | 2020-02-28T21:16:30.000Z | /*
Copyright 2019 Cisco Systems
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: bgp_upderr_nbr_bag.proto
package cisco_ios_xr_ipv4_bgp_oper_bgp_instances_instance_instance_active_vrfs_vrf_update_inbound_error_neighbors_update_inbound_error_neighbor
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type BgpUpderrNbrBag_KEYS struct {
InstanceName string `protobuf:"bytes,1,opt,name=instance_name,json=instanceName,proto3" json:"instance_name,omitempty"`
VrfName string `protobuf:"bytes,2,opt,name=vrf_name,json=vrfName,proto3" json:"vrf_name,omitempty"`
NeighborAddress string `protobuf:"bytes,3,opt,name=neighbor_address,json=neighborAddress,proto3" json:"neighbor_address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpUpderrNbrBag_KEYS) Reset() { *m = BgpUpderrNbrBag_KEYS{} }
func (m *BgpUpderrNbrBag_KEYS) String() string { return proto.CompactTextString(m) }
func (*BgpUpderrNbrBag_KEYS) ProtoMessage() {}
func (*BgpUpderrNbrBag_KEYS) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{0}
}
func (m *BgpUpderrNbrBag_KEYS) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpUpderrNbrBag_KEYS.Unmarshal(m, b)
}
func (m *BgpUpderrNbrBag_KEYS) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpUpderrNbrBag_KEYS.Marshal(b, m, deterministic)
}
func (m *BgpUpderrNbrBag_KEYS) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpUpderrNbrBag_KEYS.Merge(m, src)
}
func (m *BgpUpderrNbrBag_KEYS) XXX_Size() int {
return xxx_messageInfo_BgpUpderrNbrBag_KEYS.Size(m)
}
func (m *BgpUpderrNbrBag_KEYS) XXX_DiscardUnknown() {
xxx_messageInfo_BgpUpderrNbrBag_KEYS.DiscardUnknown(m)
}
var xxx_messageInfo_BgpUpderrNbrBag_KEYS proto.InternalMessageInfo
func (m *BgpUpderrNbrBag_KEYS) GetInstanceName() string {
if m != nil {
return m.InstanceName
}
return ""
}
func (m *BgpUpderrNbrBag_KEYS) GetVrfName() string {
if m != nil {
return m.VrfName
}
return ""
}
func (m *BgpUpderrNbrBag_KEYS) GetNeighborAddress() string {
if m != nil {
return m.NeighborAddress
}
return ""
}
type BgpL2VpnAddrT struct {
L2VpnAddress []uint32 `protobuf:"varint,1,rep,packed,name=l2vpn_address,json=l2vpnAddress,proto3" json:"l2vpn_address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpL2VpnAddrT) Reset() { *m = BgpL2VpnAddrT{} }
func (m *BgpL2VpnAddrT) String() string { return proto.CompactTextString(m) }
func (*BgpL2VpnAddrT) ProtoMessage() {}
func (*BgpL2VpnAddrT) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{1}
}
func (m *BgpL2VpnAddrT) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpL2VpnAddrT.Unmarshal(m, b)
}
func (m *BgpL2VpnAddrT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpL2VpnAddrT.Marshal(b, m, deterministic)
}
func (m *BgpL2VpnAddrT) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpL2VpnAddrT.Merge(m, src)
}
func (m *BgpL2VpnAddrT) XXX_Size() int {
return xxx_messageInfo_BgpL2VpnAddrT.Size(m)
}
func (m *BgpL2VpnAddrT) XXX_DiscardUnknown() {
xxx_messageInfo_BgpL2VpnAddrT.DiscardUnknown(m)
}
var xxx_messageInfo_BgpL2VpnAddrT proto.InternalMessageInfo
func (m *BgpL2VpnAddrT) GetL2VpnAddress() []uint32 {
if m != nil {
return m.L2VpnAddress
}
return nil
}
type BgpL2VpnMspwAddrT struct {
L2VpnAddress []uint32 `protobuf:"varint,1,rep,packed,name=l2vpn_address,json=l2vpnAddress,proto3" json:"l2vpn_address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpL2VpnMspwAddrT) Reset() { *m = BgpL2VpnMspwAddrT{} }
func (m *BgpL2VpnMspwAddrT) String() string { return proto.CompactTextString(m) }
func (*BgpL2VpnMspwAddrT) ProtoMessage() {}
func (*BgpL2VpnMspwAddrT) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{2}
}
func (m *BgpL2VpnMspwAddrT) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpL2VpnMspwAddrT.Unmarshal(m, b)
}
func (m *BgpL2VpnMspwAddrT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpL2VpnMspwAddrT.Marshal(b, m, deterministic)
}
func (m *BgpL2VpnMspwAddrT) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpL2VpnMspwAddrT.Merge(m, src)
}
func (m *BgpL2VpnMspwAddrT) XXX_Size() int {
return xxx_messageInfo_BgpL2VpnMspwAddrT.Size(m)
}
func (m *BgpL2VpnMspwAddrT) XXX_DiscardUnknown() {
xxx_messageInfo_BgpL2VpnMspwAddrT.DiscardUnknown(m)
}
var xxx_messageInfo_BgpL2VpnMspwAddrT proto.InternalMessageInfo
func (m *BgpL2VpnMspwAddrT) GetL2VpnAddress() []uint32 {
if m != nil {
return m.L2VpnAddress
}
return nil
}
type BgpIpv4SrpolicyAddrT struct {
Ipv4SrpolicyAddress []uint32 `protobuf:"varint,1,rep,packed,name=ipv4_srpolicy_address,json=ipv4SrpolicyAddress,proto3" json:"ipv4_srpolicy_address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpIpv4SrpolicyAddrT) Reset() { *m = BgpIpv4SrpolicyAddrT{} }
func (m *BgpIpv4SrpolicyAddrT) String() string { return proto.CompactTextString(m) }
func (*BgpIpv4SrpolicyAddrT) ProtoMessage() {}
func (*BgpIpv4SrpolicyAddrT) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{3}
}
func (m *BgpIpv4SrpolicyAddrT) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpIpv4SrpolicyAddrT.Unmarshal(m, b)
}
func (m *BgpIpv4SrpolicyAddrT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpIpv4SrpolicyAddrT.Marshal(b, m, deterministic)
}
func (m *BgpIpv4SrpolicyAddrT) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpIpv4SrpolicyAddrT.Merge(m, src)
}
func (m *BgpIpv4SrpolicyAddrT) XXX_Size() int {
return xxx_messageInfo_BgpIpv4SrpolicyAddrT.Size(m)
}
func (m *BgpIpv4SrpolicyAddrT) XXX_DiscardUnknown() {
xxx_messageInfo_BgpIpv4SrpolicyAddrT.DiscardUnknown(m)
}
var xxx_messageInfo_BgpIpv4SrpolicyAddrT proto.InternalMessageInfo
func (m *BgpIpv4SrpolicyAddrT) GetIpv4SrpolicyAddress() []uint32 {
if m != nil {
return m.Ipv4SrpolicyAddress
}
return nil
}
type BgpIpv6SrpolicyAddrT struct {
Ipv6SrpolicyAddress []uint32 `protobuf:"varint,1,rep,packed,name=ipv6_srpolicy_address,json=ipv6SrpolicyAddress,proto3" json:"ipv6_srpolicy_address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpIpv6SrpolicyAddrT) Reset() { *m = BgpIpv6SrpolicyAddrT{} }
func (m *BgpIpv6SrpolicyAddrT) String() string { return proto.CompactTextString(m) }
func (*BgpIpv6SrpolicyAddrT) ProtoMessage() {}
func (*BgpIpv6SrpolicyAddrT) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{4}
}
func (m *BgpIpv6SrpolicyAddrT) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpIpv6SrpolicyAddrT.Unmarshal(m, b)
}
func (m *BgpIpv6SrpolicyAddrT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpIpv6SrpolicyAddrT.Marshal(b, m, deterministic)
}
func (m *BgpIpv6SrpolicyAddrT) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpIpv6SrpolicyAddrT.Merge(m, src)
}
func (m *BgpIpv6SrpolicyAddrT) XXX_Size() int {
return xxx_messageInfo_BgpIpv6SrpolicyAddrT.Size(m)
}
func (m *BgpIpv6SrpolicyAddrT) XXX_DiscardUnknown() {
xxx_messageInfo_BgpIpv6SrpolicyAddrT.DiscardUnknown(m)
}
var xxx_messageInfo_BgpIpv6SrpolicyAddrT proto.InternalMessageInfo
func (m *BgpIpv6SrpolicyAddrT) GetIpv6SrpolicyAddress() []uint32 {
if m != nil {
return m.Ipv6SrpolicyAddress
}
return nil
}
type BgpAddrtype struct {
Afi string `protobuf:"bytes,1,opt,name=afi,proto3" json:"afi,omitempty"`
Ipv4Address string `protobuf:"bytes,2,opt,name=ipv4_address,json=ipv4Address,proto3" json:"ipv4_address,omitempty"`
Ipv4McastAddress string `protobuf:"bytes,3,opt,name=ipv4_mcast_address,json=ipv4McastAddress,proto3" json:"ipv4_mcast_address,omitempty"`
Ipv4LabelAddress string `protobuf:"bytes,4,opt,name=ipv4_label_address,json=ipv4LabelAddress,proto3" json:"ipv4_label_address,omitempty"`
Ipv4TunnelAddress string `protobuf:"bytes,5,opt,name=ipv4_tunnel_address,json=ipv4TunnelAddress,proto3" json:"ipv4_tunnel_address,omitempty"`
Ipv4MdtAddress string `protobuf:"bytes,6,opt,name=ipv4_mdt_address,json=ipv4MdtAddress,proto3" json:"ipv4_mdt_address,omitempty"`
Ipv4VpnAddress string `protobuf:"bytes,7,opt,name=ipv4vpn_address,json=ipv4vpnAddress,proto3" json:"ipv4vpn_address,omitempty"`
Ipv4VpnaMcastddress string `protobuf:"bytes,8,opt,name=ipv4vpna_mcastddress,json=ipv4vpnaMcastddress,proto3" json:"ipv4vpna_mcastddress,omitempty"`
Ipv6Address string `protobuf:"bytes,9,opt,name=ipv6_address,json=ipv6Address,proto3" json:"ipv6_address,omitempty"`
Ipv6McastAddress string `protobuf:"bytes,10,opt,name=ipv6_mcast_address,json=ipv6McastAddress,proto3" json:"ipv6_mcast_address,omitempty"`
Ipv6LabelAddress string `protobuf:"bytes,11,opt,name=ipv6_label_address,json=ipv6LabelAddress,proto3" json:"ipv6_label_address,omitempty"`
Ipv6VpnAddress string `protobuf:"bytes,12,opt,name=ipv6vpn_address,json=ipv6vpnAddress,proto3" json:"ipv6vpn_address,omitempty"`
Ipv6VpnMcastAddress string `protobuf:"bytes,13,opt,name=ipv6vpn_mcast_address,json=ipv6vpnMcastAddress,proto3" json:"ipv6vpn_mcast_address,omitempty"`
L2VpnVplsAddress *BgpL2VpnAddrT `protobuf:"bytes,14,opt,name=l2vpn_vpls_address,json=l2vpnVplsAddress,proto3" json:"l2vpn_vpls_address,omitempty"`
RtConstraintAddress string `protobuf:"bytes,15,opt,name=rt_constraint_address,json=rtConstraintAddress,proto3" json:"rt_constraint_address,omitempty"`
Ipv6MvpnAddress string `protobuf:"bytes,16,opt,name=ipv6mvpn_address,json=ipv6mvpnAddress,proto3" json:"ipv6mvpn_address,omitempty"`
Ipv4MvpnAddress string `protobuf:"bytes,17,opt,name=ipv4mvpn_address,json=ipv4mvpnAddress,proto3" json:"ipv4mvpn_address,omitempty"`
L2VpnEvpnAddress string `protobuf:"bytes,18,opt,name=l2vpn_evpn_address,json=l2vpnEvpnAddress,proto3" json:"l2vpn_evpn_address,omitempty"`
LsLsAddress string `protobuf:"bytes,19,opt,name=ls_ls_address,json=lsLsAddress,proto3" json:"ls_ls_address,omitempty"`
L2VpnMspwAddress *BgpL2VpnMspwAddrT `protobuf:"bytes,20,opt,name=l2vpn_mspw_address,json=l2vpnMspwAddress,proto3" json:"l2vpn_mspw_address,omitempty"`
Ipv4FlowspecAddress string `protobuf:"bytes,21,opt,name=ipv4_flowspec_address,json=ipv4FlowspecAddress,proto3" json:"ipv4_flowspec_address,omitempty"`
Ipv6FlowspecAddress string `protobuf:"bytes,22,opt,name=ipv6_flowspec_address,json=ipv6FlowspecAddress,proto3" json:"ipv6_flowspec_address,omitempty"`
Ipv4VpnFlowspecAddress string `protobuf:"bytes,23,opt,name=ipv4vpn_flowspec_address,json=ipv4vpnFlowspecAddress,proto3" json:"ipv4vpn_flowspec_address,omitempty"`
Ipv6VpnFlowspecAddress string `protobuf:"bytes,24,opt,name=ipv6vpn_flowspec_address,json=ipv6vpnFlowspecAddress,proto3" json:"ipv6vpn_flowspec_address,omitempty"`
Ipv4SrPolicyAddress *BgpIpv4SrpolicyAddrT `protobuf:"bytes,25,opt,name=ipv4_sr_policy_address,json=ipv4SrPolicyAddress,proto3" json:"ipv4_sr_policy_address,omitempty"`
Ipv6SrPolicyAddress *BgpIpv6SrpolicyAddrT `protobuf:"bytes,26,opt,name=ipv6_sr_policy_address,json=ipv6SrPolicyAddress,proto3" json:"ipv6_sr_policy_address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpAddrtype) Reset() { *m = BgpAddrtype{} }
func (m *BgpAddrtype) String() string { return proto.CompactTextString(m) }
func (*BgpAddrtype) ProtoMessage() {}
func (*BgpAddrtype) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{5}
}
func (m *BgpAddrtype) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpAddrtype.Unmarshal(m, b)
}
func (m *BgpAddrtype) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpAddrtype.Marshal(b, m, deterministic)
}
func (m *BgpAddrtype) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpAddrtype.Merge(m, src)
}
func (m *BgpAddrtype) XXX_Size() int {
return xxx_messageInfo_BgpAddrtype.Size(m)
}
func (m *BgpAddrtype) XXX_DiscardUnknown() {
xxx_messageInfo_BgpAddrtype.DiscardUnknown(m)
}
var xxx_messageInfo_BgpAddrtype proto.InternalMessageInfo
func (m *BgpAddrtype) GetAfi() string {
if m != nil {
return m.Afi
}
return ""
}
func (m *BgpAddrtype) GetIpv4Address() string {
if m != nil {
return m.Ipv4Address
}
return ""
}
func (m *BgpAddrtype) GetIpv4McastAddress() string {
if m != nil {
return m.Ipv4McastAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4LabelAddress() string {
if m != nil {
return m.Ipv4LabelAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4TunnelAddress() string {
if m != nil {
return m.Ipv4TunnelAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4MdtAddress() string {
if m != nil {
return m.Ipv4MdtAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4VpnAddress() string {
if m != nil {
return m.Ipv4VpnAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4VpnaMcastddress() string {
if m != nil {
return m.Ipv4VpnaMcastddress
}
return ""
}
func (m *BgpAddrtype) GetIpv6Address() string {
if m != nil {
return m.Ipv6Address
}
return ""
}
func (m *BgpAddrtype) GetIpv6McastAddress() string {
if m != nil {
return m.Ipv6McastAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv6LabelAddress() string {
if m != nil {
return m.Ipv6LabelAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv6VpnAddress() string {
if m != nil {
return m.Ipv6VpnAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv6VpnMcastAddress() string {
if m != nil {
return m.Ipv6VpnMcastAddress
}
return ""
}
func (m *BgpAddrtype) GetL2VpnVplsAddress() *BgpL2VpnAddrT {
if m != nil {
return m.L2VpnVplsAddress
}
return nil
}
func (m *BgpAddrtype) GetRtConstraintAddress() string {
if m != nil {
return m.RtConstraintAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv6MvpnAddress() string {
if m != nil {
return m.Ipv6MvpnAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4MvpnAddress() string {
if m != nil {
return m.Ipv4MvpnAddress
}
return ""
}
func (m *BgpAddrtype) GetL2VpnEvpnAddress() string {
if m != nil {
return m.L2VpnEvpnAddress
}
return ""
}
func (m *BgpAddrtype) GetLsLsAddress() string {
if m != nil {
return m.LsLsAddress
}
return ""
}
func (m *BgpAddrtype) GetL2VpnMspwAddress() *BgpL2VpnMspwAddrT {
if m != nil {
return m.L2VpnMspwAddress
}
return nil
}
func (m *BgpAddrtype) GetIpv4FlowspecAddress() string {
if m != nil {
return m.Ipv4FlowspecAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv6FlowspecAddress() string {
if m != nil {
return m.Ipv6FlowspecAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4VpnFlowspecAddress() string {
if m != nil {
return m.Ipv4VpnFlowspecAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv6VpnFlowspecAddress() string {
if m != nil {
return m.Ipv6VpnFlowspecAddress
}
return ""
}
func (m *BgpAddrtype) GetIpv4SrPolicyAddress() *BgpIpv4SrpolicyAddrT {
if m != nil {
return m.Ipv4SrPolicyAddress
}
return nil
}
func (m *BgpAddrtype) GetIpv6SrPolicyAddress() *BgpIpv6SrpolicyAddrT {
if m != nil {
return m.Ipv6SrPolicyAddress
}
return nil
}
type BgpTimespec struct {
Seconds uint32 `protobuf:"varint,1,opt,name=seconds,proto3" json:"seconds,omitempty"`
Nanoseconds uint32 `protobuf:"varint,2,opt,name=nanoseconds,proto3" json:"nanoseconds,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpTimespec) Reset() { *m = BgpTimespec{} }
func (m *BgpTimespec) String() string { return proto.CompactTextString(m) }
func (*BgpTimespec) ProtoMessage() {}
func (*BgpTimespec) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{6}
}
func (m *BgpTimespec) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpTimespec.Unmarshal(m, b)
}
func (m *BgpTimespec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpTimespec.Marshal(b, m, deterministic)
}
func (m *BgpTimespec) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpTimespec.Merge(m, src)
}
func (m *BgpTimespec) XXX_Size() int {
return xxx_messageInfo_BgpTimespec.Size(m)
}
func (m *BgpTimespec) XXX_DiscardUnknown() {
xxx_messageInfo_BgpTimespec.DiscardUnknown(m)
}
var xxx_messageInfo_BgpTimespec proto.InternalMessageInfo
func (m *BgpTimespec) GetSeconds() uint32 {
if m != nil {
return m.Seconds
}
return 0
}
func (m *BgpTimespec) GetNanoseconds() uint32 {
if m != nil {
return m.Nanoseconds
}
return 0
}
type BgpUpderrResetDataBag struct {
UpdateErrorResetReason string `protobuf:"bytes,1,opt,name=update_error_reset_reason,json=updateErrorResetReason,proto3" json:"update_error_reset_reason,omitempty"`
UpdateErrorResetNotificationCode uint32 `protobuf:"varint,2,opt,name=update_error_reset_notification_code,json=updateErrorResetNotificationCode,proto3" json:"update_error_reset_notification_code,omitempty"`
UpdateErrorResetNotificationSubCode uint32 `protobuf:"varint,3,opt,name=update_error_reset_notification_sub_code,json=updateErrorResetNotificationSubCode,proto3" json:"update_error_reset_notification_sub_code,omitempty"`
UpdateErrorResetNotificationData []byte `protobuf:"bytes,4,opt,name=update_error_reset_notification_data,json=updateErrorResetNotificationData,proto3" json:"update_error_reset_notification_data,omitempty"`
UpdateErrorResetNotificationDataLength uint32 `protobuf:"varint,5,opt,name=update_error_reset_notification_data_length,json=updateErrorResetNotificationDataLength,proto3" json:"update_error_reset_notification_data_length,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpUpderrResetDataBag) Reset() { *m = BgpUpderrResetDataBag{} }
func (m *BgpUpderrResetDataBag) String() string { return proto.CompactTextString(m) }
func (*BgpUpderrResetDataBag) ProtoMessage() {}
func (*BgpUpderrResetDataBag) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{7}
}
func (m *BgpUpderrResetDataBag) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpUpderrResetDataBag.Unmarshal(m, b)
}
func (m *BgpUpderrResetDataBag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpUpderrResetDataBag.Marshal(b, m, deterministic)
}
func (m *BgpUpderrResetDataBag) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpUpderrResetDataBag.Merge(m, src)
}
func (m *BgpUpderrResetDataBag) XXX_Size() int {
return xxx_messageInfo_BgpUpderrResetDataBag.Size(m)
}
func (m *BgpUpderrResetDataBag) XXX_DiscardUnknown() {
xxx_messageInfo_BgpUpderrResetDataBag.DiscardUnknown(m)
}
var xxx_messageInfo_BgpUpderrResetDataBag proto.InternalMessageInfo
func (m *BgpUpderrResetDataBag) GetUpdateErrorResetReason() string {
if m != nil {
return m.UpdateErrorResetReason
}
return ""
}
func (m *BgpUpderrResetDataBag) GetUpdateErrorResetNotificationCode() uint32 {
if m != nil {
return m.UpdateErrorResetNotificationCode
}
return 0
}
func (m *BgpUpderrResetDataBag) GetUpdateErrorResetNotificationSubCode() uint32 {
if m != nil {
return m.UpdateErrorResetNotificationSubCode
}
return 0
}
func (m *BgpUpderrResetDataBag) GetUpdateErrorResetNotificationData() []byte {
if m != nil {
return m.UpdateErrorResetNotificationData
}
return nil
}
func (m *BgpUpderrResetDataBag) GetUpdateErrorResetNotificationDataLength() uint32 {
if m != nil {
return m.UpdateErrorResetNotificationDataLength
}
return 0
}
type BgpUpderrElemBag struct {
UpdateAttributeFlags uint32 `protobuf:"varint,1,opt,name=update_attribute_flags,json=updateAttributeFlags,proto3" json:"update_attribute_flags,omitempty"`
UpdateAttributeCode uint32 `protobuf:"varint,2,opt,name=update_attribute_code,json=updateAttributeCode,proto3" json:"update_attribute_code,omitempty"`
UpdateAttributeLength uint32 `protobuf:"varint,3,opt,name=update_attribute_length,json=updateAttributeLength,proto3" json:"update_attribute_length,omitempty"`
UpdateErrorData []byte `protobuf:"bytes,4,opt,name=update_error_data,json=updateErrorData,proto3" json:"update_error_data,omitempty"`
UpdateErrorDataLength uint32 `protobuf:"varint,5,opt,name=update_error_data_length,json=updateErrorDataLength,proto3" json:"update_error_data_length,omitempty"`
UpdateErrorAction string `protobuf:"bytes,6,opt,name=update_error_action,json=updateErrorAction,proto3" json:"update_error_action,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpUpderrElemBag) Reset() { *m = BgpUpderrElemBag{} }
func (m *BgpUpderrElemBag) String() string { return proto.CompactTextString(m) }
func (*BgpUpderrElemBag) ProtoMessage() {}
func (*BgpUpderrElemBag) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{8}
}
func (m *BgpUpderrElemBag) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpUpderrElemBag.Unmarshal(m, b)
}
func (m *BgpUpderrElemBag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpUpderrElemBag.Marshal(b, m, deterministic)
}
func (m *BgpUpderrElemBag) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpUpderrElemBag.Merge(m, src)
}
func (m *BgpUpderrElemBag) XXX_Size() int {
return xxx_messageInfo_BgpUpderrElemBag.Size(m)
}
func (m *BgpUpderrElemBag) XXX_DiscardUnknown() {
xxx_messageInfo_BgpUpderrElemBag.DiscardUnknown(m)
}
var xxx_messageInfo_BgpUpderrElemBag proto.InternalMessageInfo
func (m *BgpUpderrElemBag) GetUpdateAttributeFlags() uint32 {
if m != nil {
return m.UpdateAttributeFlags
}
return 0
}
func (m *BgpUpderrElemBag) GetUpdateAttributeCode() uint32 {
if m != nil {
return m.UpdateAttributeCode
}
return 0
}
func (m *BgpUpderrElemBag) GetUpdateAttributeLength() uint32 {
if m != nil {
return m.UpdateAttributeLength
}
return 0
}
func (m *BgpUpderrElemBag) GetUpdateErrorData() []byte {
if m != nil {
return m.UpdateErrorData
}
return nil
}
func (m *BgpUpderrElemBag) GetUpdateErrorDataLength() uint32 {
if m != nil {
return m.UpdateErrorDataLength
}
return 0
}
func (m *BgpUpderrElemBag) GetUpdateErrorAction() string {
if m != nil {
return m.UpdateErrorAction
}
return ""
}
type BgpUpderrMsgBag struct {
UpdateErrorFinalAction string `protobuf:"bytes,1,opt,name=update_error_final_action,json=updateErrorFinalAction,proto3" json:"update_error_final_action,omitempty"`
UpdateMessageTimestamp *BgpTimespec `protobuf:"bytes,2,opt,name=update_message_timestamp,json=updateMessageTimestamp,proto3" json:"update_message_timestamp,omitempty"`
UpdateAttributeDiscardCount uint32 `protobuf:"varint,3,opt,name=update_attribute_discard_count,json=updateAttributeDiscardCount,proto3" json:"update_attribute_discard_count,omitempty"`
UpdateMessageResetData *BgpUpderrResetDataBag `protobuf:"bytes,4,opt,name=update_message_reset_data,json=updateMessageResetData,proto3" json:"update_message_reset_data,omitempty"`
UpdateErrorElement []*BgpUpderrElemBag `protobuf:"bytes,5,rep,name=update_error_element,json=updateErrorElement,proto3" json:"update_error_element,omitempty"`
UpdateErrorNlriAddressFamily string `protobuf:"bytes,6,opt,name=update_error_nlri_address_family,json=updateErrorNlriAddressFamily,proto3" json:"update_error_nlri_address_family,omitempty"`
UpdateErrorNlriString string `protobuf:"bytes,7,opt,name=update_error_nlri_string,json=updateErrorNlriString,proto3" json:"update_error_nlri_string,omitempty"`
UpdateErrorNlriStringTruncated bool `protobuf:"varint,8,opt,name=update_error_nlri_string_truncated,json=updateErrorNlriStringTruncated,proto3" json:"update_error_nlri_string_truncated,omitempty"`
UpdateMessageData []uint32 `protobuf:"varint,9,rep,packed,name=update_message_data,json=updateMessageData,proto3" json:"update_message_data,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpUpderrMsgBag) Reset() { *m = BgpUpderrMsgBag{} }
func (m *BgpUpderrMsgBag) String() string { return proto.CompactTextString(m) }
func (*BgpUpderrMsgBag) ProtoMessage() {}
func (*BgpUpderrMsgBag) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{9}
}
func (m *BgpUpderrMsgBag) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpUpderrMsgBag.Unmarshal(m, b)
}
func (m *BgpUpderrMsgBag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpUpderrMsgBag.Marshal(b, m, deterministic)
}
func (m *BgpUpderrMsgBag) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpUpderrMsgBag.Merge(m, src)
}
func (m *BgpUpderrMsgBag) XXX_Size() int {
return xxx_messageInfo_BgpUpderrMsgBag.Size(m)
}
func (m *BgpUpderrMsgBag) XXX_DiscardUnknown() {
xxx_messageInfo_BgpUpderrMsgBag.DiscardUnknown(m)
}
var xxx_messageInfo_BgpUpderrMsgBag proto.InternalMessageInfo
func (m *BgpUpderrMsgBag) GetUpdateErrorFinalAction() string {
if m != nil {
return m.UpdateErrorFinalAction
}
return ""
}
func (m *BgpUpderrMsgBag) GetUpdateMessageTimestamp() *BgpTimespec {
if m != nil {
return m.UpdateMessageTimestamp
}
return nil
}
func (m *BgpUpderrMsgBag) GetUpdateAttributeDiscardCount() uint32 {
if m != nil {
return m.UpdateAttributeDiscardCount
}
return 0
}
func (m *BgpUpderrMsgBag) GetUpdateMessageResetData() *BgpUpderrResetDataBag {
if m != nil {
return m.UpdateMessageResetData
}
return nil
}
func (m *BgpUpderrMsgBag) GetUpdateErrorElement() []*BgpUpderrElemBag {
if m != nil {
return m.UpdateErrorElement
}
return nil
}
func (m *BgpUpderrMsgBag) GetUpdateErrorNlriAddressFamily() string {
if m != nil {
return m.UpdateErrorNlriAddressFamily
}
return ""
}
func (m *BgpUpderrMsgBag) GetUpdateErrorNlriString() string {
if m != nil {
return m.UpdateErrorNlriString
}
return ""
}
func (m *BgpUpderrMsgBag) GetUpdateErrorNlriStringTruncated() bool {
if m != nil {
return m.UpdateErrorNlriStringTruncated
}
return false
}
func (m *BgpUpderrMsgBag) GetUpdateMessageData() []uint32 {
if m != nil {
return m.UpdateMessageData
}
return nil
}
type BgpUpderrNbrBag struct {
UpdateVrfName string `protobuf:"bytes,50,opt,name=update_vrf_name,json=updateVrfName,proto3" json:"update_vrf_name,omitempty"`
UpdateNeighborAddress *BgpAddrtype `protobuf:"bytes,51,opt,name=update_neighbor_address,json=updateNeighborAddress,proto3" json:"update_neighbor_address,omitempty"`
UpdateErrorHandlingAvoidReset bool `protobuf:"varint,52,opt,name=update_error_handling_avoid_reset,json=updateErrorHandlingAvoidReset,proto3" json:"update_error_handling_avoid_reset,omitempty"`
TotalUpdateMessageCount uint32 `protobuf:"varint,53,opt,name=total_update_message_count,json=totalUpdateMessageCount,proto3" json:"total_update_message_count,omitempty"`
UpdateMalformedMessageCount uint32 `protobuf:"varint,54,opt,name=update_malformed_message_count,json=updateMalformedMessageCount,proto3" json:"update_malformed_message_count,omitempty"`
FirstUpdateMalformedTimestamp *BgpTimespec `protobuf:"bytes,55,opt,name=first_update_malformed_timestamp,json=firstUpdateMalformedTimestamp,proto3" json:"first_update_malformed_timestamp,omitempty"`
LastUpdateMalformedTimestamp *BgpTimespec `protobuf:"bytes,56,opt,name=last_update_malformed_timestamp,json=lastUpdateMalformedTimestamp,proto3" json:"last_update_malformed_timestamp,omitempty"`
LastUpdateMalformedAge uint32 `protobuf:"varint,57,opt,name=last_update_malformed_age,json=lastUpdateMalformedAge,proto3" json:"last_update_malformed_age,omitempty"`
UpdateMemoryAllocationFailCount uint32 `protobuf:"varint,58,opt,name=update_memory_allocation_fail_count,json=updateMemoryAllocationFailCount,proto3" json:"update_memory_allocation_fail_count,omitempty"`
FirstUpdateMemoryAllocationFailTimestamp *BgpTimespec `protobuf:"bytes,59,opt,name=first_update_memory_allocation_fail_timestamp,json=firstUpdateMemoryAllocationFailTimestamp,proto3" json:"first_update_memory_allocation_fail_timestamp,omitempty"`
LastUpdateMemoryAllocationFailTimestamp *BgpTimespec `protobuf:"bytes,60,opt,name=last_update_memory_allocation_fail_timestamp,json=lastUpdateMemoryAllocationFailTimestamp,proto3" json:"last_update_memory_allocation_fail_timestamp,omitempty"`
LastUpdateMemoryAllocationFailAge uint32 `protobuf:"varint,61,opt,name=last_update_memory_allocation_fail_age,json=lastUpdateMemoryAllocationFailAge,proto3" json:"last_update_memory_allocation_fail_age,omitempty"`
UpdateErrorHandlingResetCount uint32 `protobuf:"varint,62,opt,name=update_error_handling_reset_count,json=updateErrorHandlingResetCount,proto3" json:"update_error_handling_reset_count,omitempty"`
FirstUpdateErrorHandlingResetTimestamp *BgpTimespec `protobuf:"bytes,63,opt,name=first_update_error_handling_reset_timestamp,json=firstUpdateErrorHandlingResetTimestamp,proto3" json:"first_update_error_handling_reset_timestamp,omitempty"`
LastErrorHandlingResetTimestamp *BgpTimespec `protobuf:"bytes,64,opt,name=last_error_handling_reset_timestamp,json=lastErrorHandlingResetTimestamp,proto3" json:"last_error_handling_reset_timestamp,omitempty"`
LastErrorHandlingResetAge uint32 `protobuf:"varint,65,opt,name=last_error_handling_reset_age,json=lastErrorHandlingResetAge,proto3" json:"last_error_handling_reset_age,omitempty"`
UpdateErrorMessage []*BgpUpderrMsgBag `protobuf:"bytes,66,rep,name=update_error_message,json=updateErrorMessage,proto3" json:"update_error_message,omitempty"`
UpdateErrorMessageListCount uint32 `protobuf:"varint,67,opt,name=update_error_message_list_count,json=updateErrorMessageListCount,proto3" json:"update_error_message_list_count,omitempty"`
UpdateAttributeDiscardCount uint32 `protobuf:"varint,68,opt,name=update_attribute_discard_count,json=updateAttributeDiscardCount,proto3" json:"update_attribute_discard_count,omitempty"`
EstablishmentTotalUpdateMessageCount uint32 `protobuf:"varint,69,opt,name=establishment_total_update_message_count,json=establishmentTotalUpdateMessageCount,proto3" json:"establishment_total_update_message_count,omitempty"`
EstablishmentActionCount []uint32 `protobuf:"varint,70,rep,packed,name=establishment_action_count,json=establishmentActionCount,proto3" json:"establishment_action_count,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BgpUpderrNbrBag) Reset() { *m = BgpUpderrNbrBag{} }
func (m *BgpUpderrNbrBag) String() string { return proto.CompactTextString(m) }
func (*BgpUpderrNbrBag) ProtoMessage() {}
func (*BgpUpderrNbrBag) Descriptor() ([]byte, []int) {
return fileDescriptor_17e34e92c3784e38, []int{10}
}
func (m *BgpUpderrNbrBag) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BgpUpderrNbrBag.Unmarshal(m, b)
}
func (m *BgpUpderrNbrBag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BgpUpderrNbrBag.Marshal(b, m, deterministic)
}
func (m *BgpUpderrNbrBag) XXX_Merge(src proto.Message) {
xxx_messageInfo_BgpUpderrNbrBag.Merge(m, src)
}
func (m *BgpUpderrNbrBag) XXX_Size() int {
return xxx_messageInfo_BgpUpderrNbrBag.Size(m)
}
func (m *BgpUpderrNbrBag) XXX_DiscardUnknown() {
xxx_messageInfo_BgpUpderrNbrBag.DiscardUnknown(m)
}
var xxx_messageInfo_BgpUpderrNbrBag proto.InternalMessageInfo
func (m *BgpUpderrNbrBag) GetUpdateVrfName() string {
if m != nil {
return m.UpdateVrfName
}
return ""
}
func (m *BgpUpderrNbrBag) GetUpdateNeighborAddress() *BgpAddrtype {
if m != nil {
return m.UpdateNeighborAddress
}
return nil
}
func (m *BgpUpderrNbrBag) GetUpdateErrorHandlingAvoidReset() bool {
if m != nil {
return m.UpdateErrorHandlingAvoidReset
}
return false
}
func (m *BgpUpderrNbrBag) GetTotalUpdateMessageCount() uint32 {
if m != nil {
return m.TotalUpdateMessageCount
}
return 0
}
func (m *BgpUpderrNbrBag) GetUpdateMalformedMessageCount() uint32 {
if m != nil {
return m.UpdateMalformedMessageCount
}
return 0
}
func (m *BgpUpderrNbrBag) GetFirstUpdateMalformedTimestamp() *BgpTimespec {
if m != nil {
return m.FirstUpdateMalformedTimestamp
}
return nil
}
func (m *BgpUpderrNbrBag) GetLastUpdateMalformedTimestamp() *BgpTimespec {
if m != nil {
return m.LastUpdateMalformedTimestamp
}
return nil
}
func (m *BgpUpderrNbrBag) GetLastUpdateMalformedAge() uint32 {
if m != nil {
return m.LastUpdateMalformedAge
}
return 0
}
func (m *BgpUpderrNbrBag) GetUpdateMemoryAllocationFailCount() uint32 {
if m != nil {
return m.UpdateMemoryAllocationFailCount
}
return 0
}
func (m *BgpUpderrNbrBag) GetFirstUpdateMemoryAllocationFailTimestamp() *BgpTimespec {
if m != nil {
return m.FirstUpdateMemoryAllocationFailTimestamp
}
return nil
}
func (m *BgpUpderrNbrBag) GetLastUpdateMemoryAllocationFailTimestamp() *BgpTimespec {
if m != nil {
return m.LastUpdateMemoryAllocationFailTimestamp
}
return nil
}
func (m *BgpUpderrNbrBag) GetLastUpdateMemoryAllocationFailAge() uint32 {
if m != nil {
return m.LastUpdateMemoryAllocationFailAge
}
return 0
}
func (m *BgpUpderrNbrBag) GetUpdateErrorHandlingResetCount() uint32 {
if m != nil {
return m.UpdateErrorHandlingResetCount
}
return 0
}
func (m *BgpUpderrNbrBag) GetFirstUpdateErrorHandlingResetTimestamp() *BgpTimespec {
if m != nil {
return m.FirstUpdateErrorHandlingResetTimestamp
}
return nil
}
func (m *BgpUpderrNbrBag) GetLastErrorHandlingResetTimestamp() *BgpTimespec {
if m != nil {
return m.LastErrorHandlingResetTimestamp
}
return nil
}
func (m *BgpUpderrNbrBag) GetLastErrorHandlingResetAge() uint32 {
if m != nil {
return m.LastErrorHandlingResetAge
}
return 0
}
func (m *BgpUpderrNbrBag) GetUpdateErrorMessage() []*BgpUpderrMsgBag {
if m != nil {
return m.UpdateErrorMessage
}
return nil
}
func (m *BgpUpderrNbrBag) GetUpdateErrorMessageListCount() uint32 {
if m != nil {
return m.UpdateErrorMessageListCount
}
return 0
}
func (m *BgpUpderrNbrBag) GetUpdateAttributeDiscardCount() uint32 {
if m != nil {
return m.UpdateAttributeDiscardCount
}
return 0
}
func (m *BgpUpderrNbrBag) GetEstablishmentTotalUpdateMessageCount() uint32 {
if m != nil {
return m.EstablishmentTotalUpdateMessageCount
}
return 0
}
func (m *BgpUpderrNbrBag) GetEstablishmentActionCount() []uint32 {
if m != nil {
return m.EstablishmentActionCount
}
return nil
}
func init() {
proto.RegisterType((*BgpUpderrNbrBag_KEYS)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_upderr_nbr_bag_KEYS")
proto.RegisterType((*BgpL2VpnAddrT)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_l2vpn_addr_t")
proto.RegisterType((*BgpL2VpnMspwAddrT)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_l2vpn_mspw_addr_t")
proto.RegisterType((*BgpIpv4SrpolicyAddrT)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_ipv4_srpolicy_addr_t")
proto.RegisterType((*BgpIpv6SrpolicyAddrT)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_ipv6_srpolicy_addr_t")
proto.RegisterType((*BgpAddrtype)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_addrtype")
proto.RegisterType((*BgpTimespec)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_timespec")
proto.RegisterType((*BgpUpderrResetDataBag)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_upderr_reset_data_bag")
proto.RegisterType((*BgpUpderrElemBag)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_upderr_elem_bag")
proto.RegisterType((*BgpUpderrMsgBag)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_upderr_msg_bag")
proto.RegisterType((*BgpUpderrNbrBag)(nil), "cisco_ios_xr_ipv4_bgp_oper.bgp.instances.instance.instance_active.vrfs.vrf.update_inbound_error_neighbors.update_inbound_error_neighbor.bgp_upderr_nbr_bag")
}
func init() { proto.RegisterFile("bgp_upderr_nbr_bag.proto", fileDescriptor_17e34e92c3784e38) }
var fileDescriptor_17e34e92c3784e38 = []byte{
// 1661 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0xcd, 0x6e, 0x1c, 0xc5,
0x16, 0x56, 0xc7, 0x37, 0x89, 0x53, 0xb6, 0x63, 0xbb, 0xfd, 0x37, 0xce, 0xcd, 0xcf, 0x64, 0x1c,
0x39, 0x93, 0x9b, 0xdc, 0x91, 0xae, 0xe3, 0xdb, 0x49, 0x48, 0x80, 0x18, 0xff, 0x28, 0x0a, 0xb6,
0x05, 0x63, 0x27, 0x12, 0x62, 0x51, 0xaa, 0x99, 0xae, 0x19, 0xb7, 0xd4, 0xd3, 0xdd, 0xea, 0xaa,
0x99, 0xe0, 0x3d, 0x12, 0x4f, 0x80, 0x10, 0x02, 0x21, 0xc1, 0x92, 0x27, 0xe0, 0x01, 0x58, 0xb0,
0x80, 0xc0, 0x8e, 0x15, 0xb0, 0xe1, 0x0d, 0x10, 0x62, 0x8b, 0xea, 0x54, 0x55, 0x77, 0x75, 0x4f,
0x7b, 0x1c, 0x76, 0xbd, 0xb1, 0x66, 0xea, 0x7c, 0xe7, 0xcc, 0xf9, 0xce, 0x77, 0xea, 0x54, 0x75,
0x1b, 0x55, 0x5a, 0xdd, 0x08, 0xf7, 0x23, 0x97, 0xc6, 0x31, 0x0e, 0x5a, 0x31, 0x6e, 0x91, 0x6e,
0x23, 0x8a, 0x43, 0x1e, 0xda, 0x1f, 0x59, 0x6d, 0x8f, 0xb5, 0x43, 0xec, 0x85, 0x0c, 0x7f, 0x10,
0x63, 0x2f, 0x1a, 0xac, 0x63, 0x01, 0x0e, 0x23, 0x1a, 0x37, 0x5a, 0xdd, 0xa8, 0xe1, 0x05, 0x8c,
0x93, 0xa0, 0x4d, 0x59, 0xf2, 0x29, 0xf9, 0x80, 0x49, 0x9b, 0x7b, 0x03, 0xda, 0x18, 0xc4, 0x1d,
0x26, 0xfe, 0x34, 0xfa, 0x91, 0x4b, 0x38, 0xc5, 0x5e, 0xd0, 0x0a, 0xfb, 0x81, 0x8b, 0x69, 0x1c,
0x87, 0x31, 0x0e, 0xa8, 0xd7, 0x3d, 0x6a, 0x85, 0x31, 0x1b, 0x6d, 0xae, 0x7d, 0x68, 0xa1, 0xa5,
0xe1, 0x34, 0xf1, 0xdb, 0xdb, 0xef, 0x1d, 0xd8, 0x2b, 0x68, 0x2a, 0xf9, 0xd1, 0x80, 0xf4, 0x68,
0xc5, 0xaa, 0x5a, 0xf5, 0x0b, 0xcd, 0x49, 0xbd, 0xb8, 0x4f, 0x7a, 0xd4, 0x5e, 0x46, 0xe3, 0x83,
0xb8, 0x23, 0xed, 0x67, 0xc0, 0x7e, 0x7e, 0x10, 0x77, 0xc0, 0x74, 0x0b, 0xcd, 0xe8, 0xdf, 0xc1,
0xc4, 0x75, 0x63, 0xca, 0x58, 0x65, 0x0c, 0x20, 0xd3, 0x7a, 0x7d, 0x43, 0x2e, 0xd7, 0xee, 0xa1,
0x19, 0x91, 0x85, 0xbf, 0x36, 0x88, 0x02, 0xc0, 0x62, 0x2e, 0x7e, 0x3e, 0xfd, 0x2e, 0x7c, 0xad,
0xea, 0x58, 0x7d, 0xaa, 0x39, 0x09, 0x8b, 0xda, 0xf1, 0x11, 0x5a, 0x48, 0x1d, 0x7b, 0x2c, 0x7a,
0xf1, 0x8f, 0xbc, 0xf7, 0xa5, 0x46, 0x50, 0x7f, 0x16, 0x47, 0xa1, 0xef, 0xb5, 0x8f, 0x75, 0x80,
0x35, 0xb4, 0x30, 0xbc, 0x9e, 0x06, 0x9a, 0x13, 0xc6, 0x03, 0x65, 0x1b, 0x8e, 0xe7, 0x9c, 0x10,
0xcf, 0x19, 0x15, 0xcf, 0xc9, 0xc7, 0xfb, 0xe6, 0x22, 0x9a, 0x14, 0x01, 0x05, 0x94, 0x1f, 0x47,
0xd4, 0x9e, 0x41, 0x63, 0xa4, 0xe3, 0x29, 0x21, 0xc4, 0x47, 0xfb, 0x3a, 0x9a, 0x84, 0x34, 0x75,
0x34, 0xa9, 0xc1, 0x84, 0x58, 0x53, 0x51, 0xec, 0x3b, 0xc8, 0x06, 0x48, 0xaf, 0x4d, 0x18, 0xcf,
0x29, 0x31, 0x23, 0x2c, 0x7b, 0xc2, 0x90, 0x47, 0xfb, 0xa4, 0x45, 0xfd, 0x04, 0xfd, 0xaf, 0x14,
0xbd, 0x2b, 0x0c, 0x1a, 0xdd, 0x40, 0x50, 0x08, 0xcc, 0xfb, 0x41, 0x60, 0xc0, 0xcf, 0x02, 0x7c,
0x56, 0x98, 0x0e, 0xc1, 0xa2, 0xf1, 0x75, 0x34, 0x23, 0x73, 0x71, 0xd3, 0x4c, 0xce, 0x01, 0xf8,
0x22, 0x64, 0xe2, 0x26, 0x79, 0xdc, 0x44, 0xd3, 0x62, 0xc5, 0x94, 0xf0, 0x7c, 0x0a, 0x4c, 0x45,
0xb4, 0xff, 0x87, 0xe6, 0xd5, 0x0a, 0x91, 0x14, 0x15, 0x7a, 0x1c, 0xd0, 0x73, 0xda, 0xb6, 0x97,
0x9a, 0x54, 0xd1, 0x9c, 0x24, 0xf0, 0x85, 0xa4, 0x68, 0x4e, 0xb6, 0x0c, 0x4e, 0xae, 0x68, 0x28,
0x29, 0x83, 0x53, 0x50, 0x34, 0x27, 0x57, 0xb4, 0x89, 0x14, 0x9d, 0x29, 0x9a, 0xa4, 0xe6, 0x98,
0xd4, 0x26, 0x13, 0x6a, 0x8e, 0x41, 0x4d, 0xf5, 0x0c, 0xf4, 0x76, 0x26, 0x8f, 0xa9, 0x84, 0x9b,
0x30, 0x66, 0x52, 0xf9, 0xce, 0x42, 0xb6, 0xec, 0xfc, 0x41, 0xe4, 0xb3, 0xc4, 0xe3, 0x62, 0xd5,
0xaa, 0x4f, 0xac, 0x7d, 0x6a, 0x35, 0x4a, 0x32, 0x79, 0x1a, 0xf9, 0xfd, 0xde, 0x9c, 0x81, 0x6f,
0xcf, 0x23, 0x9f, 0x19, 0xf4, 0x63, 0x8e, 0xdb, 0x61, 0xc0, 0x78, 0x4c, 0xbc, 0x20, 0xa5, 0x3f,
0x2d, 0xe9, 0xc7, 0x7c, 0x33, 0xb1, 0x69, 0x9f, 0x5b, 0xd0, 0x60, 0x4e, 0xcf, 0x2c, 0xee, 0x8c,
0x1c, 0x3a, 0x7a, 0x3d, 0x0b, 0x5d, 0xcf, 0x40, 0x67, 0x13, 0xe8, 0xba, 0x09, 0xbd, 0xa3, 0x6b,
0x4a, 0x4d, 0xb0, 0x2d, 0xf5, 0x05, 0xcb, 0xb6, 0x81, 0xae, 0xa1, 0x29, 0x9f, 0x61, 0xa3, 0xf8,
0x73, 0xb2, 0xbf, 0x7c, 0xb6, 0x9b, 0x70, 0xfb, 0x21, 0x91, 0x29, 0x99, 0x5a, 0x02, 0x39, 0x0f,
0x32, 0x7d, 0x51, 0x46, 0x99, 0x8c, 0xe9, 0xaa, 0x38, 0xef, 0xb1, 0xe8, 0x45, 0xb6, 0x55, 0xd7,
0x71, 0xc7, 0x0f, 0x5f, 0xb0, 0x88, 0xb6, 0x13, 0x46, 0x0b, 0xe9, 0x36, 0xdc, 0x51, 0xb6, 0x5c,
0x7b, 0x0f, 0xfb, 0x2c, 0xa6, 0xed, 0x9d, 0xf7, 0xb9, 0x8f, 0x2a, 0x7a, 0x2c, 0x0c, 0xb9, 0x2d,
0x81, 0xdb, 0xa2, 0xb2, 0x17, 0x7b, 0x3a, 0x85, 0x9e, 0x95, 0xc4, 0xd3, 0x29, 0xf0, 0xfc, 0xd9,
0x42, 0x8b, 0xea, 0x2c, 0xc0, 0xb9, 0xe1, 0xbd, 0x0c, 0x7a, 0x7d, 0x59, 0x2e, 0xbd, 0x8a, 0xce,
0x33, 0x7d, 0x60, 0xbd, 0x63, 0x1e, 0x30, 0x9a, 0x99, 0x53, 0xc0, 0xec, 0x52, 0x49, 0x99, 0x39,
0x85, 0xcc, 0x9c, 0x1c, 0xb3, 0xda, 0x53, 0x79, 0x72, 0x72, 0xaf, 0x47, 0x85, 0x94, 0x76, 0x05,
0x9d, 0x67, 0xb4, 0x1d, 0x06, 0x2e, 0x83, 0xd3, 0x73, 0xaa, 0xa9, 0xbf, 0xda, 0x55, 0x34, 0x11,
0x90, 0x20, 0xd4, 0xd6, 0x33, 0x60, 0x35, 0x97, 0x6a, 0x5f, 0x8f, 0xa1, 0x65, 0xe3, 0x92, 0x14,
0x53, 0x46, 0x39, 0x76, 0x09, 0x27, 0xe2, 0xae, 0x64, 0x3f, 0x40, 0xcb, 0x2a, 0x71, 0x99, 0xb0,
0x34, 0xc7, 0x94, 0xb0, 0x30, 0x50, 0x27, 0xf5, 0xa2, 0x04, 0x6c, 0x0b, 0x7b, 0x53, 0x98, 0x9b,
0x60, 0xb5, 0xf7, 0xd1, 0x8d, 0x02, 0xd7, 0x20, 0xe4, 0x5e, 0xc7, 0x6b, 0x13, 0xee, 0x85, 0x01,
0x6e, 0x87, 0x2e, 0x55, 0x39, 0x55, 0xf3, 0x51, 0xf6, 0x0d, 0xe0, 0x66, 0xe8, 0x52, 0xfb, 0x19,
0xaa, 0x9f, 0x16, 0x8f, 0xf5, 0x5b, 0x32, 0xe6, 0x18, 0xc4, 0x5c, 0x19, 0x15, 0xf3, 0xa0, 0xdf,
0x82, 0xb0, 0xaf, 0x90, 0xa6, 0xa8, 0x06, 0x5c, 0x12, 0x26, 0x47, 0xa7, 0xb9, 0x45, 0x38, 0xb1,
0xdf, 0x47, 0xb7, 0x5f, 0x25, 0x1e, 0xf6, 0x69, 0xd0, 0xe5, 0x47, 0x70, 0x99, 0x98, 0x6a, 0xae,
0x9e, 0x16, 0x76, 0x17, 0xd0, 0xb5, 0xef, 0xcf, 0xa0, 0x39, 0x43, 0x2c, 0xea, 0xd3, 0x1e, 0xc8,
0xb4, 0x8e, 0x94, 0x0a, 0x98, 0x70, 0x1e, 0x7b, 0xad, 0x3e, 0xa7, 0xb8, 0xe3, 0x93, 0xae, 0xee,
0x87, 0x79, 0x69, 0xdd, 0xd0, 0xc6, 0x1d, 0x61, 0x13, 0x23, 0x6a, 0xc8, 0xcb, 0x90, 0x64, 0x2e,
0xe7, 0x04, 0xe5, 0x72, 0xd0, 0xd2, 0x90, 0x8f, 0xa2, 0x22, 0x8b, 0xbe, 0x90, 0xf3, 0x92, 0x99,
0xdb, 0xff, 0x41, 0xb3, 0x99, 0xb2, 0x18, 0x35, 0x9d, 0x36, 0xc8, 0x43, 0x09, 0xef, 0xa1, 0xca,
0x10, 0x36, 0x5b, 0xaf, 0x85, 0x9c, 0x8b, 0xfa, 0x91, 0x06, 0x9a, 0xcb, 0x38, 0x8a, 0x2d, 0x1a,
0x06, 0xea, 0x0e, 0x36, 0x6b, 0xf8, 0x6c, 0x80, 0xa1, 0xf6, 0xc9, 0x38, 0xb2, 0x8d, 0x72, 0xf6,
0x58, 0xb7, 0xb0, 0xe9, 0x3b, 0x5e, 0x40, 0x7c, 0x1d, 0x6c, 0xb8, 0xe9, 0x77, 0x84, 0x59, 0x46,
0xb4, 0x7f, 0xb2, 0x92, 0xdc, 0x7b, 0x94, 0x31, 0xd2, 0xa5, 0x72, 0x97, 0x72, 0xd2, 0x8b, 0xa0,
0xac, 0x13, 0x6b, 0x1f, 0x97, 0x6b, 0xea, 0xe8, 0x21, 0xa2, 0x29, 0xed, 0xc9, 0xb4, 0x0f, 0x75,
0xd6, 0xf6, 0x26, 0xba, 0x3a, 0xa4, 0xb8, 0xeb, 0xb1, 0x36, 0x89, 0x5d, 0xdc, 0x0e, 0xfb, 0x01,
0x57, 0xc2, 0xff, 0x3b, 0x27, 0xfc, 0x96, 0xc4, 0x6c, 0x0a, 0x88, 0xfd, 0xab, 0x95, 0xd4, 0x54,
0xd7, 0x25, 0x9d, 0x34, 0xd0, 0x07, 0x13, 0x6b, 0x5f, 0x95, 0xab, 0x30, 0x85, 0x03, 0x31, 0x57,
0x25, 0xd8, 0xab, 0xd0, 0xb3, 0x3f, 0x5a, 0x68, 0x3e, 0xd3, 0x34, 0x62, 0x6f, 0xd2, 0x80, 0x57,
0xce, 0x56, 0xc7, 0xea, 0x13, 0x6b, 0x9f, 0x97, 0x92, 0x9b, 0x9e, 0x1f, 0x4d, 0xdb, 0x68, 0xe7,
0x6d, 0x99, 0xb8, 0xbd, 0x83, 0xaa, 0x19, 0x42, 0x81, 0x1f, 0x7b, 0xfa, 0x00, 0xc5, 0x1d, 0xd2,
0xf3, 0xfc, 0x63, 0xb5, 0xb3, 0x2e, 0x1b, 0xde, 0xfb, 0x7e, 0xec, 0xa9, 0x63, 0x6a, 0x07, 0x30,
0x43, 0xbb, 0x19, 0xe2, 0x30, 0x1e, 0x7b, 0x41, 0x57, 0x3d, 0xf4, 0x2c, 0xe4, 0xfc, 0x0f, 0xc0,
0x68, 0x3f, 0x45, 0xb5, 0x93, 0x1c, 0x31, 0x8f, 0xfb, 0x41, 0x9b, 0x70, 0xea, 0xc2, 0x93, 0xd0,
0x78, 0xf3, 0x6a, 0x61, 0x88, 0x43, 0x8d, 0x32, 0x26, 0x83, 0x6e, 0x3f, 0x68, 0xbc, 0x0b, 0xf0,
0x78, 0x3a, 0x9b, 0xd1, 0x54, 0xc8, 0x59, 0xfb, 0x76, 0x21, 0x33, 0x19, 0xd4, 0xab, 0x03, 0x7b,
0x15, 0xa9, 0x61, 0x85, 0x93, 0xf7, 0x02, 0x6b, 0x40, 0x61, 0x4a, 0x2e, 0x3f, 0x57, 0x6f, 0x07,
0x5e, 0x5a, 0xc9, 0x98, 0x1c, 0x7a, 0x4b, 0x70, 0xb7, 0x8c, 0x53, 0x40, 0x3f, 0x84, 0x6b, 0x2d,
0xf6, 0xb3, 0xef, 0x30, 0xec, 0x27, 0xe8, 0x7a, 0x46, 0x8b, 0x23, 0x12, 0xb8, 0xbe, 0x10, 0x82,
0x0c, 0x42, 0xcf, 0x95, 0x9b, 0xa4, 0xb2, 0x0e, 0x52, 0x5c, 0x31, 0xa4, 0x78, 0xa2, 0x60, 0x1b,
0x02, 0x05, 0x9b, 0xc5, 0x7e, 0x88, 0x2e, 0xf1, 0x90, 0x13, 0x1f, 0xe7, 0xf4, 0x90, 0xa3, 0xe4,
0xff, 0x30, 0x4a, 0x96, 0x00, 0xf1, 0xcc, 0x54, 0x45, 0x8e, 0x91, 0x74, 0x16, 0xf5, 0x88, 0xdf,
0x09, 0xe3, 0x1e, 0x75, 0x73, 0x01, 0x1c, 0x73, 0x16, 0xed, 0x69, 0x50, 0x26, 0xc8, 0x6f, 0x16,
0xaa, 0x76, 0xbc, 0x98, 0x71, 0x3c, 0x14, 0x2b, 0x9d, 0xd5, 0xf7, 0x4a, 0x3d, 0xab, 0xaf, 0x40,
0xfe, 0xcf, 0xb2, 0x24, 0xd3, 0x91, 0xfd, 0x8b, 0x85, 0xae, 0xf9, 0x64, 0x34, 0xc1, 0xfb, 0xa5,
0x26, 0x78, 0x59, 0xa4, 0x7f, 0x22, 0xbf, 0x07, 0x68, 0xb9, 0x98, 0x1e, 0xe9, 0xd2, 0xca, 0x03,
0xe8, 0x80, 0xc5, 0x82, 0x00, 0x1b, 0x5d, 0x6a, 0xef, 0xa2, 0x95, 0xa4, 0xf1, 0x7a, 0x61, 0x7c,
0x8c, 0x89, 0xef, 0x87, 0xea, 0x5e, 0xd6, 0x21, 0x9e, 0xaf, 0xda, 0xe8, 0x35, 0x08, 0x72, 0x4d,
0x0f, 0x06, 0x81, 0xdc, 0x48, 0x80, 0x3b, 0xc4, 0xf3, 0x65, 0x2b, 0xfd, 0x65, 0xa1, 0xff, 0x66,
0x5b, 0xa9, 0x38, 0x68, 0x5a, 0xf6, 0x87, 0xa5, 0x2e, 0x7b, 0xdd, 0xec, 0xab, 0x02, 0xd6, 0xa9,
0x04, 0x7f, 0x5a, 0xe8, 0x4e, 0x46, 0x83, 0xd3, 0x88, 0x3f, 0x2a, 0x35, 0xf1, 0x9b, 0x46, 0xbb,
0x8c, 0xe4, 0xfd, 0x2e, 0x5a, 0x7d, 0x05, 0xda, 0xa2, 0x0f, 0x5f, 0x87, 0x16, 0xba, 0x3e, 0x3a,
0xb0, 0x68, 0xc9, 0x13, 0x67, 0xab, 0xbc, 0x7a, 0xc8, 0x86, 0x7c, 0x03, 0xa2, 0x15, 0xcd, 0x56,
0x18, 0xab, 0xb2, 0x1d, 0xff, 0xb0, 0xd0, 0xed, 0x4c, 0x3b, 0x16, 0x06, 0x4c, 0x35, 0x79, 0xb3,
0xd4, 0x9a, 0xac, 0x1a, 0xcd, 0x38, 0xcc, 0x38, 0x95, 0xe4, 0x77, 0x0b, 0xad, 0x80, 0x26, 0xa7,
0xb0, 0x7d, 0x5c, 0x6a, 0xb6, 0x30, 0xb0, 0x47, 0xd1, 0x7c, 0x8c, 0xae, 0x9c, 0xcc, 0x52, 0x34,
0xdc, 0x06, 0xb4, 0xc8, 0x72, 0x71, 0x1c, 0xd1, 0x68, 0x2f, 0xf3, 0x77, 0x54, 0x75, 0x74, 0x56,
0xde, 0x82, 0x3b, 0xea, 0x67, 0xa5, 0xbc, 0xa3, 0xaa, 0x87, 0xb2, 0xcc, 0x15, 0x55, 0x1d, 0xe7,
0xf6, 0x16, 0xba, 0x56, 0xc4, 0x07, 0xfb, 0x1e, 0xd3, 0xfb, 0x66, 0xd3, 0xbc, 0x0f, 0x98, 0xce,
0xbb, 0x1e, 0xe3, 0xf9, 0x4b, 0xc5, 0x49, 0x0f, 0x38, 0x5b, 0xa7, 0x3f, 0xe0, 0x3c, 0x47, 0x75,
0xa1, 0x53, 0xcb, 0xf7, 0xd8, 0x91, 0xb8, 0x3e, 0xe3, 0x11, 0x97, 0x9c, 0x6d, 0x08, 0x77, 0x23,
0x83, 0x3f, 0x3c, 0xe1, 0xc6, 0xf3, 0x08, 0x5d, 0xca, 0xc6, 0x95, 0x8f, 0xa1, 0x2a, 0xd2, 0x0e,
0xdc, 0x5f, 0x2b, 0x19, 0x84, 0x7c, 0x12, 0x05, 0xef, 0xd6, 0x39, 0xf8, 0x97, 0xdc, 0xdd, 0xbf,
0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0x76, 0x6a, 0x00, 0xae, 0x1b, 0x00, 0x00,
}
| 44.869487 | 253 | 0.74004 |
7f1887ad8207d20aadee5914b8aa3df9a823555d | 5,156 | go | Go | request/queue.go | KillianMeersman/wander | e8fab5fd01aad4be4cf835a6c6447e2491a51bc1 | [
"MIT"
] | null | null | null | request/queue.go | KillianMeersman/wander | e8fab5fd01aad4be4cf835a6c6447e2491a51bc1 | [
"MIT"
] | null | null | null | request/queue.go | KillianMeersman/wander | e8fab5fd01aad4be4cf835a6c6447e2491a51bc1 | [
"MIT"
] | null | null | null | package request
import (
"fmt"
"io"
"sync"
)
type QueueResult struct {
Error error
Request *Request
}
// Queue is a prioritized FIFO queue for requests
type Queue interface {
io.Closer
// Enqueue adds the request to the queue, returns an error if no more space is available.
Enqueue(req *Request, priority int) error
// Dequeue pops the highest priority request from the queue.
Dequeue() <-chan QueueResult
// Count returns the amount of queued requests.
Count() (int, error)
Clear()
}
// QueueMaxSize signals the Queue has reached its maximum size.
type QueueMaxSize struct {
size int
}
func (r QueueMaxSize) Error() string {
return fmt.Sprintf("Request queue has reached maximum size of %d", r.size)
}
type heapNode struct {
priority int
insertionCount int
request *Request
}
func less(a, b heapNode) bool {
if a.priority < b.priority {
return true
}
if a.priority == b.priority {
if a.insertionCount > b.insertionCount {
return true
}
}
return false
}
// RequestHeapQueue is a heap implementation for request.Queue.
type RequestHeapQueue struct {
data []heapNode
count int
maxSize int
insertionCount int
lock *sync.Mutex
waitCondition *sync.Cond
waitGroup *sync.WaitGroup
isDone bool
}
// NewRequestHeap returns a request heap (priority queue).
func NewRequestHeap(maxSize int) *RequestHeapQueue {
lock := &sync.Mutex{}
heap := &RequestHeapQueue{
data: make([]heapNode, maxSize/10),
maxSize: maxSize,
lock: lock,
waitCondition: sync.NewCond(lock),
waitGroup: &sync.WaitGroup{},
isDone: false,
}
return heap
}
// BuildHeap builds a request heap from existing data.
func BuildHeap(data []heapNode, maxSize int) *RequestHeapQueue {
heap := NewRequestHeap(maxSize)
for i := len(data) / 2; i >= 0; i-- {
heap.maxHeapify(i)
}
return heap
}
// Enqueue a request with the given priority.
func (r *RequestHeapQueue) Enqueue(req *Request, priority int) error {
r.lock.Lock()
defer r.lock.Unlock()
return r.insert(req, priority)
}
func (r *RequestHeapQueue) Dequeue() <-chan QueueResult {
outlet := make(chan QueueResult)
go func() {
r.waitGroup.Add(1)
r.waitCondition.L.Lock()
// wait untl an item is available or Close is called
for r.count < 1 && !r.isDone {
r.waitCondition.Wait()
}
if r.isDone {
r.waitCondition.L.Unlock()
} else {
req := r.extract()
r.waitCondition.L.Unlock()
outlet <- QueueResult{
Request: req,
}
}
r.waitGroup.Done()
}()
return outlet
}
func (r *RequestHeapQueue) Close() error {
r.isDone = true
r.waitCondition.Broadcast()
r.waitGroup.Wait()
return nil
}
func (r *RequestHeapQueue) Clear() {
for i := range r.data {
r.data[i] = heapNode{}
}
}
// Count returns the amount of requests in the queue.
func (r *RequestHeapQueue) Count() (int, error) {
return r.count, nil
}
// insert a request.
func (r *RequestHeapQueue) insert(req *Request, priority int) error {
node := heapNode{
priority: priority,
request: req,
insertionCount: r.insertionCount + 1,
}
if r.count >= len(r.data) {
newSize := (len(r.data) * 2) + 1
if newSize > r.maxSize {
if r.count == r.maxSize {
return &QueueMaxSize{size: r.maxSize}
}
newSize = r.maxSize
}
data := make([]heapNode, newSize)
copy(data, r.data)
r.data = data
}
i := r.count
parent := parentIndex(i)
r.data[i] = node
for i > 0 && r.data[i].priority > r.data[parent].priority {
r.data[i], r.data[parent] = r.data[parent], r.data[i]
i = parentIndex(i)
parent = parentIndex(i)
}
r.count++
r.insertionCount++
r.waitCondition.Signal()
return nil
}
// extract the root node and replace it with the last element, then sift down.
func (r *RequestHeapQueue) extract() *Request {
req := r.data[0].request
r.count--
r.data[0] = r.data[r.count]
r.maxHeapify(0)
return req
}
// Sort the heap so that the highest priority request is the root node
// Starts from i (array index) and sifts down, swapping nodes as nescesary along the way
func (r *RequestHeapQueue) maxHeapify(i int) {
max := i
for {
// get the children and set the current max value to the starting node
left := leftChildIndex(i)
right := rightChildIndex(i)
// if left child is not the last node and is less than the parent node, set max to this node index
if left < r.count && less(r.data[max], r.data[left]) {
max = left
}
// same thing, but with right child
if right < r.count && less(r.data[max], r.data[right]) {
max = right
}
// stop sifting if no swap occured, the heap is sorted
if max == i {
return
}
// if a swap occured, swap the actual data and continue sifting into the next node
r.data[i], r.data[max] = r.data[max], r.data[i]
i = max
}
}
// get the index of the left child node
func leftChildIndex(i int) int {
return (i * 2) + 1
}
// get the index of the right child node
func rightChildIndex(i int) int {
return (i * 2) + 2
}
// get the index of the parent node
func parentIndex(i int) int {
parent := ((i + 1) / 2) - 1
if parent < 0 {
return 0
}
return parent
}
| 21.663866 | 100 | 0.662917 |
f0339846cad63a7692947f289af6990dc4271899 | 3,987 | py | Python | easyp2p/p2p_signals.py | Ceystyle/easyp2p | 99c32e3ec0ff5a34733f157dd1b53d1aa9bc9edc | [
"MIT"
] | 4 | 2019-07-18T10:58:28.000Z | 2021-11-18T16:57:45.000Z | easyp2p/p2p_signals.py | Ceystyle/easyp2p | 99c32e3ec0ff5a34733f157dd1b53d1aa9bc9edc | [
"MIT"
] | 1 | 2019-07-05T09:21:47.000Z | 2019-07-05T09:21:47.000Z | easyp2p/p2p_signals.py | Ceystyle/easyp2p | 99c32e3ec0ff5a34733f157dd1b53d1aa9bc9edc | [
"MIT"
] | 2 | 2019-07-05T08:56:34.000Z | 2020-06-09T10:03:42.000Z | # -*- coding: utf-8 -*-
# Copyright (c) 2018-2020 Niko Sandschneider
"""Module implementing Signals for communicating with the GUI."""
from functools import wraps
import logging
from PyQt5.QtCore import QObject, pyqtSignal
class Signals(QObject):
"""Class for signal communication between worker classes and GUI."""
update_progress_bar = pyqtSignal()
add_progress_text = pyqtSignal(str, bool)
abort_signal = pyqtSignal()
get_credentials = pyqtSignal(str)
send_credentials = pyqtSignal(str, str)
def __init__(self):
super().__init__()
self.abort = False
self.abort_signal.connect(self.abort_evaluation)
self.connected = False
self.logger = logging.getLogger('easyp2p.p2p_signals.Signals')
self.logger.debug('Created Signals instance.')
def update_progress(self, func):
"""Decorator for updating progress text and progress bar."""
@wraps(func)
def wrapper(*args, **kwargs):
try:
if self.abort:
raise RuntimeError('Abort by user')
result = func(*args, **kwargs)
except RuntimeError as err:
self.logger.exception('RuntimeError in update_progress')
self.add_progress_text.emit(str(err), True)
raise PlatformFailedError from err
except RuntimeWarning as err:
self.logger.warning(
'RuntimeWarning in update_progress', exc_info=True)
self.add_progress_text.emit(str(err), True)
result = None
finally:
self.update_progress_bar.emit()
return result
return wrapper
def watch_errors(self, func):
"""Decorator for emitting error messages to the progress window."""
@wraps(func)
def wrapper(*args, **kwargs):
try:
result = func(*args, **kwargs)
except RuntimeError as err:
self.logger.exception('RuntimeError in watch_errors.')
self.add_progress_text.emit(str(err), True)
raise PlatformFailedError from err
except RuntimeWarning as err:
self.logger.warning(str(err))
self.add_progress_text.emit(str(err), True)
result = None
return result
return wrapper
def connect_signals(self, other: 'Signals') -> None:
"""
Helper method for connecting signals of different classes.
Args:
other: Signals instance of another class.
"""
self.logger.debug('Connecting signals.')
self.update_progress_bar.connect(other.update_progress_bar)
self.add_progress_text.connect(other.add_progress_text)
self.get_credentials.connect(other.get_credentials)
other.send_credentials.connect(self.send_credentials)
self.connected = True
self.logger.debug('Connecting signals successful.')
def disconnect_signals(self) -> None:
"""
Disconnect signals. Ignore error if they were not connected or if
disconnecting fails.
"""
if not self.connected:
return
self.logger.debug('Disconnecting signals.')
for signal in [
self.add_progress_text, self.get_credentials,
self.update_progress_bar]:
try:
signal.disconnect()
except TypeError:
self.logger.exception(
'Disconnecting signal %s failed.', str(signal))
else:
self.logger.debug('Signal %s disconnected.', str(signal))
self.connected = False
def abort_evaluation(self):
"""Set the abort flag to True."""
self.logger.debug('Aborting evaluation.')
self.abort = True
class PlatformFailedError(Exception):
"""Will be raised if evaluation of a P2P platform fails."""
| 34.37069 | 75 | 0.605719 |
3efbaa01a424a3e48ed89d7dc46d3bc5531c49eb | 3,653 | c | C | src/mpi/datatype/type_create_resized.c | grondo/mvapich2-cce | ec084d8e07db1cf2ac1352ee4c604ae7dbae55cb | [
"Intel",
"mpich2",
"Unlicense"
] | 1 | 2021-11-11T15:42:30.000Z | 2021-11-11T15:42:30.000Z | src/mpi/datatype/type_create_resized.c | grondo/mvapich2-cce | ec084d8e07db1cf2ac1352ee4c604ae7dbae55cb | [
"Intel",
"mpich2",
"Unlicense"
] | null | null | null | src/mpi/datatype/type_create_resized.c | grondo/mvapich2-cce | ec084d8e07db1cf2ac1352ee4c604ae7dbae55cb | [
"Intel",
"mpich2",
"Unlicense"
] | null | null | null | /* -*- Mode: C; c-basic-offset:4 ; -*- */
/*
*
* (C) 2001 by Argonne National Laboratory.
* See COPYRIGHT in top-level directory.
*/
#include "mpiimpl.h"
/* -- Begin Profiling Symbol Block for routine MPI_Type_create_resized */
#if defined(HAVE_PRAGMA_WEAK)
#pragma weak MPI_Type_create_resized = PMPI_Type_create_resized
#elif defined(HAVE_PRAGMA_HP_SEC_DEF)
#pragma _HP_SECONDARY_DEF PMPI_Type_create_resized MPI_Type_create_resized
#elif defined(HAVE_PRAGMA_CRI_DUP)
#pragma _CRI duplicate MPI_Type_create_resized as PMPI_Type_create_resized
#endif
/* -- End Profiling Symbol Block */
/* Define MPICH_MPI_FROM_PMPI if weak symbols are not supported to build
the MPI routines */
#ifndef MPICH_MPI_FROM_PMPI
#undef MPI_Type_create_resized
#define MPI_Type_create_resized PMPI_Type_create_resized
#endif
#undef FUNCNAME
#define FUNCNAME MPI_Type_create_resized
/*@
MPI_Type_create_resized - Create a datatype with a new lower bound and
extent from an existing datatype
Input Parameters:
+ oldtype - input datatype (handle)
. lb - new lower bound of datatype (address integer)
- extent - new extent of datatype (address integer)
Output Parameter:
. newtype - output datatype (handle)
.N ThreadSafe
.N Fortran
.N Errors
.N MPI_SUCCESS
.N MPI_ERR_TYPE
@*/
int MPI_Type_create_resized(MPI_Datatype oldtype,
MPI_Aint lb,
MPI_Aint extent,
MPI_Datatype *newtype)
{
static const char FCNAME[] = "MPI_Type_create_resized";
int mpi_errno = MPI_SUCCESS;
MPI_Datatype new_handle;
MPID_Datatype *new_dtp;
MPI_Aint aints[2];
MPID_MPI_STATE_DECL(MPID_STATE_MPI_TYPE_CREATE_RESIZED);
MPIR_ERRTEST_INITIALIZED_ORDIE();
MPIU_THREAD_CS_ENTER(ALLFUNC,);
MPID_MPI_FUNC_ENTER(MPID_STATE_MPI_TYPE_CREATE_RESIZED);
/* Get handles to MPI objects. */
# ifdef HAVE_ERROR_CHECKING
{
MPID_BEGIN_ERROR_CHECKS;
{
MPID_Datatype *datatype_ptr = NULL;
MPIR_ERRTEST_DATATYPE(oldtype, "datatype", mpi_errno);
if (mpi_errno != MPI_SUCCESS) goto fn_fail;
/* Validate datatype_ptr */
MPID_Datatype_get_ptr(oldtype, datatype_ptr);
MPID_Datatype_valid_ptr(datatype_ptr, mpi_errno);
/* If datatype_ptr is not valid, it will be reset to null */
if (mpi_errno) goto fn_fail;
}
MPID_END_ERROR_CHECKS;
}
# endif /* HAVE_ERROR_CHECKING */
/* ... body of routine ... */
mpi_errno = MPID_Type_create_resized(oldtype, lb, extent, &new_handle);
/* --BEGIN ERROR HANDLING-- */
if (mpi_errno != MPI_SUCCESS)
goto fn_fail;
/* --END ERROR HANDLING-- */
aints[0] = lb;
aints[1] = extent;
MPID_Datatype_get_ptr(new_handle, new_dtp);
mpi_errno = MPID_Datatype_set_contents(new_dtp,
MPI_COMBINER_RESIZED,
0,
2, /* Aints */
1,
NULL,
aints,
&oldtype);
if (mpi_errno != MPI_SUCCESS) goto fn_fail;
MPIU_OBJ_PUBLISH_HANDLE(*newtype, new_handle);
/* ... end of body of routine ... */
fn_exit:
MPID_MPI_FUNC_EXIT(MPID_STATE_MPI_TYPE_CREATE_RESIZED);
MPIU_THREAD_CS_EXIT(ALLFUNC,);
return mpi_errno;
fn_fail:
/* --BEGIN ERROR HANDLING-- */
# ifdef HAVE_ERROR_CHECKING
{
mpi_errno = MPIR_Err_create_code(
mpi_errno, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OTHER, "**mpi_type_create_resized",
"**mpi_type_create_resized %D %L %L %p", oldtype, lb, extent, newtype);
}
# endif
mpi_errno = MPIR_Err_return_comm(NULL, FCNAME, mpi_errno);
goto fn_exit;
/* --END ERROR HANDLING-- */
}
| 27.466165 | 99 | 0.690391 |
85b1be9ac16af6e47328e09dbd7233f8f676a166 | 530 | h | C | KPSDK/KPAlbum.h | vc7/KPSDK | 3809dd217da08fe9948fec07cd09478aff47ce6b | [
"MIT"
] | null | null | null | KPSDK/KPAlbum.h | vc7/KPSDK | 3809dd217da08fe9948fec07cd09478aff47ce6b | [
"MIT"
] | null | null | null | KPSDK/KPAlbum.h | vc7/KPSDK | 3809dd217da08fe9948fec07cd09478aff47ce6b | [
"MIT"
] | null | null | null | //
// KPAlbum.h
// KPSDK
//
// Created by vincent on 2014/08/23.
// Copyright (c) 2014 Vincent Chen. All rights reserved.
//
#import "KPObject.h"
@interface KPAlbum : KPObject
@property (nonatomic, strong) NSString *title;
@property (nonatomic, strong) NSString *description;
@property (nonatomic, strong) NSString *originURL;
@property (nonatomic, strong) NSDate *createdAt;
@property (nonatomic, strong) NSDate *updatedAt;
@property (nonatomic) NSUInteger photoCount;
@property (nonatomic) NSUInteger videoCount;
@end
| 22.083333 | 57 | 0.737736 |
1fc7e0cfcf07610a1bd46ae8c6483685a7fe5e74 | 59 | css | CSS | slides/main.css | somewhatabstract/codemash-nodebots-docs | 3cc46cd8711c34381dcb8b51b1a40e154f414e36 | [
"MIT"
] | null | null | null | slides/main.css | somewhatabstract/codemash-nodebots-docs | 3cc46cd8711c34381dcb8b51b1a40e154f414e36 | [
"MIT"
] | null | null | null | slides/main.css | somewhatabstract/codemash-nodebots-docs | 3cc46cd8711c34381dcb8b51b1a40e154f414e36 | [
"MIT"
] | null | null | null | .reveal section img {
border: 0px;
box-shadow: initial;
} | 14.75 | 21 | 0.694915 |
7f83aa24a85ed42ab784fee045b5c6f463033c3f | 1,587 | go | Go | cloud/google/releases.go | datacol-io/datacol | 99baf52b8352b4af9320ca62f3748792fdb541b3 | [
"Apache-2.0"
] | 93 | 2017-05-23T09:38:19.000Z | 2021-08-28T13:32:32.000Z | cloud/google/releases.go | datacol-io/datacol | 99baf52b8352b4af9320ca62f3748792fdb541b3 | [
"Apache-2.0"
] | 30 | 2017-05-18T06:55:57.000Z | 2018-01-05T12:43:41.000Z | cloud/google/releases.go | datacol-io/datacol | 99baf52b8352b4af9320ca62f3748792fdb541b3 | [
"Apache-2.0"
] | 4 | 2017-06-24T17:13:27.000Z | 2019-10-30T10:21:34.000Z | package google
import (
"context"
"fmt"
"cloud.google.com/go/datastore"
log "github.com/Sirupsen/logrus"
pb "github.com/datacol-io/datacol/api/models"
"github.com/datacol-io/datacol/cloud"
"github.com/datacol-io/datacol/common"
)
func (g *GCPCloud) ReleaseList(app string, limit int64) (pb.Releases, error) {
q := datastore.NewQuery(releaseKind).Namespace(g.DeploymentName).Filter("app = ", app)
if limit > 0 {
q = q.Limit(int(limit))
}
var rs pb.Releases
_, err := g.datastore().GetAll(context.Background(), q, &rs)
return rs, err
}
func (g *GCPCloud) ReleaseDelete(app, id string) error {
ctx, key := g.nestedKey(buildKind, id)
return g.datastore().Delete(ctx, key)
}
func (g *GCPCloud) BuildRelease(b *pb.Build, options pb.ReleaseOptions) (*pb.Release, error) {
image := fmt.Sprintf("gcr.io/%v/%v:%v", g.Project, b.App, b.Id)
log.Debugf("---- Docker Image: %s", image)
envVars, err := g.EnvironmentGet(b.App)
if err != nil {
return nil, err
}
app, err := g.AppGet(b.App)
if err != nil {
return nil, err
}
r := &pb.Release{
App: b.App,
BuildId: b.Id,
Status: pb.StatusCreated,
CreatedAt: timestampNow(),
Version: g.store.ReleaseCount(b.App) + 1,
}
if err := g.store.ReleaseSave(r); err != nil {
return r, err
}
rversion := fmt.Sprintf("%d", r.Version)
if err := common.UpdateApp(g.kubeClient(), b, g.DeploymentName, image, g.appLinkedDB(app),
app.Domains, envVars, cloud.GCPProvider, rversion); err != nil {
return nil, err
}
app.ReleaseId = r.Id
app.BuildId = b.Id
return r, g.store.AppUpdate(app)
}
| 22.671429 | 94 | 0.661626 |
168a5722226de77e4950fd17d9216ce548bd0ba4 | 3,911 | h | C | common/util/gpio.h | sthaid/proj_robot2 | 461b5c61c9f973a1904dad5e2f9edf1b5f3e4aca | [
"MIT"
] | null | null | null | common/util/gpio.h | sthaid/proj_robot2 | 461b5c61c9f973a1904dad5e2f9edf1b5f3e4aca | [
"MIT"
] | null | null | null | common/util/gpio.h | sthaid/proj_robot2 | 461b5c61c9f973a1904dad5e2f9edf1b5f3e4aca | [
"MIT"
] | null | null | null | #ifndef __GPIO_H__
#define __GPIO_H__
#ifdef __cplusplus
extern "C" {
#endif
// This code is for bcm2711.
//
// Reference https://datasheets.raspberrypi.org/bcm2711/bcm2711-peripherals.pdf
#ifndef __KERNEL__
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <misc.h>
#else
#include <linux/module.h>
#endif
#define PI4B_PERIPHERAL_BASE_ADDR 0xfe000000
#define GPIO_BASE_ADDR (PI4B_PERIPHERAL_BASE_ADDR + 0x200000)
#define GPIO_BLOCK_SIZE 0x1000
#define PULL_NONE 0
#define PULL_UP 1
#define PULL_DOWN 2
#define FUNC_IN 0
#define FUNC_OUT 1
volatile unsigned int *gpio_regs;
// ----------------- GPIO: CONFIGURATION ----------------
static inline int get_gpio_func(int pin)
{
int regidx, bit;
regidx = 0 + (pin / 10);
bit = (pin % 10) * 3;
return (gpio_regs[regidx] >> bit) & 7;
}
static inline void set_gpio_func(int pin, int func)
{
int regidx, bit, curr_func;
unsigned int tmp;
curr_func = get_gpio_func(pin);
if (curr_func != FUNC_IN && curr_func != FUNC_OUT) {
#ifndef __KERNEL__
FATAL("can't change func for pin %d\n", pin);
#else
pr_err("can't change func for pin %d\n", pin);
return;
#endif
}
regidx = 0 + (pin / 10);
bit = (pin % 10) * 3;
tmp = gpio_regs[regidx];
tmp &= ~(7 << bit); // 3 bit field
tmp |= (func << bit);
gpio_regs[regidx] = tmp;
}
static inline void set_gpio_pull(int pin, int pull)
{
int regidx, bit;
unsigned int tmp;
regidx = 57 + (pin / 16);
bit = (pin % 16) * 2;
tmp = gpio_regs[regidx];
tmp &= ~(3 << bit); // 2 bit field
tmp |= (pull << bit);
gpio_regs[regidx] = tmp;
}
// ----------------- GPIO: READ & WRITE -----------------
// these gpio read/write routines support only gpio 0 to 31, which
// covers all of the gpios supported on the raspberry-pi header
static inline int gpio_read(int pin)
{
return (gpio_regs[13] & (1 << pin)) != 0;
}
static inline unsigned int gpio_read_all(void)
{
return gpio_regs[13];
}
static inline void gpio_write(int pin, int value)
{
if (value) {
gpio_regs[7] = (1 << pin);
} else {
gpio_regs[10] = (1 << pin);
}
}
// ----------------- GPIO: INIT & EXIT ------------------
static inline int gpio_init(void)
{
#ifndef __KERNEL__
int fd, rc;
int okay;
#endif
int pin;
// if already initialized the return success
if (gpio_regs) {
return 0;
}
#ifndef __KERNEL__
// verify bcm version
rc = system("grep BCM2711 /proc/cpuinfo > /dev/null");
okay = WIFEXITED(rc) && WEXITSTATUS(rc) == 0;
if (!okay) {
ERROR("this program requires BCM2711\n");
return -1;
}
// map gpio regs
if ((fd = open("/dev/mem", O_RDWR|O_SYNC) ) < 0) {
ERROR("can't open /dev/mem \n");
return -1;
}
gpio_regs = mmap(NULL,
GPIO_BLOCK_SIZE,
PROT_READ | PROT_WRITE,
MAP_SHARED,
fd,
GPIO_BASE_ADDR);
if (gpio_regs == MAP_FAILED) {
ERROR("mmap failed\n");
return -1;
}
close(fd);
#else
gpio_regs = ioremap(GPIO_BASE_ADDR, 0x1000);
#endif
// GPIO in range 0..31 that are FUNC_IN or FUNC_OUT
// are initialized to: FUNC_IN, PULL_DOWN, and output set to 0
for (pin = 0; pin < 32; pin++) {
int func = get_gpio_func(pin);
if (func == FUNC_IN || func == FUNC_OUT) {
if (func == FUNC_OUT) {
set_gpio_func(pin, FUNC_IN);
}
set_gpio_pull(pin, PULL_DOWN);
gpio_write(pin, 0);
}
}
// success
return 0;
}
static inline void gpio_exit(void)
{
#ifndef __KERNEL__
// program termination will cleanup
// XXX should unmap
#else
iounmap(gpio_regs);
#endif
}
#ifdef __cplusplus
}
#endif
#endif
| 21.026882 | 79 | 0.571976 |
3d17913a533a2eb668e30a3d0df59cf072f65f83 | 1,137 | go | Go | configuration/read.go | bitmark-inc/bitmark-mgmt | 0c09a0219e9764c8cb0dcf925e0599c45499f5fb | [
"0BSD"
] | 1 | 2017-04-26T14:37:28.000Z | 2017-04-26T14:37:28.000Z | configuration/read.go | bitmark-inc/bitmark-mgmt | 0c09a0219e9764c8cb0dcf925e0599c45499f5fb | [
"0BSD"
] | null | null | null | configuration/read.go | bitmark-inc/bitmark-mgmt | 0c09a0219e9764c8cb0dcf925e0599c45499f5fb | [
"0BSD"
] | 1 | 2017-04-13T10:54:18.000Z | 2017-04-13T10:54:18.000Z | // Copyright (c) 2014-2016 Bitmark Inc.
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package configuration
import (
"github.com/bitmark-inc/bitmark-webgui/fault"
libucl "github.com/bitmark-inc/go-libucl"
"reflect"
)
// read a configuration file and parse using libucl
func readConfigurationFile(fileName string, config interface{}) error {
// since interface{} is untyped, have to verify type compatibility at run-time
rv := reflect.ValueOf(config)
if rv.Kind() != reflect.Ptr || rv.IsNil() {
return fault.ErrInvalidStructPointer
}
// now sure item is a pointer, make sure it points to some kind of struct
s := rv.Elem()
if s.Kind() != reflect.Struct {
return fault.ErrInvalidStructPointer
}
// create a libucl parser
p := libucl.NewParser(0)
defer p.Close()
// add the master configuration file
if err := p.AddFile(fileName); err != nil {
return err
}
// fetch the root object
rootObject := p.Object()
defer rootObject.Close()
// decode it into the callers struct
if err := rootObject.Decode(config); err != nil {
return err
}
return nil
}
| 23.6875 | 79 | 0.710642 |
543adee48ada8a7c9579b639618dccf55f2da150 | 394 | go | Go | errors.go | solarknight/simple_go | 8df9deb39f3b37cdca95fa9afbb6014703c1c2c6 | [
"Apache-2.0"
] | null | null | null | errors.go | solarknight/simple_go | 8df9deb39f3b37cdca95fa9afbb6014703c1c2c6 | [
"Apache-2.0"
] | null | null | null | errors.go | solarknight/simple_go | 8df9deb39f3b37cdca95fa9afbb6014703c1c2c6 | [
"Apache-2.0"
] | null | null | null | package main
import "fmt"
func tryError() {
var ret int
var err error
if ret, err = printNumber(-3); err != nil {
fmt.Printf("Error: %s\n", err)
}
fmt.Println(ret)
}
func printNumber(a int) (int, error) {
if a < 0 {
// return a, errors.New("no negative number")
return a, fmt.Errorf("negative number %d not accepted", a)
}
fmt.Println("Received number is", a)
return a, nil
}
| 17.909091 | 60 | 0.642132 |
7d9c1dd1834cf8607d1e2ae69656dc3bc9b9348d | 30,519 | html | HTML | build/html/2.transport/rtp_header_extension.html | walterfan/webrtc_note | d452088841dd75eaf0decbee6a0a04c3e016926e | [
"CC0-1.0"
] | null | null | null | build/html/2.transport/rtp_header_extension.html | walterfan/webrtc_note | d452088841dd75eaf0decbee6a0a04c3e016926e | [
"CC0-1.0"
] | null | null | null | build/html/2.transport/rtp_header_extension.html | walterfan/webrtc_note | d452088841dd75eaf0decbee6a0a04c3e016926e | [
"CC0-1.0"
] | null | null | null | <!DOCTYPE html>
<html class="writer-html5" lang="en" >
<head>
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.17.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebRTC RTP Header extension — webrtc_tutorial 1 documentation</title>
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../_static/custom.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../_static/js/html5shiv.min.js"></script>
<![endif]-->
<script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
<script src="../_static/jquery.js"></script>
<script src="../_static/underscore.js"></script>
<script src="../_static/doctools.js"></script>
<script src="../_static/js/theme.js"></script>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="RTP Keepalive" href="rtp_keepalive.html" />
<link rel="prev" title="WebRTC Data Channel" href="webrtc_data_channel.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="../index.html" class="icon icon-home"> webrtc_tutorial
</a>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="../search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../1.basic/index.html">1. WebRTC 基础</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="index.html">2. WebRTC 传输</a><ul class="current">
<li class="toctree-l2"><a class="reference internal" href="overview.html">WebRTC 传输概论</a></li>
<li class="toctree-l2"><a class="reference internal" href="websocket.html">WebSocket</a></li>
<li class="toctree-l2"><a class="reference internal" href="turn.html">TURN</a></li>
<li class="toctree-l2"><a class="reference internal" href="ice.html">Interactive Connectivity Establishment</a></li>
<li class="toctree-l2"><a class="reference internal" href="quic.html">QUIC 协议</a></li>
<li class="toctree-l2"><a class="reference internal" href="hls.html">HTTP Live Streaming</a></li>
<li class="toctree-l2"><a class="reference internal" href="dtls.html">DTLS 协议</a></li>
<li class="toctree-l2"><a class="reference internal" href="sctp.html">SCTP 协议</a></li>
<li class="toctree-l2"><a class="reference internal" href="srtp.html">SRTP 协议</a></li>
<li class="toctree-l2"><a class="reference internal" href="webrtc_multiplex.html">WebRTC 传输的多路复用</a></li>
<li class="toctree-l2"><a class="reference internal" href="webrtc_simulcast.html">WebRTC Simulcast</a></li>
<li class="toctree-l2"><a class="reference internal" href="webrtc_rtp.html">WebRTC RTP</a></li>
<li class="toctree-l2"><a class="reference internal" href="rtcp_sr.html">RTCP Sender Report</a></li>
<li class="toctree-l2"><a class="reference internal" href="rtcp_rr.html">RTCP Receiver Report</a></li>
<li class="toctree-l2"><a class="reference internal" href="rtcp_xr.html">RTCP XR</a></li>
<li class="toctree-l2"><a class="reference internal" href="webrtc_rtcp.html">Overview</a></li>
<li class="toctree-l2"><a class="reference internal" href="webrtc_data_channel.html">WebRTC Data Channel</a></li>
<li class="toctree-l2 current"><a class="current reference internal" href="#">WebRTC RTP Header extension</a><ul>
<li class="toctree-l3"><a class="reference internal" href="#overview">Overview</a><ul>
<li class="toctree-l4"><a class="reference internal" href="#one-byte-header-profile">One-byte header profile</a></li>
<li class="toctree-l4"><a class="reference internal" href="#two-bytes-header-profile">Two-bytes header profile</a></li>
</ul>
</li>
<li class="toctree-l3"><a class="reference internal" href="#absolute-send-time">Absolute Send Time</a></li>
<li class="toctree-l3"><a class="reference internal" href="#absolute-capture-time">Absolute Capture Time</a></li>
<li class="toctree-l3"><a class="reference internal" href="#transport-wide-congestion-control">Transport-Wide Congestion Control</a><ul>
<li class="toctree-l4"><a class="reference internal" href="#rtp-header-extension-format">RTP header extension format</a></li>
<li class="toctree-l4"><a class="reference internal" href="#data-layout-details">Data layout details</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="rtp_keepalive.html">RTP Keepalive</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="../3.media/index.html">3. WebRTC 媒体</a></li>
<li class="toctree-l1"><a class="reference internal" href="../4.practice/index.html">4. WebRTC 实践</a></li>
<li class="toctree-l1"><a class="reference internal" href="../5.code/index.html">5. WebRTC 源码分析</a></li>
<li class="toctree-l1"><a class="reference internal" href="../6.tool/index.html">5. WebRTC 工具</a></li>
<li class="toctree-l1"><a class="reference internal" href="../7.misc/index.html">6. WebRTC 关联技术</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../index.html">webrtc_tutorial</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs">
<li><a href="../index.html" class="icon icon-home"></a> »</li>
<li><a href="index.html">2. WebRTC 传输</a> »</li>
<li>WebRTC RTP Header extension</li>
<li class="wy-breadcrumbs-aside">
<a href="../_sources/2.transport/rtp_header_extension.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<section id="webrtc-rtp-header-extension">
<h1>WebRTC RTP Header extension<a class="headerlink" href="#webrtc-rtp-header-extension" title="Permalink to this headline">¶</a></h1>
<table class="docutils align-default">
<colgroup>
<col style="width: 32%" />
<col style="width: 68%" />
</colgroup>
<tbody>
<tr class="row-odd"><td><p><strong>Abstract</strong></p></td>
<td><p>WebRTC RTP</p></td>
</tr>
<tr class="row-even"><td><p><strong>Authors</strong></p></td>
<td><p>Walter Fan</p></td>
</tr>
<tr class="row-odd"><td><p><strong>Status</strong></p></td>
<td><p>WIP as draft</p></td>
</tr>
<tr class="row-even"><td><p><strong>Updated</strong></p></td>
<td><p>2022-06-11</p></td>
</tr>
</tbody>
</table>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><p><a class="reference internal" href="#overview" id="id3">Overview</a></p>
<ul>
<li><p><a class="reference internal" href="#one-byte-header-profile" id="id4">One-byte header profile</a></p></li>
<li><p><a class="reference internal" href="#two-bytes-header-profile" id="id5">Two-bytes header profile</a></p></li>
</ul>
</li>
<li><p><a class="reference internal" href="#absolute-send-time" id="id6">Absolute Send Time</a></p></li>
<li><p><a class="reference internal" href="#absolute-capture-time" id="id7">Absolute Capture Time</a></p></li>
<li><p><a class="reference internal" href="#transport-wide-congestion-control" id="id8">Transport-Wide Congestion Control</a></p>
<ul>
<li><p><a class="reference internal" href="#rtp-header-extension-format" id="id9">RTP header extension format</a></p>
<ul>
<li><p><a class="reference internal" href="#data-layout-overview" id="id10">Data layout overview</a></p></li>
</ul>
</li>
<li><p><a class="reference internal" href="#data-layout-details" id="id11">Data layout details</a></p></li>
</ul>
</li>
</ul>
</div>
<section id="overview">
<h2><a class="toc-backref" href="#id3">Overview</a><a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2>
<p>在 <a class="reference external" href="https://datatracker.ietf.org/doc/html/rfc5285">RFC5285</a> 中定义了 RTP 头的扩展方法
WebRTC 默认使用 One Byte 扩展。</p>
<p>0xBEDE (the first version of this specification was written on the feast day of the Venerable Bede)
Therefore, the value zero in this field indicates that one byte of data follows,
and a value of 15 (the maximum) indicates element data of 16 bytes</p>
<section id="one-byte-header-profile">
<h3><a class="toc-backref" href="#id4">One-byte header profile</a><a class="headerlink" href="#one-byte-header-profile" title="Permalink to this headline">¶</a></h3>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="mh">0xBE</span> <span class="o">|</span><span class="mh">0xDE</span> <span class="o">|</span> <span class="n">length</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
</pre></div>
</div>
<p>注意,这里的 length 表示 Header Extension的字节长度 x 4:</p>
<p>Total_extension_length = length * 4 bytes</p>
<p>一个 One Byte Header的示例:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span>
<span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="mh">0xBE</span> <span class="o">|</span> <span class="mh">0xDE</span> <span class="o">|</span> <span class="n">length</span><span class="o">=</span><span class="mi">3</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">0</span> <span class="o">|</span> <span class="n">data</span> <span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">1</span> <span class="o">|</span> <span class="n">data</span><span class="o">...</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">...</span><span class="n">data</span> <span class="o">|</span> <span class="mi">0</span> <span class="p">(</span><span class="n">pad</span><span class="p">)</span> <span class="o">|</span> <span class="mi">0</span> <span class="p">(</span><span class="n">pad</span><span class="p">)</span> <span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">3</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="n">data</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
</pre></div>
</div>
<p>首先是0xBEDE固定字段开头,接着length长度为3,说明后面跟着3x4字节长度的header extension 。
对于第一个header extension:L=0,表示data长度为1字节。
对于第二个header extension:L=1,表示data长度为2字节。由于按4字节对齐,所以接着是值为0的填充数据。
最后一个header extension:L=3,表示data长度为4字节。</p>
</section>
<section id="two-bytes-header-profile">
<h3><a class="toc-backref" href="#id5">Two-bytes header profile</a><a class="headerlink" href="#two-bytes-header-profile" title="Permalink to this headline">¶</a></h3>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="mh">0x100</span> <span class="o">|</span><span class="n">appbits</span><span class="o">|</span> <span class="o">|</span> <span class="n">length</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
</pre></div>
</div>
<p>注意,这里的 length 表示 Header Extension的字节长度 x 4:</p>
<p>Total_extension_length = length * 4 bytes</p>
<p>一个 Two Bytes Header的示例:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span>
<span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="mh">0x10</span> <span class="o">|</span> <span class="mh">0x00</span> <span class="o">|</span> <span class="n">length</span><span class="o">=</span><span class="mi">3</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">0</span> <span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">1</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="n">data</span> <span class="o">|</span> <span class="mi">0</span> <span class="p">(</span><span class="n">pad</span><span class="p">)</span> <span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">4</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="n">data</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
</pre></div>
</div>
<ul class="simple">
<li><p>首先”defined by profile”字段为0x1000,length为3,后面跟着3x4字节长度扩展,</p></li>
<li><p>对于第一个header extension:L=0,数据长度为0,</p></li>
<li><p>对于第二个header extension:L=1,data长度为1,接着是填充数据,</p></li>
<li><p>对于第三个header extension:L=4,后面跟着4字节长度数据。</p></li>
</ul>
</section>
</section>
<section id="absolute-send-time">
<h2><a class="toc-backref" href="#id6">Absolute Send Time</a><a class="headerlink" href="#absolute-send-time" title="Permalink to this headline">¶</a></h2>
<p>refer to <a class="reference external" href="https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/abs-send-time/README.md">https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/abs-send-time/README.md</a></p>
<p>The Absolute Send Time extension is used to stamp RTP packets with a timestamp showing the departure time from the system that put this packet on the wire (or as close to this as we can manage). Contact <a class="reference external" href="mailto:solenberg%40google.com">solenberg<span>@</span>google<span>.</span>com</a> for more info.</p>
<ul class="simple">
<li><p>Name: “Absolute Sender Time” ; “RTP Header Extension for Absolute Sender Time”</p></li>
<li><p>Formal name: <a class="reference external" href="http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time">http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time</a></p></li>
</ul>
<p>SDP “a= name”: “abs-send-time” ; this is also used in client/cloud signaling.</p>
<p>Not unlike RTP with TFRC</p>
<ul class="simple">
<li><p>Wire format: 1-byte extension, 3 bytes of data. total 4 bytes extra per packet (plus shared 4 bytes for all extensions present: 2 byte magic word 0xBEDE, 2 byte # of extensions). Will in practice replace the “toffset” extension so we should see no long term increase in traffic as a result.</p></li>
<li><p>Encoding: Timestamp is in seconds, 24 bit 6.18 fixed point, yielding 64s wraparound and 3.8us resolution (one increment for each 477 bytes going out on a 1Gbps interface).</p></li>
<li><p>Relation to NTP timestamps: abs_send_time_24 = (ntp_timestamp_64 >> 14) & 0x00ffffff ; NTP timestamp is 32 bits for whole seconds, 32 bits fraction of second.</p></li>
</ul>
<p>Notes: Packets are time stamped when going out, preferably close to metal. Intermediate RTP relays (entities possibly altering the stream) should remove the extension or set its own timestamp.</p>
</section>
<section id="absolute-capture-time">
<h2><a class="toc-backref" href="#id7">Absolute Capture Time</a><a class="headerlink" href="#absolute-capture-time" title="Permalink to this headline">¶</a></h2>
<p>refer to <a class="reference external" href="https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/abs-capture-time/README.md">https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/abs-capture-time/README.md</a></p>
<p>The Absolute Capture Time extension is used to stamp RTP packets with a NTP timestamp showing when the first audio or video frame in a packet was originally captured. The intent of this extension is to provide a way to accomplish audio-to-video synchronization when RTCP-terminating intermediate systems (e.g. mixers) are involved.</p>
<p>Name: “Absolute Capture Time”; “RTP Header Extension for Absolute Capture Time”</p>
<p>Formal name: <a class="reference external" href="http://www.webrtc.org/experiments/rtp-hdrext/abs-capture-time">http://www.webrtc.org/experiments/rtp-hdrext/abs-capture-time</a></p>
<p>Status: This extension is defined here to allow for experimentation. Once experience has shown that it is useful, we intend to make a proposal based on it for standardization in the IETF.</p>
<p>Contact <a class="reference external" href="mailto:chxg%40google.com">chxg<span>@</span>google<span>.</span>com</a> for more info.</p>
<p>RTP header extension format</p>
</section>
<section id="transport-wide-congestion-control">
<h2><a class="toc-backref" href="#id8">Transport-Wide Congestion Control</a><a class="headerlink" href="#transport-wide-congestion-control" title="Permalink to this headline">¶</a></h2>
<p>refer to <a class="reference external" href="https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/transport-wide-cc-02/README.md">https://webrtc.googlesource.com/src/+/main/docs/native-code/rtp-hdrext/transport-wide-cc-02/README.md</a></p>
<p>This RTP header extension is an extended version of the extension defined in <a class="reference external" href="https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-01">https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-01</a></p>
<ul class="simple">
<li><p>Name: “Transport-wide congenstion control 02”</p></li>
<li><p>Formal name: <a class="reference external" href="http://www.webrtc.org/experiments/rtp-hdrext/transport-wide-cc-02">http://www.webrtc.org/experiments/rtp-hdrext/transport-wide-cc-02</a></p></li>
<li><p>Status: This extension is defined here to allow for experimentation. Once experience has shown that it is useful, we intend to make a proposal based on it for standardization in the IETF.</p></li>
</ul>
<p>The original extension defines a transport-wide sequence number that is used in feedback packets for congestion control. The original implementation sends these feedback packets at a periodic interval. The extended version presented here has two changes compared to the original version:</p>
<p>Feedback is sent only on request by the sender, therefore, the extension has two optional bytes that signals that a feedback packet is requested.
The sender determines if timing information should be included or not in the feedback packet. The original version always include timing information.</p>
<section id="rtp-header-extension-format">
<h3><a class="toc-backref" href="#id9">RTP header extension format</a><a class="headerlink" href="#rtp-header-extension-format" title="Permalink to this headline">¶</a></h3>
<section id="data-layout-overview">
<h4><a class="toc-backref" href="#id10">Data layout overview</a><a class="headerlink" href="#data-layout-overview" title="Permalink to this headline">¶</a></h4>
<p>Data layout of transport-wide sequence number 1-byte header + 2 bytes of data:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span>
<span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">1</span> <span class="o">|</span><span class="n">transport</span><span class="o">-</span><span class="n">wide</span> <span class="n">sequence</span> <span class="n">number</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
</pre></div>
</div>
<p>Data layout of transport-wide sequence number and optional feedback request 1-byte header + 4 bytes of data:</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span>
<span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span> <span class="mi">2</span> <span class="mi">3</span> <span class="mi">4</span> <span class="mi">5</span> <span class="mi">6</span> <span class="mi">7</span> <span class="mi">8</span> <span class="mi">9</span> <span class="mi">0</span> <span class="mi">1</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span> <span class="n">ID</span> <span class="o">|</span> <span class="n">L</span><span class="o">=</span><span class="mi">3</span> <span class="o">|</span><span class="n">transport</span><span class="o">-</span><span class="n">wide</span> <span class="n">sequence</span> <span class="n">number</span> <span class="o">|</span><span class="n">T</span><span class="o">|</span> <span class="n">seq</span> <span class="n">count</span> <span class="o">|</span>
<span class="o">+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</span>
<span class="o">|</span><span class="n">seq</span> <span class="n">count</span> <span class="n">cont</span><span class="o">.|</span>
<span class="o">+-+-+-+-+-+-+-+-+</span>
</pre></div>
</div>
</section>
</section>
<section id="data-layout-details">
<h3><a class="toc-backref" href="#id11">Data layout details</a><a class="headerlink" href="#data-layout-details" title="Permalink to this headline">¶</a></h3>
<p>The data is written in the following order,</p>
<ul>
<li><p>transport-wide sequence number (16-bit unsigned integer)</p></li>
<li><p>feedback request (optional) (16-bit unsigned integer)</p>
<p>If the extension contains two extra bytes for feedback request, this means that a feedback packet should be generated and sent immediately. The feedback request consists of a one-bit field giving the flag value T and a 15-bit field giving the sequence count as an unsigned number.
- If the bit T is set the feedback packet must contain timing information.
- seq count specifies how many packets of history that should be included in the feedback packet. If seq count is zero no feedback should be be generated, which is equivalent of sending the two-byte extension above. This is added as an option to allow for a fixed packet header size.</p>
</li>
</ul>
</section>
</section>
</section>
</div>
</div>
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
<a href="webrtc_data_channel.html" class="btn btn-neutral float-left" title="WebRTC Data Channel" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="rtp_keepalive.html" class="btn btn-neutral float-right" title="RTP Keepalive" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
</div>
<hr/>
<div role="contentinfo">
<p>© Copyright 2022, Walter Fan, Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.</p>
</div>
Built with <a href="https://www.sphinx-doc.org/">Sphinx</a> using a
<a href="https://github.com/readthedocs/sphinx_rtd_theme">theme</a>
provided by <a href="https://readthedocs.org">Read the Docs</a>.
</footer>
</div>
</div>
</section>
</div>
<script>
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$(".toggle > *").hide();
$(".toggle .header").show();
$(".toggle .header").click(function() {
$(this).parent().children().not(".header").toggle(400);
$(this).parent().children(".header").toggleClass("open");
})
});
</script>
</body>
</html> | 88.718023 | 915 | 0.633147 |
f07d5a1507c3500c176bf31abf1440a8cb4f1502 | 10,942 | js | JavaScript | appengine/src/greenday_public/static-dev/js/resources/onesearch.resource.js | meedan/montage | 4da0116931edc9af91f226876330645837dc9bcc | [
"Apache-2.0"
] | 6 | 2018-07-31T16:48:07.000Z | 2020-02-01T03:17:51.000Z | appengine/src/greenday_public/static-dev/js/resources/onesearch.resource.js | meedan/montage | 4da0116931edc9af91f226876330645837dc9bcc | [
"Apache-2.0"
] | 41 | 2018-08-07T16:43:07.000Z | 2020-06-05T18:54:50.000Z | appengine/src/greenday_public/static-dev/js/resources/onesearch.resource.js | meedan/montage | 4da0116931edc9af91f226876330645837dc9bcc | [
"Apache-2.0"
] | 1 | 2018-08-07T16:40:18.000Z | 2018-08-07T16:40:18.000Z | (function () {
angular
.module('app.resources')
.factory('OneSearchModel', OneSearchModel)
.factory('OneSearchVideoModel', OneSearchVideoModel)
.factory('OneSearchService', OneSearchService);
/** @ngInject */
function OneSearchModel(DS) {
var oneSearchModel = DS.defineResource({
name: 'one-search',
endpoint: 'onesearch',
actions: {
search: {
pathname: 'advanced/video',
method: 'GET'
}
}
});
return oneSearchModel;
}
/** @ngInject */
function OneSearchVideoModel(DS) {
var oneSearchModel = DS.defineResource({
name: 'one-search-video',
endpoint: 'onesearch',
idAttribute: 'youtube_id'
});
return oneSearchModel;
}
/** @ngInject */
function OneSearchService($q, $location, $filter, YouTubeDataService, OneSearchModel, OneSearchVideoModel, PageService, _, moment) {
var service = {
doSearch: doSearch,
ytNextPageToken: null,
currentResults: []
};
return service;
function buildUrl() {
var qs = $location.search(),
params = [];
angular.forEach(qs, function (value, key) {
if (key !== 'searchVisible') {
params.push(key + '=' + value);
}
});
if (params.length) {
return '?' + params.join('&');
}
return '';
}
function doSearch(filters, isLoadMore) {
var oneSearchPromise,
ytSearchPromise,
dfd = $q.defer(),
promises = [],
hasRecordedDate = filters.date && filters.date.match(/^recorded_date/),
hasLocation = filters.location && (filters.location === 'true' || filters.location === 'false');
if (!isLoadMore) {
ytNextPageToken = null;
// Clear the videos before doing the new request
OneSearchVideoModel.ejectAll();
oneSearchPromise = doOneSearch(filters);
promises.push(oneSearchPromise);
}
if (!filters.tag_ids && !hasRecordedDate && !hasLocation) {
ytSearchPromise = doYoutubeSearch(filters);
promises.push(ytSearchPromise);
}
$q.all(promises).then(function () {
dfd.resolve(OneSearchVideoModel.getAll());
}, function (reason) {
dfd.reject(reason);
});
return dfd.promise;
}
function doOneSearch(filters) {
var oneSearchDeferred = $q.defer(),
qs = buildUrl(),
projectId = PageService.getPageData().projectId,
filterObj = angular.extend({}, filters, {project_id: projectId});
OneSearchModel
.search({ params: filterObj})
.then(function(data) {
// Montage videos are already in the format we need
var results = data.data.items,
video;
angular.forEach(results, function (result, index) {
video = OneSearchVideoModel.createInstance(result);
video.theatre_url = '/project/' + video.project_id + '/video/' + video.youtube_id + qs;
video.order = index;
OneSearchVideoModel.inject(video);
});
oneSearchDeferred.resolve(results);
}, function(e) {
oneSearchDeferred.reject(e);
});
return oneSearchDeferred.promise;
}
function doYoutubeSearch(filters) {
// next check for pasted in playlist / channel urls
var channelName = youtubeChannelName(filters.q),
channelId = youtubeChannelId(filters.q),
playlistId = youtubePlaylistId(filters.q),
searchType = 'video',
ytSearchPromise;
if (channelName) {
filters.q = channelName;
filters.isUsername = true;
searchType = 'channel';
} else if (channelId) {
filters.q = channelId;
filters.isUsername = false;
searchType = 'channel';
} else if (playlistId) {
filters.q = playlistId;
searchType = 'playlist';
}
// work out what sort of YouTube search to perform
if (searchType === 'video') {
ytSearchPromise = searchYouTubeVideo(filters);
} else if (searchType === 'channel') {
ytSearchPromise = searchYouTubeChannel(filters);
} else if (searchType === 'playlist') {
ytSearchPromise = searchYouTubePlaylist(filters);
}
return ytSearchPromise;
}
function youtubeChannelName(url) {
if (!url) {
return false;
}
var r = /^(https?:\/\/)?(www\.)?youtube\.com\/user\/([\w\-\_]+)/,
matches = url.match(r);
return matches ? matches[3] : false;
}
function youtubeChannelId(url) {
if (!url) {
return false;
}
var r = /^(https?:\/\/)?(www\.)?youtube\.com\/channel\/(UC[\w\-\_]+)/,
matches = url.match(r);
return matches ? matches[3] : false;
}
function youtubePlaylistId(url) {
if (!url) {
return false;
}
var r = /^(https?:\/\/)?(www\.)?youtube\.com\/playlist\?list=([\w\-\_]+)/,
matches = url.match(r);
return matches ? matches[3] : false;
}
function parseFilters(filters) {
var searchObj = {},
loc,
date,
toDate,
dateObj,
toDateObj,
dateParts,
dateType,
dateMode;
// pass any greenday filters applied to the YT search
if (filters.channel_ids) {
searchObj.channelId = filters.channel_ids.split(',')[0];
}
// same for greenday location filter
if (filters.location) {
loc = filters.location.split('__');
searchObj.location = loc[0];
if (loc[1]) {
searchObj.location += ',' + loc[1];
}
if (loc[2]) {
searchObj.locationRadius = loc[2] + 'mi';
}
}
if (filters.date) {
dateParts = filters.date.split('__');
date = dateParts[2];
toDate = dateParts[3];
dateObj = moment.utc(date, 'YYYY-MM-DD');
toDateObj = moment.utc(toDate, 'YYYY-MM-DD');
dateMode = dateParts[1];
dateType = dateParts[0];
if (dateType === 'publish_date') {
switch (dateMode) {
case 'exact':
dateObj.subtract(1, 'seconds');
searchObj.publishedAfter = dateObj.toISOString();
dateObj.add(1, 'days');
searchObj.publishedBefore = dateObj.toISOString();
break;
case 'before':
dateObj.startOf('day');
searchObj.publishedBefore = dateObj.toISOString();
break;
case 'after':
dateObj.endOf('day');
searchObj.publishedAfter = dateObj.toISOString();
break;
case 'between':
dateObj.startOf('day');
searchObj.publishedAfter = dateObj.toISOString();
toDateObj.endOf('day');
searchObj.publishedBefore = toDateObj.toISOString();
break;
case 'notbetween':
dateObj.startOf('day');
searchObj.publishedBefore = dateObj.toISOString();
toDateObj.endOf('day');
searchObj.publishedAfter = toDateObj.toISOString();
break;
}
}
}
return searchObj;
}
function searchYoutube(section, operation, searchParams, promiseToResolve, youtubeIdCollectorFn) {
if (service.ytNextPageToken) {
searchParams.pageToken = service.ytNextPageToken;
}
YouTubeDataService
.request(section, operation, searchParams)
.then(function (results) {
// once we have results back from YouTube, de-dupe and return.
var youtubeIds = _.map(results.items, youtubeIdCollectorFn),
detailRequest = YouTubeDataService.request('videos', 'list', {
id: youtubeIds.join(','),
part: 'snippet,contentDetails',
maxResults: 50,
type: 'video'
});
if (results.nextPageToken) {
service.ytNextPageToken = results.nextPageToken;
} else {
service.ytNextPageToken = null;
}
detailRequest.then(function (videos) {
getVideoDetails(results, videos);
promiseToResolve.resolve(OneSearchVideoModel.getAll());
});
});
}
function searchYouTubeChannel(filters) {
var youtubeSearchDeferred = $q.defer(),
searchObj = {
channelId: filters.q,
part: 'snippet',
maxResults: 50,
type: 'video'
},
youtubeIdCollectorFn = function (item) {
return item.id.videoId;
};
angular.extend(searchObj, parseFilters(filters));
if (filters.isUsername) {
// We need to make an API call to channel list
// and get the channel id first
YouTubeDataService
.request('search', 'list', {
part: 'snippet',
type: 'channel',
maxResults: 1,
q: filters.q
})
.then(function (response) {
searchObj.channelId = response.items[0].id.channelId;
searchYoutube('search', 'list', searchObj, youtubeSearchDeferred, youtubeIdCollectorFn);
});
} else {
searchYoutube('search', 'list', searchObj, youtubeSearchDeferred, youtubeIdCollectorFn);
}
return youtubeSearchDeferred.promise;
}
function searchYouTubePlaylist(filters) {
var youtubeSearchDeferred = $q.defer(),
searchObj = {
playlistId: filters.q,
part: 'snippet',
maxResults: 50,
type: 'video'
},
youtubeIdCollectorFn = function (item) {
return item.snippet.resourceId.videoId;
};
searchYoutube('playlistItems', 'list', searchObj, youtubeSearchDeferred, youtubeIdCollectorFn);
return youtubeSearchDeferred.promise;
}
function searchYouTubeVideo(filters) {
var youtubeSearchDeferred = $q.defer(),
searchObj = {
q: filters.q,
part: 'snippet',
maxResults: 50,
type: 'video'
},
youtubeIdCollectorFn = function (item) {
return item.id.videoId;
};
angular.extend(searchObj, parseFilters(filters));
searchYoutube('search', 'list', searchObj, youtubeSearchDeferred, youtubeIdCollectorFn);
return youtubeSearchDeferred.promise;
}
function getVideoDetails(results, videos) {
var qs = buildUrl();
angular.forEach(results.items, function (result, index) {
if (videos.items[index]) {
var videoDetails = videos.items[index].contentDetails,
channelTitle = null,
videoDuration = moment.duration(videoDetails.duration).asSeconds(),
backupChannelTitle = videos.items[index].snippet.channelTitle,
durationFilter = $filter('duration'),
youtube_id = result.id.videoId || result.snippet.resourceId.videoId,
notes = videos.items[index].snippet.description.replace(/\n/g, '<br>'),
video;
// if the result posesses a channel title use that
if(result.snippet.channelTitle){
channelTitle = result.snippet.channelTitle;
} else {
channelTitle = backupChannelTitle;
}
// Montage videos has the priority, so if it exists, don't override
video = OneSearchVideoModel.get(youtube_id);
if (!video) {
// Convert Youtube video -> Montage video
video = OneSearchVideoModel.createInstance({
theatre_url: '/video/' + result.id.videoId + qs,
youtube_id: youtube_id,
name: result.snippet.title,
channel_name: channelTitle,
channel_id: result.snippet.channelId,
publish_date: result.snippet.publishedAt,
notes: notes,
duration: videoDuration,
tag_count: ' ',
pretty_duration: durationFilter(videoDuration),
pretty_publish_date: moment(result.snippet.publishedAt).format('MMM DD, YYYY'),
order: 1000 + index
});
OneSearchVideoModel.inject(video);
}
}
});
return OneSearchVideoModel.getAll();
}
}
}());
| 26.687805 | 133 | 0.640559 |
bbccd403aaec1aaa20453ec6b74371a47028d348 | 7,616 | rs | Rust | xmpp-parsers/src/bookmarks2.rs | Tellyo/gst-meet | 1bd9b052ddf6917aff910a32d3f9ef60056188de | [
"Apache-2.0",
"MIT"
] | 24 | 2021-08-13T12:59:55.000Z | 2022-03-08T14:55:02.000Z | xmpp-parsers/src/bookmarks2.rs | Tellyo/gst-meet | 1bd9b052ddf6917aff910a32d3f9ef60056188de | [
"Apache-2.0",
"MIT"
] | 24 | 2021-09-26T21:16:55.000Z | 2022-03-29T06:04:40.000Z | xmpp-parsers/src/bookmarks2.rs | Tellyo/gst-meet | 1bd9b052ddf6917aff910a32d3f9ef60056188de | [
"Apache-2.0",
"MIT"
] | 4 | 2021-08-14T19:42:16.000Z | 2022-02-15T08:19:49.000Z | // Copyright (c) 2019 Emmanuel Gil Peyrot <[email protected]>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use crate::ns;
use crate::util::error::Error;
use crate::Element;
use std::convert::TryFrom;
generate_attribute!(
/// Whether a conference bookmark should be joined automatically.
Autojoin,
"autojoin",
bool
);
/// A conference bookmark.
#[derive(Debug, Clone)]
pub struct Conference {
/// Whether a conference bookmark should be joined automatically.
pub autojoin: Autojoin,
/// A user-defined name for this conference.
pub name: Option<String>,
/// The nick the user will use to join this conference.
pub nick: Option<String>,
/// The password required to join this conference.
pub password: Option<String>,
/// Extensions elements.
pub extensions: Option<Vec<Element>>,
}
impl Conference {
/// Create a new conference.
pub fn new() -> Conference {
Conference {
autojoin: Autojoin::False,
name: None,
nick: None,
password: None,
extensions: None,
}
}
}
impl TryFrom<Element> for Conference {
type Error = Error;
fn try_from(root: Element) -> Result<Conference, Error> {
check_self!(root, "conference", BOOKMARKS2, "Conference");
check_no_unknown_attributes!(root, "Conference", ["autojoin", "name"]);
let mut conference = Conference {
autojoin: get_attr!(root, "autojoin", Default),
name: get_attr!(root, "name", Option),
nick: None,
password: None,
extensions: None,
};
for child in root.children().cloned() {
if child.is("extensions", ns::BOOKMARKS2) {
if conference.extensions.is_some() {
return Err(Error::ParseError(
"Conference must not have more than one extensions element.",
));
}
conference.extensions = Some(child.children().cloned().collect());
} else if child.is("nick", ns::BOOKMARKS2) {
if conference.nick.is_some() {
return Err(Error::ParseError(
"Conference must not have more than one nick.",
));
}
check_no_children!(child, "nick");
check_no_attributes!(child, "nick");
conference.nick = Some(child.text());
} else if child.is("password", ns::BOOKMARKS2) {
if conference.password.is_some() {
return Err(Error::ParseError(
"Conference must not have more than one password.",
));
}
check_no_children!(child, "password");
check_no_attributes!(child, "password");
conference.password = Some(child.text());
}
}
Ok(conference)
}
}
impl From<Conference> for Element {
fn from(conference: Conference) -> Element {
Element::builder("conference", ns::BOOKMARKS2)
.attr("autojoin", conference.autojoin)
.attr("name", conference.name)
.append_all(
conference
.nick
.map(|nick| Element::builder("nick", ns::BOOKMARKS2).append(nick)),
)
.append_all(
conference
.password
.map(|password| Element::builder("password", ns::BOOKMARKS2).append(password)),
)
.append_all(match conference.extensions {
Some(extensions) => extensions,
None => vec![],
})
.build()
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::pubsub::pubsub::Item as PubSubItem;
use crate::Element;
use std::convert::TryFrom;
#[cfg(target_pointer_width = "32")]
#[test]
fn test_size() {
assert_size!(Conference, 52);
}
#[cfg(target_pointer_width = "64")]
#[test]
fn test_size() {
assert_size!(Conference, 104);
}
#[test]
fn simple() {
let elem: Element = "<conference xmlns='urn:xmpp:bookmarks:1'/>"
.parse()
.unwrap();
let elem1 = elem.clone();
let conference = Conference::try_from(elem).unwrap();
assert_eq!(conference.autojoin, Autojoin::False);
assert_eq!(conference.name, None);
assert_eq!(conference.nick, None);
assert_eq!(conference.password, None);
let elem2 = Element::from(Conference::new());
assert_eq!(elem1, elem2);
}
#[test]
fn complete() {
let elem: Element = "<conference xmlns='urn:xmpp:bookmarks:1' autojoin='true' name='Test MUC'><nick>Coucou</nick><password>secret</password><extensions><test xmlns='urn:xmpp:unknown' /></extensions></conference>".parse().unwrap();
let conference = Conference::try_from(elem).unwrap();
assert_eq!(conference.autojoin, Autojoin::True);
assert_eq!(conference.name, Some(String::from("Test MUC")));
assert_eq!(conference.clone().nick.unwrap(), "Coucou");
assert_eq!(conference.clone().password.unwrap(), "secret");
assert_eq!(conference.clone().extensions.unwrap().len(), 1);
assert!(conference.clone().extensions.unwrap()[0].is("test", "urn:xmpp:unknown"));
}
#[test]
fn wrapped() {
let elem: Element = "<item xmlns='http://jabber.org/protocol/pubsub' id='[email protected]'><conference xmlns='urn:xmpp:bookmarks:1' autojoin='true' name='Test MUC'><nick>Coucou</nick><password>secret</password></conference></item>".parse().unwrap();
let item = PubSubItem::try_from(elem).unwrap();
let payload = item.payload.clone().unwrap();
println!("FOO: payload: {:?}", payload);
// let conference = Conference::try_from(payload).unwrap();
let conference = Conference::try_from(payload);
println!("FOO: conference: {:?}", conference);
/*
assert_eq!(conference.autojoin, Autojoin::True);
assert_eq!(conference.name, Some(String::from("Test MUC")));
assert_eq!(conference.clone().nick.unwrap(), "Coucou");
assert_eq!(conference.clone().password.unwrap(), "secret");
let elem: Element = "<event xmlns='http://jabber.org/protocol/pubsub#event'><items node='urn:xmpp:bookmarks:1'><item xmlns='http://jabber.org/protocol/pubsub#event' id='[email protected]'><conference xmlns='urn:xmpp:bookmarks:1' autojoin='true' name='Test MUC'><nick>Coucou</nick><password>secret</password></conference></item></items></event>".parse().unwrap();
let mut items = match PubSubEvent::try_from(elem) {
Ok(PubSubEvent::PublishedItems { node, items }) => {
assert_eq!(&node.0, ns::BOOKMARKS2);
items
}
_ => panic!(),
};
assert_eq!(items.len(), 1);
let item = items.pop().unwrap();
let payload = item.payload.clone().unwrap();
let conference = Conference::try_from(payload).unwrap();
assert_eq!(conference.autojoin, Autojoin::True);
assert_eq!(conference.name, Some(String::from("Test MUC")));
assert_eq!(conference.clone().nick.unwrap(), "Coucou");
assert_eq!(conference.clone().password.unwrap(), "secret");
*/
}
}
| 37.70297 | 375 | 0.576812 |
7fe5ec403c73b437bf24226401dc3a50c4a3ff80 | 5,357 | sql | SQL | webserver/app-moe/sql/Archive/3.7.x/3.7.2/POCOR-3451/commit.sql | tharangar/k8s-webserver | c0701842c711b93c2a65214adbbeb0de02f1e81a | [
"Apache-2.0"
] | 1 | 2019-04-23T19:05:24.000Z | 2019-04-23T19:05:24.000Z | webserver/app-moe/sql/Archive/3.7.x/3.7.2/POCOR-3451/commit.sql | tharangar/k8s-webserver | c0701842c711b93c2a65214adbbeb0de02f1e81a | [
"Apache-2.0"
] | null | null | null | webserver/app-moe/sql/Archive/3.7.x/3.7.2/POCOR-3451/commit.sql | tharangar/k8s-webserver | c0701842c711b93c2a65214adbbeb0de02f1e81a | [
"Apache-2.0"
] | null | null | null | -- db_patches
INSERT INTO `db_patches` (`issue`, `created`) VALUES('POCOR-3451', NOW());
-- backup field_options tables
RENAME TABLE `field_options` TO `z_3451_field_options`;
RENAME TABLE `field_option_values` TO `z_3451_field_option_values`;
-- institution_visit_requests
DROP TABLE IF EXISTS `institution_visit_requests`;
CREATE TABLE IF NOT EXISTS `institution_visit_requests` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date_of_visit` date NOT NULL,
`comment` text,
`file_name` varchar(250) DEFAULT NULL,
`file_content` longblob,
`status_id` int(11) NOT NULL COMMENT 'links to workflow_steps.id',
`assignee_id` int(11) NOT NULL DEFAULT '0' COMMENT 'links to security_users.id',
`academic_period_id` int(11) NOT NULL COMMENT 'links to academic_periods.id',
`quality_visit_type_id` int(11) NOT NULL COMMENT 'links to quality_visit_types.id',
`institution_id` int(11) NOT NULL COMMENT 'links to institutions.id',
`modified_user_id` int(11) DEFAULT NULL,
`modified` datetime DEFAULT NULL,
`created_user_id` int(11) NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `status_id` (`status_id`),
KEY `assignee_id` (`assignee_id`),
KEY `academic_period_id` (`academic_period_id`),
KEY `quality_visit_type_id` (`quality_visit_type_id`),
KEY `institution_id` (`institution_id`),
KEY `modified_user_id` (`modified_user_id`),
KEY `created_user_id` (`created_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='This table contains all visit requested by the institutions';
-- workflow_models
RENAME TABLE `workflow_models` TO `z_3451_workflow_models`;
DROP TABLE IF EXISTS `workflow_models`;
CREATE TABLE IF NOT EXISTS `workflow_models` (
`id` int(11) NOT NULL,
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`model` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`filter` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_school_based` int(1) NOT NULL DEFAULT '0',
`created_user_id` int(11) NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `created_user_id` (`created_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='This table contains the list of features that are workflow-enabled';
INSERT INTO `workflow_models` (`id`, `name`, `model`, `filter`, `is_school_based`, `created_user_id`, `created`)
SELECT `id`, `name`, `model`, `filter`, `is_school_based`, `created_user_id`, NOW()
FROM `z_3451_workflow_models`;
-- workflow_models
SET @modelId := 9;
INSERT INTO `workflow_models` (`id`, `name`, `model`, `filter`, `is_school_based`, `created_user_id`, `created`) VALUES
(@modelId, 'Institutions > Visits > Requests', 'Institution.VisitRequests', NULL, 1, 1, NOW());
-- Pre-insert workflows
INSERT INTO `workflows` (`code`, `name`, `workflow_model_id`, `created_user_id`, `created`) VALUES
('VISIT-1001', 'Institutions - Visit Requests', @modelId, 1, NOW());
SET @workflowId := 0;
SELECT `id` INTO @workflowId FROM `workflows` WHERE `code` = 'VISIT-1001';
-- Pre-insert workflow_steps
SET @openStatusId := 0;
SET @pendingStatusId := 0;
SET @closedStatusId := 0;
INSERT INTO `workflow_steps` (`name`, `category`, `is_editable`, `is_removable`, `is_system_defined`, `workflow_id`, `created_user_id`, `created`) VALUES
('Open', 1, 1, 1, 1, @workflowId, 1, NOW()),
('Pending For Approval', 2, 0, 0, 1, @workflowId, 1, NOW()),
('Closed', 3, 0, 0, 1, @workflowId, 1, NOW());
SELECT `id` INTO @openStatusId FROM `workflow_steps` WHERE `workflow_id` = @workflowId AND `category` = 1;
SELECT `id` INTO @pendingStatusId FROM `workflow_steps` WHERE `workflow_id` = @workflowId AND `category` = 2;
SELECT `id` INTO @closedStatusId FROM `workflow_steps` WHERE `workflow_id` = @workflowId AND `category` = 3;
-- Pre-insert workflow_actions
INSERT INTO `workflow_actions` (`name`, `description`, `action`, `visible`, `comment_required`, `allow_by_assignee`, `event_key`, `workflow_step_id`, `next_workflow_step_id`, `created_user_id`, `created`) VALUES
('Submit For Approval', NULL, 0, 1, 0, 1, NULL, @openStatusId, @pendingStatusId, 1, NOW()),
('Cancel', NULL, 1, 1, 0, 1, NULL, @openStatusId, @closedStatusId, 1, NOW()),
('Approve', NULL, 0, 1, 0, 0, NULL, @pendingStatusId, @closedStatusId, 1, NOW()),
('Reject', NULL, 1, 1, 0, 0, NULL, @pendingStatusId, @openStatusId, 1, NOW()),
('Approve', NULL, 0, 0, 0, 0, NULL, @closedStatusId, 0, 1, NOW()),
('Reject', NULL, 1, 0, 0, 0, NULL, @closedStatusId, 0, 1, NOW()),
('Reopen', NULL, NULL, 1, 0, 0, NULL, @closedStatusId, @openStatusId, 1, NOW());
-- security_functions
INSERT INTO `security_functions` (`id`, `name`, `controller`, `module`, `category`, `parent_id`, `_view`, `_edit`, `_add`, `_delete`, `_execute`, `order`, `visible`, `created_user_id`, `created`)
VALUES (1048, 'Visit Requests', 'Institutions', 'Institutions', 'Quality', 1000, 'VisitRequests.index|VisitRequests.view', 'VisitRequests.edit', 'VisitRequests.add', 'VisitRequests.remove', 'VisitRequests.download', 1029, 1, 1, NOW());
UPDATE `security_functions` SET `order` = 1048 WHERE `id` = 1027;
-- labels
INSERT INTO `labels` (`id`, `module`, `field`, `module_name`, `field_name`, `visible`, `created_user_id`, `created`)
VALUES ('8077f98a-9b4f-11e6-8f28-525400b263eb', 'VisitRequests', 'file_content', 'Institutions -> VisitRequests', 'Attachment', 1, 1, NOW());
| 54.111111 | 235 | 0.720366 |
50d3275a60f8b8a6db8add3e601015da441b29cb | 6,843 | go | Go | controller/model/enrollment_handler.go | netfoundry/ziti-edge | 991ee8e2d0cf28a9e971989dfea5b841c84b0901 | [
"Apache-2.0"
] | 7 | 2019-12-03T18:53:35.000Z | 2020-05-18T18:01:27.000Z | controller/model/enrollment_handler.go | netfoundry/ziti-edge | 991ee8e2d0cf28a9e971989dfea5b841c84b0901 | [
"Apache-2.0"
] | 84 | 2019-12-03T18:51:21.000Z | 2020-05-25T09:02:59.000Z | controller/model/enrollment_handler.go | netfoundry/ziti-edge | 991ee8e2d0cf28a9e971989dfea5b841c84b0901 | [
"Apache-2.0"
] | 2 | 2019-12-05T23:09:07.000Z | 2019-12-13T00:42:31.000Z | /*
Copyright NetFoundry, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package model
import (
"fmt"
"github.com/openziti/edge/controller/apierror"
"github.com/openziti/edge/controller/persistence"
"github.com/openziti/fabric/controller/models"
"github.com/openziti/foundation/util/errorz"
"github.com/openziti/storage/boltz"
"go.etcd.io/bbolt"
"time"
)
type EnrollmentHandler struct {
baseEntityManager
enrollmentStore persistence.EnrollmentStore
}
func NewEnrollmentHandler(env Env) *EnrollmentHandler {
handler := &EnrollmentHandler{
baseEntityManager: newBaseEntityManager(env, env.GetStores().Enrollment),
enrollmentStore: env.GetStores().Enrollment,
}
handler.impl = handler
return handler
}
func (handler *EnrollmentHandler) newModelEntity() boltEntitySink {
return &Enrollment{}
}
func (handler *EnrollmentHandler) getEnrollmentMethod(ctx EnrollmentContext) (string, error) {
method := ctx.GetMethod()
if method == persistence.MethodEnrollCa {
return method, nil
}
token := ctx.GetToken()
// token present, assumes all other enrollment methods
enrollment, err := handler.ReadByToken(token)
if err != nil {
return "", err
}
if enrollment == nil {
return "", apierror.NewInvalidEnrollmentToken()
}
method = enrollment.Method
return method, nil
}
func (handler *EnrollmentHandler) Enroll(ctx EnrollmentContext) (*EnrollmentResult, error) {
method, err := handler.getEnrollmentMethod(ctx)
if err != nil {
return nil, err
}
enrollModule := handler.env.GetEnrollRegistry().GetByMethod(method)
if enrollModule == nil {
return nil, apierror.NewInvalidEnrollMethod()
}
return enrollModule.Process(ctx)
}
func (handler *EnrollmentHandler) ReadByToken(token string) (*Enrollment, error) {
enrollment := &Enrollment{}
err := handler.env.GetDbProvider().GetDb().View(func(tx *bbolt.Tx) error {
boltEntity, err := handler.env.GetStores().Enrollment.LoadOneByToken(tx, token)
if err != nil {
return err
}
if boltEntity == nil {
enrollment = nil
return nil
}
return enrollment.fillFrom(handler, tx, boltEntity)
})
if err != nil {
return nil, err
}
return enrollment, nil
}
func (handler *EnrollmentHandler) ReplaceWithAuthenticator(enrollmentId string, authenticator *Authenticator) error {
return handler.env.GetDbProvider().GetDb().Update(func(tx *bbolt.Tx) error {
ctx := boltz.NewMutateContext(tx)
err := handler.env.GetStores().Enrollment.DeleteById(ctx, enrollmentId)
if err != nil {
return err
}
_, err = handler.env.GetManagers().Authenticator.createEntityInTx(ctx, authenticator)
return err
})
}
func (handler *EnrollmentHandler) readInTx(tx *bbolt.Tx, id string) (*Enrollment, error) {
modelEntity := &Enrollment{}
if err := handler.readEntityInTx(tx, id, modelEntity); err != nil {
return nil, err
}
return modelEntity, nil
}
func (handler *EnrollmentHandler) Delete(id string) error {
return handler.deleteEntity(id)
}
func (handler *EnrollmentHandler) Read(id string) (*Enrollment, error) {
entity := &Enrollment{}
if err := handler.readEntity(id, entity); err != nil {
return nil, err
}
return entity, nil
}
func (handler *EnrollmentHandler) RefreshJwt(id string, expiresAt time.Time) error {
enrollment, err := handler.Read(id)
if err != nil {
if boltz.IsErrNotFoundErr(err) {
return errorz.NewNotFound()
}
return err
}
if enrollment.Jwt == "" {
return apierror.NewInvalidEnrollMethod()
}
if expiresAt.Before(time.Now()) {
return errorz.NewFieldError("must be after the current date and time", "expiresAt", expiresAt)
}
if err := enrollment.FillJwtInfoWithExpiresAt(handler.env, *enrollment.IdentityId, expiresAt); err != nil {
return err
}
err = handler.patchEntity(enrollment, boltz.MapFieldChecker{
persistence.FieldEnrollmentJwt: struct{}{},
persistence.FieldEnrollmentExpiresAt: struct{}{},
persistence.FieldEnrollmentIssuedAt: struct{}{},
})
return err
}
func (handler *EnrollmentHandler) Query(query string) ([]*Enrollment, error) {
var enrollments []*Enrollment
if err := handler.list(query, func(tx *bbolt.Tx, ids []string, qmd *models.QueryMetaData) error {
for _, id := range ids {
enrollment, _ := handler.readInTx(tx, id)
if enrollment != nil {
enrollments = append(enrollments, enrollment)
}
}
return nil
}); err != nil {
return nil, err
}
return enrollments, nil
}
func (handler *EnrollmentHandler) Create(model *Enrollment) (string, error) {
if model.IdentityId == nil {
return "", apierror.NewBadRequestFieldError(*errorz.NewFieldError("identity not found", "identityId", model.IdentityId))
}
identity, err := handler.env.GetManagers().Identity.Read(*model.IdentityId)
if err != nil || identity == nil {
return "", apierror.NewBadRequestFieldError(*errorz.NewFieldError("identity not found", "identityId", model.IdentityId))
}
if model.ExpiresAt.Before(time.Now()) {
return "", apierror.NewBadRequestFieldError(*errorz.NewFieldError("expiresAt must be in the future", "expiresAt", model.ExpiresAt))
}
expiresAt := model.ExpiresAt.UTC()
model.ExpiresAt = &expiresAt
switch model.Method {
case persistence.MethodEnrollOttCa:
if model.CaId == nil {
return "", apierror.NewBadRequestFieldError(*errorz.NewFieldError("ca not found", "caId", model.CaId))
}
ca, err := handler.env.GetManagers().Ca.Read(*model.CaId)
if err != nil || ca == nil {
return "", apierror.NewBadRequestFieldError(*errorz.NewFieldError("ca not found", "caId", model.CaId))
}
case persistence.MethodAuthenticatorUpdb:
if model.Username == nil || *model.Username == "" {
return "", apierror.NewBadRequestFieldError(*errorz.NewFieldError("username not provided", "username", model.Username))
}
case persistence.MethodEnrollOtt:
default:
return "", apierror.NewBadRequestFieldError(*errorz.NewFieldError("unsupported enrollment method", "method", model.Method))
}
enrollments, err := handler.Query(fmt.Sprintf(`identity="%s"`, identity.Id))
if err != nil {
return "", err
}
for _, enrollment := range enrollments {
if enrollment.Method == model.Method {
return "", apierror.NewEnrollmentExists(model.Method)
}
}
if err := model.FillJwtInfoWithExpiresAt(handler.env, identity.Id, *model.ExpiresAt); err != nil {
return "", err
}
return handler.createEntity(model)
}
| 26.730469 | 133 | 0.726144 |
3300e6cf675f4b79e58bd1692aff8eee2b9eee77 | 124 | py | Python | math/PowerModPower.py | silvioedu/HackerRank-Python-Practice | e31ebe49d431c0a23fed0cd67a6984e2b0b7a260 | [
"MIT"
] | null | null | null | math/PowerModPower.py | silvioedu/HackerRank-Python-Practice | e31ebe49d431c0a23fed0cd67a6984e2b0b7a260 | [
"MIT"
] | null | null | null | math/PowerModPower.py | silvioedu/HackerRank-Python-Practice | e31ebe49d431c0a23fed0cd67a6984e2b0b7a260 | [
"MIT"
] | null | null | null | if __name__ == '__main__':
a, b, m = int(input()),int(input()),int(input())
print(pow(a,b))
print(pow(a,b,m)) | 31 | 53 | 0.532258 |
7b4717e4e07a1bc6c4edc482cd3d11f4c9ab6e4e | 503 | css | CSS | HABITAT_Front-End/app-ecom/src/app/categoria/categoria.component.css | thomazfranca/project_habitat_ecommerce | 67fa25edd4e62101446835d90fc811f6c46d3523 | [
"MIT"
] | 7 | 2021-07-14T16:56:54.000Z | 2021-07-14T17:55:02.000Z | HABITAT_Front-End/app-ecom/src/app/categoria/categoria.component.css | fegiacomelli/Projeto-integrador | 6c6887e3fe94f8d22e321e462a0f61f3cddce9fd | [
"MIT"
] | null | null | null | HABITAT_Front-End/app-ecom/src/app/categoria/categoria.component.css | fegiacomelli/Projeto-integrador | 6c6887e3fe94f8d22e321e462a0f61f3cddce9fd | [
"MIT"
] | 3 | 2021-06-22T16:17:03.000Z | 2021-06-29T12:17:16.000Z | .bg{
background-color: rgba(72, 213, 5, 0.39);
}
.paD{
padding: 30px;
}
.paD1{
padding-bottom: 30px;
}
button{
background-color: rgba(191, 166, 107, 1);
color: white;
}
button:hover{
background-color: white;
color: #B6ED9D;
}
.font{
color: white;
}
.font:hover{
color: gray;
}
.cat{
background-color: rgba(191, 166, 107, 1);
}
.cat2{
background-color: rgba(191, 166, 107, 1);
border-radius: 50% 50% 0% 0%;
margin-bottom: -1.5rem;
}
| 11.97619 | 45 | 0.564612 |
6de8cde14a1c29bee5015567f590844668000ba9 | 263,230 | sql | SQL | Database/RemoteControlHTTP.sql | manukautech/ZZXMRR_Archive_2017 | 3e00fdb8d2e78a36051cbb817a5fd24cafed0c33 | [
"Apache-2.0"
] | null | null | null | Database/RemoteControlHTTP.sql | manukautech/ZZXMRR_Archive_2017 | 3e00fdb8d2e78a36051cbb817a5fd24cafed0c33 | [
"Apache-2.0"
] | null | null | null | Database/RemoteControlHTTP.sql | manukautech/ZZXMRR_Archive_2017 | 3e00fdb8d2e78a36051cbb817a5fd24cafed0c33 | [
"Apache-2.0"
] | null | null | null | USE [RemoteControlHTTP]
GO
/****** Object: Table [dbo].[Category] Script Date: 11/08/2017 1:21:30 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Category](
[CategoryId] [int] NOT NULL,
[Description] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_Category] PRIMARY KEY CLUSTERED
(
[CategoryId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Message] Script Date: 11/08/2017 1:21:30 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Message](
[MessageId] [int] IDENTITY(1,1) NOT NULL,
[CategoryId] [int] NOT NULL,
[CommanderId] [int] NOT NULL,
[RobotId] [int] NOT NULL,
[Command] [varchar](256) NOT NULL,
[Response] [varchar](256) NOT NULL,
[IsLog] [bit] NOT NULL,
[XTimeCommand] [datetime] NULL,
[XTimeResponse] [datetime] NULL,
CONSTRAINT [PK_Message] PRIMARY KEY CLUSTERED
(
[MessageId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[MessageLog] Script Date: 11/08/2017 1:21:30 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MessageLog](
[MessageId] [int] NOT NULL,
[CategoryId] [int] NOT NULL,
[CommanderId] [int] NOT NULL,
[RobotId] [int] NOT NULL,
[Command] [varchar](256) NOT NULL,
[Response] [varchar](256) NULL,
[IsLog] [bit] NOT NULL,
[XTimeCommand] [datetime] NULL,
[XTimeResponse] [datetime] NULL,
CONSTRAINT [PK_MessageLog] PRIMARY KEY CLUSTERED
(
[MessageId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[DemoCommander] Script Date: 10/09/2017 4:36:06 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[DemoCommander](
[DemoId] [int] NOT NULL,
[SessionDateTime] [datetime] NOT NULL,
[SessionId] [varchar](256) NOT NULL,
PRIMARY KEY CLUSTERED
(
[DemoId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[Category] ([CategoryId], [Description]) VALUES (1, N'Command Send')
GO
INSERT [dbo].[Category] ([CategoryId], [Description]) VALUES (2, N'Command Receive')
GO
SET IDENTITY_INSERT [dbo].[Message] ON
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28740, 1, 1001, 1002, N'{ "gx1x1":40, "gx1x2":120, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:04.190' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28741, 1, 1001, 1002, N'{ "gx1x1":48, "gx1x2":124, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:04.363' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28742, 1, 1001, 1002, N'{ "gx1x1":66, "gx1x2":142, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:04.427' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28743, 1, 1001, 1002, N'{ "gx1x1":70, "gx1x2":146, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:04.550' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28744, 1, 1001, 1002, N'{ "gx1x1":85, "gx1x2":161, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:04.630' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28745, 1, 1001, 1002, N'{ "gx1x1":90, "gx1x2":166, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:04.677' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28746, 1, 1001, 1002, N'{ "gx1x1":99, "gx1x2":175, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:04.813' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28747, 1, 1001, 1002, N'{ "gx1x1":121, "gx1x2":197, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.000' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28748, 1, 1001, 1002, N'{ "gx1x1":139, "gx1x2":215, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.080' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28749, 1, 1001, 1002, N'{ "gx1x1":141, "gx1x2":217, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.190' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28750, 1, 1001, 1002, N'{ "gx1x1":147, "gx1x2":223, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.267' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28751, 1, 1001, 1002, N'{ "gx1x1":145, "gx1x2":221, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.597' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28752, 1, 1001, 1002, N'{ "gx1x1":131, "gx1x2":211, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.673' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28753, 1, 1001, 1002, N'{ "gx1x1":125, "gx1x2":207, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.767' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28754, 1, 1001, 1002, N'{ "gx1x1":122, "gx1x2":204, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:05.953' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28755, 1, 1001, 1002, N'{ "gx1x1":118, "gx1x2":200, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:06.110' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28756, 1, 1001, 1002, N'{ "gx1x1":114, "gx1x2":196, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:06.173' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28757, 1, 1001, 1002, N'{ "gx1x1":109, "gx1x2":191, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:06.360' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28758, 1, 1001, 1002, N'{ "gx1x1":106, "gx1x2":188, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:06.440' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28759, 1, 1001, 1002, N'{ "gx1x1":104, "gx1x2":186, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:06.597' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28760, 1, 1001, 1002, N'{ "gx1x1":102, "gx1x2":184, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:06.720' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28761, 1, 1001, 1002, N'{ "gx1x1":99, "gx1x2":181, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:06.813' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28762, 1, 1001, 1002, N'{ "gx1x1":93, "gx1x2":175, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:07.000' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28763, 1, 1001, 1002, N'{ "gx1x1":88, "gx1x2":170, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:07.063' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28764, 1, 1001, 1002, N'{ "gx1x1":85, "gx1x2":167, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:07.203' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28765, 1, 1001, 1002, N'{ "gx1x1":80, "gx1x2":162, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:07.347' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28766, 1, 1001, 1002, N'{ "gx1x1":75, "gx1x2":157, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:07.563' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28767, 1, 1001, 1002, N'{ "gx1x1":69, "gx1x2":151, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:07.847' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28768, 1, 1001, 1002, N'{ "gx1x1":64, "gx1x2":146, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:08.267' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28769, 1, 1001, 1002, N'{ "gx1x1":61, "gx1x2":61, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:08.533' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28770, 1, 1001, 1002, N'{ "gx1x1":64, "gx1x2":58, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:08.703' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28771, 1, 1001, 1002, N'{ "gx1x1":91, "gx1x2":49, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:08.877' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28772, 1, 1001, 1002, N'{ "gx1x1":99, "gx1x2":41, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:08.987' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28773, 1, 1001, 1002, N'{ "gx1x1":106, "gx1x2":32, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:09.050' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28774, 1, 1001, 1002, N'{ "gx1x1":110, "gx1x2":28, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:09.143' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28775, 1, 1001, 1002, N'{ "gx1x1":109, "gx1x2":29, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:09.610' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28776, 1, 1001, 1002, N'{ "gx1x1":107, "gx1x2":31, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:09.783' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28777, 1, 1001, 1002, N'{ "gx1x1":106, "gx1x2":32, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:09.970' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28778, 1, 1001, 1002, N'{ "gx1x1":102, "gx1x2":36, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:10.063' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28779, 1, 1001, 1002, N'{ "gx1x1":100, "gx1x2":34, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:10.157' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28780, 1, 1001, 1002, N'{ "gx1x1":97, "gx1x2":37, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:10.330' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28781, 1, 1001, 1002, N'{ "gx1x1":96, "gx1x2":38, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:10.407' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28782, 1, 1001, 1002, N'{ "gx1x1":91, "gx1x2":43, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:10.737' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28783, 1, 1001, 1002, N'{ "gx1x1":86, "gx1x2":48, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:10.830' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28784, 1, 1001, 1002, N'{ "gx1x1":83, "gx1x2":51, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:11.063' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28785, 1, 1001, 1002, N'{ "gx1x1":81, "gx1x2":53, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:11.360' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28786, 1, 1001, 1002, N'{ "gx1x1":83, "gx1x2":55, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:11.830' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28787, 1, 1001, 1002, N'{ "gx1x1":86, "gx1x2":58, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.110' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28788, 1, 1001, 1002, N'{ "gx1x1":84, "gx1x2":56, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.253' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28789, 1, 1001, 1002, N'{ "gx1x1":78, "gx1x2":56, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.347' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28790, 1, 1001, 1002, N'{ "gx1x1":72, "gx1x2":56, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.440' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28791, 1, 1001, 1002, N'{ "gx1x1":63, "gx1x2":51, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.517' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28792, 1, 1001, 1002, N'{ "gx1x1":57, "gx1x2":45, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.597' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28793, 1, 1001, 1002, N'{ "gx1x1":54, "gx1x2":42, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.673' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28794, 1, 1001, 1002, N'{ "gx1x1":48, "gx1x2":38, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.847' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28795, 1, 1001, 1002, N'{ "gx1x1":42, "gx1x2":32, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:12.953' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28796, 1, 1001, 1002, N'{ "gx1x1":40, "gx1x2":30, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:13.203' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28797, 1, 1001, 1002, N'{ "gx1x1":35, "gx1x2":25, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:13.470' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28798, 1, 1001, 1002, N'{ "gx1x1":40, "gx1x2":30, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:13.597' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28799, 1, 1001, 1002, N'{ "gx1x1":46, "gx1x2":36, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:13.703' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28800, 1, 1001, 1002, N'{ "gx1x1":53, "gx1x2":43, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:13.860' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28801, 1, 1001, 1002, N'{ "gx1x1":61, "gx1x2":51, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:13.923' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28802, 1, 1001, 1002, N'{ "gx1x1":67, "gx1x2":55, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.080' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28803, 1, 1001, 1002, N'{ "gx1x1":73, "gx1x2":61, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.173' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28804, 1, 1001, 1002, N'{ "gx1x1":75, "gx1x2":63, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.283' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28805, 1, 1001, 1002, N'{ "gx1x1":83, "gx1x2":71, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.453' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28806, 1, 1001, 1002, N'{ "gx1x1":90, "gx1x2":78, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.533' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28807, 1, 1001, 1002, N'{ "gx1x1":95, "gx1x2":83, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.627' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28808, 1, 1001, 1002, N'{ "gx1x1":100, "gx1x2":88, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.737' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28809, 1, 1001, 1002, N'{ "gx1x1":102, "gx1x2":90, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.830' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28810, 1, 1001, 1002, N'{ "gx1x1":103, "gx1x2":91, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:14.897' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28811, 1, 1001, 1002, N'{ "gx1x1":108, "gx1x2":96, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:15.007' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28812, 1, 1001, 1002, N'{ "gx1x1":112, "gx1x2":102, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:15.083' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28813, 1, 1001, 1002, N'{ "gx1x1":115, "gx1x2":105, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:15.193' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28814, 1, 1001, 1002, N'{ "gx1x1":118, "gx1x2":108, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:15.630' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28815, 1, 1001, 1002, N'{ "gx1x1":123, "gx1x2":119, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:15.867' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28816, 1, 1001, 1002, N'{ "gx1x1":128, "gx1x2":128, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:16.163' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28817, 1, 1001, 1002, N'{ "gx1x1":130, "gx1x2":134, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:16.600' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28818, 1, 1001, 1002, N'{ "gx1x1":135, "gx1x2":139, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:16.710' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28819, 1, 1001, 1002, N'{ "gx1x1":137, "gx1x2":143, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:16.943' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28820, 1, 1001, 1002, N'{ "gx1x1":145, "gx1x2":151, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:17.100' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28821, 1, 1001, 1002, N'{ "gx1x1":148, "gx1x2":154, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:17.223' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28822, 1, 1001, 1002, N'{ "gx1x1":153, "gx1x2":159, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:17.397' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28823, 1, 1001, 1002, N'{ "gx1x1":158, "gx1x2":164, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:17.507' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28824, 1, 1001, 1002, N'{ "gx1x1":160, "gx1x2":172, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:17.583' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28825, 1, 1001, 1002, N'{ "gx1x1":163, "gx1x2":175, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:17.697' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28826, 1, 1001, 1002, N'{ "gx1x1":161, "gx1x2":181, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:18.210' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28827, 1, 1001, 1002, N'{ "gx1x1":166, "gx1x2":192, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:18.477' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28828, 1, 1001, 1002, N'{ "gx1x1":172, "gx1x2":200, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:18.837' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28829, 1, 1001, 1002, N'{ "gx1x1":172, "gx1x2":204, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.117' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28830, 1, 1001, 1002, N'{ "gx1x1":177, "gx1x2":209, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.227' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28831, 1, 1001, 1002, N'{ "gx1x1":196, "gx1x2":224, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.320' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28832, 1, 1001, 1002, N'{ "gx1x1":200, "gx1x2":228, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.400' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28833, 1, 1001, 1002, N'{ "gx1x1":201, "gx1x2":229, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.557' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28834, 1, 1001, 1002, N'{ "gx1x1":220, "gx1x2":236, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.663' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28835, 1, 1001, 1002, N'{ "gx1x1":224, "gx1x2":236, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.807' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28836, 1, 1001, 1002, N'{ "gx1x1":225, "gx1x2":237, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:19.947' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28837, 1, 1001, 1002, N'{ "gx1x1":247, "gx1x2":243, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:20.040' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28838, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":247, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:20.227' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28839, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":248, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:20.383' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28840, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:20.510' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28841, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:20.760' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28842, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:21.023' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28843, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:21.273' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28844, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":238, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:21.430' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28845, 1, 1001, 1002, N'{ "gx1x1":253, "gx1x2":221, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:21.540' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28846, 1, 1001, 1002, N'{ "gx1x1":251, "gx1x2":223, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:24.870' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28847, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":227, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:25.227' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28848, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":231, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:25.510' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28849, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":229, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:26.713' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28850, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":226, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:27.087' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28851, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":227, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:27.213' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28852, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":235, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:27.417' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28853, 1, 1001, 1002, N'{ "gx1x1":241, "gx1x2":247, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:27.493' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28854, 1, 1001, 1002, N'{ "gx1x1":233, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:27.573' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28855, 1, 1001, 1002, N'{ "gx1x1":230, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:27.683' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28856, 1, 1001, 1002, N'{ "gx1x1":228, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:28.153' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28857, 1, 1001, 1002, N'{ "gx1x1":215, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:28.307' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28858, 1, 1001, 1002, N'{ "gx1x1":207, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:28.417' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28859, 1, 1001, 1002, N'{ "gx1x1":204, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:29.003' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28860, 1, 1001, 1002, N'{ "gx1x1":199, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:29.287' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28861, 1, 1001, 1002, N'{ "gx1x1":201, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:29.613' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28862, 1, 1001, 1002, N'{ "gx1x1":212, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:29.770' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28863, 1, 1001, 1002, N'{ "gx1x1":215, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:29.880' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28864, 1, 1001, 1002, N'{ "gx1x1":218, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:29.957' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28865, 1, 1001, 1002, N'{ "gx1x1":221, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:32.380' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28866, 1, 1001, 1002, N'{ "gx1x1":238, "gx1x2":234, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:32.473' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28867, 1, 1001, 1002, N'{ "gx1x1":236, "gx1x2":236, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:32.973' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28868, 1, 1001, 1002, N'{ "gx1x1":231, "gx1x2":241, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:33.270' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28869, 1, 1001, 1002, N'{ "gx1x1":222, "gx1x2":250, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:33.443' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28870, 1, 1001, 1002, N'{ "gx1x1":217, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:33.583' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28871, 1, 1001, 1002, N'{ "gx1x1":206, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:33.647' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28872, 1, 1001, 1002, N'{ "gx1x1":203, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:33.850' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28873, 1, 1001, 1002, N'{ "gx1x1":204, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:34.367' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28874, 1, 1001, 1002, N'{ "gx1x1":223, "gx1x2":249, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:34.460' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28875, 1, 1001, 1002, N'{ "gx1x1":228, "gx1x2":244, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:34.553' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28876, 1, 1001, 1002, N'{ "gx1x1":235, "gx1x2":239, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:34.647' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28877, 1, 1001, 1002, N'{ "gx1x1":237, "gx1x2":237, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:34.787' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28878, 1, 1001, 1002, N'{ "gx1x1":243, "gx1x2":231, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:34.927' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28879, 1, 1001, 1002, N'{ "gx1x1":242, "gx1x2":232, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:35.147' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28880, 1, 1001, 1002, N'{ "gx1x1":239, "gx1x2":235, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:35.257' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28881, 1, 1001, 1002, N'{ "gx1x1":235, "gx1x2":239, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:35.427' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28882, 1, 1001, 1002, N'{ "gx1x1":237, "gx1x2":237, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:36.177' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28883, 1, 1001, 1002, N'{ "gx1x1":239, "gx1x2":235, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:36.490' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28884, 1, 1001, 1002, N'{ "gx1x1":232, "gx1x2":228, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:42.460' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28885, 1, 1001, 1002, N'{ "gx1x1":190, "gx1x2":196, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:42.537' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28886, 1, 1001, 1002, N'{ "gx1x1":146, "gx1x2":156, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:42.617' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28887, 1, 1001, 1002, N'{ "gx1x1":103, "gx1x2":113, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:42.710' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28888, 1, 1001, 1002, N'{ "gx1x1":38, "gx1x2":60, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:56:42.787' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28889, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":43, "gx2x2":5}', N'', 0, CAST(N'2017-08-07T13:56:42.943' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28890, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":160, "gx2x2":110}', N'', 0, CAST(N'2017-08-07T13:56:43.020' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28891, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":166, "gx2x2":112}', N'', 0, CAST(N'2017-08-07T13:56:43.100' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28892, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":182, "gx2x2":124}', N'', 0, CAST(N'2017-08-07T13:56:43.177' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28893, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":196, "gx2x2":168}', N'', 0, CAST(N'2017-08-07T13:56:43.257' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28894, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":192, "gx2x2":196}', N'', 0, CAST(N'2017-08-07T13:56:43.350' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28895, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":189, "gx2x2":209}', N'', 0, CAST(N'2017-08-07T13:56:43.443' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28896, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":192, "gx2x2":220}', N'', 0, CAST(N'2017-08-07T13:56:43.630' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28897, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":209, "gx2x2":221}', N'', 0, CAST(N'2017-08-07T13:56:43.710' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28898, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":215, "gx2x2":221}', N'', 0, CAST(N'2017-08-07T13:56:43.943' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28899, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":242, "gx2x2":226}', N'', 0, CAST(N'2017-08-07T13:56:44.210' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28900, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":240, "gx2x2":228}', N'', 0, CAST(N'2017-08-07T13:56:44.287' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28901, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":236, "gx2x2":232}', N'', 0, CAST(N'2017-08-07T13:56:44.397' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28902, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":226, "gx2x2":242}', N'', 0, CAST(N'2017-08-07T13:56:44.583' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28903, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":224, "gx2x2":244}', N'', 0, CAST(N'2017-08-07T13:56:44.647' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28904, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":217, "gx2x2":255}', N'', 0, CAST(N'2017-08-07T13:56:44.757' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28905, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":215, "gx2x2":257}', N'', 0, CAST(N'2017-08-07T13:56:44.867' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28906, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":217, "gx2x2":255}', N'', 0, CAST(N'2017-08-07T13:56:45.020' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28907, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":223, "gx2x2":245}', N'', 0, CAST(N'2017-08-07T13:56:45.163' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28908, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":225, "gx2x2":241}', N'', 0, CAST(N'2017-08-07T13:56:45.257' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28909, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":234, "gx2x2":228}', N'', 0, CAST(N'2017-08-07T13:56:45.430' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28910, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":238, "gx2x2":218}', N'', 0, CAST(N'2017-08-07T13:56:45.617' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28911, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":245, "gx2x2":207}', N'', 0, CAST(N'2017-08-07T13:56:45.680' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28912, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":247, "gx2x2":199}', N'', 0, CAST(N'2017-08-07T13:56:45.897' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28913, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":245, "gx2x2":201}', N'', 0, CAST(N'2017-08-07T13:56:46.023' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28914, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":237, "gx2x2":209}', N'', 0, CAST(N'2017-08-07T13:56:46.100' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28915, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":229, "gx2x2":217}', N'', 0, CAST(N'2017-08-07T13:56:46.210' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28916, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":220, "gx2x2":226}', N'', 0, CAST(N'2017-08-07T13:56:46.273' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28917, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":218, "gx2x2":228}', N'', 0, CAST(N'2017-08-07T13:56:46.443' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28918, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":210, "gx2x2":236}', N'', 0, CAST(N'2017-08-07T13:56:46.600' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28919, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":212, "gx2x2":234}', N'', 0, CAST(N'2017-08-07T13:56:46.960' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28920, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":228, "gx2x2":212}', N'', 0, CAST(N'2017-08-07T13:56:47.227' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28921, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":235, "gx2x2":199}', N'', 0, CAST(N'2017-08-07T13:56:47.443' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28922, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":228, "gx2x2":206}', N'', 0, CAST(N'2017-08-07T13:56:47.617' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28923, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":215, "gx2x2":219}', N'', 0, CAST(N'2017-08-07T13:56:47.773' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28924, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":216, "gx2x2":220}', N'', 0, CAST(N'2017-08-07T13:56:48.493' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28925, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":229}', N'', 0, CAST(N'2017-08-07T13:56:48.790' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28926, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":238, "gx2x2":234}', N'', 0, CAST(N'2017-08-07T13:56:48.977' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28927, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":242, "gx2x2":236}', N'', 0, CAST(N'2017-08-07T13:56:49.070' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28928, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":245, "gx2x2":239}', N'', 0, CAST(N'2017-08-07T13:56:49.303' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28929, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":248, "gx2x2":242}', N'', 0, CAST(N'2017-08-07T13:56:49.650' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28930, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":251, "gx2x2":239}', N'', 0, CAST(N'2017-08-07T13:56:50.213' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28931, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":256, "gx2x2":234}', N'', 0, CAST(N'2017-08-07T13:56:50.480' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28932, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":255, "gx2x2":235}', N'', 0, CAST(N'2017-08-07T13:56:50.823' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28933, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":232, "gx2x2":252}', N'', 0, CAST(N'2017-08-07T13:56:50.983' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28934, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":245}', N'', 0, CAST(N'2017-08-07T13:56:51.280' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28935, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":236, "gx2x2":232}', N'', 0, CAST(N'2017-08-07T13:56:51.560' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28936, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":234, "gx2x2":234}', N'', 0, CAST(N'2017-08-07T13:56:51.920' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28937, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":215, "gx2x2":253}', N'', 0, CAST(N'2017-08-07T13:56:52.077' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28938, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":203, "gx2x2":269}', N'', 0, CAST(N'2017-08-07T13:56:52.200' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28939, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":204, "gx2x2":268}', N'', 0, CAST(N'2017-08-07T13:56:52.530' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28940, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":212, "gx2x2":260}', N'', 0, CAST(N'2017-08-07T13:56:52.607' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28941, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":220, "gx2x2":252}', N'', 0, CAST(N'2017-08-07T13:56:52.747' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28942, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":230, "gx2x2":242}', N'', 0, CAST(N'2017-08-07T13:56:52.890' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28943, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":231, "gx2x2":237}', N'', 0, CAST(N'2017-08-07T13:56:53.310' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28944, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":235, "gx2x2":231}', N'', 0, CAST(N'2017-08-07T13:56:53.677' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28945, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":229}', N'', 0, CAST(N'2017-08-07T13:56:53.770' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28946, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":229, "gx2x2":233}', N'', 0, CAST(N'2017-08-07T13:56:53.850' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28947, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":226, "gx2x2":236}', N'', 0, CAST(N'2017-08-07T13:56:53.943' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28948, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":220, "gx2x2":242}', N'', 0, CAST(N'2017-08-07T13:56:54.020' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28949, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":212, "gx2x2":250}', N'', 0, CAST(N'2017-08-07T13:56:54.130' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28950, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":209, "gx2x2":253}', N'', 0, CAST(N'2017-08-07T13:56:54.240' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28951, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":212, "gx2x2":250}', N'', 0, CAST(N'2017-08-07T13:56:57.397' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28952, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":213, "gx2x2":249}', N'', 0, CAST(N'2017-08-07T13:56:57.553' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28953, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":218, "gx2x2":244}', N'', 0, CAST(N'2017-08-07T13:56:57.723' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28954, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":225, "gx2x2":237}', N'', 0, CAST(N'2017-08-07T13:56:57.897' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28955, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":226, "gx2x2":236}', N'', 0, CAST(N'2017-08-07T13:56:58.083' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28956, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":229}', N'', 0, CAST(N'2017-08-07T13:56:58.150' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28957, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":232, "gx2x2":226}', N'', 0, CAST(N'2017-08-07T13:56:58.353' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28958, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":235, "gx2x2":223}', N'', 0, CAST(N'2017-08-07T13:56:58.993' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28959, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":243, "gx2x2":215}', N'', 0, CAST(N'2017-08-07T13:56:59.073' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28960, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":250, "gx2x2":208}', N'', 0, CAST(N'2017-08-07T13:56:59.273' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28961, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":248, "gx2x2":210}', N'', 0, CAST(N'2017-08-07T13:56:59.603' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28962, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":242, "gx2x2":216}', N'', 0, CAST(N'2017-08-07T13:56:59.807' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28963, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":239, "gx2x2":219}', N'', 0, CAST(N'2017-08-07T13:56:59.870' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28964, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":237, "gx2x2":221}', N'', 0, CAST(N'2017-08-07T13:57:00.040' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28965, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":231, "gx2x2":227}', N'', 0, CAST(N'2017-08-07T13:57:00.120' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28966, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":229, "gx2x2":229}', N'', 0, CAST(N'2017-08-07T13:57:00.383' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28967, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":231, "gx2x2":227}', N'', 0, CAST(N'2017-08-07T13:57:00.477' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28968, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":234, "gx2x2":224}', N'', 0, CAST(N'2017-08-07T13:57:00.540' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28969, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":239, "gx2x2":219}', N'', 0, CAST(N'2017-08-07T13:57:00.650' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28970, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":244, "gx2x2":212}', N'', 0, CAST(N'2017-08-07T13:57:00.743' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28971, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":242, "gx2x2":214}', N'', 0, CAST(N'2017-08-07T13:57:00.963' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28972, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":223}', N'', 0, CAST(N'2017-08-07T13:57:01.087' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28973, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":231, "gx2x2":225}', N'', 0, CAST(N'2017-08-07T13:57:01.197' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28974, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":223, "gx2x2":233}', N'', 0, CAST(N'2017-08-07T13:57:01.363' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28975, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":217, "gx2x2":239}', N'', 0, CAST(N'2017-08-07T13:57:01.473' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28976, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":218, "gx2x2":238}', N'', 0, CAST(N'2017-08-07T13:57:01.753' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28977, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":223, "gx2x2":233}', N'', 0, CAST(N'2017-08-07T13:57:01.880' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28978, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":230, "gx2x2":226}', N'', 0, CAST(N'2017-08-07T13:57:02.050' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28979, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":228, "gx2x2":228}', N'', 0, CAST(N'2017-08-07T13:57:02.427' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28980, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":225, "gx2x2":231}', N'', 0, CAST(N'2017-08-07T13:57:02.690' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28981, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":226, "gx2x2":230}', N'', 0, CAST(N'2017-08-07T13:57:07.113' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28982, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":223}', N'', 0, CAST(N'2017-08-07T13:57:07.380' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28983, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":212, "gx2x2":250}', N'', 0, CAST(N'2017-08-07T13:57:07.473' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28984, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":207, "gx2x2":255}', N'', 0, CAST(N'2017-08-07T13:57:07.613' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28985, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":198, "gx2x2":264}', N'', 0, CAST(N'2017-08-07T13:57:07.723' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28986, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":191, "gx2x2":267}', N'', 0, CAST(N'2017-08-07T13:57:07.910' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28987, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":192, "gx2x2":266}', N'', 0, CAST(N'2017-08-07T13:57:08.083' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28988, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":197, "gx2x2":261}', N'', 0, CAST(N'2017-08-07T13:57:08.193' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28989, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":200, "gx2x2":258}', N'', 0, CAST(N'2017-08-07T13:57:08.317' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28990, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":203, "gx2x2":255}', N'', 0, CAST(N'2017-08-07T13:57:08.537' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28991, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":202, "gx2x2":256}', N'', 0, CAST(N'2017-08-07T13:57:08.630' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28992, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":192, "gx2x2":266}', N'', 0, CAST(N'2017-08-07T13:57:08.740' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28993, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":186, "gx2x2":272}', N'', 0, CAST(N'2017-08-07T13:57:08.817' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28994, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":181, "gx2x2":277}', N'', 0, CAST(N'2017-08-07T13:57:08.973' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28995, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":183, "gx2x2":275}', N'', 0, CAST(N'2017-08-07T13:57:09.130' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28996, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":193, "gx2x2":269}', N'', 0, CAST(N'2017-08-07T13:57:09.240' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28997, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":194, "gx2x2":268}', N'', 0, CAST(N'2017-08-07T13:57:09.443' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28998, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":199, "gx2x2":263}', N'', 0, CAST(N'2017-08-07T13:57:09.800' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (28999, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":186, "gx2x2":276}', N'', 0, CAST(N'2017-08-07T13:57:10.067' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29000, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":188, "gx2x2":274}', N'', 0, CAST(N'2017-08-07T13:57:10.193' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29001, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":193, "gx2x2":269}', N'', 0, CAST(N'2017-08-07T13:57:10.347' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29002, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":190, "gx2x2":266}', N'', 0, CAST(N'2017-08-07T13:57:11.880' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29003, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":134, "gx2x2":236}', N'', 0, CAST(N'2017-08-07T13:57:11.957' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29004, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":7, "gx2x2":105}', N'', 0, CAST(N'2017-08-07T13:57:12.050' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29005, 1, 1001, 1002, N'{ "gx1x1":46, "gx1x2":0, "gx2x1":0, "gx2x2":24}', N'', 0, CAST(N'2017-08-07T13:57:12.130' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29006, 1, 1001, 1002, N'{ "gx1x1":105, "gx1x2":61, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:12.207' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29007, 1, 1001, 1002, N'{ "gx1x1":175, "gx1x2":143, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:12.300' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29008, 1, 1001, 1002, N'{ "gx1x1":173, "gx1x2":145, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:12.443' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29009, 1, 1001, 1002, N'{ "gx1x1":88, "gx1x2":88, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:12.503' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29010, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":6, "gx2x1":16, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:12.583' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29011, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":94, "gx2x2":72}', N'', 0, CAST(N'2017-08-07T13:57:12.660' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29012, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":110, "gx2x2":88}', N'', 0, CAST(N'2017-08-07T13:57:12.770' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29013, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":165, "gx2x2":145}', N'', 0, CAST(N'2017-08-07T13:57:12.863' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29014, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":161, "gx2x2":141}', N'', 0, CAST(N'2017-08-07T13:57:13.050' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29015, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":125, "gx2x2":115}', N'', 0, CAST(N'2017-08-07T13:57:13.207' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29016, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":120, "gx2x2":116}', N'', 0, CAST(N'2017-08-07T13:57:16.310' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29017, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:16.403' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29018, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:16.480' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29019, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:16.560' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29020, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:16.653' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29021, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:16.747' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29022, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:16.810' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29023, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:16.917' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29024, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.043' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29025, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.200' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29026, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.263' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29027, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.463' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29028, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.763' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29029, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.840' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29030, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.933' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29031, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:17.997' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29032, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:18.073' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29033, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:18.277' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29034, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:28.637' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29035, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:28.717' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29036, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:28.980' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29037, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:30.497' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29038, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:30.653' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29039, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:30.730' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29040, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:30.810' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29041, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:30.903' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29042, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:31.060' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29043, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:31.183' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29044, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:31.263' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29045, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:31.543' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29046, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:32.527' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29047, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:32.683' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29048, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:32.827' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29049, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:32.950' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29050, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:42.623' AS DateTime), NULL)
GO
INSERT [dbo].[Message] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (29051, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 0, CAST(N'2017-08-07T13:57:42.700' AS DateTime), NULL)
GO
SET IDENTITY_INSERT [dbo].[Message] OFF
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8989, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:55.063' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8990, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:55.147' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8991, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:55.187' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8992, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:55.220' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8993, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:55.603' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8994, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:55.667' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8995, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:55.807' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8996, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:56.103' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8997, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T21:59:56.563' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8998, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":204, "gx2x2":216}', N'', 1, CAST(N'2017-08-06T21:59:57.093' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (8999, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":203, "gx2x2":215}', N'', 1, CAST(N'2017-08-06T21:59:58.503' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9000, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":180, "gx2x2":202}', N'', 1, CAST(N'2017-08-06T21:59:58.567' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9001, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":179, "gx2x2":201}', N'', 1, CAST(N'2017-08-06T21:59:58.767' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9002, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":171, "gx2x2":193}', N'', 1, CAST(N'2017-08-06T21:59:58.807' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9003, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":162, "gx2x2":188}', N'', 1, CAST(N'2017-08-06T21:59:58.840' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9004, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":159, "gx2x2":185}', N'', 1, CAST(N'2017-08-06T21:59:59.240' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9005, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":121, "gx2x2":149}', N'', 1, CAST(N'2017-08-06T21:59:59.647' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9006, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":119, "gx2x2":151}', N'', 1, CAST(N'2017-08-06T22:00:01.040' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9007, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":102, "gx2x2":144}', N'', 1, CAST(N'2017-08-06T22:00:01.430' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9008, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":30, "gx2x2":100}', N'', 1, CAST(N'2017-08-06T22:00:01.827' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9009, 1, 1001, 1002, N'{ "gx1x1":135, "gx1x2":5, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:02.363' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9010, 1, 1001, 1002, N'{ "gx1x1":115, "gx1x2":0, "gx2x1":0, "gx2x2":9}', N'', 1, CAST(N'2017-08-06T22:00:02.873' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9011, 1, 1001, 1002, N'{ "gx1x1":46, "gx1x2":0, "gx2x1":0, "gx2x2":66}', N'', 1, CAST(N'2017-08-06T22:00:03.397' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9012, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":51, "gx2x2":141}', N'', 1, CAST(N'2017-08-06T22:00:03.900' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9013, 1, 1001, 1002, N'{ "gx1x1":49, "gx1x2":0, "gx2x1":0, "gx2x2":59}', N'', 1, CAST(N'2017-08-06T22:00:04.377' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9014, 1, 1001, 1002, N'{ "gx1x1":182, "gx1x2":60, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:04.920' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9015, 1, 1001, 1002, N'{ "gx1x1":209, "gx1x2":119, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:05.573' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9016, 1, 1001, 1002, N'{ "gx1x1":247, "gx1x2":221, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:05.990' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9017, 1, 1001, 1002, N'{ "gx1x1":236, "gx1x2":232, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:06.167' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9018, 1, 1001, 1002, N'{ "gx1x1":228, "gx1x2":228, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:06.220' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9019, 1, 1001, 1002, N'{ "gx1x1":219, "gx1x2":225, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:06.657' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9020, 1, 1001, 1002, N'{ "gx1x1":175, "gx1x2":143, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:07.020' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9021, 1, 1001, 1002, N'{ "gx1x1":174, "gx1x2":142, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:08.100' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9022, 1, 1001, 1002, N'{ "gx1x1":171, "gx1x2":155, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:08.143' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9023, 1, 1001, 1002, N'{ "gx1x1":166, "gx1x2":160, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:08.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9024, 1, 1001, 1002, N'{ "gx1x1":163, "gx1x2":163, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:08.243' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9025, 1, 1001, 1002, N'{ "gx1x1":149, "gx1x2":177, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:08.563' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9026, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:08.940' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9027, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:36.060' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9028, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:36.243' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9029, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:36.957' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9030, 1, 1001, 1002, N'{ "gx1x1":212, "gx1x2":218, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:37.360' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9031, 1, 1001, 1002, N'{ "gx1x1":198, "gx1x2":214, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:37.440' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9032, 1, 1001, 1002, N'{ "gx1x1":185, "gx1x2":207, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:37.500' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9033, 1, 1001, 1002, N'{ "gx1x1":178, "gx1x2":204, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:37.547' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9034, 1, 1001, 1002, N'{ "gx1x1":177, "gx1x2":203, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:37.580' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9035, 1, 1001, 1002, N'{ "gx1x1":175, "gx1x2":201, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:38.010' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9036, 1, 1001, 1002, N'{ "gx1x1":100, "gx1x2":132, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:38.463' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9037, 1, 1001, 1002, N'{ "gx1x1":59, "gx1x2":113, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:38.690' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9038, 1, 1001, 1002, N'{ "gx1x1":29, "gx1x2":99, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:39.207' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9039, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":59, "gx2x1":21, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:39.370' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9040, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":51, "gx2x1":55, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:39.423' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9041, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":38, "gx2x1":96, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:39.463' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9042, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":160, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:39.863' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9043, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":239, "gx2x2":181}', N'', 1, CAST(N'2017-08-06T22:00:40.517' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9044, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":230, "gx2x2":204}', N'', 1, CAST(N'2017-08-06T22:00:41.143' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9045, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":126, "gx2x2":110}', N'', 1, CAST(N'2017-08-06T22:00:41.690' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9046, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":84, "gx2x2":68}', N'', 1, CAST(N'2017-08-06T22:00:42.323' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9047, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":54, "gx2x2":44}', N'', 1, CAST(N'2017-08-06T22:00:42.820' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9048, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":27, "gx2x2":17}', N'', 1, CAST(N'2017-08-06T22:00:42.867' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9049, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":18, "gx2x2":8}', N'', 1, CAST(N'2017-08-06T22:00:42.897' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9050, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":5, "gx2x1":1, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:42.930' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9051, 1, 1001, 1002, N'{ "gx1x1":10, "gx1x2":10, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:42.957' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9052, 1, 1001, 1002, N'{ "gx1x1":11, "gx1x2":11, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:43.060' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9053, 1, 1001, 1002, N'{ "gx1x1":41, "gx1x2":29, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:43.677' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9054, 1, 1001, 1002, N'{ "gx1x1":144, "gx1x2":102, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:44.273' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9055, 1, 1001, 1002, N'{ "gx1x1":212, "gx1x2":208, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:44.747' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9056, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:45.080' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9057, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:45.137' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9058, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:45.170' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9059, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:45.337' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9060, 1, 1001, 1002, N'{ "gx1x1":238, "gx1x2":250, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:45.407' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9061, 1, 1001, 1002, N'{ "gx1x1":231, "gx1x2":247, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:45.553' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9062, 1, 1001, 1002, N'{ "gx1x1":229, "gx1x2":245, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:45.767' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9063, 1, 1001, 1002, N'{ "gx1x1":153, "gx1x2":189, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:46.180' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9064, 1, 1001, 1002, N'{ "gx1x1":166, "gx1x2":216, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:46.830' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9065, 1, 1001, 1002, N'{ "gx1x1":165, "gx1x2":215, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:46.957' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9066, 1, 1001, 1002, N'{ "gx1x1":149, "gx1x2":199, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.053' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9067, 1, 1001, 1002, N'{ "gx1x1":132, "gx1x2":186, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.153' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9068, 1, 1001, 1002, N'{ "gx1x1":122, "gx1x2":180, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.187' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9069, 1, 1001, 1002, N'{ "gx1x1":108, "gx1x2":172, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.207' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9070, 1, 1001, 1002, N'{ "gx1x1":100, "gx1x2":164, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.253' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9071, 1, 1001, 1002, N'{ "gx1x1":90, "gx1x2":156, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.283' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9072, 1, 1001, 1002, N'{ "gx1x1":83, "gx1x2":149, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.313' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9073, 1, 1001, 1002, N'{ "gx1x1":75, "gx1x2":141, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.343' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9074, 1, 1001, 1002, N'{ "gx1x1":67, "gx1x2":133, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:47.587' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9075, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":50, "gx2x1":14, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:48.083' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9076, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":72, "gx2x2":14}', N'', 1, CAST(N'2017-08-06T22:00:48.550' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9077, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":123, "gx2x2":75}', N'', 1, CAST(N'2017-08-06T22:00:49.167' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9078, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":172, "gx2x2":128}', N'', 1, CAST(N'2017-08-06T22:00:49.490' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9079, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":209, "gx2x2":167}', N'', 1, CAST(N'2017-08-06T22:00:49.997' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9080, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":235, "gx2x2":193}', N'', 1, CAST(N'2017-08-06T22:00:50.600' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9081, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":258, "gx2x2":210}', N'', 1, CAST(N'2017-08-06T22:00:51.247' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9082, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":212, "gx2x2":152}', N'', 1, CAST(N'2017-08-06T22:00:51.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9083, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":140, "gx2x2":74}', N'', 1, CAST(N'2017-08-06T22:00:52.153' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9084, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":25, "gx2x1":45, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:52.770' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9085, 1, 1001, 1002, N'{ "gx1x1":30, "gx1x2":84, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:53.270' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9086, 1, 1001, 1002, N'{ "gx1x1":138, "gx1x2":158, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:53.710' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9087, 1, 1001, 1002, N'{ "gx1x1":220, "gx1x2":224, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:54.390' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9088, 1, 1001, 1002, N'{ "gx1x1":135, "gx1x2":215, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:54.990' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9089, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":250, "gx2x1":122, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:55.650' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9090, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":225, "gx2x1":231, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:56.383' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9091, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":3, "gx2x1":29, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:56.923' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9092, 1, 1001, 1002, N'{ "gx1x1":107, "gx1x2":0, "gx2x1":0, "gx2x2":113}', N'', 1, CAST(N'2017-08-06T22:00:56.970' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9093, 1, 1001, 1002, N'{ "gx1x1":148, "gx1x2":0, "gx2x1":0, "gx2x2":154}', N'', 1, CAST(N'2017-08-06T22:00:57.023' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9094, 1, 1001, 1002, N'{ "gx1x1":161, "gx1x2":0, "gx2x1":0, "gx2x2":165}', N'', 1, CAST(N'2017-08-06T22:00:57.067' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9095, 1, 1001, 1002, N'{ "gx1x1":173, "gx1x2":0, "gx2x1":0, "gx2x2":177}', N'', 1, CAST(N'2017-08-06T22:00:57.103' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9096, 1, 1001, 1002, N'{ "gx1x1":189, "gx1x2":0, "gx2x1":0, "gx2x2":193}', N'', 1, CAST(N'2017-08-06T22:00:57.143' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9097, 1, 1001, 1002, N'{ "gx1x1":199, "gx1x2":0, "gx2x1":0, "gx2x2":203}', N'', 1, CAST(N'2017-08-06T22:00:57.360' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9098, 1, 1001, 1002, N'{ "gx1x1":234, "gx1x2":0, "gx2x1":0, "gx2x2":234}', N'', 1, CAST(N'2017-08-06T22:00:57.913' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9099, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":147}', N'', 1, CAST(N'2017-08-06T22:00:58.343' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9100, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":28, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:58.820' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9101, 1, 1001, 1002, N'{ "gx1x1":218, "gx1x2":254, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:00:59.490' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9102, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":90, "gx2x1":54, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:00.107' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9103, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":205, "gx2x2":49}', N'', 1, CAST(N'2017-08-06T22:01:00.157' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9104, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":209, "gx2x2":53}', N'', 1, CAST(N'2017-08-06T22:01:00.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9105, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":205, "gx2x2":53}', N'', 1, CAST(N'2017-08-06T22:01:00.317' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9106, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":178, "gx2x2":38}', N'', 1, CAST(N'2017-08-06T22:01:00.353' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9107, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":140, "gx2x2":6}', N'', 1, CAST(N'2017-08-06T22:01:00.610' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9108, 1, 1001, 1002, N'{ "gx1x1":78, "gx1x2":186, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:01.060' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9109, 1, 1001, 1002, N'{ "gx1x1":204, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:01.590' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9110, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":127, "gx2x2":77}', N'', 1, CAST(N'2017-08-06T22:01:02.017' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9111, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":242, "gx2x2":178}', N'', 1, CAST(N'2017-08-06T22:01:02.440' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9112, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":249, "gx2x2":185}', N'', 1, CAST(N'2017-08-06T22:01:03.093' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9113, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":202, "gx2x2":154}', N'', 1, CAST(N'2017-08-06T22:01:03.123' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9114, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":182, "gx2x2":134}', N'', 1, CAST(N'2017-08-06T22:01:03.157' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9115, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":161, "gx2x2":113}', N'', 1, CAST(N'2017-08-06T22:01:03.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9116, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":124, "gx2x2":76}', N'', 1, CAST(N'2017-08-06T22:01:03.273' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9117, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":21, "gx2x1":27, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:03.307' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9118, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":45, "gx2x1":3, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:03.340' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9119, 1, 1001, 1002, N'{ "gx1x1":85, "gx1x2":135, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:03.847' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9120, 1, 1001, 1002, N'{ "gx1x1":171, "gx1x2":221, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:03.883' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9121, 1, 1001, 1002, N'{ "gx1x1":177, "gx1x2":227, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:03.923' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9122, 1, 1001, 1002, N'{ "gx1x1":185, "gx1x2":235, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:03.957' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9123, 1, 1001, 1002, N'{ "gx1x1":189, "gx1x2":239, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.003' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9124, 1, 1001, 1002, N'{ "gx1x1":195, "gx1x2":239, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.037' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9125, 1, 1001, 1002, N'{ "gx1x1":200, "gx1x2":244, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.067' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9126, 1, 1001, 1002, N'{ "gx1x1":202, "gx1x2":244, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.273' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9127, 1, 1001, 1002, N'{ "gx1x1":207, "gx1x2":245, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.307' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9128, 1, 1001, 1002, N'{ "gx1x1":215, "gx1x2":247, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.340' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9129, 1, 1001, 1002, N'{ "gx1x1":222, "gx1x2":250, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.370' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9130, 1, 1001, 1002, N'{ "gx1x1":220, "gx1x2":248, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.890' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9131, 1, 1001, 1002, N'{ "gx1x1":214, "gx1x2":242, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.933' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9132, 1, 1001, 1002, N'{ "gx1x1":209, "gx1x2":237, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:04.957' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9133, 1, 1001, 1002, N'{ "gx1x1":204, "gx1x2":236, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:05.133' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9134, 1, 1001, 1002, N'{ "gx1x1":202, "gx1x2":234, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:11.937' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9135, 1, 1001, 1002, N'{ "gx1x1":170, "gx1x2":206, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:12.183' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9136, 1, 1001, 1002, N'{ "gx1x1":33, "gx1x2":69, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:12.690' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9137, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":83, "gx2x2":39}', N'', 1, CAST(N'2017-08-06T22:01:13.240' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9138, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":140, "gx2x2":90}', N'', 1, CAST(N'2017-08-06T22:01:13.650' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9139, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":190, "gx2x2":164}', N'', 1, CAST(N'2017-08-06T22:01:14.317' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9140, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":215, "gx2x2":205}', N'', 1, CAST(N'2017-08-06T22:01:14.507' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9141, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":217, "gx2x2":211}', N'', 1, CAST(N'2017-08-06T22:01:14.537' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9142, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":218, "gx2x2":212}', N'', 1, CAST(N'2017-08-06T22:01:14.770' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9143, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":239, "gx2x2":233}', N'', 1, CAST(N'2017-08-06T22:01:15.253' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9144, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":252, "gx2x2":246}', N'', 1, CAST(N'2017-08-06T22:01:15.303' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9145, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":255, "gx2x2":249}', N'', 1, CAST(N'2017-08-06T22:01:15.473' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9146, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":253, "gx2x2":247}', N'', 1, CAST(N'2017-08-06T22:01:15.793' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9147, 1, 1001, 1002, N'{ "gx1x1":48, "gx1x2":0, "gx2x1":0, "gx2x2":128}', N'', 1, CAST(N'2017-08-06T22:01:16.407' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9148, 1, 1001, 1002, N'{ "gx1x1":242, "gx1x2":0, "gx2x1":0, "gx2x2":232}', N'', 1, CAST(N'2017-08-06T22:01:17.060' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9149, 1, 1001, 1002, N'{ "gx1x1":241, "gx1x2":0, "gx2x1":0, "gx2x2":231}', N'', 1, CAST(N'2017-08-06T22:01:17.513' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9150, 1, 1001, 1002, N'{ "gx1x1":239, "gx1x2":0, "gx2x1":0, "gx2x2":229}', N'', 1, CAST(N'2017-08-06T22:01:18.220' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9151, 1, 1001, 1002, N'{ "gx1x1":235, "gx1x2":0, "gx2x1":0, "gx2x2":225}', N'', 1, CAST(N'2017-08-06T22:01:18.277' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9152, 1, 1001, 1002, N'{ "gx1x1":225, "gx1x2":0, "gx2x1":0, "gx2x2":215}', N'', 1, CAST(N'2017-08-06T22:01:18.327' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9153, 1, 1001, 1002, N'{ "gx1x1":211, "gx1x2":0, "gx2x1":0, "gx2x2":201}', N'', 1, CAST(N'2017-08-06T22:01:18.377' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9154, 1, 1001, 1002, N'{ "gx1x1":182, "gx1x2":0, "gx2x1":0, "gx2x2":172}', N'', 1, CAST(N'2017-08-06T22:01:18.743' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9155, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":210, "gx2x1":214, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:19.463' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9156, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":242, "gx2x1":246, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:20.107' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9157, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":243, "gx2x1":239, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:34.810' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9158, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":51, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:35.310' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9159, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:35.927' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9160, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:40.760' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9161, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:40.807' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9162, 1, 1001, 1002, N'{ "gx1x1":231, "gx1x2":0, "gx2x1":0, "gx2x2":75}', N'', 1, CAST(N'2017-08-06T22:01:41.073' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9163, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:41.473' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9164, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:41.853' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9165, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:42.263' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9166, 1, 1001, 1002, N'{ "gx1x1":102, "gx1x2":162, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:42.780' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9167, 1, 1001, 1002, N'{ "gx1x1":117, "gx1x2":129, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:43.240' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9168, 1, 1001, 1002, N'{ "gx1x1":15, "gx1x2":21, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:43.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9169, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":181, "gx2x2":137}', N'', 1, CAST(N'2017-08-06T22:01:44.373' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9170, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":239, "gx2x2":181}', N'', 1, CAST(N'2017-08-06T22:01:45.157' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9171, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":88, "gx2x2":62}', N'', 1, CAST(N'2017-08-06T22:01:45.210' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9172, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":70, "gx2x2":48}', N'', 1, CAST(N'2017-08-06T22:01:45.270' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9173, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":56, "gx2x2":36}', N'', 1, CAST(N'2017-08-06T22:01:45.307' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9174, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":41, "gx2x2":29}', N'', 1, CAST(N'2017-08-06T22:01:45.343' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9175, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":35, "gx2x2":23}', N'', 1, CAST(N'2017-08-06T22:01:45.377' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9176, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":32, "gx2x2":22}', N'', 1, CAST(N'2017-08-06T22:01:45.407' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9177, 1, 1001, 1002, N'{ "gx1x1":41, "gx1x2":29, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:45.867' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9178, 1, 1001, 1002, N'{ "gx1x1":129, "gx1x2":117, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:45.933' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9179, 1, 1001, 1002, N'{ "gx1x1":150, "gx1x2":140, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:46.007' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9180, 1, 1001, 1002, N'{ "gx1x1":168, "gx1x2":164, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:46.050' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9181, 1, 1001, 1002, N'{ "gx1x1":177, "gx1x2":177, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:46.090' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9182, 1, 1001, 1002, N'{ "gx1x1":183, "gx1x2":187, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:46.400' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9183, 1, 1001, 1002, N'{ "gx1x1":231, "gx1x2":237, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:46.783' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9184, 1, 1001, 1002, N'{ "gx1x1":233, "gx1x2":239, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:46.830' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9185, 1, 1001, 1002, N'{ "gx1x1":234, "gx1x2":240, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:47.250' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9186, 1, 1001, 1002, N'{ "gx1x1":244, "gx1x2":244, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:47.617' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9187, 1, 1001, 1002, N'{ "gx1x1":242, "gx1x2":246, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:48.760' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9188, 1, 1001, 1002, N'{ "gx1x1":239, "gx1x2":245, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:48.817' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9189, 1, 1001, 1002, N'{ "gx1x1":236, "gx1x2":242, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:49.143' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9190, 1, 1001, 1002, N'{ "gx1x1":199, "gx1x2":219, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:49.277' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9191, 1, 1001, 1002, N'{ "gx1x1":178, "gx1x2":198, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:49.350' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9192, 1, 1001, 1002, N'{ "gx1x1":173, "gx1x2":193, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:49.630' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9193, 1, 1001, 1002, N'{ "gx1x1":97, "gx1x2":129, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:50.073' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9194, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":67, "gx2x1":7, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:50.710' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9195, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":23, "gx2x1":89, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:50.760' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9196, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":20, "gx2x1":94, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:50.790' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9197, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":14, "gx2x1":104, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:50.820' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9198, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":10, "gx2x1":108, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:50.853' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9199, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":4, "gx2x1":118, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:50.887' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9200, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":128, "gx2x2":6}', N'', 1, CAST(N'2017-08-06T22:01:50.920' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9201, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":136, "gx2x2":14}', N'', 1, CAST(N'2017-08-06T22:01:50.940' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9202, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":140, "gx2x2":22}', N'', 1, CAST(N'2017-08-06T22:01:51.180' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9203, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":196, "gx2x2":120}', N'', 1, CAST(N'2017-08-06T22:01:51.720' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9204, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":246, "gx2x2":182}', N'', 1, CAST(N'2017-08-06T22:01:52.123' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9205, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":253, "gx2x2":225}', N'', 1, CAST(N'2017-08-06T22:01:52.767' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9206, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":255, "gx2x2":235}', N'', 1, CAST(N'2017-08-06T22:01:52.957' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9207, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":253, "gx2x2":237}', N'', 1, CAST(N'2017-08-06T22:01:53.440' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9208, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":252, "gx2x2":242}', N'', 1, CAST(N'2017-08-06T22:01:53.497' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9209, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":254, "gx2x2":244}', N'', 1, CAST(N'2017-08-06T22:01:53.673' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9210, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":252, "gx2x2":246}', N'', 1, CAST(N'2017-08-06T22:01:53.723' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9211, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":251, "gx2x2":247}', N'', 1, CAST(N'2017-08-06T22:01:53.790' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9212, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":252, "gx2x2":248}', N'', 1, CAST(N'2017-08-06T22:01:54.037' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9213, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":244, "gx2x2":254}', N'', 1, CAST(N'2017-08-06T22:01:54.563' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9214, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":243, "gx2x2":255}', N'', 1, CAST(N'2017-08-06T22:01:54.597' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9215, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":239, "gx2x2":259}', N'', 1, CAST(N'2017-08-06T22:01:54.690' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9216, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":234, "gx2x2":260}', N'', 1, CAST(N'2017-08-06T22:01:54.900' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9217, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":221, "gx2x2":257}', N'', 1, CAST(N'2017-08-06T22:01:55.267' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9218, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":200, "gx2x2":236}', N'', 1, CAST(N'2017-08-06T22:01:55.860' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9219, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":141, "gx2x2":177}', N'', 1, CAST(N'2017-08-06T22:01:56.267' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9220, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":73, "gx2x2":95}', N'', 1, CAST(N'2017-08-06T22:01:56.923' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9221, 1, 1001, 1002, N'{ "gx1x1":20, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:57.410' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9222, 1, 1001, 1002, N'{ "gx1x1":64, "gx1x2":44, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:57.503' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9223, 1, 1001, 1002, N'{ "gx1x1":77, "gx1x2":57, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:57.557' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9224, 1, 1001, 1002, N'{ "gx1x1":88, "gx1x2":68, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:57.590' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9225, 1, 1001, 1002, N'{ "gx1x1":96, "gx1x2":76, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:57.643' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9226, 1, 1001, 1002, N'{ "gx1x1":111, "gx1x2":89, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:57.930' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9227, 1, 1001, 1002, N'{ "gx1x1":184, "gx1x2":142, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:58.300' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9228, 1, 1001, 1002, N'{ "gx1x1":219, "gx1x2":177, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:58.747' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9229, 1, 1001, 1002, N'{ "gx1x1":233, "gx1x2":191, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:58.787' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9230, 1, 1001, 1002, N'{ "gx1x1":231, "gx1x2":193, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:58.940' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9231, 1, 1001, 1002, N'{ "gx1x1":235, "gx1x2":199, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:59.027' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9232, 1, 1001, 1002, N'{ "gx1x1":242, "gx1x2":230, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:01:59.540' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9233, 1, 1001, 1002, N'{ "gx1x1":245, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:00.250' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9234, 1, 1001, 1002, N'{ "gx1x1":233, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:00.680' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9235, 1, 1001, 1002, N'{ "gx1x1":231, "gx1x2":253, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:00.737' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9236, 1, 1001, 1002, N'{ "gx1x1":230, "gx1x2":252, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:01.067' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9237, 1, 1001, 1002, N'{ "gx1x1":228, "gx1x2":250, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:01.317' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9238, 1, 1001, 1002, N'{ "gx1x1":230, "gx1x2":252, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:20.537' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9239, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:20.933' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9240, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:21.003' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9241, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:21.043' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9242, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:21.077' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9243, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:21.110' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9244, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:23.267' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9245, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:23.327' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9246, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:23.357' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9247, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:23.687' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9248, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:24.243' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9249, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:25.383' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9250, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:25.457' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9251, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:25.567' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9252, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:26.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9253, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:26.770' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9254, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:27.267' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9255, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:27.933' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9256, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:28.423' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9257, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:36.977' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9258, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:37.053' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9259, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:37.133' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9260, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:37.170' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9261, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":8, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:37.210' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9262, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":54, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:37.543' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9263, 1, 1001, 1002, N'{ "gx1x1":220, "gx1x2":252, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:38.100' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9264, 1, 1001, 1002, N'{ "gx1x1":204, "gx1x2":236, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:38.173' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9265, 1, 1001, 1002, N'{ "gx1x1":196, "gx1x2":232, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:38.297' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9266, 1, 1001, 1002, N'{ "gx1x1":185, "gx1x2":223, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:38.543' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9267, 1, 1001, 1002, N'{ "gx1x1":126, "gx1x2":174, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:38.933' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9268, 1, 1001, 1002, N'{ "gx1x1":57, "gx1x2":105, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:39.250' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9269, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":11, "gx2x1":53, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:39.877' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9270, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":171, "gx2x2":171}', N'', 1, CAST(N'2017-08-06T22:02:40.610' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9271, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":223, "gx2x2":239}', N'', 1, CAST(N'2017-08-06T22:02:41.077' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9272, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":245}', N'', 1, CAST(N'2017-08-06T22:02:41.133' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9273, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":235, "gx2x2":247}', N'', 1, CAST(N'2017-08-06T22:02:41.657' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9274, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":236, "gx2x2":248}', N'', 1, CAST(N'2017-08-06T22:02:41.687' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9275, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":238, "gx2x2":250}', N'', 1, CAST(N'2017-08-06T22:02:41.800' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9276, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":240, "gx2x2":250}', N'', 1, CAST(N'2017-08-06T22:02:41.853' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9277, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":239, "gx2x2":249}', N'', 1, CAST(N'2017-08-06T22:02:42.397' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9278, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":229, "gx2x2":239}', N'', 1, CAST(N'2017-08-06T22:02:42.757' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9279, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":106, "gx2x2":110}', N'', 1, CAST(N'2017-08-06T22:02:43.430' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9280, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":45, "gx2x2":29}', N'', 1, CAST(N'2017-08-06T22:02:43.463' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9281, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":37, "gx2x2":21}', N'', 1, CAST(N'2017-08-06T22:02:43.513' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9282, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":31, "gx2x2":11}', N'', 1, CAST(N'2017-08-06T22:02:43.543' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9283, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":25, "gx2x2":3}', N'', 1, CAST(N'2017-08-06T22:02:43.577' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9284, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":5, "gx2x1":17, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:43.610' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9285, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":15, "gx2x1":11, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:43.640' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9286, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":18, "gx2x1":8, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:43.670' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9287, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":24, "gx2x1":2, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:44.010' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9288, 1, 1001, 1002, N'{ "gx1x1":91, "gx1x2":113, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:44.297' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9289, 1, 1001, 1002, N'{ "gx1x1":182, "gx1x2":204, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:44.763' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9290, 1, 1001, 1002, N'{ "gx1x1":232, "gx1x2":242, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:45.210' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9291, 1, 1001, 1002, N'{ "gx1x1":240, "gx1x2":250, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:45.690' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9292, 1, 1001, 1002, N'{ "gx1x1":242, "gx1x2":246, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:53.223' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9293, 1, 1001, 1002, N'{ "gx1x1":239, "gx1x2":165, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:53.577' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9294, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":23, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:53.983' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9295, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":11, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:54.027' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9296, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":9, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:54.060' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9297, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":4, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:54.100' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9298, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:02:54.140' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9299, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":3}', N'', 1, CAST(N'2017-08-06T22:02:54.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9300, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":8}', N'', 1, CAST(N'2017-08-06T22:02:54.223' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9301, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":12}', N'', 1, CAST(N'2017-08-06T22:02:54.440' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9302, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":16}', N'', 1, CAST(N'2017-08-06T22:02:54.490' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9303, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":26}', N'', 1, CAST(N'2017-08-06T22:02:54.530' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9304, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":28}', N'', 1, CAST(N'2017-08-06T22:02:54.677' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9305, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":30}', N'', 1, CAST(N'2017-08-06T22:02:54.773' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9306, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":32}', N'', 1, CAST(N'2017-08-06T22:02:54.803' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9307, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":38}', N'', 1, CAST(N'2017-08-06T22:02:54.837' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9308, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":43}', N'', 1, CAST(N'2017-08-06T22:02:54.877' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9309, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":48}', N'', 1, CAST(N'2017-08-06T22:02:54.907' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9310, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":53}', N'', 1, CAST(N'2017-08-06T22:02:54.973' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9311, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":61}', N'', 1, CAST(N'2017-08-06T22:02:55.313' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9312, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":137}', N'', 1, CAST(N'2017-08-06T22:02:55.743' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9313, 1, 1001, 1002, N'{ "gx1x1":247, "gx1x2":0, "gx2x1":0, "gx2x2":209}', N'', 1, CAST(N'2017-08-06T22:02:56.283' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9314, 1, 1001, 1002, N'{ "gx1x1":207, "gx1x2":0, "gx2x1":0, "gx2x2":261}', N'', 1, CAST(N'2017-08-06T22:02:56.897' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9315, 1, 1001, 1002, N'{ "gx1x1":209, "gx1x2":0, "gx2x1":0, "gx2x2":263}', N'', 1, CAST(N'2017-08-06T22:02:57.350' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9316, 1, 1001, 1002, N'{ "gx1x1":175, "gx1x2":0, "gx2x1":0, "gx2x2":297}', N'', 1, CAST(N'2017-08-06T22:02:57.787' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9317, 1, 1001, 1002, N'{ "gx1x1":136, "gx1x2":0, "gx2x1":0, "gx2x2":304}', N'', 1, CAST(N'2017-08-06T22:02:57.850' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9318, 1, 1001, 1002, N'{ "gx1x1":129, "gx1x2":0, "gx2x1":0, "gx2x2":305}', N'', 1, CAST(N'2017-08-06T22:02:57.887' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9319, 1, 1001, 1002, N'{ "gx1x1":126, "gx1x2":0, "gx2x1":0, "gx2x2":304}', N'', 1, CAST(N'2017-08-06T22:02:57.923' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9320, 1, 1001, 1002, N'{ "gx1x1":120, "gx1x2":0, "gx2x1":0, "gx2x2":304}', N'', 1, CAST(N'2017-08-06T22:02:57.957' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9321, 1, 1001, 1002, N'{ "gx1x1":112, "gx1x2":0, "gx2x1":0, "gx2x2":306}', N'', 1, CAST(N'2017-08-06T22:02:58.010' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9322, 1, 1001, 1002, N'{ "gx1x1":107, "gx1x2":0, "gx2x1":0, "gx2x2":307}', N'', 1, CAST(N'2017-08-06T22:02:58.427' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9323, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":21, "gx2x2":323}', N'', 1, CAST(N'2017-08-06T22:02:58.933' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9324, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":54, "gx2x2":316}', N'', 1, CAST(N'2017-08-06T22:02:58.997' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9325, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":58, "gx2x2":314}', N'', 1, CAST(N'2017-08-06T22:02:59.060' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9326, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":66, "gx2x2":314}', N'', 1, CAST(N'2017-08-06T22:02:59.090' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9327, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":76, "gx2x2":312}', N'', 1, CAST(N'2017-08-06T22:02:59.127' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9328, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":80, "gx2x2":312}', N'', 1, CAST(N'2017-08-06T22:02:59.163' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9329, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":83, "gx2x2":309}', N'', 1, CAST(N'2017-08-06T22:02:59.337' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9330, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":122, "gx2x2":298}', N'', 1, CAST(N'2017-08-06T22:02:59.620' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9331, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":215, "gx2x2":247}', N'', 1, CAST(N'2017-08-06T22:03:00.293' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9332, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":320, "gx2x2":84}', N'', 1, CAST(N'2017-08-06T22:03:00.673' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9333, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":108, "gx2x1":306, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:01.117' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9334, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":255, "gx2x1":221, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:01.597' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9335, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":255, "gx2x1":123, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:01.980' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9336, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":255, "gx2x1":70, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:02.393' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9337, 1, 1001, 1002, N'{ "gx1x1":49, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:03.003' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9338, 1, 1001, 1002, N'{ "gx1x1":191, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:03.407' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9339, 1, 1001, 1002, N'{ "gx1x1":252, "gx1x2":220, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:03.833' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9340, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:04.327' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9341, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":122, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:04.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9342, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":13, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:05.143' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9343, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":84}', N'', 1, CAST(N'2017-08-06T22:03:05.767' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9344, 1, 1001, 1002, N'{ "gx1x1":251, "gx1x2":0, "gx2x1":0, "gx2x2":153}', N'', 1, CAST(N'2017-08-06T22:03:06.153' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9345, 1, 1001, 1002, N'{ "gx1x1":250, "gx1x2":0, "gx2x1":0, "gx2x2":152}', N'', 1, CAST(N'2017-08-06T22:03:06.790' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9346, 1, 1001, 1002, N'{ "gx1x1":252, "gx1x2":0, "gx2x1":0, "gx2x2":150}', N'', 1, CAST(N'2017-08-06T22:03:23.207' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9347, 1, 1001, 1002, N'{ "gx1x1":253, "gx1x2":0, "gx2x1":0, "gx2x2":145}', N'', 1, CAST(N'2017-08-06T22:03:23.457' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9348, 1, 1001, 1002, N'{ "gx1x1":250, "gx1x2":0, "gx2x1":0, "gx2x2":138}', N'', 1, CAST(N'2017-08-06T22:03:23.520' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9349, 1, 1001, 1002, N'{ "gx1x1":200, "gx1x2":0, "gx2x1":0, "gx2x2":32}', N'', 1, CAST(N'2017-08-06T22:03:23.817' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9350, 1, 1001, 1002, N'{ "gx1x1":67, "gx1x2":141, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:24.313' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9351, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":190, "gx2x2":132}', N'', 1, CAST(N'2017-08-06T22:03:24.723' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9352, 1, 1001, 1002, N'{ "gx1x1":144, "gx1x2":118, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:25.243' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9353, 1, 1001, 1002, N'{ "gx1x1":166, "gx1x2":140, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:25.660' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9354, 1, 1001, 1002, N'{ "gx1x1":172, "gx1x2":144, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:54.363' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9355, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:54.410' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9356, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:55.033' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9357, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:03:55.437' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9525, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:01.870' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9526, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:01.940' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9527, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":239, "gx2x1":105, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:02.023' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9528, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":255, "gx2x1":34, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:02.123' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9529, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":255, "gx2x1":24, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:02.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9530, 1, 1001, 1002, N'{ "gx1x1":94, "gx1x2":255, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:02.227' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9531, 1, 1001, 1002, N'{ "gx1x1":151, "gx1x2":177, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:02.280' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9532, 1, 1001, 1002, N'{ "gx1x1":159, "gx1x2":175, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:02.320' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9533, 1, 1001, 1002, N'{ "gx1x1":174, "gx1x2":190, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:02.520' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9534, 1, 1001, 1002, N'{ "gx1x1":88, "gx1x2":94, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:03.020' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9535, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":91, "gx2x2":17}', N'', 1, CAST(N'2017-08-06T22:09:03.337' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9536, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":176, "gx2x2":64}', N'', 1, CAST(N'2017-08-06T22:09:03.747' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9537, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":246, "gx2x2":118}', N'', 1, CAST(N'2017-08-06T22:09:04.103' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9538, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":252, "gx2x2":146}', N'', 1, CAST(N'2017-08-06T22:09:04.523' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9539, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":59, "gx2x1":227, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:04.553' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9540, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":107, "gx2x1":241, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:04.587' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9541, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":135, "gx2x1":241, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:04.623' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9542, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":161, "gx2x1":235, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:04.657' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9543, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":175, "gx2x1":229, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:04.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9544, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":213, "gx2x1":223, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:04.760' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9545, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":231, "gx2x1":227, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:05.207' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9546, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":239, "gx2x1":235, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:05.583' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9547, 1, 1001, 1002, N'{ "gx1x1":2, "gx1x2":14, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:06.010' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9548, 1, 1001, 1002, N'{ "gx1x1":145, "gx1x2":0, "gx2x1":0, "gx2x2":125}', N'', 1, CAST(N'2017-08-06T22:09:06.397' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9549, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":216}', N'', 1, CAST(N'2017-08-06T22:09:07.003' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9550, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":218}', N'', 1, CAST(N'2017-08-06T22:09:07.253' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9551, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":0, "gx2x1":0, "gx2x2":216}', N'', 1, CAST(N'2017-08-06T22:09:07.630' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9552, 1, 1001, 1002, N'{ "gx1x1":252, "gx1x2":0, "gx2x1":0, "gx2x2":214}', N'', 1, CAST(N'2017-08-06T22:09:07.683' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9553, 1, 1001, 1002, N'{ "gx1x1":245, "gx1x2":0, "gx2x1":0, "gx2x2":207}', N'', 1, CAST(N'2017-08-06T22:09:07.730' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9554, 1, 1001, 1002, N'{ "gx1x1":202, "gx1x2":0, "gx2x1":0, "gx2x2":164}', N'', 1, CAST(N'2017-08-06T22:09:07.773' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9555, 1, 1001, 1002, N'{ "gx1x1":144, "gx1x2":0, "gx2x1":0, "gx2x2":102}', N'', 1, CAST(N'2017-08-06T22:09:07.973' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9556, 1, 1001, 1002, N'{ "gx1x1":145, "gx1x2":101, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:08.417' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9557, 1, 1001, 1002, N'{ "gx1x1":202, "gx1x2":206, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:09.020' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9558, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":3, "gx2x2":9}', N'', 1, CAST(N'2017-08-06T22:09:09.103' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9559, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":38, "gx2x2":44}', N'', 1, CAST(N'2017-08-06T22:09:09.160' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9560, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":53, "gx2x2":59}', N'', 1, CAST(N'2017-08-06T22:09:09.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9561, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":69, "gx2x2":75}', N'', 1, CAST(N'2017-08-06T22:09:09.223' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9562, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":86, "gx2x2":92}', N'', 1, CAST(N'2017-08-06T22:09:09.270' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9563, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":137, "gx2x2":141}', N'', 1, CAST(N'2017-08-06T22:09:09.473' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9564, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":223, "gx2x2":191}', N'', 1, CAST(N'2017-08-06T22:09:09.923' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9565, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":230, "gx2x2":194}', N'', 1, CAST(N'2017-08-06T22:09:10.457' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9566, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":228, "gx2x2":192}', N'', 1, CAST(N'2017-08-06T22:09:11.037' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9567, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":220, "gx2x2":182}', N'', 1, CAST(N'2017-08-06T22:09:11.140' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9568, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":167, "gx2x2":129}', N'', 1, CAST(N'2017-08-06T22:09:11.193' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9569, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":123, "gx2x2":81}', N'', 1, CAST(N'2017-08-06T22:09:11.260' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9570, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":90, "gx2x2":48}', N'', 1, CAST(N'2017-08-06T22:09:11.393' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9571, 1, 1001, 1002, N'{ "gx1x1":123, "gx1x2":145, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:11.883' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9572, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":219, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:11.943' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9573, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":229, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.003' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9574, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":229, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.057' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9575, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.110' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9576, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":229, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.243' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9577, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":226, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.287' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9578, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":221, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.327' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9579, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":220, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.547' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9580, 1, 1001, 1002, N'{ "gx1x1":223, "gx1x2":191, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.617' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9581, 1, 1001, 1002, N'{ "gx1x1":164, "gx1x2":152, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.647' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9582, 1, 1001, 1002, N'{ "gx1x1":151, "gx1x2":139, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.677' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9583, 1, 1001, 1002, N'{ "gx1x1":126, "gx1x2":120, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9584, 1, 1001, 1002, N'{ "gx1x1":102, "gx1x2":102, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.773' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9585, 1, 1001, 1002, N'{ "gx1x1":48, "gx1x2":64, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:12.917' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9586, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":4, "gx2x1":32, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:13.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9587, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":73, "gx2x2":29}', N'', 1, CAST(N'2017-08-06T22:09:13.493' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9588, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":213, "gx2x2":131}', N'', 1, CAST(N'2017-08-06T22:09:14.000' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9589, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":275, "gx2x2":177}', N'', 1, CAST(N'2017-08-06T22:09:14.250' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9590, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":215, "gx2x2":117}', N'', 1, CAST(N'2017-08-06T22:09:14.667' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9591, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":87, "gx2x1":11, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:15.187' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9592, 1, 1001, 1002, N'{ "gx1x1":129, "gx1x2":231, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:15.740' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9593, 1, 1001, 1002, N'{ "gx1x1":113, "gx1x2":215, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:15.783' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9594, 1, 1001, 1002, N'{ "gx1x1":99, "gx1x2":195, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:15.823' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9595, 1, 1001, 1002, N'{ "gx1x1":94, "gx1x2":186, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:15.853' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9596, 1, 1001, 1002, N'{ "gx1x1":89, "gx1x2":179, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:15.887' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9597, 1, 1001, 1002, N'{ "gx1x1":83, "gx1x2":173, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:15.963' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9598, 1, 1001, 1002, N'{ "gx1x1":70, "gx1x2":156, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:16.293' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9599, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":64, "gx2x1":22, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:16.770' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9600, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":43, "gx2x1":43, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:16.807' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9601, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":38, "gx2x1":48, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:16.847' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9602, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":33, "gx2x1":53, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:16.893' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9603, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":30, "gx2x1":56, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:16.980' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9604, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":17, "gx2x1":75, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:17.263' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9605, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":167, "gx2x2":37}', N'', 1, CAST(N'2017-08-06T22:09:17.820' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9606, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":1, "gx2x1":113, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:18.310' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9607, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":98, "gx2x1":24, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:18.623' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9608, 1, 1001, 1002, N'{ "gx1x1":75, "gx1x2":209, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:18.920' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9609, 1, 1001, 1002, N'{ "gx1x1":134, "gx1x2":248, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.657' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9610, 1, 1001, 1002, N'{ "gx1x1":21, "gx1x2":91, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9611, 1, 1001, 1002, N'{ "gx1x1":10, "gx1x2":76, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.750' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9612, 1, 1001, 1002, N'{ "gx1x1":5, "gx1x2":71, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.780' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9613, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":62, "gx2x1":4, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.813' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9614, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":51, "gx2x1":13, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.847' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9615, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":40, "gx2x1":24, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.877' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9616, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":30, "gx2x1":34, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:19.910' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9617, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":86, "gx2x2":12}', N'', 1, CAST(N'2017-08-06T22:09:20.353' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9618, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":128, "gx2x2":38}', N'', 1, CAST(N'2017-08-06T22:09:20.880' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9619, 1, 1001, 1002, N'{ "gx1x1":6, "gx1x2":86, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:21.363' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9620, 1, 1001, 1002, N'{ "gx1x1":51, "gx1x2":147, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:21.770' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9621, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":225, "gx2x1":123, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:22.130' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9622, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":223, "gx2x1":121, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:22.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9623, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":215, "gx2x1":113, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:22.253' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9624, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":161, "gx2x1":55, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:22.283' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9625, 1, 1001, 1002, N'{ "gx1x1":30, "gx1x2":78, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:22.667' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9626, 1, 1001, 1002, N'{ "gx1x1":111, "gx1x2":0, "gx2x1":0, "gx2x2":3}', N'', 1, CAST(N'2017-08-06T22:09:23.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9627, 1, 1001, 1002, N'{ "gx1x1":101, "gx1x2":91, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.617' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9628, 1, 1001, 1002, N'{ "gx1x1":168, "gx1x2":158, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.653' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9629, 1, 1001, 1002, N'{ "gx1x1":172, "gx1x2":160, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.680' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9630, 1, 1001, 1002, N'{ "gx1x1":182, "gx1x2":166, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9631, 1, 1001, 1002, N'{ "gx1x1":189, "gx1x2":169, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.757' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9632, 1, 1001, 1002, N'{ "gx1x1":200, "gx1x2":172, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.787' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9633, 1, 1001, 1002, N'{ "gx1x1":209, "gx1x2":173, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.820' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9634, 1, 1001, 1002, N'{ "gx1x1":212, "gx1x2":176, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.847' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9635, 1, 1001, 1002, N'{ "gx1x1":211, "gx1x2":175, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:23.923' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9636, 1, 1001, 1002, N'{ "gx1x1":204, "gx1x2":168, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:24.003' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9637, 1, 1001, 1002, N'{ "gx1x1":142, "gx1x2":104, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:24.033' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9638, 1, 1001, 1002, N'{ "gx1x1":124, "gx1x2":80, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:24.067' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9639, 1, 1001, 1002, N'{ "gx1x1":104, "gx1x2":56, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:24.097' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9640, 1, 1001, 1002, N'{ "gx1x1":86, "gx1x2":38, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:24.133' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9641, 1, 1001, 1002, N'{ "gx1x1":69, "gx1x2":21, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:24.323' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9642, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":80, "gx2x2":108}', N'', 1, CAST(N'2017-08-06T22:09:24.707' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9643, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":161, "gx2x2":155}', N'', 1, CAST(N'2017-08-06T22:09:25.173' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9644, 1, 1001, 1002, N'{ "gx1x1":126, "gx1x2":0, "gx2x1":0, "gx2x2":250}', N'', 1, CAST(N'2017-08-06T22:09:25.250' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9645, 1, 1001, 1002, N'{ "gx1x1":156, "gx1x2":0, "gx2x1":0, "gx2x2":242}', N'', 1, CAST(N'2017-08-06T22:09:25.293' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9646, 1, 1001, 1002, N'{ "gx1x1":164, "gx1x2":0, "gx2x1":0, "gx2x2":238}', N'', 1, CAST(N'2017-08-06T22:09:25.327' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9647, 1, 1001, 1002, N'{ "gx1x1":177, "gx1x2":0, "gx2x1":0, "gx2x2":231}', N'', 1, CAST(N'2017-08-06T22:09:25.380' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9648, 1, 1001, 1002, N'{ "gx1x1":189, "gx1x2":0, "gx2x1":0, "gx2x2":225}', N'', 1, CAST(N'2017-08-06T22:09:25.417' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9649, 1, 1001, 1002, N'{ "gx1x1":132, "gx1x2":0, "gx2x1":0, "gx2x2":164}', N'', 1, CAST(N'2017-08-06T22:09:25.847' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9650, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":95, "gx2x1":29, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.360' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9651, 1, 1001, 1002, N'{ "gx1x1":204, "gx1x2":134, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.393' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9652, 1, 1001, 1002, N'{ "gx1x1":212, "gx1x2":136, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.433' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9653, 1, 1001, 1002, N'{ "gx1x1":223, "gx1x2":141, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.460' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9654, 1, 1001, 1002, N'{ "gx1x1":237, "gx1x2":155, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.500' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9655, 1, 1001, 1002, N'{ "gx1x1":248, "gx1x2":166, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.530' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9656, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":177, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.563' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9657, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":190, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.593' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9658, 1, 1001, 1002, N'{ "gx1x1":252, "gx1x2":200, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:26.960' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9659, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":24, "gx2x2":94}', N'', 1, CAST(N'2017-08-06T22:09:27.427' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9660, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":132, "gx2x2":170}', N'', 1, CAST(N'2017-08-06T22:09:27.517' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9661, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":199, "gx2x2":107}', N'', 1, CAST(N'2017-08-06T22:09:27.573' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9662, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":233, "gx2x2":73}', N'', 1, CAST(N'2017-08-06T22:09:27.603' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9663, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":250, "gx2x2":56}', N'', 1, CAST(N'2017-08-06T22:09:27.633' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9664, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":251, "gx2x2":51}', N'', 1, CAST(N'2017-08-06T22:09:27.663' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9665, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":259, "gx2x2":43}', N'', 1, CAST(N'2017-08-06T22:09:27.997' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9666, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":204, "gx2x2":60}', N'', 1, CAST(N'2017-08-06T22:09:28.327' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9667, 1, 1001, 1002, N'{ "gx1x1":88, "gx1x2":0, "gx2x1":0, "gx2x2":40}', N'', 1, CAST(N'2017-08-06T22:09:28.913' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9668, 1, 1001, 1002, N'{ "gx1x1":115, "gx1x2":163, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:28.980' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9669, 1, 1001, 1002, N'{ "gx1x1":75, "gx1x2":141, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:29.053' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9670, 1, 1001, 1002, N'{ "gx1x1":26, "gx1x2":92, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:29.097' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9671, 1, 1001, 1002, N'{ "gx1x1":8, "gx1x2":56, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:29.130' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9672, 1, 1001, 1002, N'{ "gx1x1":3, "gx1x2":41, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:29.160' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9673, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":18, "gx2x2":8}', N'', 1, CAST(N'2017-08-06T22:09:29.367' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9674, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":146, "gx2x2":166}', N'', 1, CAST(N'2017-08-06T22:09:30.027' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9675, 1, 1001, 1002, N'{ "gx1x1":46, "gx1x2":46, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:30.060' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9676, 1, 1001, 1002, N'{ "gx1x1":61, "gx1x2":67, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:30.113' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9677, 1, 1001, 1002, N'{ "gx1x1":84, "gx1x2":94, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:30.143' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9678, 1, 1001, 1002, N'{ "gx1x1":94, "gx1x2":104, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:30.190' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9679, 1, 1001, 1002, N'{ "gx1x1":107, "gx1x2":117, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:30.250' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9680, 1, 1001, 1002, N'{ "gx1x1":124, "gx1x2":134, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:30.303' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9681, 1, 1001, 1002, N'{ "gx1x1":255, "gx1x2":182, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:30.830' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9682, 1, 1001, 1002, N'{ "gx1x1":133, "gx1x2":51, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:31.333' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9683, 1, 1001, 1002, N'{ "gx1x1":7, "gx1x2":0, "gx2x1":0, "gx2x2":83}', N'', 1, CAST(N'2017-08-06T22:09:31.723' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9684, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":75, "gx2x2":149}', N'', 1, CAST(N'2017-08-06T22:09:32.157' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9685, 1, 1001, 1002, N'{ "gx1x1":24, "gx1x2":0, "gx2x1":0, "gx2x2":40}', N'', 1, CAST(N'2017-08-06T22:09:32.533' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9686, 1, 1001, 1002, N'{ "gx1x1":169, "gx1x2":131, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:32.940' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9687, 1, 1001, 1002, N'{ "gx1x1":249, "gx1x2":197, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:33.490' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9688, 1, 1001, 1002, N'{ "gx1x1":132, "gx1x2":36, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:33.840' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9689, 1, 1001, 1002, N'{ "gx1x1":19, "gx1x2":0, "gx2x1":0, "gx2x2":77}', N'', 1, CAST(N'2017-08-06T22:09:34.243' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9690, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":69, "gx2x2":123}', N'', 1, CAST(N'2017-08-06T22:09:34.597' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9691, 1, 1001, 1002, N'{ "gx1x1":140, "gx1x2":112, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:34.960' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9692, 1, 1001, 1002, N'{ "gx1x1":234, "gx1x2":202, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:35.390' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9693, 1, 1001, 1002, N'{ "gx1x1":174, "gx1x2":120, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:35.440' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9694, 1, 1001, 1002, N'{ "gx1x1":162, "gx1x2":102, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:35.527' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9695, 1, 1001, 1002, N'{ "gx1x1":129, "gx1x2":49, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:35.560' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9696, 1, 1001, 1002, N'{ "gx1x1":117, "gx1x2":37, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:35.593' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9697, 1, 1001, 1002, N'{ "gx1x1":105, "gx1x2":25, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:35.623' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9698, 1, 1001, 1002, N'{ "gx1x1":96, "gx1x2":16, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:35.800' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9699, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":11, "gx2x2":71}', N'', 1, CAST(N'2017-08-06T22:09:36.310' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9700, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":146, "gx2x2":156}', N'', 1, CAST(N'2017-08-06T22:09:36.377' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9701, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":161, "gx2x2":161}', N'', 1, CAST(N'2017-08-06T22:09:36.417' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9702, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":164, "gx2x2":164}', N'', 1, CAST(N'2017-08-06T22:09:36.457' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9703, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":163, "gx2x2":163}', N'', 1, CAST(N'2017-08-06T22:09:36.543' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9704, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":149, "gx2x2":153}', N'', 1, CAST(N'2017-08-06T22:09:36.770' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9705, 1, 1001, 1002, N'{ "gx1x1":13, "gx1x2":0, "gx2x1":0, "gx2x2":9}', N'', 1, CAST(N'2017-08-06T22:09:37.067' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9706, 1, 1001, 1002, N'{ "gx1x1":148, "gx1x2":142, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:37.400' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9707, 1, 1001, 1002, N'{ "gx1x1":134, "gx1x2":130, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:37.457' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9708, 1, 1001, 1002, N'{ "gx1x1":98, "gx1x2":94, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:37.507' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9709, 1, 1001, 1002, N'{ "gx1x1":82, "gx1x2":78, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:37.543' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9710, 1, 1001, 1002, N'{ "gx1x1":79, "gx1x2":75, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:37.577' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9711, 1, 1001, 1002, N'{ "gx1x1":69, "gx1x2":65, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:37.923' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9712, 1, 1001, 1002, N'{ "gx1x1":66, "gx1x2":62, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:38.253' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9713, 1, 1001, 1002, N'{ "gx1x1":69, "gx1x2":65, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:42.863' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9714, 1, 1001, 1002, N'{ "gx1x1":137, "gx1x2":51, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:42.937' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9715, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:42.973' AS DateTime), NULL)
GO
INSERT [dbo].[MessageLog] ([MessageId], [CategoryId], [CommanderId], [RobotId], [Command], [Response], [IsLog], [XTimeCommand], [XTimeResponse]) VALUES (9716, 1, 1001, 1002, N'{ "gx1x1":0, "gx1x2":0, "gx2x1":0, "gx2x2":0}', N'', 1, CAST(N'2017-08-06T22:09:43.133' AS DateTime), NULL)
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (10, CAST(N'2017-09-10T12:56:33.943' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (11, CAST(N'2017-09-10T12:59:02.453' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (12, CAST(N'2017-09-10T13:45:46.397' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (13, CAST(N'2017-09-10T13:51:56.030' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (14, CAST(N'2017-09-10T13:56:27.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (15, CAST(N'2017-09-10T14:01:59.390' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (16, CAST(N'2017-09-10T14:23:09.263' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (17, CAST(N'2017-09-10T14:25:02.367' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (18, CAST(N'2017-09-10T14:26:10.620' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (19, CAST(N'2017-09-10T14:37:13.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (20, CAST(N'2017-09-10T14:37:54.480' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (21, CAST(N'2017-09-10T14:43:04.763' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (22, CAST(N'2017-09-10T14:47:40.937' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (23, CAST(N'2017-09-10T15:53:29.123' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (24, CAST(N'2017-09-10T15:54:00.627' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (25, CAST(N'2017-09-10T15:56:36.157' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (26, CAST(N'2017-09-10T16:09:45.097' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (27, CAST(N'2017-09-10T16:16:35.177' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (28, CAST(N'2017-09-10T16:22:14.360' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (29, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (30, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (31, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (32, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (33, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (34, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (35, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (36, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (37, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (38, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (39, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (40, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (41, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (42, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (43, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (44, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (45, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (46, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (47, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (48, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
GO
INSERT [dbo].[DemoCommander] ([DemoId], [SessionDateTime], [SessionId]) VALUES (49, CAST(N'2000-01-01T00:00:00.000' AS DateTime), N'')
ALTER TABLE [dbo].[Message] WITH CHECK ADD CONSTRAINT [FK_Message_Category] FOREIGN KEY([CategoryId])
REFERENCES [dbo].[Category] ([CategoryId])
GO
ALTER TABLE [dbo].[Message] CHECK CONSTRAINT [FK_Message_Category]
GO
ALTER TABLE [dbo].[MessageLog] WITH CHECK ADD CONSTRAINT [FK_MessageLog_Category] FOREIGN KEY([CategoryId])
REFERENCES [dbo].[Category] ([CategoryId])
GO
ALTER TABLE [dbo].[MessageLog] CHECK CONSTRAINT [FK_MessageLog_Category]
GO
ALTER TABLE [dbo].[DemoCommander] ADD DEFAULT ('2000-01-01') FOR [SessionDateTime]
GO
ALTER TABLE [dbo].[DemoCommander] ADD DEFAULT ('') FOR [SessionId]
GO
| 135.825593 | 288 | 0.647806 |
b4e0e572c835c484c0f44eb853b3fc2721f8cb63 | 1,033 | kt | Kotlin | roboquant-core/test/feeds/TestFeedTest.kt | jetonbacaj/roboquant | 11136be3cb62870532dc7e1888c5ea88ba17bcab | [
"Apache-2.0"
] | null | null | null | roboquant-core/test/feeds/TestFeedTest.kt | jetonbacaj/roboquant | 11136be3cb62870532dc7e1888c5ea88ba17bcab | [
"Apache-2.0"
] | null | null | null | roboquant-core/test/feeds/TestFeedTest.kt | jetonbacaj/roboquant | 11136be3cb62870532dc7e1888c5ea88ba17bcab | [
"Apache-2.0"
] | null | null | null | package org.roboquant.feeds
import kotlinx.coroutines.*
import org.junit.Test
import kotlin.test.*
import org.roboquant.TestData
import org.roboquant.common.Background
import org.roboquant.common.TimeFrame
import org.roboquant.feeds.test.TestFeed
fun play(feed:Feed, timeFrame: TimeFrame = TimeFrame.FULL): EventChannel {
val channel = EventChannel(timeFrame = timeFrame)
Background.ioJob {
feed.play(channel)
channel.close()
}
return channel
}
internal class TestFeedTest {
@Test
fun testTestFeed() = runBlocking{
val feed = TestFeed(5..9)
var cnt = 0
for (step in play(feed)) {
cnt++
}
assertEquals(5, cnt)
}
@Test
fun testTestFeedWithItems() = runBlocking{
val feed = TestFeed(120..130, 130 downTo 120, asset = TestData.euStock())
var cnt = 0
for (step in play(feed)) {
cnt++
assertTrue(step.actions.first() is PriceAction)
}
assertEquals(22, cnt)
}
} | 23.477273 | 81 | 0.631171 |
6e50721a046b6a643f38a354df6ca2f1146cea54 | 39 | sql | SQL | Study Works/DB Construction/DBQueries/Queries/65.sql | LetsPlayNow/MyStudentWorks | 8c5016a8393851e3518473e0b3264b5b090be6aa | [
"MIT"
] | null | null | null | Study Works/DB Construction/DBQueries/Queries/65.sql | LetsPlayNow/MyStudentWorks | 8c5016a8393851e3518473e0b3264b5b090be6aa | [
"MIT"
] | null | null | null | Study Works/DB Construction/DBQueries/Queries/65.sql | LetsPlayNow/MyStudentWorks | 8c5016a8393851e3518473e0b3264b5b090be6aa | [
"MIT"
] | null | null | null | DELETE FROM Deliveries
WHERE INN = NULL | 19.5 | 22 | 0.820513 |
e92f83074b5d321a478feeb8d335e3ec334ed06c | 646 | sql | SQL | tpch/queries/20.sql | hey-kong/tidb-bench | 001667698380cc00025a7d7d9e3007776071c009 | [
"Apache-2.0"
] | 107 | 2016-08-09T12:00:37.000Z | 2022-03-05T06:08:36.000Z | tpch/queries/20.sql | hey-kong/tidb-bench | 001667698380cc00025a7d7d9e3007776071c009 | [
"Apache-2.0"
] | 38 | 2016-06-22T08:36:58.000Z | 2021-08-10T05:53:01.000Z | tpch/queries/20.sql | hey-kong/tidb-bench | 001667698380cc00025a7d7d9e3007776071c009 | [
"Apache-2.0"
] | 81 | 2015-10-28T07:48:06.000Z | 2022-03-29T05:54:03.000Z | -- using 1365545250 as a seed to the RNG
select
s_name,
s_address
from
supplier,
nation
where
s_suppkey in (
select
ps_suppkey
from
partsupp
where
ps_partkey in (
select
p_partkey
from
part
where
p_name like 'green%'
)
and ps_availqty > (
select
0.5 * sum(l_quantity)
from
lineitem
where
l_partkey = ps_partkey
and l_suppkey = ps_suppkey
and l_shipdate >= '1993-01-01'
and l_shipdate < date_add('1993-01-01', interval '1' year)
)
)
and s_nationkey = n_nationkey
and n_name = 'ALGERIA'
order by
s_name;
| 15.756098 | 64 | 0.592879 |
af6f779fbe9f9d336e37d83d5ee4446277505939 | 1,614 | rb | Ruby | features/step_definitions/work_unit_steps.rb | AdGitHub2023/xrono | 1cdaebe285ee6115e948c7c0a43f34e2393d4b4a | [
"MIT"
] | 11 | 2015-03-16T14:45:03.000Z | 2019-02-09T08:03:41.000Z | features/step_definitions/work_unit_steps.rb | AdGitHub2023/xrono | 1cdaebe285ee6115e948c7c0a43f34e2393d4b4a | [
"MIT"
] | 3 | 2015-03-11T21:29:36.000Z | 2018-06-26T17:38:05.000Z | features/step_definitions/work_unit_steps.rb | AdGitHub2023/xrono | 1cdaebe285ee6115e948c7c0a43f34e2393d4b4a | [
"MIT"
] | 2 | 2015-12-13T17:33:51.000Z | 2019-07-21T20:20:18.000Z | Given /^I have (?:a|an) "([^\"]*)" work unit scheduled today for "([^\"]*)" hours$/ do |hours_type, hours|
WorkUnit.make(:hours_type => hours_type, :scheduled_at => Date.current, :user => @current_user, :hours => hours)
end
Then /^I should see the following work_units:$/ do |expected_work_units_table|
expected_work_units_table.diff!(find('table').all('tr').map { |row| row.all('th, td').map { |cell| cell.text.strip } })
end
When /^I create a work unit with #{capture_model}$/ do |ticket|
WorkUnit.make(:ticket => find_model!(ticket))
end
Given /^I have no work units for the previous day$/ do
@current_user.work_units.where(:scheduled_at => Date.yesterday).destroy_all
end
Given /^I have a "([^"]*)" hour work unit for yesterday with ticket "([^"]*)"$/ do |hours, ticket|
WorkUnit.make(:ticket => find_model!(ticket), :hours_type => "Normal",
:scheduled_at => 1.days.ago.beginning_of_day, :user => @current_user, :hours => hours)
end
Then /^that work unit should still have a scheduled at date of yesterday$/ do
WorkUnit.last.scheduled_at.should == 1.day.ago.beginning_of_day
end
Then /^I should see the new ticket fields$/ do
within("#on_demand_ticket") do
page.should have_css('#on_demand_ticket_name')
page.should have_css('#on_demand_ticket_description')
page.should have_css('#on_demand_ticket_estimated_hours')
end
end
Then /^there should be a ticket named "([^"]*)" with (\d+) hours$/ do |ticket_name, hours|
sleep(1)
@ticket = Ticket.where(:name => ticket_name).last
@ticket.should_not be_nil
@ticket.work_units.last.hours.should == BigDecimal(hours)
end
| 40.35 | 121 | 0.703222 |
e3f355d63ace616d1b77f5cf8f275b592bf188ea | 6,675 | go | Go | demo/go/micdemo/picovoice_mic_demo.go | Picovoice/picovoice | adbbb9f0b22d10cd11e17362d382b02d5d9da39d | [
"Apache-2.0"
] | 259 | 2020-10-27T18:18:58.000Z | 2022-03-31T18:16:38.000Z | demo/go/micdemo/picovoice_mic_demo.go | Picovoice/picovoice | adbbb9f0b22d10cd11e17362d382b02d5d9da39d | [
"Apache-2.0"
] | 129 | 2020-12-24T09:31:18.000Z | 2022-03-31T18:13:53.000Z | demo/go/micdemo/picovoice_mic_demo.go | Picovoice/picovoice | adbbb9f0b22d10cd11e17362d382b02d5d9da39d | [
"Apache-2.0"
] | 67 | 2020-12-17T16:07:17.000Z | 2022-03-18T19:21:45.000Z | // Copyright 2021 Picovoice Inc.
//
// You may not use this file except in compliance with the license. A copy of the license is
// located in the "LICENSE" file accompanying this source.
//
// Unless required by applicable law or agreed to in writing, software distributed under the
// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"flag"
"fmt"
"log"
"os"
"os/signal"
"path/filepath"
"strconv"
. "github.com/Picovoice/picovoice/sdk/go"
pvrecorder "github.com/Picovoice/pvrecorder/sdk/go"
rhn "github.com/Picovoice/rhino/binding/go"
"github.com/go-audio/wav"
)
func main() {
keywordPathArg := flag.String("keyword_path", "", "Path to Porcupine keyword file (.ppn)")
contextPathArg := flag.String("context_path", "", "Path to Rhino context file (.rhn)")
porcupineModelPathArg := flag.String("porcupine_model_path", "", "(optional) Path to Porcupine's model file (.pv)")
porcupineSensitivityArg := flag.String("porcupine_sensitivity", "", "(optional) Sensitivity for detecting wake word. "+
"Each value should be a number within [0, 1]. A higher "+
"sensitivity results in fewer misses at the cost of increasing the false alarm rate. "+
"If not set, 0.5 will be used.")
rhinoModelPathArg := flag.String("rhino_model_path", "", "(optional) Path to Rhino's model file (.pv)")
rhinoSensitivityArg := flag.String("rhino_sensitivity", "", "(optional) Inference sensitivity. "+
"The value should be a number within [0, 1]. A higher sensitivity value results in "+
"fewer misses at the cost of (potentially) increasing the erroneous inference rate. "+
"If not set, 0.5 will be used.")
audioDeviceIndex := flag.Int("audio_device_index", -1, "(optional) Index of capture device to use.")
outputPathArg := flag.String("output_path", "", "(optional) Path to recorded audio (for debugging)")
showAudioDevices := flag.Bool("show_audio_devices", false, "(optional) Display all available capture devices")
flag.Parse()
if *showAudioDevices {
printAudioDevices()
return
}
var outputWav *wav.Encoder
if *outputPathArg != "" {
outputFilePath, _ := filepath.Abs(*outputPathArg)
outputFile, err := os.Create(outputFilePath)
if err != nil {
log.Fatalf("Failed to create output audio at path %s", outputFilePath)
}
defer outputFile.Close()
outputWav = wav.NewEncoder(outputFile, SampleRate, 16, 1, 1)
defer outputWav.Close()
}
p := Picovoice{}
// validate keyword
if *keywordPathArg != "" {
keywordPath, _ := filepath.Abs(*keywordPathArg)
if _, err := os.Stat(keywordPath); os.IsNotExist(err) {
log.Fatalf("Could not find keyword file at %s", keywordPath)
}
p.KeywordPath = keywordPath
}
// context path
if *contextPathArg != "" {
contextPath, _ := filepath.Abs(*contextPathArg)
if _, err := os.Stat(contextPath); os.IsNotExist(err) {
log.Fatalf("Could not find context file at %s", contextPath)
}
p.ContextPath = contextPath
}
// validate Porcupine model
if *porcupineModelPathArg != "" {
porcupineModelPath, _ := filepath.Abs(*porcupineModelPathArg)
if _, err := os.Stat(porcupineModelPath); os.IsNotExist(err) {
log.Fatalf("Could not find Porcupine model file at %s", porcupineModelPath)
}
p.PorcupineModelPath = porcupineModelPath
}
// validate Rhino model
if *rhinoModelPathArg != "" {
rhinoModelPath, _ := filepath.Abs(*rhinoModelPathArg)
if _, err := os.Stat(rhinoModelPath); os.IsNotExist(err) {
log.Fatalf("Could not find Rhino model file at %s", rhinoModelPath)
}
p.RhinoModelPath = rhinoModelPath
}
// validate Porcupine sensitivity
if *porcupineSensitivityArg == "" {
p.PorcupineSensitivity = 0.5
} else {
sensitivityFloat, err := strconv.ParseFloat(*porcupineSensitivityArg, 32)
if err != nil || sensitivityFloat < 0 || sensitivityFloat > 1 {
log.Fatalf("Porcupine sensitivity value of '%s' is invalid. Must be a float32 between [0, 1].", *porcupineSensitivityArg)
}
p.PorcupineSensitivity = float32(sensitivityFloat)
}
// validate Rhino sensitivity
if *rhinoSensitivityArg == "" {
p.RhinoSensitivity = 0.5
} else {
sensitivityFloat, err := strconv.ParseFloat(*rhinoSensitivityArg, 32)
if err != nil || sensitivityFloat < 0 || sensitivityFloat > 1 {
log.Fatalf("Rhino sensitivity value of '%s' is invalid. Must be a float32 between [0, 1].", *rhinoSensitivityArg)
}
p.RhinoSensitivity = float32(sensitivityFloat)
}
p.WakeWordCallback = func() { fmt.Println("[wake word]") }
p.InferenceCallback = func(inference rhn.RhinoInference) {
if inference.IsUnderstood {
fmt.Println("{")
fmt.Printf(" intent : '%s'\n", inference.Intent)
fmt.Println(" slots : {")
for k, v := range inference.Slots {
fmt.Printf(" %s : '%s'\n", k, v)
}
fmt.Println(" }")
fmt.Println("}")
} else {
fmt.Println("Didn't understand the command")
}
}
err := p.Init()
if err != nil {
log.Fatal(err)
}
defer p.Delete()
recorder := pvrecorder.PvRecorder{
DeviceIndex: *audioDeviceIndex,
FrameLength: FrameLength,
BufferSizeMSec: 1000,
LogOverflow: 0,
}
if err := recorder.Init(); err != nil {
log.Fatalf("Error: %s.\n", err.Error())
}
defer recorder.Delete()
if err := recorder.Start(); err != nil {
log.Fatalf("Error: %s.\n", err.Error())
}
signalCh := make(chan os.Signal, 1)
waitCh := make(chan struct{})
signal.Notify(signalCh, os.Interrupt)
go func () {
<- signalCh
close(waitCh)
}()
log.Printf("Using device: %s", recorder.GetSelectedDevice())
fmt.Println("Listening...")
waitLoop:
for {
select {
case <- waitCh:
log.Println("Stopping...")
break waitLoop
default:
pcm, err := recorder.Read()
if err != nil {
log.Fatalf("Error: %s.\n", err.Error())
}
err = p.Process(pcm)
if err != nil {
log.Fatal(err)
}
// write to debug file
if outputWav != nil {
for outputBufIndex := range pcm {
outputWav.WriteFrame(pcm[outputBufIndex])
}
}
}
}
}
func printAudioDevices() {
if devices, err := pvrecorder.GetAudioDevices(); err != nil {
log.Fatalf("Error: %s.\n", err.Error())
} else {
for i, device := range devices {
log.Printf("index: %d, device name: %s\n", i, device)
}
}
}
| 31.046512 | 124 | 0.651086 |
5fa7df92d85ff9342ac5fab8627aec93209ba73f | 440 | css | CSS | src/examples/src/App.m.css | mu2019/widgets | 1eaf7a7df849370f7290e490da1b2b65ca9902e2 | [
"BSD-3-Clause"
] | null | null | null | src/examples/src/App.m.css | mu2019/widgets | 1eaf7a7df849370f7290e490da1b2b65ca9902e2 | [
"BSD-3-Clause"
] | null | null | null | src/examples/src/App.m.css | mu2019/widgets | 1eaf7a7df849370f7290e490da1b2b65ca9902e2 | [
"BSD-3-Clause"
] | null | null | null | .root {
width: 100%;
display: flex;
}
.main {
margin-top: 44px;
display: flex;
width: 100%;
}
.content {
margin-right: 280px;
margin-left: 20px;
margin-bottom: 20px;
min-width: 300px;
max-width: 900px;
width: 100%;
}
@media (max-width: 1050px) {
.root {
width: 100%;
display: block;
}
.nav {
position: inherit;
}
.main {
margin-top: 0;
display: block;
}
.content {
margin-right: 20px;
width: auto;
}
}
| 11 | 28 | 0.6 |
e7ed00c5ae57672fde74a6d3136af795025987e2 | 772 | kt | Kotlin | app/src/main/java/alejandromr92/com/movies/network/api/impl/MovieAPIImpl.kt | alejandromr92/Movies | b31f928be6c0148b786a1f748e513c91bf821bb8 | [
"MIT"
] | null | null | null | app/src/main/java/alejandromr92/com/movies/network/api/impl/MovieAPIImpl.kt | alejandromr92/Movies | b31f928be6c0148b786a1f748e513c91bf821bb8 | [
"MIT"
] | null | null | null | app/src/main/java/alejandromr92/com/movies/network/api/impl/MovieAPIImpl.kt | alejandromr92/Movies | b31f928be6c0148b786a1f748e513c91bf821bb8 | [
"MIT"
] | null | null | null | package alejandromr92.com.movies.network.api.impl
import alejandromr92.com.movies.di.DaggerNetworkComponent
import alejandromr92.com.movies.network.api.MovieAPI
import alejandromr92.com.movies.network.model.converter.MovieNetworkConverter
import alejandromr92.com.movies.network.service.Endpoints
import alejandromr92.com.movies.network.service.MovieService
import alejandromr92.com.movies.storage.model.MovieDataStore
import io.reactivex.Single
class MovieAPIImpl: MovieAPI{
private val service: MovieService = DaggerNetworkComponent.create().getMovieService()
override fun getPopularMovies(page: Int): Single<List<MovieDataStore>> =
service.getPopularMovies(Endpoints.API_KEY, page).map { MovieNetworkConverter.convertListToStoreModel(it.results) }
}
| 45.411765 | 123 | 0.838083 |