content stringlengths 4 1.04M | lang stringclasses 358 values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
<app-foo></app-foo>
<app-bar></app-bar>
| HTML | 0 | fuelingtheweb/prettier | tests/html_tags/custom-element.html | [
"MIT"
] |
// check sanity of vsx aligned ld/st
// https://github.com/opencv/opencv/issues/13211
#include <altivec.h>
#undef bool
#define vsx_ld vec_vsx_ld
#define vsx_st vec_vsx_st
template<typename T>
static void fill(T& d, int from = 0, int to = 16)
{
for (int i = from; i < to; i++)
d[i] = i;
}
template<typename T, typename Tvec>
static bool check_data(T& d, Tvec& v, int from = 0, int to = 16)
{
for (int i = from; i < to; i++)
{
if (d[i] != vec_extract(v, i))
return false;
}
return true;
}
int main()
{
unsigned char __attribute__ ((aligned (16))) rbuf[16];
unsigned char __attribute__ ((aligned (16))) wbuf[16];
__vector unsigned char a;
// 1- check aligned load and store
fill(rbuf);
a = vec_ld(0, rbuf);
if (!check_data(rbuf, a))
return 1;
vec_st(a, 0, wbuf);
if (!check_data(wbuf, a))
return 11;
// 2- check mixing aligned load and unaligned store
a = vec_ld(0, rbuf);
vsx_st(a, 0, wbuf);
if (!check_data(wbuf, a))
return 2;
// 3- check mixing unaligned load and aligned store
a = vsx_ld(0, rbuf);
vec_st(a, 0, wbuf);
if (!check_data(wbuf, a))
return 3;
return 0;
} | C++ | 4 | thisisgopalmandal/opencv | cmake/checks/runtime/cpu_vsx_aligned.cpp | [
"BSD-3-Clause"
] |
--TEST--
Object naming collision error: interface/interface
--FILE--
<?php
interface A { }
interface A { }
?>
--EXPECTF--
Fatal error: Cannot declare interface A, because the name is already in use in %s on line %d
| PHP | 2 | thiagooak/php-src | Zend/tests/name_collision_04.phpt | [
"PHP-3.01"
] |
#include <torch/csrc/cuda/python_nccl.h>
#include <pybind11/pybind11.h>
#include <torch/csrc/cuda/nccl.h>
#include <torch/csrc/DynamicTypes.h>
#include <torch/csrc/Exceptions.h>
#include <torch/csrc/THP.h>
#include <torch/csrc/Types.h>
#include <torch/csrc/cuda/THCP.h>
#include <ATen/core/functional.h>
#include <c10/cuda/CUDAGuard.h>
#include <c10/util/irange.h>
#include <sstream>
#include <unordered_map>
using namespace at;
using namespace torch;
using namespace torch::cuda::nccl;
using namespace torch::cuda::nccl::detail;
static const char* COMM_CAPSULE_NAME = "torch.cuda.nccl.Communicator";
PyObject* THCPModule_nccl_version(PyObject* self, PyObject* args) {
return PyInt_FromLong(version());
}
PyObject* THCPModule_nccl_unique_id(PyObject* self, PyObject* args) {
HANDLE_TH_ERRORS
ncclUniqueId id;
get_unique_id(id);
return PyBytes_FromStringAndSize((char*)&id, NCCL_UNIQUE_ID_BYTES);
END_HANDLE_TH_ERRORS
}
static ncclComm_t unpack_nccl_comm(PyObject* capsule) {
ncclComm_t comm =
(ncclComm_t)PyCapsule_GetPointer(capsule, COMM_CAPSULE_NAME);
if (!comm)
throw python_error();
return comm;
}
static void destroy_nccl_comm(PyObject* capsule) {
HANDLE_TH_ERRORS
ncclComm_t comm = unpack_nccl_comm(capsule);
{
pybind11::gil_scoped_release no_gil;
comm_destroy(comm);
}
END_HANDLE_TH_ERRORS_RET()
}
static std::vector<c10::optional<at::cuda::CUDAStream>> unpack_streams(PyObject* obj, size_t size) {
if (obj == Py_None) {
return std::vector<c10::optional<at::cuda::CUDAStream>>(size, c10::nullopt);
}
auto streams = THPUtils_PySequence_to_CUDAStreamList(obj);
if (streams.size() != size) {
throw std::runtime_error(
"number of streams is not equal to number of inputs");
}
return streams;
}
static inline at::Tensor extract_tensor(PyObject* obj);
static inline std::vector<at::Tensor> extract_tensors(PyObject* obj);
static std::vector<ncclComm_t> unpack_comms(PyObject* obj, size_t size) {
if (obj == Py_None) {
return std::vector<ncclComm_t>();
}
std::vector<ncclComm_t> comms;
if (PyCapsule_CheckExact(obj)) {
comms = {unpack_nccl_comm(obj)};
} else {
auto seq = THPObjectPtr(PySequence_Fast(obj, "comm is not a sequence"));
if (!seq)
throw python_error();
auto size = PySequence_Fast_GET_SIZE(seq.get());
comms = std::vector<ncclComm_t>(size);
for(const auto i : c10::irange(size)) {
comms[i] = unpack_nccl_comm(PySequence_Fast_GET_ITEM(seq.get(), i));
}
}
if (comms.size() != size) {
throw std::runtime_error(
"number of communicators is not equal to number of inputs");
}
return comms;
}
PyObject* THCPModule_nccl_init_rank(PyObject* self, PyObject* args) {
HANDLE_TH_ERRORS
int nranks;
const char* id;
Py_ssize_t id_len;
int rank;
if (!PyArg_ParseTuple(
args, "is#i:nccl_init_rank", &nranks, &id, &id_len, &rank)) {
return nullptr;
}
THPUtils_assert(
id_len == NCCL_UNIQUE_ID_BYTES,
"invalid unqiue_id (expected %d bytes, got %zd)",
NCCL_UNIQUE_ID_BYTES,
id_len);
ncclUniqueId commId;
memcpy(&commId, id, NCCL_UNIQUE_ID_BYTES);
ncclComm_t comm;
{
pybind11::gil_scoped_release no_gil;
comm = comm_init_rank(nranks, commId, rank);
}
return PyCapsule_New(comm, COMM_CAPSULE_NAME, &destroy_nccl_comm);
END_HANDLE_TH_ERRORS
}
PyObject* THCPModule_nccl_reduce(PyObject* self, PyObject* args) {
HANDLE_TH_ERRORS
PyObject *_inputs, *_output, *_streams, *_comms;
int root, op;
if (!PyArg_ParseTuple(
args,
"OOiiOO",
&_inputs,
&_output,
&root,
&op,
&_streams,
&_comms)) {
THPUtils_invalidArguments(
args,
nullptr,
"nccl_reduce",
1,
"(sequence[Tensor] inputs, Tensor output, int root,"
" int op, sequence[torch.cuda.Stream or None]");
return nullptr;
}
std::vector<at::Tensor> inputs = extract_tensors(_inputs);
auto output = extract_tensor(_output);
std::vector<c10::optional<at::cuda::CUDAStream>> streams = unpack_streams(_streams, inputs.size());
auto user_comms = unpack_comms(_comms, inputs.size());
{
pybind11::gil_scoped_release no_gil;
torch::cuda::nccl::reduce(inputs, output, root, op, streams, user_comms);
}
Py_RETURN_NONE;
END_HANDLE_TH_ERRORS
}
PyObject* THCPModule_nccl_all_reduce(PyObject* self, PyObject* args) {
HANDLE_TH_ERRORS
PyObject *_inputs, *_outputs, *_streams, *_comms;
int op;
if (!PyArg_ParseTuple(
args, "OOiOO", &_inputs, &_outputs, &op, &_streams, &_comms)) {
THPUtils_invalidArguments(
args,
nullptr,
"nccl_all_reduce",
1,
"(sequence[Tensor] inputs, sequence[Tensor] outputs, int op,"
" sequence[torch.cuda.Stream] streams,"
" sequence[torch.cuda.nccl.Communicator] comms)");
return nullptr;
}
std::vector<at::Tensor> inputs = extract_tensors(_inputs);
std::vector<at::Tensor> outputs = extract_tensors(_outputs);
auto streams = unpack_streams(_streams, inputs.size());
auto user_comms = unpack_comms(_comms, inputs.size());
{
pybind11::gil_scoped_release no_gil;
all_reduce(inputs, outputs, op, streams, user_comms);
}
Py_RETURN_NONE;
END_HANDLE_TH_ERRORS
}
PyObject* THCPModule_nccl_broadcast(PyObject* self, PyObject* args) {
HANDLE_TH_ERRORS
PyObject *_inputs, *_streams, *_comms;
int root;
if (!PyArg_ParseTuple(args, "OiOO", &_inputs, &root, &_streams, &_comms)) {
THPUtils_invalidArguments(
args,
nullptr,
"nccl_broadcast",
1,
"(sequence[Tensor] inputs, int root"
" sequence[torch.cuda.Stream] streams,"
" sequence[torch.cuda.nccl.Communicator] comms)");
return nullptr;
}
std::vector<at::Tensor> inputs = extract_tensors(_inputs);
THPUtils_assert(root >= 0 && (size_t)root < inputs.size(), "invalid root");
auto streams = unpack_streams(_streams, inputs.size());
auto user_comms = unpack_comms(_comms, inputs.size());
{
pybind11::gil_scoped_release no_gil;
torch::cuda::nccl::broadcast(inputs, streams, user_comms);
}
Py_RETURN_NONE;
END_HANDLE_TH_ERRORS
}
PyObject* THCPModule_nccl_all_gather(PyObject* self, PyObject* args) {
HANDLE_TH_ERRORS
PyObject *_inputs, *_outputs, *_streams, *_comms;
if (!PyArg_ParseTuple(
args, "OOOO", &_inputs, &_outputs, &_streams, &_comms)) {
THPUtils_invalidArguments(
args,
nullptr,
"nccl_all_gather",
1,
"(sequence[Tensor] inputs, sequence[Tensor] outputs"
" sequence[torch.cuda.Stream] streams,"
" sequence[torch.cuda.nccl.Communicator] comms)");
return nullptr;
}
std::vector<at::Tensor> inputs = extract_tensors(_inputs);
std::vector<at::Tensor> outputs = extract_tensors(_outputs);
auto streams = unpack_streams(_streams, inputs.size());
auto user_comms = unpack_comms(_comms, inputs.size());
{
pybind11::gil_scoped_release no_gil;
all_gather(inputs, outputs, streams, user_comms);
}
Py_RETURN_NONE;
END_HANDLE_TH_ERRORS
}
PyObject* THCPModule_nccl_reduce_scatter(PyObject* self, PyObject* args) {
HANDLE_TH_ERRORS
PyObject *_inputs, *_outputs, *_streams, *_comms;
int op;
if (!PyArg_ParseTuple(
args, "OOiOO", &_inputs, &_outputs, &op, &_streams, &_comms)) {
THPUtils_invalidArguments(
args,
nullptr,
"nccl_reduce_scatter",
1,
"(sequence[Tensor] inputs, sequence[Tensor] outputs, int op"
" sequence[torch.cuda.Stream] streams,"
" sequence[torch.cuda.nccl.Communicator] comms)");
return nullptr;
}
std::vector<at::Tensor> inputs = extract_tensors(_inputs);
std::vector<at::Tensor> outputs = extract_tensors(_outputs);
auto streams = unpack_streams(_streams, inputs.size());
auto user_comms = unpack_comms(_comms, inputs.size());
{
pybind11::gil_scoped_release no_gil;
reduce_scatter(inputs, outputs, op, streams, user_comms);
}
Py_RETURN_NONE;
END_HANDLE_TH_ERRORS
}
static inline
at::Tensor extract_tensor(PyObject* obj) {
if (!THPVariable_Check(obj)) {
throw torch::TypeError("expected Tensor (got %s)", Py_TYPE(obj)->tp_name);
}
return THPVariable_Unpack(obj);
}
static inline
std::vector<at::Tensor> extract_tensors(PyObject* obj) {
auto seq = THPObjectPtr(PySequence_Fast(obj, "expected a sequence"));
if (!seq)
throw python_error();
std::vector<at::Tensor> list;
Py_ssize_t length = PySequence_Fast_GET_SIZE(seq.get());
for (Py_ssize_t i = 0; i < length; i++) {
PyObject* item = PySequence_Fast_GET_ITEM(seq.get(), i);
if (!THPVariable_Check(item)) {
throw torch::TypeError(
"expected Tensor at %d (got %s)", (int)i, Py_TYPE(item)->tp_name);
}
list.emplace_back(THPVariable_Unpack(item));
}
return list;
}
| C++ | 4 | Hacky-DH/pytorch | torch/csrc/cuda/python_nccl.cpp | [
"Intel"
] |
export { default } from './ListItemSecondaryAction';
export * from './ListItemSecondaryAction';
export { default as listItemSecondaryActionClasses } from './listItemSecondaryActionClasses';
export * from './listItemSecondaryActionClasses';
| TypeScript | 2 | good-gym/material-ui | packages/material-ui/src/ListItemSecondaryAction/index.d.ts | [
"MIT"
] |
xof 0303txt 0032
AnimTicksPerSecond {
24;
}
Frame pCylinder1 {
FrameTransformMatrix {
1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.000000,0.000000,0.000000,0.000000,-0.000000,1.000000;;
}
Mesh pCylinderShape1 {
1720;
0.951057; -5.000000; 0.309017;,
0.809017; -5.000000; 0.587786;,
0.809017; -4.500000; 0.587786;,
0.951057; -4.500000; 0.309017;,
0.809017; -5.000000; 0.587786;,
0.587785; -5.000000; 0.809017;,
0.587785; -4.500000; 0.809017;,
0.809017; -4.500000; 0.587786;,
0.587785; -5.000000; 0.809017;,
0.309017; -5.000000; 0.951057;,
0.309017; -4.500000; 0.951057;,
0.587785; -4.500000; 0.809017;,
0.309017; -5.000000; 0.951057;,
0.000000; -5.000000; 1.000000;,
0.000000; -4.500000; 1.000000;,
0.309017; -4.500000; 0.951057;,
0.000000; -5.000000; 1.000000;,
-0.309017; -5.000000; 0.951057;,
-0.309017; -4.500000; 0.951057;,
0.000000; -4.500000; 1.000000;,
-0.309017; -5.000000; 0.951057;,
-0.587785; -5.000000; 0.809017;,
-0.587785; -4.500000; 0.809017;,
-0.309017; -4.500000; 0.951057;,
-0.587785; -5.000000; 0.809017;,
-0.809017; -5.000000; 0.587785;,
-0.809017; -4.500000; 0.587785;,
-0.587785; -4.500000; 0.809017;,
-0.809017; -5.000000; 0.587785;,
-0.951057; -5.000000; 0.309017;,
-0.951057; -4.500000; 0.309017;,
-0.809017; -4.500000; 0.587785;,
-0.951057; -5.000000; 0.309017;,
-1.000000; -5.000000; 0.000000;,
-1.000000; -4.500000; 0.000000;,
-0.951057; -4.500000; 0.309017;,
-1.000000; -5.000000; 0.000000;,
-0.951057; -5.000000; -0.309017;,
-0.951057; -4.500000; -0.309017;,
-1.000000; -4.500000; 0.000000;,
-0.951057; -5.000000; -0.309017;,
-0.809017; -5.000000; -0.587785;,
-0.809017; -4.500000; -0.587785;,
-0.951057; -4.500000; -0.309017;,
-0.809017; -5.000000; -0.587785;,
-0.587785; -5.000000; -0.809017;,
-0.587785; -4.500000; -0.809017;,
-0.809017; -4.500000; -0.587785;,
-0.587785; -5.000000; -0.809017;,
-0.309017; -5.000000; -0.951057;,
-0.309017; -4.500000; -0.951057;,
-0.587785; -4.500000; -0.809017;,
-0.309017; -5.000000; -0.951057;,
0.000000; -5.000000; -1.000000;,
0.000000; -4.500000; -1.000000;,
-0.309017; -4.500000; -0.951057;,
0.000000; -5.000000; -1.000000;,
0.309017; -5.000000; -0.951057;,
0.309017; -4.500000; -0.951057;,
0.000000; -4.500000; -1.000000;,
0.309017; -5.000000; -0.951057;,
0.587785; -5.000000; -0.809017;,
0.587785; -4.500000; -0.809017;,
0.309017; -4.500000; -0.951057;,
0.587785; -5.000000; -0.809017;,
0.809017; -5.000000; -0.587785;,
0.809017; -4.500000; -0.587785;,
0.587785; -4.500000; -0.809017;,
0.809017; -5.000000; -0.587785;,
0.951057; -5.000000; -0.309017;,
0.951057; -4.500000; -0.309017;,
0.809017; -4.500000; -0.587785;,
0.951057; -5.000000; -0.309017;,
1.000000; -5.000000; -0.000000;,
1.000000; -4.500000; -0.000000;,
0.951057; -4.500000; -0.309017;,
1.000000; -5.000000; -0.000000;,
0.951057; -5.000000; 0.309017;,
0.951057; -4.500000; 0.309017;,
1.000000; -4.500000; -0.000000;,
0.951057; -4.500000; 0.309017;,
0.809017; -4.500000; 0.587786;,
0.809017; -4.000000; 0.587786;,
0.951057; -4.000000; 0.309017;,
0.809017; -4.500000; 0.587786;,
0.587785; -4.500000; 0.809017;,
0.587785; -4.000000; 0.809017;,
0.809017; -4.000000; 0.587786;,
0.587785; -4.500000; 0.809017;,
0.309017; -4.500000; 0.951057;,
0.309017; -4.000000; 0.951057;,
0.587785; -4.000000; 0.809017;,
0.309017; -4.500000; 0.951057;,
0.000000; -4.500000; 1.000000;,
0.000000; -4.000000; 1.000000;,
0.309017; -4.000000; 0.951057;,
0.000000; -4.500000; 1.000000;,
-0.309017; -4.500000; 0.951057;,
-0.309017; -4.000000; 0.951057;,
0.000000; -4.000000; 1.000000;,
-0.309017; -4.500000; 0.951057;,
-0.587785; -4.500000; 0.809017;,
-0.587785; -4.000000; 0.809017;,
-0.309017; -4.000000; 0.951057;,
-0.587785; -4.500000; 0.809017;,
-0.809017; -4.500000; 0.587785;,
-0.809017; -4.000000; 0.587785;,
-0.587785; -4.000000; 0.809017;,
-0.809017; -4.500000; 0.587785;,
-0.951057; -4.500000; 0.309017;,
-0.951057; -4.000000; 0.309017;,
-0.809017; -4.000000; 0.587785;,
-0.951057; -4.500000; 0.309017;,
-1.000000; -4.500000; 0.000000;,
-1.000000; -4.000000; 0.000000;,
-0.951057; -4.000000; 0.309017;,
-1.000000; -4.500000; 0.000000;,
-0.951057; -4.500000; -0.309017;,
-0.951057; -4.000000; -0.309017;,
-1.000000; -4.000000; 0.000000;,
-0.951057; -4.500000; -0.309017;,
-0.809017; -4.500000; -0.587785;,
-0.809017; -4.000000; -0.587785;,
-0.951057; -4.000000; -0.309017;,
-0.809017; -4.500000; -0.587785;,
-0.587785; -4.500000; -0.809017;,
-0.587785; -4.000000; -0.809017;,
-0.809017; -4.000000; -0.587785;,
-0.587785; -4.500000; -0.809017;,
-0.309017; -4.500000; -0.951057;,
-0.309017; -4.000000; -0.951057;,
-0.587785; -4.000000; -0.809017;,
-0.309017; -4.500000; -0.951057;,
0.000000; -4.500000; -1.000000;,
0.000000; -4.000000; -1.000000;,
-0.309017; -4.000000; -0.951057;,
0.000000; -4.500000; -1.000000;,
0.309017; -4.500000; -0.951057;,
0.309017; -4.000000; -0.951057;,
0.000000; -4.000000; -1.000000;,
0.309017; -4.500000; -0.951057;,
0.587785; -4.500000; -0.809017;,
0.587785; -4.000000; -0.809017;,
0.309017; -4.000000; -0.951057;,
0.587785; -4.500000; -0.809017;,
0.809017; -4.500000; -0.587785;,
0.809017; -4.000000; -0.587785;,
0.587785; -4.000000; -0.809017;,
0.809017; -4.500000; -0.587785;,
0.951057; -4.500000; -0.309017;,
0.951057; -4.000000; -0.309017;,
0.809017; -4.000000; -0.587785;,
0.951057; -4.500000; -0.309017;,
1.000000; -4.500000; -0.000000;,
1.000000; -4.000000; -0.000000;,
0.951057; -4.000000; -0.309017;,
1.000000; -4.500000; -0.000000;,
0.951057; -4.500000; 0.309017;,
0.951057; -4.000000; 0.309017;,
1.000000; -4.000000; -0.000000;,
0.951057; -4.000000; 0.309017;,
0.809017; -4.000000; 0.587786;,
0.809017; -3.500000; 0.587786;,
0.951057; -3.500000; 0.309017;,
0.809017; -4.000000; 0.587786;,
0.587785; -4.000000; 0.809017;,
0.587785; -3.500000; 0.809017;,
0.809017; -3.500000; 0.587786;,
0.587785; -4.000000; 0.809017;,
0.309017; -4.000000; 0.951057;,
0.309017; -3.500000; 0.951057;,
0.587785; -3.500000; 0.809017;,
0.309017; -4.000000; 0.951057;,
0.000000; -4.000000; 1.000000;,
0.000000; -3.500000; 1.000000;,
0.309017; -3.500000; 0.951057;,
0.000000; -4.000000; 1.000000;,
-0.309017; -4.000000; 0.951057;,
-0.309017; -3.500000; 0.951057;,
0.000000; -3.500000; 1.000000;,
-0.309017; -4.000000; 0.951057;,
-0.587785; -4.000000; 0.809017;,
-0.587785; -3.500000; 0.809017;,
-0.309017; -3.500000; 0.951057;,
-0.587785; -4.000000; 0.809017;,
-0.809017; -4.000000; 0.587785;,
-0.809017; -3.500000; 0.587785;,
-0.587785; -3.500000; 0.809017;,
-0.809017; -4.000000; 0.587785;,
-0.951057; -4.000000; 0.309017;,
-0.951057; -3.500000; 0.309017;,
-0.809017; -3.500000; 0.587785;,
-0.951057; -4.000000; 0.309017;,
-1.000000; -4.000000; 0.000000;,
-1.000000; -3.500000; 0.000000;,
-0.951057; -3.500000; 0.309017;,
-1.000000; -4.000000; 0.000000;,
-0.951057; -4.000000; -0.309017;,
-0.951057; -3.500000; -0.309017;,
-1.000000; -3.500000; 0.000000;,
-0.951057; -4.000000; -0.309017;,
-0.809017; -4.000000; -0.587785;,
-0.809017; -3.500000; -0.587785;,
-0.951057; -3.500000; -0.309017;,
-0.809017; -4.000000; -0.587785;,
-0.587785; -4.000000; -0.809017;,
-0.587785; -3.500000; -0.809017;,
-0.809017; -3.500000; -0.587785;,
-0.587785; -4.000000; -0.809017;,
-0.309017; -4.000000; -0.951057;,
-0.309017; -3.500000; -0.951057;,
-0.587785; -3.500000; -0.809017;,
-0.309017; -4.000000; -0.951057;,
0.000000; -4.000000; -1.000000;,
0.000000; -3.500000; -1.000000;,
-0.309017; -3.500000; -0.951057;,
0.000000; -4.000000; -1.000000;,
0.309017; -4.000000; -0.951057;,
0.309017; -3.500000; -0.951057;,
0.000000; -3.500000; -1.000000;,
0.309017; -4.000000; -0.951057;,
0.587785; -4.000000; -0.809017;,
0.587785; -3.500000; -0.809017;,
0.309017; -3.500000; -0.951057;,
0.587785; -4.000000; -0.809017;,
0.809017; -4.000000; -0.587785;,
0.809017; -3.500000; -0.587785;,
0.587785; -3.500000; -0.809017;,
0.809017; -4.000000; -0.587785;,
0.951057; -4.000000; -0.309017;,
0.951057; -3.500000; -0.309017;,
0.809017; -3.500000; -0.587785;,
0.951057; -4.000000; -0.309017;,
1.000000; -4.000000; -0.000000;,
1.000000; -3.500000; -0.000000;,
0.951057; -3.500000; -0.309017;,
1.000000; -4.000000; -0.000000;,
0.951057; -4.000000; 0.309017;,
0.951057; -3.500000; 0.309017;,
1.000000; -3.500000; -0.000000;,
0.951057; -3.500000; 0.309017;,
0.809017; -3.500000; 0.587786;,
0.809017; -3.000000; 0.587786;,
0.951057; -3.000000; 0.309017;,
0.809017; -3.500000; 0.587786;,
0.587785; -3.500000; 0.809017;,
0.587785; -3.000000; 0.809017;,
0.809017; -3.000000; 0.587786;,
0.587785; -3.500000; 0.809017;,
0.309017; -3.500000; 0.951057;,
0.309017; -3.000000; 0.951057;,
0.587785; -3.000000; 0.809017;,
0.309017; -3.500000; 0.951057;,
0.000000; -3.500000; 1.000000;,
0.000000; -3.000000; 1.000000;,
0.309017; -3.000000; 0.951057;,
0.000000; -3.500000; 1.000000;,
-0.309017; -3.500000; 0.951057;,
-0.309017; -3.000000; 0.951057;,
0.000000; -3.000000; 1.000000;,
-0.309017; -3.500000; 0.951057;,
-0.587785; -3.500000; 0.809017;,
-0.587785; -3.000000; 0.809017;,
-0.309017; -3.000000; 0.951057;,
-0.587785; -3.500000; 0.809017;,
-0.809017; -3.500000; 0.587785;,
-0.809017; -3.000000; 0.587785;,
-0.587785; -3.000000; 0.809017;,
-0.809017; -3.500000; 0.587785;,
-0.951057; -3.500000; 0.309017;,
-0.951057; -3.000000; 0.309017;,
-0.809017; -3.000000; 0.587785;,
-0.951057; -3.500000; 0.309017;,
-1.000000; -3.500000; 0.000000;,
-1.000000; -3.000000; 0.000000;,
-0.951057; -3.000000; 0.309017;,
-1.000000; -3.500000; 0.000000;,
-0.951057; -3.500000; -0.309017;,
-0.951057; -3.000000; -0.309017;,
-1.000000; -3.000000; 0.000000;,
-0.951057; -3.500000; -0.309017;,
-0.809017; -3.500000; -0.587785;,
-0.809017; -3.000000; -0.587785;,
-0.951057; -3.000000; -0.309017;,
-0.809017; -3.500000; -0.587785;,
-0.587785; -3.500000; -0.809017;,
-0.587785; -3.000000; -0.809017;,
-0.809017; -3.000000; -0.587785;,
-0.587785; -3.500000; -0.809017;,
-0.309017; -3.500000; -0.951057;,
-0.309017; -3.000000; -0.951057;,
-0.587785; -3.000000; -0.809017;,
-0.309017; -3.500000; -0.951057;,
0.000000; -3.500000; -1.000000;,
0.000000; -3.000000; -1.000000;,
-0.309017; -3.000000; -0.951057;,
0.000000; -3.500000; -1.000000;,
0.309017; -3.500000; -0.951057;,
0.309017; -3.000000; -0.951057;,
0.000000; -3.000000; -1.000000;,
0.309017; -3.500000; -0.951057;,
0.587785; -3.500000; -0.809017;,
0.587785; -3.000000; -0.809017;,
0.309017; -3.000000; -0.951057;,
0.587785; -3.500000; -0.809017;,
0.809017; -3.500000; -0.587785;,
0.809017; -3.000000; -0.587785;,
0.587785; -3.000000; -0.809017;,
0.809017; -3.500000; -0.587785;,
0.951057; -3.500000; -0.309017;,
0.951057; -3.000000; -0.309017;,
0.809017; -3.000000; -0.587785;,
0.951057; -3.500000; -0.309017;,
1.000000; -3.500000; -0.000000;,
1.000000; -3.000000; -0.000000;,
0.951057; -3.000000; -0.309017;,
1.000000; -3.500000; -0.000000;,
0.951057; -3.500000; 0.309017;,
0.951057; -3.000000; 0.309017;,
1.000000; -3.000000; -0.000000;,
0.951057; -3.000000; 0.309017;,
0.809017; -3.000000; 0.587786;,
0.809017; -2.500000; 0.587786;,
0.951057; -2.500000; 0.309017;,
0.809017; -3.000000; 0.587786;,
0.587785; -3.000000; 0.809017;,
0.587785; -2.500000; 0.809017;,
0.809017; -2.500000; 0.587786;,
0.587785; -3.000000; 0.809017;,
0.309017; -3.000000; 0.951057;,
0.309017; -2.500000; 0.951057;,
0.587785; -2.500000; 0.809017;,
0.309017; -3.000000; 0.951057;,
0.000000; -3.000000; 1.000000;,
0.000000; -2.500000; 1.000000;,
0.309017; -2.500000; 0.951057;,
0.000000; -3.000000; 1.000000;,
-0.309017; -3.000000; 0.951057;,
-0.309017; -2.500000; 0.951057;,
0.000000; -2.500000; 1.000000;,
-0.309017; -3.000000; 0.951057;,
-0.587785; -3.000000; 0.809017;,
-0.587785; -2.500000; 0.809017;,
-0.309017; -2.500000; 0.951057;,
-0.587785; -3.000000; 0.809017;,
-0.809017; -3.000000; 0.587785;,
-0.809017; -2.500000; 0.587785;,
-0.587785; -2.500000; 0.809017;,
-0.809017; -3.000000; 0.587785;,
-0.951057; -3.000000; 0.309017;,
-0.951057; -2.500000; 0.309017;,
-0.809017; -2.500000; 0.587785;,
-0.951057; -3.000000; 0.309017;,
-1.000000; -3.000000; 0.000000;,
-1.000000; -2.500000; 0.000000;,
-0.951057; -2.500000; 0.309017;,
-1.000000; -3.000000; 0.000000;,
-0.951057; -3.000000; -0.309017;,
-0.951057; -2.500000; -0.309017;,
-1.000000; -2.500000; 0.000000;,
-0.951057; -3.000000; -0.309017;,
-0.809017; -3.000000; -0.587785;,
-0.809017; -2.500000; -0.587785;,
-0.951057; -2.500000; -0.309017;,
-0.809017; -3.000000; -0.587785;,
-0.587785; -3.000000; -0.809017;,
-0.587785; -2.500000; -0.809017;,
-0.809017; -2.500000; -0.587785;,
-0.587785; -3.000000; -0.809017;,
-0.309017; -3.000000; -0.951057;,
-0.309017; -2.500000; -0.951057;,
-0.587785; -2.500000; -0.809017;,
-0.309017; -3.000000; -0.951057;,
0.000000; -3.000000; -1.000000;,
0.000000; -2.500000; -1.000000;,
-0.309017; -2.500000; -0.951057;,
0.000000; -3.000000; -1.000000;,
0.309017; -3.000000; -0.951057;,
0.309017; -2.500000; -0.951057;,
0.000000; -2.500000; -1.000000;,
0.309017; -3.000000; -0.951057;,
0.587785; -3.000000; -0.809017;,
0.587785; -2.500000; -0.809017;,
0.309017; -2.500000; -0.951057;,
0.587785; -3.000000; -0.809017;,
0.809017; -3.000000; -0.587785;,
0.809017; -2.500000; -0.587785;,
0.587785; -2.500000; -0.809017;,
0.809017; -3.000000; -0.587785;,
0.951057; -3.000000; -0.309017;,
0.951057; -2.500000; -0.309017;,
0.809017; -2.500000; -0.587785;,
0.951057; -3.000000; -0.309017;,
1.000000; -3.000000; -0.000000;,
1.000000; -2.500000; -0.000000;,
0.951057; -2.500000; -0.309017;,
1.000000; -3.000000; -0.000000;,
0.951057; -3.000000; 0.309017;,
0.951057; -2.500000; 0.309017;,
1.000000; -2.500000; -0.000000;,
0.951057; -2.500000; 0.309017;,
0.809017; -2.500000; 0.587786;,
0.809017; -2.000000; 0.587786;,
0.951057; -2.000000; 0.309017;,
0.809017; -2.500000; 0.587786;,
0.587785; -2.500000; 0.809017;,
0.587785; -2.000000; 0.809017;,
0.809017; -2.000000; 0.587786;,
0.587785; -2.500000; 0.809017;,
0.309017; -2.500000; 0.951057;,
0.309017; -2.000000; 0.951057;,
0.587785; -2.000000; 0.809017;,
0.309017; -2.500000; 0.951057;,
0.000000; -2.500000; 1.000000;,
0.000000; -2.000000; 1.000000;,
0.309017; -2.000000; 0.951057;,
0.000000; -2.500000; 1.000000;,
-0.309017; -2.500000; 0.951057;,
-0.309017; -2.000000; 0.951057;,
0.000000; -2.000000; 1.000000;,
-0.309017; -2.500000; 0.951057;,
-0.587785; -2.500000; 0.809017;,
-0.587785; -2.000000; 0.809017;,
-0.309017; -2.000000; 0.951057;,
-0.587785; -2.500000; 0.809017;,
-0.809017; -2.500000; 0.587785;,
-0.809017; -2.000000; 0.587785;,
-0.587785; -2.000000; 0.809017;,
-0.809017; -2.500000; 0.587785;,
-0.951057; -2.500000; 0.309017;,
-0.951057; -2.000000; 0.309017;,
-0.809017; -2.000000; 0.587785;,
-0.951057; -2.500000; 0.309017;,
-1.000000; -2.500000; 0.000000;,
-1.000000; -2.000000; 0.000000;,
-0.951057; -2.000000; 0.309017;,
-1.000000; -2.500000; 0.000000;,
-0.951057; -2.500000; -0.309017;,
-0.951057; -2.000000; -0.309017;,
-1.000000; -2.000000; 0.000000;,
-0.951057; -2.500000; -0.309017;,
-0.809017; -2.500000; -0.587785;,
-0.809017; -2.000000; -0.587785;,
-0.951057; -2.000000; -0.309017;,
-0.809017; -2.500000; -0.587785;,
-0.587785; -2.500000; -0.809017;,
-0.587785; -2.000000; -0.809017;,
-0.809017; -2.000000; -0.587785;,
-0.587785; -2.500000; -0.809017;,
-0.309017; -2.500000; -0.951057;,
-0.309017; -2.000000; -0.951057;,
-0.587785; -2.000000; -0.809017;,
-0.309017; -2.500000; -0.951057;,
0.000000; -2.500000; -1.000000;,
0.000000; -2.000000; -1.000000;,
-0.309017; -2.000000; -0.951057;,
0.000000; -2.500000; -1.000000;,
0.309017; -2.500000; -0.951057;,
0.309017; -2.000000; -0.951057;,
0.000000; -2.000000; -1.000000;,
0.309017; -2.500000; -0.951057;,
0.587785; -2.500000; -0.809017;,
0.587785; -2.000000; -0.809017;,
0.309017; -2.000000; -0.951057;,
0.587785; -2.500000; -0.809017;,
0.809017; -2.500000; -0.587785;,
0.809017; -2.000000; -0.587785;,
0.587785; -2.000000; -0.809017;,
0.809017; -2.500000; -0.587785;,
0.951057; -2.500000; -0.309017;,
0.951057; -2.000000; -0.309017;,
0.809017; -2.000000; -0.587785;,
0.951057; -2.500000; -0.309017;,
1.000000; -2.500000; -0.000000;,
1.000000; -2.000000; -0.000000;,
0.951057; -2.000000; -0.309017;,
1.000000; -2.500000; -0.000000;,
0.951057; -2.500000; 0.309017;,
0.951057; -2.000000; 0.309017;,
1.000000; -2.000000; -0.000000;,
0.951057; -2.000000; 0.309017;,
0.809017; -2.000000; 0.587786;,
0.809017; -1.500000; 0.587786;,
0.951057; -1.500000; 0.309017;,
0.809017; -2.000000; 0.587786;,
0.587785; -2.000000; 0.809017;,
0.587785; -1.500000; 0.809017;,
0.809017; -1.500000; 0.587786;,
0.587785; -2.000000; 0.809017;,
0.309017; -2.000000; 0.951057;,
0.309017; -1.500000; 0.951057;,
0.587785; -1.500000; 0.809017;,
0.309017; -2.000000; 0.951057;,
0.000000; -2.000000; 1.000000;,
0.000000; -1.500000; 1.000000;,
0.309017; -1.500000; 0.951057;,
0.000000; -2.000000; 1.000000;,
-0.309017; -2.000000; 0.951057;,
-0.309017; -1.500000; 0.951057;,
0.000000; -1.500000; 1.000000;,
-0.309017; -2.000000; 0.951057;,
-0.587785; -2.000000; 0.809017;,
-0.587785; -1.500000; 0.809017;,
-0.309017; -1.500000; 0.951057;,
-0.587785; -2.000000; 0.809017;,
-0.809017; -2.000000; 0.587785;,
-0.809017; -1.500000; 0.587785;,
-0.587785; -1.500000; 0.809017;,
-0.809017; -2.000000; 0.587785;,
-0.951057; -2.000000; 0.309017;,
-0.951057; -1.500000; 0.309017;,
-0.809017; -1.500000; 0.587785;,
-0.951057; -2.000000; 0.309017;,
-1.000000; -2.000000; 0.000000;,
-1.000000; -1.500000; 0.000000;,
-0.951057; -1.500000; 0.309017;,
-1.000000; -2.000000; 0.000000;,
-0.951057; -2.000000; -0.309017;,
-0.951057; -1.500000; -0.309017;,
-1.000000; -1.500000; 0.000000;,
-0.951057; -2.000000; -0.309017;,
-0.809017; -2.000000; -0.587785;,
-0.809017; -1.500000; -0.587785;,
-0.951057; -1.500000; -0.309017;,
-0.809017; -2.000000; -0.587785;,
-0.587785; -2.000000; -0.809017;,
-0.587785; -1.500000; -0.809017;,
-0.809017; -1.500000; -0.587785;,
-0.587785; -2.000000; -0.809017;,
-0.309017; -2.000000; -0.951057;,
-0.309017; -1.500000; -0.951057;,
-0.587785; -1.500000; -0.809017;,
-0.309017; -2.000000; -0.951057;,
0.000000; -2.000000; -1.000000;,
0.000000; -1.500000; -1.000000;,
-0.309017; -1.500000; -0.951057;,
0.000000; -2.000000; -1.000000;,
0.309017; -2.000000; -0.951057;,
0.309017; -1.500000; -0.951057;,
0.000000; -1.500000; -1.000000;,
0.309017; -2.000000; -0.951057;,
0.587785; -2.000000; -0.809017;,
0.587785; -1.500000; -0.809017;,
0.309017; -1.500000; -0.951057;,
0.587785; -2.000000; -0.809017;,
0.809017; -2.000000; -0.587785;,
0.809017; -1.500000; -0.587785;,
0.587785; -1.500000; -0.809017;,
0.809017; -2.000000; -0.587785;,
0.951057; -2.000000; -0.309017;,
0.951057; -1.500000; -0.309017;,
0.809017; -1.500000; -0.587785;,
0.951057; -2.000000; -0.309017;,
1.000000; -2.000000; -0.000000;,
1.000000; -1.500000; -0.000000;,
0.951057; -1.500000; -0.309017;,
1.000000; -2.000000; -0.000000;,
0.951057; -2.000000; 0.309017;,
0.951057; -1.500000; 0.309017;,
1.000000; -1.500000; -0.000000;,
0.951057; -1.500000; 0.309017;,
0.809017; -1.500000; 0.587786;,
0.809017; -1.000000; 0.587786;,
0.951057; -1.000000; 0.309017;,
0.809017; -1.500000; 0.587786;,
0.587785; -1.500000; 0.809017;,
0.587785; -1.000000; 0.809017;,
0.809017; -1.000000; 0.587786;,
0.587785; -1.500000; 0.809017;,
0.309017; -1.500000; 0.951057;,
0.309017; -1.000000; 0.951057;,
0.587785; -1.000000; 0.809017;,
0.309017; -1.500000; 0.951057;,
0.000000; -1.500000; 1.000000;,
0.000000; -1.000000; 1.000000;,
0.309017; -1.000000; 0.951057;,
0.000000; -1.500000; 1.000000;,
-0.309017; -1.500000; 0.951057;,
-0.309017; -1.000000; 0.951057;,
0.000000; -1.000000; 1.000000;,
-0.309017; -1.500000; 0.951057;,
-0.587785; -1.500000; 0.809017;,
-0.587785; -1.000000; 0.809017;,
-0.309017; -1.000000; 0.951057;,
-0.587785; -1.500000; 0.809017;,
-0.809017; -1.500000; 0.587785;,
-0.809017; -1.000000; 0.587785;,
-0.587785; -1.000000; 0.809017;,
-0.809017; -1.500000; 0.587785;,
-0.951057; -1.500000; 0.309017;,
-0.951057; -1.000000; 0.309017;,
-0.809017; -1.000000; 0.587785;,
-0.951057; -1.500000; 0.309017;,
-1.000000; -1.500000; 0.000000;,
-1.000000; -1.000000; 0.000000;,
-0.951057; -1.000000; 0.309017;,
-1.000000; -1.500000; 0.000000;,
-0.951057; -1.500000; -0.309017;,
-0.951057; -1.000000; -0.309017;,
-1.000000; -1.000000; 0.000000;,
-0.951057; -1.500000; -0.309017;,
-0.809017; -1.500000; -0.587785;,
-0.809017; -1.000000; -0.587785;,
-0.951057; -1.000000; -0.309017;,
-0.809017; -1.500000; -0.587785;,
-0.587785; -1.500000; -0.809017;,
-0.587785; -1.000000; -0.809017;,
-0.809017; -1.000000; -0.587785;,
-0.587785; -1.500000; -0.809017;,
-0.309017; -1.500000; -0.951057;,
-0.309017; -1.000000; -0.951057;,
-0.587785; -1.000000; -0.809017;,
-0.309017; -1.500000; -0.951057;,
0.000000; -1.500000; -1.000000;,
0.000000; -1.000000; -1.000000;,
-0.309017; -1.000000; -0.951057;,
0.000000; -1.500000; -1.000000;,
0.309017; -1.500000; -0.951057;,
0.309017; -1.000000; -0.951057;,
0.000000; -1.000000; -1.000000;,
0.309017; -1.500000; -0.951057;,
0.587785; -1.500000; -0.809017;,
0.587785; -1.000000; -0.809017;,
0.309017; -1.000000; -0.951057;,
0.587785; -1.500000; -0.809017;,
0.809017; -1.500000; -0.587785;,
0.809017; -1.000000; -0.587785;,
0.587785; -1.000000; -0.809017;,
0.809017; -1.500000; -0.587785;,
0.951057; -1.500000; -0.309017;,
0.951057; -1.000000; -0.309017;,
0.809017; -1.000000; -0.587785;,
0.951057; -1.500000; -0.309017;,
1.000000; -1.500000; -0.000000;,
1.000000; -1.000000; -0.000000;,
0.951057; -1.000000; -0.309017;,
1.000000; -1.500000; -0.000000;,
0.951057; -1.500000; 0.309017;,
0.951057; -1.000000; 0.309017;,
1.000000; -1.000000; -0.000000;,
0.951057; -1.000000; 0.309017;,
0.809017; -1.000000; 0.587786;,
0.809017; -0.500000; 0.587786;,
0.951057; -0.500000; 0.309017;,
0.809017; -1.000000; 0.587786;,
0.587785; -1.000000; 0.809017;,
0.587785; -0.500000; 0.809017;,
0.809017; -0.500000; 0.587786;,
0.587785; -1.000000; 0.809017;,
0.309017; -1.000000; 0.951057;,
0.309017; -0.500000; 0.951057;,
0.587785; -0.500000; 0.809017;,
0.309017; -1.000000; 0.951057;,
0.000000; -1.000000; 1.000000;,
0.000000; -0.500000; 1.000000;,
0.309017; -0.500000; 0.951057;,
0.000000; -1.000000; 1.000000;,
-0.309017; -1.000000; 0.951057;,
-0.309017; -0.500000; 0.951057;,
0.000000; -0.500000; 1.000000;,
-0.309017; -1.000000; 0.951057;,
-0.587785; -1.000000; 0.809017;,
-0.587785; -0.500000; 0.809017;,
-0.309017; -0.500000; 0.951057;,
-0.587785; -1.000000; 0.809017;,
-0.809017; -1.000000; 0.587785;,
-0.809017; -0.500000; 0.587785;,
-0.587785; -0.500000; 0.809017;,
-0.809017; -1.000000; 0.587785;,
-0.951057; -1.000000; 0.309017;,
-0.951057; -0.500000; 0.309017;,
-0.809017; -0.500000; 0.587785;,
-0.951057; -1.000000; 0.309017;,
-1.000000; -1.000000; 0.000000;,
-1.000000; -0.500000; 0.000000;,
-0.951057; -0.500000; 0.309017;,
-1.000000; -1.000000; 0.000000;,
-0.951057; -1.000000; -0.309017;,
-0.951057; -0.500000; -0.309017;,
-1.000000; -0.500000; 0.000000;,
-0.951057; -1.000000; -0.309017;,
-0.809017; -1.000000; -0.587785;,
-0.809017; -0.500000; -0.587785;,
-0.951057; -0.500000; -0.309017;,
-0.809017; -1.000000; -0.587785;,
-0.587785; -1.000000; -0.809017;,
-0.587785; -0.500000; -0.809017;,
-0.809017; -0.500000; -0.587785;,
-0.587785; -1.000000; -0.809017;,
-0.309017; -1.000000; -0.951057;,
-0.309017; -0.500000; -0.951057;,
-0.587785; -0.500000; -0.809017;,
-0.309017; -1.000000; -0.951057;,
0.000000; -1.000000; -1.000000;,
0.000000; -0.500000; -1.000000;,
-0.309017; -0.500000; -0.951057;,
0.000000; -1.000000; -1.000000;,
0.309017; -1.000000; -0.951057;,
0.309017; -0.500000; -0.951057;,
0.000000; -0.500000; -1.000000;,
0.309017; -1.000000; -0.951057;,
0.587785; -1.000000; -0.809017;,
0.587785; -0.500000; -0.809017;,
0.309017; -0.500000; -0.951057;,
0.587785; -1.000000; -0.809017;,
0.809017; -1.000000; -0.587785;,
0.809017; -0.500000; -0.587785;,
0.587785; -0.500000; -0.809017;,
0.809017; -1.000000; -0.587785;,
0.951057; -1.000000; -0.309017;,
0.951057; -0.500000; -0.309017;,
0.809017; -0.500000; -0.587785;,
0.951057; -1.000000; -0.309017;,
1.000000; -1.000000; -0.000000;,
1.000000; -0.500000; -0.000000;,
0.951057; -0.500000; -0.309017;,
1.000000; -1.000000; -0.000000;,
0.951057; -1.000000; 0.309017;,
0.951057; -0.500000; 0.309017;,
1.000000; -0.500000; -0.000000;,
0.951057; -0.500000; 0.309017;,
0.809017; -0.500000; 0.587786;,
0.809017; 0.000000; 0.587786;,
0.951057; 0.000000; 0.309017;,
0.809017; -0.500000; 0.587786;,
0.587785; -0.500000; 0.809017;,
0.587785; 0.000000; 0.809017;,
0.809017; 0.000000; 0.587786;,
0.587785; -0.500000; 0.809017;,
0.309017; -0.500000; 0.951057;,
0.309017; 0.000000; 0.951057;,
0.587785; 0.000000; 0.809017;,
0.309017; -0.500000; 0.951057;,
0.000000; -0.500000; 1.000000;,
0.000000; 0.000000; 1.000000;,
0.309017; 0.000000; 0.951057;,
0.000000; -0.500000; 1.000000;,
-0.309017; -0.500000; 0.951057;,
-0.309017; 0.000000; 0.951057;,
0.000000; 0.000000; 1.000000;,
-0.309017; -0.500000; 0.951057;,
-0.587785; -0.500000; 0.809017;,
-0.587785; 0.000000; 0.809017;,
-0.309017; 0.000000; 0.951057;,
-0.587785; -0.500000; 0.809017;,
-0.809017; -0.500000; 0.587785;,
-0.809017; 0.000000; 0.587785;,
-0.587785; 0.000000; 0.809017;,
-0.809017; -0.500000; 0.587785;,
-0.951057; -0.500000; 0.309017;,
-0.951057; 0.000000; 0.309017;,
-0.809017; 0.000000; 0.587785;,
-0.951057; -0.500000; 0.309017;,
-1.000000; -0.500000; 0.000000;,
-1.000000; 0.000000; 0.000000;,
-0.951057; 0.000000; 0.309017;,
-1.000000; -0.500000; 0.000000;,
-0.951057; -0.500000; -0.309017;,
-0.951057; 0.000000; -0.309017;,
-1.000000; 0.000000; 0.000000;,
-0.951057; -0.500000; -0.309017;,
-0.809017; -0.500000; -0.587785;,
-0.809017; 0.000000; -0.587785;,
-0.951057; 0.000000; -0.309017;,
-0.809017; -0.500000; -0.587785;,
-0.587785; -0.500000; -0.809017;,
-0.587785; 0.000000; -0.809017;,
-0.809017; 0.000000; -0.587785;,
-0.587785; -0.500000; -0.809017;,
-0.309017; -0.500000; -0.951057;,
-0.309017; 0.000000; -0.951057;,
-0.587785; 0.000000; -0.809017;,
-0.309017; -0.500000; -0.951057;,
0.000000; -0.500000; -1.000000;,
0.000000; 0.000000; -1.000000;,
-0.309017; 0.000000; -0.951057;,
0.000000; -0.500000; -1.000000;,
0.309017; -0.500000; -0.951057;,
0.309017; 0.000000; -0.951057;,
0.000000; 0.000000; -1.000000;,
0.309017; -0.500000; -0.951057;,
0.587785; -0.500000; -0.809017;,
0.587785; 0.000000; -0.809017;,
0.309017; 0.000000; -0.951057;,
0.587785; -0.500000; -0.809017;,
0.809017; -0.500000; -0.587785;,
0.809017; 0.000000; -0.587785;,
0.587785; 0.000000; -0.809017;,
0.809017; -0.500000; -0.587785;,
0.951057; -0.500000; -0.309017;,
0.951057; 0.000000; -0.309017;,
0.809017; 0.000000; -0.587785;,
0.951057; -0.500000; -0.309017;,
1.000000; -0.500000; -0.000000;,
1.000000; 0.000000; -0.000000;,
0.951057; 0.000000; -0.309017;,
1.000000; -0.500000; -0.000000;,
0.951057; -0.500000; 0.309017;,
0.951057; 0.000000; 0.309017;,
1.000000; 0.000000; -0.000000;,
0.951057; 0.000000; 0.309017;,
0.809017; 0.000000; 0.587786;,
0.809017; 0.500000; 0.587786;,
0.951057; 0.500000; 0.309017;,
0.809017; 0.000000; 0.587786;,
0.587785; 0.000000; 0.809017;,
0.587785; 0.500000; 0.809017;,
0.809017; 0.500000; 0.587786;,
0.587785; 0.000000; 0.809017;,
0.309017; 0.000000; 0.951057;,
0.309017; 0.500000; 0.951057;,
0.587785; 0.500000; 0.809017;,
0.309017; 0.000000; 0.951057;,
0.000000; 0.000000; 1.000000;,
0.000000; 0.500000; 1.000000;,
0.309017; 0.500000; 0.951057;,
0.000000; 0.000000; 1.000000;,
-0.309017; 0.000000; 0.951057;,
-0.309017; 0.500000; 0.951057;,
0.000000; 0.500000; 1.000000;,
-0.309017; 0.000000; 0.951057;,
-0.587785; 0.000000; 0.809017;,
-0.587785; 0.500000; 0.809017;,
-0.309017; 0.500000; 0.951057;,
-0.587785; 0.000000; 0.809017;,
-0.809017; 0.000000; 0.587785;,
-0.809017; 0.500000; 0.587785;,
-0.587785; 0.500000; 0.809017;,
-0.809017; 0.000000; 0.587785;,
-0.951057; 0.000000; 0.309017;,
-0.951057; 0.500000; 0.309017;,
-0.809017; 0.500000; 0.587785;,
-0.951057; 0.000000; 0.309017;,
-1.000000; 0.000000; 0.000000;,
-1.000000; 0.500000; 0.000000;,
-0.951057; 0.500000; 0.309017;,
-1.000000; 0.000000; 0.000000;,
-0.951057; 0.000000; -0.309017;,
-0.951057; 0.500000; -0.309017;,
-1.000000; 0.500000; 0.000000;,
-0.951057; 0.000000; -0.309017;,
-0.809017; 0.000000; -0.587785;,
-0.809017; 0.500000; -0.587785;,
-0.951057; 0.500000; -0.309017;,
-0.809017; 0.000000; -0.587785;,
-0.587785; 0.000000; -0.809017;,
-0.587785; 0.500000; -0.809017;,
-0.809017; 0.500000; -0.587785;,
-0.587785; 0.000000; -0.809017;,
-0.309017; 0.000000; -0.951057;,
-0.309017; 0.500000; -0.951057;,
-0.587785; 0.500000; -0.809017;,
-0.309017; 0.000000; -0.951057;,
0.000000; 0.000000; -1.000000;,
0.000000; 0.500000; -1.000000;,
-0.309017; 0.500000; -0.951057;,
0.000000; 0.000000; -1.000000;,
0.309017; 0.000000; -0.951057;,
0.309017; 0.500000; -0.951057;,
0.000000; 0.500000; -1.000000;,
0.309017; 0.000000; -0.951057;,
0.587785; 0.000000; -0.809017;,
0.587785; 0.500000; -0.809017;,
0.309017; 0.500000; -0.951057;,
0.587785; 0.000000; -0.809017;,
0.809017; 0.000000; -0.587785;,
0.809017; 0.500000; -0.587785;,
0.587785; 0.500000; -0.809017;,
0.809017; 0.000000; -0.587785;,
0.951057; 0.000000; -0.309017;,
0.951057; 0.500000; -0.309017;,
0.809017; 0.500000; -0.587785;,
0.951057; 0.000000; -0.309017;,
1.000000; 0.000000; -0.000000;,
1.000000; 0.500000; -0.000000;,
0.951057; 0.500000; -0.309017;,
1.000000; 0.000000; -0.000000;,
0.951057; 0.000000; 0.309017;,
0.951057; 0.500000; 0.309017;,
1.000000; 0.500000; -0.000000;,
0.951057; 0.500000; 0.309017;,
0.809017; 0.500000; 0.587786;,
0.809017; 1.000000; 0.587786;,
0.951057; 1.000000; 0.309017;,
0.809017; 0.500000; 0.587786;,
0.587785; 0.500000; 0.809017;,
0.587785; 1.000000; 0.809017;,
0.809017; 1.000000; 0.587786;,
0.587785; 0.500000; 0.809017;,
0.309017; 0.500000; 0.951057;,
0.309017; 1.000000; 0.951057;,
0.587785; 1.000000; 0.809017;,
0.309017; 0.500000; 0.951057;,
0.000000; 0.500000; 1.000000;,
0.000000; 1.000000; 1.000000;,
0.309017; 1.000000; 0.951057;,
0.000000; 0.500000; 1.000000;,
-0.309017; 0.500000; 0.951057;,
-0.309017; 1.000000; 0.951057;,
0.000000; 1.000000; 1.000000;,
-0.309017; 0.500000; 0.951057;,
-0.587785; 0.500000; 0.809017;,
-0.587785; 1.000000; 0.809017;,
-0.309017; 1.000000; 0.951057;,
-0.587785; 0.500000; 0.809017;,
-0.809017; 0.500000; 0.587785;,
-0.809017; 1.000000; 0.587785;,
-0.587785; 1.000000; 0.809017;,
-0.809017; 0.500000; 0.587785;,
-0.951057; 0.500000; 0.309017;,
-0.951057; 1.000000; 0.309017;,
-0.809017; 1.000000; 0.587785;,
-0.951057; 0.500000; 0.309017;,
-1.000000; 0.500000; 0.000000;,
-1.000000; 1.000000; 0.000000;,
-0.951057; 1.000000; 0.309017;,
-1.000000; 0.500000; 0.000000;,
-0.951057; 0.500000; -0.309017;,
-0.951057; 1.000000; -0.309017;,
-1.000000; 1.000000; 0.000000;,
-0.951057; 0.500000; -0.309017;,
-0.809017; 0.500000; -0.587785;,
-0.809017; 1.000000; -0.587785;,
-0.951057; 1.000000; -0.309017;,
-0.809017; 0.500000; -0.587785;,
-0.587785; 0.500000; -0.809017;,
-0.587785; 1.000000; -0.809017;,
-0.809017; 1.000000; -0.587785;,
-0.587785; 0.500000; -0.809017;,
-0.309017; 0.500000; -0.951057;,
-0.309017; 1.000000; -0.951057;,
-0.587785; 1.000000; -0.809017;,
-0.309017; 0.500000; -0.951057;,
0.000000; 0.500000; -1.000000;,
0.000000; 1.000000; -1.000000;,
-0.309017; 1.000000; -0.951057;,
0.000000; 0.500000; -1.000000;,
0.309017; 0.500000; -0.951057;,
0.309017; 1.000000; -0.951057;,
0.000000; 1.000000; -1.000000;,
0.309017; 0.500000; -0.951057;,
0.587785; 0.500000; -0.809017;,
0.587785; 1.000000; -0.809017;,
0.309017; 1.000000; -0.951057;,
0.587785; 0.500000; -0.809017;,
0.809017; 0.500000; -0.587785;,
0.809017; 1.000000; -0.587785;,
0.587785; 1.000000; -0.809017;,
0.809017; 0.500000; -0.587785;,
0.951057; 0.500000; -0.309017;,
0.951057; 1.000000; -0.309017;,
0.809017; 1.000000; -0.587785;,
0.951057; 0.500000; -0.309017;,
1.000000; 0.500000; -0.000000;,
1.000000; 1.000000; -0.000000;,
0.951057; 1.000000; -0.309017;,
1.000000; 0.500000; -0.000000;,
0.951057; 0.500000; 0.309017;,
0.951057; 1.000000; 0.309017;,
1.000000; 1.000000; -0.000000;,
0.951057; 1.000000; 0.309017;,
0.809017; 1.000000; 0.587786;,
0.809017; 1.500000; 0.587786;,
0.951057; 1.500000; 0.309017;,
0.809017; 1.000000; 0.587786;,
0.587785; 1.000000; 0.809017;,
0.587785; 1.500000; 0.809017;,
0.809017; 1.500000; 0.587786;,
0.587785; 1.000000; 0.809017;,
0.309017; 1.000000; 0.951057;,
0.309017; 1.500000; 0.951057;,
0.587785; 1.500000; 0.809017;,
0.309017; 1.000000; 0.951057;,
0.000000; 1.000000; 1.000000;,
0.000000; 1.500000; 1.000000;,
0.309017; 1.500000; 0.951057;,
0.000000; 1.000000; 1.000000;,
-0.309017; 1.000000; 0.951057;,
-0.309017; 1.500000; 0.951057;,
0.000000; 1.500000; 1.000000;,
-0.309017; 1.000000; 0.951057;,
-0.587785; 1.000000; 0.809017;,
-0.587785; 1.500000; 0.809017;,
-0.309017; 1.500000; 0.951057;,
-0.587785; 1.000000; 0.809017;,
-0.809017; 1.000000; 0.587785;,
-0.809017; 1.500000; 0.587785;,
-0.587785; 1.500000; 0.809017;,
-0.809017; 1.000000; 0.587785;,
-0.951057; 1.000000; 0.309017;,
-0.951057; 1.500000; 0.309017;,
-0.809017; 1.500000; 0.587785;,
-0.951057; 1.000000; 0.309017;,
-1.000000; 1.000000; 0.000000;,
-1.000000; 1.500000; 0.000000;,
-0.951057; 1.500000; 0.309017;,
-1.000000; 1.000000; 0.000000;,
-0.951057; 1.000000; -0.309017;,
-0.951057; 1.500000; -0.309017;,
-1.000000; 1.500000; 0.000000;,
-0.951057; 1.000000; -0.309017;,
-0.809017; 1.000000; -0.587785;,
-0.809017; 1.500000; -0.587785;,
-0.951057; 1.500000; -0.309017;,
-0.809017; 1.000000; -0.587785;,
-0.587785; 1.000000; -0.809017;,
-0.587785; 1.500000; -0.809017;,
-0.809017; 1.500000; -0.587785;,
-0.587785; 1.000000; -0.809017;,
-0.309017; 1.000000; -0.951057;,
-0.309017; 1.500000; -0.951057;,
-0.587785; 1.500000; -0.809017;,
-0.309017; 1.000000; -0.951057;,
0.000000; 1.000000; -1.000000;,
0.000000; 1.500000; -1.000000;,
-0.309017; 1.500000; -0.951057;,
0.000000; 1.000000; -1.000000;,
0.309017; 1.000000; -0.951057;,
0.309017; 1.500000; -0.951057;,
0.000000; 1.500000; -1.000000;,
0.309017; 1.000000; -0.951057;,
0.587785; 1.000000; -0.809017;,
0.587785; 1.500000; -0.809017;,
0.309017; 1.500000; -0.951057;,
0.587785; 1.000000; -0.809017;,
0.809017; 1.000000; -0.587785;,
0.809017; 1.500000; -0.587785;,
0.587785; 1.500000; -0.809017;,
0.809017; 1.000000; -0.587785;,
0.951057; 1.000000; -0.309017;,
0.951057; 1.500000; -0.309017;,
0.809017; 1.500000; -0.587785;,
0.951057; 1.000000; -0.309017;,
1.000000; 1.000000; -0.000000;,
1.000000; 1.500000; -0.000000;,
0.951057; 1.500000; -0.309017;,
1.000000; 1.000000; -0.000000;,
0.951057; 1.000000; 0.309017;,
0.951057; 1.500000; 0.309017;,
1.000000; 1.500000; -0.000000;,
0.951057; 1.500000; 0.309017;,
0.809017; 1.500000; 0.587786;,
0.809017; 2.000000; 0.587786;,
0.951057; 2.000000; 0.309017;,
0.809017; 1.500000; 0.587786;,
0.587785; 1.500000; 0.809017;,
0.587785; 2.000000; 0.809017;,
0.809017; 2.000000; 0.587786;,
0.587785; 1.500000; 0.809017;,
0.309017; 1.500000; 0.951057;,
0.309017; 2.000000; 0.951057;,
0.587785; 2.000000; 0.809017;,
0.309017; 1.500000; 0.951057;,
0.000000; 1.500000; 1.000000;,
0.000000; 2.000000; 1.000000;,
0.309017; 2.000000; 0.951057;,
0.000000; 1.500000; 1.000000;,
-0.309017; 1.500000; 0.951057;,
-0.309017; 2.000000; 0.951057;,
0.000000; 2.000000; 1.000000;,
-0.309017; 1.500000; 0.951057;,
-0.587785; 1.500000; 0.809017;,
-0.587785; 2.000000; 0.809017;,
-0.309017; 2.000000; 0.951057;,
-0.587785; 1.500000; 0.809017;,
-0.809017; 1.500000; 0.587785;,
-0.809017; 2.000000; 0.587785;,
-0.587785; 2.000000; 0.809017;,
-0.809017; 1.500000; 0.587785;,
-0.951057; 1.500000; 0.309017;,
-0.951057; 2.000000; 0.309017;,
-0.809017; 2.000000; 0.587785;,
-0.951057; 1.500000; 0.309017;,
-1.000000; 1.500000; 0.000000;,
-1.000000; 2.000000; 0.000000;,
-0.951057; 2.000000; 0.309017;,
-1.000000; 1.500000; 0.000000;,
-0.951057; 1.500000; -0.309017;,
-0.951057; 2.000000; -0.309017;,
-1.000000; 2.000000; 0.000000;,
-0.951057; 1.500000; -0.309017;,
-0.809017; 1.500000; -0.587785;,
-0.809017; 2.000000; -0.587785;,
-0.951057; 2.000000; -0.309017;,
-0.809017; 1.500000; -0.587785;,
-0.587785; 1.500000; -0.809017;,
-0.587785; 2.000000; -0.809017;,
-0.809017; 2.000000; -0.587785;,
-0.587785; 1.500000; -0.809017;,
-0.309017; 1.500000; -0.951057;,
-0.309017; 2.000000; -0.951057;,
-0.587785; 2.000000; -0.809017;,
-0.309017; 1.500000; -0.951057;,
0.000000; 1.500000; -1.000000;,
0.000000; 2.000000; -1.000000;,
-0.309017; 2.000000; -0.951057;,
0.000000; 1.500000; -1.000000;,
0.309017; 1.500000; -0.951057;,
0.309017; 2.000000; -0.951057;,
0.000000; 2.000000; -1.000000;,
0.309017; 1.500000; -0.951057;,
0.587785; 1.500000; -0.809017;,
0.587785; 2.000000; -0.809017;,
0.309017; 2.000000; -0.951057;,
0.587785; 1.500000; -0.809017;,
0.809017; 1.500000; -0.587785;,
0.809017; 2.000000; -0.587785;,
0.587785; 2.000000; -0.809017;,
0.809017; 1.500000; -0.587785;,
0.951057; 1.500000; -0.309017;,
0.951057; 2.000000; -0.309017;,
0.809017; 2.000000; -0.587785;,
0.951057; 1.500000; -0.309017;,
1.000000; 1.500000; -0.000000;,
1.000000; 2.000000; -0.000000;,
0.951057; 2.000000; -0.309017;,
1.000000; 1.500000; -0.000000;,
0.951057; 1.500000; 0.309017;,
0.951057; 2.000000; 0.309017;,
1.000000; 2.000000; -0.000000;,
0.951057; 2.000000; 0.309017;,
0.809017; 2.000000; 0.587786;,
0.809017; 2.500000; 0.587786;,
0.951057; 2.500000; 0.309017;,
0.809017; 2.000000; 0.587786;,
0.587785; 2.000000; 0.809017;,
0.587785; 2.500000; 0.809017;,
0.809017; 2.500000; 0.587786;,
0.587785; 2.000000; 0.809017;,
0.309017; 2.000000; 0.951057;,
0.309017; 2.500000; 0.951057;,
0.587785; 2.500000; 0.809017;,
0.309017; 2.000000; 0.951057;,
0.000000; 2.000000; 1.000000;,
0.000000; 2.500000; 1.000000;,
0.309017; 2.500000; 0.951057;,
0.000000; 2.000000; 1.000000;,
-0.309017; 2.000000; 0.951057;,
-0.309017; 2.500000; 0.951057;,
0.000000; 2.500000; 1.000000;,
-0.309017; 2.000000; 0.951057;,
-0.587785; 2.000000; 0.809017;,
-0.587785; 2.500000; 0.809017;,
-0.309017; 2.500000; 0.951057;,
-0.587785; 2.000000; 0.809017;,
-0.809017; 2.000000; 0.587785;,
-0.809017; 2.500000; 0.587785;,
-0.587785; 2.500000; 0.809017;,
-0.809017; 2.000000; 0.587785;,
-0.951057; 2.000000; 0.309017;,
-0.951057; 2.500000; 0.309017;,
-0.809017; 2.500000; 0.587785;,
-0.951057; 2.000000; 0.309017;,
-1.000000; 2.000000; 0.000000;,
-1.000000; 2.500000; 0.000000;,
-0.951057; 2.500000; 0.309017;,
-1.000000; 2.000000; 0.000000;,
-0.951057; 2.000000; -0.309017;,
-0.951057; 2.500000; -0.309017;,
-1.000000; 2.500000; 0.000000;,
-0.951057; 2.000000; -0.309017;,
-0.809017; 2.000000; -0.587785;,
-0.809017; 2.500000; -0.587785;,
-0.951057; 2.500000; -0.309017;,
-0.809017; 2.000000; -0.587785;,
-0.587785; 2.000000; -0.809017;,
-0.587785; 2.500000; -0.809017;,
-0.809017; 2.500000; -0.587785;,
-0.587785; 2.000000; -0.809017;,
-0.309017; 2.000000; -0.951057;,
-0.309017; 2.500000; -0.951057;,
-0.587785; 2.500000; -0.809017;,
-0.309017; 2.000000; -0.951057;,
0.000000; 2.000000; -1.000000;,
0.000000; 2.500000; -1.000000;,
-0.309017; 2.500000; -0.951057;,
0.000000; 2.000000; -1.000000;,
0.309017; 2.000000; -0.951057;,
0.309017; 2.500000; -0.951057;,
0.000000; 2.500000; -1.000000;,
0.309017; 2.000000; -0.951057;,
0.587785; 2.000000; -0.809017;,
0.587785; 2.500000; -0.809017;,
0.309017; 2.500000; -0.951057;,
0.587785; 2.000000; -0.809017;,
0.809017; 2.000000; -0.587785;,
0.809017; 2.500000; -0.587785;,
0.587785; 2.500000; -0.809017;,
0.809017; 2.000000; -0.587785;,
0.951057; 2.000000; -0.309017;,
0.951057; 2.500000; -0.309017;,
0.809017; 2.500000; -0.587785;,
0.951057; 2.000000; -0.309017;,
1.000000; 2.000000; -0.000000;,
1.000000; 2.500000; -0.000000;,
0.951057; 2.500000; -0.309017;,
1.000000; 2.000000; -0.000000;,
0.951057; 2.000000; 0.309017;,
0.951057; 2.500000; 0.309017;,
1.000000; 2.500000; -0.000000;,
0.951057; 2.500000; 0.309017;,
0.809017; 2.500000; 0.587786;,
0.809017; 3.000000; 0.587786;,
0.951057; 3.000000; 0.309017;,
0.809017; 2.500000; 0.587786;,
0.587785; 2.500000; 0.809017;,
0.587785; 3.000000; 0.809017;,
0.809017; 3.000000; 0.587786;,
0.587785; 2.500000; 0.809017;,
0.309017; 2.500000; 0.951057;,
0.309017; 3.000000; 0.951057;,
0.587785; 3.000000; 0.809017;,
0.309017; 2.500000; 0.951057;,
0.000000; 2.500000; 1.000000;,
0.000000; 3.000000; 1.000000;,
0.309017; 3.000000; 0.951057;,
0.000000; 2.500000; 1.000000;,
-0.309017; 2.500000; 0.951057;,
-0.309017; 3.000000; 0.951057;,
0.000000; 3.000000; 1.000000;,
-0.309017; 2.500000; 0.951057;,
-0.587785; 2.500000; 0.809017;,
-0.587785; 3.000000; 0.809017;,
-0.309017; 3.000000; 0.951057;,
-0.587785; 2.500000; 0.809017;,
-0.809017; 2.500000; 0.587785;,
-0.809017; 3.000000; 0.587785;,
-0.587785; 3.000000; 0.809017;,
-0.809017; 2.500000; 0.587785;,
-0.951057; 2.500000; 0.309017;,
-0.951057; 3.000000; 0.309017;,
-0.809017; 3.000000; 0.587785;,
-0.951057; 2.500000; 0.309017;,
-1.000000; 2.500000; 0.000000;,
-1.000000; 3.000000; 0.000000;,
-0.951057; 3.000000; 0.309017;,
-1.000000; 2.500000; 0.000000;,
-0.951057; 2.500000; -0.309017;,
-0.951057; 3.000000; -0.309017;,
-1.000000; 3.000000; 0.000000;,
-0.951057; 2.500000; -0.309017;,
-0.809017; 2.500000; -0.587785;,
-0.809017; 3.000000; -0.587785;,
-0.951057; 3.000000; -0.309017;,
-0.809017; 2.500000; -0.587785;,
-0.587785; 2.500000; -0.809017;,
-0.587785; 3.000000; -0.809017;,
-0.809017; 3.000000; -0.587785;,
-0.587785; 2.500000; -0.809017;,
-0.309017; 2.500000; -0.951057;,
-0.309017; 3.000000; -0.951057;,
-0.587785; 3.000000; -0.809017;,
-0.309017; 2.500000; -0.951057;,
0.000000; 2.500000; -1.000000;,
0.000000; 3.000000; -1.000000;,
-0.309017; 3.000000; -0.951057;,
0.000000; 2.500000; -1.000000;,
0.309017; 2.500000; -0.951057;,
0.309017; 3.000000; -0.951057;,
0.000000; 3.000000; -1.000000;,
0.309017; 2.500000; -0.951057;,
0.587785; 2.500000; -0.809017;,
0.587785; 3.000000; -0.809017;,
0.309017; 3.000000; -0.951057;,
0.587785; 2.500000; -0.809017;,
0.809017; 2.500000; -0.587785;,
0.809017; 3.000000; -0.587785;,
0.587785; 3.000000; -0.809017;,
0.809017; 2.500000; -0.587785;,
0.951057; 2.500000; -0.309017;,
0.951057; 3.000000; -0.309017;,
0.809017; 3.000000; -0.587785;,
0.951057; 2.500000; -0.309017;,
1.000000; 2.500000; -0.000000;,
1.000000; 3.000000; -0.000000;,
0.951057; 3.000000; -0.309017;,
1.000000; 2.500000; -0.000000;,
0.951057; 2.500000; 0.309017;,
0.951057; 3.000000; 0.309017;,
1.000000; 3.000000; -0.000000;,
0.951057; 3.000000; 0.309017;,
0.809017; 3.000000; 0.587786;,
0.809017; 3.500000; 0.587786;,
0.951057; 3.500000; 0.309017;,
0.809017; 3.000000; 0.587786;,
0.587785; 3.000000; 0.809017;,
0.587785; 3.500000; 0.809017;,
0.809017; 3.500000; 0.587786;,
0.587785; 3.000000; 0.809017;,
0.309017; 3.000000; 0.951057;,
0.309017; 3.500000; 0.951057;,
0.587785; 3.500000; 0.809017;,
0.309017; 3.000000; 0.951057;,
0.000000; 3.000000; 1.000000;,
0.000000; 3.500000; 1.000000;,
0.309017; 3.500000; 0.951057;,
0.000000; 3.000000; 1.000000;,
-0.309017; 3.000000; 0.951057;,
-0.309017; 3.500000; 0.951057;,
0.000000; 3.500000; 1.000000;,
-0.309017; 3.000000; 0.951057;,
-0.587785; 3.000000; 0.809017;,
-0.587785; 3.500000; 0.809017;,
-0.309017; 3.500000; 0.951057;,
-0.587785; 3.000000; 0.809017;,
-0.809017; 3.000000; 0.587785;,
-0.809017; 3.500000; 0.587785;,
-0.587785; 3.500000; 0.809017;,
-0.809017; 3.000000; 0.587785;,
-0.951057; 3.000000; 0.309017;,
-0.951057; 3.500000; 0.309017;,
-0.809017; 3.500000; 0.587785;,
-0.951057; 3.000000; 0.309017;,
-1.000000; 3.000000; 0.000000;,
-1.000000; 3.500000; 0.000000;,
-0.951057; 3.500000; 0.309017;,
-1.000000; 3.000000; 0.000000;,
-0.951057; 3.000000; -0.309017;,
-0.951057; 3.500000; -0.309017;,
-1.000000; 3.500000; 0.000000;,
-0.951057; 3.000000; -0.309017;,
-0.809017; 3.000000; -0.587785;,
-0.809017; 3.500000; -0.587785;,
-0.951057; 3.500000; -0.309017;,
-0.809017; 3.000000; -0.587785;,
-0.587785; 3.000000; -0.809017;,
-0.587785; 3.500000; -0.809017;,
-0.809017; 3.500000; -0.587785;,
-0.587785; 3.000000; -0.809017;,
-0.309017; 3.000000; -0.951057;,
-0.309017; 3.500000; -0.951057;,
-0.587785; 3.500000; -0.809017;,
-0.309017; 3.000000; -0.951057;,
0.000000; 3.000000; -1.000000;,
0.000000; 3.500000; -1.000000;,
-0.309017; 3.500000; -0.951057;,
0.000000; 3.000000; -1.000000;,
0.309017; 3.000000; -0.951057;,
0.309017; 3.500000; -0.951057;,
0.000000; 3.500000; -1.000000;,
0.309017; 3.000000; -0.951057;,
0.587785; 3.000000; -0.809017;,
0.587785; 3.500000; -0.809017;,
0.309017; 3.500000; -0.951057;,
0.587785; 3.000000; -0.809017;,
0.809017; 3.000000; -0.587785;,
0.809017; 3.500000; -0.587785;,
0.587785; 3.500000; -0.809017;,
0.809017; 3.000000; -0.587785;,
0.951057; 3.000000; -0.309017;,
0.951057; 3.500000; -0.309017;,
0.809017; 3.500000; -0.587785;,
0.951057; 3.000000; -0.309017;,
1.000000; 3.000000; -0.000000;,
1.000000; 3.500000; -0.000000;,
0.951057; 3.500000; -0.309017;,
1.000000; 3.000000; -0.000000;,
0.951057; 3.000000; 0.309017;,
0.951057; 3.500000; 0.309017;,
1.000000; 3.500000; -0.000000;,
0.951057; 3.500000; 0.309017;,
0.809017; 3.500000; 0.587786;,
0.809017; 4.000000; 0.587786;,
0.951057; 4.000000; 0.309017;,
0.809017; 3.500000; 0.587786;,
0.587785; 3.500000; 0.809017;,
0.587785; 4.000000; 0.809017;,
0.809017; 4.000000; 0.587786;,
0.587785; 3.500000; 0.809017;,
0.309017; 3.500000; 0.951057;,
0.309017; 4.000000; 0.951057;,
0.587785; 4.000000; 0.809017;,
0.309017; 3.500000; 0.951057;,
0.000000; 3.500000; 1.000000;,
0.000000; 4.000000; 1.000000;,
0.309017; 4.000000; 0.951057;,
0.000000; 3.500000; 1.000000;,
-0.309017; 3.500000; 0.951057;,
-0.309017; 4.000000; 0.951057;,
0.000000; 4.000000; 1.000000;,
-0.309017; 3.500000; 0.951057;,
-0.587785; 3.500000; 0.809017;,
-0.587785; 4.000000; 0.809017;,
-0.309017; 4.000000; 0.951057;,
-0.587785; 3.500000; 0.809017;,
-0.809017; 3.500000; 0.587785;,
-0.809017; 4.000000; 0.587785;,
-0.587785; 4.000000; 0.809017;,
-0.809017; 3.500000; 0.587785;,
-0.951057; 3.500000; 0.309017;,
-0.951057; 4.000000; 0.309017;,
-0.809017; 4.000000; 0.587785;,
-0.951057; 3.500000; 0.309017;,
-1.000000; 3.500000; 0.000000;,
-1.000000; 4.000000; 0.000000;,
-0.951057; 4.000000; 0.309017;,
-1.000000; 3.500000; 0.000000;,
-0.951057; 3.500000; -0.309017;,
-0.951057; 4.000000; -0.309017;,
-1.000000; 4.000000; 0.000000;,
-0.951057; 3.500000; -0.309017;,
-0.809017; 3.500000; -0.587785;,
-0.809017; 4.000000; -0.587785;,
-0.951057; 4.000000; -0.309017;,
-0.809017; 3.500000; -0.587785;,
-0.587785; 3.500000; -0.809017;,
-0.587785; 4.000000; -0.809017;,
-0.809017; 4.000000; -0.587785;,
-0.587785; 3.500000; -0.809017;,
-0.309017; 3.500000; -0.951057;,
-0.309017; 4.000000; -0.951057;,
-0.587785; 4.000000; -0.809017;,
-0.309017; 3.500000; -0.951057;,
0.000000; 3.500000; -1.000000;,
0.000000; 4.000000; -1.000000;,
-0.309017; 4.000000; -0.951057;,
0.000000; 3.500000; -1.000000;,
0.309017; 3.500000; -0.951057;,
0.309017; 4.000000; -0.951057;,
0.000000; 4.000000; -1.000000;,
0.309017; 3.500000; -0.951057;,
0.587785; 3.500000; -0.809017;,
0.587785; 4.000000; -0.809017;,
0.309017; 4.000000; -0.951057;,
0.587785; 3.500000; -0.809017;,
0.809017; 3.500000; -0.587785;,
0.809017; 4.000000; -0.587785;,
0.587785; 4.000000; -0.809017;,
0.809017; 3.500000; -0.587785;,
0.951057; 3.500000; -0.309017;,
0.951057; 4.000000; -0.309017;,
0.809017; 4.000000; -0.587785;,
0.951057; 3.500000; -0.309017;,
1.000000; 3.500000; -0.000000;,
1.000000; 4.000000; -0.000000;,
0.951057; 4.000000; -0.309017;,
1.000000; 3.500000; -0.000000;,
0.951057; 3.500000; 0.309017;,
0.951057; 4.000000; 0.309017;,
1.000000; 4.000000; -0.000000;,
0.951057; 4.000000; 0.309017;,
0.809017; 4.000000; 0.587786;,
0.809017; 4.500000; 0.587786;,
0.951057; 4.500000; 0.309017;,
0.809017; 4.000000; 0.587786;,
0.587785; 4.000000; 0.809017;,
0.587785; 4.500000; 0.809017;,
0.809017; 4.500000; 0.587786;,
0.587785; 4.000000; 0.809017;,
0.309017; 4.000000; 0.951057;,
0.309017; 4.500000; 0.951057;,
0.587785; 4.500000; 0.809017;,
0.309017; 4.000000; 0.951057;,
0.000000; 4.000000; 1.000000;,
0.000000; 4.500000; 1.000000;,
0.309017; 4.500000; 0.951057;,
0.000000; 4.000000; 1.000000;,
-0.309017; 4.000000; 0.951057;,
-0.309017; 4.500000; 0.951057;,
0.000000; 4.500000; 1.000000;,
-0.309017; 4.000000; 0.951057;,
-0.587785; 4.000000; 0.809017;,
-0.587785; 4.500000; 0.809017;,
-0.309017; 4.500000; 0.951057;,
-0.587785; 4.000000; 0.809017;,
-0.809017; 4.000000; 0.587785;,
-0.809017; 4.500000; 0.587785;,
-0.587785; 4.500000; 0.809017;,
-0.809017; 4.000000; 0.587785;,
-0.951057; 4.000000; 0.309017;,
-0.951057; 4.500000; 0.309017;,
-0.809017; 4.500000; 0.587785;,
-0.951057; 4.000000; 0.309017;,
-1.000000; 4.000000; 0.000000;,
-1.000000; 4.500000; 0.000000;,
-0.951057; 4.500000; 0.309017;,
-1.000000; 4.000000; 0.000000;,
-0.951057; 4.000000; -0.309017;,
-0.951057; 4.500000; -0.309017;,
-1.000000; 4.500000; 0.000000;,
-0.951057; 4.000000; -0.309017;,
-0.809017; 4.000000; -0.587785;,
-0.809017; 4.500000; -0.587785;,
-0.951057; 4.500000; -0.309017;,
-0.809017; 4.000000; -0.587785;,
-0.587785; 4.000000; -0.809017;,
-0.587785; 4.500000; -0.809017;,
-0.809017; 4.500000; -0.587785;,
-0.587785; 4.000000; -0.809017;,
-0.309017; 4.000000; -0.951057;,
-0.309017; 4.500000; -0.951057;,
-0.587785; 4.500000; -0.809017;,
-0.309017; 4.000000; -0.951057;,
0.000000; 4.000000; -1.000000;,
0.000000; 4.500000; -1.000000;,
-0.309017; 4.500000; -0.951057;,
0.000000; 4.000000; -1.000000;,
0.309017; 4.000000; -0.951057;,
0.309017; 4.500000; -0.951057;,
0.000000; 4.500000; -1.000000;,
0.309017; 4.000000; -0.951057;,
0.587785; 4.000000; -0.809017;,
0.587785; 4.500000; -0.809017;,
0.309017; 4.500000; -0.951057;,
0.587785; 4.000000; -0.809017;,
0.809017; 4.000000; -0.587785;,
0.809017; 4.500000; -0.587785;,
0.587785; 4.500000; -0.809017;,
0.809017; 4.000000; -0.587785;,
0.951057; 4.000000; -0.309017;,
0.951057; 4.500000; -0.309017;,
0.809017; 4.500000; -0.587785;,
0.951057; 4.000000; -0.309017;,
1.000000; 4.000000; -0.000000;,
1.000000; 4.500000; -0.000000;,
0.951057; 4.500000; -0.309017;,
1.000000; 4.000000; -0.000000;,
0.951057; 4.000000; 0.309017;,
0.951057; 4.500000; 0.309017;,
1.000000; 4.500000; -0.000000;,
0.951057; 4.500000; 0.309017;,
0.809017; 4.500000; 0.587786;,
0.809017; 5.000000; 0.587786;,
0.951057; 5.000000; 0.309017;,
0.809017; 4.500000; 0.587786;,
0.587785; 4.500000; 0.809017;,
0.587785; 5.000000; 0.809017;,
0.809017; 5.000000; 0.587786;,
0.587785; 4.500000; 0.809017;,
0.309017; 4.500000; 0.951057;,
0.309017; 5.000000; 0.951057;,
0.587785; 5.000000; 0.809017;,
0.309017; 4.500000; 0.951057;,
0.000000; 4.500000; 1.000000;,
0.000000; 5.000000; 1.000000;,
0.309017; 5.000000; 0.951057;,
0.000000; 4.500000; 1.000000;,
-0.309017; 4.500000; 0.951057;,
-0.309017; 5.000000; 0.951057;,
0.000000; 5.000000; 1.000000;,
-0.309017; 4.500000; 0.951057;,
-0.587785; 4.500000; 0.809017;,
-0.587785; 5.000000; 0.809017;,
-0.309017; 5.000000; 0.951057;,
-0.587785; 4.500000; 0.809017;,
-0.809017; 4.500000; 0.587785;,
-0.809017; 5.000000; 0.587785;,
-0.587785; 5.000000; 0.809017;,
-0.809017; 4.500000; 0.587785;,
-0.951057; 4.500000; 0.309017;,
-0.951057; 5.000000; 0.309017;,
-0.809017; 5.000000; 0.587785;,
-0.951057; 4.500000; 0.309017;,
-1.000000; 4.500000; 0.000000;,
-1.000000; 5.000000; 0.000000;,
-0.951057; 5.000000; 0.309017;,
-1.000000; 4.500000; 0.000000;,
-0.951057; 4.500000; -0.309017;,
-0.951057; 5.000000; -0.309017;,
-1.000000; 5.000000; 0.000000;,
-0.951057; 4.500000; -0.309017;,
-0.809017; 4.500000; -0.587785;,
-0.809017; 5.000000; -0.587785;,
-0.951057; 5.000000; -0.309017;,
-0.809017; 4.500000; -0.587785;,
-0.587785; 4.500000; -0.809017;,
-0.587785; 5.000000; -0.809017;,
-0.809017; 5.000000; -0.587785;,
-0.587785; 4.500000; -0.809017;,
-0.309017; 4.500000; -0.951057;,
-0.309017; 5.000000; -0.951057;,
-0.587785; 5.000000; -0.809017;,
-0.309017; 4.500000; -0.951057;,
0.000000; 4.500000; -1.000000;,
0.000000; 5.000000; -1.000000;,
-0.309017; 5.000000; -0.951057;,
0.000000; 4.500000; -1.000000;,
0.309017; 4.500000; -0.951057;,
0.309017; 5.000000; -0.951057;,
0.000000; 5.000000; -1.000000;,
0.309017; 4.500000; -0.951057;,
0.587785; 4.500000; -0.809017;,
0.587785; 5.000000; -0.809017;,
0.309017; 5.000000; -0.951057;,
0.587785; 4.500000; -0.809017;,
0.809017; 4.500000; -0.587785;,
0.809017; 5.000000; -0.587785;,
0.587785; 5.000000; -0.809017;,
0.809017; 4.500000; -0.587785;,
0.951057; 4.500000; -0.309017;,
0.951057; 5.000000; -0.309017;,
0.809017; 5.000000; -0.587785;,
0.951057; 4.500000; -0.309017;,
1.000000; 4.500000; -0.000000;,
1.000000; 5.000000; -0.000000;,
0.951057; 5.000000; -0.309017;,
1.000000; 4.500000; -0.000000;,
0.951057; 4.500000; 0.309017;,
0.951057; 5.000000; 0.309017;,
1.000000; 5.000000; -0.000000;,
0.809017; -5.000000; 0.587786;,
0.951057; -5.000000; 0.309017;,
0.000000; -5.000000; -0.000000;,
0.587785; -5.000000; 0.809017;,
0.809017; -5.000000; 0.587786;,
0.000000; -5.000000; -0.000000;,
0.309017; -5.000000; 0.951057;,
0.587785; -5.000000; 0.809017;,
0.000000; -5.000000; -0.000000;,
0.000000; -5.000000; 1.000000;,
0.309017; -5.000000; 0.951057;,
0.000000; -5.000000; -0.000000;,
-0.309017; -5.000000; 0.951057;,
0.000000; -5.000000; 1.000000;,
0.000000; -5.000000; -0.000000;,
-0.587785; -5.000000; 0.809017;,
-0.309017; -5.000000; 0.951057;,
0.000000; -5.000000; -0.000000;,
-0.809017; -5.000000; 0.587785;,
-0.587785; -5.000000; 0.809017;,
0.000000; -5.000000; -0.000000;,
-0.951057; -5.000000; 0.309017;,
-0.809017; -5.000000; 0.587785;,
0.000000; -5.000000; -0.000000;,
-1.000000; -5.000000; 0.000000;,
-0.951057; -5.000000; 0.309017;,
0.000000; -5.000000; -0.000000;,
-0.951057; -5.000000; -0.309017;,
-1.000000; -5.000000; 0.000000;,
0.000000; -5.000000; -0.000000;,
-0.809017; -5.000000; -0.587785;,
-0.951057; -5.000000; -0.309017;,
0.000000; -5.000000; -0.000000;,
-0.587785; -5.000000; -0.809017;,
-0.809017; -5.000000; -0.587785;,
0.000000; -5.000000; -0.000000;,
-0.309017; -5.000000; -0.951057;,
-0.587785; -5.000000; -0.809017;,
0.000000; -5.000000; -0.000000;,
0.000000; -5.000000; -1.000000;,
-0.309017; -5.000000; -0.951057;,
0.000000; -5.000000; -0.000000;,
0.309017; -5.000000; -0.951057;,
0.000000; -5.000000; -1.000000;,
0.000000; -5.000000; -0.000000;,
0.587785; -5.000000; -0.809017;,
0.309017; -5.000000; -0.951057;,
0.000000; -5.000000; -0.000000;,
0.809017; -5.000000; -0.587785;,
0.587785; -5.000000; -0.809017;,
0.000000; -5.000000; -0.000000;,
0.951057; -5.000000; -0.309017;,
0.809017; -5.000000; -0.587785;,
0.000000; -5.000000; -0.000000;,
1.000000; -5.000000; -0.000000;,
0.951057; -5.000000; -0.309017;,
0.000000; -5.000000; -0.000000;,
0.951057; -5.000000; 0.309017;,
1.000000; -5.000000; -0.000000;,
0.000000; -5.000000; -0.000000;,
0.951057; 5.000000; 0.309017;,
0.809017; 5.000000; 0.587786;,
0.000000; 5.000000; -0.000000;,
0.809017; 5.000000; 0.587786;,
0.587785; 5.000000; 0.809017;,
0.000000; 5.000000; -0.000000;,
0.587785; 5.000000; 0.809017;,
0.309017; 5.000000; 0.951057;,
0.000000; 5.000000; -0.000000;,
0.309017; 5.000000; 0.951057;,
0.000000; 5.000000; 1.000000;,
0.000000; 5.000000; -0.000000;,
0.000000; 5.000000; 1.000000;,
-0.309017; 5.000000; 0.951057;,
0.000000; 5.000000; -0.000000;,
-0.309017; 5.000000; 0.951057;,
-0.587785; 5.000000; 0.809017;,
0.000000; 5.000000; -0.000000;,
-0.587785; 5.000000; 0.809017;,
-0.809017; 5.000000; 0.587785;,
0.000000; 5.000000; -0.000000;,
-0.809017; 5.000000; 0.587785;,
-0.951057; 5.000000; 0.309017;,
0.000000; 5.000000; -0.000000;,
-0.951057; 5.000000; 0.309017;,
-1.000000; 5.000000; 0.000000;,
0.000000; 5.000000; -0.000000;,
-1.000000; 5.000000; 0.000000;,
-0.951057; 5.000000; -0.309017;,
0.000000; 5.000000; -0.000000;,
-0.951057; 5.000000; -0.309017;,
-0.809017; 5.000000; -0.587785;,
0.000000; 5.000000; -0.000000;,
-0.809017; 5.000000; -0.587785;,
-0.587785; 5.000000; -0.809017;,
0.000000; 5.000000; -0.000000;,
-0.587785; 5.000000; -0.809017;,
-0.309017; 5.000000; -0.951057;,
0.000000; 5.000000; -0.000000;,
-0.309017; 5.000000; -0.951057;,
0.000000; 5.000000; -1.000000;,
0.000000; 5.000000; -0.000000;,
0.000000; 5.000000; -1.000000;,
0.309017; 5.000000; -0.951057;,
0.000000; 5.000000; -0.000000;,
0.309017; 5.000000; -0.951057;,
0.587785; 5.000000; -0.809017;,
0.000000; 5.000000; -0.000000;,
0.587785; 5.000000; -0.809017;,
0.809017; 5.000000; -0.587785;,
0.000000; 5.000000; -0.000000;,
0.809017; 5.000000; -0.587785;,
0.951057; 5.000000; -0.309017;,
0.000000; 5.000000; -0.000000;,
0.951057; 5.000000; -0.309017;,
1.000000; 5.000000; -0.000000;,
0.000000; 5.000000; -0.000000;,
1.000000; 5.000000; -0.000000;,
0.951057; 5.000000; 0.309017;,
0.000000; 5.000000; -0.000000;;
840;
3;0,3,1;,
3;1,3,2;,
3;4,7,5;,
3;5,7,6;,
3;8,11,9;,
3;9,11,10;,
3;12,15,13;,
3;13,15,14;,
3;16,19,17;,
3;17,19,18;,
3;20,23,21;,
3;21,23,22;,
3;24,27,25;,
3;25,27,26;,
3;28,31,29;,
3;29,31,30;,
3;32,35,33;,
3;33,35,34;,
3;36,39,37;,
3;37,39,38;,
3;40,43,41;,
3;41,43,42;,
3;44,47,45;,
3;45,47,46;,
3;48,51,49;,
3;49,51,50;,
3;52,55,53;,
3;53,55,54;,
3;56,59,57;,
3;57,59,58;,
3;60,63,61;,
3;61,63,62;,
3;64,67,65;,
3;65,67,66;,
3;68,71,69;,
3;69,71,70;,
3;72,75,73;,
3;73,75,74;,
3;76,79,77;,
3;77,79,78;,
3;80,83,81;,
3;81,83,82;,
3;84,87,85;,
3;85,87,86;,
3;88,91,89;,
3;89,91,90;,
3;92,95,93;,
3;93,95,94;,
3;96,99,97;,
3;97,99,98;,
3;100,103,101;,
3;101,103,102;,
3;104,107,105;,
3;105,107,106;,
3;108,111,109;,
3;109,111,110;,
3;112,115,113;,
3;113,115,114;,
3;116,119,117;,
3;117,119,118;,
3;120,123,121;,
3;121,123,122;,
3;124,127,125;,
3;125,127,126;,
3;128,131,129;,
3;129,131,130;,
3;132,135,133;,
3;133,135,134;,
3;136,139,137;,
3;137,139,138;,
3;140,143,141;,
3;141,143,142;,
3;144,147,145;,
3;145,147,146;,
3;148,151,149;,
3;149,151,150;,
3;152,155,153;,
3;153,155,154;,
3;156,159,157;,
3;157,159,158;,
3;160,163,161;,
3;161,163,162;,
3;164,167,165;,
3;165,167,166;,
3;168,171,169;,
3;169,171,170;,
3;172,175,173;,
3;173,175,174;,
3;176,179,177;,
3;177,179,178;,
3;180,183,181;,
3;181,183,182;,
3;184,187,185;,
3;185,187,186;,
3;188,191,189;,
3;189,191,190;,
3;192,195,193;,
3;193,195,194;,
3;196,199,197;,
3;197,199,198;,
3;200,203,201;,
3;201,203,202;,
3;204,207,205;,
3;205,207,206;,
3;208,211,209;,
3;209,211,210;,
3;212,215,213;,
3;213,215,214;,
3;216,219,217;,
3;217,219,218;,
3;220,223,221;,
3;221,223,222;,
3;224,227,225;,
3;225,227,226;,
3;228,231,229;,
3;229,231,230;,
3;232,235,233;,
3;233,235,234;,
3;236,239,237;,
3;237,239,238;,
3;240,243,241;,
3;241,243,242;,
3;244,247,245;,
3;245,247,246;,
3;248,251,249;,
3;249,251,250;,
3;252,255,253;,
3;253,255,254;,
3;256,259,257;,
3;257,259,258;,
3;260,263,261;,
3;261,263,262;,
3;264,267,265;,
3;265,267,266;,
3;268,271,269;,
3;269,271,270;,
3;272,275,273;,
3;273,275,274;,
3;276,279,277;,
3;277,279,278;,
3;280,283,281;,
3;281,283,282;,
3;284,287,285;,
3;285,287,286;,
3;288,291,289;,
3;289,291,290;,
3;292,295,293;,
3;293,295,294;,
3;296,299,297;,
3;297,299,298;,
3;300,303,301;,
3;301,303,302;,
3;304,307,305;,
3;305,307,306;,
3;308,311,309;,
3;309,311,310;,
3;312,315,313;,
3;313,315,314;,
3;316,319,317;,
3;317,319,318;,
3;320,323,321;,
3;321,323,322;,
3;324,327,325;,
3;325,327,326;,
3;328,331,329;,
3;329,331,330;,
3;332,335,333;,
3;333,335,334;,
3;336,339,337;,
3;337,339,338;,
3;340,343,341;,
3;341,343,342;,
3;344,347,345;,
3;345,347,346;,
3;348,351,349;,
3;349,351,350;,
3;352,355,353;,
3;353,355,354;,
3;356,359,357;,
3;357,359,358;,
3;360,363,361;,
3;361,363,362;,
3;364,367,365;,
3;365,367,366;,
3;368,371,369;,
3;369,371,370;,
3;372,375,373;,
3;373,375,374;,
3;376,379,377;,
3;377,379,378;,
3;380,383,381;,
3;381,383,382;,
3;384,387,385;,
3;385,387,386;,
3;388,391,389;,
3;389,391,390;,
3;392,395,393;,
3;393,395,394;,
3;396,399,397;,
3;397,399,398;,
3;400,403,401;,
3;401,403,402;,
3;404,407,405;,
3;405,407,406;,
3;408,411,409;,
3;409,411,410;,
3;412,415,413;,
3;413,415,414;,
3;416,419,417;,
3;417,419,418;,
3;420,423,421;,
3;421,423,422;,
3;424,427,425;,
3;425,427,426;,
3;428,431,429;,
3;429,431,430;,
3;432,435,433;,
3;433,435,434;,
3;436,439,437;,
3;437,439,438;,
3;440,443,441;,
3;441,443,442;,
3;444,447,445;,
3;445,447,446;,
3;448,451,449;,
3;449,451,450;,
3;452,455,453;,
3;453,455,454;,
3;456,459,457;,
3;457,459,458;,
3;460,463,461;,
3;461,463,462;,
3;464,467,465;,
3;465,467,466;,
3;468,471,469;,
3;469,471,470;,
3;472,475,473;,
3;473,475,474;,
3;476,479,477;,
3;477,479,478;,
3;480,483,481;,
3;481,483,482;,
3;484,487,485;,
3;485,487,486;,
3;488,491,489;,
3;489,491,490;,
3;492,495,493;,
3;493,495,494;,
3;496,499,497;,
3;497,499,498;,
3;500,503,501;,
3;501,503,502;,
3;504,507,505;,
3;505,507,506;,
3;508,511,509;,
3;509,511,510;,
3;512,515,513;,
3;513,515,514;,
3;516,519,517;,
3;517,519,518;,
3;520,523,521;,
3;521,523,522;,
3;524,527,525;,
3;525,527,526;,
3;528,531,529;,
3;529,531,530;,
3;532,535,533;,
3;533,535,534;,
3;536,539,537;,
3;537,539,538;,
3;540,543,541;,
3;541,543,542;,
3;544,547,545;,
3;545,547,546;,
3;548,551,549;,
3;549,551,550;,
3;552,555,553;,
3;553,555,554;,
3;556,559,557;,
3;557,559,558;,
3;560,563,561;,
3;561,563,562;,
3;564,567,565;,
3;565,567,566;,
3;568,571,569;,
3;569,571,570;,
3;572,575,573;,
3;573,575,574;,
3;576,579,577;,
3;577,579,578;,
3;580,583,581;,
3;581,583,582;,
3;584,587,585;,
3;585,587,586;,
3;588,591,589;,
3;589,591,590;,
3;592,595,593;,
3;593,595,594;,
3;596,599,597;,
3;597,599,598;,
3;600,603,601;,
3;601,603,602;,
3;604,607,605;,
3;605,607,606;,
3;608,611,609;,
3;609,611,610;,
3;612,615,613;,
3;613,615,614;,
3;616,619,617;,
3;617,619,618;,
3;620,623,621;,
3;621,623,622;,
3;624,627,625;,
3;625,627,626;,
3;628,631,629;,
3;629,631,630;,
3;632,635,633;,
3;633,635,634;,
3;636,639,637;,
3;637,639,638;,
3;640,643,641;,
3;641,643,642;,
3;644,647,645;,
3;645,647,646;,
3;648,651,649;,
3;649,651,650;,
3;652,655,653;,
3;653,655,654;,
3;656,659,657;,
3;657,659,658;,
3;660,663,661;,
3;661,663,662;,
3;664,667,665;,
3;665,667,666;,
3;668,671,669;,
3;669,671,670;,
3;672,675,673;,
3;673,675,674;,
3;676,679,677;,
3;677,679,678;,
3;680,683,681;,
3;681,683,682;,
3;684,687,685;,
3;685,687,686;,
3;688,691,689;,
3;689,691,690;,
3;692,695,693;,
3;693,695,694;,
3;696,699,697;,
3;697,699,698;,
3;700,703,701;,
3;701,703,702;,
3;704,707,705;,
3;705,707,706;,
3;708,711,709;,
3;709,711,710;,
3;712,715,713;,
3;713,715,714;,
3;716,719,717;,
3;717,719,718;,
3;720,723,721;,
3;721,723,722;,
3;724,727,725;,
3;725,727,726;,
3;728,731,729;,
3;729,731,730;,
3;732,735,733;,
3;733,735,734;,
3;736,739,737;,
3;737,739,738;,
3;740,743,741;,
3;741,743,742;,
3;744,747,745;,
3;745,747,746;,
3;748,751,749;,
3;749,751,750;,
3;752,755,753;,
3;753,755,754;,
3;756,759,757;,
3;757,759,758;,
3;760,763,761;,
3;761,763,762;,
3;764,767,765;,
3;765,767,766;,
3;768,771,769;,
3;769,771,770;,
3;772,775,773;,
3;773,775,774;,
3;776,779,777;,
3;777,779,778;,
3;780,783,781;,
3;781,783,782;,
3;784,787,785;,
3;785,787,786;,
3;788,791,789;,
3;789,791,790;,
3;792,795,793;,
3;793,795,794;,
3;796,799,797;,
3;797,799,798;,
3;800,803,801;,
3;801,803,802;,
3;804,807,805;,
3;805,807,806;,
3;808,811,809;,
3;809,811,810;,
3;812,815,813;,
3;813,815,814;,
3;816,819,817;,
3;817,819,818;,
3;820,823,821;,
3;821,823,822;,
3;824,827,825;,
3;825,827,826;,
3;828,831,829;,
3;829,831,830;,
3;832,835,833;,
3;833,835,834;,
3;836,839,837;,
3;837,839,838;,
3;840,843,841;,
3;841,843,842;,
3;844,847,845;,
3;845,847,846;,
3;848,851,849;,
3;849,851,850;,
3;852,855,853;,
3;853,855,854;,
3;856,859,857;,
3;857,859,858;,
3;860,863,861;,
3;861,863,862;,
3;864,867,865;,
3;865,867,866;,
3;868,871,869;,
3;869,871,870;,
3;872,875,873;,
3;873,875,874;,
3;876,879,877;,
3;877,879,878;,
3;880,883,881;,
3;881,883,882;,
3;884,887,885;,
3;885,887,886;,
3;888,891,889;,
3;889,891,890;,
3;892,895,893;,
3;893,895,894;,
3;896,899,897;,
3;897,899,898;,
3;900,903,901;,
3;901,903,902;,
3;904,907,905;,
3;905,907,906;,
3;908,911,909;,
3;909,911,910;,
3;912,915,913;,
3;913,915,914;,
3;916,919,917;,
3;917,919,918;,
3;920,923,921;,
3;921,923,922;,
3;924,927,925;,
3;925,927,926;,
3;928,931,929;,
3;929,931,930;,
3;932,935,933;,
3;933,935,934;,
3;936,939,937;,
3;937,939,938;,
3;940,943,941;,
3;941,943,942;,
3;944,947,945;,
3;945,947,946;,
3;948,951,949;,
3;949,951,950;,
3;952,955,953;,
3;953,955,954;,
3;956,959,957;,
3;957,959,958;,
3;960,963,961;,
3;961,963,962;,
3;964,967,965;,
3;965,967,966;,
3;968,971,969;,
3;969,971,970;,
3;972,975,973;,
3;973,975,974;,
3;976,979,977;,
3;977,979,978;,
3;980,983,981;,
3;981,983,982;,
3;984,987,985;,
3;985,987,986;,
3;988,991,989;,
3;989,991,990;,
3;992,995,993;,
3;993,995,994;,
3;996,999,997;,
3;997,999,998;,
3;1000,1003,1001;,
3;1001,1003,1002;,
3;1004,1007,1005;,
3;1005,1007,1006;,
3;1008,1011,1009;,
3;1009,1011,1010;,
3;1012,1015,1013;,
3;1013,1015,1014;,
3;1016,1019,1017;,
3;1017,1019,1018;,
3;1020,1023,1021;,
3;1021,1023,1022;,
3;1024,1027,1025;,
3;1025,1027,1026;,
3;1028,1031,1029;,
3;1029,1031,1030;,
3;1032,1035,1033;,
3;1033,1035,1034;,
3;1036,1039,1037;,
3;1037,1039,1038;,
3;1040,1043,1041;,
3;1041,1043,1042;,
3;1044,1047,1045;,
3;1045,1047,1046;,
3;1048,1051,1049;,
3;1049,1051,1050;,
3;1052,1055,1053;,
3;1053,1055,1054;,
3;1056,1059,1057;,
3;1057,1059,1058;,
3;1060,1063,1061;,
3;1061,1063,1062;,
3;1064,1067,1065;,
3;1065,1067,1066;,
3;1068,1071,1069;,
3;1069,1071,1070;,
3;1072,1075,1073;,
3;1073,1075,1074;,
3;1076,1079,1077;,
3;1077,1079,1078;,
3;1080,1083,1081;,
3;1081,1083,1082;,
3;1084,1087,1085;,
3;1085,1087,1086;,
3;1088,1091,1089;,
3;1089,1091,1090;,
3;1092,1095,1093;,
3;1093,1095,1094;,
3;1096,1099,1097;,
3;1097,1099,1098;,
3;1100,1103,1101;,
3;1101,1103,1102;,
3;1104,1107,1105;,
3;1105,1107,1106;,
3;1108,1111,1109;,
3;1109,1111,1110;,
3;1112,1115,1113;,
3;1113,1115,1114;,
3;1116,1119,1117;,
3;1117,1119,1118;,
3;1120,1123,1121;,
3;1121,1123,1122;,
3;1124,1127,1125;,
3;1125,1127,1126;,
3;1128,1131,1129;,
3;1129,1131,1130;,
3;1132,1135,1133;,
3;1133,1135,1134;,
3;1136,1139,1137;,
3;1137,1139,1138;,
3;1140,1143,1141;,
3;1141,1143,1142;,
3;1144,1147,1145;,
3;1145,1147,1146;,
3;1148,1151,1149;,
3;1149,1151,1150;,
3;1152,1155,1153;,
3;1153,1155,1154;,
3;1156,1159,1157;,
3;1157,1159,1158;,
3;1160,1163,1161;,
3;1161,1163,1162;,
3;1164,1167,1165;,
3;1165,1167,1166;,
3;1168,1171,1169;,
3;1169,1171,1170;,
3;1172,1175,1173;,
3;1173,1175,1174;,
3;1176,1179,1177;,
3;1177,1179,1178;,
3;1180,1183,1181;,
3;1181,1183,1182;,
3;1184,1187,1185;,
3;1185,1187,1186;,
3;1188,1191,1189;,
3;1189,1191,1190;,
3;1192,1195,1193;,
3;1193,1195,1194;,
3;1196,1199,1197;,
3;1197,1199,1198;,
3;1200,1203,1201;,
3;1201,1203,1202;,
3;1204,1207,1205;,
3;1205,1207,1206;,
3;1208,1211,1209;,
3;1209,1211,1210;,
3;1212,1215,1213;,
3;1213,1215,1214;,
3;1216,1219,1217;,
3;1217,1219,1218;,
3;1220,1223,1221;,
3;1221,1223,1222;,
3;1224,1227,1225;,
3;1225,1227,1226;,
3;1228,1231,1229;,
3;1229,1231,1230;,
3;1232,1235,1233;,
3;1233,1235,1234;,
3;1236,1239,1237;,
3;1237,1239,1238;,
3;1240,1243,1241;,
3;1241,1243,1242;,
3;1244,1247,1245;,
3;1245,1247,1246;,
3;1248,1251,1249;,
3;1249,1251,1250;,
3;1252,1255,1253;,
3;1253,1255,1254;,
3;1256,1259,1257;,
3;1257,1259,1258;,
3;1260,1263,1261;,
3;1261,1263,1262;,
3;1264,1267,1265;,
3;1265,1267,1266;,
3;1268,1271,1269;,
3;1269,1271,1270;,
3;1272,1275,1273;,
3;1273,1275,1274;,
3;1276,1279,1277;,
3;1277,1279,1278;,
3;1280,1283,1281;,
3;1281,1283,1282;,
3;1284,1287,1285;,
3;1285,1287,1286;,
3;1288,1291,1289;,
3;1289,1291,1290;,
3;1292,1295,1293;,
3;1293,1295,1294;,
3;1296,1299,1297;,
3;1297,1299,1298;,
3;1300,1303,1301;,
3;1301,1303,1302;,
3;1304,1307,1305;,
3;1305,1307,1306;,
3;1308,1311,1309;,
3;1309,1311,1310;,
3;1312,1315,1313;,
3;1313,1315,1314;,
3;1316,1319,1317;,
3;1317,1319,1318;,
3;1320,1323,1321;,
3;1321,1323,1322;,
3;1324,1327,1325;,
3;1325,1327,1326;,
3;1328,1331,1329;,
3;1329,1331,1330;,
3;1332,1335,1333;,
3;1333,1335,1334;,
3;1336,1339,1337;,
3;1337,1339,1338;,
3;1340,1343,1341;,
3;1341,1343,1342;,
3;1344,1347,1345;,
3;1345,1347,1346;,
3;1348,1351,1349;,
3;1349,1351,1350;,
3;1352,1355,1353;,
3;1353,1355,1354;,
3;1356,1359,1357;,
3;1357,1359,1358;,
3;1360,1363,1361;,
3;1361,1363,1362;,
3;1364,1367,1365;,
3;1365,1367,1366;,
3;1368,1371,1369;,
3;1369,1371,1370;,
3;1372,1375,1373;,
3;1373,1375,1374;,
3;1376,1379,1377;,
3;1377,1379,1378;,
3;1380,1383,1381;,
3;1381,1383,1382;,
3;1384,1387,1385;,
3;1385,1387,1386;,
3;1388,1391,1389;,
3;1389,1391,1390;,
3;1392,1395,1393;,
3;1393,1395,1394;,
3;1396,1399,1397;,
3;1397,1399,1398;,
3;1400,1403,1401;,
3;1401,1403,1402;,
3;1404,1407,1405;,
3;1405,1407,1406;,
3;1408,1411,1409;,
3;1409,1411,1410;,
3;1412,1415,1413;,
3;1413,1415,1414;,
3;1416,1419,1417;,
3;1417,1419,1418;,
3;1420,1423,1421;,
3;1421,1423,1422;,
3;1424,1427,1425;,
3;1425,1427,1426;,
3;1428,1431,1429;,
3;1429,1431,1430;,
3;1432,1435,1433;,
3;1433,1435,1434;,
3;1436,1439,1437;,
3;1437,1439,1438;,
3;1440,1443,1441;,
3;1441,1443,1442;,
3;1444,1447,1445;,
3;1445,1447,1446;,
3;1448,1451,1449;,
3;1449,1451,1450;,
3;1452,1455,1453;,
3;1453,1455,1454;,
3;1456,1459,1457;,
3;1457,1459,1458;,
3;1460,1463,1461;,
3;1461,1463,1462;,
3;1464,1467,1465;,
3;1465,1467,1466;,
3;1468,1471,1469;,
3;1469,1471,1470;,
3;1472,1475,1473;,
3;1473,1475,1474;,
3;1476,1479,1477;,
3;1477,1479,1478;,
3;1480,1483,1481;,
3;1481,1483,1482;,
3;1484,1487,1485;,
3;1485,1487,1486;,
3;1488,1491,1489;,
3;1489,1491,1490;,
3;1492,1495,1493;,
3;1493,1495,1494;,
3;1496,1499,1497;,
3;1497,1499,1498;,
3;1500,1503,1501;,
3;1501,1503,1502;,
3;1504,1507,1505;,
3;1505,1507,1506;,
3;1508,1511,1509;,
3;1509,1511,1510;,
3;1512,1515,1513;,
3;1513,1515,1514;,
3;1516,1519,1517;,
3;1517,1519,1518;,
3;1520,1523,1521;,
3;1521,1523,1522;,
3;1524,1527,1525;,
3;1525,1527,1526;,
3;1528,1531,1529;,
3;1529,1531,1530;,
3;1532,1535,1533;,
3;1533,1535,1534;,
3;1536,1539,1537;,
3;1537,1539,1538;,
3;1540,1543,1541;,
3;1541,1543,1542;,
3;1544,1547,1545;,
3;1545,1547,1546;,
3;1548,1551,1549;,
3;1549,1551,1550;,
3;1552,1555,1553;,
3;1553,1555,1554;,
3;1556,1559,1557;,
3;1557,1559,1558;,
3;1560,1563,1561;,
3;1561,1563,1562;,
3;1564,1567,1565;,
3;1565,1567,1566;,
3;1568,1571,1569;,
3;1569,1571,1570;,
3;1572,1575,1573;,
3;1573,1575,1574;,
3;1576,1579,1577;,
3;1577,1579,1578;,
3;1580,1583,1581;,
3;1581,1583,1582;,
3;1584,1587,1585;,
3;1585,1587,1586;,
3;1588,1591,1589;,
3;1589,1591,1590;,
3;1592,1595,1593;,
3;1593,1595,1594;,
3;1596,1599,1597;,
3;1597,1599,1598;,
3;1600,1602,1601;,
3;1603,1605,1604;,
3;1606,1608,1607;,
3;1609,1611,1610;,
3;1612,1614,1613;,
3;1615,1617,1616;,
3;1618,1620,1619;,
3;1621,1623,1622;,
3;1624,1626,1625;,
3;1627,1629,1628;,
3;1630,1632,1631;,
3;1633,1635,1634;,
3;1636,1638,1637;,
3;1639,1641,1640;,
3;1642,1644,1643;,
3;1645,1647,1646;,
3;1648,1650,1649;,
3;1651,1653,1652;,
3;1654,1656,1655;,
3;1657,1659,1658;,
3;1660,1662,1661;,
3;1663,1665,1664;,
3;1666,1668,1667;,
3;1669,1671,1670;,
3;1672,1674,1673;,
3;1675,1677,1676;,
3;1678,1680,1679;,
3;1681,1683,1682;,
3;1684,1686,1685;,
3;1687,1689,1688;,
3;1690,1692,1691;,
3;1693,1695,1694;,
3;1696,1698,1697;,
3;1699,1701,1700;,
3;1702,1704,1703;,
3;1705,1707,1706;,
3;1708,1710,1709;,
3;1711,1713,1712;,
3;1714,1716,1715;,
3;1717,1719,1718;;
MeshNormals {
1720;
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951057;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951057;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951057;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951057;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951057;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951057;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951057;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951057;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951057;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.951056;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951056;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.809017;0.000000;0.587785;,
0.951057;-0.000000;0.309016;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.587785;0.000000;0.809017;,
0.809017;0.000000;0.587785;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
0.309017;0.000000;0.951057;,
0.587785;0.000000;0.809017;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.000000;-0.000000;1.000000;,
0.309017;0.000000;0.951057;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.309017;0.000000;0.951056;,
-0.000000;-0.000000;1.000000;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.587785;-0.000000;0.809017;,
-0.309017;0.000000;0.951056;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.809017;-0.000000;0.587785;,
-0.587785;-0.000000;0.809017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-0.951057;-0.000000;0.309017;,
-0.809017;-0.000000;0.587785;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-1.000000;-0.000000;0.000000;,
-0.951057;-0.000000;0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951056;-0.000000;-0.309017;,
-0.951056;-0.000000;-0.309017;,
-1.000000;-0.000000;0.000000;,
-0.951056;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.809017;0.000000;-0.587785;,
-0.951056;-0.000000;-0.309017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.587785;0.000000;-0.809017;,
-0.809017;0.000000;-0.587785;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
-0.309017;0.000000;-0.951057;,
-0.587785;0.000000;-0.809017;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.000000;-0.000000;-1.000000;,
-0.309017;0.000000;-0.951057;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.309017;-0.000000;-0.951056;,
0.000000;-0.000000;-1.000000;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.587785;-0.000000;-0.809017;,
0.309017;-0.000000;-0.951056;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.809017;0.000000;-0.587785;,
0.587785;-0.000000;-0.809017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
0.951057;-0.000000;-0.309017;,
0.809017;0.000000;-0.587785;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;-0.309017;,
1.000000;-0.000000;-0.000001;,
0.951057;-0.000000;0.309016;,
0.951057;-0.000000;0.309016;,
1.000000;-0.000000;-0.000001;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000001;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;-0.000001;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000001;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;-0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;0.000001;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000001;,
0.000000;1.000000;-0.000000;,
0.000000;1.000000;-0.000000;;
840;
3;0,3,1;,
3;1,3,2;,
3;4,7,5;,
3;5,7,6;,
3;8,11,9;,
3;9,11,10;,
3;12,15,13;,
3;13,15,14;,
3;16,19,17;,
3;17,19,18;,
3;20,23,21;,
3;21,23,22;,
3;24,27,25;,
3;25,27,26;,
3;28,31,29;,
3;29,31,30;,
3;32,35,33;,
3;33,35,34;,
3;36,39,37;,
3;37,39,38;,
3;40,43,41;,
3;41,43,42;,
3;44,47,45;,
3;45,47,46;,
3;48,51,49;,
3;49,51,50;,
3;52,55,53;,
3;53,55,54;,
3;56,59,57;,
3;57,59,58;,
3;60,63,61;,
3;61,63,62;,
3;64,67,65;,
3;65,67,66;,
3;68,71,69;,
3;69,71,70;,
3;72,75,73;,
3;73,75,74;,
3;76,79,77;,
3;77,79,78;,
3;80,83,81;,
3;81,83,82;,
3;84,87,85;,
3;85,87,86;,
3;88,91,89;,
3;89,91,90;,
3;92,95,93;,
3;93,95,94;,
3;96,99,97;,
3;97,99,98;,
3;100,103,101;,
3;101,103,102;,
3;104,107,105;,
3;105,107,106;,
3;108,111,109;,
3;109,111,110;,
3;112,115,113;,
3;113,115,114;,
3;116,119,117;,
3;117,119,118;,
3;120,123,121;,
3;121,123,122;,
3;124,127,125;,
3;125,127,126;,
3;128,131,129;,
3;129,131,130;,
3;132,135,133;,
3;133,135,134;,
3;136,139,137;,
3;137,139,138;,
3;140,143,141;,
3;141,143,142;,
3;144,147,145;,
3;145,147,146;,
3;148,151,149;,
3;149,151,150;,
3;152,155,153;,
3;153,155,154;,
3;156,159,157;,
3;157,159,158;,
3;160,163,161;,
3;161,163,162;,
3;164,167,165;,
3;165,167,166;,
3;168,171,169;,
3;169,171,170;,
3;172,175,173;,
3;173,175,174;,
3;176,179,177;,
3;177,179,178;,
3;180,183,181;,
3;181,183,182;,
3;184,187,185;,
3;185,187,186;,
3;188,191,189;,
3;189,191,190;,
3;192,195,193;,
3;193,195,194;,
3;196,199,197;,
3;197,199,198;,
3;200,203,201;,
3;201,203,202;,
3;204,207,205;,
3;205,207,206;,
3;208,211,209;,
3;209,211,210;,
3;212,215,213;,
3;213,215,214;,
3;216,219,217;,
3;217,219,218;,
3;220,223,221;,
3;221,223,222;,
3;224,227,225;,
3;225,227,226;,
3;228,231,229;,
3;229,231,230;,
3;232,235,233;,
3;233,235,234;,
3;236,239,237;,
3;237,239,238;,
3;240,243,241;,
3;241,243,242;,
3;244,247,245;,
3;245,247,246;,
3;248,251,249;,
3;249,251,250;,
3;252,255,253;,
3;253,255,254;,
3;256,259,257;,
3;257,259,258;,
3;260,263,261;,
3;261,263,262;,
3;264,267,265;,
3;265,267,266;,
3;268,271,269;,
3;269,271,270;,
3;272,275,273;,
3;273,275,274;,
3;276,279,277;,
3;277,279,278;,
3;280,283,281;,
3;281,283,282;,
3;284,287,285;,
3;285,287,286;,
3;288,291,289;,
3;289,291,290;,
3;292,295,293;,
3;293,295,294;,
3;296,299,297;,
3;297,299,298;,
3;300,303,301;,
3;301,303,302;,
3;304,307,305;,
3;305,307,306;,
3;308,311,309;,
3;309,311,310;,
3;312,315,313;,
3;313,315,314;,
3;316,319,317;,
3;317,319,318;,
3;320,323,321;,
3;321,323,322;,
3;324,327,325;,
3;325,327,326;,
3;328,331,329;,
3;329,331,330;,
3;332,335,333;,
3;333,335,334;,
3;336,339,337;,
3;337,339,338;,
3;340,343,341;,
3;341,343,342;,
3;344,347,345;,
3;345,347,346;,
3;348,351,349;,
3;349,351,350;,
3;352,355,353;,
3;353,355,354;,
3;356,359,357;,
3;357,359,358;,
3;360,363,361;,
3;361,363,362;,
3;364,367,365;,
3;365,367,366;,
3;368,371,369;,
3;369,371,370;,
3;372,375,373;,
3;373,375,374;,
3;376,379,377;,
3;377,379,378;,
3;380,383,381;,
3;381,383,382;,
3;384,387,385;,
3;385,387,386;,
3;388,391,389;,
3;389,391,390;,
3;392,395,393;,
3;393,395,394;,
3;396,399,397;,
3;397,399,398;,
3;400,403,401;,
3;401,403,402;,
3;404,407,405;,
3;405,407,406;,
3;408,411,409;,
3;409,411,410;,
3;412,415,413;,
3;413,415,414;,
3;416,419,417;,
3;417,419,418;,
3;420,423,421;,
3;421,423,422;,
3;424,427,425;,
3;425,427,426;,
3;428,431,429;,
3;429,431,430;,
3;432,435,433;,
3;433,435,434;,
3;436,439,437;,
3;437,439,438;,
3;440,443,441;,
3;441,443,442;,
3;444,447,445;,
3;445,447,446;,
3;448,451,449;,
3;449,451,450;,
3;452,455,453;,
3;453,455,454;,
3;456,459,457;,
3;457,459,458;,
3;460,463,461;,
3;461,463,462;,
3;464,467,465;,
3;465,467,466;,
3;468,471,469;,
3;469,471,470;,
3;472,475,473;,
3;473,475,474;,
3;476,479,477;,
3;477,479,478;,
3;480,483,481;,
3;481,483,482;,
3;484,487,485;,
3;485,487,486;,
3;488,491,489;,
3;489,491,490;,
3;492,495,493;,
3;493,495,494;,
3;496,499,497;,
3;497,499,498;,
3;500,503,501;,
3;501,503,502;,
3;504,507,505;,
3;505,507,506;,
3;508,511,509;,
3;509,511,510;,
3;512,515,513;,
3;513,515,514;,
3;516,519,517;,
3;517,519,518;,
3;520,523,521;,
3;521,523,522;,
3;524,527,525;,
3;525,527,526;,
3;528,531,529;,
3;529,531,530;,
3;532,535,533;,
3;533,535,534;,
3;536,539,537;,
3;537,539,538;,
3;540,543,541;,
3;541,543,542;,
3;544,547,545;,
3;545,547,546;,
3;548,551,549;,
3;549,551,550;,
3;552,555,553;,
3;553,555,554;,
3;556,559,557;,
3;557,559,558;,
3;560,563,561;,
3;561,563,562;,
3;564,567,565;,
3;565,567,566;,
3;568,571,569;,
3;569,571,570;,
3;572,575,573;,
3;573,575,574;,
3;576,579,577;,
3;577,579,578;,
3;580,583,581;,
3;581,583,582;,
3;584,587,585;,
3;585,587,586;,
3;588,591,589;,
3;589,591,590;,
3;592,595,593;,
3;593,595,594;,
3;596,599,597;,
3;597,599,598;,
3;600,603,601;,
3;601,603,602;,
3;604,607,605;,
3;605,607,606;,
3;608,611,609;,
3;609,611,610;,
3;612,615,613;,
3;613,615,614;,
3;616,619,617;,
3;617,619,618;,
3;620,623,621;,
3;621,623,622;,
3;624,627,625;,
3;625,627,626;,
3;628,631,629;,
3;629,631,630;,
3;632,635,633;,
3;633,635,634;,
3;636,639,637;,
3;637,639,638;,
3;640,643,641;,
3;641,643,642;,
3;644,647,645;,
3;645,647,646;,
3;648,651,649;,
3;649,651,650;,
3;652,655,653;,
3;653,655,654;,
3;656,659,657;,
3;657,659,658;,
3;660,663,661;,
3;661,663,662;,
3;664,667,665;,
3;665,667,666;,
3;668,671,669;,
3;669,671,670;,
3;672,675,673;,
3;673,675,674;,
3;676,679,677;,
3;677,679,678;,
3;680,683,681;,
3;681,683,682;,
3;684,687,685;,
3;685,687,686;,
3;688,691,689;,
3;689,691,690;,
3;692,695,693;,
3;693,695,694;,
3;696,699,697;,
3;697,699,698;,
3;700,703,701;,
3;701,703,702;,
3;704,707,705;,
3;705,707,706;,
3;708,711,709;,
3;709,711,710;,
3;712,715,713;,
3;713,715,714;,
3;716,719,717;,
3;717,719,718;,
3;720,723,721;,
3;721,723,722;,
3;724,727,725;,
3;725,727,726;,
3;728,731,729;,
3;729,731,730;,
3;732,735,733;,
3;733,735,734;,
3;736,739,737;,
3;737,739,738;,
3;740,743,741;,
3;741,743,742;,
3;744,747,745;,
3;745,747,746;,
3;748,751,749;,
3;749,751,750;,
3;752,755,753;,
3;753,755,754;,
3;756,759,757;,
3;757,759,758;,
3;760,763,761;,
3;761,763,762;,
3;764,767,765;,
3;765,767,766;,
3;768,771,769;,
3;769,771,770;,
3;772,775,773;,
3;773,775,774;,
3;776,779,777;,
3;777,779,778;,
3;780,783,781;,
3;781,783,782;,
3;784,787,785;,
3;785,787,786;,
3;788,791,789;,
3;789,791,790;,
3;792,795,793;,
3;793,795,794;,
3;796,799,797;,
3;797,799,798;,
3;800,803,801;,
3;801,803,802;,
3;804,807,805;,
3;805,807,806;,
3;808,811,809;,
3;809,811,810;,
3;812,815,813;,
3;813,815,814;,
3;816,819,817;,
3;817,819,818;,
3;820,823,821;,
3;821,823,822;,
3;824,827,825;,
3;825,827,826;,
3;828,831,829;,
3;829,831,830;,
3;832,835,833;,
3;833,835,834;,
3;836,839,837;,
3;837,839,838;,
3;840,843,841;,
3;841,843,842;,
3;844,847,845;,
3;845,847,846;,
3;848,851,849;,
3;849,851,850;,
3;852,855,853;,
3;853,855,854;,
3;856,859,857;,
3;857,859,858;,
3;860,863,861;,
3;861,863,862;,
3;864,867,865;,
3;865,867,866;,
3;868,871,869;,
3;869,871,870;,
3;872,875,873;,
3;873,875,874;,
3;876,879,877;,
3;877,879,878;,
3;880,883,881;,
3;881,883,882;,
3;884,887,885;,
3;885,887,886;,
3;888,891,889;,
3;889,891,890;,
3;892,895,893;,
3;893,895,894;,
3;896,899,897;,
3;897,899,898;,
3;900,903,901;,
3;901,903,902;,
3;904,907,905;,
3;905,907,906;,
3;908,911,909;,
3;909,911,910;,
3;912,915,913;,
3;913,915,914;,
3;916,919,917;,
3;917,919,918;,
3;920,923,921;,
3;921,923,922;,
3;924,927,925;,
3;925,927,926;,
3;928,931,929;,
3;929,931,930;,
3;932,935,933;,
3;933,935,934;,
3;936,939,937;,
3;937,939,938;,
3;940,943,941;,
3;941,943,942;,
3;944,947,945;,
3;945,947,946;,
3;948,951,949;,
3;949,951,950;,
3;952,955,953;,
3;953,955,954;,
3;956,959,957;,
3;957,959,958;,
3;960,963,961;,
3;961,963,962;,
3;964,967,965;,
3;965,967,966;,
3;968,971,969;,
3;969,971,970;,
3;972,975,973;,
3;973,975,974;,
3;976,979,977;,
3;977,979,978;,
3;980,983,981;,
3;981,983,982;,
3;984,987,985;,
3;985,987,986;,
3;988,991,989;,
3;989,991,990;,
3;992,995,993;,
3;993,995,994;,
3;996,999,997;,
3;997,999,998;,
3;1000,1003,1001;,
3;1001,1003,1002;,
3;1004,1007,1005;,
3;1005,1007,1006;,
3;1008,1011,1009;,
3;1009,1011,1010;,
3;1012,1015,1013;,
3;1013,1015,1014;,
3;1016,1019,1017;,
3;1017,1019,1018;,
3;1020,1023,1021;,
3;1021,1023,1022;,
3;1024,1027,1025;,
3;1025,1027,1026;,
3;1028,1031,1029;,
3;1029,1031,1030;,
3;1032,1035,1033;,
3;1033,1035,1034;,
3;1036,1039,1037;,
3;1037,1039,1038;,
3;1040,1043,1041;,
3;1041,1043,1042;,
3;1044,1047,1045;,
3;1045,1047,1046;,
3;1048,1051,1049;,
3;1049,1051,1050;,
3;1052,1055,1053;,
3;1053,1055,1054;,
3;1056,1059,1057;,
3;1057,1059,1058;,
3;1060,1063,1061;,
3;1061,1063,1062;,
3;1064,1067,1065;,
3;1065,1067,1066;,
3;1068,1071,1069;,
3;1069,1071,1070;,
3;1072,1075,1073;,
3;1073,1075,1074;,
3;1076,1079,1077;,
3;1077,1079,1078;,
3;1080,1083,1081;,
3;1081,1083,1082;,
3;1084,1087,1085;,
3;1085,1087,1086;,
3;1088,1091,1089;,
3;1089,1091,1090;,
3;1092,1095,1093;,
3;1093,1095,1094;,
3;1096,1099,1097;,
3;1097,1099,1098;,
3;1100,1103,1101;,
3;1101,1103,1102;,
3;1104,1107,1105;,
3;1105,1107,1106;,
3;1108,1111,1109;,
3;1109,1111,1110;,
3;1112,1115,1113;,
3;1113,1115,1114;,
3;1116,1119,1117;,
3;1117,1119,1118;,
3;1120,1123,1121;,
3;1121,1123,1122;,
3;1124,1127,1125;,
3;1125,1127,1126;,
3;1128,1131,1129;,
3;1129,1131,1130;,
3;1132,1135,1133;,
3;1133,1135,1134;,
3;1136,1139,1137;,
3;1137,1139,1138;,
3;1140,1143,1141;,
3;1141,1143,1142;,
3;1144,1147,1145;,
3;1145,1147,1146;,
3;1148,1151,1149;,
3;1149,1151,1150;,
3;1152,1155,1153;,
3;1153,1155,1154;,
3;1156,1159,1157;,
3;1157,1159,1158;,
3;1160,1163,1161;,
3;1161,1163,1162;,
3;1164,1167,1165;,
3;1165,1167,1166;,
3;1168,1171,1169;,
3;1169,1171,1170;,
3;1172,1175,1173;,
3;1173,1175,1174;,
3;1176,1179,1177;,
3;1177,1179,1178;,
3;1180,1183,1181;,
3;1181,1183,1182;,
3;1184,1187,1185;,
3;1185,1187,1186;,
3;1188,1191,1189;,
3;1189,1191,1190;,
3;1192,1195,1193;,
3;1193,1195,1194;,
3;1196,1199,1197;,
3;1197,1199,1198;,
3;1200,1203,1201;,
3;1201,1203,1202;,
3;1204,1207,1205;,
3;1205,1207,1206;,
3;1208,1211,1209;,
3;1209,1211,1210;,
3;1212,1215,1213;,
3;1213,1215,1214;,
3;1216,1219,1217;,
3;1217,1219,1218;,
3;1220,1223,1221;,
3;1221,1223,1222;,
3;1224,1227,1225;,
3;1225,1227,1226;,
3;1228,1231,1229;,
3;1229,1231,1230;,
3;1232,1235,1233;,
3;1233,1235,1234;,
3;1236,1239,1237;,
3;1237,1239,1238;,
3;1240,1243,1241;,
3;1241,1243,1242;,
3;1244,1247,1245;,
3;1245,1247,1246;,
3;1248,1251,1249;,
3;1249,1251,1250;,
3;1252,1255,1253;,
3;1253,1255,1254;,
3;1256,1259,1257;,
3;1257,1259,1258;,
3;1260,1263,1261;,
3;1261,1263,1262;,
3;1264,1267,1265;,
3;1265,1267,1266;,
3;1268,1271,1269;,
3;1269,1271,1270;,
3;1272,1275,1273;,
3;1273,1275,1274;,
3;1276,1279,1277;,
3;1277,1279,1278;,
3;1280,1283,1281;,
3;1281,1283,1282;,
3;1284,1287,1285;,
3;1285,1287,1286;,
3;1288,1291,1289;,
3;1289,1291,1290;,
3;1292,1295,1293;,
3;1293,1295,1294;,
3;1296,1299,1297;,
3;1297,1299,1298;,
3;1300,1303,1301;,
3;1301,1303,1302;,
3;1304,1307,1305;,
3;1305,1307,1306;,
3;1308,1311,1309;,
3;1309,1311,1310;,
3;1312,1315,1313;,
3;1313,1315,1314;,
3;1316,1319,1317;,
3;1317,1319,1318;,
3;1320,1323,1321;,
3;1321,1323,1322;,
3;1324,1327,1325;,
3;1325,1327,1326;,
3;1328,1331,1329;,
3;1329,1331,1330;,
3;1332,1335,1333;,
3;1333,1335,1334;,
3;1336,1339,1337;,
3;1337,1339,1338;,
3;1340,1343,1341;,
3;1341,1343,1342;,
3;1344,1347,1345;,
3;1345,1347,1346;,
3;1348,1351,1349;,
3;1349,1351,1350;,
3;1352,1355,1353;,
3;1353,1355,1354;,
3;1356,1359,1357;,
3;1357,1359,1358;,
3;1360,1363,1361;,
3;1361,1363,1362;,
3;1364,1367,1365;,
3;1365,1367,1366;,
3;1368,1371,1369;,
3;1369,1371,1370;,
3;1372,1375,1373;,
3;1373,1375,1374;,
3;1376,1379,1377;,
3;1377,1379,1378;,
3;1380,1383,1381;,
3;1381,1383,1382;,
3;1384,1387,1385;,
3;1385,1387,1386;,
3;1388,1391,1389;,
3;1389,1391,1390;,
3;1392,1395,1393;,
3;1393,1395,1394;,
3;1396,1399,1397;,
3;1397,1399,1398;,
3;1400,1403,1401;,
3;1401,1403,1402;,
3;1404,1407,1405;,
3;1405,1407,1406;,
3;1408,1411,1409;,
3;1409,1411,1410;,
3;1412,1415,1413;,
3;1413,1415,1414;,
3;1416,1419,1417;,
3;1417,1419,1418;,
3;1420,1423,1421;,
3;1421,1423,1422;,
3;1424,1427,1425;,
3;1425,1427,1426;,
3;1428,1431,1429;,
3;1429,1431,1430;,
3;1432,1435,1433;,
3;1433,1435,1434;,
3;1436,1439,1437;,
3;1437,1439,1438;,
3;1440,1443,1441;,
3;1441,1443,1442;,
3;1444,1447,1445;,
3;1445,1447,1446;,
3;1448,1451,1449;,
3;1449,1451,1450;,
3;1452,1455,1453;,
3;1453,1455,1454;,
3;1456,1459,1457;,
3;1457,1459,1458;,
3;1460,1463,1461;,
3;1461,1463,1462;,
3;1464,1467,1465;,
3;1465,1467,1466;,
3;1468,1471,1469;,
3;1469,1471,1470;,
3;1472,1475,1473;,
3;1473,1475,1474;,
3;1476,1479,1477;,
3;1477,1479,1478;,
3;1480,1483,1481;,
3;1481,1483,1482;,
3;1484,1487,1485;,
3;1485,1487,1486;,
3;1488,1491,1489;,
3;1489,1491,1490;,
3;1492,1495,1493;,
3;1493,1495,1494;,
3;1496,1499,1497;,
3;1497,1499,1498;,
3;1500,1503,1501;,
3;1501,1503,1502;,
3;1504,1507,1505;,
3;1505,1507,1506;,
3;1508,1511,1509;,
3;1509,1511,1510;,
3;1512,1515,1513;,
3;1513,1515,1514;,
3;1516,1519,1517;,
3;1517,1519,1518;,
3;1520,1523,1521;,
3;1521,1523,1522;,
3;1524,1527,1525;,
3;1525,1527,1526;,
3;1528,1531,1529;,
3;1529,1531,1530;,
3;1532,1535,1533;,
3;1533,1535,1534;,
3;1536,1539,1537;,
3;1537,1539,1538;,
3;1540,1543,1541;,
3;1541,1543,1542;,
3;1544,1547,1545;,
3;1545,1547,1546;,
3;1548,1551,1549;,
3;1549,1551,1550;,
3;1552,1555,1553;,
3;1553,1555,1554;,
3;1556,1559,1557;,
3;1557,1559,1558;,
3;1560,1563,1561;,
3;1561,1563,1562;,
3;1564,1567,1565;,
3;1565,1567,1566;,
3;1568,1571,1569;,
3;1569,1571,1570;,
3;1572,1575,1573;,
3;1573,1575,1574;,
3;1576,1579,1577;,
3;1577,1579,1578;,
3;1580,1583,1581;,
3;1581,1583,1582;,
3;1584,1587,1585;,
3;1585,1587,1586;,
3;1588,1591,1589;,
3;1589,1591,1590;,
3;1592,1595,1593;,
3;1593,1595,1594;,
3;1596,1599,1597;,
3;1597,1599,1598;,
3;1600,1602,1601;,
3;1603,1605,1604;,
3;1606,1608,1607;,
3;1609,1611,1610;,
3;1612,1614,1613;,
3;1615,1617,1616;,
3;1618,1620,1619;,
3;1621,1623,1622;,
3;1624,1626,1625;,
3;1627,1629,1628;,
3;1630,1632,1631;,
3;1633,1635,1634;,
3;1636,1638,1637;,
3;1639,1641,1640;,
3;1642,1644,1643;,
3;1645,1647,1646;,
3;1648,1650,1649;,
3;1651,1653,1652;,
3;1654,1656,1655;,
3;1657,1659,1658;,
3;1660,1662,1661;,
3;1663,1665,1664;,
3;1666,1668,1667;,
3;1669,1671,1670;,
3;1672,1674,1673;,
3;1675,1677,1676;,
3;1678,1680,1679;,
3;1681,1683,1682;,
3;1684,1686,1685;,
3;1687,1689,1688;,
3;1690,1692,1691;,
3;1693,1695,1694;,
3;1696,1698,1697;,
3;1699,1701,1700;,
3;1702,1704,1703;,
3;1705,1707,1706;,
3;1708,1710,1709;,
3;1711,1713,1712;,
3;1714,1716,1715;,
3;1717,1719,1718;;
}
MeshTextureCoords {
1720;
0.000000;-0.083333;,
0.026180;-0.083333;,
0.026180;-0.125000;,
0.000000;-0.125000;,
0.026180;-0.083333;,
0.052360;-0.083333;,
0.052360;-0.125000;,
0.026180;-0.125000;,
0.052360;-0.083333;,
0.078540;-0.083333;,
0.078540;-0.125000;,
0.052360;-0.125000;,
0.078540;-0.083333;,
0.104720;-0.083333;,
0.104720;-0.125000;,
0.078540;-0.125000;,
0.104720;-0.083333;,
0.130900;-0.083333;,
0.130900;-0.125000;,
0.104720;-0.125000;,
0.130900;-0.083333;,
0.157080;-0.083333;,
0.157080;-0.125000;,
0.130900;-0.125000;,
0.157080;-0.083333;,
0.183260;-0.083333;,
0.183260;-0.125000;,
0.157080;-0.125000;,
0.183260;-0.083333;,
0.209440;-0.083333;,
0.209440;-0.125000;,
0.183260;-0.125000;,
0.209440;-0.083333;,
0.235619;-0.083333;,
0.235619;-0.125000;,
0.209440;-0.125000;,
0.235619;-0.083333;,
0.261799;-0.083333;,
0.261799;-0.125000;,
0.235619;-0.125000;,
0.261799;-0.083333;,
0.287979;-0.083333;,
0.287979;-0.125000;,
0.261799;-0.125000;,
0.287979;-0.083333;,
0.314159;-0.083333;,
0.314159;-0.125000;,
0.287979;-0.125000;,
0.314159;-0.083333;,
0.340339;-0.083333;,
0.340339;-0.125000;,
0.314159;-0.125000;,
0.340339;-0.083333;,
0.366519;-0.083333;,
0.366519;-0.125000;,
0.340339;-0.125000;,
0.366519;-0.083333;,
0.392699;-0.083333;,
0.392699;-0.125000;,
0.366519;-0.125000;,
0.392699;-0.083333;,
0.418879;-0.083333;,
0.418879;-0.125000;,
0.392699;-0.125000;,
0.418879;-0.083333;,
0.445059;-0.083333;,
0.445059;-0.125000;,
0.418879;-0.125000;,
0.445059;-0.083333;,
0.471239;-0.083333;,
0.471239;-0.125000;,
0.445059;-0.125000;,
0.471239;-0.083333;,
0.497419;-0.083333;,
0.497419;-0.125000;,
0.471239;-0.125000;,
0.497419;-0.083333;,
0.523599;-0.083333;,
0.523599;-0.125000;,
0.497419;-0.125000;,
0.000000;-0.125000;,
0.026180;-0.125000;,
0.026180;-0.166667;,
0.000000;-0.166667;,
0.026180;-0.125000;,
0.052360;-0.125000;,
0.052360;-0.166667;,
0.026180;-0.166667;,
0.052360;-0.125000;,
0.078540;-0.125000;,
0.078540;-0.166667;,
0.052360;-0.166667;,
0.078540;-0.125000;,
0.104720;-0.125000;,
0.104720;-0.166667;,
0.078540;-0.166667;,
0.104720;-0.125000;,
0.130900;-0.125000;,
0.130900;-0.166667;,
0.104720;-0.166667;,
0.130900;-0.125000;,
0.157080;-0.125000;,
0.157080;-0.166667;,
0.130900;-0.166667;,
0.157080;-0.125000;,
0.183260;-0.125000;,
0.183260;-0.166667;,
0.157080;-0.166667;,
0.183260;-0.125000;,
0.209440;-0.125000;,
0.209440;-0.166667;,
0.183260;-0.166667;,
0.209440;-0.125000;,
0.235619;-0.125000;,
0.235619;-0.166667;,
0.209440;-0.166667;,
0.235619;-0.125000;,
0.261799;-0.125000;,
0.261799;-0.166667;,
0.235619;-0.166667;,
0.261799;-0.125000;,
0.287979;-0.125000;,
0.287979;-0.166667;,
0.261799;-0.166667;,
0.287979;-0.125000;,
0.314159;-0.125000;,
0.314159;-0.166667;,
0.287979;-0.166667;,
0.314159;-0.125000;,
0.340339;-0.125000;,
0.340339;-0.166667;,
0.314159;-0.166667;,
0.340339;-0.125000;,
0.366519;-0.125000;,
0.366519;-0.166667;,
0.340339;-0.166667;,
0.366519;-0.125000;,
0.392699;-0.125000;,
0.392699;-0.166667;,
0.366519;-0.166667;,
0.392699;-0.125000;,
0.418879;-0.125000;,
0.418879;-0.166667;,
0.392699;-0.166667;,
0.418879;-0.125000;,
0.445059;-0.125000;,
0.445059;-0.166667;,
0.418879;-0.166667;,
0.445059;-0.125000;,
0.471239;-0.125000;,
0.471239;-0.166667;,
0.445059;-0.166667;,
0.471239;-0.125000;,
0.497419;-0.125000;,
0.497419;-0.166667;,
0.471239;-0.166667;,
0.497419;-0.125000;,
0.523599;-0.125000;,
0.523599;-0.166667;,
0.497419;-0.166667;,
0.000000;-0.166667;,
0.026180;-0.166667;,
0.026180;-0.208333;,
0.000000;-0.208333;,
0.026180;-0.166667;,
0.052360;-0.166667;,
0.052360;-0.208333;,
0.026180;-0.208333;,
0.052360;-0.166667;,
0.078540;-0.166667;,
0.078540;-0.208333;,
0.052360;-0.208333;,
0.078540;-0.166667;,
0.104720;-0.166667;,
0.104720;-0.208333;,
0.078540;-0.208333;,
0.104720;-0.166667;,
0.130900;-0.166667;,
0.130900;-0.208333;,
0.104720;-0.208333;,
0.130900;-0.166667;,
0.157080;-0.166667;,
0.157080;-0.208333;,
0.130900;-0.208333;,
0.157080;-0.166667;,
0.183260;-0.166667;,
0.183260;-0.208333;,
0.157080;-0.208333;,
0.183260;-0.166667;,
0.209440;-0.166667;,
0.209440;-0.208333;,
0.183260;-0.208333;,
0.209440;-0.166667;,
0.235619;-0.166667;,
0.235619;-0.208333;,
0.209440;-0.208333;,
0.235619;-0.166667;,
0.261799;-0.166667;,
0.261799;-0.208333;,
0.235619;-0.208333;,
0.261799;-0.166667;,
0.287979;-0.166667;,
0.287979;-0.208333;,
0.261799;-0.208333;,
0.287979;-0.166667;,
0.314159;-0.166667;,
0.314159;-0.208333;,
0.287979;-0.208333;,
0.314159;-0.166667;,
0.340339;-0.166667;,
0.340339;-0.208333;,
0.314159;-0.208333;,
0.340339;-0.166667;,
0.366519;-0.166667;,
0.366519;-0.208333;,
0.340339;-0.208333;,
0.366519;-0.166667;,
0.392699;-0.166667;,
0.392699;-0.208333;,
0.366519;-0.208333;,
0.392699;-0.166667;,
0.418879;-0.166667;,
0.418879;-0.208333;,
0.392699;-0.208333;,
0.418879;-0.166667;,
0.445059;-0.166667;,
0.445059;-0.208333;,
0.418879;-0.208333;,
0.445059;-0.166667;,
0.471239;-0.166667;,
0.471239;-0.208333;,
0.445059;-0.208333;,
0.471239;-0.166667;,
0.497419;-0.166667;,
0.497419;-0.208333;,
0.471239;-0.208333;,
0.497419;-0.166667;,
0.523599;-0.166667;,
0.523599;-0.208333;,
0.497419;-0.208333;,
0.000000;-0.208333;,
0.026180;-0.208333;,
0.026180;-0.250000;,
0.000000;-0.250000;,
0.026180;-0.208333;,
0.052360;-0.208333;,
0.052360;-0.250000;,
0.026180;-0.250000;,
0.052360;-0.208333;,
0.078540;-0.208333;,
0.078540;-0.250000;,
0.052360;-0.250000;,
0.078540;-0.208333;,
0.104720;-0.208333;,
0.104720;-0.250000;,
0.078540;-0.250000;,
0.104720;-0.208333;,
0.130900;-0.208333;,
0.130900;-0.250000;,
0.104720;-0.250000;,
0.130900;-0.208333;,
0.157080;-0.208333;,
0.157080;-0.250000;,
0.130900;-0.250000;,
0.157080;-0.208333;,
0.183260;-0.208333;,
0.183260;-0.250000;,
0.157080;-0.250000;,
0.183260;-0.208333;,
0.209440;-0.208333;,
0.209440;-0.250000;,
0.183260;-0.250000;,
0.209440;-0.208333;,
0.235619;-0.208333;,
0.235619;-0.250000;,
0.209440;-0.250000;,
0.235619;-0.208333;,
0.261799;-0.208333;,
0.261799;-0.250000;,
0.235619;-0.250000;,
0.261799;-0.208333;,
0.287979;-0.208333;,
0.287979;-0.250000;,
0.261799;-0.250000;,
0.287979;-0.208333;,
0.314159;-0.208333;,
0.314159;-0.250000;,
0.287979;-0.250000;,
0.314159;-0.208333;,
0.340339;-0.208333;,
0.340339;-0.250000;,
0.314159;-0.250000;,
0.340339;-0.208333;,
0.366519;-0.208333;,
0.366519;-0.250000;,
0.340339;-0.250000;,
0.366519;-0.208333;,
0.392699;-0.208333;,
0.392699;-0.250000;,
0.366519;-0.250000;,
0.392699;-0.208333;,
0.418879;-0.208333;,
0.418879;-0.250000;,
0.392699;-0.250000;,
0.418879;-0.208333;,
0.445059;-0.208333;,
0.445059;-0.250000;,
0.418879;-0.250000;,
0.445059;-0.208333;,
0.471239;-0.208333;,
0.471239;-0.250000;,
0.445059;-0.250000;,
0.471239;-0.208333;,
0.497419;-0.208333;,
0.497419;-0.250000;,
0.471239;-0.250000;,
0.497419;-0.208333;,
0.523599;-0.208333;,
0.523599;-0.250000;,
0.497419;-0.250000;,
0.000000;-0.250000;,
0.026180;-0.250000;,
0.026180;-0.291667;,
0.000000;-0.291667;,
0.026180;-0.250000;,
0.052360;-0.250000;,
0.052360;-0.291667;,
0.026180;-0.291667;,
0.052360;-0.250000;,
0.078540;-0.250000;,
0.078540;-0.291667;,
0.052360;-0.291667;,
0.078540;-0.250000;,
0.104720;-0.250000;,
0.104720;-0.291667;,
0.078540;-0.291667;,
0.104720;-0.250000;,
0.130900;-0.250000;,
0.130900;-0.291667;,
0.104720;-0.291667;,
0.130900;-0.250000;,
0.157080;-0.250000;,
0.157080;-0.291667;,
0.130900;-0.291667;,
0.157080;-0.250000;,
0.183260;-0.250000;,
0.183260;-0.291667;,
0.157080;-0.291667;,
0.183260;-0.250000;,
0.209440;-0.250000;,
0.209440;-0.291667;,
0.183260;-0.291667;,
0.209440;-0.250000;,
0.235619;-0.250000;,
0.235619;-0.291667;,
0.209440;-0.291667;,
0.235619;-0.250000;,
0.261799;-0.250000;,
0.261799;-0.291667;,
0.235619;-0.291667;,
0.261799;-0.250000;,
0.287979;-0.250000;,
0.287979;-0.291667;,
0.261799;-0.291667;,
0.287979;-0.250000;,
0.314159;-0.250000;,
0.314159;-0.291667;,
0.287979;-0.291667;,
0.314159;-0.250000;,
0.340339;-0.250000;,
0.340339;-0.291667;,
0.314159;-0.291667;,
0.340339;-0.250000;,
0.366519;-0.250000;,
0.366519;-0.291667;,
0.340339;-0.291667;,
0.366519;-0.250000;,
0.392699;-0.250000;,
0.392699;-0.291667;,
0.366519;-0.291667;,
0.392699;-0.250000;,
0.418879;-0.250000;,
0.418879;-0.291667;,
0.392699;-0.291667;,
0.418879;-0.250000;,
0.445059;-0.250000;,
0.445059;-0.291667;,
0.418879;-0.291667;,
0.445059;-0.250000;,
0.471239;-0.250000;,
0.471239;-0.291667;,
0.445059;-0.291667;,
0.471239;-0.250000;,
0.497419;-0.250000;,
0.497419;-0.291667;,
0.471239;-0.291667;,
0.497419;-0.250000;,
0.523599;-0.250000;,
0.523599;-0.291667;,
0.497419;-0.291667;,
0.000000;-0.291667;,
0.026180;-0.291667;,
0.026180;-0.333333;,
0.000000;-0.333333;,
0.026180;-0.291667;,
0.052360;-0.291667;,
0.052360;-0.333333;,
0.026180;-0.333333;,
0.052360;-0.291667;,
0.078540;-0.291667;,
0.078540;-0.333333;,
0.052360;-0.333333;,
0.078540;-0.291667;,
0.104720;-0.291667;,
0.104720;-0.333333;,
0.078540;-0.333333;,
0.104720;-0.291667;,
0.130900;-0.291667;,
0.130900;-0.333333;,
0.104720;-0.333333;,
0.130900;-0.291667;,
0.157080;-0.291667;,
0.157080;-0.333333;,
0.130900;-0.333333;,
0.157080;-0.291667;,
0.183260;-0.291667;,
0.183260;-0.333333;,
0.157080;-0.333333;,
0.183260;-0.291667;,
0.209440;-0.291667;,
0.209440;-0.333333;,
0.183260;-0.333333;,
0.209440;-0.291667;,
0.235619;-0.291667;,
0.235619;-0.333333;,
0.209440;-0.333333;,
0.235619;-0.291667;,
0.261799;-0.291667;,
0.261799;-0.333333;,
0.235619;-0.333333;,
0.261799;-0.291667;,
0.287979;-0.291667;,
0.287979;-0.333333;,
0.261799;-0.333333;,
0.287979;-0.291667;,
0.314159;-0.291667;,
0.314159;-0.333333;,
0.287979;-0.333333;,
0.314159;-0.291667;,
0.340339;-0.291667;,
0.340339;-0.333333;,
0.314159;-0.333333;,
0.340339;-0.291667;,
0.366519;-0.291667;,
0.366519;-0.333333;,
0.340339;-0.333333;,
0.366519;-0.291667;,
0.392699;-0.291667;,
0.392699;-0.333333;,
0.366519;-0.333333;,
0.392699;-0.291667;,
0.418879;-0.291667;,
0.418879;-0.333333;,
0.392699;-0.333333;,
0.418879;-0.291667;,
0.445059;-0.291667;,
0.445059;-0.333333;,
0.418879;-0.333333;,
0.445059;-0.291667;,
0.471239;-0.291667;,
0.471239;-0.333333;,
0.445059;-0.333333;,
0.471239;-0.291667;,
0.497419;-0.291667;,
0.497419;-0.333333;,
0.471239;-0.333333;,
0.497419;-0.291667;,
0.523599;-0.291667;,
0.523599;-0.333333;,
0.497419;-0.333333;,
0.000000;-0.333333;,
0.026180;-0.333333;,
0.026180;-0.375000;,
0.000000;-0.375000;,
0.026180;-0.333333;,
0.052360;-0.333333;,
0.052360;-0.375000;,
0.026180;-0.375000;,
0.052360;-0.333333;,
0.078540;-0.333333;,
0.078540;-0.375000;,
0.052360;-0.375000;,
0.078540;-0.333333;,
0.104720;-0.333333;,
0.104720;-0.375000;,
0.078540;-0.375000;,
0.104720;-0.333333;,
0.130900;-0.333333;,
0.130900;-0.375000;,
0.104720;-0.375000;,
0.130900;-0.333333;,
0.157080;-0.333333;,
0.157080;-0.375000;,
0.130900;-0.375000;,
0.157080;-0.333333;,
0.183260;-0.333333;,
0.183260;-0.375000;,
0.157080;-0.375000;,
0.183260;-0.333333;,
0.209440;-0.333333;,
0.209440;-0.375000;,
0.183260;-0.375000;,
0.209440;-0.333333;,
0.235619;-0.333333;,
0.235619;-0.375000;,
0.209440;-0.375000;,
0.235619;-0.333333;,
0.261799;-0.333333;,
0.261799;-0.375000;,
0.235619;-0.375000;,
0.261799;-0.333333;,
0.287979;-0.333333;,
0.287979;-0.375000;,
0.261799;-0.375000;,
0.287979;-0.333333;,
0.314159;-0.333333;,
0.314159;-0.375000;,
0.287979;-0.375000;,
0.314159;-0.333333;,
0.340339;-0.333333;,
0.340339;-0.375000;,
0.314159;-0.375000;,
0.340339;-0.333333;,
0.366519;-0.333333;,
0.366519;-0.375000;,
0.340339;-0.375000;,
0.366519;-0.333333;,
0.392699;-0.333333;,
0.392699;-0.375000;,
0.366519;-0.375000;,
0.392699;-0.333333;,
0.418879;-0.333333;,
0.418879;-0.375000;,
0.392699;-0.375000;,
0.418879;-0.333333;,
0.445059;-0.333333;,
0.445059;-0.375000;,
0.418879;-0.375000;,
0.445059;-0.333333;,
0.471239;-0.333333;,
0.471239;-0.375000;,
0.445059;-0.375000;,
0.471239;-0.333333;,
0.497419;-0.333333;,
0.497419;-0.375000;,
0.471239;-0.375000;,
0.497419;-0.333333;,
0.523599;-0.333333;,
0.523599;-0.375000;,
0.497419;-0.375000;,
0.000000;-0.375000;,
0.026180;-0.375000;,
0.026180;-0.416667;,
0.000000;-0.416667;,
0.026180;-0.375000;,
0.052360;-0.375000;,
0.052360;-0.416667;,
0.026180;-0.416667;,
0.052360;-0.375000;,
0.078540;-0.375000;,
0.078540;-0.416667;,
0.052360;-0.416667;,
0.078540;-0.375000;,
0.104720;-0.375000;,
0.104720;-0.416667;,
0.078540;-0.416667;,
0.104720;-0.375000;,
0.130900;-0.375000;,
0.130900;-0.416667;,
0.104720;-0.416667;,
0.130900;-0.375000;,
0.157080;-0.375000;,
0.157080;-0.416667;,
0.130900;-0.416667;,
0.157080;-0.375000;,
0.183260;-0.375000;,
0.183260;-0.416667;,
0.157080;-0.416667;,
0.183260;-0.375000;,
0.209440;-0.375000;,
0.209440;-0.416667;,
0.183260;-0.416667;,
0.209440;-0.375000;,
0.235619;-0.375000;,
0.235619;-0.416667;,
0.209440;-0.416667;,
0.235619;-0.375000;,
0.261799;-0.375000;,
0.261799;-0.416667;,
0.235619;-0.416667;,
0.261799;-0.375000;,
0.287979;-0.375000;,
0.287979;-0.416667;,
0.261799;-0.416667;,
0.287979;-0.375000;,
0.314159;-0.375000;,
0.314159;-0.416667;,
0.287979;-0.416667;,
0.314159;-0.375000;,
0.340339;-0.375000;,
0.340339;-0.416667;,
0.314159;-0.416667;,
0.340339;-0.375000;,
0.366519;-0.375000;,
0.366519;-0.416667;,
0.340339;-0.416667;,
0.366519;-0.375000;,
0.392699;-0.375000;,
0.392699;-0.416667;,
0.366519;-0.416667;,
0.392699;-0.375000;,
0.418879;-0.375000;,
0.418879;-0.416667;,
0.392699;-0.416667;,
0.418879;-0.375000;,
0.445059;-0.375000;,
0.445059;-0.416667;,
0.418879;-0.416667;,
0.445059;-0.375000;,
0.471239;-0.375000;,
0.471239;-0.416667;,
0.445059;-0.416667;,
0.471239;-0.375000;,
0.497419;-0.375000;,
0.497419;-0.416667;,
0.471239;-0.416667;,
0.497419;-0.375000;,
0.523599;-0.375000;,
0.523599;-0.416667;,
0.497419;-0.416667;,
0.000000;-0.416667;,
0.026180;-0.416667;,
0.026180;-0.458333;,
0.000000;-0.458333;,
0.026180;-0.416667;,
0.052360;-0.416667;,
0.052360;-0.458333;,
0.026180;-0.458333;,
0.052360;-0.416667;,
0.078540;-0.416667;,
0.078540;-0.458333;,
0.052360;-0.458333;,
0.078540;-0.416667;,
0.104720;-0.416667;,
0.104720;-0.458333;,
0.078540;-0.458333;,
0.104720;-0.416667;,
0.130900;-0.416667;,
0.130900;-0.458333;,
0.104720;-0.458333;,
0.130900;-0.416667;,
0.157080;-0.416667;,
0.157080;-0.458333;,
0.130900;-0.458333;,
0.157080;-0.416667;,
0.183260;-0.416667;,
0.183260;-0.458333;,
0.157080;-0.458333;,
0.183260;-0.416667;,
0.209440;-0.416667;,
0.209440;-0.458333;,
0.183260;-0.458333;,
0.209440;-0.416667;,
0.235619;-0.416667;,
0.235619;-0.458333;,
0.209440;-0.458333;,
0.235619;-0.416667;,
0.261799;-0.416667;,
0.261799;-0.458333;,
0.235619;-0.458333;,
0.261799;-0.416667;,
0.287979;-0.416667;,
0.287979;-0.458333;,
0.261799;-0.458333;,
0.287979;-0.416667;,
0.314159;-0.416667;,
0.314159;-0.458333;,
0.287979;-0.458333;,
0.314159;-0.416667;,
0.340339;-0.416667;,
0.340339;-0.458333;,
0.314159;-0.458333;,
0.340339;-0.416667;,
0.366519;-0.416667;,
0.366519;-0.458333;,
0.340339;-0.458333;,
0.366519;-0.416667;,
0.392699;-0.416667;,
0.392699;-0.458333;,
0.366519;-0.458333;,
0.392699;-0.416667;,
0.418879;-0.416667;,
0.418879;-0.458333;,
0.392699;-0.458333;,
0.418879;-0.416667;,
0.445059;-0.416667;,
0.445059;-0.458333;,
0.418879;-0.458333;,
0.445059;-0.416667;,
0.471239;-0.416667;,
0.471239;-0.458333;,
0.445059;-0.458333;,
0.471239;-0.416667;,
0.497419;-0.416667;,
0.497419;-0.458333;,
0.471239;-0.458333;,
0.497419;-0.416667;,
0.523599;-0.416667;,
0.523599;-0.458333;,
0.497419;-0.458333;,
0.000000;-0.458333;,
0.026180;-0.458333;,
0.026180;-0.500000;,
0.000000;-0.500000;,
0.026180;-0.458333;,
0.052360;-0.458333;,
0.052360;-0.500000;,
0.026180;-0.500000;,
0.052360;-0.458333;,
0.078540;-0.458333;,
0.078540;-0.500000;,
0.052360;-0.500000;,
0.078540;-0.458333;,
0.104720;-0.458333;,
0.104720;-0.500000;,
0.078540;-0.500000;,
0.104720;-0.458333;,
0.130900;-0.458333;,
0.130900;-0.500000;,
0.104720;-0.500000;,
0.130900;-0.458333;,
0.157080;-0.458333;,
0.157080;-0.500000;,
0.130900;-0.500000;,
0.157080;-0.458333;,
0.183260;-0.458333;,
0.183260;-0.500000;,
0.157080;-0.500000;,
0.183260;-0.458333;,
0.209440;-0.458333;,
0.209440;-0.500000;,
0.183260;-0.500000;,
0.209440;-0.458333;,
0.235619;-0.458333;,
0.235619;-0.500000;,
0.209440;-0.500000;,
0.235619;-0.458333;,
0.261799;-0.458333;,
0.261799;-0.500000;,
0.235619;-0.500000;,
0.261799;-0.458333;,
0.287979;-0.458333;,
0.287979;-0.500000;,
0.261799;-0.500000;,
0.287979;-0.458333;,
0.314159;-0.458333;,
0.314159;-0.500000;,
0.287979;-0.500000;,
0.314159;-0.458333;,
0.340339;-0.458333;,
0.340339;-0.500000;,
0.314159;-0.500000;,
0.340339;-0.458333;,
0.366519;-0.458333;,
0.366519;-0.500000;,
0.340339;-0.500000;,
0.366519;-0.458333;,
0.392699;-0.458333;,
0.392699;-0.500000;,
0.366519;-0.500000;,
0.392699;-0.458333;,
0.418879;-0.458333;,
0.418879;-0.500000;,
0.392699;-0.500000;,
0.418879;-0.458333;,
0.445059;-0.458333;,
0.445059;-0.500000;,
0.418879;-0.500000;,
0.445059;-0.458333;,
0.471239;-0.458333;,
0.471239;-0.500000;,
0.445059;-0.500000;,
0.471239;-0.458333;,
0.497419;-0.458333;,
0.497419;-0.500000;,
0.471239;-0.500000;,
0.497419;-0.458333;,
0.523599;-0.458333;,
0.523599;-0.500000;,
0.497419;-0.500000;,
0.000000;-0.500000;,
0.026180;-0.500000;,
0.026180;-0.541667;,
0.000000;-0.541667;,
0.026180;-0.500000;,
0.052360;-0.500000;,
0.052360;-0.541667;,
0.026180;-0.541667;,
0.052360;-0.500000;,
0.078540;-0.500000;,
0.078540;-0.541667;,
0.052360;-0.541667;,
0.078540;-0.500000;,
0.104720;-0.500000;,
0.104720;-0.541667;,
0.078540;-0.541667;,
0.104720;-0.500000;,
0.130900;-0.500000;,
0.130900;-0.541667;,
0.104720;-0.541667;,
0.130900;-0.500000;,
0.157080;-0.500000;,
0.157080;-0.541667;,
0.130900;-0.541667;,
0.157080;-0.500000;,
0.183260;-0.500000;,
0.183260;-0.541667;,
0.157080;-0.541667;,
0.183260;-0.500000;,
0.209440;-0.500000;,
0.209440;-0.541667;,
0.183260;-0.541667;,
0.209440;-0.500000;,
0.235619;-0.500000;,
0.235619;-0.541667;,
0.209440;-0.541667;,
0.235619;-0.500000;,
0.261799;-0.500000;,
0.261799;-0.541667;,
0.235619;-0.541667;,
0.261799;-0.500000;,
0.287979;-0.500000;,
0.287979;-0.541667;,
0.261799;-0.541667;,
0.287979;-0.500000;,
0.314159;-0.500000;,
0.314159;-0.541667;,
0.287979;-0.541667;,
0.314159;-0.500000;,
0.340339;-0.500000;,
0.340339;-0.541667;,
0.314159;-0.541667;,
0.340339;-0.500000;,
0.366519;-0.500000;,
0.366519;-0.541667;,
0.340339;-0.541667;,
0.366519;-0.500000;,
0.392699;-0.500000;,
0.392699;-0.541667;,
0.366519;-0.541667;,
0.392699;-0.500000;,
0.418879;-0.500000;,
0.418879;-0.541667;,
0.392699;-0.541667;,
0.418879;-0.500000;,
0.445059;-0.500000;,
0.445059;-0.541667;,
0.418879;-0.541667;,
0.445059;-0.500000;,
0.471239;-0.500000;,
0.471239;-0.541667;,
0.445059;-0.541667;,
0.471239;-0.500000;,
0.497419;-0.500000;,
0.497419;-0.541667;,
0.471239;-0.541667;,
0.497419;-0.500000;,
0.523599;-0.500000;,
0.523599;-0.541667;,
0.497419;-0.541667;,
0.000000;-0.541667;,
0.026180;-0.541667;,
0.026180;-0.583333;,
0.000000;-0.583333;,
0.026180;-0.541667;,
0.052360;-0.541667;,
0.052360;-0.583333;,
0.026180;-0.583333;,
0.052360;-0.541667;,
0.078540;-0.541667;,
0.078540;-0.583333;,
0.052360;-0.583333;,
0.078540;-0.541667;,
0.104720;-0.541667;,
0.104720;-0.583333;,
0.078540;-0.583333;,
0.104720;-0.541667;,
0.130900;-0.541667;,
0.130900;-0.583333;,
0.104720;-0.583333;,
0.130900;-0.541667;,
0.157080;-0.541667;,
0.157080;-0.583333;,
0.130900;-0.583333;,
0.157080;-0.541667;,
0.183260;-0.541667;,
0.183260;-0.583333;,
0.157080;-0.583333;,
0.183260;-0.541667;,
0.209440;-0.541667;,
0.209440;-0.583333;,
0.183260;-0.583333;,
0.209440;-0.541667;,
0.235619;-0.541667;,
0.235619;-0.583333;,
0.209440;-0.583333;,
0.235619;-0.541667;,
0.261799;-0.541667;,
0.261799;-0.583333;,
0.235619;-0.583333;,
0.261799;-0.541667;,
0.287979;-0.541667;,
0.287979;-0.583333;,
0.261799;-0.583333;,
0.287979;-0.541667;,
0.314159;-0.541667;,
0.314159;-0.583333;,
0.287979;-0.583333;,
0.314159;-0.541667;,
0.340339;-0.541667;,
0.340339;-0.583333;,
0.314159;-0.583333;,
0.340339;-0.541667;,
0.366519;-0.541667;,
0.366519;-0.583333;,
0.340339;-0.583333;,
0.366519;-0.541667;,
0.392699;-0.541667;,
0.392699;-0.583333;,
0.366519;-0.583333;,
0.392699;-0.541667;,
0.418879;-0.541667;,
0.418879;-0.583333;,
0.392699;-0.583333;,
0.418879;-0.541667;,
0.445059;-0.541667;,
0.445059;-0.583333;,
0.418879;-0.583333;,
0.445059;-0.541667;,
0.471239;-0.541667;,
0.471239;-0.583333;,
0.445059;-0.583333;,
0.471239;-0.541667;,
0.497419;-0.541667;,
0.497419;-0.583333;,
0.471239;-0.583333;,
0.497419;-0.541667;,
0.523599;-0.541667;,
0.523599;-0.583333;,
0.497419;-0.583333;,
0.000000;-0.583333;,
0.026180;-0.583333;,
0.026180;-0.625000;,
0.000000;-0.625000;,
0.026180;-0.583333;,
0.052360;-0.583333;,
0.052360;-0.625000;,
0.026180;-0.625000;,
0.052360;-0.583333;,
0.078540;-0.583333;,
0.078540;-0.625000;,
0.052360;-0.625000;,
0.078540;-0.583333;,
0.104720;-0.583333;,
0.104720;-0.625000;,
0.078540;-0.625000;,
0.104720;-0.583333;,
0.130900;-0.583333;,
0.130900;-0.625000;,
0.104720;-0.625000;,
0.130900;-0.583333;,
0.157080;-0.583333;,
0.157080;-0.625000;,
0.130900;-0.625000;,
0.157080;-0.583333;,
0.183260;-0.583333;,
0.183260;-0.625000;,
0.157080;-0.625000;,
0.183260;-0.583333;,
0.209440;-0.583333;,
0.209440;-0.625000;,
0.183260;-0.625000;,
0.209440;-0.583333;,
0.235619;-0.583333;,
0.235619;-0.625000;,
0.209440;-0.625000;,
0.235619;-0.583333;,
0.261799;-0.583333;,
0.261799;-0.625000;,
0.235619;-0.625000;,
0.261799;-0.583333;,
0.287979;-0.583333;,
0.287979;-0.625000;,
0.261799;-0.625000;,
0.287979;-0.583333;,
0.314159;-0.583333;,
0.314159;-0.625000;,
0.287979;-0.625000;,
0.314159;-0.583333;,
0.340339;-0.583333;,
0.340339;-0.625000;,
0.314159;-0.625000;,
0.340339;-0.583333;,
0.366519;-0.583333;,
0.366519;-0.625000;,
0.340339;-0.625000;,
0.366519;-0.583333;,
0.392699;-0.583333;,
0.392699;-0.625000;,
0.366519;-0.625000;,
0.392699;-0.583333;,
0.418879;-0.583333;,
0.418879;-0.625000;,
0.392699;-0.625000;,
0.418879;-0.583333;,
0.445059;-0.583333;,
0.445059;-0.625000;,
0.418879;-0.625000;,
0.445059;-0.583333;,
0.471239;-0.583333;,
0.471239;-0.625000;,
0.445059;-0.625000;,
0.471239;-0.583333;,
0.497419;-0.583333;,
0.497419;-0.625000;,
0.471239;-0.625000;,
0.497419;-0.583333;,
0.523599;-0.583333;,
0.523599;-0.625000;,
0.497419;-0.625000;,
0.000000;-0.625000;,
0.026180;-0.625000;,
0.026180;-0.666667;,
0.000000;-0.666667;,
0.026180;-0.625000;,
0.052360;-0.625000;,
0.052360;-0.666667;,
0.026180;-0.666667;,
0.052360;-0.625000;,
0.078540;-0.625000;,
0.078540;-0.666667;,
0.052360;-0.666667;,
0.078540;-0.625000;,
0.104720;-0.625000;,
0.104720;-0.666667;,
0.078540;-0.666667;,
0.104720;-0.625000;,
0.130900;-0.625000;,
0.130900;-0.666667;,
0.104720;-0.666667;,
0.130900;-0.625000;,
0.157080;-0.625000;,
0.157080;-0.666667;,
0.130900;-0.666667;,
0.157080;-0.625000;,
0.183260;-0.625000;,
0.183260;-0.666667;,
0.157080;-0.666667;,
0.183260;-0.625000;,
0.209440;-0.625000;,
0.209440;-0.666667;,
0.183260;-0.666667;,
0.209440;-0.625000;,
0.235619;-0.625000;,
0.235619;-0.666667;,
0.209440;-0.666667;,
0.235619;-0.625000;,
0.261799;-0.625000;,
0.261799;-0.666667;,
0.235619;-0.666667;,
0.261799;-0.625000;,
0.287979;-0.625000;,
0.287979;-0.666667;,
0.261799;-0.666667;,
0.287979;-0.625000;,
0.314159;-0.625000;,
0.314159;-0.666667;,
0.287979;-0.666667;,
0.314159;-0.625000;,
0.340339;-0.625000;,
0.340339;-0.666667;,
0.314159;-0.666667;,
0.340339;-0.625000;,
0.366519;-0.625000;,
0.366519;-0.666667;,
0.340339;-0.666667;,
0.366519;-0.625000;,
0.392699;-0.625000;,
0.392699;-0.666667;,
0.366519;-0.666667;,
0.392699;-0.625000;,
0.418879;-0.625000;,
0.418879;-0.666667;,
0.392699;-0.666667;,
0.418879;-0.625000;,
0.445059;-0.625000;,
0.445059;-0.666667;,
0.418879;-0.666667;,
0.445059;-0.625000;,
0.471239;-0.625000;,
0.471239;-0.666667;,
0.445059;-0.666667;,
0.471239;-0.625000;,
0.497419;-0.625000;,
0.497419;-0.666667;,
0.471239;-0.666667;,
0.497419;-0.625000;,
0.523599;-0.625000;,
0.523599;-0.666667;,
0.497419;-0.666667;,
0.000000;-0.666667;,
0.026180;-0.666667;,
0.026180;-0.708333;,
0.000000;-0.708333;,
0.026180;-0.666667;,
0.052360;-0.666667;,
0.052360;-0.708333;,
0.026180;-0.708333;,
0.052360;-0.666667;,
0.078540;-0.666667;,
0.078540;-0.708333;,
0.052360;-0.708333;,
0.078540;-0.666667;,
0.104720;-0.666667;,
0.104720;-0.708333;,
0.078540;-0.708333;,
0.104720;-0.666667;,
0.130900;-0.666667;,
0.130900;-0.708333;,
0.104720;-0.708333;,
0.130900;-0.666667;,
0.157080;-0.666667;,
0.157080;-0.708333;,
0.130900;-0.708333;,
0.157080;-0.666667;,
0.183260;-0.666667;,
0.183260;-0.708333;,
0.157080;-0.708333;,
0.183260;-0.666667;,
0.209440;-0.666667;,
0.209440;-0.708333;,
0.183260;-0.708333;,
0.209440;-0.666667;,
0.235619;-0.666667;,
0.235619;-0.708333;,
0.209440;-0.708333;,
0.235619;-0.666667;,
0.261799;-0.666667;,
0.261799;-0.708333;,
0.235619;-0.708333;,
0.261799;-0.666667;,
0.287979;-0.666667;,
0.287979;-0.708333;,
0.261799;-0.708333;,
0.287979;-0.666667;,
0.314159;-0.666667;,
0.314159;-0.708333;,
0.287979;-0.708333;,
0.314159;-0.666667;,
0.340339;-0.666667;,
0.340339;-0.708333;,
0.314159;-0.708333;,
0.340339;-0.666667;,
0.366519;-0.666667;,
0.366519;-0.708333;,
0.340339;-0.708333;,
0.366519;-0.666667;,
0.392699;-0.666667;,
0.392699;-0.708333;,
0.366519;-0.708333;,
0.392699;-0.666667;,
0.418879;-0.666667;,
0.418879;-0.708333;,
0.392699;-0.708333;,
0.418879;-0.666667;,
0.445059;-0.666667;,
0.445059;-0.708333;,
0.418879;-0.708333;,
0.445059;-0.666667;,
0.471239;-0.666667;,
0.471239;-0.708333;,
0.445059;-0.708333;,
0.471239;-0.666667;,
0.497419;-0.666667;,
0.497419;-0.708333;,
0.471239;-0.708333;,
0.497419;-0.666667;,
0.523599;-0.666667;,
0.523599;-0.708333;,
0.497419;-0.708333;,
0.000000;-0.708333;,
0.026180;-0.708333;,
0.026180;-0.750000;,
0.000000;-0.750000;,
0.026180;-0.708333;,
0.052360;-0.708333;,
0.052360;-0.750000;,
0.026180;-0.750000;,
0.052360;-0.708333;,
0.078540;-0.708333;,
0.078540;-0.750000;,
0.052360;-0.750000;,
0.078540;-0.708333;,
0.104720;-0.708333;,
0.104720;-0.750000;,
0.078540;-0.750000;,
0.104720;-0.708333;,
0.130900;-0.708333;,
0.130900;-0.750000;,
0.104720;-0.750000;,
0.130900;-0.708333;,
0.157080;-0.708333;,
0.157080;-0.750000;,
0.130900;-0.750000;,
0.157080;-0.708333;,
0.183260;-0.708333;,
0.183260;-0.750000;,
0.157080;-0.750000;,
0.183260;-0.708333;,
0.209440;-0.708333;,
0.209440;-0.750000;,
0.183260;-0.750000;,
0.209440;-0.708333;,
0.235619;-0.708333;,
0.235619;-0.750000;,
0.209440;-0.750000;,
0.235619;-0.708333;,
0.261799;-0.708333;,
0.261799;-0.750000;,
0.235619;-0.750000;,
0.261799;-0.708333;,
0.287979;-0.708333;,
0.287979;-0.750000;,
0.261799;-0.750000;,
0.287979;-0.708333;,
0.314159;-0.708333;,
0.314159;-0.750000;,
0.287979;-0.750000;,
0.314159;-0.708333;,
0.340339;-0.708333;,
0.340339;-0.750000;,
0.314159;-0.750000;,
0.340339;-0.708333;,
0.366519;-0.708333;,
0.366519;-0.750000;,
0.340339;-0.750000;,
0.366519;-0.708333;,
0.392699;-0.708333;,
0.392699;-0.750000;,
0.366519;-0.750000;,
0.392699;-0.708333;,
0.418879;-0.708333;,
0.418879;-0.750000;,
0.392699;-0.750000;,
0.418879;-0.708333;,
0.445059;-0.708333;,
0.445059;-0.750000;,
0.418879;-0.750000;,
0.445059;-0.708333;,
0.471239;-0.708333;,
0.471239;-0.750000;,
0.445059;-0.750000;,
0.471239;-0.708333;,
0.497419;-0.708333;,
0.497419;-0.750000;,
0.471239;-0.750000;,
0.497419;-0.708333;,
0.523599;-0.708333;,
0.523599;-0.750000;,
0.497419;-0.750000;,
0.000000;-0.750000;,
0.026180;-0.750000;,
0.026180;-0.791667;,
0.000000;-0.791667;,
0.026180;-0.750000;,
0.052360;-0.750000;,
0.052360;-0.791667;,
0.026180;-0.791667;,
0.052360;-0.750000;,
0.078540;-0.750000;,
0.078540;-0.791667;,
0.052360;-0.791667;,
0.078540;-0.750000;,
0.104720;-0.750000;,
0.104720;-0.791667;,
0.078540;-0.791667;,
0.104720;-0.750000;,
0.130900;-0.750000;,
0.130900;-0.791667;,
0.104720;-0.791667;,
0.130900;-0.750000;,
0.157080;-0.750000;,
0.157080;-0.791667;,
0.130900;-0.791667;,
0.157080;-0.750000;,
0.183260;-0.750000;,
0.183260;-0.791667;,
0.157080;-0.791667;,
0.183260;-0.750000;,
0.209440;-0.750000;,
0.209440;-0.791667;,
0.183260;-0.791667;,
0.209440;-0.750000;,
0.235619;-0.750000;,
0.235619;-0.791667;,
0.209440;-0.791667;,
0.235619;-0.750000;,
0.261799;-0.750000;,
0.261799;-0.791667;,
0.235619;-0.791667;,
0.261799;-0.750000;,
0.287979;-0.750000;,
0.287979;-0.791667;,
0.261799;-0.791667;,
0.287979;-0.750000;,
0.314159;-0.750000;,
0.314159;-0.791667;,
0.287979;-0.791667;,
0.314159;-0.750000;,
0.340339;-0.750000;,
0.340339;-0.791667;,
0.314159;-0.791667;,
0.340339;-0.750000;,
0.366519;-0.750000;,
0.366519;-0.791667;,
0.340339;-0.791667;,
0.366519;-0.750000;,
0.392699;-0.750000;,
0.392699;-0.791667;,
0.366519;-0.791667;,
0.392699;-0.750000;,
0.418879;-0.750000;,
0.418879;-0.791667;,
0.392699;-0.791667;,
0.418879;-0.750000;,
0.445059;-0.750000;,
0.445059;-0.791667;,
0.418879;-0.791667;,
0.445059;-0.750000;,
0.471239;-0.750000;,
0.471239;-0.791667;,
0.445059;-0.791667;,
0.471239;-0.750000;,
0.497419;-0.750000;,
0.497419;-0.791667;,
0.471239;-0.791667;,
0.497419;-0.750000;,
0.523599;-0.750000;,
0.523599;-0.791667;,
0.497419;-0.791667;,
0.000000;-0.791667;,
0.026180;-0.791667;,
0.026180;-0.833333;,
0.000000;-0.833333;,
0.026180;-0.791667;,
0.052360;-0.791667;,
0.052360;-0.833333;,
0.026180;-0.833333;,
0.052360;-0.791667;,
0.078540;-0.791667;,
0.078540;-0.833333;,
0.052360;-0.833333;,
0.078540;-0.791667;,
0.104720;-0.791667;,
0.104720;-0.833333;,
0.078540;-0.833333;,
0.104720;-0.791667;,
0.130900;-0.791667;,
0.130900;-0.833333;,
0.104720;-0.833333;,
0.130900;-0.791667;,
0.157080;-0.791667;,
0.157080;-0.833333;,
0.130900;-0.833333;,
0.157080;-0.791667;,
0.183260;-0.791667;,
0.183260;-0.833333;,
0.157080;-0.833333;,
0.183260;-0.791667;,
0.209440;-0.791667;,
0.209440;-0.833333;,
0.183260;-0.833333;,
0.209440;-0.791667;,
0.235619;-0.791667;,
0.235619;-0.833333;,
0.209440;-0.833333;,
0.235619;-0.791667;,
0.261799;-0.791667;,
0.261799;-0.833333;,
0.235619;-0.833333;,
0.261799;-0.791667;,
0.287979;-0.791667;,
0.287979;-0.833333;,
0.261799;-0.833333;,
0.287979;-0.791667;,
0.314159;-0.791667;,
0.314159;-0.833333;,
0.287979;-0.833333;,
0.314159;-0.791667;,
0.340339;-0.791667;,
0.340339;-0.833333;,
0.314159;-0.833333;,
0.340339;-0.791667;,
0.366519;-0.791667;,
0.366519;-0.833333;,
0.340339;-0.833333;,
0.366519;-0.791667;,
0.392699;-0.791667;,
0.392699;-0.833333;,
0.366519;-0.833333;,
0.392699;-0.791667;,
0.418879;-0.791667;,
0.418879;-0.833333;,
0.392699;-0.833333;,
0.418879;-0.791667;,
0.445059;-0.791667;,
0.445059;-0.833333;,
0.418879;-0.833333;,
0.445059;-0.791667;,
0.471239;-0.791667;,
0.471239;-0.833333;,
0.445059;-0.833333;,
0.471239;-0.791667;,
0.497419;-0.791667;,
0.497419;-0.833333;,
0.471239;-0.833333;,
0.497419;-0.791667;,
0.523599;-0.791667;,
0.523599;-0.833333;,
0.497419;-0.833333;,
0.000000;-0.833333;,
0.026180;-0.833333;,
0.026180;-0.875000;,
0.000000;-0.875000;,
0.026180;-0.833333;,
0.052360;-0.833333;,
0.052360;-0.875000;,
0.026180;-0.875000;,
0.052360;-0.833333;,
0.078540;-0.833333;,
0.078540;-0.875000;,
0.052360;-0.875000;,
0.078540;-0.833333;,
0.104720;-0.833333;,
0.104720;-0.875000;,
0.078540;-0.875000;,
0.104720;-0.833333;,
0.130900;-0.833333;,
0.130900;-0.875000;,
0.104720;-0.875000;,
0.130900;-0.833333;,
0.157080;-0.833333;,
0.157080;-0.875000;,
0.130900;-0.875000;,
0.157080;-0.833333;,
0.183260;-0.833333;,
0.183260;-0.875000;,
0.157080;-0.875000;,
0.183260;-0.833333;,
0.209440;-0.833333;,
0.209440;-0.875000;,
0.183260;-0.875000;,
0.209440;-0.833333;,
0.235619;-0.833333;,
0.235619;-0.875000;,
0.209440;-0.875000;,
0.235619;-0.833333;,
0.261799;-0.833333;,
0.261799;-0.875000;,
0.235619;-0.875000;,
0.261799;-0.833333;,
0.287979;-0.833333;,
0.287979;-0.875000;,
0.261799;-0.875000;,
0.287979;-0.833333;,
0.314159;-0.833333;,
0.314159;-0.875000;,
0.287979;-0.875000;,
0.314159;-0.833333;,
0.340339;-0.833333;,
0.340339;-0.875000;,
0.314159;-0.875000;,
0.340339;-0.833333;,
0.366519;-0.833333;,
0.366519;-0.875000;,
0.340339;-0.875000;,
0.366519;-0.833333;,
0.392699;-0.833333;,
0.392699;-0.875000;,
0.366519;-0.875000;,
0.392699;-0.833333;,
0.418879;-0.833333;,
0.418879;-0.875000;,
0.392699;-0.875000;,
0.418879;-0.833333;,
0.445059;-0.833333;,
0.445059;-0.875000;,
0.418879;-0.875000;,
0.445059;-0.833333;,
0.471239;-0.833333;,
0.471239;-0.875000;,
0.445059;-0.875000;,
0.471239;-0.833333;,
0.497419;-0.833333;,
0.497419;-0.875000;,
0.471239;-0.875000;,
0.497419;-0.833333;,
0.523599;-0.833333;,
0.523599;-0.875000;,
0.497419;-0.875000;,
0.000000;-0.875000;,
0.026180;-0.875000;,
0.026180;-0.916667;,
0.000000;-0.916667;,
0.026180;-0.875000;,
0.052360;-0.875000;,
0.052360;-0.916667;,
0.026180;-0.916667;,
0.052360;-0.875000;,
0.078540;-0.875000;,
0.078540;-0.916667;,
0.052360;-0.916667;,
0.078540;-0.875000;,
0.104720;-0.875000;,
0.104720;-0.916667;,
0.078540;-0.916667;,
0.104720;-0.875000;,
0.130900;-0.875000;,
0.130900;-0.916667;,
0.104720;-0.916667;,
0.130900;-0.875000;,
0.157080;-0.875000;,
0.157080;-0.916667;,
0.130900;-0.916667;,
0.157080;-0.875000;,
0.183260;-0.875000;,
0.183260;-0.916667;,
0.157080;-0.916667;,
0.183260;-0.875000;,
0.209440;-0.875000;,
0.209440;-0.916667;,
0.183260;-0.916667;,
0.209440;-0.875000;,
0.235619;-0.875000;,
0.235619;-0.916667;,
0.209440;-0.916667;,
0.235619;-0.875000;,
0.261799;-0.875000;,
0.261799;-0.916667;,
0.235619;-0.916667;,
0.261799;-0.875000;,
0.287979;-0.875000;,
0.287979;-0.916667;,
0.261799;-0.916667;,
0.287979;-0.875000;,
0.314159;-0.875000;,
0.314159;-0.916667;,
0.287979;-0.916667;,
0.314159;-0.875000;,
0.340339;-0.875000;,
0.340339;-0.916667;,
0.314159;-0.916667;,
0.340339;-0.875000;,
0.366519;-0.875000;,
0.366519;-0.916667;,
0.340339;-0.916667;,
0.366519;-0.875000;,
0.392699;-0.875000;,
0.392699;-0.916667;,
0.366519;-0.916667;,
0.392699;-0.875000;,
0.418879;-0.875000;,
0.418879;-0.916667;,
0.392699;-0.916667;,
0.418879;-0.875000;,
0.445059;-0.875000;,
0.445059;-0.916667;,
0.418879;-0.916667;,
0.445059;-0.875000;,
0.471239;-0.875000;,
0.471239;-0.916667;,
0.445059;-0.916667;,
0.471239;-0.875000;,
0.497419;-0.875000;,
0.497419;-0.916667;,
0.471239;-0.916667;,
0.497419;-0.875000;,
0.523599;-0.875000;,
0.523599;-0.916667;,
0.497419;-0.916667;,
0.026180;-0.083333;,
0.000000;-0.083333;,
0.261799;-0.000000;,
0.052360;-0.083333;,
0.026180;-0.083333;,
0.261799;-0.000000;,
0.078540;-0.083333;,
0.052360;-0.083333;,
0.261799;-0.000000;,
0.104720;-0.083333;,
0.078540;-0.083333;,
0.261799;-0.000000;,
0.130900;-0.083333;,
0.104720;-0.083333;,
0.261799;-0.000000;,
0.157080;-0.083333;,
0.130900;-0.083333;,
0.261799;-0.000000;,
0.183260;-0.083333;,
0.157080;-0.083333;,
0.261799;-0.000000;,
0.209440;-0.083333;,
0.183260;-0.083333;,
0.261799;-0.000000;,
0.235619;-0.083333;,
0.209440;-0.083333;,
0.261799;-0.000000;,
0.261799;-0.083333;,
0.235619;-0.083333;,
0.261799;-0.000000;,
0.287979;-0.083333;,
0.261799;-0.083333;,
0.261799;-0.000000;,
0.314159;-0.083333;,
0.287979;-0.083333;,
0.261799;-0.000000;,
0.340339;-0.083333;,
0.314159;-0.083333;,
0.261799;-0.000000;,
0.366519;-0.083333;,
0.340339;-0.083333;,
0.261799;-0.000000;,
0.392699;-0.083333;,
0.366519;-0.083333;,
0.261799;-0.000000;,
0.418879;-0.083333;,
0.392699;-0.083333;,
0.261799;-0.000000;,
0.445059;-0.083333;,
0.418879;-0.083333;,
0.261799;-0.000000;,
0.471239;-0.083333;,
0.445059;-0.083333;,
0.261799;-0.000000;,
0.497419;-0.083333;,
0.471239;-0.083333;,
0.261799;-0.000000;,
0.523599;-0.083333;,
0.497419;-0.083333;,
0.261799;-0.000000;,
0.000000;-0.916667;,
0.026180;-0.916667;,
0.261799;-1.000000;,
0.026180;-0.916667;,
0.052360;-0.916667;,
0.261799;-1.000000;,
0.052360;-0.916667;,
0.078540;-0.916667;,
0.261799;-1.000000;,
0.078540;-0.916667;,
0.104720;-0.916667;,
0.261799;-1.000000;,
0.104720;-0.916667;,
0.130900;-0.916667;,
0.261799;-1.000000;,
0.130900;-0.916667;,
0.157080;-0.916667;,
0.261799;-1.000000;,
0.157080;-0.916667;,
0.183260;-0.916667;,
0.261799;-1.000000;,
0.183260;-0.916667;,
0.209440;-0.916667;,
0.261799;-1.000000;,
0.209440;-0.916667;,
0.235619;-0.916667;,
0.261799;-1.000000;,
0.235619;-0.916667;,
0.261799;-0.916667;,
0.261799;-1.000000;,
0.261799;-0.916667;,
0.287979;-0.916667;,
0.261799;-1.000000;,
0.287979;-0.916667;,
0.314159;-0.916667;,
0.261799;-1.000000;,
0.314159;-0.916667;,
0.340339;-0.916667;,
0.261799;-1.000000;,
0.340339;-0.916667;,
0.366519;-0.916667;,
0.261799;-1.000000;,
0.366519;-0.916667;,
0.392699;-0.916667;,
0.261799;-1.000000;,
0.392699;-0.916667;,
0.418879;-0.916667;,
0.261799;-1.000000;,
0.418879;-0.916667;,
0.445059;-0.916667;,
0.261799;-1.000000;,
0.445059;-0.916667;,
0.471239;-0.916667;,
0.261799;-1.000000;,
0.471239;-0.916667;,
0.497419;-0.916667;,
0.261799;-1.000000;,
0.497419;-0.916667;,
0.523599;-0.916667;,
0.261799;-1.000000;;
}
MeshMaterialList {
1;
840;
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0;
Material {
0.400000;0.400000;0.400000;1.000000;;
0.000000;
0.000000;0.000000;0.000000;;
0.000000;0.000000;0.000000;;
TextureFileName {
"";
}
}
}
VertexDuplicationIndices {
1720;
422;
0,
1,
2,
3,
1,
5,
6,
2,
5,
9,
10,
6,
9,
13,
14,
10,
13,
17,
18,
14,
17,
21,
22,
18,
21,
25,
26,
22,
25,
29,
30,
26,
29,
33,
34,
30,
33,
37,
38,
34,
37,
41,
42,
38,
41,
45,
46,
42,
45,
49,
50,
46,
49,
53,
54,
50,
53,
57,
58,
54,
57,
61,
62,
58,
61,
65,
66,
62,
65,
69,
70,
66,
69,
73,
74,
70,
73,
0,
3,
74,
3,
2,
82,
83,
2,
6,
86,
82,
6,
10,
90,
86,
10,
14,
94,
90,
14,
18,
98,
94,
18,
22,
102,
98,
22,
26,
106,
102,
26,
30,
110,
106,
30,
34,
114,
110,
34,
38,
118,
114,
38,
42,
122,
118,
42,
46,
126,
122,
46,
50,
130,
126,
50,
54,
134,
130,
54,
58,
138,
134,
58,
62,
142,
138,
62,
66,
146,
142,
66,
70,
150,
146,
70,
74,
154,
150,
74,
3,
83,
154,
83,
82,
162,
163,
82,
86,
166,
162,
86,
90,
170,
166,
90,
94,
174,
170,
94,
98,
178,
174,
98,
102,
182,
178,
102,
106,
186,
182,
106,
110,
190,
186,
110,
114,
194,
190,
114,
118,
198,
194,
118,
122,
202,
198,
122,
126,
206,
202,
126,
130,
210,
206,
130,
134,
214,
210,
134,
138,
218,
214,
138,
142,
222,
218,
142,
146,
226,
222,
146,
150,
230,
226,
150,
154,
234,
230,
154,
83,
163,
234,
163,
162,
242,
243,
162,
166,
246,
242,
166,
170,
250,
246,
170,
174,
254,
250,
174,
178,
258,
254,
178,
182,
262,
258,
182,
186,
266,
262,
186,
190,
270,
266,
190,
194,
274,
270,
194,
198,
278,
274,
198,
202,
282,
278,
202,
206,
286,
282,
206,
210,
290,
286,
210,
214,
294,
290,
214,
218,
298,
294,
218,
222,
302,
298,
222,
226,
306,
302,
226,
230,
310,
306,
230,
234,
314,
310,
234,
163,
243,
314,
243,
242,
322,
323,
242,
246,
326,
322,
246,
250,
330,
326,
250,
254,
334,
330,
254,
258,
338,
334,
258,
262,
342,
338,
262,
266,
346,
342,
266,
270,
350,
346,
270,
274,
354,
350,
274,
278,
358,
354,
278,
282,
362,
358,
282,
286,
366,
362,
286,
290,
370,
366,
290,
294,
374,
370,
294,
298,
378,
374,
298,
302,
382,
378,
302,
306,
386,
382,
306,
310,
390,
386,
310,
314,
394,
390,
314,
243,
323,
394,
323,
322,
402,
403,
322,
326,
406,
402,
326,
330,
410,
406,
330,
334,
414,
410,
334,
338,
418,
414,
338,
342,
422,
418,
342,
346,
426,
422,
346,
350,
430,
426,
350,
354,
434,
430,
354,
358,
438,
434,
358,
362,
442,
438,
362,
366,
446,
442,
366,
370,
450,
446,
370,
374,
454,
450,
374,
378,
458,
454,
378,
382,
462,
458,
382,
386,
466,
462,
386,
390,
470,
466,
390,
394,
474,
470,
394,
323,
403,
474,
403,
402,
482,
483,
402,
406,
486,
482,
406,
410,
490,
486,
410,
414,
494,
490,
414,
418,
498,
494,
418,
422,
502,
498,
422,
426,
506,
502,
426,
430,
510,
506,
430,
434,
514,
510,
434,
438,
518,
514,
438,
442,
522,
518,
442,
446,
526,
522,
446,
450,
530,
526,
450,
454,
534,
530,
454,
458,
538,
534,
458,
462,
542,
538,
462,
466,
546,
542,
466,
470,
550,
546,
470,
474,
554,
550,
474,
403,
483,
554,
483,
482,
562,
563,
482,
486,
566,
562,
486,
490,
570,
566,
490,
494,
574,
570,
494,
498,
578,
574,
498,
502,
582,
578,
502,
506,
586,
582,
506,
510,
590,
586,
510,
514,
594,
590,
514,
518,
598,
594,
518,
522,
602,
598,
522,
526,
606,
602,
526,
530,
610,
606,
530,
534,
614,
610,
534,
538,
618,
614,
538,
542,
622,
618,
542,
546,
626,
622,
546,
550,
630,
626,
550,
554,
634,
630,
554,
483,
563,
634,
563,
562,
642,
643,
562,
566,
646,
642,
566,
570,
650,
646,
570,
574,
654,
650,
574,
578,
658,
654,
578,
582,
662,
658,
582,
586,
666,
662,
586,
590,
670,
666,
590,
594,
674,
670,
594,
598,
678,
674,
598,
602,
682,
678,
602,
606,
686,
682,
606,
610,
690,
686,
610,
614,
694,
690,
614,
618,
698,
694,
618,
622,
702,
698,
622,
626,
706,
702,
626,
630,
710,
706,
630,
634,
714,
710,
634,
563,
643,
714,
643,
642,
722,
723,
642,
646,
726,
722,
646,
650,
730,
726,
650,
654,
734,
730,
654,
658,
738,
734,
658,
662,
742,
738,
662,
666,
746,
742,
666,
670,
750,
746,
670,
674,
754,
750,
674,
678,
758,
754,
678,
682,
762,
758,
682,
686,
766,
762,
686,
690,
770,
766,
690,
694,
774,
770,
694,
698,
778,
774,
698,
702,
782,
778,
702,
706,
786,
782,
706,
710,
790,
786,
710,
714,
794,
790,
714,
643,
723,
794,
723,
722,
802,
803,
722,
726,
806,
802,
726,
730,
810,
806,
730,
734,
814,
810,
734,
738,
818,
814,
738,
742,
822,
818,
742,
746,
826,
822,
746,
750,
830,
826,
750,
754,
834,
830,
754,
758,
838,
834,
758,
762,
842,
838,
762,
766,
846,
842,
766,
770,
850,
846,
770,
774,
854,
850,
774,
778,
858,
854,
778,
782,
862,
858,
782,
786,
866,
862,
786,
790,
870,
866,
790,
794,
874,
870,
794,
723,
803,
874,
803,
802,
882,
883,
802,
806,
886,
882,
806,
810,
890,
886,
810,
814,
894,
890,
814,
818,
898,
894,
818,
822,
902,
898,
822,
826,
906,
902,
826,
830,
910,
906,
830,
834,
914,
910,
834,
838,
918,
914,
838,
842,
922,
918,
842,
846,
926,
922,
846,
850,
930,
926,
850,
854,
934,
930,
854,
858,
938,
934,
858,
862,
942,
938,
862,
866,
946,
942,
866,
870,
950,
946,
870,
874,
954,
950,
874,
803,
883,
954,
883,
882,
962,
963,
882,
886,
966,
962,
886,
890,
970,
966,
890,
894,
974,
970,
894,
898,
978,
974,
898,
902,
982,
978,
902,
906,
986,
982,
906,
910,
990,
986,
910,
914,
994,
990,
914,
918,
998,
994,
918,
922,
1002,
998,
922,
926,
1006,
1002,
926,
930,
1010,
1006,
930,
934,
1014,
1010,
934,
938,
1018,
1014,
938,
942,
1022,
1018,
942,
946,
1026,
1022,
946,
950,
1030,
1026,
950,
954,
1034,
1030,
954,
883,
963,
1034,
963,
962,
1042,
1043,
962,
966,
1046,
1042,
966,
970,
1050,
1046,
970,
974,
1054,
1050,
974,
978,
1058,
1054,
978,
982,
1062,
1058,
982,
986,
1066,
1062,
986,
990,
1070,
1066,
990,
994,
1074,
1070,
994,
998,
1078,
1074,
998,
1002,
1082,
1078,
1002,
1006,
1086,
1082,
1006,
1010,
1090,
1086,
1010,
1014,
1094,
1090,
1014,
1018,
1098,
1094,
1018,
1022,
1102,
1098,
1022,
1026,
1106,
1102,
1026,
1030,
1110,
1106,
1030,
1034,
1114,
1110,
1034,
963,
1043,
1114,
1043,
1042,
1122,
1123,
1042,
1046,
1126,
1122,
1046,
1050,
1130,
1126,
1050,
1054,
1134,
1130,
1054,
1058,
1138,
1134,
1058,
1062,
1142,
1138,
1062,
1066,
1146,
1142,
1066,
1070,
1150,
1146,
1070,
1074,
1154,
1150,
1074,
1078,
1158,
1154,
1078,
1082,
1162,
1158,
1082,
1086,
1166,
1162,
1086,
1090,
1170,
1166,
1090,
1094,
1174,
1170,
1094,
1098,
1178,
1174,
1098,
1102,
1182,
1178,
1102,
1106,
1186,
1182,
1106,
1110,
1190,
1186,
1110,
1114,
1194,
1190,
1114,
1043,
1123,
1194,
1123,
1122,
1202,
1203,
1122,
1126,
1206,
1202,
1126,
1130,
1210,
1206,
1130,
1134,
1214,
1210,
1134,
1138,
1218,
1214,
1138,
1142,
1222,
1218,
1142,
1146,
1226,
1222,
1146,
1150,
1230,
1226,
1150,
1154,
1234,
1230,
1154,
1158,
1238,
1234,
1158,
1162,
1242,
1238,
1162,
1166,
1246,
1242,
1166,
1170,
1250,
1246,
1170,
1174,
1254,
1250,
1174,
1178,
1258,
1254,
1178,
1182,
1262,
1258,
1182,
1186,
1266,
1262,
1186,
1190,
1270,
1266,
1190,
1194,
1274,
1270,
1194,
1123,
1203,
1274,
1203,
1202,
1282,
1283,
1202,
1206,
1286,
1282,
1206,
1210,
1290,
1286,
1210,
1214,
1294,
1290,
1214,
1218,
1298,
1294,
1218,
1222,
1302,
1298,
1222,
1226,
1306,
1302,
1226,
1230,
1310,
1306,
1230,
1234,
1314,
1310,
1234,
1238,
1318,
1314,
1238,
1242,
1322,
1318,
1242,
1246,
1326,
1322,
1246,
1250,
1330,
1326,
1250,
1254,
1334,
1330,
1254,
1258,
1338,
1334,
1258,
1262,
1342,
1338,
1262,
1266,
1346,
1342,
1266,
1270,
1350,
1346,
1270,
1274,
1354,
1350,
1274,
1203,
1283,
1354,
1283,
1282,
1362,
1363,
1282,
1286,
1366,
1362,
1286,
1290,
1370,
1366,
1290,
1294,
1374,
1370,
1294,
1298,
1378,
1374,
1298,
1302,
1382,
1378,
1302,
1306,
1386,
1382,
1306,
1310,
1390,
1386,
1310,
1314,
1394,
1390,
1314,
1318,
1398,
1394,
1318,
1322,
1402,
1398,
1322,
1326,
1406,
1402,
1326,
1330,
1410,
1406,
1330,
1334,
1414,
1410,
1334,
1338,
1418,
1414,
1338,
1342,
1422,
1418,
1342,
1346,
1426,
1422,
1346,
1350,
1430,
1426,
1350,
1354,
1434,
1430,
1354,
1283,
1363,
1434,
1363,
1362,
1442,
1443,
1362,
1366,
1446,
1442,
1366,
1370,
1450,
1446,
1370,
1374,
1454,
1450,
1374,
1378,
1458,
1454,
1378,
1382,
1462,
1458,
1382,
1386,
1466,
1462,
1386,
1390,
1470,
1466,
1390,
1394,
1474,
1470,
1394,
1398,
1478,
1474,
1398,
1402,
1482,
1478,
1402,
1406,
1486,
1482,
1406,
1410,
1490,
1486,
1410,
1414,
1494,
1490,
1414,
1418,
1498,
1494,
1418,
1422,
1502,
1498,
1422,
1426,
1506,
1502,
1426,
1430,
1510,
1506,
1430,
1434,
1514,
1510,
1434,
1363,
1443,
1514,
1443,
1442,
1522,
1523,
1442,
1446,
1526,
1522,
1446,
1450,
1530,
1526,
1450,
1454,
1534,
1530,
1454,
1458,
1538,
1534,
1458,
1462,
1542,
1538,
1462,
1466,
1546,
1542,
1466,
1470,
1550,
1546,
1470,
1474,
1554,
1550,
1474,
1478,
1558,
1554,
1478,
1482,
1562,
1558,
1482,
1486,
1566,
1562,
1486,
1490,
1570,
1566,
1490,
1494,
1574,
1570,
1494,
1498,
1578,
1574,
1498,
1502,
1582,
1578,
1502,
1506,
1586,
1582,
1506,
1510,
1590,
1586,
1510,
1514,
1594,
1590,
1514,
1443,
1523,
1594,
1,
0,
1602,
5,
1,
1602,
9,
5,
1602,
13,
9,
1602,
17,
13,
1602,
21,
17,
1602,
25,
21,
1602,
29,
25,
1602,
33,
29,
1602,
37,
33,
1602,
41,
37,
1602,
45,
41,
1602,
49,
45,
1602,
53,
49,
1602,
57,
53,
1602,
61,
57,
1602,
65,
61,
1602,
69,
65,
1602,
73,
69,
1602,
0,
73,
1602,
1523,
1522,
1662,
1522,
1526,
1662,
1526,
1530,
1662,
1530,
1534,
1662,
1534,
1538,
1662,
1538,
1542,
1662,
1542,
1546,
1662,
1546,
1550,
1662,
1550,
1554,
1662,
1554,
1558,
1662,
1558,
1562,
1662,
1562,
1566,
1662,
1566,
1570,
1662,
1570,
1574,
1662,
1574,
1578,
1662,
1578,
1582,
1662,
1582,
1586,
1662,
1586,
1590,
1662,
1590,
1594,
1662,
1594,
1523,
1662;
}
DeclData {
2;
2;0;6;0;,
2;0;7;0;;
10320;
3198039908,
2971079652,
1064532084,
844570497,
1065353216,
836450474,
3205921051,
2982032728,
1062149051,
3003608038,
1065353216,
2995388506,
3205921050,
2982032724,
1062149051,
3003608038,
1065353216,
2995388507,
3198039906,
2971079654,
1064532084,
844570497,
1065353216,
836450473,
3205921051,
2982032728,
1062149051,
3003608038,
1065353216,
2995388506,
3209632702,
2973266207,
1058437398,
2991615249,
1065353216,
2991615252,
3209632702,
2973266207,
1058437398,
2991615250,
1065353216,
2991615254,
3205921050,
2982032724,
1062149051,
3003608038,
1065353216,
2995388507,
3209632702,
2973266207,
1058437398,
2991615249,
1065353216,
2991615252,
3212015729,
2953996507,
1050556281,
2966713050,
1065353216,
2974841374,
3212015729,
2953996507,
1050556281,
2966713050,
1065353216,
2974841373,
3209632702,
2973266207,
1058437398,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556281,
2966713050,
1065353216,
2974841374,
3212836864,
782814694,
3008946718,
782814690,
1065353216,
805648703,
3212836864,
782814696,
3011649861,
782814692,
1065353216,
805648704,
3212015729,
2953996507,
1050556281,
2966713050,
1065353216,
2974841373,
3212836864,
782814694,
3008946718,
782814690,
1065353216,
805648703,
3212015728,
2965696265,
3198039932,
818212620,
1065353216,
2988141695,
3212015728,
2965696265,
3198039932,
818212620,
1065353216,
2988141695,
3212836864,
782814696,
3011649861,
782814692,
1065353216,
805648704,
3212015728,
2965696265,
3198039932,
818212620,
1065353216,
2988141695,
3209632700,
818285607,
3205921049,
2978984043,
1065353216,
839712955,
3209632700,
818285607,
3205921049,
2978984043,
1065353216,
839712955,
3212015728,
2965696265,
3198039932,
818212620,
1065353216,
2988141695,
3209632700,
818285607,
3205921049,
2978984043,
1065353216,
839712955,
3205921049,
833089646,
3209632701,
2998781701,
1065353216,
851298054,
3205921049,
833089646,
3209632701,
2998781701,
1065353216,
851298054,
3209632700,
818285607,
3205921049,
2978984043,
1065353216,
839712955,
3205921049,
833089646,
3209632701,
2998781701,
1065353216,
851298054,
3198039927,
832123695,
3212015729,
3000640853,
1065353216,
845040955,
3198039927,
832123697,
3212015729,
3000640853,
1065353216,
845040956,
3205921049,
833089646,
3209632701,
2998781701,
1065353216,
851298054,
3198039927,
832123695,
3212015729,
3000640853,
1065353216,
845040955,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039927,
832123697,
3212015729,
3000640853,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360571,
3212015728,
3000987581,
1065353216,
2978844203,
1050556282,
831360569,
3212015729,
3000987580,
1065353216,
2978844201,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360571,
3212015728,
3000987581,
1065353216,
2978844203,
1058437402,
2973429996,
3209632700,
847583342,
1065353216,
839360908,
1058437401,
2973429989,
3209632700,
847583342,
1065353216,
839360909,
1050556282,
831360569,
3212015729,
3000987580,
1065353216,
2978844201,
1058437402,
2973429996,
3209632700,
847583342,
1065353216,
839360908,
1062149053,
2973273087,
3205921048,
844139383,
1065353216,
844139384,
1062149053,
2973273087,
3205921048,
844139383,
1065353216,
844139384,
1058437401,
2973429989,
3209632700,
847583342,
1065353216,
839360909,
1062149053,
2973273087,
3205921048,
844139383,
1065353216,
844139384,
1064532081,
2950114034,
3198039929,
815537210,
1065353216,
823734555,
1064532081,
2950114035,
3198039927,
815537209,
1065353216,
823734555,
1062149053,
2973273087,
3205921048,
844139383,
1065353216,
844139384,
1064532081,
2950114034,
3198039929,
815537210,
1065353216,
823734555,
1065353216,
788579160,
869851683,
2936062803,
1065353216,
2957721238,
1065353216,
788579158,
869851683,
2936062801,
1065353216,
2957721236,
1064532081,
2950114035,
3198039927,
815537209,
1065353216,
823734555,
1065353216,
788579160,
869851683,
2936062803,
1065353216,
2957721238,
1064532081,
816248325,
1050556282,
816248335,
1065353216,
2986591443,
1064532080,
816248328,
1050556283,
816248336,
1065353216,
2986591444,
1065353216,
788579158,
869851683,
2936062801,
1065353216,
2957721236,
1064532081,
816248325,
1050556282,
816248335,
1065353216,
2986591443,
1062149052,
831317376,
1058437402,
843870936,
1065353216,
2999492706,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1064532080,
816248328,
1050556283,
816248336,
1065353216,
2986591444,
1062149052,
831317376,
1058437402,
843870936,
1065353216,
2999492706,
1058437396,
2943470839,
1062149056,
2961743650,
1065353216,
814260001,
1058437398,
2943470829,
1062149055,
2961743650,
1065353216,
814260001,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1058437396,
2943470839,
1062149056,
2961743650,
1065353216,
814260001,
1050556278,
821518400,
1064532081,
842014593,
1065353216,
2981329521,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
1058437398,
2943470829,
1062149055,
2961743650,
1065353216,
814260001,
1050556278,
821518400,
1064532081,
842014593,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039908,
823596011,
1064532084,
846100288,
1065353216,
823595871,
3198039906,
823596007,
1064532084,
846100287,
1065353216,
823595871,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039906,
2971079654,
1064532084,
844570497,
1065353216,
836450473,
3205921050,
2982032724,
1062149051,
3003608038,
1065353216,
2995388507,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3198039906,
2971079661,
1064532084,
844570496,
1065353216,
836450476,
3205921050,
2982032724,
1062149051,
3003608038,
1065353216,
2995388507,
3209632702,
2973266207,
1058437398,
2991615250,
1065353216,
2991615254,
3209632703,
2973266207,
1058437397,
2991615249,
1065353216,
2991615255,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3209632702,
2973266207,
1058437398,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556281,
2966713050,
1065353216,
2974841373,
3212015729,
2953996509,
1050556278,
2966713047,
1065353216,
2974841371,
3209632703,
2973266207,
1058437397,
2991615249,
1065353216,
2991615255,
3212015729,
2953996507,
1050556281,
2966713050,
1065353216,
2974841373,
3212836864,
782814696,
3011649861,
782814692,
1065353216,
805648704,
3212836864,
782814704,
3017335326,
782814697,
1065353216,
805648708,
3212015729,
2953996509,
1050556278,
2966713047,
1065353216,
2974841371,
3212836864,
782814696,
3011649861,
782814692,
1065353216,
805648704,
3212015728,
2965696265,
3198039932,
818212620,
1065353216,
2988141695,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3212836864,
782814704,
3017335326,
782814697,
1065353216,
805648708,
3212015728,
2965696265,
3198039932,
818212620,
1065353216,
2988141695,
3209632700,
818285607,
3205921049,
2978984043,
1065353216,
839712955,
3209632700,
818285607,
3205921049,
2978984045,
1065353216,
839712957,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3209632700,
818285607,
3205921049,
2978984043,
1065353216,
839712955,
3205921049,
833089646,
3209632701,
2998781701,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632700,
818285607,
3205921049,
2978984045,
1065353216,
839712957,
3205921049,
833089646,
3209632701,
2998781701,
1065353216,
851298054,
3198039927,
832123697,
3212015729,
3000640853,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039927,
832123697,
3212015729,
3000640853,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556282,
831360569,
3212015729,
3000987580,
1065353216,
2978844201,
1050556279,
831360563,
3212015729,
3000987578,
1065353216,
2978844200,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
1050556282,
831360569,
3212015729,
3000987580,
1065353216,
2978844201,
1058437401,
2973429989,
3209632700,
847583342,
1065353216,
839360909,
1058437401,
2973429984,
3209632701,
847583341,
1065353216,
839360909,
1050556279,
831360563,
3212015729,
3000987578,
1065353216,
2978844200,
1058437401,
2973429989,
3209632700,
847583342,
1065353216,
839360909,
1062149053,
2973273087,
3205921048,
844139383,
1065353216,
844139384,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1058437401,
2973429984,
3209632701,
847583341,
1065353216,
839360909,
1062149053,
2973273087,
3205921048,
844139383,
1065353216,
844139384,
1064532081,
2950114035,
3198039927,
815537209,
1065353216,
823734555,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1064532081,
2950114035,
3198039927,
815537209,
1065353216,
823734555,
1065353216,
788579158,
869851683,
2936062801,
1065353216,
2957721236,
1065353216,
788579157,
867008948,
2936062801,
1065353216,
2957721236,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
869851683,
2936062801,
1065353216,
2957721236,
1064532080,
816248328,
1050556283,
816248336,
1065353216,
2986591444,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1065353216,
788579157,
867008948,
2936062801,
1065353216,
2957721236,
1064532080,
816248328,
1050556283,
816248336,
1065353216,
2986591444,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1062149052,
831317369,
1058437401,
843870937,
1065353216,
2999492705,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1058437398,
2943470829,
1062149055,
2961743650,
1065353216,
814260001,
1058437399,
2943470846,
1062149054,
2961743661,
1065353216,
814260013,
1062149052,
831317369,
1058437401,
843870937,
1065353216,
2999492705,
1058437398,
2943470829,
1062149055,
2961743650,
1065353216,
814260001,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
1058437399,
2943470846,
1062149054,
2961743661,
1065353216,
814260013,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039906,
823596007,
1064532084,
846100287,
1065353216,
823595871,
3198039905,
823596005,
1064532085,
846100286,
1065353216,
823595870,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
3198039906,
2971079661,
1064532084,
844570496,
1065353216,
836450476,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3198039907,
2971079658,
1064532084,
844570497,
1065353216,
836450477,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3209632703,
2973266207,
1058437397,
2991615249,
1065353216,
2991615255,
3209632703,
2973266209,
1058437397,
2991615251,
1065353216,
2991615256,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3209632703,
2973266207,
1058437397,
2991615249,
1065353216,
2991615255,
3212015729,
2953996509,
1050556278,
2966713047,
1065353216,
2974841371,
3212015729,
2953996508,
1050556278,
2966713044,
1065353216,
2974841368,
3209632703,
2973266209,
1058437397,
2991615251,
1065353216,
2991615256,
3212015729,
2953996509,
1050556278,
2966713047,
1065353216,
2974841371,
3212836864,
782814704,
3017335326,
782814697,
1065353216,
805648708,
3212836864,
782814703,
3015913959,
782814697,
1065353216,
805648708,
3212015729,
2953996508,
1050556278,
2966713044,
1065353216,
2974841368,
3212836864,
782814704,
3017335326,
782814697,
1065353216,
805648708,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3212836864,
782814703,
3015913959,
782814697,
1065353216,
805648708,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3209632700,
818285607,
3205921049,
2978984045,
1065353216,
839712957,
3209632701,
818285602,
3205921047,
2978984045,
1065353216,
839712957,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3209632700,
818285607,
3205921049,
2978984045,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285602,
3205921047,
2978984045,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
1050556279,
831360563,
3212015729,
3000987578,
1065353216,
2978844200,
1050556283,
831360571,
3212015728,
3000987580,
1065353216,
2978844201,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
1050556279,
831360563,
3212015729,
3000987578,
1065353216,
2978844200,
1058437401,
2973429984,
3209632701,
847583341,
1065353216,
839360909,
1058437403,
2973429997,
3209632699,
847583343,
1065353216,
839360911,
1050556283,
831360571,
3212015728,
3000987580,
1065353216,
2978844201,
1058437401,
2973429984,
3209632701,
847583341,
1065353216,
839360909,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1058437403,
2973429997,
3209632699,
847583343,
1065353216,
839360911,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114035,
3198039926,
815537207,
1065353216,
823734554,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579157,
867008948,
2936062801,
1065353216,
2957721236,
1065353216,
788579157,
868430314,
2936062800,
1065353216,
2957721236,
1064532081,
2950114035,
3198039926,
815537207,
1065353216,
823734554,
1065353216,
788579157,
867008948,
2936062801,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1065353216,
788579157,
868430314,
2936062800,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149052,
831317369,
1058437401,
843870937,
1065353216,
2999492705,
1062149053,
831317365,
1058437400,
843870935,
1065353216,
2999492704,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149052,
831317369,
1058437401,
843870937,
1065353216,
2999492705,
1058437399,
2943470846,
1062149054,
2961743661,
1065353216,
814260013,
1058437399,
2943470888,
1062149054,
2961743685,
1065353216,
814260037,
1062149053,
831317365,
1058437400,
843870935,
1065353216,
2999492704,
1058437399,
2943470846,
1062149054,
2961743661,
1065353216,
814260013,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
1050556278,
821518401,
1064532081,
842014594,
1065353216,
2981329522,
1058437399,
2943470888,
1062149054,
2961743685,
1065353216,
814260037,
1050556279,
821518400,
1064532081,
842014595,
1065353216,
2981329523,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
1050556278,
821518401,
1064532081,
842014594,
1065353216,
2981329522,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
3198039905,
823596005,
1064532085,
846100286,
1065353216,
823595870,
3198039908,
823596010,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
3198039907,
2971079658,
1064532084,
844570497,
1065353216,
836450477,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3205921048,
2982032710,
1062149053,
3003608038,
1065353216,
2995388507,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921048,
2982032711,
1062149053,
3003608038,
1065353216,
2995388508,
3209632703,
2973266209,
1058437397,
2991615251,
1065353216,
2991615256,
3209632702,
2973266212,
1058437399,
2991615254,
1065353216,
2991615256,
3205921048,
2982032710,
1062149053,
3003608038,
1065353216,
2995388507,
3209632703,
2973266209,
1058437397,
2991615251,
1065353216,
2991615256,
3212015729,
2953996508,
1050556278,
2966713044,
1065353216,
2974841368,
3212015729,
2953996511,
1050556278,
2966713046,
1065353216,
2974841368,
3209632702,
2973266212,
1058437399,
2991615254,
1065353216,
2991615256,
3212015729,
2953996508,
1050556278,
2966713044,
1065353216,
2974841368,
3212836864,
782814703,
3015913959,
782814697,
1065353216,
805648708,
3212836864,
782814699,
3014492593,
782814693,
1065353216,
805648706,
3212015729,
2953996511,
1050556278,
2966713046,
1065353216,
2974841368,
3212836864,
782814703,
3015913959,
782814697,
1065353216,
805648708,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3212015728,
2965696258,
3198039931,
818212618,
1065353216,
2988141692,
3212836864,
782814699,
3014492593,
782814693,
1065353216,
805648706,
3212015728,
2965696262,
3198039931,
818212616,
1065353216,
2988141693,
3209632701,
818285602,
3205921047,
2978984045,
1065353216,
839712957,
3209632701,
818285608,
3205921048,
2978984045,
1065353216,
839712958,
3212015728,
2965696258,
3198039931,
818212618,
1065353216,
2988141692,
3209632701,
818285602,
3205921047,
2978984045,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285608,
3205921048,
2978984045,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326771,
838218235,
3212836864,
3007466838,
1065353216,
838218236,
1050556283,
831360571,
3212015728,
3000987580,
1065353216,
2978844201,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360571,
3212015728,
3000987580,
1065353216,
2978844201,
1058437403,
2973429997,
3209632699,
847583343,
1065353216,
839360911,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973429997,
3209632699,
847583343,
1065353216,
839360911,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273089,
3205921047,
844139382,
1065353216,
844139385,
1064532081,
2950114035,
3198039926,
815537207,
1065353216,
823734554,
1064532081,
2950114034,
3198039926,
815537207,
1065353216,
823734553,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1064532081,
2950114035,
3198039926,
815537207,
1065353216,
823734554,
1065353216,
788579157,
868430314,
2936062800,
1065353216,
2957721236,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1064532081,
2950114034,
3198039926,
815537207,
1065353216,
823734553,
1065353216,
788579157,
868430314,
2936062800,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1064532080,
816248332,
1050556284,
816248342,
1065353216,
2986591447,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317365,
1058437400,
843870935,
1065353216,
2999492704,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1064532080,
816248332,
1050556284,
816248342,
1065353216,
2986591447,
1062149053,
831317365,
1058437400,
843870935,
1065353216,
2999492704,
1058437399,
2943470888,
1062149054,
2961743685,
1065353216,
814260037,
1058437400,
2943470879,
1062149053,
2961743684,
1065353216,
814260036,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437399,
2943470888,
1062149054,
2961743685,
1065353216,
814260037,
1050556278,
821518401,
1064532081,
842014594,
1065353216,
2981329522,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437400,
2943470879,
1062149053,
2961743684,
1065353216,
814260036,
1050556278,
821518401,
1064532081,
842014594,
1065353216,
2981329522,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303210,
1065353216,
864975325,
1065353216,
2989786910,
3198039908,
823596010,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921048,
2982032710,
1062149053,
3003608038,
1065353216,
2995388507,
3205921050,
2982032722,
1062149051,
3003608038,
1065353216,
2995388508,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921048,
2982032710,
1062149053,
3003608038,
1065353216,
2995388507,
3209632702,
2973266212,
1058437399,
2991615254,
1065353216,
2991615256,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3205921050,
2982032722,
1062149051,
3003608038,
1065353216,
2995388508,
3209632702,
2973266212,
1058437399,
2991615254,
1065353216,
2991615256,
3212015729,
2953996511,
1050556278,
2966713046,
1065353216,
2974841368,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996511,
1050556278,
2966713046,
1065353216,
2974841368,
3212836864,
782814699,
3014492593,
782814693,
1065353216,
805648706,
3212836864,
782814700,
3015913959,
782814694,
1065353216,
805648706,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3212836864,
782814699,
3014492593,
782814693,
1065353216,
805648706,
3212015728,
2965696258,
3198039931,
818212618,
1065353216,
2988141692,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212836864,
782814700,
3015913959,
782814694,
1065353216,
805648706,
3212015728,
2965696258,
3198039931,
818212618,
1065353216,
2988141692,
3209632701,
818285608,
3205921048,
2978984045,
1065353216,
839712958,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285608,
3205921048,
2978984045,
1065353216,
839712958,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1062149054,
2973273083,
3205921046,
844139379,
1065353216,
844139385,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1064532081,
2950114034,
3198039926,
815537207,
1065353216,
823734553,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273083,
3205921046,
844139379,
1065353216,
844139385,
1064532081,
2950114034,
3198039926,
815537207,
1065353216,
823734553,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1064532080,
816248332,
1050556284,
816248342,
1065353216,
2986591447,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1064532080,
816248332,
1050556284,
816248342,
1065353216,
2986591447,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437400,
2943470879,
1062149053,
2961743684,
1065353216,
814260036,
1058437399,
2943470857,
1062149054,
2961743667,
1065353216,
814260019,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1058437400,
2943470879,
1062149053,
2961743684,
1065353216,
814260036,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470857,
1062149054,
2961743667,
1065353216,
814260019,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921050,
2982032722,
1062149051,
3003608038,
1065353216,
2995388508,
3205921050,
2982032723,
1062149051,
3003608039,
1065353216,
2995388509,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921050,
2982032722,
1062149051,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3205921050,
2982032723,
1062149051,
3003608039,
1065353216,
2995388509,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3212836864,
782814700,
3015913959,
782814694,
1065353216,
805648706,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3212836864,
782814700,
3015913959,
782814694,
1065353216,
805648706,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273083,
3205921046,
844139379,
1065353216,
844139385,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273083,
3205921046,
844139379,
1065353216,
844139385,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114032,
3198039928,
815537208,
1065353216,
823734554,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721237,
1064532081,
2950114032,
3198039928,
815537208,
1065353216,
823734554,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721236,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721237,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1058437399,
2943470857,
1062149054,
2961743667,
1065353216,
814260019,
1058437398,
2943470865,
1062149055,
2961743666,
1065353216,
814260019,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1058437399,
2943470857,
1062149054,
2961743667,
1065353216,
814260019,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437398,
2943470865,
1062149055,
2961743666,
1065353216,
814260019,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921050,
2982032723,
1062149051,
3003608039,
1065353216,
2995388509,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921050,
2982032723,
1062149051,
3003608039,
1065353216,
2995388509,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996513,
1050556278,
2966713049,
1065353216,
2974841371,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212836864,
782814704,
3018756692,
782814696,
1065353216,
805648708,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212836864,
782814704,
3018756692,
782814696,
1065353216,
805648708,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285611,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114032,
3198039928,
815537208,
1065353216,
823734554,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114032,
3198039928,
815537208,
1065353216,
823734554,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721237,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721235,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721237,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721235,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317366,
1058437400,
843870937,
1065353216,
2999492705,
1058437398,
2943470865,
1062149055,
2961743666,
1065353216,
814260019,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437398,
2943470865,
1062149055,
2961743666,
1065353216,
814260019,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814704,
3018756692,
782814696,
1065353216,
805648708,
3212836864,
782814703,
3017335326,
782814696,
1065353216,
805648708,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814704,
3018756692,
782814696,
1065353216,
805648708,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212836864,
782814703,
3017335326,
782814696,
1065353216,
805648708,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721235,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721235,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1062149053,
831317364,
1058437400,
843870938,
1065353216,
2999492705,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317364,
1058437400,
843870938,
1065353216,
2999492705,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814703,
3017335326,
782814696,
1065353216,
805648708,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814703,
3017335326,
782814696,
1065353216,
805648708,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273091,
3205921046,
844139382,
1065353216,
844139385,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114034,
3198039927,
815537208,
1065353216,
823734553,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1062149053,
831317364,
1058437400,
843870938,
1065353216,
2999492705,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317364,
1058437400,
843870938,
1065353216,
2999492705,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
2971079656,
1064532084,
844570497,
1065353216,
836450476,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921049,
2982032714,
1062149052,
3003608038,
1065353216,
2995388508,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266217,
1058437398,
2991615252,
1065353216,
2991615253,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996512,
1050556278,
2966713047,
1065353216,
2974841369,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212836864,
782814706,
3017335326,
782814699,
1065353216,
805648709,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648709,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212836864,
782814706,
3017335326,
782814699,
1065353216,
805648709,
3212015728,
2965696261,
3198039932,
818212619,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285607,
3205921048,
2978984044,
1065353216,
839712957,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089646,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123697,
3212015729,
3000640854,
1065353216,
845040956,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218234,
3212836864,
3007466838,
1065353216,
838218235,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360570,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430000,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273084,
3205921046,
844139380,
1065353216,
844139386,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114035,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1065353216,
788579158,
868430316,
2936062801,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532080,
816248330,
1050556284,
816248339,
1065353216,
2986591445,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317363,
1058437400,
843870937,
1065353216,
2999492704,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470866,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063127,
842303209,
1065353216,
864975325,
1065353216,
2989786909,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814706,
3017335326,
782814699,
1065353216,
805648709,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814706,
3017335326,
782814699,
1065353216,
805648709,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212836864,
782814703,
3015913960,
782814697,
1065353216,
805648707,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212836864,
782814703,
3015913960,
782814697,
1065353216,
805648707,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1064532081,
2950114028,
3198039927,
815537207,
1065353216,
823734554,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532081,
2950114028,
3198039927,
815537207,
1065353216,
823734554,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814703,
3015913960,
782814697,
1065353216,
805648707,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814703,
3015913960,
782814697,
1065353216,
805648707,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114028,
3198039927,
815537207,
1065353216,
823734554,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114028,
3198039927,
815537207,
1065353216,
823734554,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3212015729,
2953996507,
1050556279,
2966713046,
1065353216,
2974841369,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3212836864,
782814704,
3015913960,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1065353216,
788579159,
871273049,
2936062801,
1065353216,
2957721235,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1065353216,
788579158,
869851682,
2936062801,
1065353216,
2957721235,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579159,
871273049,
2936062801,
1065353216,
2957721235,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317368,
1058437400,
843870935,
1065353216,
2999492705,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1058437399,
2943470887,
1062149054,
2961743685,
1065353216,
814260037,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1058437399,
2943470865,
1062149054,
2961743673,
1065353216,
814260025,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470887,
1062149054,
2961743685,
1065353216,
814260037,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3205921048,
2982032716,
1062149053,
3003608039,
1065353216,
2995388506,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3209632701,
2973266207,
1058437399,
2991615254,
1065353216,
2991615256,
3205921048,
2982032716,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3212015729,
2953996509,
1050556278,
2966713045,
1065353216,
2974841369,
3209632701,
2973266207,
1058437399,
2991615254,
1065353216,
2991615256,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212015729,
2953996509,
1050556278,
2966713045,
1065353216,
2974841369,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212015728,
2965696264,
3198039933,
818212619,
1065353216,
2988141693,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3212015728,
2965696264,
3198039933,
818212619,
1065353216,
2988141693,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1062149054,
2973273086,
3205921047,
844139382,
1065353216,
844139387,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273086,
3205921047,
844139382,
1065353216,
844139387,
1064532081,
2950114034,
3198039926,
815537208,
1065353216,
823734555,
1065353216,
788579159,
871273049,
2936062801,
1065353216,
2957721235,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721234,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579159,
871273049,
2936062801,
1065353216,
2957721235,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721234,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1062149053,
831317367,
1058437400,
843870933,
1065353216,
2999492703,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1058437399,
2943470887,
1062149054,
2961743685,
1065353216,
814260037,
1058437400,
2943470878,
1062149053,
2961743684,
1065353216,
814260036,
1062149053,
831317367,
1058437400,
843870933,
1065353216,
2999492703,
1058437399,
2943470887,
1062149054,
2961743685,
1065353216,
814260037,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437400,
2943470878,
1062149053,
2961743684,
1065353216,
814260036,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032716,
1062149053,
3003608039,
1065353216,
2995388506,
3205921050,
2982032727,
1062149051,
3003608039,
1065353216,
2995388507,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921048,
2982032716,
1062149053,
3003608039,
1065353216,
2995388506,
3209632701,
2973266207,
1058437399,
2991615254,
1065353216,
2991615256,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3205921050,
2982032727,
1062149051,
3003608039,
1065353216,
2995388507,
3209632701,
2973266207,
1058437399,
2991615254,
1065353216,
2991615256,
3212015729,
2953996509,
1050556278,
2966713045,
1065353216,
2974841369,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996509,
1050556278,
2966713045,
1065353216,
2974841369,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212015728,
2965696264,
3198039933,
818212619,
1065353216,
2988141693,
3212015728,
2965696268,
3198039934,
818212620,
1065353216,
2988141694,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212015728,
2965696264,
3198039933,
818212619,
1065353216,
2988141693,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3209632701,
818285611,
3205921049,
2978984042,
1065353216,
839712956,
3212015728,
2965696268,
3198039934,
818212620,
1065353216,
2988141694,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285611,
3205921049,
2978984042,
1065353216,
839712956,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273086,
3205921047,
844139382,
1065353216,
844139387,
1062149053,
2973273079,
3205921048,
844139381,
1065353216,
844139385,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273086,
3205921047,
844139382,
1065353216,
844139387,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114031,
3198039927,
815537209,
1065353216,
823734556,
1062149053,
2973273079,
3205921048,
844139381,
1065353216,
844139385,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721234,
1065353216,
788579158,
867008949,
2936062802,
1065353216,
2957721236,
1064532081,
2950114031,
3198039927,
815537209,
1065353216,
823734556,
1065353216,
788579157,
868430316,
2936062800,
1065353216,
2957721234,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248327,
1050556283,
816248337,
1065353216,
2986591444,
1065353216,
788579158,
867008949,
2936062802,
1065353216,
2957721236,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317367,
1058437400,
843870933,
1065353216,
2999492703,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1064532080,
816248327,
1050556283,
816248337,
1065353216,
2986591444,
1062149053,
831317367,
1058437400,
843870933,
1065353216,
2999492703,
1058437400,
2943470878,
1062149053,
2961743684,
1065353216,
814260036,
1058437399,
2943470856,
1062149054,
2961743667,
1065353216,
814260019,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1058437400,
2943470878,
1062149053,
2961743684,
1065353216,
814260036,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437399,
2943470856,
1062149054,
2961743667,
1065353216,
814260019,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921050,
2982032727,
1062149051,
3003608039,
1065353216,
2995388507,
3205921050,
2982032728,
1062149051,
3003608040,
1065353216,
2995388508,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921050,
2982032727,
1062149051,
3003608039,
1065353216,
2995388507,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3205921050,
2982032728,
1062149051,
3003608040,
1065353216,
2995388508,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212836864,
782814705,
3015913960,
782814699,
1065353216,
805648709,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3212836864,
782814707,
3017335326,
782814700,
1065353216,
805648710,
3212015728,
2965696268,
3198039934,
818212620,
1065353216,
2988141694,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212836864,
782814705,
3015913960,
782814699,
1065353216,
805648709,
3212015728,
2965696268,
3198039934,
818212620,
1065353216,
2988141694,
3209632701,
818285611,
3205921049,
2978984042,
1065353216,
839712956,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285611,
3205921049,
2978984042,
1065353216,
839712956,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149053,
2973273079,
3205921048,
844139381,
1065353216,
844139385,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149053,
2973273079,
3205921048,
844139381,
1065353216,
844139385,
1064532081,
2950114031,
3198039927,
815537209,
1065353216,
823734556,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114031,
3198039927,
815537209,
1065353216,
823734556,
1065353216,
788579158,
867008949,
2936062802,
1065353216,
2957721236,
1065353216,
788579157,
869851682,
2936062800,
1065353216,
2957721234,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579158,
867008949,
2936062802,
1065353216,
2957721236,
1064532080,
816248327,
1050556283,
816248337,
1065353216,
2986591444,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579157,
869851682,
2936062800,
1065353216,
2957721234,
1064532080,
816248327,
1050556283,
816248337,
1065353216,
2986591444,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1058437399,
2943470856,
1062149054,
2961743667,
1065353216,
814260019,
1058437397,
2943470865,
1062149055,
2961743667,
1065353216,
814260018,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1058437399,
2943470856,
1062149054,
2961743667,
1065353216,
814260019,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1058437397,
2943470865,
1062149055,
2961743667,
1065353216,
814260018,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
2971079651,
1064532084,
844570498,
1065353216,
836450473,
3205921050,
2982032728,
1062149051,
3003608040,
1065353216,
2995388508,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3198039908,
2971079651,
1064532084,
844570498,
1065353216,
836450475,
3205921050,
2982032728,
1062149051,
3003608040,
1065353216,
2995388508,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266211,
1058437397,
2991615250,
1065353216,
2991615254,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3212015729,
2953996509,
1050556279,
2966713048,
1065353216,
2974841371,
3212836864,
782814705,
3015913960,
782814699,
1065353216,
805648709,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3212836864,
782814705,
3015913960,
782814699,
1065353216,
805648709,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285614,
3205921049,
2978984044,
1065353216,
839712957,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1050556284,
831360572,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556283,
831360569,
3212015728,
3000987580,
1065353216,
2978844203,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1058437403,
2973430004,
3209632699,
847583343,
1065353216,
839360909,
1050556284,
831360572,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430003,
3209632699,
847583343,
1065353216,
839360910,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1058437403,
2973430004,
3209632699,
847583343,
1065353216,
839360909,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579157,
869851682,
2936062800,
1065353216,
2957721234,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579157,
869851682,
2936062800,
1065353216,
2957721234,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149052,
831317371,
1058437401,
843870936,
1065353216,
2999492705,
1058437397,
2943470865,
1062149055,
2961743667,
1065353216,
814260018,
1058437398,
2943470901,
1062149055,
2961743691,
1065353216,
814260042,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1058437397,
2943470865,
1062149055,
2961743667,
1065353216,
814260018,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
1050556276,
821518404,
1064532082,
842014593,
1065353216,
2981329519,
1058437398,
2943470901,
1062149055,
2961743691,
1065353216,
814260042,
1050556278,
821518398,
1064532081,
842014594,
1065353216,
2981329521,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556276,
821518404,
1064532082,
842014593,
1065353216,
2981329519,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039907,
823596009,
1064532084,
846100288,
1065353216,
823595872,
3198039908,
823596011,
1064532084,
846100289,
1065353216,
823595873,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039908,
2971079651,
1064532084,
844570498,
1065353216,
836450475,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3198039909,
2971079650,
1064532084,
844570499,
1065353216,
836450475,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3209632701,
2973266207,
1058437399,
2991615254,
1065353216,
2991615256,
3205921048,
2982032720,
1062149053,
3003608039,
1065353216,
2995388506,
3209632703,
2973266213,
1058437397,
2991615251,
1065353216,
2991615256,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3212015730,
2953996510,
1050556275,
2966713041,
1065353216,
2974841366,
3209632701,
2973266207,
1058437399,
2991615254,
1065353216,
2991615256,
3212015729,
2953996507,
1050556279,
2966713045,
1065353216,
2974841368,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212836864,
782814710,
3021459836,
782814700,
1065353216,
805648710,
3212015730,
2953996510,
1050556275,
2966713041,
1065353216,
2974841366,
3212836864,
782814705,
3017335326,
782814698,
1065353216,
805648708,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3212015728,
2965696261,
3198039932,
818212617,
1065353216,
2988141692,
3212836864,
782814710,
3021459836,
782814700,
1065353216,
805648710,
3212015728,
2965696262,
3198039932,
818212618,
1065353216,
2988141693,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3209632701,
818285611,
3205921048,
2978984045,
1065353216,
839712958,
3212015728,
2965696261,
3198039932,
818212617,
1065353216,
2988141692,
3209632701,
818285609,
3205921048,
2978984044,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3209632701,
818285611,
3205921048,
2978984045,
1065353216,
839712958,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
3198039927,
832123693,
3212015729,
3000640854,
1065353216,
845040954,
3205921048,
833089647,
3209632701,
2998781702,
1065353216,
851298054,
3198039926,
832123695,
3212015729,
3000640854,
1065353216,
845040955,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
3198039927,
832123693,
3212015729,
3000640854,
1065353216,
845040954,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556284,
831360572,
3212015728,
3000987580,
1065353216,
2978844202,
1050556284,
831360572,
3212015728,
3000987580,
1065353216,
2978844202,
2989326772,
838218236,
3212836864,
3007466838,
1065353216,
838218237,
1050556284,
831360572,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430004,
3209632699,
847583343,
1065353216,
839360909,
1058437403,
2973430004,
3209632699,
847583342,
1065353216,
839360908,
1050556284,
831360572,
3212015728,
3000987580,
1065353216,
2978844202,
1058437403,
2973430004,
3209632699,
847583343,
1065353216,
839360909,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1062149055,
2973273092,
3205921046,
844139381,
1065353216,
844139385,
1058437403,
2973430004,
3209632699,
847583342,
1065353216,
839360908,
1062149054,
2973273085,
3205921047,
844139381,
1065353216,
844139386,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1064532081,
2950114027,
3198039927,
815537205,
1065353216,
823734552,
1062149055,
2973273092,
3205921046,
844139381,
1065353216,
844139385,
1064532081,
2950114031,
3198039927,
815537208,
1065353216,
823734554,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1065353216,
788579159,
865587582,
2936062803,
1065353216,
2957721238,
1064532081,
2950114027,
3198039927,
815537205,
1065353216,
823734552,
1065353216,
788579159,
869851682,
2936062802,
1065353216,
2957721236,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1065353216,
788579159,
865587582,
2936062803,
1065353216,
2957721238,
1064532080,
816248331,
1050556284,
816248338,
1065353216,
2986591445,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1064532080,
816248332,
1050556284,
816248339,
1065353216,
2986591446,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1058437398,
2943470901,
1062149055,
2961743691,
1065353216,
814260042,
1058437399,
2943470928,
1062149054,
2961743708,
1065353216,
814260060,
1062149053,
831317367,
1058437400,
843870934,
1065353216,
2999492704,
1058437398,
2943470901,
1062149055,
2961743691,
1065353216,
814260042,
1050556276,
821518404,
1064532082,
842014593,
1065353216,
2981329519,
1050556274,
821518409,
1064532082,
842014592,
1065353216,
2981329519,
1058437399,
2943470928,
1062149054,
2961743708,
1065353216,
814260060,
1050556276,
821518404,
1064532082,
842014593,
1065353216,
2981329519,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
1050556274,
821518409,
1064532082,
842014592,
1065353216,
2981329519,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3198039908,
823596011,
1064532084,
846100289,
1065353216,
823595873,
3198039908,
823596014,
1064532084,
846100290,
1065353216,
823595871,
893063129,
842303212,
1065353216,
864975325,
1065353216,
2989786912,
3202904435,
876120290,
1063524609,
1063524609,
867962079,
1055420787,
3202904435,
876120290,
1063524609,
1063524609,
867962079,
1055420787,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3207922933,
873624213,
1060439282,
1060439282,
873624215,
1060439285,
3202904435,
876120290,
1063524609,
1063524609,
867962079,
1055420787,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3211008258,
872699677,
1055420782,
1055420782,
880926146,
1063524610,
3207922933,
873624213,
1060439282,
1060439282,
873624215,
1060439285,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3212630309,
3004011841,
1042296915,
1042296915,
3026156271,
1065146661,
3211008258,
872699677,
1055420782,
1055420782,
880926146,
1063524610,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3212630308,
866254478,
3189780575,
3189780575,
3036656300,
1065146660,
3212630309,
3004011841,
1042296915,
1042296915,
3026156271,
1065146661,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3211008256,
884739302,
3202904438,
3202904438,
3040381159,
1063524608,
3212630308,
866254478,
3189780575,
3189780575,
3036656300,
1065146660,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3207922931,
882012824,
3207922931,
3207922931,
3029496472,
1060439283,
3211008256,
884739302,
3202904438,
3202904438,
3040381159,
1063524608,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3202904431,
3043404580,
3211008258,
3211008258,
887820315,
1055420783,
3207922931,
882012824,
3207922931,
3207922931,
3029496472,
1060439283,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3189780565,
3045044914,
3212630309,
3212630309,
874643079,
1042296917,
3202904431,
3043404580,
3211008258,
3211008258,
887820315,
1055420783,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1042296916,
3024916211,
3212630309,
3212630309,
3003226219,
3189780564,
3189780565,
3045044914,
3212630309,
3212630309,
874643079,
1042296917,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1055420789,
3031992553,
3211008256,
3211008256,
3023834344,
3202904437,
1042296916,
3024916211,
3212630309,
3212630309,
3003226219,
3189780564,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1060439285,
3025906660,
3207922930,
3207922930,
3025906664,
3207922933,
1055420789,
3031992553,
3211008256,
3211008256,
3023834344,
3202904437,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1063524610,
865898498,
3202904431,
3202904431,
874095290,
3211008258,
1060439285,
3025906660,
3207922930,
3207922930,
3025906664,
3207922933,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1065146661,
862813614,
3189780565,
3189780565,
884698805,
3212630309,
1063524610,
865898498,
3202904431,
3202904431,
874095290,
3211008258,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1065146660,
3013738133,
1042296928,
1042296928,
889172660,
3212630308,
1065146661,
862813614,
3189780565,
3189780565,
884698805,
3212630309,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1063524609,
867962089,
1055420786,
1055420786,
3023603949,
3211008257,
1065146660,
3013738133,
1042296928,
1042296928,
889172660,
3212630308,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1060439283,
892800835,
1060439283,
1060439283,
3040284484,
3207922931,
1063524609,
867962089,
1055420786,
1055420786,
3023603949,
3211008257,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1055420781,
889874098,
1063524610,
1063524610,
3029141931,
3202904429,
1060439283,
892800835,
1060439283,
1060439283,
3040284484,
3207922931,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
1042296919,
0,
1065146661,
1065146661,
0,
3189780567,
1055420781,
889874098,
1063524610,
1063524610,
3029141931,
3202904429,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3189780473,
877432559,
1065146665,
1065146665,
855742493,
1042296825,
1042296919,
0,
1065146661,
1065146661,
0,
3189780567,
3202904435,
871541057,
1063524609,
1063524609,
863455417,
1055420787,
3202904435,
0,
1063524609,
3211008257,
0,
3202904435,
3202904435,
876120291,
1063524609,
3211008257,
3015445727,
3202904435,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3202904435,
876120291,
1063524609,
3211008257,
3015445727,
3202904435,
3207922933,
873624210,
1060439281,
3207922929,
3021107862,
3207922933,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3207922933,
873624210,
1060439281,
3207922929,
3021107862,
3207922933,
3211008258,
3015445727,
1055420782,
3202904430,
876120295,
3211008258,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3211008258,
3015445727,
1055420782,
3202904430,
876120295,
3211008258,
3212630309,
2973748645,
1042296913,
3189780561,
848781308,
3212630309,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3212630309,
2973748645,
1042296913,
3189780561,
848781308,
3212630309,
3212630308,
3006687183,
3189780575,
1042296927,
3029333301,
3212630308,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3212630308,
3006687183,
3189780575,
1042296927,
3029333301,
3212630308,
3211008256,
859573480,
3202904436,
1055420788,
867731689,
3211008256,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3211008256,
859573480,
3202904436,
1055420788,
867731689,
3211008256,
3207922931,
890401433,
3207922931,
1060439283,
890401433,
3207922931,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3207922931,
890401433,
3207922931,
1060439283,
890401433,
3207922931,
3202904432,
884508905,
3211008257,
1063524609,
876350691,
3202904432,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3202904432,
884508905,
3211008257,
1063524609,
876350691,
3202904432,
3189780565,
3045044914,
3212630309,
1065146661,
3022126727,
3189780565,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
3189780565,
3045044914,
3212630309,
1065146661,
3022126727,
3189780565,
1042296915,
3045044914,
3212630309,
1065146661,
874643077,
1042296915,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1042296915,
3045044914,
3212630309,
1065146661,
874643077,
1042296915,
1055420788,
3023603944,
3211008256,
1063524608,
867962086,
1055420788,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1055420788,
3023603944,
3211008256,
1063524608,
867962086,
1055420788,
1060439284,
3029496472,
3207922930,
1060439282,
882012826,
1060439284,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1060439284,
3029496472,
3207922930,
1060439282,
882012826,
1060439284,
1063524610,
3020753322,
3202904431,
1055420783,
881485487,
1063524610,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1063524610,
3020753322,
3202904431,
1055420783,
881485487,
1063524610,
1065146661,
2980944251,
3189780565,
1042296917,
856228372,
1065146661,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1065146661,
2980944251,
3189780565,
1042296917,
856228372,
1065146661,
1065146660,
857164713,
1042296929,
3189780577,
879677307,
1065146660,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1065146660,
857164713,
1042296929,
3189780577,
879677307,
1065146660,
1063524609,
883198796,
1055420786,
3202904434,
891385807,
1063524609,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1063524609,
883198796,
1055420786,
3202904434,
891385807,
1063524609,
1060439282,
892800836,
1060439284,
3207922932,
892800835,
1060439282,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1060439282,
892800836,
1060439284,
3207922932,
892800835,
1060439282,
1055420780,
895920939,
1063524610,
3211008258,
887820319,
1055420780,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1055420780,
895920939,
1063524610,
3211008258,
887820319,
1055420780,
1042296917,
890858300,
1065146661,
3212630309,
868377768,
1042296917,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435,
1042296917,
890858300,
1065146661,
3212630309,
868377768,
1042296917,
3189780473,
0,
1065146665,
3212630313,
0,
3189780473,
3202904435,
880926122,
1063524609,
3211008257,
3020183303,
3202904435;
}
XSkinMeshHeader {
4;
4;
4;
}
SkinWeights {
"joint1";
1700;
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
295,
296,
297,
298,
299,
300,
301,
302,
303,
304,
305,
306,
307,
308,
309,
310,
311,
312,
313,
314,
315,
316,
317,
318,
319,
320,
321,
322,
323,
324,
325,
326,
327,
328,
329,
330,
331,
332,
333,
334,
335,
336,
337,
338,
339,
340,
341,
342,
343,
344,
345,
346,
347,
348,
349,
350,
351,
352,
353,
354,
355,
356,
357,
358,
359,
360,
361,
362,
363,
364,
365,
366,
367,
368,
369,
370,
371,
372,
373,
374,
375,
376,
377,
378,
379,
380,
381,
382,
383,
384,
385,
386,
387,
388,
389,
390,
391,
392,
393,
394,
395,
396,
397,
398,
399,
400,
401,
402,
403,
404,
405,
406,
407,
408,
409,
410,
411,
412,
413,
414,
415,
416,
417,
418,
419,
420,
421,
422,
423,
424,
425,
426,
427,
428,
429,
430,
431,
432,
433,
434,
435,
436,
437,
438,
439,
440,
441,
442,
443,
444,
445,
446,
447,
448,
449,
450,
451,
452,
453,
454,
455,
456,
457,
458,
459,
460,
461,
462,
463,
464,
465,
466,
467,
468,
469,
470,
471,
472,
473,
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484,
485,
486,
487,
488,
489,
490,
491,
492,
493,
494,
495,
496,
497,
498,
499,
500,
501,
502,
503,
504,
505,
506,
507,
508,
509,
510,
511,
512,
513,
514,
515,
516,
517,
518,
519,
520,
521,
522,
523,
524,
525,
526,
527,
528,
529,
530,
531,
532,
533,
534,
535,
536,
537,
538,
539,
540,
541,
542,
543,
544,
545,
546,
547,
548,
549,
550,
551,
552,
553,
554,
555,
556,
557,
558,
559,
560,
561,
562,
563,
564,
565,
566,
567,
568,
569,
570,
571,
572,
573,
574,
575,
576,
577,
578,
579,
580,
581,
582,
583,
584,
585,
586,
587,
588,
589,
590,
591,
592,
593,
594,
595,
596,
597,
598,
599,
600,
601,
602,
603,
604,
605,
606,
607,
608,
609,
610,
611,
612,
613,
614,
615,
616,
617,
618,
619,
620,
621,
622,
623,
624,
625,
626,
627,
628,
629,
630,
631,
632,
633,
634,
635,
636,
637,
638,
639,
640,
641,
642,
643,
644,
645,
646,
647,
648,
649,
650,
651,
652,
653,
654,
655,
656,
657,
658,
659,
660,
661,
662,
663,
664,
665,
666,
667,
668,
669,
670,
671,
672,
673,
674,
675,
676,
677,
678,
679,
680,
681,
682,
683,
684,
685,
686,
687,
688,
689,
690,
691,
692,
693,
694,
695,
696,
697,
698,
699,
700,
701,
702,
703,
704,
705,
706,
707,
708,
709,
710,
711,
712,
713,
714,
715,
716,
717,
718,
719,
720,
721,
722,
723,
724,
725,
726,
727,
728,
729,
730,
731,
732,
733,
734,
735,
736,
737,
738,
739,
740,
741,
742,
743,
744,
745,
746,
747,
748,
749,
750,
751,
752,
753,
754,
755,
756,
757,
758,
759,
760,
761,
762,
763,
764,
765,
766,
767,
768,
769,
770,
771,
772,
773,
774,
775,
776,
777,
778,
779,
780,
781,
782,
783,
784,
785,
786,
787,
788,
789,
790,
791,
792,
793,
794,
795,
796,
797,
798,
799,
800,
801,
802,
803,
804,
805,
806,
807,
808,
809,
810,
811,
812,
813,
814,
815,
816,
817,
818,
819,
820,
821,
822,
823,
824,
825,
826,
827,
828,
829,
830,
831,
832,
833,
834,
835,
836,
837,
838,
839,
840,
841,
842,
843,
844,
845,
846,
847,
848,
849,
850,
851,
852,
853,
854,
855,
856,
857,
858,
859,
860,
861,
862,
863,
864,
865,
866,
867,
868,
869,
870,
871,
872,
873,
874,
875,
876,
877,
878,
879,
880,
881,
882,
883,
884,
885,
886,
887,
888,
889,
890,
891,
892,
893,
894,
895,
896,
897,
898,
899,
900,
901,
902,
903,
904,
905,
906,
907,
908,
909,
910,
911,
912,
913,
914,
915,
916,
917,
918,
919,
920,
921,
922,
923,
924,
925,
926,
927,
928,
929,
930,
931,
932,
933,
934,
935,
936,
937,
938,
939,
940,
941,
942,
943,
944,
945,
946,
947,
948,
949,
950,
951,
952,
953,
954,
955,
956,
957,
958,
959,
960,
961,
962,
963,
964,
965,
966,
967,
968,
969,
970,
971,
972,
973,
974,
975,
976,
977,
978,
979,
980,
981,
982,
983,
984,
985,
986,
987,
988,
989,
990,
991,
992,
993,
994,
995,
996,
997,
998,
999,
1000,
1001,
1002,
1003,
1004,
1005,
1006,
1007,
1008,
1009,
1010,
1011,
1012,
1013,
1014,
1015,
1016,
1017,
1018,
1019,
1020,
1021,
1022,
1023,
1024,
1025,
1026,
1027,
1028,
1029,
1030,
1031,
1032,
1033,
1034,
1035,
1036,
1037,
1038,
1039,
1040,
1041,
1042,
1043,
1044,
1045,
1046,
1047,
1048,
1049,
1050,
1051,
1052,
1053,
1054,
1055,
1056,
1057,
1058,
1059,
1060,
1061,
1062,
1063,
1064,
1065,
1066,
1067,
1068,
1069,
1070,
1071,
1072,
1073,
1074,
1075,
1076,
1077,
1078,
1079,
1080,
1081,
1082,
1083,
1084,
1085,
1086,
1087,
1088,
1089,
1090,
1091,
1092,
1093,
1094,
1095,
1096,
1097,
1098,
1099,
1100,
1101,
1102,
1103,
1104,
1105,
1106,
1107,
1108,
1109,
1110,
1111,
1112,
1113,
1114,
1115,
1116,
1117,
1118,
1119,
1120,
1121,
1122,
1123,
1124,
1125,
1126,
1127,
1128,
1129,
1130,
1131,
1132,
1133,
1134,
1135,
1136,
1137,
1138,
1139,
1140,
1141,
1142,
1143,
1144,
1145,
1146,
1147,
1148,
1149,
1150,
1151,
1152,
1153,
1154,
1155,
1156,
1157,
1158,
1159,
1160,
1161,
1162,
1163,
1164,
1165,
1166,
1167,
1168,
1169,
1170,
1171,
1172,
1173,
1174,
1175,
1176,
1177,
1178,
1179,
1180,
1181,
1182,
1183,
1184,
1185,
1186,
1187,
1188,
1189,
1190,
1191,
1192,
1193,
1194,
1195,
1196,
1197,
1198,
1199,
1200,
1201,
1202,
1203,
1204,
1205,
1206,
1207,
1208,
1209,
1210,
1211,
1212,
1213,
1214,
1215,
1216,
1217,
1218,
1219,
1220,
1221,
1222,
1223,
1224,
1225,
1226,
1227,
1228,
1229,
1230,
1231,
1232,
1233,
1234,
1235,
1236,
1237,
1238,
1239,
1240,
1241,
1242,
1243,
1244,
1245,
1246,
1247,
1248,
1249,
1250,
1251,
1252,
1253,
1254,
1255,
1256,
1257,
1258,
1259,
1260,
1261,
1262,
1263,
1264,
1265,
1266,
1267,
1268,
1269,
1270,
1271,
1272,
1273,
1274,
1275,
1276,
1277,
1278,
1279,
1280,
1281,
1282,
1283,
1284,
1285,
1286,
1287,
1288,
1289,
1290,
1291,
1292,
1293,
1294,
1295,
1296,
1297,
1298,
1299,
1300,
1301,
1302,
1303,
1304,
1305,
1306,
1307,
1308,
1309,
1310,
1311,
1312,
1313,
1314,
1315,
1316,
1317,
1318,
1319,
1320,
1321,
1322,
1323,
1324,
1325,
1326,
1327,
1328,
1329,
1330,
1331,
1332,
1333,
1334,
1335,
1336,
1337,
1338,
1339,
1340,
1341,
1342,
1343,
1344,
1345,
1346,
1347,
1348,
1349,
1350,
1351,
1352,
1353,
1354,
1355,
1356,
1357,
1358,
1359,
1360,
1361,
1362,
1363,
1364,
1365,
1366,
1367,
1368,
1369,
1370,
1371,
1372,
1373,
1374,
1375,
1376,
1377,
1378,
1379,
1380,
1381,
1382,
1383,
1384,
1385,
1386,
1387,
1388,
1389,
1390,
1391,
1392,
1393,
1394,
1395,
1396,
1397,
1398,
1399,
1400,
1401,
1402,
1403,
1404,
1405,
1406,
1407,
1408,
1409,
1410,
1411,
1412,
1413,
1414,
1415,
1416,
1417,
1418,
1419,
1420,
1421,
1422,
1423,
1424,
1425,
1426,
1427,
1428,
1429,
1430,
1431,
1432,
1433,
1434,
1435,
1436,
1437,
1438,
1439,
1440,
1441,
1442,
1443,
1444,
1445,
1446,
1447,
1448,
1449,
1450,
1451,
1452,
1453,
1454,
1455,
1456,
1457,
1458,
1459,
1460,
1461,
1462,
1463,
1464,
1465,
1466,
1467,
1468,
1469,
1470,
1471,
1472,
1473,
1474,
1475,
1476,
1477,
1478,
1479,
1480,
1481,
1482,
1483,
1484,
1485,
1486,
1487,
1488,
1489,
1490,
1491,
1492,
1493,
1494,
1495,
1496,
1497,
1498,
1499,
1500,
1501,
1502,
1503,
1504,
1505,
1506,
1507,
1508,
1509,
1510,
1511,
1512,
1513,
1514,
1515,
1516,
1517,
1518,
1519,
1520,
1521,
1522,
1523,
1524,
1525,
1526,
1527,
1528,
1529,
1530,
1531,
1532,
1533,
1534,
1535,
1536,
1537,
1538,
1539,
1540,
1541,
1542,
1543,
1544,
1545,
1546,
1547,
1548,
1549,
1550,
1551,
1552,
1553,
1554,
1555,
1556,
1557,
1558,
1559,
1560,
1561,
1562,
1563,
1564,
1565,
1566,
1567,
1568,
1569,
1570,
1571,
1572,
1573,
1574,
1575,
1576,
1577,
1578,
1579,
1580,
1581,
1582,
1583,
1584,
1585,
1586,
1587,
1588,
1589,
1590,
1591,
1592,
1593,
1594,
1595,
1596,
1597,
1598,
1599,
1600,
1601,
1602,
1603,
1604,
1605,
1606,
1607,
1608,
1609,
1610,
1611,
1612,
1613,
1614,
1615,
1616,
1617,
1618,
1619,
1620,
1621,
1622,
1623,
1624,
1625,
1626,
1627,
1628,
1629,
1630,
1631,
1632,
1633,
1634,
1635,
1636,
1637,
1638,
1639,
1640,
1641,
1642,
1643,
1644,
1645,
1646,
1647,
1648,
1649,
1650,
1651,
1652,
1653,
1654,
1655,
1656,
1657,
1658,
1659,
1660,
1661,
1663,
1664,
1666,
1667,
1669,
1670,
1672,
1673,
1675,
1676,
1678,
1679,
1681,
1682,
1684,
1685,
1687,
1688,
1690,
1691,
1693,
1694,
1696,
1697,
1699,
1700,
1702,
1703,
1705,
1706,
1708,
1709,
1711,
1712,
1714,
1715,
1717,
1718;
0.991789,
0.992109,
0.986811,
0.986390,
0.992109,
0.992356,
0.987143,
0.986811,
0.992356,
0.992513,
0.987354,
0.987143,
0.992513,
0.992566,
0.987426,
0.987354,
0.992566,
0.992513,
0.987354,
0.987426,
0.992513,
0.992356,
0.987143,
0.987354,
0.992356,
0.992109,
0.986811,
0.987143,
0.992109,
0.991789,
0.986390,
0.986811,
0.991789,
0.991423,
0.985916,
0.986390,
0.991423,
0.991047,
0.985437,
0.985916,
0.991047,
0.990698,
0.985000,
0.985437,
0.990698,
0.990414,
0.984650,
0.985000,
0.990414,
0.990228,
0.984424,
0.984650,
0.990228,
0.990164,
0.984346,
0.984424,
0.990164,
0.990228,
0.984424,
0.984346,
0.990228,
0.990414,
0.984650,
0.984424,
0.990414,
0.990698,
0.985000,
0.984650,
0.990698,
0.991047,
0.985437,
0.985000,
0.991047,
0.991423,
0.985916,
0.985437,
0.991423,
0.991789,
0.986390,
0.985916,
0.986390,
0.986811,
0.973484,
0.973100,
0.986811,
0.987143,
0.973791,
0.973484,
0.987143,
0.987354,
0.973990,
0.973791,
0.987354,
0.987426,
0.974058,
0.973990,
0.987426,
0.987354,
0.973990,
0.974058,
0.987354,
0.987143,
0.973791,
0.973990,
0.987143,
0.986811,
0.973484,
0.973791,
0.986811,
0.986390,
0.973100,
0.973484,
0.986390,
0.985916,
0.972677,
0.973100,
0.985916,
0.985437,
0.972259,
0.972677,
0.985437,
0.985000,
0.971886,
0.972259,
0.985000,
0.984650,
0.971593,
0.971886,
0.984650,
0.984424,
0.971407,
0.971593,
0.984424,
0.984346,
0.971343,
0.971407,
0.984346,
0.984424,
0.971407,
0.971343,
0.984424,
0.984650,
0.971593,
0.971407,
0.984650,
0.985000,
0.971886,
0.971593,
0.985000,
0.985437,
0.972259,
0.971886,
0.985437,
0.985916,
0.972677,
0.972259,
0.985916,
0.986390,
0.973100,
0.972677,
0.973100,
0.973484,
0.941837,
0.941755,
0.973484,
0.973791,
0.941919,
0.941837,
0.973791,
0.973990,
0.941978,
0.941919,
0.973990,
0.974058,
0.941999,
0.941978,
0.974058,
0.973990,
0.941978,
0.941999,
0.973990,
0.973791,
0.941919,
0.941978,
0.973791,
0.973484,
0.941837,
0.941919,
0.973484,
0.973100,
0.941755,
0.941837,
0.973100,
0.972677,
0.941689,
0.941755,
0.972677,
0.972259,
0.941652,
0.941689,
0.972259,
0.971886,
0.941645,
0.941652,
0.971886,
0.971593,
0.941657,
0.941645,
0.971593,
0.971407,
0.941673,
0.941657,
0.971407,
0.971343,
0.941681,
0.941673,
0.971343,
0.971407,
0.941673,
0.941681,
0.971407,
0.971593,
0.941657,
0.941673,
0.971593,
0.971886,
0.941645,
0.941657,
0.971886,
0.972259,
0.941652,
0.941645,
0.972259,
0.972677,
0.941689,
0.941652,
0.972677,
0.973100,
0.941755,
0.941689,
0.941755,
0.941837,
0.864689,
0.865309,
0.941837,
0.941919,
0.864248,
0.864689,
0.941919,
0.941978,
0.863986,
0.864248,
0.941978,
0.941999,
0.863900,
0.863986,
0.941999,
0.941978,
0.863987,
0.863900,
0.941978,
0.941919,
0.864248,
0.863987,
0.941919,
0.941837,
0.864689,
0.864248,
0.941837,
0.941755,
0.865309,
0.864689,
0.941755,
0.941689,
0.866082,
0.865309,
0.941689,
0.941652,
0.866950,
0.866082,
0.941652,
0.941645,
0.867821,
0.866950,
0.941645,
0.941657,
0.868574,
0.867821,
0.941657,
0.941673,
0.869088,
0.868574,
0.941673,
0.941681,
0.869270,
0.869088,
0.941681,
0.941673,
0.869088,
0.869270,
0.941673,
0.941657,
0.868574,
0.869088,
0.941657,
0.941645,
0.867821,
0.868574,
0.941645,
0.941652,
0.866950,
0.867821,
0.941652,
0.941689,
0.866082,
0.866950,
0.941689,
0.941755,
0.865309,
0.866082,
0.865309,
0.864689,
0.706080,
0.706559,
0.864689,
0.864248,
0.705778,
0.706080,
0.864248,
0.863986,
0.705617,
0.705778,
0.863986,
0.863900,
0.705568,
0.705617,
0.863900,
0.863987,
0.705617,
0.705568,
0.863987,
0.864248,
0.705778,
0.705617,
0.864248,
0.864689,
0.706080,
0.705778,
0.864689,
0.865309,
0.706559,
0.706080,
0.865309,
0.866082,
0.707229,
0.706559,
0.866082,
0.866950,
0.708061,
0.707229,
0.866950,
0.867821,
0.708965,
0.708061,
0.867821,
0.868574,
0.709797,
0.708965,
0.868574,
0.869088,
0.710388,
0.709797,
0.869088,
0.869270,
0.710603,
0.710388,
0.869270,
0.869088,
0.710388,
0.710603,
0.869088,
0.868574,
0.709797,
0.710388,
0.868574,
0.867821,
0.708965,
0.709797,
0.867821,
0.866950,
0.708061,
0.708965,
0.866950,
0.866082,
0.707229,
0.708061,
0.866082,
0.865309,
0.706559,
0.707229,
0.706559,
0.706080,
0.531377,
0.530217,
0.706080,
0.705778,
0.532297,
0.531377,
0.705778,
0.705617,
0.532888,
0.532297,
0.705617,
0.705568,
0.533091,
0.532888,
0.705568,
0.705617,
0.532888,
0.533091,
0.705617,
0.705778,
0.532297,
0.532888,
0.705778,
0.706080,
0.531377,
0.532297,
0.706080,
0.706559,
0.530217,
0.531377,
0.706559,
0.707229,
0.528932,
0.530217,
0.707229,
0.708061,
0.527648,
0.528932,
0.708061,
0.708965,
0.526489,
0.527648,
0.708965,
0.709797,
0.525569,
0.526489,
0.709797,
0.710388,
0.524979,
0.525569,
0.710388,
0.710603,
0.524776,
0.524979,
0.710603,
0.710388,
0.524979,
0.524776,
0.710388,
0.709797,
0.525569,
0.524979,
0.709797,
0.708965,
0.526489,
0.525569,
0.708965,
0.708061,
0.527648,
0.526489,
0.708061,
0.707229,
0.528932,
0.527648,
0.707229,
0.706559,
0.530217,
0.528932,
0.530217,
0.531377,
0.470241,
0.469099,
0.531377,
0.532297,
0.471069,
0.470241,
0.532297,
0.532888,
0.471569,
0.471069,
0.532888,
0.533091,
0.471735,
0.471569,
0.533091,
0.532888,
0.471569,
0.471735,
0.532888,
0.532297,
0.471069,
0.471569,
0.532297,
0.531377,
0.470241,
0.471069,
0.531377,
0.530217,
0.469099,
0.470241,
0.530217,
0.528932,
0.467690,
0.469099,
0.528932,
0.527648,
0.466107,
0.467690,
0.527648,
0.526489,
0.464505,
0.466107,
0.526489,
0.525569,
0.463099,
0.464505,
0.525569,
0.524979,
0.462125,
0.463099,
0.524979,
0.524776,
0.461775,
0.462125,
0.524776,
0.524979,
0.462125,
0.461775,
0.524979,
0.525569,
0.463099,
0.462125,
0.525569,
0.526489,
0.464505,
0.463099,
0.526489,
0.527648,
0.466107,
0.464505,
0.527648,
0.528932,
0.467690,
0.466107,
0.528932,
0.530217,
0.469099,
0.467690,
0.469099,
0.470241,
0.302159,
0.295831,
0.470241,
0.471069,
0.306898,
0.302159,
0.471069,
0.471569,
0.309817,
0.306898,
0.471569,
0.471735,
0.310801,
0.309817,
0.471735,
0.471569,
0.309817,
0.310801,
0.471569,
0.471069,
0.306898,
0.309817,
0.471069,
0.470241,
0.302159,
0.306898,
0.470241,
0.469099,
0.295831,
0.302159,
0.469099,
0.467690,
0.288311,
0.295831,
0.467690,
0.466107,
0.280207,
0.288311,
0.466107,
0.464505,
0.272344,
0.280207,
0.464505,
0.463099,
0.265696,
0.272344,
0.463099,
0.462125,
0.261224,
0.265696,
0.462125,
0.461775,
0.259645,
0.261224,
0.461775,
0.462125,
0.261224,
0.259645,
0.462125,
0.463099,
0.265696,
0.261224,
0.463099,
0.464505,
0.272344,
0.265696,
0.464505,
0.466107,
0.280207,
0.272344,
0.466107,
0.467690,
0.288311,
0.280207,
0.467690,
0.469099,
0.295831,
0.288311,
0.295831,
0.302159,
0.144087,
0.137795,
0.302159,
0.306898,
0.148952,
0.144087,
0.306898,
0.309817,
0.152017,
0.148952,
0.309817,
0.310801,
0.153062,
0.152017,
0.310801,
0.309817,
0.152017,
0.153062,
0.309817,
0.306898,
0.148952,
0.152017,
0.306898,
0.302159,
0.144087,
0.148952,
0.302159,
0.295831,
0.137795,
0.144087,
0.295831,
0.288311,
0.130612,
0.137795,
0.288311,
0.280207,
0.123213,
0.130612,
0.280207,
0.272344,
0.116357,
0.123213,
0.272344,
0.265696,
0.110797,
0.116357,
0.265696,
0.261224,
0.107174,
0.110797,
0.261224,
0.259645,
0.105917,
0.107174,
0.259645,
0.261224,
0.107174,
0.105917,
0.261224,
0.265696,
0.110797,
0.107174,
0.265696,
0.272344,
0.116357,
0.110797,
0.272344,
0.280207,
0.123213,
0.116357,
0.280207,
0.288311,
0.130612,
0.123213,
0.288311,
0.295831,
0.137795,
0.130612,
0.137795,
0.144087,
0.063734,
0.060008,
0.144087,
0.148952,
0.066681,
0.063734,
0.148952,
0.152017,
0.068566,
0.066681,
0.152017,
0.153062,
0.069214,
0.068566,
0.153062,
0.152017,
0.068566,
0.069214,
0.152017,
0.148952,
0.066681,
0.068566,
0.148952,
0.144087,
0.063734,
0.066681,
0.144087,
0.137795,
0.060008,
0.063734,
0.137795,
0.130612,
0.055867,
0.060008,
0.130612,
0.123213,
0.051724,
0.055867,
0.123213,
0.116357,
0.047996,
0.051724,
0.116357,
0.110797,
0.045049,
0.047996,
0.110797,
0.107174,
0.043165,
0.045049,
0.107174,
0.105917,
0.042518,
0.043165,
0.105917,
0.107174,
0.043165,
0.042518,
0.107174,
0.110797,
0.045049,
0.043165,
0.110797,
0.116357,
0.047996,
0.045049,
0.116357,
0.123213,
0.051724,
0.047996,
0.123213,
0.130612,
0.055867,
0.051724,
0.130612,
0.137795,
0.060008,
0.055867,
0.060008,
0.063734,
0.029173,
0.027259,
0.063734,
0.066681,
0.030704,
0.029173,
0.066681,
0.068566,
0.031690,
0.030704,
0.068566,
0.069214,
0.032031,
0.031690,
0.069214,
0.068566,
0.031690,
0.032031,
0.068566,
0.066681,
0.030704,
0.031690,
0.066681,
0.063734,
0.029173,
0.030704,
0.063734,
0.060008,
0.027259,
0.029173,
0.060008,
0.055867,
0.025160,
0.027259,
0.055867,
0.051724,
0.023090,
0.025160,
0.051724,
0.047996,
0.021252,
0.023090,
0.047996,
0.045049,
0.019816,
0.021252,
0.045049,
0.043165,
0.018906,
0.019816,
0.043165,
0.042518,
0.018595,
0.018906,
0.042518,
0.043165,
0.018906,
0.018595,
0.043165,
0.045049,
0.019816,
0.018906,
0.045049,
0.047996,
0.021252,
0.019816,
0.047996,
0.051724,
0.023090,
0.021252,
0.051724,
0.055867,
0.025160,
0.023090,
0.055867,
0.060008,
0.027259,
0.025160,
0.027259,
0.029173,
0.013770,
0.012838,
0.029173,
0.030704,
0.014518,
0.013770,
0.030704,
0.031690,
0.015002,
0.014518,
0.031690,
0.032031,
0.015169,
0.015002,
0.032031,
0.031690,
0.015002,
0.015169,
0.031690,
0.030704,
0.014518,
0.015002,
0.030704,
0.029173,
0.013770,
0.014518,
0.029173,
0.027259,
0.012838,
0.013770,
0.027259,
0.025160,
0.011822,
0.012838,
0.025160,
0.023090,
0.010826,
0.011822,
0.023090,
0.021252,
0.009945,
0.010826,
0.021252,
0.019816,
0.009260,
0.009945,
0.019816,
0.018906,
0.008827,
0.009260,
0.018906,
0.018595,
0.008679,
0.008827,
0.018595,
0.018906,
0.008827,
0.008679,
0.018906,
0.019816,
0.009260,
0.008827,
0.019816,
0.021252,
0.009945,
0.009260,
0.021252,
0.023090,
0.010826,
0.009945,
0.023090,
0.025160,
0.011822,
0.010826,
0.025160,
0.027259,
0.012838,
0.011822,
0.012838,
0.013770,
0.006280,
0.005848,
0.013770,
0.014518,
0.006629,
0.006280,
0.014518,
0.015002,
0.006857,
0.006629,
0.015002,
0.015169,
0.006935,
0.006857,
0.015169,
0.015002,
0.006857,
0.006935,
0.015002,
0.014518,
0.006629,
0.006857,
0.014518,
0.013770,
0.006280,
0.006629,
0.013770,
0.012838,
0.005848,
0.006280,
0.012838,
0.011822,
0.005380,
0.005848,
0.011822,
0.010826,
0.004924,
0.005380,
0.010826,
0.009945,
0.004523,
0.004924,
0.009945,
0.009260,
0.004213,
0.004523,
0.009260,
0.008827,
0.004018,
0.004213,
0.008827,
0.008679,
0.003951,
0.004018,
0.008679,
0.008827,
0.004018,
0.003951,
0.008827,
0.009260,
0.004213,
0.004018,
0.009260,
0.009945,
0.004523,
0.004213,
0.009945,
0.010826,
0.004924,
0.004523,
0.010826,
0.011822,
0.005380,
0.004924,
0.011822,
0.012838,
0.005848,
0.005380,
0.005848,
0.006280,
0.002818,
0.002602,
0.006280,
0.006629,
0.002994,
0.002818,
0.006629,
0.006857,
0.003110,
0.002994,
0.006857,
0.006935,
0.003150,
0.003110,
0.006935,
0.006857,
0.003110,
0.003150,
0.006857,
0.006629,
0.002994,
0.003110,
0.006629,
0.006280,
0.002818,
0.002994,
0.006280,
0.005848,
0.002602,
0.002818,
0.005848,
0.005380,
0.002371,
0.002602,
0.005380,
0.004924,
0.002148,
0.002371,
0.004924,
0.004523,
0.001955,
0.002148,
0.004523,
0.004213,
0.001807,
0.001955,
0.004213,
0.004018,
0.001715,
0.001807,
0.004018,
0.003951,
0.001684,
0.001715,
0.003951,
0.004018,
0.001715,
0.001684,
0.004018,
0.004213,
0.001807,
0.001715,
0.004213,
0.004523,
0.001955,
0.001807,
0.004523,
0.004924,
0.002148,
0.001955,
0.004924,
0.005380,
0.002371,
0.002148,
0.005380,
0.005848,
0.002602,
0.002371,
0.002602,
0.002818,
0.001675,
0.001558,
0.002818,
0.002994,
0.001769,
0.001675,
0.002994,
0.003110,
0.001830,
0.001769,
0.003110,
0.003150,
0.001851,
0.001830,
0.003150,
0.003110,
0.001830,
0.001851,
0.003110,
0.002994,
0.001769,
0.001830,
0.002994,
0.002818,
0.001675,
0.001769,
0.002818,
0.002602,
0.001558,
0.001675,
0.002602,
0.002371,
0.001430,
0.001558,
0.002371,
0.002148,
0.001306,
0.001430,
0.002148,
0.001955,
0.001197,
0.001306,
0.001955,
0.001807,
0.001112,
0.001197,
0.001807,
0.001715,
0.001059,
0.001112,
0.001715,
0.001684,
0.001041,
0.001059,
0.001684,
0.001715,
0.001059,
0.001041,
0.001715,
0.001807,
0.001112,
0.001059,
0.001807,
0.001955,
0.001197,
0.001112,
0.001955,
0.002148,
0.001306,
0.001197,
0.002148,
0.002371,
0.001430,
0.001306,
0.002371,
0.002602,
0.001558,
0.001430,
0.001558,
0.001675,
0.001311,
0.001263,
0.001675,
0.001769,
0.001349,
0.001311,
0.001769,
0.001830,
0.001373,
0.001349,
0.001830,
0.001851,
0.001381,
0.001373,
0.001851,
0.001830,
0.001373,
0.001381,
0.001830,
0.001769,
0.001349,
0.001373,
0.001769,
0.001675,
0.001311,
0.001349,
0.001675,
0.001558,
0.001263,
0.001311,
0.001558,
0.001430,
0.001208,
0.001263,
0.001430,
0.001306,
0.001152,
0.001208,
0.001306,
0.001197,
0.001100,
0.001152,
0.001197,
0.001112,
0.001059,
0.001100,
0.001112,
0.001059,
0.001033,
0.001059,
0.001059,
0.001041,
0.001023,
0.001033,
0.001041,
0.001059,
0.001033,
0.001023,
0.001059,
0.001112,
0.001059,
0.001033,
0.001112,
0.001197,
0.001100,
0.001059,
0.001197,
0.001306,
0.001152,
0.001100,
0.001306,
0.001430,
0.001208,
0.001152,
0.001430,
0.001558,
0.001263,
0.001208,
0.001263,
0.001311,
0.000935,
0.000938,
0.001311,
0.001349,
0.000932,
0.000935,
0.001349,
0.001373,
0.000929,
0.000932,
0.001373,
0.001381,
0.000928,
0.000929,
0.001381,
0.001373,
0.000929,
0.000928,
0.001373,
0.001349,
0.000932,
0.000929,
0.001349,
0.001311,
0.000935,
0.000932,
0.001311,
0.001263,
0.000938,
0.000935,
0.001263,
0.001208,
0.000939,
0.000938,
0.001208,
0.001152,
0.000938,
0.000939,
0.001152,
0.001100,
0.000936,
0.000938,
0.001100,
0.001059,
0.000933,
0.000936,
0.001059,
0.001033,
0.000931,
0.000933,
0.001033,
0.001023,
0.000930,
0.000931,
0.001023,
0.001033,
0.000931,
0.000930,
0.001033,
0.001059,
0.000933,
0.000931,
0.001059,
0.001100,
0.000936,
0.000933,
0.001100,
0.001152,
0.000938,
0.000936,
0.001152,
0.001208,
0.000939,
0.000938,
0.001208,
0.001263,
0.000938,
0.000939,
0.000938,
0.000935,
0.000545,
0.000571,
0.000935,
0.000932,
0.000525,
0.000545,
0.000932,
0.000929,
0.000512,
0.000525,
0.000929,
0.000928,
0.000507,
0.000512,
0.000928,
0.000929,
0.000512,
0.000507,
0.000929,
0.000932,
0.000525,
0.000512,
0.000932,
0.000935,
0.000545,
0.000525,
0.000935,
0.000938,
0.000571,
0.000545,
0.000938,
0.000939,
0.000599,
0.000571,
0.000939,
0.000938,
0.000627,
0.000599,
0.000938,
0.000936,
0.000651,
0.000627,
0.000936,
0.000933,
0.000671,
0.000651,
0.000933,
0.000931,
0.000683,
0.000671,
0.000931,
0.000930,
0.000687,
0.000683,
0.000930,
0.000931,
0.000683,
0.000687,
0.000931,
0.000933,
0.000671,
0.000683,
0.000933,
0.000936,
0.000651,
0.000671,
0.000936,
0.000938,
0.000627,
0.000651,
0.000938,
0.000939,
0.000599,
0.000627,
0.000939,
0.000938,
0.000571,
0.000599,
0.000571,
0.000545,
0.000279,
0.000305,
0.000545,
0.000525,
0.000259,
0.000279,
0.000525,
0.000512,
0.000246,
0.000259,
0.000512,
0.000507,
0.000242,
0.000246,
0.000507,
0.000512,
0.000246,
0.000242,
0.000512,
0.000525,
0.000259,
0.000246,
0.000525,
0.000545,
0.000279,
0.000259,
0.000545,
0.000571,
0.000305,
0.000279,
0.000571,
0.000599,
0.000335,
0.000305,
0.000599,
0.000627,
0.000366,
0.000335,
0.000627,
0.000651,
0.000395,
0.000366,
0.000651,
0.000671,
0.000418,
0.000395,
0.000671,
0.000683,
0.000433,
0.000418,
0.000683,
0.000687,
0.000438,
0.000433,
0.000687,
0.000683,
0.000433,
0.000438,
0.000683,
0.000671,
0.000418,
0.000433,
0.000671,
0.000651,
0.000395,
0.000418,
0.000651,
0.000627,
0.000366,
0.000395,
0.000627,
0.000599,
0.000335,
0.000366,
0.000599,
0.000571,
0.000305,
0.000335,
0.000305,
0.000279,
0.000204,
0.000226,
0.000279,
0.000259,
0.000187,
0.000204,
0.000259,
0.000246,
0.000177,
0.000187,
0.000246,
0.000242,
0.000173,
0.000177,
0.000242,
0.000246,
0.000177,
0.000173,
0.000246,
0.000259,
0.000187,
0.000177,
0.000259,
0.000279,
0.000204,
0.000187,
0.000279,
0.000305,
0.000226,
0.000204,
0.000305,
0.000335,
0.000251,
0.000226,
0.000335,
0.000366,
0.000278,
0.000251,
0.000366,
0.000395,
0.000304,
0.000278,
0.000395,
0.000418,
0.000325,
0.000304,
0.000418,
0.000433,
0.000339,
0.000325,
0.000433,
0.000438,
0.000344,
0.000339,
0.000438,
0.000433,
0.000339,
0.000344,
0.000433,
0.000418,
0.000325,
0.000339,
0.000418,
0.000395,
0.000304,
0.000325,
0.000395,
0.000366,
0.000278,
0.000304,
0.000366,
0.000335,
0.000251,
0.000278,
0.000335,
0.000305,
0.000226,
0.000251,
0.992109,
0.991789,
0.999983,
0.992356,
0.992109,
0.999983,
0.992513,
0.992356,
0.999983,
0.992566,
0.992513,
0.999983,
0.992513,
0.992566,
0.999983,
0.992356,
0.992513,
0.999983,
0.992109,
0.992356,
0.999983,
0.991789,
0.992109,
0.999983,
0.991423,
0.991789,
0.999983,
0.991047,
0.991423,
0.999983,
0.990698,
0.991047,
0.999983,
0.990414,
0.990698,
0.999983,
0.990228,
0.990414,
0.999983,
0.990164,
0.990228,
0.999983,
0.990228,
0.990164,
0.999983,
0.990414,
0.990228,
0.999983,
0.990698,
0.990414,
0.999983,
0.991047,
0.990698,
0.999983,
0.991423,
0.991047,
0.999983,
0.991789,
0.991423,
0.999983,
0.000226,
0.000204,
0.000204,
0.000187,
0.000187,
0.000177,
0.000177,
0.000173,
0.000173,
0.000177,
0.000177,
0.000187,
0.000187,
0.000204,
0.000204,
0.000226,
0.000226,
0.000251,
0.000251,
0.000278,
0.000278,
0.000304,
0.000304,
0.000325,
0.000325,
0.000339,
0.000339,
0.000344,
0.000344,
0.000339,
0.000339,
0.000325,
0.000325,
0.000304,
0.000304,
0.000278,
0.000278,
0.000251,
0.000251,
0.000226;
0.000000,-0.000000,1.000000,0.000000,0.999261,0.038433,-0.000000,0.000000,-0.038433,0.999261,0.000000,0.000000,4.792903,0.155081,-0.000000,1.000000;;
}
SkinWeights {
"joint2";
1680;
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
295,
296,
297,
298,
299,
300,
301,
302,
303,
304,
305,
306,
307,
308,
309,
310,
311,
312,
313,
314,
315,
316,
317,
318,
319,
320,
321,
322,
323,
324,
325,
326,
327,
328,
329,
330,
331,
332,
333,
334,
335,
336,
337,
338,
339,
340,
341,
342,
343,
344,
345,
346,
347,
348,
349,
350,
351,
352,
353,
354,
355,
356,
357,
358,
359,
360,
361,
362,
363,
364,
365,
366,
367,
368,
369,
370,
371,
372,
373,
374,
375,
376,
377,
378,
379,
380,
381,
382,
383,
384,
385,
386,
387,
388,
389,
390,
391,
392,
393,
394,
395,
396,
397,
398,
399,
400,
401,
402,
403,
404,
405,
406,
407,
408,
409,
410,
411,
412,
413,
414,
415,
416,
417,
418,
419,
420,
421,
422,
423,
424,
425,
426,
427,
428,
429,
430,
431,
432,
433,
434,
435,
436,
437,
438,
439,
440,
441,
442,
443,
444,
445,
446,
447,
448,
449,
450,
451,
452,
453,
454,
455,
456,
457,
458,
459,
460,
461,
462,
463,
464,
465,
466,
467,
468,
469,
470,
471,
472,
473,
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484,
485,
486,
487,
488,
489,
490,
491,
492,
493,
494,
495,
496,
497,
498,
499,
500,
501,
502,
503,
504,
505,
506,
507,
508,
509,
510,
511,
512,
513,
514,
515,
516,
517,
518,
519,
520,
521,
522,
523,
524,
525,
526,
527,
528,
529,
530,
531,
532,
533,
534,
535,
536,
537,
538,
539,
540,
541,
542,
543,
544,
545,
546,
547,
548,
549,
550,
551,
552,
553,
554,
555,
556,
557,
558,
559,
560,
561,
562,
563,
564,
565,
566,
567,
568,
569,
570,
571,
572,
573,
574,
575,
576,
577,
578,
579,
580,
581,
582,
583,
584,
585,
586,
587,
588,
589,
590,
591,
592,
593,
594,
595,
596,
597,
598,
599,
600,
601,
602,
603,
604,
605,
606,
607,
608,
609,
610,
611,
612,
613,
614,
615,
616,
617,
618,
619,
620,
621,
622,
623,
624,
625,
626,
627,
628,
629,
630,
631,
632,
633,
634,
635,
636,
637,
638,
639,
640,
641,
642,
643,
644,
645,
646,
647,
648,
649,
650,
651,
652,
653,
654,
655,
656,
657,
658,
659,
660,
661,
662,
663,
664,
665,
666,
667,
668,
669,
670,
671,
672,
673,
674,
675,
676,
677,
678,
679,
680,
681,
682,
683,
684,
685,
686,
687,
688,
689,
690,
691,
692,
693,
694,
695,
696,
697,
698,
699,
700,
701,
702,
703,
704,
705,
706,
707,
708,
709,
710,
711,
712,
713,
714,
715,
716,
717,
718,
719,
720,
721,
722,
723,
724,
725,
726,
727,
728,
729,
730,
731,
732,
733,
734,
735,
736,
737,
738,
739,
740,
741,
742,
743,
744,
745,
746,
747,
748,
749,
750,
751,
752,
753,
754,
755,
756,
757,
758,
759,
760,
761,
762,
763,
764,
765,
766,
767,
768,
769,
770,
771,
772,
773,
774,
775,
776,
777,
778,
779,
780,
781,
782,
783,
784,
785,
786,
787,
788,
789,
790,
791,
792,
793,
794,
795,
796,
797,
798,
799,
800,
801,
802,
803,
804,
805,
806,
807,
808,
809,
810,
811,
812,
813,
814,
815,
816,
817,
818,
819,
820,
821,
822,
823,
824,
825,
826,
827,
828,
829,
830,
831,
832,
833,
834,
835,
836,
837,
838,
839,
840,
841,
842,
843,
844,
845,
846,
847,
848,
849,
850,
851,
852,
853,
854,
855,
856,
857,
858,
859,
860,
861,
862,
863,
864,
865,
866,
867,
868,
869,
870,
871,
872,
873,
874,
875,
876,
877,
878,
879,
880,
881,
882,
883,
884,
885,
886,
887,
888,
889,
890,
891,
892,
893,
894,
895,
896,
897,
898,
899,
900,
901,
902,
903,
904,
905,
906,
907,
908,
909,
910,
911,
912,
913,
914,
915,
916,
917,
918,
919,
920,
921,
922,
923,
924,
925,
926,
927,
928,
929,
930,
931,
932,
933,
934,
935,
936,
937,
938,
939,
940,
941,
942,
943,
944,
945,
946,
947,
948,
949,
950,
951,
952,
953,
954,
955,
956,
957,
958,
959,
960,
961,
962,
963,
964,
965,
966,
967,
968,
969,
970,
971,
972,
973,
974,
975,
976,
977,
978,
979,
980,
981,
982,
983,
984,
985,
986,
987,
988,
989,
990,
991,
992,
993,
994,
995,
996,
997,
998,
999,
1000,
1001,
1002,
1003,
1004,
1005,
1006,
1007,
1008,
1009,
1010,
1011,
1012,
1013,
1014,
1015,
1016,
1017,
1018,
1019,
1020,
1021,
1022,
1023,
1024,
1025,
1026,
1027,
1028,
1029,
1030,
1031,
1032,
1033,
1034,
1035,
1036,
1037,
1038,
1039,
1040,
1041,
1042,
1043,
1044,
1045,
1046,
1047,
1048,
1049,
1050,
1051,
1052,
1053,
1054,
1055,
1056,
1057,
1058,
1059,
1060,
1061,
1062,
1063,
1064,
1065,
1066,
1067,
1068,
1069,
1070,
1071,
1072,
1073,
1074,
1075,
1076,
1077,
1078,
1079,
1080,
1081,
1082,
1083,
1084,
1085,
1086,
1087,
1088,
1089,
1090,
1091,
1092,
1093,
1094,
1095,
1096,
1097,
1098,
1099,
1100,
1101,
1102,
1103,
1104,
1105,
1106,
1107,
1108,
1109,
1110,
1111,
1112,
1113,
1114,
1115,
1116,
1117,
1118,
1119,
1120,
1121,
1122,
1123,
1124,
1125,
1126,
1127,
1128,
1129,
1130,
1131,
1132,
1133,
1134,
1135,
1136,
1137,
1138,
1139,
1140,
1141,
1142,
1143,
1144,
1145,
1146,
1147,
1148,
1149,
1150,
1151,
1152,
1153,
1154,
1155,
1156,
1157,
1158,
1159,
1160,
1161,
1162,
1163,
1164,
1165,
1166,
1167,
1168,
1169,
1170,
1171,
1172,
1173,
1174,
1175,
1176,
1177,
1178,
1179,
1180,
1181,
1182,
1183,
1184,
1185,
1186,
1187,
1188,
1189,
1190,
1191,
1192,
1193,
1194,
1195,
1196,
1197,
1198,
1199,
1200,
1201,
1202,
1203,
1204,
1205,
1206,
1207,
1208,
1209,
1210,
1211,
1212,
1213,
1214,
1215,
1216,
1217,
1218,
1219,
1220,
1221,
1222,
1223,
1224,
1225,
1226,
1227,
1228,
1229,
1230,
1231,
1232,
1233,
1234,
1235,
1236,
1237,
1238,
1239,
1240,
1241,
1242,
1243,
1244,
1245,
1246,
1247,
1248,
1249,
1250,
1251,
1252,
1253,
1254,
1255,
1256,
1257,
1258,
1259,
1260,
1261,
1262,
1263,
1264,
1265,
1266,
1267,
1268,
1269,
1270,
1271,
1272,
1273,
1274,
1275,
1276,
1277,
1278,
1279,
1280,
1281,
1282,
1283,
1284,
1285,
1286,
1287,
1288,
1289,
1290,
1291,
1292,
1293,
1294,
1295,
1296,
1297,
1298,
1299,
1300,
1301,
1302,
1303,
1304,
1305,
1306,
1307,
1308,
1309,
1310,
1311,
1312,
1313,
1314,
1315,
1316,
1317,
1318,
1319,
1320,
1321,
1322,
1323,
1324,
1325,
1326,
1327,
1328,
1329,
1330,
1331,
1332,
1333,
1334,
1335,
1336,
1337,
1338,
1339,
1340,
1341,
1342,
1343,
1344,
1345,
1346,
1347,
1348,
1349,
1350,
1351,
1352,
1353,
1354,
1355,
1356,
1357,
1358,
1359,
1360,
1361,
1362,
1363,
1364,
1365,
1366,
1367,
1368,
1369,
1370,
1371,
1372,
1373,
1374,
1375,
1376,
1377,
1378,
1379,
1380,
1381,
1382,
1383,
1384,
1385,
1386,
1387,
1388,
1389,
1390,
1391,
1392,
1393,
1394,
1395,
1396,
1397,
1398,
1399,
1400,
1401,
1402,
1403,
1404,
1405,
1406,
1407,
1408,
1409,
1410,
1411,
1412,
1413,
1414,
1415,
1416,
1417,
1418,
1419,
1420,
1421,
1422,
1423,
1424,
1425,
1426,
1427,
1428,
1429,
1430,
1431,
1432,
1433,
1434,
1435,
1436,
1437,
1438,
1439,
1440,
1441,
1442,
1443,
1444,
1445,
1446,
1447,
1448,
1449,
1450,
1451,
1452,
1453,
1454,
1455,
1456,
1457,
1458,
1459,
1460,
1461,
1462,
1463,
1464,
1465,
1466,
1467,
1468,
1469,
1470,
1471,
1472,
1473,
1474,
1475,
1476,
1477,
1478,
1479,
1480,
1481,
1482,
1483,
1484,
1485,
1486,
1487,
1488,
1489,
1490,
1491,
1492,
1493,
1494,
1495,
1496,
1497,
1498,
1499,
1500,
1501,
1502,
1503,
1504,
1505,
1506,
1507,
1508,
1509,
1510,
1511,
1512,
1513,
1514,
1515,
1516,
1517,
1518,
1519,
1520,
1521,
1522,
1523,
1524,
1525,
1526,
1527,
1528,
1529,
1530,
1531,
1532,
1533,
1534,
1535,
1536,
1537,
1538,
1539,
1540,
1541,
1542,
1543,
1544,
1545,
1546,
1547,
1548,
1549,
1550,
1551,
1552,
1553,
1554,
1555,
1556,
1557,
1558,
1559,
1560,
1561,
1562,
1563,
1564,
1565,
1566,
1567,
1568,
1569,
1570,
1571,
1572,
1573,
1574,
1575,
1576,
1577,
1578,
1579,
1580,
1581,
1582,
1583,
1584,
1585,
1586,
1587,
1588,
1589,
1590,
1591,
1592,
1593,
1594,
1595,
1596,
1597,
1598,
1599,
1600,
1601,
1603,
1604,
1606,
1607,
1609,
1610,
1612,
1613,
1615,
1616,
1618,
1619,
1621,
1622,
1624,
1625,
1627,
1628,
1630,
1631,
1633,
1634,
1636,
1637,
1639,
1640,
1642,
1643,
1645,
1646,
1648,
1649,
1651,
1652,
1654,
1655,
1657,
1658,
1660,
1661,
1663,
1664,
1666,
1667,
1669,
1670,
1672,
1673,
1675,
1676,
1678,
1679,
1681,
1682,
1684,
1685,
1687,
1688,
1690,
1691,
1693,
1694,
1696,
1697,
1699,
1700,
1702,
1703,
1705,
1706,
1708,
1709,
1711,
1712,
1714,
1715,
1717,
1718;
0.007744,
0.007439,
0.012638,
0.013048,
0.007439,
0.007203,
0.012317,
0.012638,
0.007203,
0.007055,
0.012112,
0.012317,
0.007055,
0.007004,
0.012042,
0.012112,
0.007004,
0.007055,
0.012112,
0.012042,
0.007055,
0.007203,
0.012317,
0.012112,
0.007203,
0.007439,
0.012638,
0.012317,
0.007439,
0.007744,
0.013048,
0.012638,
0.007744,
0.008092,
0.013508,
0.013048,
0.008092,
0.008451,
0.013974,
0.013508,
0.008451,
0.008785,
0.014399,
0.013974,
0.008785,
0.009056,
0.014740,
0.014399,
0.009056,
0.009233,
0.014960,
0.014740,
0.009233,
0.009294,
0.015036,
0.014960,
0.009294,
0.009233,
0.014960,
0.015036,
0.009233,
0.009056,
0.014740,
0.014960,
0.009056,
0.008785,
0.014399,
0.014740,
0.008785,
0.008451,
0.013974,
0.014399,
0.008451,
0.008092,
0.013508,
0.013974,
0.008092,
0.007744,
0.013048,
0.013508,
0.013048,
0.012638,
0.025764,
0.026148,
0.012638,
0.012317,
0.025457,
0.025764,
0.012317,
0.012112,
0.025259,
0.025457,
0.012112,
0.012042,
0.025191,
0.025259,
0.012042,
0.012112,
0.025259,
0.025191,
0.012112,
0.012317,
0.025457,
0.025259,
0.012317,
0.012638,
0.025764,
0.025457,
0.012638,
0.013048,
0.026148,
0.025764,
0.013048,
0.013508,
0.026570,
0.026148,
0.013508,
0.013974,
0.026988,
0.026570,
0.013974,
0.014399,
0.027362,
0.026988,
0.014399,
0.014740,
0.027656,
0.027362,
0.014740,
0.014960,
0.027843,
0.027656,
0.014960,
0.015036,
0.027908,
0.027843,
0.015036,
0.014960,
0.027843,
0.027908,
0.014960,
0.014740,
0.027656,
0.027843,
0.014740,
0.014399,
0.027362,
0.027656,
0.014399,
0.013974,
0.026988,
0.027362,
0.013974,
0.013508,
0.026570,
0.026988,
0.013508,
0.013048,
0.026148,
0.026570,
0.026148,
0.025764,
0.057131,
0.057234,
0.025764,
0.025457,
0.057034,
0.057131,
0.025457,
0.025259,
0.056965,
0.057034,
0.025259,
0.025191,
0.056939,
0.056965,
0.025191,
0.025259,
0.056965,
0.056939,
0.025259,
0.025457,
0.057034,
0.056965,
0.025457,
0.025764,
0.057131,
0.057034,
0.025764,
0.026148,
0.057234,
0.057131,
0.026148,
0.026570,
0.057322,
0.057234,
0.026570,
0.026988,
0.057382,
0.057322,
0.026988,
0.027362,
0.057411,
0.057382,
0.027362,
0.027656,
0.057415,
0.057411,
0.027656,
0.027843,
0.057410,
0.057415,
0.027843,
0.027908,
0.057406,
0.057410,
0.027908,
0.027843,
0.057410,
0.057406,
0.027843,
0.027656,
0.057415,
0.057410,
0.027656,
0.027362,
0.057410,
0.057415,
0.027362,
0.026988,
0.057382,
0.057410,
0.026988,
0.026570,
0.057322,
0.057382,
0.026570,
0.026148,
0.057234,
0.057322,
0.057234,
0.057131,
0.133932,
0.133365,
0.057131,
0.057034,
0.134332,
0.133932,
0.057034,
0.056965,
0.134566,
0.134332,
0.056965,
0.056939,
0.134643,
0.134566,
0.056939,
0.056965,
0.134566,
0.134643,
0.056965,
0.057034,
0.134332,
0.134566,
0.057034,
0.057131,
0.133932,
0.134332,
0.057131,
0.057234,
0.133365,
0.133932,
0.057234,
0.057322,
0.132650,
0.133365,
0.057322,
0.057382,
0.131839,
0.132650,
0.057382,
0.057411,
0.131019,
0.131839,
0.057411,
0.057415,
0.130306,
0.131019,
0.057415,
0.057410,
0.129818,
0.130306,
0.057410,
0.057406,
0.129645,
0.129818,
0.057406,
0.057410,
0.129818,
0.129645,
0.057410,
0.057415,
0.130306,
0.129818,
0.057415,
0.057410,
0.131019,
0.130306,
0.057410,
0.057382,
0.131839,
0.131019,
0.057382,
0.057322,
0.132650,
0.131839,
0.057322,
0.057234,
0.133365,
0.132650,
0.133365,
0.133932,
0.292229,
0.291845,
0.133932,
0.134332,
0.292455,
0.292229,
0.134332,
0.134566,
0.292566,
0.292455,
0.134566,
0.134643,
0.292598,
0.292566,
0.134643,
0.134566,
0.292566,
0.292598,
0.134566,
0.134332,
0.292455,
0.292566,
0.134332,
0.133932,
0.292229,
0.292455,
0.133932,
0.133365,
0.291845,
0.292229,
0.133365,
0.132650,
0.291278,
0.291845,
0.132650,
0.131839,
0.290547,
0.291278,
0.131839,
0.131019,
0.289731,
0.290547,
0.131019,
0.130306,
0.288968,
0.289731,
0.130306,
0.129818,
0.288419,
0.288968,
0.129818,
0.129645,
0.288219,
0.288419,
0.129645,
0.129818,
0.288419,
0.288219,
0.129818,
0.130306,
0.288968,
0.288419,
0.130306,
0.131019,
0.289731,
0.288968,
0.131019,
0.131839,
0.290547,
0.289731,
0.131839,
0.132650,
0.291278,
0.290547,
0.132650,
0.133365,
0.291845,
0.291278,
0.291845,
0.292229,
0.466640,
0.467949,
0.292229,
0.292455,
0.465598,
0.466640,
0.292455,
0.292566,
0.464927,
0.465598,
0.292566,
0.292598,
0.464696,
0.464927,
0.292598,
0.292566,
0.464927,
0.464696,
0.292566,
0.292455,
0.465598,
0.464927,
0.292455,
0.292229,
0.466640,
0.465598,
0.292229,
0.291845,
0.467949,
0.466640,
0.291845,
0.291278,
0.469395,
0.467949,
0.291278,
0.290547,
0.470833,
0.469395,
0.290547,
0.289731,
0.472126,
0.470833,
0.289731,
0.288968,
0.473148,
0.472126,
0.288968,
0.288419,
0.473802,
0.473148,
0.288419,
0.288219,
0.474027,
0.473802,
0.288219,
0.288419,
0.473802,
0.474027,
0.288419,
0.288968,
0.473148,
0.473802,
0.288968,
0.289731,
0.472126,
0.473148,
0.289731,
0.290547,
0.470833,
0.472126,
0.290547,
0.291278,
0.469395,
0.470833,
0.291278,
0.291845,
0.467949,
0.469395,
0.467949,
0.466640,
0.526626,
0.528014,
0.466640,
0.465598,
0.525595,
0.526626,
0.465598,
0.464927,
0.524963,
0.525595,
0.464927,
0.464696,
0.524750,
0.524963,
0.464696,
0.464927,
0.524963,
0.524750,
0.464927,
0.465598,
0.525595,
0.524963,
0.465598,
0.466640,
0.526626,
0.525595,
0.466640,
0.467949,
0.528014,
0.526626,
0.467949,
0.469395,
0.529687,
0.528014,
0.469395,
0.470833,
0.531523,
0.529687,
0.470833,
0.472126,
0.533343,
0.531523,
0.472126,
0.473148,
0.534916,
0.533343,
0.473148,
0.473802,
0.535993,
0.534916,
0.473802,
0.474027,
0.536378,
0.535993,
0.474027,
0.473802,
0.535993,
0.536378,
0.473802,
0.473148,
0.534916,
0.535993,
0.473148,
0.472126,
0.533343,
0.534916,
0.472126,
0.470833,
0.531523,
0.533343,
0.470833,
0.469395,
0.529687,
0.531523,
0.469395,
0.467949,
0.528014,
0.529687,
0.528014,
0.526626,
0.691076,
0.697881,
0.526626,
0.525595,
0.685950,
0.691076,
0.525595,
0.524963,
0.682779,
0.685950,
0.524963,
0.524750,
0.681707,
0.682779,
0.524750,
0.524963,
0.682779,
0.681707,
0.524963,
0.525595,
0.685950,
0.682779,
0.525595,
0.526626,
0.691076,
0.685950,
0.526626,
0.528014,
0.697881,
0.691076,
0.528014,
0.529687,
0.705916,
0.697881,
0.529687,
0.531523,
0.714520,
0.705916,
0.531523,
0.533343,
0.722820,
0.714520,
0.533343,
0.534916,
0.729805,
0.722820,
0.534916,
0.535993,
0.734489,
0.729805,
0.535993,
0.536378,
0.736141,
0.734489,
0.536378,
0.535993,
0.734489,
0.736141,
0.535993,
0.534916,
0.729805,
0.734489,
0.534916,
0.533343,
0.722820,
0.729805,
0.533343,
0.531523,
0.714520,
0.722820,
0.531523,
0.529687,
0.705916,
0.714520,
0.529687,
0.528014,
0.697881,
0.705916,
0.697881,
0.691076,
0.841398,
0.848692,
0.691076,
0.685950,
0.835725,
0.841398,
0.685950,
0.682779,
0.832136,
0.835725,
0.682779,
0.681707,
0.830909,
0.832136,
0.681707,
0.682779,
0.832136,
0.830909,
0.682779,
0.685950,
0.835725,
0.832136,
0.685950,
0.691076,
0.841398,
0.835725,
0.691076,
0.697881,
0.848692,
0.841398,
0.697881,
0.705916,
0.856964,
0.848692,
0.705916,
0.714520,
0.865429,
0.856964,
0.714520,
0.722820,
0.873224,
0.865429,
0.722820,
0.729805,
0.879512,
0.873224,
0.729805,
0.734489,
0.883594,
0.879512,
0.734489,
0.736141,
0.885009,
0.883594,
0.736141,
0.734489,
0.883594,
0.885009,
0.734489,
0.729805,
0.879512,
0.883594,
0.729805,
0.722820,
0.873224,
0.879512,
0.722820,
0.714520,
0.865429,
0.873224,
0.714520,
0.705916,
0.856964,
0.865429,
0.705916,
0.697881,
0.848692,
0.856964,
0.848692,
0.841398,
0.906245,
0.911985,
0.841398,
0.835725,
0.901683,
0.906245,
0.835725,
0.832136,
0.898754,
0.901683,
0.832136,
0.830909,
0.897745,
0.898754,
0.830909,
0.832136,
0.898754,
0.897745,
0.832136,
0.835725,
0.901683,
0.898754,
0.835725,
0.841398,
0.906245,
0.901683,
0.841398,
0.848692,
0.911985,
0.906245,
0.848692,
0.856964,
0.918328,
0.911985,
0.856964,
0.865429,
0.924635,
0.918328,
0.865429,
0.873224,
0.930279,
0.924635,
0.873224,
0.879512,
0.934718,
0.930279,
0.879512,
0.883594,
0.937545,
0.934718,
0.883594,
0.885009,
0.938515,
0.937545,
0.885009,
0.883594,
0.937545,
0.938515,
0.883594,
0.879512,
0.934718,
0.937545,
0.879512,
0.873224,
0.930279,
0.934718,
0.873224,
0.865429,
0.924635,
0.930279,
0.865429,
0.856964,
0.918328,
0.924635,
0.856964,
0.848692,
0.911985,
0.918328,
0.911985,
0.906245,
0.906807,
0.912571,
0.906245,
0.901683,
0.902222,
0.906807,
0.901683,
0.898754,
0.899276,
0.902222,
0.898754,
0.897745,
0.898260,
0.899276,
0.897745,
0.898754,
0.899276,
0.898260,
0.898754,
0.901683,
0.902222,
0.899276,
0.901683,
0.906245,
0.906807,
0.902222,
0.906245,
0.911985,
0.912571,
0.906807,
0.911985,
0.918328,
0.918933,
0.912571,
0.918328,
0.924635,
0.925250,
0.918933,
0.924635,
0.930279,
0.930897,
0.925250,
0.930279,
0.934718,
0.935334,
0.930897,
0.934718,
0.937545,
0.938158,
0.935334,
0.937545,
0.938515,
0.939126,
0.938158,
0.938515,
0.937545,
0.938158,
0.939126,
0.937545,
0.934718,
0.935334,
0.938158,
0.934718,
0.930279,
0.930897,
0.935334,
0.930279,
0.924635,
0.925251,
0.930897,
0.924635,
0.918328,
0.918933,
0.925251,
0.918328,
0.911985,
0.912571,
0.918933,
0.912571,
0.906807,
0.844154,
0.851571,
0.906807,
0.902222,
0.838368,
0.844154,
0.902222,
0.899276,
0.834701,
0.838368,
0.899276,
0.898260,
0.833446,
0.834701,
0.898260,
0.899276,
0.834701,
0.833446,
0.899276,
0.902222,
0.838368,
0.834701,
0.902222,
0.906807,
0.844154,
0.838368,
0.906807,
0.912571,
0.851571,
0.844154,
0.912571,
0.918933,
0.859954,
0.851571,
0.918933,
0.925250,
0.868502,
0.859954,
0.925250,
0.930897,
0.876345,
0.868502,
0.930897,
0.935334,
0.882654,
0.876345,
0.935334,
0.938158,
0.886740,
0.882654,
0.938158,
0.939126,
0.888154,
0.886740,
0.939126,
0.938158,
0.886740,
0.888154,
0.938158,
0.935334,
0.882654,
0.886740,
0.935334,
0.930897,
0.876345,
0.882654,
0.930897,
0.925251,
0.868502,
0.876345,
0.925251,
0.918933,
0.859954,
0.868502,
0.918933,
0.912571,
0.851571,
0.859954,
0.851571,
0.844154,
0.696930,
0.704205,
0.844154,
0.838368,
0.691422,
0.696930,
0.838368,
0.834701,
0.688001,
0.691422,
0.834701,
0.833446,
0.686843,
0.688001,
0.833446,
0.834701,
0.688001,
0.686843,
0.834701,
0.838368,
0.691422,
0.688001,
0.838368,
0.844154,
0.696930,
0.691422,
0.844154,
0.851571,
0.704205,
0.696930,
0.851571,
0.859954,
0.712743,
0.704205,
0.859954,
0.868502,
0.721829,
0.712743,
0.868502,
0.876345,
0.730543,
0.721829,
0.876345,
0.882654,
0.737840,
0.730543,
0.882654,
0.886740,
0.742716,
0.737840,
0.886740,
0.888154,
0.744432,
0.742716,
0.888154,
0.886740,
0.742716,
0.744432,
0.886740,
0.882654,
0.737840,
0.742716,
0.882654,
0.876345,
0.730543,
0.737840,
0.876345,
0.868502,
0.721829,
0.730543,
0.868502,
0.859954,
0.712743,
0.721829,
0.859954,
0.851571,
0.704205,
0.712743,
0.704205,
0.696930,
0.528126,
0.530166,
0.696930,
0.691422,
0.526576,
0.528126,
0.691422,
0.688001,
0.525609,
0.526576,
0.688001,
0.686843,
0.525281,
0.525609,
0.686843,
0.688001,
0.525609,
0.525281,
0.688001,
0.691422,
0.526576,
0.525609,
0.691422,
0.696930,
0.528126,
0.526576,
0.696930,
0.704205,
0.530166,
0.528126,
0.704205,
0.712743,
0.532561,
0.530166,
0.712743,
0.721829,
0.535125,
0.532561,
0.721829,
0.730543,
0.537612,
0.535125,
0.730543,
0.737840,
0.539724,
0.537612,
0.737840,
0.742716,
0.541154,
0.539724,
0.742716,
0.744432,
0.541661,
0.541154,
0.744432,
0.742716,
0.541154,
0.541661,
0.742716,
0.737840,
0.539724,
0.541154,
0.737840,
0.730543,
0.537612,
0.539724,
0.730543,
0.721829,
0.535125,
0.537612,
0.721829,
0.712743,
0.532562,
0.535125,
0.712743,
0.704205,
0.530166,
0.532562,
0.530166,
0.528126,
0.460211,
0.464203,
0.528126,
0.526576,
0.456968,
0.460211,
0.526576,
0.525609,
0.454852,
0.456968,
0.525609,
0.525281,
0.454117,
0.454852,
0.525281,
0.525609,
0.454852,
0.454117,
0.525609,
0.526576,
0.456968,
0.454852,
0.526576,
0.528126,
0.460211,
0.456968,
0.528126,
0.530166,
0.464203,
0.460211,
0.530166,
0.532561,
0.468496,
0.464203,
0.532561,
0.535125,
0.472636,
0.468496,
0.535125,
0.537612,
0.476228,
0.472636,
0.537612,
0.539724,
0.478972,
0.476228,
0.539724,
0.541154,
0.480679,
0.478972,
0.541154,
0.541661,
0.481257,
0.480679,
0.541661,
0.541154,
0.480679,
0.481257,
0.541154,
0.539724,
0.478972,
0.480679,
0.539724,
0.537612,
0.476228,
0.478972,
0.537612,
0.535125,
0.472636,
0.476228,
0.535125,
0.532562,
0.468496,
0.472636,
0.532562,
0.530166,
0.464203,
0.468496,
0.464203,
0.460211,
0.278220,
0.283612,
0.460211,
0.456968,
0.273928,
0.278220,
0.456968,
0.454852,
0.271167,
0.273928,
0.454852,
0.454117,
0.270214,
0.271167,
0.454117,
0.454852,
0.271167,
0.270214,
0.454852,
0.456968,
0.273928,
0.271167,
0.456968,
0.460211,
0.278220,
0.273928,
0.460211,
0.464203,
0.283612,
0.278220,
0.464203,
0.468496,
0.289563,
0.283612,
0.468496,
0.472636,
0.295483,
0.289563,
0.472636,
0.476228,
0.300793,
0.295483,
0.476228,
0.478972,
0.304984,
0.300793,
0.478972,
0.480679,
0.307663,
0.304984,
0.480679,
0.481257,
0.308584,
0.307663,
0.481257,
0.480679,
0.307663,
0.308584,
0.480679,
0.478972,
0.304984,
0.307663,
0.478972,
0.476228,
0.300793,
0.304984,
0.476228,
0.472636,
0.295483,
0.300793,
0.472636,
0.468496,
0.289563,
0.295483,
0.468496,
0.464203,
0.283612,
0.289563,
0.283612,
0.278220,
0.114318,
0.118679,
0.278220,
0.273928,
0.110897,
0.114318,
0.273928,
0.271167,
0.108720,
0.110897,
0.271167,
0.270214,
0.107973,
0.108720,
0.270214,
0.271167,
0.108720,
0.107973,
0.271167,
0.273928,
0.110897,
0.108720,
0.273928,
0.278220,
0.114317,
0.110897,
0.278220,
0.283612,
0.118679,
0.114317,
0.283612,
0.289563,
0.123577,
0.118679,
0.289563,
0.295483,
0.128536,
0.123577,
0.295483,
0.300793,
0.133060,
0.128536,
0.300793,
0.304984,
0.136682,
0.133060,
0.304984,
0.307663,
0.139021,
0.136682,
0.307663,
0.308584,
0.139829,
0.139021,
0.308584,
0.307663,
0.139021,
0.139829,
0.307663,
0.304984,
0.136682,
0.139021,
0.304984,
0.300793,
0.133060,
0.136682,
0.300793,
0.295483,
0.128536,
0.133060,
0.295483,
0.289563,
0.123576,
0.128536,
0.289563,
0.283612,
0.118679,
0.123576,
0.118679,
0.114318,
0.038613,
0.041297,
0.114318,
0.110897,
0.036550,
0.038613,
0.110897,
0.108720,
0.035257,
0.036550,
0.108720,
0.107973,
0.034817,
0.035257,
0.107973,
0.108720,
0.035257,
0.034817,
0.108720,
0.110897,
0.036550,
0.035257,
0.110897,
0.114317,
0.038613,
0.036550,
0.114317,
0.118679,
0.041297,
0.038613,
0.118679,
0.123577,
0.044382,
0.041297,
0.123577,
0.128536,
0.047584,
0.044382,
0.128536,
0.133060,
0.050571,
0.047584,
0.133060,
0.136682,
0.053008,
0.050571,
0.136682,
0.139021,
0.054603,
0.053008,
0.139021,
0.139829,
0.055159,
0.054603,
0.139829,
0.139021,
0.054603,
0.055159,
0.139021,
0.136682,
0.053008,
0.054603,
0.136682,
0.133060,
0.050571,
0.053008,
0.133060,
0.128536,
0.047584,
0.050571,
0.128536,
0.123576,
0.044382,
0.047584,
0.123576,
0.118679,
0.041297,
0.044382,
0.041297,
0.038613,
0.012390,
0.013737,
0.038613,
0.036550,
0.011375,
0.012390,
0.036550,
0.035257,
0.010748,
0.011375,
0.035257,
0.034817,
0.010537,
0.010748,
0.034817,
0.035257,
0.010748,
0.010537,
0.035257,
0.036550,
0.011375,
0.010748,
0.036550,
0.038613,
0.012390,
0.011375,
0.038613,
0.041297,
0.013737,
0.012390,
0.041297,
0.044382,
0.015321,
0.013737,
0.044382,
0.047584,
0.017000,
0.015321,
0.047584,
0.050571,
0.018598,
0.017000,
0.050571,
0.053008,
0.019923,
0.018598,
0.053008,
0.054603,
0.020801,
0.019923,
0.054603,
0.055159,
0.021108,
0.020801,
0.055159,
0.054603,
0.020801,
0.021108,
0.054603,
0.053008,
0.019923,
0.020801,
0.053008,
0.050571,
0.018598,
0.019923,
0.050571,
0.047584,
0.017000,
0.018598,
0.047584,
0.044382,
0.015321,
0.017000,
0.044382,
0.041297,
0.013737,
0.015321,
0.013737,
0.012390,
0.006152,
0.006878,
0.012390,
0.011375,
0.005610,
0.006152,
0.011375,
0.010748,
0.005277,
0.005610,
0.010748,
0.010537,
0.005165,
0.005277,
0.010537,
0.010748,
0.005277,
0.005165,
0.010748,
0.011375,
0.005610,
0.005277,
0.011375,
0.012390,
0.006152,
0.005610,
0.012390,
0.013737,
0.006878,
0.006152,
0.013737,
0.015321,
0.007740,
0.006878,
0.015321,
0.017000,
0.008663,
0.007740,
0.017000,
0.018598,
0.009551,
0.008663,
0.018598,
0.019923,
0.010293,
0.009551,
0.019923,
0.020801,
0.010787,
0.010293,
0.020801,
0.021108,
0.010961,
0.010787,
0.021108,
0.020801,
0.010787,
0.010961,
0.020801,
0.019923,
0.010293,
0.010787,
0.019923,
0.018598,
0.009551,
0.010293,
0.018598,
0.017000,
0.008663,
0.009551,
0.017000,
0.015321,
0.007740,
0.008663,
0.015321,
0.013737,
0.006878,
0.007740,
0.007439,
0.007744,
0.007203,
0.007439,
0.007055,
0.007203,
0.007004,
0.007055,
0.007055,
0.007004,
0.007203,
0.007055,
0.007439,
0.007203,
0.007744,
0.007439,
0.008092,
0.007744,
0.008451,
0.008092,
0.008785,
0.008451,
0.009056,
0.008785,
0.009233,
0.009056,
0.009294,
0.009233,
0.009233,
0.009294,
0.009056,
0.009233,
0.008785,
0.009056,
0.008451,
0.008785,
0.008092,
0.008451,
0.007744,
0.008092,
0.006878,
0.006152,
0.006152,
0.005610,
0.005610,
0.005277,
0.005277,
0.005165,
0.005165,
0.005277,
0.005277,
0.005610,
0.005610,
0.006152,
0.006152,
0.006878,
0.006878,
0.007740,
0.007740,
0.008663,
0.008663,
0.009551,
0.009551,
0.010293,
0.010293,
0.010787,
0.010787,
0.010961,
0.010961,
0.010787,
0.010787,
0.010293,
0.010293,
0.009551,
0.009551,
0.008663,
0.008663,
0.007740,
0.007740,
0.006878;
0.000000,-0.000000,1.000000,-0.000000,1.000000,0.000000,-0.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000000,1.754386,0.087719,-0.000000,1.000000;;
}
SkinWeights {
"joint3";
1700;
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
295,
296,
297,
298,
299,
300,
301,
302,
303,
304,
305,
306,
307,
308,
309,
310,
311,
312,
313,
314,
315,
316,
317,
318,
319,
320,
321,
322,
323,
324,
325,
326,
327,
328,
329,
330,
331,
332,
333,
334,
335,
336,
337,
338,
339,
340,
341,
342,
343,
344,
345,
346,
347,
348,
349,
350,
351,
352,
353,
354,
355,
356,
357,
358,
359,
360,
361,
362,
363,
364,
365,
366,
367,
368,
369,
370,
371,
372,
373,
374,
375,
376,
377,
378,
379,
380,
381,
382,
383,
384,
385,
386,
387,
388,
389,
390,
391,
392,
393,
394,
395,
396,
397,
398,
399,
400,
401,
402,
403,
404,
405,
406,
407,
408,
409,
410,
411,
412,
413,
414,
415,
416,
417,
418,
419,
420,
421,
422,
423,
424,
425,
426,
427,
428,
429,
430,
431,
432,
433,
434,
435,
436,
437,
438,
439,
440,
441,
442,
443,
444,
445,
446,
447,
448,
449,
450,
451,
452,
453,
454,
455,
456,
457,
458,
459,
460,
461,
462,
463,
464,
465,
466,
467,
468,
469,
470,
471,
472,
473,
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484,
485,
486,
487,
488,
489,
490,
491,
492,
493,
494,
495,
496,
497,
498,
499,
500,
501,
502,
503,
504,
505,
506,
507,
508,
509,
510,
511,
512,
513,
514,
515,
516,
517,
518,
519,
520,
521,
522,
523,
524,
525,
526,
527,
528,
529,
530,
531,
532,
533,
534,
535,
536,
537,
538,
539,
540,
541,
542,
543,
544,
545,
546,
547,
548,
549,
550,
551,
552,
553,
554,
555,
556,
557,
558,
559,
560,
561,
562,
563,
564,
565,
566,
567,
568,
569,
570,
571,
572,
573,
574,
575,
576,
577,
578,
579,
580,
581,
582,
583,
584,
585,
586,
587,
588,
589,
590,
591,
592,
593,
594,
595,
596,
597,
598,
599,
600,
601,
602,
603,
604,
605,
606,
607,
608,
609,
610,
611,
612,
613,
614,
615,
616,
617,
618,
619,
620,
621,
622,
623,
624,
625,
626,
627,
628,
629,
630,
631,
632,
633,
634,
635,
636,
637,
638,
639,
640,
641,
642,
643,
644,
645,
646,
647,
648,
649,
650,
651,
652,
653,
654,
655,
656,
657,
658,
659,
660,
661,
662,
663,
664,
665,
666,
667,
668,
669,
670,
671,
672,
673,
674,
675,
676,
677,
678,
679,
680,
681,
682,
683,
684,
685,
686,
687,
688,
689,
690,
691,
692,
693,
694,
695,
696,
697,
698,
699,
700,
701,
702,
703,
704,
705,
706,
707,
708,
709,
710,
711,
712,
713,
714,
715,
716,
717,
718,
719,
720,
721,
722,
723,
724,
725,
726,
727,
728,
729,
730,
731,
732,
733,
734,
735,
736,
737,
738,
739,
740,
741,
742,
743,
744,
745,
746,
747,
748,
749,
750,
751,
752,
753,
754,
755,
756,
757,
758,
759,
760,
761,
762,
763,
764,
765,
766,
767,
768,
769,
770,
771,
772,
773,
774,
775,
776,
777,
778,
779,
780,
781,
782,
783,
784,
785,
786,
787,
788,
789,
790,
791,
792,
793,
794,
795,
796,
797,
798,
799,
800,
801,
802,
803,
804,
805,
806,
807,
808,
809,
810,
811,
812,
813,
814,
815,
816,
817,
818,
819,
820,
821,
822,
823,
824,
825,
826,
827,
828,
829,
830,
831,
832,
833,
834,
835,
836,
837,
838,
839,
840,
841,
842,
843,
844,
845,
846,
847,
848,
849,
850,
851,
852,
853,
854,
855,
856,
857,
858,
859,
860,
861,
862,
863,
864,
865,
866,
867,
868,
869,
870,
871,
872,
873,
874,
875,
876,
877,
878,
879,
880,
881,
882,
883,
884,
885,
886,
887,
888,
889,
890,
891,
892,
893,
894,
895,
896,
897,
898,
899,
900,
901,
902,
903,
904,
905,
906,
907,
908,
909,
910,
911,
912,
913,
914,
915,
916,
917,
918,
919,
920,
921,
922,
923,
924,
925,
926,
927,
928,
929,
930,
931,
932,
933,
934,
935,
936,
937,
938,
939,
940,
941,
942,
943,
944,
945,
946,
947,
948,
949,
950,
951,
952,
953,
954,
955,
956,
957,
958,
959,
960,
961,
962,
963,
964,
965,
966,
967,
968,
969,
970,
971,
972,
973,
974,
975,
976,
977,
978,
979,
980,
981,
982,
983,
984,
985,
986,
987,
988,
989,
990,
991,
992,
993,
994,
995,
996,
997,
998,
999,
1000,
1001,
1002,
1003,
1004,
1005,
1006,
1007,
1008,
1009,
1010,
1011,
1012,
1013,
1014,
1015,
1016,
1017,
1018,
1019,
1020,
1021,
1022,
1023,
1024,
1025,
1026,
1027,
1028,
1029,
1030,
1031,
1032,
1033,
1034,
1035,
1036,
1037,
1038,
1039,
1040,
1041,
1042,
1043,
1044,
1045,
1046,
1047,
1048,
1049,
1050,
1051,
1052,
1053,
1054,
1055,
1056,
1057,
1058,
1059,
1060,
1061,
1062,
1063,
1064,
1065,
1066,
1067,
1068,
1069,
1070,
1071,
1072,
1073,
1074,
1075,
1076,
1077,
1078,
1079,
1080,
1081,
1082,
1083,
1084,
1085,
1086,
1087,
1088,
1089,
1090,
1091,
1092,
1093,
1094,
1095,
1096,
1097,
1098,
1099,
1100,
1101,
1102,
1103,
1104,
1105,
1106,
1107,
1108,
1109,
1110,
1111,
1112,
1113,
1114,
1115,
1116,
1117,
1118,
1119,
1120,
1121,
1122,
1123,
1124,
1125,
1126,
1127,
1128,
1129,
1130,
1131,
1132,
1133,
1134,
1135,
1136,
1137,
1138,
1139,
1140,
1141,
1142,
1143,
1144,
1145,
1146,
1147,
1148,
1149,
1150,
1151,
1152,
1153,
1154,
1155,
1156,
1157,
1158,
1159,
1160,
1161,
1162,
1163,
1164,
1165,
1166,
1167,
1168,
1169,
1170,
1171,
1172,
1173,
1174,
1175,
1176,
1177,
1178,
1179,
1180,
1181,
1182,
1183,
1184,
1185,
1186,
1187,
1188,
1189,
1190,
1191,
1192,
1193,
1194,
1195,
1196,
1197,
1198,
1199,
1200,
1201,
1202,
1203,
1204,
1205,
1206,
1207,
1208,
1209,
1210,
1211,
1212,
1213,
1214,
1215,
1216,
1217,
1218,
1219,
1220,
1221,
1222,
1223,
1224,
1225,
1226,
1227,
1228,
1229,
1230,
1231,
1232,
1233,
1234,
1235,
1236,
1237,
1238,
1239,
1240,
1241,
1242,
1243,
1244,
1245,
1246,
1247,
1248,
1249,
1250,
1251,
1252,
1253,
1254,
1255,
1256,
1257,
1258,
1259,
1260,
1261,
1262,
1263,
1264,
1265,
1266,
1267,
1268,
1269,
1270,
1271,
1272,
1273,
1274,
1275,
1276,
1277,
1278,
1279,
1280,
1281,
1282,
1283,
1284,
1285,
1286,
1287,
1288,
1289,
1290,
1291,
1292,
1293,
1294,
1295,
1296,
1297,
1298,
1299,
1300,
1301,
1302,
1303,
1304,
1305,
1306,
1307,
1308,
1309,
1310,
1311,
1312,
1313,
1314,
1315,
1316,
1317,
1318,
1319,
1320,
1321,
1322,
1323,
1324,
1325,
1326,
1327,
1328,
1329,
1330,
1331,
1332,
1333,
1334,
1335,
1336,
1337,
1338,
1339,
1340,
1341,
1342,
1343,
1344,
1345,
1346,
1347,
1348,
1349,
1350,
1351,
1352,
1353,
1354,
1355,
1356,
1357,
1358,
1359,
1360,
1361,
1362,
1363,
1364,
1365,
1366,
1367,
1368,
1369,
1370,
1371,
1372,
1373,
1374,
1375,
1376,
1377,
1378,
1379,
1380,
1381,
1382,
1383,
1384,
1385,
1386,
1387,
1388,
1389,
1390,
1391,
1392,
1393,
1394,
1395,
1396,
1397,
1398,
1399,
1400,
1401,
1402,
1403,
1404,
1405,
1406,
1407,
1408,
1409,
1410,
1411,
1412,
1413,
1414,
1415,
1416,
1417,
1418,
1419,
1420,
1421,
1422,
1423,
1424,
1425,
1426,
1427,
1428,
1429,
1430,
1431,
1432,
1433,
1434,
1435,
1436,
1437,
1438,
1439,
1440,
1441,
1442,
1443,
1444,
1445,
1446,
1447,
1448,
1449,
1450,
1451,
1452,
1453,
1454,
1455,
1456,
1457,
1458,
1459,
1460,
1461,
1462,
1463,
1464,
1465,
1466,
1467,
1468,
1469,
1470,
1471,
1472,
1473,
1474,
1475,
1476,
1477,
1478,
1479,
1480,
1481,
1482,
1483,
1484,
1485,
1486,
1487,
1488,
1489,
1490,
1491,
1492,
1493,
1494,
1495,
1496,
1497,
1498,
1499,
1500,
1501,
1502,
1503,
1504,
1505,
1506,
1507,
1508,
1509,
1510,
1511,
1512,
1513,
1514,
1515,
1516,
1517,
1518,
1519,
1520,
1521,
1522,
1523,
1524,
1525,
1526,
1527,
1528,
1529,
1530,
1531,
1532,
1533,
1534,
1535,
1536,
1537,
1538,
1539,
1540,
1541,
1542,
1543,
1544,
1545,
1546,
1547,
1548,
1549,
1550,
1551,
1552,
1553,
1554,
1555,
1556,
1557,
1558,
1559,
1560,
1561,
1562,
1563,
1564,
1565,
1566,
1567,
1568,
1569,
1570,
1571,
1572,
1573,
1574,
1575,
1576,
1577,
1578,
1579,
1580,
1581,
1582,
1583,
1584,
1585,
1586,
1587,
1588,
1589,
1590,
1591,
1592,
1593,
1594,
1595,
1596,
1597,
1598,
1599,
1600,
1601,
1603,
1604,
1606,
1607,
1609,
1610,
1612,
1613,
1615,
1616,
1618,
1619,
1621,
1622,
1624,
1625,
1627,
1628,
1630,
1631,
1633,
1634,
1636,
1637,
1639,
1640,
1642,
1643,
1645,
1646,
1648,
1649,
1651,
1652,
1654,
1655,
1657,
1658,
1660,
1661,
1662,
1663,
1664,
1665,
1666,
1667,
1668,
1669,
1670,
1671,
1672,
1673,
1674,
1675,
1676,
1677,
1678,
1679,
1680,
1681,
1682,
1683,
1684,
1685,
1686,
1687,
1688,
1689,
1690,
1691,
1692,
1693,
1694,
1695,
1696,
1697,
1698,
1699,
1700,
1701,
1702,
1703,
1704,
1705,
1706,
1707,
1708,
1709,
1710,
1711,
1712,
1713,
1714,
1715,
1716,
1717,
1718,
1719;
0.000356,
0.000344,
0.000426,
0.000436,
0.000344,
0.000335,
0.000419,
0.000426,
0.000335,
0.000329,
0.000414,
0.000419,
0.000329,
0.000327,
0.000412,
0.000414,
0.000327,
0.000329,
0.000414,
0.000412,
0.000329,
0.000335,
0.000419,
0.000414,
0.000335,
0.000344,
0.000426,
0.000419,
0.000344,
0.000356,
0.000436,
0.000426,
0.000356,
0.000369,
0.000447,
0.000436,
0.000369,
0.000383,
0.000457,
0.000447,
0.000383,
0.000395,
0.000467,
0.000457,
0.000395,
0.000405,
0.000474,
0.000467,
0.000405,
0.000412,
0.000479,
0.000474,
0.000412,
0.000414,
0.000481,
0.000479,
0.000414,
0.000412,
0.000479,
0.000481,
0.000412,
0.000405,
0.000474,
0.000479,
0.000405,
0.000395,
0.000467,
0.000474,
0.000395,
0.000383,
0.000457,
0.000467,
0.000383,
0.000369,
0.000447,
0.000457,
0.000369,
0.000356,
0.000436,
0.000447,
0.000436,
0.000426,
0.000593,
0.000594,
0.000426,
0.000419,
0.000592,
0.000593,
0.000419,
0.000414,
0.000592,
0.000592,
0.000414,
0.000412,
0.000591,
0.000592,
0.000412,
0.000414,
0.000592,
0.000591,
0.000414,
0.000419,
0.000592,
0.000592,
0.000419,
0.000426,
0.000593,
0.000592,
0.000426,
0.000436,
0.000594,
0.000593,
0.000436,
0.000447,
0.000594,
0.000594,
0.000447,
0.000457,
0.000595,
0.000594,
0.000457,
0.000467,
0.000594,
0.000595,
0.000467,
0.000474,
0.000594,
0.000594,
0.000474,
0.000479,
0.000594,
0.000594,
0.000479,
0.000481,
0.000594,
0.000594,
0.000481,
0.000479,
0.000594,
0.000594,
0.000479,
0.000474,
0.000594,
0.000594,
0.000474,
0.000467,
0.000594,
0.000594,
0.000467,
0.000457,
0.000595,
0.000594,
0.000457,
0.000447,
0.000594,
0.000595,
0.000447,
0.000436,
0.000594,
0.000594,
0.000594,
0.000593,
0.000829,
0.000813,
0.000593,
0.000592,
0.000841,
0.000829,
0.000592,
0.000592,
0.000849,
0.000841,
0.000592,
0.000591,
0.000851,
0.000849,
0.000591,
0.000592,
0.000849,
0.000851,
0.000592,
0.000592,
0.000841,
0.000849,
0.000592,
0.000593,
0.000829,
0.000841,
0.000593,
0.000594,
0.000813,
0.000829,
0.000594,
0.000594,
0.000795,
0.000813,
0.000594,
0.000595,
0.000777,
0.000795,
0.000595,
0.000594,
0.000761,
0.000777,
0.000594,
0.000594,
0.000748,
0.000761,
0.000594,
0.000594,
0.000739,
0.000748,
0.000594,
0.000594,
0.000737,
0.000739,
0.000594,
0.000594,
0.000739,
0.000737,
0.000594,
0.000594,
0.000748,
0.000739,
0.000594,
0.000594,
0.000761,
0.000748,
0.000594,
0.000595,
0.000777,
0.000761,
0.000595,
0.000594,
0.000795,
0.000777,
0.000594,
0.000594,
0.000813,
0.000795,
0.000813,
0.000829,
0.001129,
0.001087,
0.000829,
0.000841,
0.001163,
0.001129,
0.000841,
0.000849,
0.001184,
0.001163,
0.000849,
0.000851,
0.001192,
0.001184,
0.000851,
0.000849,
0.001184,
0.001192,
0.000849,
0.000841,
0.001163,
0.001184,
0.000841,
0.000829,
0.001129,
0.001163,
0.000829,
0.000813,
0.001087,
0.001129,
0.000813,
0.000795,
0.001041,
0.001087,
0.000795,
0.000777,
0.000995,
0.001041,
0.000777,
0.000761,
0.000954,
0.000995,
0.000761,
0.000748,
0.000921,
0.000954,
0.000748,
0.000739,
0.000900,
0.000921,
0.000739,
0.000737,
0.000893,
0.000900,
0.000737,
0.000739,
0.000900,
0.000893,
0.000739,
0.000748,
0.000921,
0.000900,
0.000748,
0.000761,
0.000954,
0.000921,
0.000761,
0.000777,
0.000995,
0.000954,
0.000777,
0.000795,
0.001041,
0.000995,
0.000795,
0.000813,
0.001087,
0.001041,
0.001087,
0.001129,
0.001413,
0.001335,
0.001129,
0.001163,
0.001476,
0.001413,
0.001163,
0.001184,
0.001517,
0.001476,
0.001184,
0.001192,
0.001531,
0.001517,
0.001192,
0.001184,
0.001517,
0.001531,
0.001184,
0.001163,
0.001476,
0.001517,
0.001163,
0.001129,
0.001413,
0.001476,
0.001129,
0.001087,
0.001335,
0.001413,
0.001087,
0.001041,
0.001251,
0.001335,
0.001041,
0.000995,
0.001168,
0.001251,
0.000995,
0.000954,
0.001095,
0.001168,
0.000954,
0.000921,
0.001038,
0.001095,
0.000921,
0.000900,
0.001002,
0.001038,
0.000900,
0.000893,
0.000990,
0.001002,
0.000893,
0.000900,
0.001002,
0.000990,
0.000900,
0.000921,
0.001038,
0.001002,
0.000921,
0.000954,
0.001095,
0.001038,
0.000954,
0.000995,
0.001168,
0.001095,
0.000995,
0.001041,
0.001251,
0.001168,
0.001041,
0.001087,
0.001335,
0.001251,
0.001335,
0.001413,
0.001694,
0.001568,
0.001413,
0.001476,
0.001797,
0.001694,
0.001476,
0.001517,
0.001865,
0.001797,
0.001517,
0.001531,
0.001888,
0.001865,
0.001531,
0.001517,
0.001865,
0.001888,
0.001517,
0.001476,
0.001797,
0.001865,
0.001476,
0.001413,
0.001694,
0.001797,
0.001413,
0.001335,
0.001568,
0.001694,
0.001335,
0.001251,
0.001433,
0.001568,
0.001251,
0.001168,
0.001302,
0.001433,
0.001168,
0.001095,
0.001189,
0.001302,
0.001095,
0.001038,
0.001102,
0.001189,
0.001038,
0.001002,
0.001048,
0.001102,
0.001002,
0.000990,
0.001029,
0.001048,
0.000990,
0.001002,
0.001048,
0.001029,
0.001002,
0.001038,
0.001102,
0.001048,
0.001038,
0.001095,
0.001189,
0.001102,
0.001095,
0.001168,
0.001302,
0.001189,
0.001168,
0.001251,
0.001433,
0.001302,
0.001251,
0.001335,
0.001568,
0.001433,
0.001568,
0.001694,
0.002738,
0.002525,
0.001694,
0.001797,
0.002913,
0.002738,
0.001797,
0.001865,
0.003027,
0.002913,
0.001865,
0.001888,
0.003067,
0.003027,
0.001888,
0.001865,
0.003027,
0.003067,
0.001865,
0.001797,
0.002913,
0.003027,
0.001797,
0.001694,
0.002738,
0.002913,
0.001694,
0.001568,
0.002525,
0.002738,
0.001568,
0.001433,
0.002297,
0.002525,
0.001433,
0.001302,
0.002079,
0.002297,
0.001302,
0.001189,
0.001889,
0.002079,
0.001189,
0.001102,
0.001745,
0.001889,
0.001102,
0.001048,
0.001654,
0.001745,
0.001048,
0.001029,
0.001624,
0.001654,
0.001029,
0.001048,
0.001654,
0.001624,
0.001048,
0.001102,
0.001745,
0.001654,
0.001102,
0.001189,
0.001889,
0.001745,
0.001189,
0.001302,
0.002079,
0.001889,
0.001302,
0.001433,
0.002297,
0.002079,
0.001433,
0.001568,
0.002525,
0.002297,
0.002525,
0.002738,
0.006048,
0.005628,
0.002738,
0.002913,
0.006388,
0.006048,
0.002913,
0.003027,
0.006610,
0.006388,
0.003027,
0.003067,
0.006687,
0.006610,
0.003067,
0.003027,
0.006610,
0.006687,
0.003027,
0.002913,
0.006388,
0.006610,
0.002913,
0.002738,
0.006048,
0.006388,
0.002738,
0.002525,
0.005628,
0.006048,
0.002525,
0.002297,
0.005174,
0.005628,
0.002297,
0.002079,
0.004732,
0.005174,
0.002079,
0.001889,
0.004345,
0.004732,
0.001889,
0.001745,
0.004045,
0.004345,
0.001745,
0.001654,
0.003857,
0.004045,
0.001654,
0.001624,
0.003792,
0.003857,
0.001624,
0.001654,
0.003857,
0.003792,
0.001654,
0.001745,
0.004045,
0.003857,
0.001745,
0.001889,
0.004345,
0.004045,
0.001889,
0.002079,
0.004732,
0.004345,
0.002079,
0.002297,
0.005174,
0.004732,
0.002297,
0.002525,
0.005628,
0.005174,
0.005628,
0.006048,
0.013276,
0.012375,
0.006048,
0.006388,
0.014001,
0.013276,
0.006388,
0.006610,
0.014471,
0.014001,
0.006610,
0.006687,
0.014633,
0.014471,
0.006687,
0.006610,
0.014471,
0.014633,
0.006610,
0.006388,
0.014001,
0.014471,
0.006388,
0.006048,
0.013276,
0.014001,
0.006048,
0.005628,
0.012375,
0.013276,
0.005628,
0.005174,
0.011392,
0.012375,
0.005174,
0.004732,
0.010429,
0.011392,
0.004732,
0.004345,
0.009579,
0.010429,
0.004345,
0.004045,
0.008917,
0.009579,
0.004045,
0.003857,
0.008500,
0.008917,
0.003857,
0.003792,
0.008357,
0.008500,
0.003792,
0.003857,
0.008500,
0.008357,
0.003857,
0.004045,
0.008917,
0.008500,
0.004045,
0.004345,
0.009579,
0.008917,
0.004345,
0.004732,
0.010429,
0.009579,
0.004732,
0.005174,
0.011392,
0.010429,
0.005174,
0.005628,
0.012375,
0.011392,
0.012375,
0.013276,
0.028063,
0.026214,
0.013276,
0.014001,
0.029543,
0.028063,
0.014001,
0.014471,
0.030498,
0.029543,
0.014471,
0.014633,
0.030827,
0.030498,
0.014633,
0.014471,
0.030498,
0.030827,
0.014471,
0.014001,
0.029543,
0.030498,
0.014001,
0.013276,
0.028063,
0.029543,
0.013276,
0.012375,
0.026214,
0.028063,
0.012375,
0.011392,
0.024186,
0.026214,
0.011392,
0.010429,
0.022188,
0.024186,
0.010429,
0.009579,
0.020416,
0.022188,
0.009579,
0.008917,
0.019032,
0.020416,
0.008917,
0.008500,
0.018155,
0.019032,
0.008500,
0.008357,
0.017855,
0.018155,
0.008357,
0.008500,
0.018155,
0.017855,
0.008500,
0.008917,
0.019032,
0.018155,
0.008917,
0.009579,
0.020416,
0.019032,
0.009579,
0.010429,
0.022188,
0.020416,
0.010429,
0.011392,
0.024186,
0.022188,
0.011392,
0.012375,
0.026214,
0.024186,
0.026214,
0.028063,
0.061033,
0.057436,
0.028063,
0.029543,
0.063879,
0.061033,
0.029543,
0.030498,
0.065700,
0.063879,
0.030498,
0.030827,
0.066326,
0.065700,
0.030827,
0.030498,
0.065700,
0.066326,
0.030498,
0.029543,
0.063878,
0.065700,
0.029543,
0.028063,
0.061033,
0.063878,
0.028063,
0.026214,
0.057436,
0.061033,
0.026214,
0.024186,
0.053442,
0.057436,
0.024186,
0.022188,
0.049450,
0.053442,
0.022188,
0.020416,
0.045860,
0.049450,
0.020416,
0.019032,
0.043025,
0.045860,
0.019032,
0.018155,
0.041214,
0.043025,
0.018155,
0.017855,
0.040591,
0.041214,
0.017855,
0.018155,
0.041214,
0.040591,
0.018155,
0.019032,
0.043025,
0.041214,
0.019032,
0.020416,
0.045860,
0.043025,
0.020416,
0.022188,
0.049450,
0.045860,
0.022188,
0.024186,
0.053442,
0.049450,
0.024186,
0.026214,
0.057436,
0.053442,
0.057436,
0.061033,
0.137632,
0.131520,
0.061033,
0.063879,
0.142363,
0.137632,
0.063879,
0.065700,
0.145343,
0.142363,
0.065700,
0.066326,
0.146360,
0.145343,
0.066326,
0.065700,
0.145343,
0.146360,
0.065700,
0.063878,
0.142362,
0.145343,
0.063878,
0.061033,
0.137632,
0.142362,
0.061033,
0.057436,
0.131520,
0.137632,
0.057436,
0.053442,
0.124547,
0.131520,
0.053442,
0.049450,
0.117372,
0.124547,
0.049450,
0.045860,
0.110730,
0.117372,
0.045860,
0.043025,
0.105351,
0.110730,
0.043025,
0.041214,
0.101849,
0.105351,
0.041214,
0.040591,
0.100634,
0.101849,
0.040591,
0.041214,
0.101849,
0.100634,
0.041214,
0.043025,
0.105351,
0.101849,
0.043025,
0.045860,
0.110730,
0.105351,
0.045860,
0.049450,
0.117372,
0.110730,
0.049450,
0.053442,
0.124547,
0.117372,
0.053442,
0.057436,
0.131520,
0.124547,
0.131520,
0.137632,
0.290576,
0.284257,
0.137632,
0.142363,
0.295301,
0.290576,
0.142363,
0.145343,
0.298208,
0.295301,
0.145343,
0.146360,
0.299188,
0.298208,
0.146360,
0.145343,
0.298208,
0.299188,
0.145343,
0.142362,
0.295301,
0.298208,
0.142362,
0.137632,
0.290576,
0.295301,
0.137632,
0.131520,
0.284257,
0.290576,
0.131520,
0.124547,
0.276738,
0.284257,
0.124547,
0.117372,
0.268630,
0.276738,
0.117372,
0.110730,
0.260761,
0.268630,
0.110730,
0.105351,
0.254111,
0.260761,
0.105351,
0.101849,
0.249640,
0.254111,
0.101849,
0.100634,
0.248061,
0.249640,
0.100634,
0.101849,
0.249640,
0.248061,
0.101849,
0.105351,
0.254111,
0.249640,
0.105351,
0.110730,
0.260761,
0.254111,
0.110730,
0.117372,
0.268629,
0.260761,
0.117372,
0.124547,
0.276738,
0.268629,
0.124547,
0.131520,
0.284257,
0.276738,
0.284257,
0.290576,
0.460482,
0.459454,
0.290576,
0.295301,
0.461191,
0.460482,
0.295301,
0.298208,
0.461600,
0.461191,
0.298208,
0.299188,
0.461733,
0.461600,
0.299188,
0.298208,
0.461600,
0.461733,
0.298208,
0.295301,
0.461191,
0.461600,
0.295301,
0.290576,
0.460482,
0.461191,
0.290576,
0.284257,
0.459454,
0.460482,
0.284257,
0.276738,
0.458118,
0.459454,
0.276738,
0.268630,
0.456551,
0.458118,
0.268630,
0.260761,
0.454910,
0.456551,
0.260761,
0.254111,
0.453434,
0.454910,
0.254111,
0.249640,
0.452395,
0.453434,
0.249640,
0.248061,
0.452020,
0.452395,
0.248061,
0.249640,
0.452395,
0.452020,
0.249640,
0.254111,
0.453434,
0.452395,
0.254111,
0.260761,
0.454910,
0.453434,
0.260761,
0.268629,
0.456551,
0.454910,
0.268629,
0.276738,
0.458118,
0.456551,
0.276738,
0.284257,
0.459454,
0.458118,
0.459454,
0.460482,
0.521894,
0.519465,
0.460482,
0.461191,
0.523842,
0.521894,
0.461191,
0.461600,
0.525101,
0.523842,
0.461600,
0.461733,
0.525535,
0.525101,
0.461733,
0.461600,
0.525101,
0.525535,
0.461600,
0.461191,
0.523842,
0.525101,
0.461191,
0.460482,
0.521894,
0.523842,
0.460482,
0.459454,
0.519465,
0.521894,
0.459454,
0.458118,
0.516816,
0.519465,
0.458118,
0.456551,
0.514227,
0.516816,
0.456551,
0.454910,
0.511955,
0.514227,
0.454910,
0.453434,
0.510206,
0.511955,
0.453434,
0.452395,
0.509112,
0.510206,
0.452395,
0.452020,
0.508741,
0.509112,
0.452020,
0.452395,
0.509112,
0.508741,
0.452395,
0.453434,
0.510206,
0.509112,
0.453434,
0.454910,
0.511955,
0.510206,
0.454910,
0.456551,
0.514227,
0.511955,
0.456551,
0.458118,
0.516816,
0.514227,
0.458118,
0.459454,
0.519465,
0.516816,
0.519465,
0.521894,
0.677180,
0.674575,
0.521894,
0.523842,
0.679193,
0.677180,
0.523842,
0.525101,
0.680461,
0.679193,
0.525101,
0.525535,
0.680893,
0.680461,
0.525535,
0.525101,
0.680461,
0.680893,
0.525101,
0.523842,
0.679194,
0.680461,
0.523842,
0.521894,
0.677180,
0.679194,
0.521894,
0.519465,
0.674575,
0.677180,
0.519465,
0.516816,
0.671605,
0.674575,
0.516816,
0.514227,
0.668550,
0.671605,
0.514227,
0.511955,
0.665727,
0.668550,
0.511955,
0.510206,
0.663443,
0.665727,
0.510206,
0.509112,
0.661957,
0.663443,
0.509112,
0.508741,
0.661442,
0.661957,
0.508741,
0.509112,
0.661957,
0.661442,
0.509112,
0.510206,
0.663443,
0.661957,
0.510206,
0.511955,
0.665727,
0.663443,
0.511955,
0.514227,
0.668550,
0.665727,
0.514227,
0.516816,
0.671605,
0.668550,
0.516816,
0.519465,
0.674575,
0.671605,
0.674575,
0.677180,
0.769092,
0.769051,
0.677180,
0.679193,
0.769045,
0.769092,
0.679193,
0.680461,
0.768978,
0.769045,
0.680461,
0.680893,
0.768948,
0.768978,
0.680893,
0.680461,
0.768978,
0.768948,
0.680461,
0.679194,
0.769045,
0.768978,
0.679194,
0.677180,
0.769092,
0.769045,
0.677180,
0.674575,
0.769051,
0.769092,
0.674575,
0.671605,
0.768875,
0.769051,
0.671605,
0.668550,
0.768563,
0.768875,
0.668550,
0.665727,
0.768166,
0.768563,
0.665727,
0.663443,
0.767772,
0.768166,
0.663443,
0.661957,
0.767483,
0.767772,
0.661957,
0.661442,
0.767377,
0.767483,
0.661442,
0.661957,
0.767483,
0.767377,
0.661957,
0.663443,
0.767772,
0.767483,
0.663443,
0.665727,
0.768166,
0.767772,
0.665727,
0.668550,
0.768564,
0.768166,
0.668550,
0.671605,
0.768875,
0.768564,
0.671605,
0.674575,
0.769051,
0.768875,
0.769051,
0.769092,
0.690555,
0.693102,
0.769092,
0.769045,
0.688485,
0.690555,
0.769045,
0.768978,
0.687134,
0.688485,
0.768978,
0.768948,
0.686665,
0.687134,
0.768948,
0.768978,
0.687134,
0.686665,
0.768978,
0.769045,
0.688485,
0.687134,
0.769045,
0.769092,
0.690555,
0.688485,
0.769092,
0.769051,
0.693102,
0.690555,
0.769051,
0.768875,
0.695841,
0.693102,
0.768875,
0.768563,
0.698487,
0.695841,
0.768563,
0.768166,
0.700789,
0.698487,
0.768166,
0.767772,
0.702558,
0.700789,
0.767772,
0.767483,
0.703665,
0.702558,
0.767483,
0.767377,
0.704041,
0.703665,
0.767377,
0.767483,
0.703665,
0.704041,
0.767483,
0.767772,
0.702558,
0.703665,
0.767772,
0.768166,
0.700789,
0.702558,
0.768166,
0.768564,
0.698487,
0.700789,
0.768564,
0.768875,
0.695841,
0.698487,
0.768875,
0.769051,
0.693102,
0.695841,
0.693102,
0.690555,
0.528403,
0.531285,
0.690555,
0.688485,
0.526128,
0.528403,
0.688485,
0.687134,
0.524675,
0.526128,
0.687134,
0.686665,
0.524176,
0.524675,
0.686665,
0.687134,
0.524675,
0.524176,
0.687134,
0.688485,
0.526128,
0.524675,
0.688485,
0.690555,
0.528403,
0.526128,
0.690555,
0.693102,
0.531285,
0.528403,
0.693102,
0.695841,
0.534492,
0.531285,
0.695841,
0.698487,
0.537704,
0.534492,
0.698487,
0.700789,
0.540600,
0.537704,
0.700789,
0.702558,
0.542894,
0.540600,
0.702558,
0.703665,
0.544363,
0.542894,
0.703665,
0.704041,
0.544869,
0.544363,
0.704041,
0.703665,
0.544363,
0.544869,
0.703665,
0.702558,
0.542894,
0.544363,
0.702558,
0.700789,
0.540600,
0.542894,
0.700789,
0.698487,
0.537704,
0.540600,
0.698487,
0.695841,
0.534492,
0.537704,
0.695841,
0.693102,
0.531285,
0.534492,
0.531285,
0.528403,
0.496822,
0.496448,
0.528403,
0.526128,
0.497102,
0.496822,
0.526128,
0.524675,
0.497273,
0.497102,
0.524675,
0.524176,
0.497331,
0.497273,
0.524176,
0.524675,
0.497273,
0.497331,
0.524675,
0.526128,
0.497102,
0.497273,
0.526128,
0.528403,
0.496822,
0.497102,
0.528403,
0.531285,
0.496448,
0.496822,
0.531285,
0.534492,
0.496004,
0.496448,
0.534492,
0.537704,
0.495529,
0.496004,
0.537704,
0.540600,
0.495073,
0.495529,
0.540600,
0.542894,
0.494691,
0.495073,
0.542894,
0.544363,
0.494437,
0.494691,
0.544363,
0.544869,
0.494348,
0.494437,
0.544869,
0.544363,
0.494437,
0.494348,
0.544363,
0.542894,
0.494691,
0.494437,
0.542894,
0.540600,
0.495073,
0.494691,
0.540600,
0.537704,
0.495529,
0.495073,
0.537704,
0.534492,
0.496004,
0.495529,
0.534492,
0.531285,
0.496448,
0.496004,
0.000344,
0.000356,
0.000335,
0.000344,
0.000329,
0.000335,
0.000327,
0.000329,
0.000329,
0.000327,
0.000335,
0.000329,
0.000344,
0.000335,
0.000356,
0.000344,
0.000369,
0.000356,
0.000383,
0.000369,
0.000395,
0.000383,
0.000405,
0.000395,
0.000412,
0.000405,
0.000414,
0.000412,
0.000412,
0.000414,
0.000405,
0.000412,
0.000395,
0.000405,
0.000383,
0.000395,
0.000369,
0.000383,
0.000356,
0.000369,
0.496448,
0.496822,
0.499988,
0.496822,
0.497102,
0.499988,
0.497102,
0.497273,
0.499988,
0.497273,
0.497331,
0.499988,
0.497331,
0.497273,
0.499988,
0.497273,
0.497102,
0.499988,
0.497102,
0.496822,
0.499988,
0.496822,
0.496448,
0.499988,
0.496448,
0.496004,
0.499988,
0.496004,
0.495529,
0.499988,
0.495529,
0.495073,
0.499988,
0.495073,
0.494691,
0.499988,
0.494691,
0.494437,
0.499988,
0.494437,
0.494348,
0.499988,
0.494348,
0.494437,
0.499988,
0.494437,
0.494691,
0.499988,
0.494691,
0.495073,
0.499988,
0.495073,
0.495529,
0.499988,
0.495529,
0.496004,
0.499988,
0.496004,
0.496448,
0.499988;
0.000000,-0.000000,-1.000000,0.000000,0.997575,0.069598,0.000000,0.000000,0.069598,-0.997575,0.000000,0.000000,-2.269066,-0.246239,-0.000000,1.000000;;
}
SkinWeights {
"joint4";
1700;
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
46,
47,
48,
49,
50,
51,
52,
53,
54,
55,
56,
57,
58,
59,
60,
61,
62,
63,
64,
65,
66,
67,
68,
69,
70,
71,
72,
73,
74,
75,
76,
77,
78,
79,
80,
81,
82,
83,
84,
85,
86,
87,
88,
89,
90,
91,
92,
93,
94,
95,
96,
97,
98,
99,
100,
101,
102,
103,
104,
105,
106,
107,
108,
109,
110,
111,
112,
113,
114,
115,
116,
117,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
128,
129,
130,
131,
132,
133,
134,
135,
136,
137,
138,
139,
140,
141,
142,
143,
144,
145,
146,
147,
148,
149,
150,
151,
152,
153,
154,
155,
156,
157,
158,
159,
160,
161,
162,
163,
164,
165,
166,
167,
168,
169,
170,
171,
172,
173,
174,
175,
176,
177,
178,
179,
180,
181,
182,
183,
184,
185,
186,
187,
188,
189,
190,
191,
192,
193,
194,
195,
196,
197,
198,
199,
200,
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
213,
214,
215,
216,
217,
218,
219,
220,
221,
222,
223,
224,
225,
226,
227,
228,
229,
230,
231,
232,
233,
234,
235,
236,
237,
238,
239,
240,
241,
242,
243,
244,
245,
246,
247,
248,
249,
250,
251,
252,
253,
254,
255,
256,
257,
258,
259,
260,
261,
262,
263,
264,
265,
266,
267,
268,
269,
270,
271,
272,
273,
274,
275,
276,
277,
278,
279,
280,
281,
282,
283,
284,
285,
286,
287,
288,
289,
290,
291,
292,
293,
294,
295,
296,
297,
298,
299,
300,
301,
302,
303,
304,
305,
306,
307,
308,
309,
310,
311,
312,
313,
314,
315,
316,
317,
318,
319,
320,
321,
322,
323,
324,
325,
326,
327,
328,
329,
330,
331,
332,
333,
334,
335,
336,
337,
338,
339,
340,
341,
342,
343,
344,
345,
346,
347,
348,
349,
350,
351,
352,
353,
354,
355,
356,
357,
358,
359,
360,
361,
362,
363,
364,
365,
366,
367,
368,
369,
370,
371,
372,
373,
374,
375,
376,
377,
378,
379,
380,
381,
382,
383,
384,
385,
386,
387,
388,
389,
390,
391,
392,
393,
394,
395,
396,
397,
398,
399,
400,
401,
402,
403,
404,
405,
406,
407,
408,
409,
410,
411,
412,
413,
414,
415,
416,
417,
418,
419,
420,
421,
422,
423,
424,
425,
426,
427,
428,
429,
430,
431,
432,
433,
434,
435,
436,
437,
438,
439,
440,
441,
442,
443,
444,
445,
446,
447,
448,
449,
450,
451,
452,
453,
454,
455,
456,
457,
458,
459,
460,
461,
462,
463,
464,
465,
466,
467,
468,
469,
470,
471,
472,
473,
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484,
485,
486,
487,
488,
489,
490,
491,
492,
493,
494,
495,
496,
497,
498,
499,
500,
501,
502,
503,
504,
505,
506,
507,
508,
509,
510,
511,
512,
513,
514,
515,
516,
517,
518,
519,
520,
521,
522,
523,
524,
525,
526,
527,
528,
529,
530,
531,
532,
533,
534,
535,
536,
537,
538,
539,
540,
541,
542,
543,
544,
545,
546,
547,
548,
549,
550,
551,
552,
553,
554,
555,
556,
557,
558,
559,
560,
561,
562,
563,
564,
565,
566,
567,
568,
569,
570,
571,
572,
573,
574,
575,
576,
577,
578,
579,
580,
581,
582,
583,
584,
585,
586,
587,
588,
589,
590,
591,
592,
593,
594,
595,
596,
597,
598,
599,
600,
601,
602,
603,
604,
605,
606,
607,
608,
609,
610,
611,
612,
613,
614,
615,
616,
617,
618,
619,
620,
621,
622,
623,
624,
625,
626,
627,
628,
629,
630,
631,
632,
633,
634,
635,
636,
637,
638,
639,
640,
641,
642,
643,
644,
645,
646,
647,
648,
649,
650,
651,
652,
653,
654,
655,
656,
657,
658,
659,
660,
661,
662,
663,
664,
665,
666,
667,
668,
669,
670,
671,
672,
673,
674,
675,
676,
677,
678,
679,
680,
681,
682,
683,
684,
685,
686,
687,
688,
689,
690,
691,
692,
693,
694,
695,
696,
697,
698,
699,
700,
701,
702,
703,
704,
705,
706,
707,
708,
709,
710,
711,
712,
713,
714,
715,
716,
717,
718,
719,
720,
721,
722,
723,
724,
725,
726,
727,
728,
729,
730,
731,
732,
733,
734,
735,
736,
737,
738,
739,
740,
741,
742,
743,
744,
745,
746,
747,
748,
749,
750,
751,
752,
753,
754,
755,
756,
757,
758,
759,
760,
761,
762,
763,
764,
765,
766,
767,
768,
769,
770,
771,
772,
773,
774,
775,
776,
777,
778,
779,
780,
781,
782,
783,
784,
785,
786,
787,
788,
789,
790,
791,
792,
793,
794,
795,
796,
797,
798,
799,
800,
801,
802,
803,
804,
805,
806,
807,
808,
809,
810,
811,
812,
813,
814,
815,
816,
817,
818,
819,
820,
821,
822,
823,
824,
825,
826,
827,
828,
829,
830,
831,
832,
833,
834,
835,
836,
837,
838,
839,
840,
841,
842,
843,
844,
845,
846,
847,
848,
849,
850,
851,
852,
853,
854,
855,
856,
857,
858,
859,
860,
861,
862,
863,
864,
865,
866,
867,
868,
869,
870,
871,
872,
873,
874,
875,
876,
877,
878,
879,
880,
881,
882,
883,
884,
885,
886,
887,
888,
889,
890,
891,
892,
893,
894,
895,
896,
897,
898,
899,
900,
901,
902,
903,
904,
905,
906,
907,
908,
909,
910,
911,
912,
913,
914,
915,
916,
917,
918,
919,
920,
921,
922,
923,
924,
925,
926,
927,
928,
929,
930,
931,
932,
933,
934,
935,
936,
937,
938,
939,
940,
941,
942,
943,
944,
945,
946,
947,
948,
949,
950,
951,
952,
953,
954,
955,
956,
957,
958,
959,
960,
961,
962,
963,
964,
965,
966,
967,
968,
969,
970,
971,
972,
973,
974,
975,
976,
977,
978,
979,
980,
981,
982,
983,
984,
985,
986,
987,
988,
989,
990,
991,
992,
993,
994,
995,
996,
997,
998,
999,
1000,
1001,
1002,
1003,
1004,
1005,
1006,
1007,
1008,
1009,
1010,
1011,
1012,
1013,
1014,
1015,
1016,
1017,
1018,
1019,
1020,
1021,
1022,
1023,
1024,
1025,
1026,
1027,
1028,
1029,
1030,
1031,
1032,
1033,
1034,
1035,
1036,
1037,
1038,
1039,
1040,
1041,
1042,
1043,
1044,
1045,
1046,
1047,
1048,
1049,
1050,
1051,
1052,
1053,
1054,
1055,
1056,
1057,
1058,
1059,
1060,
1061,
1062,
1063,
1064,
1065,
1066,
1067,
1068,
1069,
1070,
1071,
1072,
1073,
1074,
1075,
1076,
1077,
1078,
1079,
1080,
1081,
1082,
1083,
1084,
1085,
1086,
1087,
1088,
1089,
1090,
1091,
1092,
1093,
1094,
1095,
1096,
1097,
1098,
1099,
1100,
1101,
1102,
1103,
1104,
1105,
1106,
1107,
1108,
1109,
1110,
1111,
1112,
1113,
1114,
1115,
1116,
1117,
1118,
1119,
1120,
1121,
1122,
1123,
1124,
1125,
1126,
1127,
1128,
1129,
1130,
1131,
1132,
1133,
1134,
1135,
1136,
1137,
1138,
1139,
1140,
1141,
1142,
1143,
1144,
1145,
1146,
1147,
1148,
1149,
1150,
1151,
1152,
1153,
1154,
1155,
1156,
1157,
1158,
1159,
1160,
1161,
1162,
1163,
1164,
1165,
1166,
1167,
1168,
1169,
1170,
1171,
1172,
1173,
1174,
1175,
1176,
1177,
1178,
1179,
1180,
1181,
1182,
1183,
1184,
1185,
1186,
1187,
1188,
1189,
1190,
1191,
1192,
1193,
1194,
1195,
1196,
1197,
1198,
1199,
1200,
1201,
1202,
1203,
1204,
1205,
1206,
1207,
1208,
1209,
1210,
1211,
1212,
1213,
1214,
1215,
1216,
1217,
1218,
1219,
1220,
1221,
1222,
1223,
1224,
1225,
1226,
1227,
1228,
1229,
1230,
1231,
1232,
1233,
1234,
1235,
1236,
1237,
1238,
1239,
1240,
1241,
1242,
1243,
1244,
1245,
1246,
1247,
1248,
1249,
1250,
1251,
1252,
1253,
1254,
1255,
1256,
1257,
1258,
1259,
1260,
1261,
1262,
1263,
1264,
1265,
1266,
1267,
1268,
1269,
1270,
1271,
1272,
1273,
1274,
1275,
1276,
1277,
1278,
1279,
1280,
1281,
1282,
1283,
1284,
1285,
1286,
1287,
1288,
1289,
1290,
1291,
1292,
1293,
1294,
1295,
1296,
1297,
1298,
1299,
1300,
1301,
1302,
1303,
1304,
1305,
1306,
1307,
1308,
1309,
1310,
1311,
1312,
1313,
1314,
1315,
1316,
1317,
1318,
1319,
1320,
1321,
1322,
1323,
1324,
1325,
1326,
1327,
1328,
1329,
1330,
1331,
1332,
1333,
1334,
1335,
1336,
1337,
1338,
1339,
1340,
1341,
1342,
1343,
1344,
1345,
1346,
1347,
1348,
1349,
1350,
1351,
1352,
1353,
1354,
1355,
1356,
1357,
1358,
1359,
1360,
1361,
1362,
1363,
1364,
1365,
1366,
1367,
1368,
1369,
1370,
1371,
1372,
1373,
1374,
1375,
1376,
1377,
1378,
1379,
1380,
1381,
1382,
1383,
1384,
1385,
1386,
1387,
1388,
1389,
1390,
1391,
1392,
1393,
1394,
1395,
1396,
1397,
1398,
1399,
1400,
1401,
1402,
1403,
1404,
1405,
1406,
1407,
1408,
1409,
1410,
1411,
1412,
1413,
1414,
1415,
1416,
1417,
1418,
1419,
1420,
1421,
1422,
1423,
1424,
1425,
1426,
1427,
1428,
1429,
1430,
1431,
1432,
1433,
1434,
1435,
1436,
1437,
1438,
1439,
1440,
1441,
1442,
1443,
1444,
1445,
1446,
1447,
1448,
1449,
1450,
1451,
1452,
1453,
1454,
1455,
1456,
1457,
1458,
1459,
1460,
1461,
1462,
1463,
1464,
1465,
1466,
1467,
1468,
1469,
1470,
1471,
1472,
1473,
1474,
1475,
1476,
1477,
1478,
1479,
1480,
1481,
1482,
1483,
1484,
1485,
1486,
1487,
1488,
1489,
1490,
1491,
1492,
1493,
1494,
1495,
1496,
1497,
1498,
1499,
1500,
1501,
1502,
1503,
1504,
1505,
1506,
1507,
1508,
1509,
1510,
1511,
1512,
1513,
1514,
1515,
1516,
1517,
1518,
1519,
1520,
1521,
1522,
1523,
1524,
1525,
1526,
1527,
1528,
1529,
1530,
1531,
1532,
1533,
1534,
1535,
1536,
1537,
1538,
1539,
1540,
1541,
1542,
1543,
1544,
1545,
1546,
1547,
1548,
1549,
1550,
1551,
1552,
1553,
1554,
1555,
1556,
1557,
1558,
1559,
1560,
1561,
1562,
1563,
1564,
1565,
1566,
1567,
1568,
1569,
1570,
1571,
1572,
1573,
1574,
1575,
1576,
1577,
1578,
1579,
1580,
1581,
1582,
1583,
1584,
1585,
1586,
1587,
1588,
1589,
1590,
1591,
1592,
1593,
1594,
1595,
1596,
1597,
1598,
1599,
1600,
1601,
1603,
1604,
1606,
1607,
1609,
1610,
1612,
1613,
1615,
1616,
1618,
1619,
1621,
1622,
1624,
1625,
1627,
1628,
1630,
1631,
1633,
1634,
1636,
1637,
1639,
1640,
1642,
1643,
1645,
1646,
1648,
1649,
1651,
1652,
1654,
1655,
1657,
1658,
1660,
1661,
1662,
1663,
1664,
1665,
1666,
1667,
1668,
1669,
1670,
1671,
1672,
1673,
1674,
1675,
1676,
1677,
1678,
1679,
1680,
1681,
1682,
1683,
1684,
1685,
1686,
1687,
1688,
1689,
1690,
1691,
1692,
1693,
1694,
1695,
1696,
1697,
1698,
1699,
1700,
1701,
1702,
1703,
1704,
1705,
1706,
1707,
1708,
1709,
1710,
1711,
1712,
1713,
1714,
1715,
1716,
1717,
1718,
1719;
0.000111,
0.000108,
0.000124,
0.000126,
0.000108,
0.000105,
0.000122,
0.000124,
0.000105,
0.000103,
0.000121,
0.000122,
0.000103,
0.000103,
0.000120,
0.000121,
0.000103,
0.000103,
0.000121,
0.000120,
0.000103,
0.000105,
0.000122,
0.000121,
0.000105,
0.000108,
0.000124,
0.000122,
0.000108,
0.000111,
0.000126,
0.000124,
0.000111,
0.000115,
0.000129,
0.000126,
0.000115,
0.000119,
0.000132,
0.000129,
0.000119,
0.000122,
0.000134,
0.000132,
0.000122,
0.000125,
0.000136,
0.000134,
0.000125,
0.000127,
0.000137,
0.000136,
0.000127,
0.000127,
0.000137,
0.000137,
0.000127,
0.000127,
0.000137,
0.000137,
0.000127,
0.000125,
0.000136,
0.000137,
0.000125,
0.000122,
0.000134,
0.000136,
0.000122,
0.000119,
0.000132,
0.000134,
0.000119,
0.000115,
0.000129,
0.000132,
0.000115,
0.000111,
0.000126,
0.000129,
0.000126,
0.000124,
0.000159,
0.000159,
0.000124,
0.000122,
0.000160,
0.000159,
0.000122,
0.000121,
0.000160,
0.000160,
0.000121,
0.000120,
0.000160,
0.000160,
0.000120,
0.000121,
0.000160,
0.000160,
0.000121,
0.000122,
0.000160,
0.000160,
0.000122,
0.000124,
0.000159,
0.000160,
0.000124,
0.000126,
0.000159,
0.000159,
0.000126,
0.000129,
0.000158,
0.000159,
0.000129,
0.000132,
0.000158,
0.000158,
0.000132,
0.000134,
0.000157,
0.000158,
0.000134,
0.000136,
0.000157,
0.000157,
0.000136,
0.000137,
0.000156,
0.000157,
0.000137,
0.000137,
0.000156,
0.000156,
0.000137,
0.000137,
0.000156,
0.000156,
0.000137,
0.000136,
0.000157,
0.000156,
0.000136,
0.000134,
0.000157,
0.000157,
0.000134,
0.000132,
0.000158,
0.000157,
0.000132,
0.000129,
0.000158,
0.000158,
0.000129,
0.000126,
0.000159,
0.000158,
0.000159,
0.000159,
0.000203,
0.000199,
0.000159,
0.000160,
0.000207,
0.000203,
0.000160,
0.000160,
0.000209,
0.000207,
0.000160,
0.000160,
0.000210,
0.000209,
0.000160,
0.000160,
0.000209,
0.000210,
0.000160,
0.000160,
0.000207,
0.000209,
0.000160,
0.000159,
0.000203,
0.000207,
0.000159,
0.000159,
0.000199,
0.000203,
0.000159,
0.000158,
0.000193,
0.000199,
0.000158,
0.000158,
0.000188,
0.000193,
0.000158,
0.000157,
0.000183,
0.000188,
0.000157,
0.000157,
0.000180,
0.000183,
0.000157,
0.000156,
0.000177,
0.000180,
0.000156,
0.000156,
0.000176,
0.000177,
0.000156,
0.000156,
0.000177,
0.000176,
0.000156,
0.000157,
0.000180,
0.000177,
0.000157,
0.000157,
0.000183,
0.000180,
0.000157,
0.000158,
0.000188,
0.000183,
0.000158,
0.000158,
0.000193,
0.000188,
0.000158,
0.000159,
0.000199,
0.000193,
0.000199,
0.000203,
0.000250,
0.000239,
0.000203,
0.000207,
0.000258,
0.000250,
0.000207,
0.000209,
0.000263,
0.000258,
0.000209,
0.000210,
0.000265,
0.000263,
0.000210,
0.000209,
0.000263,
0.000265,
0.000209,
0.000207,
0.000258,
0.000263,
0.000207,
0.000203,
0.000250,
0.000258,
0.000203,
0.000199,
0.000239,
0.000250,
0.000199,
0.000193,
0.000228,
0.000239,
0.000193,
0.000188,
0.000216,
0.000228,
0.000188,
0.000183,
0.000206,
0.000216,
0.000183,
0.000180,
0.000199,
0.000206,
0.000180,
0.000177,
0.000194,
0.000199,
0.000177,
0.000176,
0.000192,
0.000194,
0.000176,
0.000177,
0.000194,
0.000192,
0.000177,
0.000180,
0.000199,
0.000194,
0.000180,
0.000183,
0.000206,
0.000199,
0.000183,
0.000188,
0.000216,
0.000206,
0.000188,
0.000193,
0.000228,
0.000216,
0.000193,
0.000199,
0.000239,
0.000228,
0.000239,
0.000250,
0.000277,
0.000260,
0.000250,
0.000258,
0.000291,
0.000277,
0.000258,
0.000263,
0.000300,
0.000291,
0.000263,
0.000265,
0.000303,
0.000300,
0.000265,
0.000263,
0.000300,
0.000303,
0.000263,
0.000258,
0.000291,
0.000300,
0.000258,
0.000250,
0.000277,
0.000291,
0.000250,
0.000239,
0.000260,
0.000277,
0.000239,
0.000228,
0.000242,
0.000260,
0.000228,
0.000216,
0.000225,
0.000242,
0.000216,
0.000206,
0.000209,
0.000225,
0.000206,
0.000199,
0.000198,
0.000209,
0.000199,
0.000194,
0.000190,
0.000198,
0.000194,
0.000192,
0.000188,
0.000190,
0.000192,
0.000194,
0.000190,
0.000188,
0.000194,
0.000199,
0.000198,
0.000190,
0.000199,
0.000206,
0.000209,
0.000198,
0.000206,
0.000216,
0.000225,
0.000209,
0.000216,
0.000228,
0.000242,
0.000225,
0.000228,
0.000239,
0.000260,
0.000242,
0.000260,
0.000277,
0.000289,
0.000265,
0.000277,
0.000291,
0.000308,
0.000289,
0.000291,
0.000300,
0.000321,
0.000308,
0.000300,
0.000303,
0.000325,
0.000321,
0.000303,
0.000300,
0.000321,
0.000325,
0.000300,
0.000291,
0.000308,
0.000321,
0.000291,
0.000277,
0.000289,
0.000308,
0.000277,
0.000260,
0.000265,
0.000289,
0.000260,
0.000242,
0.000240,
0.000265,
0.000242,
0.000225,
0.000217,
0.000240,
0.000225,
0.000209,
0.000197,
0.000217,
0.000209,
0.000198,
0.000181,
0.000197,
0.000198,
0.000190,
0.000172,
0.000181,
0.000190,
0.000188,
0.000168,
0.000172,
0.000188,
0.000190,
0.000172,
0.000168,
0.000190,
0.000198,
0.000181,
0.000172,
0.000198,
0.000209,
0.000197,
0.000181,
0.000209,
0.000225,
0.000217,
0.000197,
0.000225,
0.000242,
0.000240,
0.000217,
0.000242,
0.000260,
0.000265,
0.000240,
0.000265,
0.000289,
0.000395,
0.000361,
0.000289,
0.000308,
0.000424,
0.000395,
0.000308,
0.000321,
0.000442,
0.000424,
0.000321,
0.000325,
0.000449,
0.000442,
0.000325,
0.000321,
0.000442,
0.000449,
0.000321,
0.000308,
0.000424,
0.000442,
0.000308,
0.000289,
0.000395,
0.000424,
0.000289,
0.000265,
0.000361,
0.000395,
0.000265,
0.000240,
0.000326,
0.000361,
0.000240,
0.000217,
0.000292,
0.000326,
0.000217,
0.000197,
0.000263,
0.000292,
0.000197,
0.000181,
0.000241,
0.000263,
0.000181,
0.000172,
0.000228,
0.000241,
0.000172,
0.000168,
0.000223,
0.000228,
0.000168,
0.000172,
0.000228,
0.000223,
0.000172,
0.000181,
0.000241,
0.000228,
0.000181,
0.000197,
0.000263,
0.000241,
0.000197,
0.000217,
0.000292,
0.000263,
0.000217,
0.000240,
0.000326,
0.000292,
0.000240,
0.000265,
0.000361,
0.000326,
0.000361,
0.000395,
0.000717,
0.000660,
0.000395,
0.000424,
0.000764,
0.000717,
0.000424,
0.000442,
0.000795,
0.000764,
0.000442,
0.000449,
0.000806,
0.000795,
0.000449,
0.000442,
0.000795,
0.000806,
0.000442,
0.000424,
0.000764,
0.000795,
0.000424,
0.000395,
0.000717,
0.000764,
0.000395,
0.000361,
0.000660,
0.000717,
0.000361,
0.000326,
0.000599,
0.000660,
0.000326,
0.000292,
0.000541,
0.000599,
0.000292,
0.000263,
0.000491,
0.000541,
0.000263,
0.000241,
0.000453,
0.000491,
0.000241,
0.000228,
0.000430,
0.000453,
0.000228,
0.000223,
0.000422,
0.000430,
0.000223,
0.000228,
0.000430,
0.000422,
0.000228,
0.000241,
0.000453,
0.000430,
0.000241,
0.000263,
0.000491,
0.000453,
0.000263,
0.000292,
0.000541,
0.000491,
0.000292,
0.000326,
0.000599,
0.000541,
0.000326,
0.000361,
0.000660,
0.000599,
0.000660,
0.000717,
0.001239,
0.001138,
0.000717,
0.000764,
0.001322,
0.001239,
0.000764,
0.000795,
0.001376,
0.001322,
0.000795,
0.000806,
0.001395,
0.001376,
0.000806,
0.000795,
0.001376,
0.001395,
0.000795,
0.000764,
0.001322,
0.001376,
0.000764,
0.000717,
0.001239,
0.001322,
0.000717,
0.000660,
0.001138,
0.001239,
0.000660,
0.000599,
0.001031,
0.001138,
0.000599,
0.000541,
0.000929,
0.001031,
0.000541,
0.000491,
0.000841,
0.000929,
0.000491,
0.000453,
0.000774,
0.000841,
0.000453,
0.000430,
0.000732,
0.000774,
0.000430,
0.000422,
0.000718,
0.000732,
0.000422,
0.000430,
0.000732,
0.000718,
0.000430,
0.000453,
0.000774,
0.000732,
0.000453,
0.000491,
0.000841,
0.000774,
0.000491,
0.000541,
0.000929,
0.000841,
0.000541,
0.000599,
0.001031,
0.000929,
0.000599,
0.000660,
0.001138,
0.001031,
0.001138,
0.001239,
0.001958,
0.001793,
0.001239,
0.001322,
0.002093,
0.001958,
0.001322,
0.001376,
0.002182,
0.002093,
0.001376,
0.001395,
0.002213,
0.002182,
0.001395,
0.001376,
0.002182,
0.002213,
0.001376,
0.001322,
0.002093,
0.002182,
0.001322,
0.001239,
0.001958,
0.002093,
0.001239,
0.001138,
0.001793,
0.001958,
0.001138,
0.001031,
0.001619,
0.001793,
0.001031,
0.000929,
0.001452,
0.001619,
0.000929,
0.000841,
0.001310,
0.001452,
0.000841,
0.000774,
0.001202,
0.001310,
0.000774,
0.000732,
0.001135,
0.001202,
0.000732,
0.000718,
0.001112,
0.001135,
0.000718,
0.000732,
0.001135,
0.001112,
0.000732,
0.000774,
0.001202,
0.001135,
0.000774,
0.000841,
0.001310,
0.001202,
0.000841,
0.000929,
0.001452,
0.001310,
0.000929,
0.001031,
0.001619,
0.001452,
0.001031,
0.001138,
0.001793,
0.001619,
0.001793,
0.001958,
0.002987,
0.002733,
0.001958,
0.002093,
0.003196,
0.002987,
0.002093,
0.002182,
0.003334,
0.003196,
0.002182,
0.002213,
0.003382,
0.003334,
0.002213,
0.002182,
0.003334,
0.003382,
0.002182,
0.002093,
0.003196,
0.003334,
0.002093,
0.001958,
0.002987,
0.003196,
0.001958,
0.001793,
0.002733,
0.002987,
0.001793,
0.001619,
0.002465,
0.002733,
0.001619,
0.001452,
0.002209,
0.002465,
0.001452,
0.001310,
0.001991,
0.002209,
0.001310,
0.001202,
0.001825,
0.001991,
0.001202,
0.001135,
0.001722,
0.001825,
0.001135,
0.001112,
0.001688,
0.001722,
0.001112,
0.001135,
0.001722,
0.001688,
0.001135,
0.001202,
0.001825,
0.001722,
0.001202,
0.001310,
0.001991,
0.001825,
0.001310,
0.001452,
0.002209,
0.001991,
0.001452,
0.001619,
0.002465,
0.002209,
0.001619,
0.001793,
0.002733,
0.002465,
0.002733,
0.002987,
0.004444,
0.004071,
0.002987,
0.003196,
0.004752,
0.004444,
0.003196,
0.003334,
0.004954,
0.004752,
0.003334,
0.003382,
0.005025,
0.004954,
0.003382,
0.003334,
0.004954,
0.005025,
0.003334,
0.003196,
0.004752,
0.004954,
0.003196,
0.002987,
0.004444,
0.004752,
0.002987,
0.002733,
0.004071,
0.004444,
0.002733,
0.002465,
0.003676,
0.004071,
0.002465,
0.002209,
0.003301,
0.003676,
0.002209,
0.001991,
0.002979,
0.003301,
0.001991,
0.001825,
0.002735,
0.002979,
0.001825,
0.001722,
0.002583,
0.002735,
0.001722,
0.001688,
0.002532,
0.002583,
0.001688,
0.001722,
0.002583,
0.002532,
0.001722,
0.001825,
0.002735,
0.002583,
0.001825,
0.001991,
0.002979,
0.002735,
0.001991,
0.002209,
0.003301,
0.002979,
0.002209,
0.002465,
0.003676,
0.003301,
0.002465,
0.002733,
0.004071,
0.003676,
0.004071,
0.004444,
0.006214,
0.005691,
0.004444,
0.004752,
0.006647,
0.006214,
0.004752,
0.004954,
0.006934,
0.006647,
0.004954,
0.005025,
0.007034,
0.006934,
0.005025,
0.004954,
0.006934,
0.007034,
0.004954,
0.004752,
0.006647,
0.006934,
0.004752,
0.004444,
0.006214,
0.006647,
0.004444,
0.004071,
0.005691,
0.006214,
0.004071,
0.003676,
0.005140,
0.005691,
0.003676,
0.003301,
0.004618,
0.005140,
0.003301,
0.002979,
0.004172,
0.004618,
0.002979,
0.002735,
0.003835,
0.004172,
0.002735,
0.002583,
0.003626,
0.003835,
0.002583,
0.002532,
0.003556,
0.003626,
0.002532,
0.002583,
0.003626,
0.003556,
0.002583,
0.002735,
0.003835,
0.003626,
0.002735,
0.002979,
0.004172,
0.003835,
0.002979,
0.003301,
0.004618,
0.004172,
0.003301,
0.003676,
0.005139,
0.004618,
0.003676,
0.004071,
0.005691,
0.005139,
0.005691,
0.006214,
0.008573,
0.007778,
0.006214,
0.006647,
0.009238,
0.008573,
0.006647,
0.006934,
0.009681,
0.009238,
0.006934,
0.007034,
0.009836,
0.009681,
0.007034,
0.006934,
0.009681,
0.009836,
0.006934,
0.006647,
0.009238,
0.009681,
0.006647,
0.006214,
0.008573,
0.009238,
0.006214,
0.005691,
0.007778,
0.008573,
0.005691,
0.005140,
0.006949,
0.007778,
0.005140,
0.004618,
0.006175,
0.006949,
0.004618,
0.004172,
0.005523,
0.006175,
0.004172,
0.003835,
0.005035,
0.005523,
0.003835,
0.003626,
0.004736,
0.005035,
0.003626,
0.003556,
0.004635,
0.004736,
0.003556,
0.003626,
0.004736,
0.004635,
0.003626,
0.003835,
0.005035,
0.004736,
0.003835,
0.004172,
0.005523,
0.005035,
0.004172,
0.004618,
0.006175,
0.005523,
0.004618,
0.005139,
0.006949,
0.006175,
0.005139,
0.005691,
0.007778,
0.006949,
0.007778,
0.008573,
0.016220,
0.014774,
0.008573,
0.009238,
0.017421,
0.016220,
0.009238,
0.009681,
0.018217,
0.017421,
0.009681,
0.009836,
0.018496,
0.018217,
0.009836,
0.009681,
0.018217,
0.018496,
0.009681,
0.009238,
0.017421,
0.018217,
0.009238,
0.008573,
0.016220,
0.017421,
0.008573,
0.007778,
0.014774,
0.016220,
0.007778,
0.006949,
0.013258,
0.014774,
0.006949,
0.006175,
0.011831,
0.013258,
0.006175,
0.005523,
0.010621,
0.011831,
0.005523,
0.005035,
0.009711,
0.010621,
0.005035,
0.004736,
0.009150,
0.009711,
0.004736,
0.004635,
0.008961,
0.009150,
0.004635,
0.004736,
0.009150,
0.008961,
0.004736,
0.005035,
0.009711,
0.009150,
0.005035,
0.005523,
0.010621,
0.009711,
0.005523,
0.006175,
0.011831,
0.010621,
0.006175,
0.006949,
0.013258,
0.011831,
0.006949,
0.007778,
0.014774,
0.013258,
0.014774,
0.016220,
0.043289,
0.040550,
0.016220,
0.017421,
0.045530,
0.043289,
0.017421,
0.018217,
0.046999,
0.045530,
0.018217,
0.018496,
0.047512,
0.046999,
0.018496,
0.018217,
0.046999,
0.047512,
0.018217,
0.017421,
0.045530,
0.046999,
0.017421,
0.016220,
0.043289,
0.045530,
0.016220,
0.014774,
0.040550,
0.043289,
0.014774,
0.013258,
0.037624,
0.040550,
0.013258,
0.011831,
0.034815,
0.037624,
0.011831,
0.010621,
0.032379,
0.034815,
0.010621,
0.009711,
0.030514,
0.032379,
0.009711,
0.009150,
0.029347,
0.030514,
0.009150,
0.008961,
0.028951,
0.029347,
0.008961,
0.009150,
0.029347,
0.028951,
0.009150,
0.009711,
0.030514,
0.029347,
0.009711,
0.010621,
0.032379,
0.030514,
0.010621,
0.011831,
0.034815,
0.032379,
0.011831,
0.013258,
0.037624,
0.034815,
0.013258,
0.014774,
0.040550,
0.037624,
0.040550,
0.043289,
0.115656,
0.111333,
0.043289,
0.045530,
0.119127,
0.115656,
0.045530,
0.046999,
0.121373,
0.119127,
0.046999,
0.047512,
0.122150,
0.121373,
0.047512,
0.046999,
0.121373,
0.122150,
0.046999,
0.045530,
0.119127,
0.121373,
0.045530,
0.043289,
0.115656,
0.119127,
0.043289,
0.040550,
0.111333,
0.115656,
0.040550,
0.037624,
0.106609,
0.111333,
0.037624,
0.034815,
0.101962,
0.106609,
0.034815,
0.032379,
0.097838,
0.101962,
0.032379,
0.030514,
0.094613,
0.097838,
0.030514,
0.029347,
0.092565,
0.094613,
0.029347,
0.028951,
0.091864,
0.092565,
0.028951,
0.029347,
0.092565,
0.091864,
0.029347,
0.030514,
0.094613,
0.092565,
0.030514,
0.032379,
0.097838,
0.094613,
0.032379,
0.034815,
0.101962,
0.097838,
0.034815,
0.037624,
0.106609,
0.101962,
0.037624,
0.040550,
0.111333,
0.106609,
0.111333,
0.115656,
0.270287,
0.265030,
0.115656,
0.119127,
0.274440,
0.270287,
0.119127,
0.121373,
0.277097,
0.274440,
0.121373,
0.122150,
0.278010,
0.277097,
0.122150,
0.121373,
0.277097,
0.278010,
0.121373,
0.119127,
0.274440,
0.277097,
0.119127,
0.115656,
0.270287,
0.274440,
0.115656,
0.111333,
0.265030,
0.270287,
0.111333,
0.106609,
0.259178,
0.265030,
0.106609,
0.101962,
0.253303,
0.259178,
0.101962,
0.097838,
0.247989,
0.253303,
0.097838,
0.094613,
0.243764,
0.247989,
0.094613,
0.092565,
0.241049,
0.243764,
0.092565,
0.091864,
0.240113,
0.241049,
0.091864,
0.092565,
0.241049,
0.240113,
0.092565,
0.094613,
0.243764,
0.241049,
0.094613,
0.097838,
0.247989,
0.243764,
0.097838,
0.101962,
0.253303,
0.247989,
0.101962,
0.106609,
0.259178,
0.253303,
0.106609,
0.111333,
0.265030,
0.259178,
0.265030,
0.270287,
0.458928,
0.454673,
0.270287,
0.274440,
0.462238,
0.458928,
0.274440,
0.277097,
0.464330,
0.462238,
0.277097,
0.278010,
0.465045,
0.464330,
0.278010,
0.277097,
0.464330,
0.465045,
0.277097,
0.274440,
0.462238,
0.464330,
0.274440,
0.270287,
0.458928,
0.462238,
0.270287,
0.265030,
0.454673,
0.458928,
0.265030,
0.259178,
0.449852,
0.454673,
0.259178,
0.253303,
0.444930,
0.449852,
0.253303,
0.247989,
0.440407,
0.444930,
0.247989,
0.243764,
0.436765,
0.440407,
0.243764,
0.241049,
0.434403,
0.436765,
0.241049,
0.240113,
0.433585,
0.434403,
0.240113,
0.241049,
0.434403,
0.433585,
0.241049,
0.243764,
0.436765,
0.434403,
0.243764,
0.247989,
0.440407,
0.436765,
0.247989,
0.253303,
0.444930,
0.440407,
0.253303,
0.259178,
0.449852,
0.444930,
0.259178,
0.265030,
0.454673,
0.449852,
0.454673,
0.458928,
0.496822,
0.496448,
0.458928,
0.462238,
0.497102,
0.496822,
0.462238,
0.464330,
0.497273,
0.497102,
0.464330,
0.465045,
0.497331,
0.497273,
0.465045,
0.464330,
0.497273,
0.497331,
0.464330,
0.462238,
0.497102,
0.497273,
0.462238,
0.458928,
0.496822,
0.497102,
0.458928,
0.454673,
0.496448,
0.496822,
0.454673,
0.449852,
0.496004,
0.496448,
0.449852,
0.444930,
0.495529,
0.496004,
0.444930,
0.440407,
0.495073,
0.495529,
0.440407,
0.436765,
0.494691,
0.495073,
0.436765,
0.434403,
0.494437,
0.494691,
0.434403,
0.433585,
0.494348,
0.494437,
0.433585,
0.434403,
0.494437,
0.494348,
0.434403,
0.436765,
0.494691,
0.494437,
0.436765,
0.440407,
0.495073,
0.494691,
0.440407,
0.444930,
0.495529,
0.495073,
0.444930,
0.449852,
0.496004,
0.495529,
0.449852,
0.454673,
0.496448,
0.496004,
0.000108,
0.000111,
0.000105,
0.000108,
0.000103,
0.000105,
0.000103,
0.000103,
0.000103,
0.000103,
0.000105,
0.000103,
0.000108,
0.000105,
0.000111,
0.000108,
0.000115,
0.000111,
0.000119,
0.000115,
0.000122,
0.000119,
0.000125,
0.000122,
0.000127,
0.000125,
0.000127,
0.000127,
0.000127,
0.000127,
0.000125,
0.000127,
0.000122,
0.000125,
0.000119,
0.000122,
0.000115,
0.000119,
0.000111,
0.000115,
0.496448,
0.496822,
0.499988,
0.496822,
0.497102,
0.499988,
0.497102,
0.497273,
0.499988,
0.497273,
0.497331,
0.499988,
0.497331,
0.497273,
0.499988,
0.497273,
0.497102,
0.499988,
0.497102,
0.496822,
0.499988,
0.496822,
0.496448,
0.499988,
0.496448,
0.496004,
0.499988,
0.496004,
0.495529,
0.499988,
0.495529,
0.495073,
0.499988,
0.495073,
0.494691,
0.499988,
0.494691,
0.494437,
0.499988,
0.494437,
0.494348,
0.499988,
0.494348,
0.494437,
0.499988,
0.494437,
0.494691,
0.499988,
0.494691,
0.495073,
0.499988,
0.495073,
0.495529,
0.499988,
0.495529,
0.496004,
0.499988,
0.496004,
0.496448,
0.499988;
1.000000,-0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000000,-4.795322,-0.087719,1.000000;;
}
}
}
Frame joint1 {
FrameTransformMatrix {
0.000000,0.999261,-0.038433,0.000000,-0.000000,0.038433,0.999261,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,-4.795322,0.029240,1.000000;;
}
Frame joint2 {
FrameTransformMatrix {
0.997933,0.064257,-0.000000,0.000000,-0.064257,0.997933,-0.000000,0.000000,-0.000000,-0.000000,1.000000,0.000000,3.043184,-0.000000,-0.000000,1.000000;;
}
}
}
Frame ikHandle1 {
FrameTransformMatrix {
1.000000,0.000000,-0.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,-0.000000,-0.000000,1.000000,0.000000,-0.000000,4.799237,0.082008,1.000000;;
}
}
AnimationSet cylinder_test {
Animation {
{ pCylinder1 }
AnimationKey {
0;
24;
1;4;-1.000000,0.000000,0.000000,0.000000;;,
2;4;-1.000000,0.000000,0.000000,0.000000;;,
3;4;-1.000000,0.000000,0.000000,0.000000;;,
4;4;-1.000000,0.000000,0.000000,0.000000;;,
5;4;-1.000000,0.000000,0.000000,0.000000;;,
6;4;-1.000000,0.000000,0.000000,0.000000;;,
7;4;-1.000000,0.000000,0.000000,0.000000;;,
8;4;-1.000000,0.000000,0.000000,0.000000;;,
9;4;-1.000000,0.000000,0.000000,0.000000;;,
10;4;-1.000000,0.000000,0.000000,0.000000;;,
11;4;-1.000000,0.000000,0.000000,0.000000;;,
12;4;-1.000000,0.000000,0.000000,0.000000;;,
13;4;-1.000000,0.000000,0.000000,0.000000;;,
14;4;-1.000000,0.000000,0.000000,0.000000;;,
15;4;-1.000000,0.000000,0.000000,0.000000;;,
16;4;-1.000000,0.000000,0.000000,0.000000;;,
17;4;-1.000000,0.000000,0.000000,0.000000;;,
18;4;-1.000000,0.000000,0.000000,0.000000;;,
19;4;-1.000000,0.000000,0.000000,0.000000;;,
20;4;-1.000000,0.000000,0.000000,0.000000;;,
21;4;-1.000000,0.000000,0.000000,0.000000;;,
22;4;-1.000000,0.000000,0.000000,0.000000;;,
23;4;-1.000000,0.000000,0.000000,0.000000;;,
24;4;-1.000000,0.000000,0.000000,0.000000;;;
}
AnimationKey {
1;
24;
1;3;1.000000,1.000000,1.000000;;,
2;3;1.000000,1.000000,1.000000;;,
3;3;1.000000,1.000000,1.000000;;,
4;3;1.000000,1.000000,1.000000;;,
5;3;1.000000,1.000000,1.000000;;,
6;3;1.000000,1.000000,1.000000;;,
7;3;1.000000,1.000000,1.000000;;,
8;3;1.000000,1.000000,1.000000;;,
9;3;1.000000,1.000000,1.000000;;,
10;3;1.000000,1.000000,1.000000;;,
11;3;1.000000,1.000000,1.000000;;,
12;3;1.000000,1.000000,1.000000;;,
13;3;1.000000,1.000000,1.000000;;,
14;3;1.000000,1.000000,1.000000;;,
15;3;1.000000,1.000000,1.000000;;,
16;3;1.000000,1.000000,1.000000;;,
17;3;1.000000,1.000000,1.000000;;,
18;3;1.000000,1.000000,1.000000;;,
19;3;1.000000,1.000000,1.000000;;,
20;3;1.000000,1.000000,1.000000;;,
21;3;1.000000,1.000000,1.000000;;,
22;3;1.000000,1.000000,1.000000;;,
23;3;1.000000,1.000000,1.000000;;,
24;3;1.000000,1.000000,1.000000;;;
}
AnimationKey {
2;
24;
1;3;0.000000,0.000000,-0.000000;;,
2;3;0.000000,0.000000,-0.000000;;,
3;3;0.000000,0.000000,-0.000000;;,
4;3;0.000000,0.000000,-0.000000;;,
5;3;0.000000,0.000000,-0.000000;;,
6;3;0.000000,0.000000,-0.000000;;,
7;3;0.000000,0.000000,-0.000000;;,
8;3;0.000000,0.000000,-0.000000;;,
9;3;0.000000,0.000000,-0.000000;;,
10;3;0.000000,0.000000,-0.000000;;,
11;3;0.000000,0.000000,-0.000000;;,
12;3;0.000000,0.000000,-0.000000;;,
13;3;0.000000,0.000000,-0.000000;;,
14;3;0.000000,0.000000,-0.000000;;,
15;3;0.000000,0.000000,-0.000000;;,
16;3;0.000000,0.000000,-0.000000;;,
17;3;0.000000,0.000000,-0.000000;;,
18;3;0.000000,0.000000,-0.000000;;,
19;3;0.000000,0.000000,-0.000000;;,
20;3;0.000000,0.000000,-0.000000;;,
21;3;0.000000,0.000000,-0.000000;;,
22;3;0.000000,0.000000,-0.000000;;,
23;3;0.000000,0.000000,-0.000000;;,
24;3;0.000000,0.000000,-0.000000;;;
}
}
Animation {
{ joint2 }
AnimationKey {
0;
24;
1;4;-0.999483,0.000000,0.000000,0.032145;;,
2;4;-0.998708,0.000000,0.000000,-0.050813;;,
3;4;-0.996082,0.000000,0.000000,-0.088435;;,
4;4;-0.993043,0.000000,0.000000,-0.117751;;,
5;4;-0.989919,0.000000,0.000000,-0.141636;;,
6;4;-0.986956,0.000000,0.000000,-0.160990;;,
7;4;-0.984362,0.000000,0.000000,-0.176157;;,
8;4;-0.982318,0.000000,0.000000,-0.187220;;,
9;4;-0.980980,0.000000,0.000000,-0.194106;;,
10;4;-0.980500,0.000000,0.000000,-0.196518;;,
11;4;-0.983356,0.000000,0.000000,-0.181687;;,
12;4;-0.990011,0.000000,0.000000,-0.140991;;,
13;4;-0.996801,0.000000,0.000000,-0.079927;;,
14;4;-0.999985,0.000000,0.000000,-0.005403;;,
15;4;-0.997229,0.000000,0.000000,0.074391;;,
16;4;-0.988622,0.000000,0.000000,0.150419;;,
17;4;-0.977865,0.000000,0.000000,0.209239;;,
18;4;-0.975122,0.000000,0.000000,0.221669;;,
19;4;-0.986468,0.001387,0.013979,0.163351;;,
20;4;-0.996341,0.000176,0.051066,0.068532;;,
21;4;-0.994092,-0.010322,0.102107,-0.035334;;,
22;4;-0.978959,-0.030829,0.156250,-0.127570;;,
23;4;-0.959462,-0.053766,0.205039,-0.185746;;,
24;4;-0.947926,-0.066570,0.245233,-0.192002;;;
}
AnimationKey {
1;
24;
1;3;1.000000,1.000000,1.000000;;,
2;3;1.000000,1.000000,1.000000;;,
3;3;1.000000,1.000000,1.000000;;,
4;3;1.000000,1.000000,1.000000;;,
5;3;1.000000,1.000000,1.000000;;,
6;3;1.000000,1.000000,1.000000;;,
7;3;1.000000,1.000000,1.000000;;,
8;3;1.000000,1.000000,1.000000;;,
9;3;1.000000,1.000000,1.000000;;,
10;3;1.000000,1.000000,1.000000;;,
11;3;1.000000,1.000000,1.000000;;,
12;3;1.000000,1.000000,1.000000;;,
13;3;1.000000,1.000000,1.000000;;,
14;3;1.000000,1.000000,1.000000;;,
15;3;1.000000,1.000000,1.000000;;,
16;3;1.000000,1.000000,1.000000;;,
17;3;1.000000,1.000000,1.000000;;,
18;3;1.000000,1.000000,1.000000;;,
19;3;1.000000,1.000000,1.000000;;,
20;3;1.000000,1.000000,1.000000;;,
21;3;1.000000,1.000000,1.000000;;,
22;3;1.000000,1.000000,1.000000;;,
23;3;1.000000,1.000000,1.000000;;,
24;3;1.000000,1.000000,1.000000;;;
}
AnimationKey {
2;
24;
1;3;3.043184,-0.000000,-0.000000;;,
2;3;3.043184,-0.000000,-0.000000;;,
3;3;3.043184,-0.000000,-0.000000;;,
4;3;3.043184,-0.000000,-0.000000;;,
5;3;3.043184,-0.000000,-0.000000;;,
6;3;3.043184,-0.000000,-0.000000;;,
7;3;3.043184,-0.000000,-0.000000;;,
8;3;3.043184,-0.000000,-0.000000;;,
9;3;3.043184,-0.000000,-0.000000;;,
10;3;3.043184,-0.000000,-0.000000;;,
11;3;3.043184,-0.000000,-0.000000;;,
12;3;3.043184,-0.000000,-0.000000;;,
13;3;3.043184,-0.000000,-0.000000;;,
14;3;3.043184,-0.000000,-0.000000;;,
15;3;3.043184,-0.000000,-0.000000;;,
16;3;3.043184,-0.000000,-0.000000;;,
17;3;3.043184,-0.000000,-0.000000;;,
18;3;3.043184,-0.000000,-0.000000;;,
19;3;3.043184,-0.000000,-0.000000;;,
20;3;3.043184,-0.000000,-0.000000;;,
21;3;3.043184,-0.000000,-0.000000;;,
22;3;3.043184,-0.000000,-0.000000;;,
23;3;3.043184,-0.000000,-0.000000;;,
24;3;3.043184,-0.000000,-0.000000;;;
}
}
Animation {
{ joint1 }
AnimationKey {
0;
24;
1;4;-0.509518,0.490298,0.509518,0.490298;;,
2;4;-0.509518,0.490298,0.509518,0.490298;;,
3;4;-0.509518,0.490298,0.509518,0.490298;;,
4;4;-0.509518,0.490298,0.509518,0.490298;;,
5;4;-0.509518,0.490298,0.509518,0.490298;;,
6;4;-0.509518,0.490298,0.509518,0.490298;;,
7;4;-0.509518,0.490298,0.509518,0.490298;;,
8;4;-0.509518,0.490298,0.509518,0.490298;;,
9;4;-0.509518,0.490298,0.509518,0.490298;;,
10;4;-0.509518,0.490298,0.509518,0.490298;;,
11;4;-0.509518,0.490298,0.509518,0.490298;;,
12;4;-0.509518,0.490298,0.509518,0.490298;;,
13;4;-0.509518,0.490298,0.509518,0.490298;;,
14;4;-0.509518,0.490298,0.509518,0.490298;;,
15;4;-0.509518,0.490298,0.509518,0.490298;;,
16;4;-0.509518,0.490298,0.509518,0.490298;;,
17;4;-0.509518,0.490298,0.509518,0.490298;;,
18;4;-0.509518,0.490298,0.509518,0.490298;;,
19;4;-0.509518,0.490298,0.509518,0.490298;;,
20;4;-0.509518,0.490298,0.509518,0.490298;;,
21;4;-0.509518,0.490298,0.509518,0.490298;;,
22;4;-0.509518,0.490298,0.509518,0.490298;;,
23;4;-0.509518,0.490298,0.509518,0.490298;;,
24;4;-0.509518,0.490298,0.509518,0.490298;;;
}
AnimationKey {
1;
24;
1;3;1.000000,1.000000,1.000000;;,
2;3;1.000000,1.000000,1.000000;;,
3;3;1.000000,1.000000,1.000000;;,
4;3;1.000000,1.000000,1.000000;;,
5;3;1.000000,1.000000,1.000000;;,
6;3;1.000000,1.000000,1.000000;;,
7;3;1.000000,1.000000,1.000000;;,
8;3;1.000000,1.000000,1.000000;;,
9;3;1.000000,1.000000,1.000000;;,
10;3;1.000000,1.000000,1.000000;;,
11;3;1.000000,1.000000,1.000000;;,
12;3;1.000000,1.000000,1.000000;;,
13;3;1.000000,1.000000,1.000000;;,
14;3;1.000000,1.000000,1.000000;;,
15;3;1.000000,1.000000,1.000000;;,
16;3;1.000000,1.000000,1.000000;;,
17;3;1.000000,1.000000,1.000000;;,
18;3;1.000000,1.000000,1.000000;;,
19;3;1.000000,1.000000,1.000000;;,
20;3;1.000000,1.000000,1.000000;;,
21;3;1.000000,1.000000,1.000000;;,
22;3;1.000000,1.000000,1.000000;;,
23;3;1.000000,1.000000,1.000000;;,
24;3;1.000000,1.000000,1.000000;;;
}
AnimationKey {
2;
24;
1;3;0.000000,-4.795322,0.029240;;,
2;3;0.000000,-4.795322,0.029240;;,
3;3;0.000000,-4.795322,0.029240;;,
4;3;0.000000,-4.795322,0.029240;;,
5;3;0.000000,-4.795322,0.029240;;,
6;3;0.000000,-4.795322,0.029240;;,
7;3;0.000000,-4.795322,0.029240;;,
8;3;0.000000,-4.795322,0.029240;;,
9;3;0.000000,-4.795322,0.029240;;,
10;3;0.000000,-4.795322,0.029240;;,
11;3;0.000000,-4.795322,0.029240;;,
12;3;0.000000,-4.795322,0.029240;;,
13;3;0.000000,-4.795322,0.029240;;,
14;3;0.000000,-4.795322,0.029240;;,
15;3;0.000000,-4.795322,0.029240;;,
16;3;0.000000,-4.795322,0.029240;;,
17;3;0.000000,-4.795322,0.029240;;,
18;3;0.000000,-4.795322,0.029240;;,
19;3;0.000000,-4.795322,0.029240;;,
20;3;0.000000,-4.795322,0.029240;;,
21;3;0.000000,-4.795322,0.029240;;,
22;3;0.000000,-4.795322,0.029240;;,
23;3;0.000000,-4.795322,0.029240;;,
24;3;0.000000,-4.795322,0.029240;;;
}
}
Animation {
{ ikHandle1 }
AnimationKey {
0;
24;
1;4;-1.000000,0.000000,0.000000,0.000000;;,
2;4;-1.000000,0.000000,0.000000,0.000000;;,
3;4;-1.000000,0.000000,0.000000,0.000000;;,
4;4;-1.000000,0.000000,0.000000,0.000000;;,
5;4;-1.000000,0.000000,0.000000,0.000000;;,
6;4;-1.000000,0.000000,0.000000,0.000000;;,
7;4;-1.000000,0.000000,0.000000,0.000000;;,
8;4;-1.000000,0.000000,0.000000,0.000000;;,
9;4;-1.000000,0.000000,0.000000,0.000000;;,
10;4;-1.000000,0.000000,0.000000,0.000000;;,
11;4;-1.000000,0.000000,0.000000,0.000000;;,
12;4;-1.000000,0.000000,0.000000,0.000000;;,
13;4;-1.000000,0.000000,0.000000,0.000000;;,
14;4;-1.000000,0.000000,0.000000,0.000000;;,
15;4;-1.000000,0.000000,0.000000,0.000000;;,
16;4;-1.000000,0.000000,0.000000,0.000000;;,
17;4;-1.000000,0.000000,0.000000,0.000000;;,
18;4;-1.000000,0.000000,0.000000,0.000000;;,
19;4;-1.000000,0.000000,0.000000,0.000000;;,
20;4;-1.000000,0.000000,0.000000,0.000000;;,
21;4;-1.000000,0.000000,0.000000,0.000000;;,
22;4;-1.000000,0.000000,0.000000,0.000000;;,
23;4;-1.000000,0.000000,0.000000,0.000000;;,
24;4;-1.000000,0.000000,0.000000,0.000000;;;
}
AnimationKey {
1;
24;
1;3;1.000000,1.000000,1.000000;;,
2;3;1.000000,1.000000,1.000000;;,
3;3;1.000000,1.000000,1.000000;;,
4;3;1.000000,1.000000,1.000000;;,
5;3;1.000000,1.000000,1.000000;;,
6;3;1.000000,1.000000,1.000000;;,
7;3;1.000000,1.000000,1.000000;;,
8;3;1.000000,1.000000,1.000000;;,
9;3;1.000000,1.000000,1.000000;;,
10;3;1.000000,1.000000,1.000000;;,
11;3;1.000000,1.000000,1.000000;;,
12;3;1.000000,1.000000,1.000000;;,
13;3;1.000000,1.000000,1.000000;;,
14;3;1.000000,1.000000,1.000000;;,
15;3;1.000000,1.000000,1.000000;;,
16;3;1.000000,1.000000,1.000000;;,
17;3;1.000000,1.000000,1.000000;;,
18;3;1.000000,1.000000,1.000000;;,
19;3;1.000000,1.000000,1.000000;;,
20;3;1.000000,1.000000,1.000000;;,
21;3;1.000000,1.000000,1.000000;;,
22;3;1.000000,1.000000,1.000000;;,
23;3;1.000000,1.000000,1.000000;;,
24;3;1.000000,1.000000,1.000000;;;
}
AnimationKey {
2;
24;
1;3;-0.000000,4.799237,0.082008;;,
2;3;-0.000000,4.652889,0.082008;;,
3;3;0.000000,4.486810,0.082008;;,
4;3;0.000000,4.310864,0.082008;;,
5;3;0.000000,4.134918,0.082008;;,
6;3;0.000000,3.968839,0.082008;;,
7;3;0.000000,3.822492,0.082008;;,
8;3;0.000000,3.705743,0.082008;;,
9;3;0.000000,3.628458,0.082008;;,
10;3;0.000000,3.600504,0.082008;;,
11;3;0.000000,3.600504,0.237171;;,
12;3;0.000000,3.600504,0.643796;;,
13;3;0.000000,3.600504,1.213583;;,
14;3;-0.000000,3.600504,1.858234;;,
15;3;-0.000000,3.600504,2.489450;;,
16;3;-0.000000,3.600504,3.018932;;,
17;3;-0.000000,3.600504,3.358381;;,
18;3;-0.000000,3.600504,3.419499;;,
19;3;0.152837,3.600503,3.098265;;,
20;3;0.555772,3.600499,2.427253;;,
21;3;1.125437,3.600494,1.523055;;,
22;3;1.778469,3.600489,0.502265;;,
23;3;2.431500,3.600486,-0.518525;;,
24;3;3.001166,3.600484,-1.422722;;;
}
}
}
| Logos | 3 | sercand/assimp | test/models/X/anim_test.x | [
"BSD-3-Clause"
] |
// @declaration: true
class C {
static D = class extends C {};
} | TypeScript | 3 | nilamjadhav/TypeScript | tests/cases/compiler/classExpressionInClassStaticDeclarations.ts | [
"Apache-2.0"
] |
350 0.3 sine
440 0.3 sine +
| SourcePawn | 1 | aleatoricforest/Sporth | examples/dialtone.sp | [
"MIT"
] |
class Foo
{
Void f(Int a)
{
b := 2
a := true
b := true;
3.times |Int a| { return };
2.times |->| { |Int x, Int b| {} };
|->| { a := true }.callList;
|->| { |->| { b := 4 } }.callList;
}
} | Fantom | 0 | fanx-dev/fanx | compiler/testCompilerx/res/closure/testAlreadyDefined.fan | [
"AFL-3.0"
] |
{{#each users}}
<li>{{user}} <span>{{address/address}}</span><li>
{{/each}}
| Harbour | 2 | blacktail/real-edit | public_src/scripts/edit/templates/users.hb | [
"MIT"
] |
exec("swigtest.start", -1);
try
d = new_D();
catch
swigtesterror();
end
try
delete_D(d);
catch
swigtesterror();
end
try
e = new_E();
catch
swigtesterror();
end
try
delete_E(e);
catch
swigtesterror();
end
exec("swigtest.quit", -1);
| Scilab | 3 | kyletanyag/LL-Smartcard | cacreader/swig-4.0.2/Examples/test-suite/scilab/abstract_virtual_runme.sci | [
"BSD-3-Clause"
] |
#![feature(const_fn_trait_bound)]
#![feature(const_trait_impl)]
pub const fn equals_self<T: PartialEq>(t: &T) -> bool {
*t == *t
//~^ ERROR calls in constant functions are limited to constant functions
}
fn main() {}
| Rust | 4 | mbc-git/rust | src/test/ui/rfc-2632-const-trait-impl/call-generic-method-fail.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
fetch:xml('doc.xml', map {
'catfile': 'cat.xml',
'dtd': true()
})
| XQuery | 3 | mrdziuban/basex | basex-core/src/test/resources/catalog/fetch.xq | [
"BSD-3-Clause"
] |
package io.cucumber.java.${lang};
import io.cucumber.java.StepDefinitionAnnotations;
import io.cucumber.java.StepDefinitionAnnotation;
import org.apiguardian.api.API;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* To execute steps in a feature file the steps must be
* connected to executable code. This can be done by annotating
* a method with a cucumber or regular expression.
* <p>
* The parameters extracted from the step by the expression
* along with the data table or doc string argument are provided as
* arguments to the method.
* <p>
* The types of the parameters are determined by the cucumber or
* regular expression.
* <p>
* The type of the data table or doc string argument is determined
* by the argument name value. When none is provided cucumber will
* attempt to transform the data table or doc string to the type
* of the last argument.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@StepDefinitionAnnotation
@Documented
@Repeatable(${kw}.${kw}s.class)
@API(status = API.Status.STABLE)
public @interface ${kw} {
/**
* A cucumber or regular expression.
*
* @return a cucumber or regular expression
*/
String value();
/**
* Allows the use of multiple '${kw}'s on a single method.
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@StepDefinitionAnnotations
@Documented
@interface ${kw}s {
${kw}[] value();
}
}
| Groovy Server Pages | 5 | nddipiazza/cucumber-jvm | java/src/main/groovy/annotation.java.gsp | [
"MIT"
] |
use crate::ty;
use rustc_data_structures::fx::FxHashMap;
use rustc_hir::def::Res;
use rustc_hir::def_id::LocalDefId;
use rustc_macros::HashStable;
use rustc_span::symbol::Ident;
use rustc_span::Span;
use std::fmt::Debug;
/// This is the replacement export map. It maps a module to all of the exports
/// within.
pub type ExportMap = FxHashMap<LocalDefId, Vec<Export>>;
#[derive(Copy, Clone, Debug, TyEncodable, TyDecodable, HashStable)]
pub struct Export {
/// The name of the target.
pub ident: Ident,
/// The resolution of the target.
/// Local variables cannot be exported, so this `Res` doesn't need the ID parameter.
pub res: Res<!>,
/// The span of the target.
pub span: Span,
/// The visibility of the export.
/// We include non-`pub` exports for hygienic macros that get used from extern crates.
pub vis: ty::Visibility,
}
| Rust | 4 | mbc-git/rust | compiler/rustc_middle/src/hir/exports.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
#lang scribble/manual
@begin[(require "../utils.rkt" scribble/example racket/sandbox)
(require (for-label (only-meta-in 0 [except-in typed/racket for]))
(for-label (only-in racket/unit tag unit/c)))]
@(define the-eval (make-base-eval))
@(the-eval '(require (except-in typed/racket #%top-interaction #%module-begin)))
@(define the-top-eval (make-base-eval))
@(the-top-eval '(require (except-in typed/racket #%module-begin)))
@(define-syntax-rule (ex . args)
(examples #:eval the-top-eval . args))
@title{Typed Units}
@bold{Warning}: the features described in this section are experimental
and may not work correctly. Some of the features may change by
the next release.
Typed Racket provides support for modular programming with the units
and signatures provided by the @racketmodname[racket/unit] library.
@section[#:tag "unit-forms"]{Special forms}
@defmodule[typed/racket/unit]
The special forms below are provided by the @racketmodname[typed/racket/unit]
and @racketmodname[typed/racket] modules, but not by
@racketmodname[typed/racket/base]. The @racketmodname[typed/racket/unit] module
additionally provides all other bindings from @racketmodname[racket/unit].
@;; This trick is borrowed from the Typed Class reference to link to
@;; the identifiers in racket/unit
@(module id-holder racket/base
(require scribble/manual (for-label racket/unit))
(provide (all-defined-out))
(define ut:define-signature (racket define-signature))
(define ut:unit (racket unit))
(define ut:invoke-unit (racket invoke-unit))
(define ut:define-values/invoke-unit (racket define-values/invoke-unit))
(define ut:compound-unit (racket compound-unit))
(define ut:define-unit (racket define-unit))
(define ut:compound-unit/infer (racket compound-unit/infer))
(define ut:define-compound-unit (racket define-compound-unit))
(define ut:define-compound-unit/infer (racket define-compound-unit/infer))
(define ut:invoke-unit/infer (racket invoke-unit/infer))
(define ut:define-values/invoke-unit/infer (racket define-values/invoke-unit/infer))
(define ut:unit-from-context (racket unit-from-context))
(define ut:define-unit-from-context (racket define-unit-from-context))
(define ut:define-values-for-export (racket define-values-for-export))
(define ut:define-values (racket define-values))
(define ut:open (racket open))
(define ut:define-syntaxes (racket define-syntaxes))
(define ut:define-unit-binding (racket define-unit-binding))
(define ut:unit/s (racket unit/s))
(define ut:unit/new-import-export (racket unit/new-import-export)))
@(require 'id-holder)
@defform[
#:literals (extends :)
(define-signature id extension-decl
(sig-elem ...))
#:grammar
([extension-decl
code:blank
(code:line extends sig-id)]
[sig-elem [id : type]])]{
Binds an identifier to a signature and registers the identifier in the signature
environment with the specified type bindings. Sigantures in Typed Racket allow
only specifications of variables and their types. Variable and syntax definitions
are not allowed in the @racket[define-signature] form. This is only a limitation
of the @racket[define-signature] form in Typed Racket.
As in untyped Racket, the @racket[extends] clause includes all elements of
extended signature and any implementation of the new signature can be used
as an implementation of the extended signature.}
@defform[
#:literals (import export prefix rename only except init-depend)
(unit
(import sig-spec ...)
(export sig-spec ...)
init-depends-decl
unit-body-expr-or-defn
...)
#:grammar ([sig-spec
sig-id
(prefix id sig-spec)
(rename sig-spec (id id) ...)
(only sig-spec id ...)
(except sig-spec id ...)]
[init-depends-decl
code:blank
(init-depend sig-id ...)])]{
The typed version of the Racket @ut:unit form. Unit expressions in Typed Racket
do not support tagged signatures with the @racket[tag] keyword.}
@defform*[
#:literals (import)
[(invoke-unit unit-expr)
(invoke-unit unit-expr (import sig-spec ...))]]{
The typed version of the Racket @ut:invoke-unit form.}
@defform[
#:literals (import export)
(define-values/invoke-unit unit-expr
(import def-sig-spec ...)
(export def-sig-spec ...))
#:grammar ([def-sig-spec
sig-id
(prefix id def-sig-spec)
(rename def-sig-spec (id id) ...)])]{
The typed version of the Racket @ut:define-values/invoke-unit form. In Typed
Racket @racket[define-values/invoke-unit] is only allowed at the top-level
of a module.}
@defform[
#:literals (: import export link tag)
(compound-unit
(import link-binding ...)
(export link-id ...)
(link linkage-decl ...))
#:grammar ([link-binding
(link-id : sig-id)]
[linkage-decl
((link-binding ...) unit-expr link-id ...)])]{
The typed version of the Racket @ut:compound-unit form.}
@defform[
#:literals (import export)
(define-unit unit-id
(import sig-spec ...)
(export sig-spec ...)
init-depends-decl
unit-body-expr-or-defn
...)]{
The typed version of the Racket @ut:define-unit form.}
@defform[
#:literals (import export link :)
(compound-unit/infer
(import infer-link-import ...)
(export infer-link-export ...)
(link infer-linkage-decl ...))
#:grammar ([infer-link-import
sig-id
(link-id : sig-id)]
[infer-link-export
link-id
sig-id]
[infer-linkage-decl
((link-binding ...) unit-id
tagged-link-id ...)
unit-id])]{
The typed version of the Racket @ut:compound-unit/infer form.}
@defform[
#:literals (import export link)
(define-compound-unit id
(import link-binding ...)
(export link-id ...)
(link linkage-decl ...))]{
The typed version of the Racket @ut:define-compound-unit form.}
@defform[
#:literals (import export link)
(define-compound-unit/infer id
(import link-binding ...)
(export infer-link-export ...)
(link infer-linkage-decl ...))]{
The typed version of the Racket @ut:define-compound-unit/infer form.}
@defform[
#:literals (link)
(invoke-unit/infer unit-spec)
#:grammar ([unit-spec
unit-id
(link link-unit-id ...)])]{
The typed version of the Racket @ut:invoke-unit/infer form.}
@defform[
#:literals (export link)
(define-values/invoke-unit/infer maybe-exports unit-spec)
#:grammar ([maybe-exports
code:blank
(export sig-sepc ...)]
[unit-spec
unit-id
(link link-unit-id ...)])]{
The typed version of the Racket @ut:define-values/invoke-unit/infer form. Like
the @racket[define-values/invoke-unit] form above, this form is only allowed at
the toplevel of a module.}
@defform[
(unit-from-context sig-spec)]{
The typed version of the Racket @ut:unit-from-context form.}
@defform[
(define-unit-from-context id sig-spec)]{
The typed version of the Racket @ut:define-unit-from-context form.}
@section[#:tag "unit-types"]{Types}
@defform[
#:literals (import export init-depend Values)
(Unit
(import sig-id ...)
(export sig-id ...)
optional-init-depend-clause
optional-body-type-clause)
#:grammar ([optional-init-depend-clause
code:blank
(init-depend sig-id ...)]
[optional-body-type-clause
code:blank
type
(Values type ...)])]{
The type of a unit with the given imports, exports, initialization dependencies,
and body type. Omitting the init-depend clause is equivalent to an
@racket[init-depend] clause that contains no signatures. The body type is the
type of the last expression in the unit's body. If a unit contains only
definitions and no expressions its body type is @racket[Void]. Omitting the body
type is equivalent to specifying a body type of @racket[Void].
@ex[(module Unit-Types typed/racket
(define-signature fact^ ([fact : (-> Natural Natural)]))
(: use-fact@ (Unit (import fact^)
(export)
Natural))
(define use-fact@ (unit (import fact^) (export) (fact 5))))]
}
@defidform[UnitTop]{
The supertype of all unit types. Values of this type cannot be linked or invoked.
The primary use of is for the reflective operation @racket[unit?]}
@section[#:tag "unit-typed/untyped-interactions"]{Interacting with Untyped Code}
@defform/subs[#:link-target? #f
#:literals (struct)
(require/typed m rt-clause ...)
([rt-clause [maybe-renamed t]
[#:struct name ([f : t] ...)
struct-option ...]
[#:struct (name parent) ([f : t] ...)
struct-option ...]
[#:opaque t pred]
[#:signature name ([id : t] ...)]]
[maybe-renamed id
(orig-id new-id)]
[struct-option
(code:line #:constructor-name constructor-id)
(code:line #:extra-constructor-name constructor-id)])]
The @racket[#:signature] clause of @racket[require/typed] requires the given
signature and registers it in the signature environment with the specified
bindings. Unlike other identifiers required with @racket[require/typed], signatures
are not protected by contracts.
@margin-note{Signatures are not runtime values and therefore do not need to be protected by contracts.}
@ex[
(module UNTYPED-1 racket
(provide a^)
(define-signature a^ (a)))
(module TYPED-1 typed/racket
(require/typed 'UNTYPED-1
[#:signature a^ ([a : Integer])])
(unit (import a^) (export) (add1 a)))]
Typed Racket will infer whether the named signature @racket[extends]
another signature. It is an error to require a signature that extends a signature
not present in the signature environment.
@ex[
(module UNTYPED-2 racket
(provide a-sub^)
(define-signature a^ (a1))
(define-signature a-sub^ extends a^ (a2)))
(eval:error
(module TYPED-2 typed/racket
(require/typed 'UNTYPED-2
[#:signature a-sub^
([a1 : Integer]
[a2 : String])])))]
Requiring a signature from an untyped module that contains variable definitions is an error
in Typed Racket.
@ex[
(module UNTYPED racket
(provide bad^)
(define-signature bad^ (bad (define-values (bad-ref) (car bad)))))
(eval:error
(module TYPED typed/racket
(require/typed 'UNTYPED
[#:signature bad^
([bad : (Pairof Integer Integer)]
[bad-ref : Integer])])))]
@section{Limitations}
@subsection{Signature Forms}
Unlike Racket's @ut:define-signature form, in Typed Racket
@racket[define-signature] only supports one kind of signature element that
specifies the types of variables in the signature. In particular Typed Racket's
@racket[define-signature] form does not support uses of @ut:define-syntaxes,
@ut:define-values, or @ut:define-values-for-export . Requiring an untyped
signature that contains definitions in a typed module will result in an error.
@ex[(module UNTYPED racket
(provide bad^)
(define-signature bad^ ((define-values (bad) 13))))
(eval:error
(module TYPED typed/racket
(require/typed 'UNTYPED
[#:signature bad^ ([bad : Integer])])))]
@subsection{Contracts and Unit Static Information}
Unit values that flow between typed and untyped contexts are wrapped in
@racket[unit/c] contracts to guard the unit's imports, exports, and result upon
invocation. When identifers that are additionally bound to static information
about a unit, such as those defined by @racket[define-unit], flow between typed
and untyped contexts contract application can result the static information
becoming inaccessible.
@ex[
(module UNTYPED racket
(provide u@)
(define-unit u@ (import) (export) "Hello!"))
(eval:error
(module TYPED typed/racket
(require/typed 'UNTYPED
[u@ (Unit (import) (export) String)])
(invoke-unit/infer u@)))]
When an identifier bound to static unit information flows from a typed module to
an untyped module, however, the situation is worse. Because unit static
information is bound to an identifier as a macro definition, any use of the
typed unit is disallowed in untyped contexts.
@ex[
(module TYPED typed/racket
(provide u@)
(define-unit u@ (import) (export) "Hello!"))
(eval:error
(module UNTYPED racket
(require 'TYPED)
u@))]
@subsection{Signatures and Internal Definition Contexts}
Typed Racket's @racket[define-signature] form is allowed in both top-level and
internal definition contexts. As the following example shows, defining
signatures in internal definiition contexts can be problematic.
@ex[
(eval:error
(module TYPED typed/racket
(define-signature a^ ())
(define u@
(let ()
(define-signature a^ ())
(unit (import a^) (export) (init-depend a^) 5)))
(invoke-unit u@ (import a^))))]
Even though the unit imports a signature named @racket[a^], the @racket[a^]
provided for the import refers to the top-level @racket[a^] signature and the
type system prevents invoking the unit. This issue can be avoided by defining
signatures only at the top-level of a module.
@subsection{Tagged Signatures}
Various unit forms in Racket allow for signatures to be tagged to support the
definition of units that import or export the same signature multiple times.
Typed Racket does not support the use of tagged signatures, using the
@racket[tag] keyword, anywhere in the various unit forms described above.
@subsection{Structural Matching and Other Unit Forms}
Typed Racket supports only those unit forms described above. All other bindings
exported by @racketmodname[racket/unit] are not supported in the type system. In
particular, the structural matching forms including @ut:unit/new-import-export
and @ut:unit/s are unsupported.
| Racket | 5 | SnapCracklePopGone/typed-racket | typed-racket-doc/typed-racket/scribblings/reference/typed-units.scrbl | [
"Apache-2.0",
"MIT"
] |
QT.xml_private.VERSION = 5.9.4
QT.xml_private.name = QtXml
QT.xml_private.module =
QT.xml_private.libs = $$QT_MODULE_LIB_BASE
QT.xml_private.includes = $$QT_MODULE_INCLUDE_BASE/QtXml/5.9.4 $$QT_MODULE_INCLUDE_BASE/QtXml/5.9.4/QtXml
QT.xml_private.frameworks =
QT.xml_private.depends = core_private xml
QT.xml_private.uses =
QT.xml_private.module_config = v2 internal_module
QT.xml_private.enabled_features =
QT.xml_private.disabled_features =
| QMake | 1 | PLohrmannAMD/renderdoc | qrenderdoc/3rdparty/qt/x64/mkspecs/modules/qt_lib_xml_private.pri | [
"MIT"
] |
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit eutils
DESCRIPTION="The Servo web browser"
HOMEPAGE="https://servo-builds.s3.amazonaws.com/index.html"
MY_SRC_URI="https://servo-builds.s3.amazonaws.com/nightly/linux/servo-latest.tar.gz"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="-* ~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
S=${WORKDIR}
pkg_pretend() {
# Protect against people using autounmask overzealously
use amd64 || die "binary servo only works on amd64"
}
src_unpack() {
wget "${MY_SRC_URI}" || die
unpack ./"servo-latest.tar.gz"
}
src_install() {
insinto /opt
doins -r servo
fperms 755 /opt/servo/servo
make_wrapper servo "/opt/servo/servo" || die
}
| Gentoo Ebuild | 4 | gentoo/gentoo-rust | www-client/servo-bin/servo-bin-9999.ebuild | [
"BSD-3-Clause"
] |
#! /bin/sh /usr/share/dpatch/dpatch-run
## 53_fix_deprecated_widgets.dpatch by Davide Puricelli <evo@debian.org>
##
## Description: Fix FTBFS errors due to new GTK 2.20 widgets names.
@DPATCH@
diff -Naur xchat-2.8.6foo/src/fe-gtk/fe-gtk.c xchat-2.8.6/src/fe-gtk/fe-gtk.c
--- xchat-2.8.6foo/src/fe-gtk/fe-gtk.c 2010-04-06 21:48:19.000000000 +0200
+++ xchat-2.8.6/src/fe-gtk/fe-gtk.c 2010-04-06 21:49:27.000000000 +0200
@@ -819,7 +819,7 @@
switch (info_type)
{
case 0: /* window status */
- if (!GTK_WIDGET_VISIBLE (GTK_WINDOW (sess->gui->window)))
+ if (!gtk_widget_get_visible (GTK_WINDOW (sess->gui->window)))
return 2; /* hidden (iconified or systray) */
#if GTK_CHECK_VERSION(2,4,0)
if (gtk_window_is_active (GTK_WINDOW (sess->gui->window)))
diff -Naur xchat-2.8.6foo/src/fe-gtk/maingui.c xchat-2.8.6/src/fe-gtk/maingui.c
--- xchat-2.8.6foo/src/fe-gtk/maingui.c 2008-04-01 10:53:41.000000000 +0200
+++ xchat-2.8.6/src/fe-gtk/maingui.c 2010-04-06 21:50:45.000000000 +0200
@@ -599,7 +599,7 @@
int num;
GtkWidget *f = NULL;
- if (current_sess && GTK_WIDGET_HAS_FOCUS (current_sess->gui->input_box))
+ if (current_sess && gtk_widget_has_focus (current_sess->gui->input_box))
f = current_sess->gui->input_box;
num = gtk_notebook_page_num (GTK_NOTEBOOK (mg_gui->note_book), box);
@@ -809,8 +809,8 @@
static void
mg_hide_empty_pane (GtkPaned *pane)
{
- if ((pane->child1 == NULL || !GTK_WIDGET_VISIBLE (pane->child1)) &&
- (pane->child2 == NULL || !GTK_WIDGET_VISIBLE (pane->child2)))
+ if ((pane->child1 == NULL || !gtk_widget_get_visible (pane->child1)) &&
+ (pane->child2 == NULL || !gtk_widget_get_visible (pane->child2)))
{
gtk_widget_hide (GTK_WIDGET (pane));
return;
diff -Naur xchat-2.8.6foo/src/fe-gtk/menu.c xchat-2.8.6/src/fe-gtk/menu.c
--- xchat-2.8.6foo/src/fe-gtk/menu.c 2008-06-08 09:59:37.000000000 +0200
+++ xchat-2.8.6/src/fe-gtk/menu.c 2010-04-06 21:49:54.000000000 +0200
@@ -1670,7 +1670,7 @@
menu_canacaccel (GtkWidget *widget, guint signal_id, gpointer user_data)
{
/* GTK2.2 behaviour */
- return GTK_WIDGET_IS_SENSITIVE (widget);
+ return gtk_widget_is_sensitive (widget);
}
#endif
| Darcs Patch | 3 | crystalfontz/openembedded | recipes/xchat/files/53_fix_deprecated_widgets.dpatch | [
"MIT"
] |
#! /bin/sh /usr/share/dpatch/dpatch-run
## 11_string_header.dpatch by Luciano Bello <luciano@linux.org.ar>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Aviod the "implicit declaration of function 'str*'" warning
@DPATCH@
diff -urNad dsniff-2.4b1+debian~/arp.c dsniff-2.4b1+debian/arp.c
--- dsniff-2.4b1+debian~/arp.c 2007-06-17 16:22:49.000000000 -0300
+++ dsniff-2.4b1+debian/arp.c 2007-06-17 16:22:49.000000000 -0300
@@ -34,6 +34,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <string.h>
#include "arp.h"
diff -urNad dsniff-2.4b1+debian~/buf.c dsniff-2.4b1+debian/buf.c
--- dsniff-2.4b1+debian~/buf.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/buf.c 2007-06-17 16:22:49.000000000 -0300
@@ -17,6 +17,7 @@
#include <unistd.h>
#include <ctype.h>
#include <err.h>
+#include <string.h>
#include "buf.h"
diff -urNad dsniff-2.4b1+debian~/decode_nntp.c dsniff-2.4b1+debian/decode_nntp.c
--- dsniff-2.4b1+debian~/decode_nntp.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_nntp.c 2007-06-17 16:22:49.000000000 -0300
@@ -15,6 +15,7 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
#include "base64.h"
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/decode_pop.c dsniff-2.4b1+debian/decode_pop.c
--- dsniff-2.4b1+debian~/decode_pop.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_pop.c 2007-06-17 16:22:49.000000000 -0300
@@ -14,6 +14,7 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
#include "base64.h"
#include "options.h"
diff -urNad dsniff-2.4b1+debian~/decode_rlogin.c dsniff-2.4b1+debian/decode_rlogin.c
--- dsniff-2.4b1+debian~/decode_rlogin.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_rlogin.c 2007-06-17 16:22:49.000000000 -0300
@@ -14,6 +14,8 @@
#include <stdio.h>
#include <string.h>
+#include <strlcpy.h>
+#include <strlcat.h>
#include "options.h"
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/decode_smb.c dsniff-2.4b1+debian/decode_smb.c
--- dsniff-2.4b1+debian~/decode_smb.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_smb.c 2007-06-17 16:22:49.000000000 -0300
@@ -15,6 +15,7 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/decode_smtp.c dsniff-2.4b1+debian/decode_smtp.c
--- dsniff-2.4b1+debian~/decode_smtp.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_smtp.c 2007-06-17 16:22:49.000000000 -0300
@@ -14,6 +14,7 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
#include "base64.h"
#include "options.h"
diff -urNad dsniff-2.4b1+debian~/decode_sniffer.c dsniff-2.4b1+debian/decode_sniffer.c
--- dsniff-2.4b1+debian~/decode_sniffer.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_sniffer.c 2007-06-17 16:22:49.000000000 -0300
@@ -15,6 +15,8 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
+#include <strlcpy.h>
#include "base64.h"
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/decode_socks.c dsniff-2.4b1+debian/decode_socks.c
--- dsniff-2.4b1+debian~/decode_socks.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_socks.c 2007-06-17 16:22:49.000000000 -0300
@@ -14,6 +14,7 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/decode_tds.c dsniff-2.4b1+debian/decode_tds.c
--- dsniff-2.4b1+debian~/decode_tds.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_tds.c 2007-06-17 16:22:49.000000000 -0300
@@ -18,6 +18,7 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/decode_telnet.c dsniff-2.4b1+debian/decode_telnet.c
--- dsniff-2.4b1+debian~/decode_telnet.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_telnet.c 2007-06-17 16:22:49.000000000 -0300
@@ -14,6 +14,7 @@
#include <stdio.h>
#include <string.h>
+#include <strlcpy.h>
#include "options.h"
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/decode_x11.c dsniff-2.4b1+debian/decode_x11.c
--- dsniff-2.4b1+debian~/decode_x11.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/decode_x11.c 2007-06-17 16:22:49.000000000 -0300
@@ -14,6 +14,8 @@
#include <stdio.h>
#include <string.h>
+#include <strlcat.h>
+#include <strlcpy.h>
#include "decode.h"
diff -urNad dsniff-2.4b1+debian~/dnsspoof.c dsniff-2.4b1+debian/dnsspoof.c
--- dsniff-2.4b1+debian~/dnsspoof.c 2007-06-17 16:22:49.000000000 -0300
+++ dsniff-2.4b1+debian/dnsspoof.c 2007-06-17 16:22:49.000000000 -0300
@@ -20,6 +20,7 @@
#include <stdlib.h>
#include <signal.h>
#include <string.h>
+#include <strlcpy.h>
#include <resolv.h>
#include <err.h>
#include <libnet.h>
diff -urNad dsniff-2.4b1+debian~/magic.c dsniff-2.4b1+debian/magic.c
--- dsniff-2.4b1+debian~/magic.c 2007-06-17 16:22:39.000000000 -0300
+++ dsniff-2.4b1+debian/magic.c 2007-06-17 16:22:49.000000000 -0300
@@ -36,6 +36,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <strlcpy.h>
#include <ctype.h>
#include <time.h>
#include <err.h>
diff -urNad dsniff-2.4b1+debian~/missing/strlcat.h dsniff-2.4b1+debian/missing/strlcat.h
--- dsniff-2.4b1+debian~/missing/strlcat.h 1969-12-31 21:00:00.000000000 -0300
+++ dsniff-2.4b1+debian/missing/strlcat.h 2007-06-17 16:22:49.000000000 -0300
@@ -0,0 +1 @@
+size_t strlcat(char *dst, const char *src, size_t siz);
diff -urNad dsniff-2.4b1+debian~/missing/strlcpy.h dsniff-2.4b1+debian/missing/strlcpy.h
--- dsniff-2.4b1+debian~/missing/strlcpy.h 1969-12-31 21:00:00.000000000 -0300
+++ dsniff-2.4b1+debian/missing/strlcpy.h 2007-06-17 16:22:49.000000000 -0300
@@ -0,0 +1 @@
+size_t strlcpy(char *dst, const char *src, size_t siz);
diff -urNad dsniff-2.4b1+debian~/sshmitm.c dsniff-2.4b1+debian/sshmitm.c
--- dsniff-2.4b1+debian~/sshmitm.c 2007-06-17 16:22:49.000000000 -0300
+++ dsniff-2.4b1+debian/sshmitm.c 2007-06-17 16:22:49.000000000 -0300
@@ -24,6 +24,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
+#include <strlcat.h>
#include "buf.h"
#include "record.h"
| Darcs Patch | 3 | acheong08/dsniff | debian/patches/11_string_header.dpatch | [
"BSD-3-Clause"
] |
const sizes* = [
643584,
140800,
802,
2464928,
488122,
1161601,
861051,
1413,
389,
2412032,
328704,
323488,
484864,
31232,
38400,
87552,
328704,
242176,
55808,
32256,
15360,
15080,
567074,
1390,
1390,
366080,
186536,
314368,
4154,
3017582,
62658,
3874662,
227,
126616,
290,
261792,
287,
151200,
293,
34976,
293,
28840,
296,
20664,
314,
223232,
288,
53248,
326,
12800,
312,
473600,
306,
2676224,
308,
2846720,
308,
563712,
308,
567296,
308,
576000,
308,
577024,
308,
577536,
308,
577536,
308,
578560,
308,
578560,
308,
145920,
310,
159232,
312,
364544,
310,
178176,
312,
8032448,
323,
29392,
332,
35112,
394,
85768,
371,
88864,
385,
23840,
385,
176128,
386,
126976,
389,
24800,
401,
118784,
379,
21792,
385,
259152,
385,
172032,
389,
40960,
389,
114688,
403,
57344,
407,
7680,
407,
126216,
373,
29952,
367,
148768,
385,
27384,
362,
24832,
362,
50944,
364,
20136,
302,
32416,
293,
69296,
305,
36016,
308,
89784,
305,
5120,
305,
49152,
320,
30424,
331,
12288,
326,
62976,
69120,
72192,
503808,
77824,
382144,
163840,
88728,
1581,
1718096,
66728,
82172,
116756,
4554752,
59342,
45794,
39284,
66384,
60294,
83748,
83748,
262148,
20320,
28288,
382,
3072,
4222976,
161,
1737888,
2975744,
487424,
258048,
113664,
372736,
261632,
5287936,
80896,
89600,
503808,
77824,
554176,
163840,
84632,
1581,
1714000,
66728,
82172,
116756,
4571136,
59342,
45794,
39284,
66384,
60294,
83748,
83748,
262148,
20320,
28288,
4006400,
161,
2256032,
3150336,
503296,
245760,
133120,
358400,
283136,
5296128,
10752,
507904,
315392,
11264,
921600,
7680,
118784,
166560,
13312,
5120,
18768,
52736,
8192,
77824,
6656,
106496,
389120,
733184,
53248,
36864,
36864,
655360,
139264,
802816,
169864,
77824,
10752,
94208,
17808,
40960,
36864,
749568,
45056,
188416,
28672,
16384,
69632,
102400,
11776,
10752,
290816,
36864,
36864,
667648,
53248,
49152,
200704,
45056,
40960,
77824,
10240,
9216,
77504,
161472,
163528,
26304,
26312,
96448,
99016,
19648,
19656,
127680,
127680,
364224,
323272,
73408,
71368,
24776,
138944,
128200,
27328,
48832,
37576,
32960,
52928,
40128,
89792,
80584,
25792,
499392,
504520,
163520,
167624,
36032,
36040,
138944,
127688,
4208320,
4839104,
77504,
81608,
2768576,
2757832,
331456,
321728,
65224,
65216,
56008,
163520,
154816,
48832,
77504,
62656,
48832,
77504,
50888,
57024,
47296,
52928,
40640,
71360,
71360,
22208,
22208,
57024,
45768,
48832,
48840,
3720896,
4037832,
790208,
868040,
230592,
230592,
20160,
20160,
29376,
31944,
1355456,
1419976,
839360,
851656,
32960,
36040,
179904,
265920,
85696,
85696,
33472,
33472,
392896,
391872,
397008,
48832,
48832,
48832,
48832,
52928,
48832,
48832,
57024,
36032,
36032,
48832,
48840,
48840,
48832,
52928,
48832,
48832,
57024,
36032,
36032,
48848,
48848,
48848,
48848,
52944,
48848,
48848,
57040,
36048,
36048,
57024,
45760,
20160,
20160,
34528,
13024,
397312,
5120,
28672,
659456,
372736,
110592,
9216,
9728,
61440,
28672,
5632,
41984,
29736,
20056,
216632,
110184,
27032,
37472,
31592,
24376,
102728,
280912,
27472,
27936,
23392,
56624,
57216,
38744,
51016,
36696,
48896,
53024,
32032,
34120,
34120,
20256,
107848,
109928,
1267040,
46984,
496544,
1174384,
762288,
101744,
32664,
95712,
48480,
365344,
98448,
86440,
35312,
37704,
75664,
101672,
47912,
15872,
11168,
22856,
22856,
506616,
556824,
61784,
30008,
44848,
81816,
31528,
32768,
12800,
27000,
155000,
14712,
14712,
14712,
15224,
14712,
15224,
14712,
14712,
14712,
15736,
14712,
13688,
14200,
122232,
14200,
14200,
14200,
14200,
14200,
14200,
14712,
13688,
14200,
14200,
15224,
14200,
13688,
13176,
978296,
1580408,
134520,
15224,
15736,
15736,
15736,
15736,
15736,
16248,
15736,
15736,
15224,
16760,
15224,
14712,
15224,
171384,
175480,
159096,
171384,
179576,
171384,
191864,
175480,
175480,
171384,
216440,
167288,
155000,
155000,
40312,
27000,
48504,
14200,
14200,
14712,
14200,
14200,
14200,
14712,
13688,
14200,
14200,
14712,
14712,
13688,
14200,
52600,
56696,
146704,
21792,
286720,
15360,
13824,
7168,
7168,
421888,
36864,
36864,
110592,
4608,
4096,
29576,
29576,
29576,
29576,
40840,
30088,
32136,
27368,
27528,
315392,
381,
3072,
1318,
3072,
375,
3072,
378,
3072,
598016,
53248,
32768,
110592,
43696,
5283840,
196608,
139264,
397312,
249856,
163840,
864256,
372736,
532480,
36864,
5632,
110592,
5120,
129664,
110592,
10752,
3203072,
163840,
45056,
57344,
8192,
425984,
81920,
28672,
49152,
671744,
61440,
53248,
2879488,
229376,
15360,
397312,
684032,
57344,
110592,
356352,
696320,
462848,
53248,
163840,
11776,
98304,
470240,
47328,
745472,
36864,
974848,
397312,
5062656,
544768,
401408,
290816,
36864,
188416,
28672,
40960,
630784,
81920,
6144,
24576,
32768,
446464,
65536,
126976,
53248,
131072,
11776,
389120,
3010560,
278528,
253952,
143360,
13824,
258048,
77824,
237568,
16896,
212992,
307200,
32768,
970752,
131072,
11776,
98304,
270336,
28672,
5992448,
73728,
36864,
491520,
32768,
569344,
69632,
114688,
40960,
692224,
65536,
28672,
77824,
3584,
229376,
32768,
4096,
16896,
139264,
131072,
11264,
15360,
1282048,
335872,
49152,
634880,
835584,
81920,
98304,
622592,
61440,
7168,
839680,
81920,
5025792,
434176,
12288,
3584,
1142784,
188416,
1630208,
311296,
540672,
36864,
507904,
102400,
2056192,
139264,
167936,
172032,
4096,
380928,
8192,
40960,
4096,
98304,
7168,
10584,
81080,
23376,
1257472,
90112,
94208,
5120,
150168,
25600,
2553856,
69120,
220672,
51712,
1349120,
1349120,
167424,
786432,
515584,
291328,
1681920,
33792,
102400,
102912,
60928,
44032,
631296,
44544,
11776,
408576,
138752,
1849856,
13824,
33280,
44544,
17920,
11776,
9153536,
150016,
13824,
24576,
293888,
651264,
818176,
17920,
141312,
64512,
583168,
58368,
830976,
109568,
65536,
24576,
771584,
1545728,
1540608,
11776,
144896,
11776,
18944,
67584,
65536,
17920,
848896,
43520,
30720,
27648,
1935872,
127488,
11264,
44032,
583168,
11264,
67584,
632320,
38400,
8470528,
127488,
257536,
30720,
111104,
286720,
1711616,
64000,
240128,
22016,
86528,
174080,
16896,
531456,
17920,
23552,
20992,
20992,
22528,
20992,
19456,
19456,
20992,
20992,
11500544,
12260864,
368128,
14345216,
29184,
29184,
84480,
64512,
925696,
8003072,
141312,
978432,
2305024,
6658048,
1116160,
1593344,
1059328,
777216,
214016,
627200,
11935232,
1840640,
12438528,
5466624,
86528,
98816,
3358720,
145408,
126976,
73728,
78848,
94208,
348672,
76288,
2347008,
2347008,
2176512,
237056,
1130496,
416768,
713216,
1126400,
61440,
163328,
158208,
61440,
2173952,
681472,
33792,
15580160,
16565248,
463360,
19202560,
47104,
116736,
89088,
10677248,
192512,
1320448,
3324416,
8741888,
1639936,
2320384,
1482752,
11899392,
1028608,
296448,
921600,
15390720,
2292224,
17390080,
6968320,
125952,
136192,
4978176,
193536,
169984,
104960,
43520,
300,
112128,
536,
110592,
536,
112128,
536,
2664448,
1060,
2664448,
1060,
2664448,
1060,
71168,
572,
72192,
572,
71168,
572,
131072,
2416,
82944,
3084,
12800,
3508,
15872,
3576,
1321984,
1364,
653312,
2124,
18492416,
2048,
6656,
344,
1219584,
416,
548864,
2444,
6656,
344,
11776,
1008,
54272,
404,
63488,
404,
64000,
404,
624640,
5752,
624640,
5720,
89600,
1736,
164352,
1096,
178688,
1096,
16384,
352,
326656,
1368,
315392,
1368,
699392,
1004,
54784,
360,
75776,
352,
69120,
352,
61440,
352,
62976,
352,
61952,
352,
53760,
360,
61440,
352,
62464,
352,
33280,
320,
23552,
368,
26112,
360,
26624,
324,
26112,
360,
27648,
320,
27136,
320,
27136,
320,
28160,
360,
27648,
320,
27648,
320,
27648,
320,
33280,
320,
27648,
320,
26112,
360,
29696,
320,
31232,
360,
26112,
360,
27648,
320,
25088,
328,
27648,
320,
26624,
320,
25088,
328,
25088,
328,
25088,
328,
27648,
320,
26112,
360,
27136,
320,
27136,
320,
27648,
320,
23552,
368,
26624,
320,
25600,
320,
25600,
320,
29696,
320,
27648,
320,
26624,
324,
1927168,
928,
2015232,
928,
414720,
588,
426496,
588,
327680,
708,
1290240,
2608,
83456,
308,
86016,
308,
109056,
308,
100352,
348,
86016,
308,
109056,
308,
83968,
308,
87040,
308,
76800,
312,
87040,
308,
88576,
348,
79360,
348,
79872,
308,
75264,
312,
87552,
308,
76800,
312,
86528,
308,
88064,
308,
80384,
348,
88576,
308,
83456,
308,
79872,
308,
96768,
308,
86528,
308,
78848,
348,
82944,
308,
88576,
308,
87552,
308,
79360,
348,
69120,
352,
83968,
308,
88064,
308,
82944,
308,
70144,
352,
80384,
348,
75264,
312,
96768,
308,
10240,
364,
9728,
364,
9728,
364,
9728,
364,
9728,
364,
9728,
364,
10240,
364,
9216,
368,
9216,
368,
163840,
8280,
242176,
2980,
210432,
360,
244224,
360,
209408,
360,
212480,
360,
192512,
364,
206336,
360,
224768,
360,
193536,
364,
206336,
360,
872960,
1232,
1231872,
1056,
809472,
888,
809472,
992,
3544576,
2160,
3544576,
2056,
3580928,
2220,
2396160,
2568,
145408,
316,
160256,
316,
145408,
316,
195584,
364,
140288,
316,
126464,
324,
144896,
316,
160256,
316,
139264,
316,
216064,
356,
212992,
356,
144896,
316,
139264,
316,
140288,
316,
196608,
364,
132608,
316,
128000,
324,
249344,
356,
181760,
316,
142848,
316,
228864,
356,
144896,
316,
147456,
316,
141824,
316,
144896,
316,
214528,
356,
210944,
356,
181760,
316,
140288,
320,
142848,
316,
141824,
316,
210432,
356,
128000,
324,
132608,
316,
140288,
320,
126464,
324,
147456,
316,
26624,
364,
24576,
364,
22016,
368,
29696,
364,
22528,
368,
24576,
364,
24576,
364,
24576,
364,
25088,
364,
2791936,
2000,
161280,
1048,
169472,
1048,
5100032,
2612,
5506560,
1728,
8192,
380,
101888,
5804,
104960,
3332,
99328,
2872,
8704,
388,
35328,
368,
11244032,
5592,
11244032,
5592,
10870784,
5256,
10744320,
7916,
540160,
744,
408064,
720,
58368,
4604,
58368,
4604,
52736,
5008,
1554432,
4636,
2222080,
6712,
7168,
384,
6656,
400,
6656,
372,
272384,
3816,
235008,
2760,
8192,
368,
625664,
5764,
563200,
6720,
9728,
392,
7168,
404,
415744,
4688,
1320960,
6228,
7168,
376,
1756160,
4992,
1961472,
6552,
244736,
360,
2317824,
6480,
1916928,
4832,
6656,
400,
8192,
372,
7168,
372,
405504,
4152,
411136,
5580,
83456,
1784,
84992,
2280,
6943744,
6676,
8638976,
9976,
16384,
368,
366080,
5696,
294912,
6460,
366080,
5696,
8192,
380,
384000,
364,
622592,
8296,
564224,
7396,
359936,
4004,
700416,
6276,
7168,
372,
1648640,
6952,
1498624,
4620,
38912,
360,
6656,
396,
8255488,
5060,
7553024,
5084,
8255488,
5060,
8048640,
8684,
4229120,
7476,
4243456,
9716,
57344,
372,
483840,
4016,
484352,
4468,
20480,
364,
6948352,
8444,
5271552,
5800,
9728,
364,
12800,
376,
273920,
2708,
114176,
2116,
256512,
6212,
186368,
6428,
1016320,
3228,
379904,
7256,
508928,
6568,
470528,
5128,
468480,
3764,
13023232,
5424,
12046336,
7648,
13023232,
5424,
23040,
352,
1604096,
700,
625664,
708,
608256,
656,
722944,
3524,
1263104,
4232,
243200,
3632,
60928,
720,
1249280,
2216,
233472,
1212,
110080,
1104,
1939456,
2864,
289792,
1632,
241664,
2956,
535040,
3040,
25088,
688,
38400,
544,
24576,
1816,
10240,
600,
10752,
1516,
68096,
1056,
75776,
424,
723968,
2076,
1162240,
1976,
117248,
760,
117248,
3696,
140800,
892,
998400,
708,
1829888,
10068,
3081216,
10696,
1305600,
4820,
172032,
1524,
7168,
304,
578048,
2232,
505856,
2232,
7168,
288,
149504,
856,
38400,
464,
196608,
1268,
198656,
1268,
752128,
2188,
799232,
2188,
164864,
1912,
197120,
1912,
261632,
1552,
259584,
1552,
601600,
1372,
583680,
1372,
19968,
832,
19968,
832,
375296,
1556,
373248,
1556,
44032,
2192,
44032,
1696,
148992,
1272,
148992,
1272,
71168,
988,
71168,
988,
108032,
2516,
96768,
1772,
1223680,
3812,
1895936,
4020,
560128,
708,
392192,
656,
1083904,
2364,
294400,
1948,
446464,
1620,
451072,
1620,
1251840,
432,
611840,
5216,
47104,
620,
53248,
620,
501760,
3572,
200192,
3312,
2404352,
580,
1298944,
876,
783360,
772,
111104,
504,
491008,
748,
580096,
1784,
6215680,
696,
1199616,
1832,
1252864,
2000,
314880,
1076,
346112,
2008,
11637248,
2264,
1553920,
3336,
311296,
1268,
259584,
1652,
1376256,
2196,
1782784,
3148,
516096,
1248,
1872896,
3692,
377856,
316,
96256,
608,
62464,
804,
338432,
1500,
296960,
1512,
396800,
1652,
329216,
1424,
859648,
2168,
2535424,
3688,
1282560,
2192,
4596736,
5784,
2210816,
2420,
139776,
760,
4002304,
4776,
4817920,
3500,
26624,
352,
488448,
2188,
1078272,
5188,
808448,
5548,
76288,
1496,
50688,
688,
603648,
4856,
600064,
3928,
49152,
368,
491008,
3236,
487936,
3120,
144896,
2216,
1013248,
6708,
805888,
6448,
114688,
320,
104448,
328,
103936,
328,
112128,
320,
113152,
320,
114688,
320,
110592,
320,
113664,
320,
136192,
320,
122880,
320,
110592,
320,
111616,
324,
113152,
320,
1485824,
4928,
690688,
10996,
737280,
12228,
108032,
924,
101888,
740,
6156288,
4976,
6376448,
6200,
548352,
1492,
441344,
1168,
1564672,
8060,
1538560,
7084,
169472,
368,
521216,
4180,
133632,
2348,
134144,
2348,
1046016,
8576,
1351680,
4732,
1823232,
1872,
829440,
3820,
781312,
3720,
5850112,
10748,
4831232,
10408,
119296,
2012,
118784,
2012,
19456,
1652,
9411584,
320,
9260032,
320,
367616,
4564,
360960,
4372,
69632,
7804,
68608,
6724,
1329152,
7692,
1319424,
6936,
2029568,
3088,
115200,
4584,
139776,
5012,
2570752,
1576,
43520,
2792,
42496,
2792,
842752,
7988,
2548224,
11824,
5488128,
1760,
260096,
7020,
706048,
3612,
740352,
5040,
16384,
380,
235520,
2536,
264704,
2652,
4364288,
8256,
4176896,
6204,
16559104,
3220,
107008,
2052,
1103872,
3264,
1098752,
3056,
1177600,
3856,
1028608,
3404,
663552,
2212,
665088,
2396,
140288,
560,
90112,
2736,
141824,
1284,
6045184,
13232,
4726784,
12052,
176640,
4388,
626688,
3868,
621568,
3868,
1908224,
1820,
704512,
4976,
700928,
4584,
2672128,
7920,
2396160,
7872,
4750848,
4916,
4597248,
5928,
345600,
7092,
318976,
7204,
31744,
676,
32256,
676,
593920,
3824,
615936,
4292,
1656320,
9112,
1626112,
9324,
177152,
2020,
5765632,
5816,
56320,
2228,
61952,
2228,
1814528,
3612,
6656,
380,
16896,
456,
31744,
844,
3265024,
9080,
4318720,
11204,
192512,
784,
188416,
784,
627200,
11148,
681472,
11644,
1456640,
4156,
306176,
2064,
305152,
1908,
2410496,
9624,
3928576,
10028,
3820544,
9056,
5166080,
3392,
417792,
1840,
17920,
720,
17920,
720,
732672,
5100,
832512,
5676,
1738752,
4948,
1936896,
452,
1940480,
452,
68608,
3424,
68608,
3428,
211456,
4428,
203776,
4120,
467456,
3208,
423936,
4084,
701952,
5048,
474624,
5268,
2202112,
6132,
136704,
2432,
136704,
2432,
10240,
372,
35840,
824,
35840,
824,
365568,
5700,
365568,
6176,
155648,
2168,
156160,
2168,
24064,
1004,
35840,
1392,
337408,
4956,
341504,
4688,
77312,
5412,
79360,
6264,
2067456,
10360,
435712,
448,
1226240,
5600,
1228800,
5952,
16384,
324,
16896,
324,
16896,
324,
16896,
328,
15872,
332,
16896,
324,
17920,
324,
16384,
324,
16896,
324,
16896,
324,
15872,
332,
16896,
324,
18432,
324,
99328,
776,
2295296,
8784,
1970176,
7988,
175104,
7768,
183808,
8200,
23552,
1244,
364032,
4316,
955904,
6660,
1570304,
8804,
1491968,
8444,
725504,
528,
729088,
528,
172544,
928,
411648,
7312,
294400,
3532,
313344,
3416,
48640,
984,
48128,
984,
48128,
1760,
160768,
900,
160768,
900,
3207680,
2016,
155136,
4012,
312320,
4680,
287232,
2888,
288768,
2888,
898560,
4116,
894464,
4116,
15360,
364,
2923520,
6556,
103936,
2668,
115200,
4552,
93696,
920,
87552,
920,
384512,
1976,
374784,
1976,
122368,
2456,
4463616,
2788,
1618432,
1200,
69632,
1672,
18432,
328,
23040,
1268,
13824,
328,
80384,
2132,
363008,
5288,
363520,
5776,
47616,
2808,
206848,
1952,
214016,
2120,
1050624,
6560,
1114112,
7476,
1883648,
1708,
710144,
9276,
937472,
12088,
3946496,
10876,
3973632,
11776,
6656,
372,
56832,
2452,
2269696,
10188,
300544,
4128,
299520,
3920,
1971712,
7600,
1007104,
3108,
9728,
384,
7168,
364,
32256,
512,
28672,
512,
640000,
1636,
24064,
1976,
272896,
3096,
167936,
3860,
1135616,
4944,
96768,
1772,
1086464,
10516,
1362944,
7912,
62976,
656,
63488,
656,
63488,
656,
115712,
320,
115200,
320,
895488,
9612,
11264,
336,
271360,
2784,
394240,
9496,
53760,
784,
360448,
6288,
84480,
2488,
588288,
7708,
724480,
7052,
2811392,
12416,
2999296,
10636,
34304,
332,
38400,
336,
38400,
336,
1101312,
4140,
1100288,
4072,
13824,
332,
13312,
332,
13824,
332,
12800,
336,
11776,
372,
13312,
332,
13312,
332,
13312,
332,
15360,
332,
13312,
332,
13824,
332,
12800,
336,
13312,
332,
13312,
332,
125952,
3308,
128000,
3688,
431616,
2860,
442880,
3348,
2013184,
1400,
660992,
5236,
1506816,
5124,
707584,
3248,
706560,
3248,
1534976,
572,
1537536,
572,
2013696,
3344,
2031616,
3344,
57856,
2364,
205824,
1748,
739328,
1232,
741376,
1232,
67584,
1316,
1430528,
2832,
429568,
620,
455680,
620,
1007616,
5588,
1282048,
2624,
1265152,
2628,
4728320,
7148,
4441600,
6448,
4735488,
5152,
3809280,
5136,
4013568,
5852,
97280,
1332,
978432,
3564,
72704,
2504,
28672,
376,
2288640,
7400,
2407936,
7308,
901632,
8740,
972288,
9456,
1052160,
6812,
1026560,
6528,
1321472,
9780,
837120,
8460,
288768,
1108,
308736,
1108,
1195520,
1948,
1198080,
1948,
181248,
5368,
144384,
4900,
776704,
348,
157696,
5076,
60928,
444,
60928,
444,
209920,
5220,
246784,
756,
246272,
756,
604672,
8528,
24064,
564,
24064,
564,
47104,
556,
44032,
556,
321536,
2176,
332288,
2176,
204288,
2388,
204800,
2440,
107008,
912,
82432,
1448,
87552,
1996,
89088,
372,
922112,
4576,
508928,
1944,
528896,
1996,
5450240,
2776,
3680768,
15000,
3721728,
16696,
845312,
9152,
3270656,
4144,
1602048,
852,
1606656,
852,
36864,
564,
39936,
564,
214016,
3144,
576000,
4544,
580096,
4468,
627200,
6596,
1623040,
11196,
1107456,
9700,
2272256,
13208,
2289152,
13624,
1189376,
704,
1203712,
704,
470528,
6616,
451584,
5508,
143360,
1388,
143360,
1388,
55296,
2920,
55808,
2920,
82944,
2444,
82944,
2444,
2862592,
3168,
7680,
372,
68096,
1124,
67584,
1124,
1022976,
1240,
193024,
2660,
193536,
2660,
2833408,
1172,
195072,
1564,
512000,
2840,
131072,
3096,
313344,
2100,
89088,
2136,
86016,
2136,
1243648,
1840,
1280512,
1840,
778752,
1040,
10240,
388,
420864,
1660,
3430400,
5764,
1161216,
736,
2591232,
9460,
1972224,
8028,
583168,
6348,
468992,
6044,
553472,
4172,
551424,
3364,
1433600,
2712,
677376,
2552,
1743872,
5072,
1784320,
5540,
1024512,
2564,
1110016,
3572,
5252096,
11496,
5855744,
13532,
18944,
1000,
12800,
424,
149504,
512,
9216,
312,
84480,
1308,
20992,
992,
17920,
996,
36352,
1096,
15872,
996,
1478144,
1736,
83968,
432,
1655296,
2292,
1654272,
2200,
604160,
560,
27136,
2024,
43520,
656,
21504,
1316,
26624,
324,
412160,
2000,
163840,
724,
155136,
724,
1257472,
7584,
1146368,
3468,
18944,
324,
2123264,
5428,
2144768,
6080,
57344,
896,
80384,
1284,
1655808,
1172,
260608,
1280,
908800,
1356,
532480,
1196,
46592,
340,
61440,
300,
50176,
300,
49664,
300,
50176,
300,
49152,
300,
48640,
300,
49664,
300,
49664,
300,
48640,
300,
49664,
300,
42496,
340,
46080,
300,
50176,
300,
44032,
304,
50176,
300,
43008,
340,
48128,
300,
38400,
344,
49664,
300,
43008,
340,
44032,
340,
54272,
300,
50176,
300,
44032,
304,
48128,
300,
43520,
340,
50176,
300,
49152,
300,
44032,
304,
44032,
304,
61440,
300,
52736,
340,
54272,
300,
46080,
300,
49664,
300,
36864,
344,
17920,
308,
16896,
312,
17920,
308,
17408,
308,
17920,
308,
17920,
308,
17920,
308,
17920,
308,
16896,
312,
17408,
308,
17920,
308,
18432,
308,
17920,
308,
17408,
308,
18432,
308,
17920,
308,
18432,
308,
19456,
308,
20480,
308,
18432,
308,
16384,
312,
20480,
308,
16384,
312,
17920,
308,
18432,
308,
18432,
308,
17408,
308,
19456,
308,
721408,
1540,
20518056,
176,
25554944,
176,
17408,
1464,
17408,
1620,
78848,
296,
118784,
740,
2226688,
1360,
2097664,
1360,
2452992,
16100,
2390528,
15368,
19825152,
2436,
536064,
1252,
12187136,
1832,
26112,
2080,
26112,
2080,
26112,
2084,
26112,
2084,
25088,
1760,
25600,
2088,
25088,
2088,
25088,
1756,
25088,
2084,
25088,
2084,
23552,
2100,
23552,
2100,
23552,
2100,
23552,
2100,
168960,
1064,
171520,
1064,
168960,
1064,
6656,
372,
7168,
368,
12288,
704,
14848,
816,
3638784,
856,
3638272,
856,
3700736,
856,
11264,
484,
68096,
732,
68096,
732,
68096,
732,
118272,
924,
933376,
1352,
933376,
1352,
942080,
1352,
683008,
10132,
768512,
3312,
768000,
3312,
230912,
1488,
200704,
1876,
148480,
2048,
391680,
2204,
391680,
2204,
395264,
2204,
13061632,
620,
10336768,
620,
5653504,
2256,
6656,
348,
7680,
304,
1251840,
1980,
796672,
1984,
812544,
2324,
8192,
316,
8704,
304,
181248,
3020,
252928,
728,
176128,
2856,
9728,
356,
174080,
3208,
10752,
360,
1075712,
556,
9216,
360,
150016,
1260,
993792,
864,
27648,
300,
9489920,
900,
7684608,
900,
7966720,
1540,
2586624,
708,
1241600,
1180,
1172992,
1336,
1838592,
1196,
10906624,
2396,
11145728,
2580,
31232,
312,
6656,
360,
10752,
316,
10240,
316,
8192,
308,
8192,
308,
9216,
320,
8704,
312,
460800,
768,
1172992,
752,
247808,
1088,
1645568,
584,
8704,
308,
391680,
536,
769536,
1100,
243200,
8192,
304,
3034624,
1732,
8192,
296,
283648,
424,
8192,
316,
8704,
316,
6656,
352,
6656,
360,
19968,
316,
8192,
304,
9216,
304,
9216,
300,
8192,
296,
10752,
308,
26242048,
2764,
1180672,
764,
36864,
592,
522752,
536,
9728,
304,
128000,
420,
273920,
300,
26624,
316,
8704,
312,
1382912,
3572,
2391552,
3368,
1316864,
3200,
8192,
312,
8704,
304,
8192,
316,
636928,
1956,
251904,
752,
8192,
312,
35328,
1368,
811520,
1276,
306176,
644,
408576,
1240,
12288,
316,
102400,
504,
8192,
308,
2842112,
1100,
19456,
300,
32256,
332,
31744,
316,
9216,
324,
9728,
324,
14336,
308,
36352,
560,
9728,
320,
805888,
912,
221696,
932,
802304,
592,
19939840,
3948,
8192,
304,
8192,
316,
886784,
3224,
1123840,
3024,
8192,
316,
9216,
308,
8704,
300,
8704,
308,
719360,
924,
702464,
972,
13918208,
4076,
13918208,
3972,
257024,
432,
94720,
600,
1904640,
1580,
122880,
1372,
122368,
1252,
13563392,
1720,
4451328,
2520,
2031616,
572,
7577088,
748,
15872,
636,
10240,
308,
8704,
308,
9728,
308,
395776,
872,
8704,
304,
9728,
300,
240640,
2288,
1309184,
3864,
93696,
292,
93696,
292,
95232,
292,
635392,
572,
629248,
572,
629248,
572,
474624,
3184,
130560,
2420,
84480,
3088,
153088,
3444,
227840,
3116,
339456,
1420,
708096,
5904,
999936,
7792,
1446400,
2340,
1404928,
2340,
4345344,
14076,
4835328,
15864,
411136,
1556,
411648,
1556,
605696,
1076,
605184,
1024,
13824,
808,
183296,
1680,
185856,
1680,
347136,
1428,
141824,
340,
222720,
344,
721920,
2112,
4110336,
1348,
248832,
3588,
249344,
3680,
98816,
2896,
99328,
3012,
7753728,
852,
7665664,
852,
7665664,
852,
154112,
892,
155648,
892,
154112,
892,
457216,
1660,
133632,
2716,
137216,
888,
136704,
888,
136704,
888,
118272,
1832,
122368,
736,
135680,
736,
135680,
736,
63488,
300,
80384,
572,
81920,
572,
80384,
572,
104960,
3084,
166912,
2416,
14848,
3508,
18944,
3576,
267264,
300,
1542656,
1364,
765952,
2124,
23862784,
2048,
596480,
2444,
72704,
404,
72704,
404,
61440,
404,
129024,
504,
105984,
540,
108032,
1736,
28160,
320,
30720,
320,
26112,
328,
28160,
324,
28160,
320,
28160,
324,
29184,
320,
26112,
328,
28672,
320,
28672,
320,
26112,
328,
27136,
320,
28672,
320,
34304,
320,
28672,
320,
27648,
320,
27648,
320,
29184,
320,
26112,
328,
28672,
320,
27136,
320,
34304,
320,
29184,
320,
30720,
320,
28672,
320,
29184,
320,
28672,
320,
28672,
320,
2295296,
928,
2386432,
928,
561664,
588,
445952,
708,
577536,
588,
88064,
308,
88576,
308,
97792,
308,
81408,
308,
88064,
308,
77824,
312,
89088,
308,
97792,
308,
89088,
308,
83968,
308,
87040,
308,
84480,
308,
85504,
308,
81408,
308,
89600,
308,
110080,
308,
87552,
308,
110080,
308,
76288,
312,
84480,
308,
89600,
308,
83968,
308,
87552,
308,
88576,
308,
87040,
308,
76288,
312,
85504,
308,
77824,
312,
288768,
2980,
193536,
8280,
1096192,
1232,
1049088,
992,
1049088,
888,
4356608,
2160,
4356608,
2056,
2875904,
2568,
161792,
316,
127488,
324,
146432,
316,
148480,
316,
146432,
316,
144384,
316,
141312,
316,
148480,
316,
145920,
316,
129024,
324,
141312,
316,
182784,
316,
141824,
320,
142848,
316,
127488,
324,
146432,
316,
133632,
316,
161792,
316,
140288,
316,
144384,
316,
129024,
324,
133632,
316,
140288,
316,
141824,
320,
142848,
316,
145920,
316,
146432,
316,
182784,
316,
190464,
1048,
6645760,
2612,
7172608,
1728,
130048,
5804,
129536,
3332,
14091776,
5592,
13456896,
7916,
13585920,
5256,
671232,
744,
65536,
5008,
71168,
4604,
2784256,
6712,
339456,
3816,
709120,
6720,
1713152,
6228,
2441216,
6552,
2871296,
6480,
541184,
5580,
93696,
2280,
11535872,
9976,
473600,
5696,
386048,
6460,
800768,
8296,
953344,
6276,
2007040,
6952,
11059712,
5060,
10085888,
5084,
10799104,
8684,
5849600,
9716,
633344,
4468,
9155072,
8444,
327168,
2708,
235008,
6428,
1310720,
3228,
476160,
7256,
634368,
5128,
16174592,
5424,
15025152,
7648,
1963008,
700,
308224,
3632,
82944,
720,
1541632,
2216,
304640,
1212,
132608,
1104,
2478592,
2864,
383488,
1632,
302592,
2956,
29184,
688,
50176,
544,
30208,
1816,
12800,
600,
13312,
1516,
79872,
1056,
94720,
424,
148992,
760,
148992,
3696,
221696,
892,
225280,
1524,
8704,
304,
8192,
288,
188416,
856,
53760,
464,
1364480,
2364,
91648,
500,
1593856,
432,
2812416,
580,
135680,
504,
664064,
328,
626688,
748,
548864,
1120,
720896,
1784,
1544192,
1832,
1606144,
2000,
4137472,
3300,
7470592,
2380,
387584,
1076,
440320,
2008,
739840,
1608,
13512704,
2264,
1871360,
3336,
381440,
1268,
332288,
1652,
1762304,
2196,
214016,
1252,
2290176,
3148,
671232,
1248,
1467392,
2232,
80896,
608,
2438144,
3692,
489984,
316,
117760,
608,
437760,
1500,
377344,
1512,
175616,
760,
744448,
3928,
111616,
320,
112640,
324,
123904,
320,
113152,
320,
114176,
320,
114176,
320,
111616,
320,
116224,
320,
105472,
328,
114688,
320,
105472,
328,
137216,
320,
115712,
320,
882688,
12228,
155136,
2348,
144384,
2012,
23040,
1652,
89600,
7804,
161280,
5012,
754688,
3868,
34304,
676,
816128,
11644,
372736,
1908,
551424,
5268,
86016,
6264,
16896,
332,
17920,
324,
17920,
324,
18944,
324,
17920,
324,
18432,
324,
19968,
324,
17408,
332,
17920,
324,
17920,
324,
17920,
324,
17920,
324,
17920,
328,
241152,
8200,
919040,
528,
913408,
528,
371712,
2888,
1105920,
4116,
2182656,
1708,
1213440,
12088,
524288,
9496,
460800,
6288,
3119616,
12416,
47104,
336,
14848,
332,
16384,
332,
14848,
332,
13824,
336,
13824,
336,
14336,
332,
14336,
332,
14336,
332,
14848,
332,
14848,
332,
14848,
332,
14336,
332,
14336,
332,
913920,
3248,
2378240,
3344,
998912,
1232,
60416,
556,
233472,
2388,
4872192,
16696,
1746432,
852,
1432576,
704,
1444352,
704,
98304,
2444,
218112,
2660,
4998144,
716,
5272064,
716,
240128,
1564,
1604608,
1840,
1565696,
1840,
1565696,
1840,
1497088,
736,
22016,
1000,
14848,
424,
1531392,
2684,
188928,
512,
10240,
312,
97792,
1308,
24064,
992,
20480,
996,
44544,
1096,
18432,
996,
31744,
2024,
51712,
656,
25600,
1316,
35328,
324,
611328,
1444,
526848,
2000,
26112,
324,
7213568,
1568,
2115072,
1172,
316416,
1280,
646144,
1196,
1097216,
1356,
47104,
300,
50688,
300,
51200,
300,
51200,
300,
51200,
300,
45056,
304,
49664,
300,
47104,
300,
51200,
300,
49664,
300,
50688,
300,
62464,
300,
51200,
300,
50688,
300,
50688,
300,
49664,
300,
55296,
300,
45056,
304,
51200,
300,
45056,
304,
50688,
300,
55296,
300,
49664,
300,
51200,
300,
62464,
300,
51200,
300,
50688,
300,
45056,
304,
19456,
308,
19456,
308,
18944,
308,
19456,
308,
18944,
308,
18944,
308,
22016,
308,
22016,
308,
20992,
308,
18944,
308,
19456,
308,
18432,
308,
18944,
308,
19456,
308,
18944,
308,
19456,
308,
19456,
308,
17920,
312,
18944,
308,
18432,
308,
19456,
308,
17920,
312,
19456,
308,
17920,
312,
20992,
308,
19456,
308,
18944,
308,
17920,
312,
910848,
1540,
22551712,
176,
98816,
296,
139264,
740,
2679296,
1360,
2817024,
1360,
23356416,
2436,
650752,
1252,
14530048,
1832,
29696,
2080,
29184,
2084,
26624,
2100,
13312,
484,
73728,
732,
73728,
732,
74240,
732,
143872,
924,
303104,
1488,
12712448,
620,
7215616,
2256,
9216,
304,
1687552,
1980,
1063424,
1984,
1082880,
2324,
9728,
316,
10752,
304,
349696,
728,
1405440,
556,
169984,
1260,
1175552,
864,
31744,
300,
10212352,
900,
9414656,
1540,
3118080,
708,
1555456,
1180,
1391616,
1336,
2229760,
1196,
12569600,
2396,
35328,
312,
12288,
316,
12800,
316,
9216,
308,
9216,
308,
10240,
320,
10240,
312,
1125376,
1128,
547328,
768,
1424384,
752,
295424,
1088,
1996288,
584,
10752,
308,
486912,
536,
1000960,
1100,
334336,
9216,
304,
9728,
296,
338944,
424,
9216,
316,
10240,
316,
22528,
316,
9216,
304,
10752,
304,
10752,
300,
9216,
296,
12800,
308,
2764,
1433600,
764,
642048,
536,
314880,
300,
10240,
312,
1701888,
3200,
3041280,
3368,
1785344,
3572,
9216,
312,
10240,
304,
9728,
316,
867840,
1948,
300544,
752,
10240,
312,
41984,
1368,
932352,
1276,
345600,
644,
517120,
1240,
15360,
316,
111104,
504,
9216,
308,
3349504,
1100,
24576,
300,
36864,
332,
36352,
316,
10752,
324,
10752,
324,
16896,
308,
41472,
560,
11264,
320,
950272,
912,
260608,
932,
989184,
592,
24750080,
3948,
9216,
304,
9216,
316,
917504,
3224,
1547776,
3024,
9216,
316,
10752,
308,
10752,
300,
9728,
308,
872448,
924,
814592,
972,
16530944,
4076,
16530944,
3972,
290304,
432,
111616,
600,
2162688,
1580,
15892480,
1720,
5285888,
2520,
2543616,
572,
8998912,
748,
18944,
636,
10240,
308,
11776,
308,
11264,
308,
480256,
872,
10240,
304,
11264,
300,
267264,
2288,
108544,
292,
107008,
292,
107008,
292,
841728,
572,
847872,
572,
842240,
572,
219136,
304,
105984,
3088,
167424,
2420,
292352,
3116,
195584,
3444,
1740288,
2340,
1792000,
2340,
5146624,
1348,
176640,
892,
174592,
892,
174592,
892,
611840,
1660,
154112,
888,
155648,
888,
154112,
888,
197632,
1832,
301609,
338048,
64512,
135,
16384,
3170304,
1474560,
1474560,
16384,
3170304,
1024,
1024,
4096,
77728,
77728,
4669,
1224608,
1209752,
115616,
76696,
76704,
45472,
75680,
75680,
45472,
79264,
79264,
45984,
80288,
80288,
46488,
74144,
74144,
74136,
74144,
44960,
77728,
77728,
45984,
77728,
77728,
75168,
75168,
76704,
76704,
45472,
79264,
79264,
79256,
79264,
45984,
76704,
76696,
78752,
78752,
45984,
77216,
77216,
45472,
67488,
67488,
42912,
66976,
66976,
42912,
75680,
75680,
75680,
75672,
1056664,
75680,
75680,
45472,
77728,
77728,
45472,
77728,
77720,
45976,
76704,
76704,
45472,
76696,
76704,
45984,
54176,
76192,
76192,
77208,
77216,
44960,
77216,
77216,
76704,
76704,
77216,
77216,
76192,
76192,
44960,
75168,
75168,
45472,
77208,
77216,
4662,
6534,
63904,
63904,
42400,
63904,
63904,
42400,
3695719,
3878410,
1985867,
2373000,
174959,
177414,
143754,
145419,
162331,
164347,
154427,
156245,
44859,
85862,
86178,
49091,
77728,
395314,
1,
95648,
99744,
76704,
45472,
75672,
45472,
79264,
45984,
80288,
46496,
74144,
74144,
44960,
77728,
45984,
77720,
75160,
76696,
45472,
79264,
79264,
45984,
76696,
78752,
45976,
77208,
45472,
67488,
42904,
66976,
42912,
75672,
75680,
812440,
75672,
45472,
77728,
45472,
77728,
45984,
76704,
45472,
76696,
45984,
83352,
54176,
76184,
77208,
44960,
77216,
76704,
77216,
76192,
44952,
75168,
45472,
77216,
4662,
63904,
42400,
63904,
42392,
92576,
12704,
12192,
67584,
1477720,
7680,
7680,
962048,
958976,
6480,
34390,
136606,
136606,
156118,
556304,
556304,
556304,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
8774,
8774,
8774,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
136606,
556304,
556304,
556304,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
8774,
2560,
1024,
15360,
10752,
2560,
12288,
52736,
6656,
3072,
8582,
3,
16777270,
4606392,
70144,
808,
1233,
2222,
2090,
1120,
1317,
2038,
2574,
1544,
1215,
1277,
2053,
2088,
1560,
1815,
2177,
1483,
846,
1590,
2724,
1676,
2430,
1197,
1429,
1310,
1873,
1914,
13868,
8116,
5632,
11423,
78336,
6996,
5120,
1151,
1848,
1898,
1137,
1802,
2593,
4506,
2839,
410,
1093,
610,
848,
422,
12109,
5756,
2092,
5260,
3584,
5120,
2620,
80896,
4680,
3584,
229,
12800,
592,
1963,
1068,
1080,
701,
369,
711,
1485,
540,
613,
3148,
1390,
2432,
1488,
1282,
711,
531,
682,
468,
3728,
9216,
15256,
152064,
3280,
8192,
1219,
2204,
382,
1470,
734,
347,
2381,
370,
1069,
832,
1943,
11026,
1535,
714,
17920,
11776,
1141,
1029,
610,
384,
141662,
8016,
13824,
29602,
176128,
7380,
11776,
22718,
1636,
2557,
2804,
1756,
1223,
7091,
6746,
1323,
1139,
5106,
1825,
1624,
15593,
2462,
1932,
2563,
1575,
3258,
1591,
1921,
2920,
2226,
20053,
10426,
894,
4608,
7152,
78848,
814,
4096,
1050,
2221,
5322,
858,
779,
5310,
1861,
4670,
6144,
17152,
17920,
4106,
5632,
1200,
1200,
1192,
1204,
3594,
1206,
1192,
1131,
1131,
1123,
1135,
2313,
1137,
1123,
8508,
40057,
1648,
15872,
20463,
1062,
7168,
14398,
2560,
972,
6144,
1022,
918,
1398,
1737,
1445,
1185,
747,
1218,
1307,
712,
1331,
1022,
1277,
43151,
4245,
3898,
9216,
25149,
55808,
3496,
8192,
2351,
2054,
660,
248,
321,
3578,
1242,
1770,
2523,
2706,
2691,
2270,
1902,
1276,
476,
34272,
408,
4096,
3977,
2560,
396,
3584,
2214,
10719,
751,
427,
1150,
796,
4968,
37376,
63654,
79360,
4368,
28160,
10240,
27648,
5063,
2292,
712,
5480,
2769,
446,
218,
526,
3584,
2800,
44032,
504,
3584,
22016,
137,
252,
181,
17920,
5966,
164860,
489984,
14848,
5366,
951,
770,
9728,
12213,
23982,
11079,
567,
54687,
3011,
7220,
13312,
23306,
66560,
6424,
11264,
42483,
16946,
453,
49790,
5766,
3584,
2653,
85504,
5062,
3584,
2755,
311,
879,
1004,
717,
2301,
2009,
540,
1537,
836,
1365,
510,
488,
5025,
651,
11264,
2194,
1402,
1224,
1576,
868,
1592,
384,
1468,
1556,
1530,
1736,
16622,
75264,
9216,
1732,
1176,
1014,
1324,
760,
1240,
358,
1180,
1234,
1180,
1198,
27598,
781,
3102,
2192,
3130,
2135,
3091,
389,
3053,
3160,
3137,
3144,
3051,
1626,
1712,
1695,
1711,
1564,
1326,
772,
1492,
2048,
21039,
6740,
16384,
28156,
64512,
6210,
13312,
4208,
607,
4161,
2886,
1025,
555,
377,
1274,
663,
490,
2004,
1078,
1402,
4082,
1459,
2770,
1100,
663,
757,
654,
746,
1052,
760,
2089,
636,
1394,
640,
10752,
1314,
20594,
5772,
10752,
13349,
81408,
5012,
9216,
838,
2078,
548,
2218,
913,
945,
962,
1775,
909,
931,
1491,
47126,
4108,
6656,
12750,
78848,
3694,
6144,
2672,
3062,
94720,
949,
62743,
1154,
5120,
7501,
2560,
1064,
4608,
8826,
25358,
1396,
1332,
22025,
370,
7680,
11953,
12800,
330,
6656,
1408,
2046,
2749,
1158,
1051,
1078,
2763,
11286,
1226,
1220,
1221,
1604,
6656,
7379,
67584,
1464,
5632,
729,
1129,
645,
3054,
838,
394,
5120,
4621,
64512,
392,
4608,
592,
645,
471,
1248,
7168,
6613,
81920,
1188,
6144,
139,
1084,
1204,
1082,
645,
1928,
4192,
18369,
4979,
7110,
1390,
6656,
11429,
78848,
1310,
6144,
1120,
805,
5314,
2613,
1016,
1097,
591,
3211,
2542,
4273,
344,
402,
1584,
408,
1341,
414,
222486,
65,
74064,
22528,
22528,
133,
966656,
966656,
4176,
44632,
2560,
1024,
13824,
9728,
2560,
11264,
45568,
6656,
3072,
4848952,
4669136,
10976,
10976,
11520,
10976,
11488,
12288,
13248,
12800,
13200,
12720,
9280,
9504,
9856,
10064,
9792,
12304,
12256,
12336,
12384,
10976,
12288,
10224,
10608,
9472,
10240,
35808,
36672,
36656,
37296,
36672,
37472,
80896,
70000,
80896,
70000,
916684,
866652,
653588,
649244,
189124,
182112,
182096,
189264,
183276,
188976,
186728,
182208,
180452,
188932,
183412,
184020,
167620,
414772,
410464,
415776,
410988,
10992,
13552,
17760,
1330156,
1297136,
1094912,
1133324,
963568,
1056136,
1723352,
809512,
857200,
822568,
219524,
227628,
227684,
229412,
7216,
6352,
6672,
6672,
7232,
7216,
6336,
5168,
4320,
5200,
4640,
5168,
5168,
4304,
245572,
229444,
226704,
224248,
445180,
383780,
452056,
392232,
448368,
451860,
448788,
455620,
262288,
276064,
270728,
281096,
26432,
26544,
23440,
35888,
36032,
31760,
794216,
793256,
577340,
23408,
23440,
25024,
23440,
25024,
31712,
31776,
33344,
31808,
33360,
667232,
5600,
12896,
672300,
611212,
345208,
611556,
720012,
631992,
580168,
576004,
643852,
313856,
235848,
241972,
333636,
341072,
332036,
338776,
363200,
316440,
331128,
338140,
330012,
65,
57948,
36336,
36816,
36656,
876784,
879640,
9248,
8384,
8368,
8704,
9232,
9248,
8368,
6192,
5328,
5344,
5648,
5280,
6192,
5312,
84241,
140748,
154188,
1805996,
229912,
228504,
271648,
250668,
263504,
269048,
271832,
249924,
266156,
272460,
219644,
207484,
208428,
138196,
143448,
136176,
139324,
143684,
135328,
139800,
140268,
141608,
159464,
140808,
136228,
211780,
66660,
75340,
77384,
76356,
76352,
76084,
75832,
76104,
74244,
74476,
69916,
68464,
71600,
82744,
75980,
70896,
26040,
26489,
29779,
43318,
11056,
12400,
10032,
573308,
40264,
5680,
6512,
214808,
12896,
14432,
10656,
304568,
41584,
38480,
6528,
7728,
327420,
393764,
386264,
117092,
327516,
13457192,
12598388,
5083240,
27652,
9533888,
9749256,
840752,
291356,
271860,
8704,
290236,
9214528,
21402208,
14439388,
12875900,
23648676,
16246936,
12004804,
301876,
78272,
272840,
304076,
309956,
306076,
298668,
295152,
1422772,
1377980,
1462828,
75160,
69316,
206612,
472216,
419976,
336672,
413712,
94412,
99464,
74520,
76972,
74200,
76300,
78136,
76184,
78756,
74944,
73820,
76080,
77632,
73660,
77284,
73352,
13312,
11056,
12384,
17760,
12288,
202428,
173700,
173080,
596924,
581228,
925736,
914092,
509768,
878372,
816540,
523052,
324448,
351908,
1690384,
1383320,
441372,
941172,
439396,
448756,
2454648,
62944,
65392,
59024,
89456,
95488,
84080,
57936,
59952,
60752,
63296,
61024,
81728,
85360,
86256,
90736,
84848,
18214352,
17064020,
944436,
932572,
997912,
987736,
25216,
32512,
24672,
20448,
37952,
19904,
26112,
24784,
28912,
24832,
29200,
21504,
19600,
23120,
19760,
23008,
69232,
73216,
65456,
72192,
95840,
67328,
90336,
102400,
64656,
66464,
65328,
68848,
64400,
89856,
92032,
90288,
98256,
89456,
18087936,
5680,
12896,
257052,
71000,
839004,
768964,
68260,
60480,
2576,
1110940,
1093272,
826840,
884748,
254448,
244240,
225940,
252300,
243284,
211316,
223308,
163324,
166940,
163128,
165288,
164360,
157596,
161736,
160860,
166668,
155584,
159576,
158924,
229848,
5168,
5168,
5232,
6160,
5120,
5552,
5184,
5184,
5200,
5184,
6128,
5184,
7232,
6272,
6304,
6272,
5952,
6528,
5376,
7168,
5360,
5376,
6112,
5600,
6112,
5168,
7104,
7648,
6656,
8704,
7280,
6608,
7008,
6912,
6912,
122784,
84776,
14542540,
13827216,
13760848,
13697012,
3869801,
2964,
1555440,
12958,
16,
6686208,
3592,
3936,
358328,
3912,
788768,
354016,
3944,
25675936,
3368788,
1000444,
2475780,
2470724,
2944004,
93962,
398424,
696279,
278216,
278216,
95294,
24285,
76827,
75202,
79881,
91664,
73901,
63945,
94637,
47381,
76837,
75209,
78636,
87270,
73848,
63938,
123207,
170846,
163655,
167149,
190382,
153710,
181388,
192658,
161077,
155948,
173135,
167996,
175365,
175142,
193292,
176173,
208311,
184305,
152003,
166960,
191011,
172588,
179346,
181738,
193635,
172483,
173778,
196545,
168973,
133549,
137150,
133821,
135595,
137643,
133803,
135918,
138784,
134220,
134548,
133996,
136312,
134303,
140091,
139146,
134894,
142998,
136681,
134007,
136206,
137845,
134156,
135178,
137714,
139707,
138470,
136571,
141663,
136969,
820959,
837651,
841715,
852003,
858806,
815642,
836702,
862614,
816732,
829627,
824255,
838193,
831598,
855467,
849236,
832468,
890837,
856899,
821074,
813929,
851738,
822220,
834980,
854788,
859328,
857391,
831954,
870512,
851084,
60199,
54388,
55658,
55914,
55229,
54883,
55844,
56461,
55369,
55528,
55209,
55065,
55780,
54999,
55374,
55329,
58244,
55876,
55263,
54598,
55896,
55350,
55013,
55676,
55948,
55812,
57234,
56767,
55447,
51921,
50525,
50600,
51372,
50556,
50003,
50750,
51665,
52094,
50200,
50176,
50753,
50648,
50991,
51055,
50490,
51838,
50686,
50748,
49804,
50825,
50376,
50348,
50585,
50627,
50823,
52845,
50831,
50655,
80529,
1180712,
1177049,
1166899,
1170755,
1174183,
1156877,
1163286,
1172109,
1175470,
1161012,
1156568,
1165993,
1158947,
1176781,
1181107,
1161986,
1193441,
1171979,
1157102,
1168877,
1180549,
1160990,
1163072,
1172432,
1180765,
1171788,
1165080,
1184896,
1166673,
234710,
68593,
17013,
29907,
43386,
230849,
219577,
60300,
15070,
29907,
39939,
1586,
77849,
19410,
610,
32573,
1584,
2409,
41256,
10954,
610,
19250,
975360,
18432,
286208,
9728,
2546176,
103936,
2139136,
65536,
257024,
7680,
321,
26605,
8686,
8762,
30720,
7702016,
199168,
210432,
516,
4,
117416,
116608,
1462,
20071,
1392,
294680,
9766,
162,
22020,
1527,
82,
2560,
2560,
147456,
812544,
8017408,
7378944,
40310,
40310,
33170,
33170,
177806,
177806,
2589632,
7390720,
46287,
48350,
1618106,
912766,
1331040,
528404,
1322024,
404904,
893472,
377968,
429472,
7393280,
188278,
3692612,
16629137,
1523154,
1562816,
127488,
319,
1346,
8685,
5632,
5120,
162,
167,
765,
977,
565,
766,
368,
1136,
883,
1064,
417,
354,
354,
354,
529,
612,
791,
2085,
406,
406,
542,
595,
747,
1881,
354,
354,
354,
529,
529,
612,
612,
791,
791,
2085,
2085,
642,
1232,
2946,
2946,
4048,
4901,
8060,
22343,
2851,
2851,
3886,
4751,
7782,
21801,
2946,
2946,
4048,
4901,
8060,
22343,
569,
375,
977,
977,
1252,
1826,
2338,
5709,
1010,
1010,
1270,
1775,
2227,
5481,
977,
977,
1252,
1826,
2338,
5709,
893,
569,
569,
689,
911,
1250,
2924,
526,
526,
736,
864,
1199,
2811,
569,
569,
689,
911,
1250,
2924,
741,
175,
184,
583,
1185,
508,
496,
434,
857,
654,
835,
353,
547,
1357,
324,
618,
502,
4,
1648,
1624,
8000,
861,
1011,
991,
1005,
1058,
945,
963,
939,
945,
945,
905,
947,
914,
930,
877,
897,
884,
912,
901,
897,
906,
900,
885,
891,
906,
906,
866,
872,
928,
904,
886,
931,
881,
857,
897,
877,
904,
889,
901,
885,
839,
866,
892,
908,
920,
893,
901,
933,
874,
880,
872,
872,
896,
877,
873,
869,
868,
826,
820,
823,
814,
817,
802,
846,
1009,
1003,
988,
823,
829,
808,
814,
796,
805,
832,
838,
862,
838,
829,
803,
799,
808,
827,
823,
823,
862,
850,
838,
841,
847,
829,
838,
814,
799,
808,
790,
814,
835,
817,
835,
823,
844,
838,
814,
817,
808,
811,
832,
826,
826,
829,
823,
844,
823,
814,
829,
832,
841,
855,
832,
823,
850,
814,
820,
823,
826,
829,
829,
876,
817,
835,
814,
817,
826,
847,
826,
826,
820,
835,
796,
793,
859,
799,
796,
864,
832,
832,
787,
808,
885,
891,
882,
878,
1002,
1002,
1017,
1005,
1003,
1015,
1037,
1004,
1036,
1038,
1011,
1077,
1068,
1053,
1005,
1001,
1033,
1038,
1050,
1035,
1006,
1048,
1057,
1057,
1050,
1038,
1017,
1017,
1020,
1018,
948,
1035,
1037,
1033,
981,
972,
1036,
1042,
1054,
1018,
964,
998,
991,
976,
982,
976,
970,
979,
976,
1024,
952,
955,
1018,
973,
958,
1007,
921,
1050,
961,
975,
981,
954,
958,
1000,
979,
981,
964,
973,
970,
964,
968,
1010,
1012,
1027,
1046,
1012,
1004,
977,
967,
976,
999,
1005,
1018,
1012,
982,
974,
972,
1001,
998,
998,
968,
971,
1022,
1016,
995,
977,
1002,
1008,
1026,
1006,
1011,
1036,
990,
999,
1006,
966,
1020,
975,
929,
962,
953,
1016,
1048,
1000,
1032,
1000,
1032,
1008,
1040,
982,
991,
988,
982,
983,
998,
1016,
979,
976,
987,
1013,
1025,
1009,
1003,
974,
951,
978,
969,
954,
975,
975,
969,
969,
956,
972,
974,
1001,
1001,
1017,
996,
1000,
1024,
1009,
987,
984,
993,
1023,
1053,
986,
1011,
1030,
1011,
1030,
991,
991,
975,
1009,
987,
954,
978,
969,
966,
949,
982,
974,
956,
989,
989,
982,
956,
956,
941,
956,
986,
974,
920,
980,
1056,
1056,
1052,
1009,
1014,
1020,
1008,
999,
998,
1020,
984,
932,
929,
953,
967,
920,
932,
920,
940,
973,
962,
1022,
1008,
944,
957,
1045,
953,
952,
943,
952,
973,
952,
962,
938,
981,
984,
984,
998,
975,
818,
470294,
1202,
1181,
1045,
1135,
1019,
981,
1153,
1019,
962,
851,
961,
1206,
1011,
913,
830,
1164,
865,
1232,
898,
991,
970,
1206,
1168,
1169,
1214,
982,
937,
924,
973,
937,
956,
946,
1030,
1154,
1048,
978,
1011,
1074,
837,
1116,
1020,
1000,
969,
1116,
991,
1159,
1036,
1014,
912,
1092,
1067,
988,
998,
1055,
881,
866,
1019,
1089,
966,
1024,
1118,
1114,
923,
925,
959,
961,
1000,
1206,
821,
991,
824,
929,
979,
1061,
1156,
1131,
944,
1183,
995,
1105,
1022,
983,
1020,
920,
1039,
954,
1048,
1042,
1118,
974,
1243,
1016,
930,
1030,
1068,
1130,
938,
981,
1149,
1074,
959,
956,
919,
941,
950,
1006,
1020,
913,
1033,
867,
843,
1149,
957,
1068,
964,
941,
914,
999,
937,
837,
1000,
1089,
963,
998,
1022,
1149,
832,
855,
980,
807,
1062,
938,
947,
979,
1022,
992,
1030,
998,
1014,
961,
940,
957,
827,
1153,
866,
1114,
921,
1012,
944,
1151,
887,
1060,
937,
912,
1077,
923,
1037,
1071,
1192,
986,
985,
968,
994,
1004,
824,
1176,
990,
1040,
947,
1062,
1232,
938,
1148,
1032,
911,
895,
743,
774,
846,
5877760,
95104,
504,
1043968,
53760,
36,
36,
829,
54230,
45,
45,
811,
52828,
42,
42,
1055,
166446,
65,
65,
444,
98700,
53,
53,
444,
98752,
33,
33,
381,
1288,
36,
36,
6067,
1517020,
11222,
20076,
4034,
10124,
4510,
4150,
10500,
3816,
7532,
2500,
7060,
3124,
7660,
2560,
7612,
23024,
28740,
9932,
14572,
6256,
12140,
124744,
46912,
64756,
31,
7177,
995542,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
819516,
6537,
819516,
30,
7177,
997498,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
819522,
6537,
819522,
36,
318,
42996,
357050,
2242,
6108,
7442,
4242,
7500,
3228,
3686,
52958,
3754,
7356,
8924,
2766,
2846,
2770,
1479,
2558,
89110,
6336,
10140,
8106,
12492,
17880,
5428,
5946,
4008,
1648,
5276,
3424,
8372,
6578,
10812,
8294,
11572,
3202,
7772,
37872,
15974,
16396,
28690,
53252,
32834,
20812,
4288,
10052,
4746,
7788,
12934,
19588,
1154,
1012,
2764,
7052,
1008,
690,
3972,
1060,
1022,
1128,
692,
3964,
2100,
1062,
2306,
6252,
1416,
962,
972,
1056,
4500,
1264,
2870,
7748,
1992,
1158,
4676,
1130,
4612,
1164,
4684,
1136,
4636,
1158,
4668,
1158,
4700,
1154,
4660,
1136,
4644,
1104,
4564,
1148,
4652,
1152,
4692,
1190,
4764,
1156,
4692,
1136,
4628,
1162,
4692,
1132,
4620,
1154,
4684,
1128,
4668,
1150,
4660,
3140,
1202,
2452,
5604,
5776,
1546,
1406,
1120,
700,
3844,
680,
4012,
1116,
4532,
7646,
1316,
1014,
1128,
2570,
6876,
1472,
960,
1032,
1044,
2572,
1178,
1080,
4548,
1180,
1344,
1010,
1078,
1114,
1240,
1806,
5380,
1680,
5396,
666,
3940,
1006,
2326,
6324,
1144,
4644,
1356,
1010,
1028,
6106,
974,
1126,
1478,
1058,
4500,
2694,
6996,
2652,
6972,
1162,
3266,
1176,
1108,
1842,
1084,
1208,
1112,
4580,
1016,
1182,
7232,
12444,
31632,
29344,
29344,
8156,
7756,
12784,
17044,
3426,
7668,
3952,
584,
39622,
78064,
2826,
7496,
6270,
8332,
110927,
3108,
8700,
975476,
500344,
975476,
35700,
2230,
6460,
5792,
10036,
700038,
5324,
7326,
4418,
8124,
2058,
5276,
3698,
2314,
6044,
10572,
105198,
103572,
68300,
2554,
7484,
4156,
10156,
7744,
4148,
8660,
5154,
9460,
3958,
9700,
70670,
34596,
4572,
3716,
9768,
20532,
1786,
6036,
26824,
31580,
3724,
7516,
4070,
8156,
11662,
12916,
11968,
14052,
13876,
18172,
15402,
22036,
9956,
12724,
10380,
13964,
8122,
12612,
12616,
16692,
4166,
27662,
73928,
153148,
34544,
10586,
34544,
34544,
10586,
34544,
34544,
10586,
34544,
34544,
34544,
34544,
34544,
34544,
34544,
34544,
34544,
229,
10586,
229,
4134,
7628,
4010,
7148,
60840,
7160,
11332,
6450,
9740,
84218,
118548,
68062,
134140,
26432,
9832,
18844,
2864,
6574,
12300,
17868,
27084,
22396,
27068,
5378,
9844,
145968,
156116,
4588,
8668,
4754,
93080,
107772,
65972,
13482,
80568,
171806,
5730,
27262,
19720,
120372,
28978,
8198,
15558,
49800,
14466,
105144,
20416,
25830,
88896,
24836,
55742,
63380,
8450,
29398,
25790,
12086,
137326,
26092,
56996,
7526,
12050,
243776,
56662,
11166,
23974,
118782,
111928,
107186,
45598,
26536,
19476,
18622,
266006,
86868,
35708,
152552,
19952,
31048,
82068,
22124,
89728,
47188,
98330,
89444,
98810,
104296,
1574382,
94068,
152526,
205386,
80412,
216596,
126054,
38968,
5028,
66028,
100404,
144846,
40530,
35686,
137064,
88352,
28582,
8938,
11452,
20706,
46182,
44850,
19038,
10228,
88788,
72772,
16954,
143864,
97254,
254856,
10430,
16894,
832958,
24040,
5732,
106688,
23304,
9538,
9602,
8244,
8322,
76410,
23248,
12244,
24678,
24328,
8714,
16054,
17254,
8372,
29516,
142858,
9088,
61202,
38408,
111000,
21148,
6480,
75332,
15414,
103226,
24976,
81708,
85148,
158182,
53316,
27596,
13248,
98472,
10102,
43146,
58978,
230698,
55956,
91872,
32492,
36630,
26488,
36130,
19834,
25730,
18860,
71780,
44666,
27150,
6068,
23790,
61154,
99100,
6860,
4858,
31168,
242920,
75430,
216056,
103516,
157736,
207412,
13974,
15700,
8942,
11804,
318550,
364956,
3200,
8972,
2388,
4126,
5912,
12516,
86462,
76452,
9070,
790436,
1176964,
61436,
2190,
3682,
3864,
4182,
3864,
768,
49,
49,
49,
705,
131728,
47,
47,
705,
135800,
43838,
5884,
11804,
60908,
69412,
58210,
98652,
31186,
37644,
3452,
7972,
26808,
38398,
3852,
7828,
1044,
7892,
13524,
33988,
3386,
2208,
25160,
2982,
2712,
6404,
176484,
125868,
51026,
62572,
29228,
40564,
12568,
22628,
19112,
68176,
60244,
30092,
40810,
248286,
551212,
5276,
6980,
30894,
31930,
434302,
98426,
71644,
2656,
10542,
13516,
723666,
83830,
99418,
97762,
329418,
273392,
261692,
37444,
3174,
4370,
13582,
45834,
101928,
19080,
430184,
82502,
13446,
2140,
6166,
87594,
93928,
2460,
214348,
2154,
83726,
35016,
4186,
4794,
8618,
307862,
285242,
64914,
24424,
23620,
5292,
8186,
11886,
33690,
268356,
110094,
40642,
230496,
2380,
5136,
6788,
95530,
8470,
13622,
15068,
33734,
6066,
116538,
34764,
6694,
7100,
3798,
8272,
3442,
398670,
136934,
319876,
28282,
991868,
15784,
1014176,
243844,
526428,
45578,
3010,
7756,
15134,
2678,
18102,
8926,
10148,
2818,
8236,
20190,
20596,
6955,
1046848,
369,
1046848,
369,
12338,
3113,
91662,
471312,
76048,
15032,
3130,
128374,
530416,
75288,
16920,
3096,
139821,
486344,
75288,
125728,
89872,
89144,
90608,
404752,
1028,
19667,
28511,
65288,
11194,
155192,
315888,
36472,
316736,
13916,
3066,
126310,
401376,
76048,
12420,
3066,
115628,
400656,
75288,
125728,
89144,
89872,
404072,
212,
121440,
2810,
60778,
155128,
36472,
54392,
35424,
9033,
6668,
117460,
187392,
36472,
61632,
404072,
121440,
10476,
3114,
87177,
495376,
73480,
13106,
3130,
122503,
501216,
73512,
19440,
2716,
191560,
302464,
11126,
3093,
89526,
497424,
73480,
13024,
3097,
154115,
498672,
76784,
16988,
3097,
190046,
499184,
76784,
9802,
3097,
42986,
499184,
76784,
11446,
3315,
140902,
302296,
36472,
125728,
90608,
91936,
101216,
89888,
90608,
89888,
89144,
98496,
60608,
404752,
1081,
9697,
2777,
20667,
138512,
64168,
14848,
3049,
132659,
411120,
89072,
36472,
92144,
405488,
256,
19667,
28511,
65288,
9311,
166032,
36472,
316736,
12590,
3050,
87645,
271024,
68264,
14850,
3050,
153989,
370968,
73512,
11362,
3050,
117277,
370968,
73512,
36472,
125728,
92864,
91936,
92448,
89872,
79720,
404072,
256,
9732,
3046,
84534,
357856,
76232,
9782,
3075,
20816,
131584,
73480,
5174,
2939,
12442,
3114,
92354,
468752,
73480,
15038,
3130,
128291,
529392,
73512,
17742,
3097,
176198,
523248,
76784,
11729,
3097,
44389,
522736,
76784,
36472,
125728,
90608,
91936,
89888,
90608,
80672,
404752,
1083,
11897,
2743,
22579,
131344,
73480,
16770,
3049,
144852,
442864,
89072,
36472,
92144,
80880,
405488,
260,
12717,
3043,
56912,
318944,
89072,
19667,
28511,
2236928,
2239488,
48464,
65288,
11361,
156656,
10997,
10224,
8796,
12249,
8148,
9369,
8944,
10400,
494960,
503664,
473968,
10758,
12146,
483184,
163696,
10046,
10040,
165232,
8657,
9915,
71952,
279024,
60752,
316400,
36472,
316736,
1721576,
16797,
3050,
162256,
352024,
73512,
13277,
3050,
126428,
352024,
73512,
36472,
125728,
91936,
92448,
89872,
80672,
404072,
268,
11656,
3046,
91773,
388040,
76232,
11904,
3075,
22837,
133392,
73480,
121440,
12423,
3114,
92426,
468752,
73480,
15026,
3130,
128070,
529392,
73512,
19440,
2716,
191560,
302464,
13073,
3093,
94851,
469264,
73480,
14946,
3097,
163489,
470512,
76784,
18910,
3097,
199105,
523248,
76784,
11725,
3097,
45051,
522736,
76784,
11446,
3315,
140902,
302296,
36472,
125728,
90608,
91936,
101216,
89888,
90608]
| Nimrod | 0 | JohnAD/Nim | tests/fragmentation/data.nim | [
"MIT"
] |
# Parameters
param T := read "retailer.dat" as "1n" use 1 comment "#";
set Ts := {1..T};
param piV := read "retailer.dat" as "3n" use 1 comment "#";
set Ns := {read "retailer.dat" as "<n+>" skip 1 use 1 comment "#"};
param N := card(Ns);
param pMin[Ns*Ts] := read "retailer.dat" as "<1n,2n> 3n" skip 2 use (N*T) comment "#";
param pMax[Ns*Ts] := read "retailer.dat" as "<1n,2n> 4n" skip 2 use (N*T) comment "#";
param V[Ns] := read "retailer.dat" as "<1n> 2n" skip (2+N*T) use N comment "#";
param EPS := read "prices.csv" as "2n" use 1 comment "#";
param pii := read "prices.csv" as "3n" use 1 comment "#";
param dt := read "prices.csv" as "4n" use 1 comment "#";
param piE[Ts] := read "prices.csv" as "<1n> 2n" skip 1 use T comment "#";
param piIP[Ts] := read "prices.csv" as "<1n> 3n" skip 1 use T comment "#";
param piIM[Ts] := read "prices.csv" as "<1n> 4n" skip 1 use T comment "#";
param alpha[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 3n" skip 2 use (N*T) comment "#";
param beta[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 4n" skip 2 use (N*T) comment "#";
param d[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 5n" skip 2 use (N*T) comment "#";
param D[Ns*Ts] := read "flexObligations.dat" as "<1n,2n> 6n" skip 2 use (N*T) comment "#";
param k[Ns] := read "flexObligations.dat" as "<1n> 2n" skip 2+(N*T) use N comment "#";
param K[Ns] := read "flexObligations.dat" as "<1n> 3n" skip 2+(N*T) use N comment "#";
param l[Ns] := read "flexObligations.dat" as "<1n> 4n" skip 2+(N*T) use N comment "#";
param L[Ns] := read "flexObligations.dat" as "<1n> 5n" skip 2+(N*T) use N comment "#";
param piFP[Ns*Ts] := read "flexIndicators.dat" as "<1n,2n> 3n" skip 2 use (N*T) comment "#";
param piFM[Ns*Ts] := read "flexIndicators.dat" as "<1n,2n> 4n" skip 2 use (N*T) comment "#";
# Variables
var Pa[Ts] >= -infinity;
var P[Ts] >= -infinity;
var i[<n,t> in Ns*Ts] >= -infinity;
var iP[<n,t> in Ns*Ts] >= 0;
var iM[<n,t> in Ns*Ts] >= 0;
var id[Ns*Ts] >= 0;
var iD[Ns*Ts] >= 0;
var I[Ts] >= -infinity;
var IP[Ts] >=0;
var IM[Ts] >=0;
var fP[Ns*Ts] >=0;
var fM[Ns*Ts] >=0;
var p[<n,t> in Ns*Ts] >= max(pMin[n,t],k[n]) <= min(pMax[n,t],K[n]);
var pP[<n,t> in Ns*Ts] >= max(pMin[n,t],k[n]) <= min(pMax[n,t],K[n]);
var pM[<n,t> in Ns*Ts] >= max(pMin[n,t],k[n]) <= min(pMax[n,t],K[n]);
var pa[<n,t> in Ns*Ts] >= k[n] <= K[n];
var obligations[Ns] >= 0;
# Objective
maximize profit:
sum <t> in Ts : (
-piV*P[t]+piE[t]*Pa[t]
-piIP[t]*IP[t]-piIM[t]*IM[t]
+sum <n> in Ns: (
piFP[n,t]*fP[n,t]
+piFM[n,t]*fM[n,t]
- EPS*(iP[n,t]+iM[n,t])
- pii*(id[n,t]+iD[n,t])
)
);
# Constraints
subto TotalProductionAnnounced:
forall <t> in Ts :
Pa[t] == sum <n> in Ns: pa[n,t];
subto TotalProduction:
forall <t> in Ts :
P[t] == sum <n> in Ns: p[n,t];
subto TotalImbalance:
forall <t> in Ts :
I[t] == P[t]-Pa[t];
subto TotalUpwardImbalance:
forall <t> in Ts :
IP[t] >= I[t];
subto TotalDownwardImbalance:
forall <t> in Ts :
IM[t] >= -I[t];
subto FlexPdef:
forall <n,t> in Ns*Ts:
fP[n,t]<=pP[n,t]-pa[n,t];
subto FlexMdef:
forall <n,t> in Ns*Ts:
fM[n,t]<=pa[n,t]-pM[n,t];
subto DownwardFlexObligations:
forall <n,t> in Ns*Ts:
fM[n,t] >= obligations[n];
subto UpwardFlexObligations:
forall <n,t> in Ns*Ts:
fP[n,t] >= obligations[n];
subto ObligationFromMax:
forall <n,t> in Ns*Ts:
obligations[n] >= max(alpha[n,t],beta[n,t])*(pMax[n,t]-pMin[n,t]);
subto ObligationFromMin:
forall <n,t> in Ns*Ts:
obligations[n] >= max(alpha[n,t],beta[n,t])*(pMax[n,t]-pMin[n,t]);
subto ObligationFroml:
forall <n,t> in Ns*Ts:
obligations[n] >= l[n] - pa[n,t];
subto ObligationFromL:
forall <n,t> in Ns*Ts:
obligations[n] >= pa[n,t] - L[n];
subto flexAccesL:
forall <n,t> in Ns*Ts:
pM[n,t] <= L[n];
subto flexAccesl:
forall <n,t> in Ns*Ts:
l[n] <= pP[n,t];
subto NodeBalance:
forall <n,t> in Ns*Ts:
pa[n,t]+i[n,t]==p[n,t];
subto UpwardNodeImbalance:
forall <n,t> in Ns*Ts:
iP[n,t] >= i[n,t];
subto DownwardNodeImbalance:
forall <n,t> in Ns*Ts:
iM[n,t] >= -i[n,t];
subto TotalConso:
forall <n> in Ns:
V[n] == sum <t> in Ts: p[n,t]*dt;
subto DynamicDownwardRestriction:
forall <n,t> in Ns*Ts:
id[n,t] >= d[n,t]-p[n,t];
subto DynamicUpwardRestriction:
forall <n,t> in Ns*Ts:
iD[n,t] >= p[n,t]-D[n,t];
subto DynamicDownwardRestrictionM:
forall <n,t> in Ns*Ts:
id[n,t] >= d[n,t]-pM[n,t];
subto DynamicUpwardRestrictionP:
forall <n,t> in Ns*Ts:
iD[n,t] >= pP[n,t]-D[n,t];
| Zimpl | 5 | sebMathieu/dsima | simulator/models/retailer-baseline.zpl | [
"BSD-3-Clause"
] |
<!doctype html>
<html>
<head>
<script type="text/javascript" src="../../test.js"></script>
<style>
div {
display: inline-block;
width: 100px;
height: 100px;
border: 15px solid blue;
padding: 10px;
margin: 5px;
background-image: url(../../assets/image.jpg);
}
</style>
</head>
<body>
<div style="background-repeat: no-repeat; background-origin: content-box"></div>
<div style="background-repeat: no-repeat; background-origin: padding-box"></div>
<div style="background-repeat: no-repeat; background-origin: border-box"></div>
<div style="background-repeat: no-repeat; background-origin: content-box; background-size: cover"></div>
<div style="background-repeat: no-repeat; background-origin: padding-box; background-size: cover"></div>
<div style="background-repeat: no-repeat; background-origin: border-box; background-size: cover"></div>
<div style="background-repeat: no-repeat; background-origin: content-box; background-size: contain"></div>
<div style="background-repeat: no-repeat; background-origin: padding-box; background-size: contain"></div>
<div style="background-repeat: no-repeat; background-origin: border-box; background-size: contain"></div>
<div style="background-repeat: no-repeat; background-origin: content-box; background-position: 15px 20px"></div>
<div style="background-repeat: no-repeat; background-origin: padding-box; background-position: 15px 20px"></div>
<div style="background-repeat: no-repeat; background-origin: border-box; background-position: 15px 20px"></div>
<div style="background-repeat: repeat; background-origin: content-box"></div>
<div style="background-repeat: repeat; background-origin: padding-box"></div>
<div style="background-repeat: repeat; background-origin: border-box"></div>
</body>
</html>
| HTML | 3 | abhijit-paul/html2canvas | tests/reftests/background/origin.html | [
"MIT"
] |
"""Tests for the sentry integration."""
| Python | 0 | domwillcode/home-assistant | tests/components/sentry/__init__.py | [
"Apache-2.0"
] |
typeMismatch=Field {0} did not have correct type
age=Age
| INI | 0 | nicchagil/spring-framework | spring-context/src/test/resources/org/springframework/validation/messages2.properties | [
"Apache-2.0"
] |
#! /bin/sh -e
dir=
if [ $# -eq 3 -a "$2" = '-d' ]; then
pdir="-d $3"
dir="$3/"
elif [ $# -ne 1 ]; then
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
fi
case "$1" in
-patch)
patch $pdir -f --no-backup-if-mismatch -p0 < $0
;;
-unpatch)
patch $pdir -f --no-backup-if-mismatch -R -p0 < $0
;;
*)
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
exit 1
esac
exit 0
# DP: Traditional GNU systems don't have a /usr directory. However, Debian
# DP: systems do, and we support both having a /usr -> . symlink, and having a
# DP: /usr directory like the other ports. So this patch should NOT go
# DP: upstream.
# DP:
# DP: Define MAXPATHLEN and PATH_MAX.
--- gcc/config/gnu.h.orig 2004-07-05 21:49:20.000000000 +0200
+++ gcc/config/gnu.h 2006-12-10 12:28:45.000000000 +0100
@@ -6,7 +6,8 @@
/* Standard include directory. In GNU, "/usr" is a four-letter word. */
#undef STANDARD_INCLUDE_DIR
-#define STANDARD_INCLUDE_DIR "/include"
+/* Overriden for Debian GNU/Hurd. */
+#define STANDARD_INCLUDE_DIR "/usr/include"
/* The system headers under GNU are C++-aware. */
#define NO_IMPLICIT_EXTERN_C
--- gcc/config/t-gnu.orig 2004-01-10 07:40:24.000000000 +0100
+++ gcc/config/t-gnu 2006-12-10 12:28:45.000000000 +0100
@@ -1,2 +1,2 @@
# In GNU, "/usr" is a four-letter word.
-NATIVE_SYSTEM_HEADER_DIR = /include
+NATIVE_SYSTEM_HEADER_DIR = /usr/include
--- gcc/tlink.c.orig 2005-06-25 04:02:01.000000000 +0200
+++ gcc/tlink.c 2006-12-10 12:28:45.000000000 +0100
@@ -34,6 +34,10 @@
#define MAX_ITERATIONS 17
+#ifndef MAXPATHLEN
+#define MAXPATHLEN 4096
+#endif
+
/* Defined in the automatically-generated underscore.c. */
extern int prepends_underscore;
--- boehm-gc/dyn_load.c.orig 2007-08-13 09:10:48.215678000 +0200
+++ boehm-gc/dyn_load.c 2007-08-13 09:11:09.743969000 +0200
@@ -26,7 +26,7 @@
* None of this is safe with dlclose and incremental collection.
* But then not much of anything is safe in the presence of dlclose.
*/
-#if (defined(__linux__) || defined(__GLIBC__)) && !defined(_GNU_SOURCE)
+#if (defined(__linux__) || defined(__GLIBC__) || defined(__GNU__)) && !defined(_GNU_SOURCE)
/* Can't test LINUX, since this must be define before other includes */
# define _GNU_SOURCE
#endif
| Darcs Patch | 4 | JrCs/opendreambox | recipes/gcc/gcc-4.3.4/debian/hurd-changes.dpatch | [
"MIT"
] |
# @TEST-EXEC: zeek -b -C -r $TRACES/rfb/vnc-scanner.pcap %INPUT
# @TEST-EXEC: btest-diff rfb.log
@load base/protocols/rfb
| Bro | 2 | yaplej/bro | testing/btest/scripts/base/protocols/rfb/vnc-scanner.bro | [
"Apache-2.0"
] |
client_conf=Konfigurationsfil för NIS-klient,0
nsswitch_conf=Switchfil för NIS-klient,0
securenets=Pålitlig nätverksfil,3,Ingen
| SystemVerilog | 2 | GalaxyGFX/webmin | nis/config.info.sv | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<RootNamespace>Loops</RootNamespace>
<OutputType>exe</OutputType>
<AssemblyName>Loops</AssemblyName>
<AllowGlobals>False</AllowGlobals>
<AllowLegacyOutParams>False</AllowLegacyOutParams>
<AllowLegacyCreate>False</AllowLegacyCreate>
<ApplicationIcon>Properties\App.ico</ApplicationIcon>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<ProjectGuid>{916BD89C-B610-4CEE-9CAF-C515D88E2C94}</ProjectGuid>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>DEBUG;TRACE;</DefineConstants>
<OutputPath>.\bin\Debug</OutputPath>
<GeneratePDB>True</GeneratePDB>
<GenerateMDB>True</GenerateMDB>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>.\bin\Release</OutputPath>
<EnableAsserts>False</EnableAsserts>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\RemObjects Software\Oxygene\RemObjects.Oxygene.targets" />
<ItemGroup>
<Reference Include="mscorlib">
<HintPath>$(Framework)\mscorlib.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>$(Framework)\System.dll</HintPath>
</Reference>
<Reference Include="System.Core">
<HintPath>$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\v3.5\System.Core.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Data">
<HintPath>$(Framework)\System.Data.dll</HintPath>
</Reference>
<Reference Include="System.Xml">
<HintPath>$(Framework)\System.Xml.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Program.pas" />
<Content Include="Properties\App.ico" />
<Compile Include="Properties\AssemblyInfo.pas" />
<EmbeddResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddResource>
<Compile Include="Properties\Resources.Designer.pas" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
</None>
<Compile Include="Properties\Settings.Designer.pas" />
</ItemGroup>
</Project> | Oxygene | 2 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Oxygene/Loops.oxygene | [
"MIT"
] |
// MIR for `main` after ConstProp
fn main() -> () {
let mut _0: (); // return place in scope 0 at $DIR/const_allocation2.rs:4:11: 4:11
let _1: &[(std::option::Option<i32>, &[&u8])]; // in scope 0 at $DIR/const_allocation2.rs:5:5: 5:8
let mut _2: &&[(std::option::Option<i32>, &[&u8])]; // in scope 0 at $DIR/const_allocation2.rs:5:5: 5:8
bb0: {
StorageLive(_1); // scope 0 at $DIR/const_allocation2.rs:5:5: 5:8
StorageLive(_2); // scope 0 at $DIR/const_allocation2.rs:5:5: 5:8
_2 = const {alloc1: &&[(Option<i32>, &[&u8])]}; // scope 0 at $DIR/const_allocation2.rs:5:5: 5:8
// ty::Const
// + ty: &&[(std::option::Option<i32>, &[&u8])]
// + val: Value(Scalar(alloc1))
// mir::Constant
// + span: $DIR/const_allocation2.rs:5:5: 5:8
// + literal: Const { ty: &&[(std::option::Option<i32>, &[&u8])], val: Value(Scalar(alloc1)) }
_1 = (*_2); // scope 0 at $DIR/const_allocation2.rs:5:5: 5:8
StorageDead(_2); // scope 0 at $DIR/const_allocation2.rs:5:8: 5:9
StorageDead(_1); // scope 0 at $DIR/const_allocation2.rs:5:8: 5:9
nop; // scope 0 at $DIR/const_allocation2.rs:4:11: 6:2
return; // scope 0 at $DIR/const_allocation2.rs:6:2: 6:2
}
}
alloc1 (static: FOO, size: 16, align: 8) {
╾───────alloc28───────╼ 03 00 00 00 00 00 00 00 │ ╾──────╼........
}
alloc28 (size: 72, align: 8) {
0x00 │ 00 00 00 00 __ __ __ __ ╾───────alloc13───────╼ │ ....░░░░╾──────╼
0x10 │ 00 00 00 00 00 00 00 00 00 00 00 00 __ __ __ __ │ ............░░░░
0x20 │ ╾───────alloc18───────╼ 02 00 00 00 00 00 00 00 │ ╾──────╼........
0x30 │ 01 00 00 00 2a 00 00 00 ╾───────alloc26───────╼ │ ....*...╾──────╼
0x40 │ 03 00 00 00 00 00 00 00 │ ........
}
alloc13 (size: 0, align: 8) {}
alloc18 (size: 16, align: 8) {
╾───────alloc16───────╼ ╾───────alloc17───────╼ │ ╾──────╼╾──────╼
}
alloc16 (size: 1, align: 1) {
05 │ .
}
alloc17 (size: 1, align: 1) {
06 │ .
}
alloc26 (size: 24, align: 8) {
0x00 │ ╾─────alloc22+0x3─────╼ ╾───────alloc23───────╼ │ ╾──────╼╾──────╼
0x10 │ ╾─────alloc25+0x2─────╼ │ ╾──────╼
}
alloc22 (size: 4, align: 1) {
2a 45 15 6f │ *E.o
}
alloc23 (size: 1, align: 1) {
2a │ *
}
alloc25 (size: 4, align: 1) {
2a 45 15 6f │ *E.o
}
| Mirah | 3 | mbc-git/rust | src/test/mir-opt/const_allocation2.main.ConstProp.after.64bit.mir | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
#ifndef PHP_LMDB_H
#define PHP_LMDB_H
#if DBA_LMDB
#include "php_dba.h"
DBA_FUNCS(lmdb);
#endif
#endif
| C | 2 | thiagooak/php-src | ext/dba/php_lmdb.h | [
"PHP-3.01"
] |
// run-pass
#![allow(dead_code)]
#![allow(unused_mut)]
#![allow(unused_variables)]
#![deny(non_snake_case)]
#![feature(stmt_expr_attributes)]
fn main() {
let a = 413;
#[cfg(unset)]
let a = ();
assert_eq!(a, 413);
let mut b = 612;
#[cfg(unset)]
{
b = 1111;
}
assert_eq!(b, 612);
#[cfg(unset)]
undefined_fn();
#[cfg(unset)]
undefined_macro!();
#[cfg(unset)]
undefined_macro![];
#[cfg(unset)]
undefined_macro!{};
// pretty printer bug...
// #[cfg(unset)]
// undefined_macro!{}
let () = (#[cfg(unset)] 341,); // Should this also work on parens?
let t = (1, #[cfg(unset)] 3, 4);
assert_eq!(t, (1, 4));
let f = |_: u32, _: u32| ();
f(2, 1, #[cfg(unset)] 6);
let _: u32 = a.clone(#[cfg(unset)] undefined);
let _: [(); 0] = [#[cfg(unset)] 126];
let t = [#[cfg(unset)] 1, 2, 6];
assert_eq!(t, [2, 6]);
{
let r;
#[cfg(unset)]
(r = 5);
#[cfg(not(unset))]
(r = 10);
assert_eq!(r, 10);
}
// check that macro expanded code works
macro_rules! if_cfg {
($cfg:meta? $ib:block else $eb:block) => {
{
let r;
#[cfg($cfg)]
(r = $ib);
#[cfg(not($cfg))]
(r = $eb);
r
}
}
}
let n = if_cfg!(unset? {
413
} else {
612
});
assert_eq!((#[cfg(unset)] 1, #[cfg(not(unset))] 2), (2,));
assert_eq!(n, 612);
// check that lints work
#[allow(non_snake_case)]
let FOOBAR = {
fn SYLADEX() {}
};
#[allow(non_snake_case)]
{
fn CRUXTRUDER() {}
}
}
| Rust | 4 | Eric-Arellano/rust | src/test/ui/cfg/cfg_stmt_expr.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
PREFIX : <http://example.org/>
SELECT ?x
FROM NAMED <http://example.org/graph1>
WHERE {}
| SPARQL | 2 | yanaspaula/rdf4j | testsuites/sparql/src/main/resources/testcases-sparql-1.0-w3c/data-r2/syntax-sparql2/syntax-dataset-02.rq | [
"BSD-3-Clause"
] |
#define IDS_APP_TITLE 101
#define IDM_ABOUT 102
#define IDC_FANCYZONESDRAWLAYOUTTEST 103
| C | 2 | szlatkow/PowerToys | tools/FancyZones_DrawLayoutTest/Resource.h | [
"MIT"
] |
// run-pass
#![allow(non_camel_case_types)]
use std::string::String;
#[derive(PartialEq)]
enum t { a, b(String), }
fn make(i: isize) -> t {
if i > 10 { return t::a; }
let mut s = String::from("hello");
// Ensure s is non-const.
s.push_str("there");
return t::b(s);
}
pub fn main() {
let mut i = 0;
// The auto slot for the result of make(i) should not leak.
while make(i) != t::a { i += 1; }
}
| Rust | 4 | Eric-Arellano/rust | src/test/ui/for-loop-while/while-prelude-drop.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
/* Copyright 2019 The TensorFlow Authors. 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.
==============================================================================*/
#ifndef TENSORFLOW_CORE_GRAPPLER_UTILS_GRAPH_VIEW_INTERNAL_H_
#define TENSORFLOW_CORE_GRAPPLER_UTILS_GRAPH_VIEW_INTERNAL_H_
#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
#include "absl/hash/hash.h"
#include "absl/strings/string_view.h"
#include "tensorflow/core/framework/attr_value.pb.h"
#include "tensorflow/core/framework/graph.pb.h"
#include "tensorflow/core/framework/node_def.pb.h"
#include "tensorflow/core/framework/node_def_util.h"
#include "tensorflow/core/graph/tensor_id.h"
#include "tensorflow/core/lib/core/status.h"
#include "tensorflow/core/lib/gtl/map_util.h"
namespace tensorflow {
namespace grappler {
namespace utils {
namespace internal {
constexpr int kMissingSlot = -2;
constexpr int kMissingIndex = -1;
constexpr int kNodeNamePresent = -1;
// NodeIndexAndPortIndex is a helper class that represents fanins and fanouts
// of a node.
template <typename NodeViewT, typename GraphViewT>
class NodeIndexAndPortIndex {
public:
NodeIndexAndPortIndex()
: graph_view_(nullptr),
node_index_(kMissingIndex),
port_index_(kMissingSlot) {}
NodeIndexAndPortIndex(GraphViewT* graph_view, int node_index, int port_index)
: graph_view_(graph_view),
node_index_(node_index),
port_index_(port_index) {}
bool operator==(const NodeIndexAndPortIndex& other) const {
return port_index_ == other.port_index_ &&
node_index_ == other.node_index_ && graph_view_ == other.graph_view_;
}
template <typename Hash>
friend Hash AbslHashValue(Hash h, const NodeIndexAndPortIndex& n) {
return Hash::combine(std::move(h), n.node_index_, n.port_index_);
}
// Returns NodeView from `graph_view_` at `node_index_`.
NodeViewT* node_view() const {
if (graph_view_ == nullptr) {
return nullptr;
}
return graph_view_->GetNode(node_index_);
}
// Returns node index in graph.
int node_index() const { return node_index_; }
// Returns input/output port index.
int index() const { return port_index_; }
protected:
GraphViewT* graph_view_;
int node_index_;
int port_index_;
};
// NodeDefAndPortIndex is a helper class that represents fanins hashed with
// pointer stability using the fanin's NodeDef.
class NodeDefAndPortIndex {
public:
NodeDefAndPortIndex(const NodeDef* node_def, int port_index)
: node_def_(node_def), port_index_(port_index) {}
bool operator==(const NodeDefAndPortIndex& other) const {
return node_def_ == other.node_def_ && port_index_ == other.port_index_;
}
template <typename Hash>
friend Hash AbslHashValue(Hash h, const NodeDefAndPortIndex& n) {
return Hash::combine(std::move(h), n.node_def_, n.port_index_);
}
private:
const NodeDef* node_def_;
int port_index_;
};
// NodeViewInternal is a helper class to simplify graph traversal. It creates
// a view of a node and associated fanins and fanouts from the NodeDef
// protocol buffer.
//
// There are two public classes implementing NodeViewInternal:
//
// - NodeView: constructed from `const NodeDef` and doesn't allow mutating the
// underlying node.
// - MutableNodeView: constructed from `NodeDef` and allows mutating the
// underlying node.
//
// --------------------------- !!! WARNING !!! ---------------------------------
// Modifying the node outside of implementations of NodeViewInternal
// (i.e. modifying inputs of the NodeDef directly) may leave the NodeView
// in an inconsistent/invalid state.
// -----------------------------------------------------------------------------
//
template <typename FaninViewT, typename FanoutViewT, typename GraphViewT,
bool IsConst>
class NodeViewInternal {
private:
using NodeDefT =
typename std::conditional<IsConst, const NodeDef, NodeDef>::type;
public:
explicit NodeViewInternal(GraphViewT* graph_view, int node_index)
: graph_view_(graph_view),
node_index_(node_index),
attrs_(AttrSlice(graph_view->graph()->node(node_index))) {}
NodeViewInternal()
: graph_view_(nullptr), node_index_(kMissingIndex), attrs_(AttrSlice()) {}
virtual ~NodeViewInternal() {}
NodeViewInternal(NodeViewInternal&&) = default;
NodeViewInternal& operator=(NodeViewInternal&&) = default;
bool operator==(const NodeViewInternal& other) const {
return node_index_ == other.node_index_ && graph_view_ == other.graph_view_;
}
template <typename Hash>
friend Hash AbslHashValue(Hash h, const NodeViewInternal& n) {
return Hash::combine(std::move(h), n.node_index_);
}
// Returns NodeDef of view.
virtual NodeDefT* node() const = 0;
// Returns index of node in GraphDef/GraphView.
int node_index() const { return node_index_; }
// Returns the name of the node.
const string& GetName() const { return node()->name(); }
// Returns the op of the node.
const string& GetOp() const { return node()->op(); }
// Returns the device set for the node.
const string& GetDevice() const { return node()->device(); }
// Returns all regular fanins, based on ordering in the node.
const std::vector<FanoutViewT>& GetRegularFanins() const {
return regular_fanins_;
}
// Returns a regular fanin based on input index. If no such fanin exist, a
// missing fanin is returned, with no NodeView set and an index of -2.
const FanoutViewT& GetRegularFanin(int i) const {
int regular_fanins_size = regular_fanins_.size();
if (i < 0 || i >= regular_fanins_size) {
return GetMissingFanin();
}
return regular_fanins_[i];
}
// Returns all controlling fanins, based on ordering in the node.
const std::vector<FanoutViewT>& GetControllingFanins() const {
return controlling_fanins_;
}
// Returns all regular fanouts.
const std::vector<std::vector<FaninViewT>>& GetRegularFanouts() const {
return regular_fanouts_by_port_;
}
// Returns a regular fanout(s) based on output index. If no such output index
// exists, no fanouts will be returned.
const std::vector<FaninViewT>& GetRegularFanout(int i) const {
int regular_fanouts_by_port_size = regular_fanouts_by_port_.size();
if (i < 0 || i >= regular_fanouts_by_port_size) {
return GetMissingFanout();
}
return regular_fanouts_by_port_[i];
}
// Returns all controlled fanouts.
const std::vector<FaninViewT>& GetControlledFanouts() const {
return controlled_fanouts_;
}
// Returns the number of regular fanins.
int NumRegularFanins() const { return regular_fanins_.size(); }
// Returns the number of controlling fanins.
int NumControllingFanins() const { return controlling_fanins_.size(); }
// Returns the number of regular fanouts.
int NumRegularFanouts() const { return num_regular_fanouts_; }
// Returns the number of controlled fanouts.
int NumControlledFanouts() const { return controlled_fanouts_.size(); }
// Checks if a fanin exists for the node.
virtual bool HasFanin(const FanoutViewT& fanin) const = 0;
// Checks if a fanout exists for the node.
virtual bool HasFanout(const FaninViewT& fanout) const = 0;
// Returns an attribute of the node by key. If no attribute for such key
// exists, a `nullptr` is returned.
const AttrValue* GetAttr(absl::string_view attr_name) const {
return attrs_.Find(attr_name);
}
// Returns all attributes of the node.
const AttrSlice& GetAttrs() const { return attrs_; }
// Returns the number of attributes in the node.
int NumAttrs() const { return attrs_.size(); }
// Checks if an attribute exist in the node.
bool HasAttr(absl::string_view attr_name) const {
return attrs_.Find(attr_name) != nullptr;
}
protected:
virtual inline const FanoutViewT& GetMissingFanin() const = 0;
virtual inline const std::vector<FaninViewT>& GetMissingFanout() const = 0;
std::vector<FanoutViewT> regular_fanins_;
std::vector<FanoutViewT> controlling_fanins_;
std::vector<std::vector<FaninViewT>> regular_fanouts_by_port_;
int num_regular_fanouts_ = 0;
std::vector<FaninViewT> controlled_fanouts_;
GraphViewT* graph_view_;
int node_index_;
AttrSlice attrs_;
};
// GraphViewInternal is a helper class to simplify graph traversal. It creates
// a view of the nodes and associated fanins and fanouts from the GraphDef
// protocol buffer.
//
// There are two public classes implementing GraphViewInternal:
//
// - GraphView: constructed from `const GraphDef` and doesn't allow mutating
// the underlying graph and its nodes.
// - MutableGraphView: constructed from `GraphDef` and allows mutating the
// underlying graph and its nodes.
//
// --------------------------- !!! WARNING !!! ---------------------------------
// Modifying the graph outside of implementations of GraphViewInternal
// (i.e. removing nodes from the GraphDef directly) may lead to
// segfaults! Guaranteed by absl::string_view!
// -----------------------------------------------------------------------------
//
template <typename NodeViewT, typename FaninViewT, typename FanoutViewT,
bool IsConst>
class GraphViewInternal {
private:
using GraphDefT =
typename std::conditional<IsConst, const GraphDef, GraphDef>::type;
public:
explicit GraphViewInternal(GraphDefT* graph) : graph_(graph) {}
virtual ~GraphViewInternal() {}
bool operator==(const GraphViewInternal& other) const {
return graph_ == other.graph_;
}
GraphDefT* graph() const { return graph_; }
// Finds node by index in the graph. If no such node exists in the graph, a
// `nullptr` is returned.
const NodeViewT* GetNode(int node_index) const {
int nodes_size = nodes_.size();
if (node_index < 0 || node_index >= nodes_size) {
return nullptr;
}
return &nodes_[node_index];
}
NodeViewT* GetNode(int node_index) {
int nodes_size = nodes_.size();
if (node_index < 0 || node_index >= nodes_size) {
return nullptr;
}
return &nodes_[node_index];
}
// Finds node by name. If no such node exists in the graph, a `nullptr` is
// returned.
const NodeViewT* GetNode(absl::string_view node_name) const {
auto it = node_index_by_name_.find(node_name);
if (it == node_index_by_name_.end()) {
return nullptr;
}
return &nodes_[it->second];
}
NodeViewT* GetNode(absl::string_view node_name) {
auto it = node_index_by_name_.find(node_name);
if (it == node_index_by_name_.end()) {
return nullptr;
}
return &nodes_[it->second];
}
// Returns all nodes (as NodeView) in the graph.
const std::vector<NodeViewT>& GetNodes() const { return nodes_; }
// Checks if a node by name exists in the graph.
bool HasNode(absl::string_view node_name) const {
return node_index_by_name_.contains(node_name);
}
// Returns the number of nodes in the graph.
int NumNodes() const { return nodes_.size(); }
protected:
// Reset allocated node vector and node map in case of failure.
void Reset() {
std::vector<NodeViewT>().swap(nodes_);
absl::flat_hash_map<absl::string_view, int>().swap(node_index_by_name_);
}
// nodes_[i] is a view of graph_.{mutable_}node(i).
std::vector<NodeViewT> nodes_;
absl::flat_hash_map<absl::string_view, int> node_index_by_name_;
GraphDefT* graph_;
const FanoutViewT missing_fanin_;
const std::vector<FaninViewT> missing_fanout_;
};
inline SafeTensorId EmptyTensorId() {
return SafeTensorId("", internal::kMissingSlot);
}
inline bool IsEmptyTensorId(const TensorId tensor_id) {
return tensor_id.node().empty() &&
tensor_id.index() == internal::kMissingSlot;
}
// NodeViewDiff is a helper struct holding changes to be made to an existing
// node in GraphViewT. This should not be initialized or be used directly.
template <typename GraphViewT>
struct NodeViewDiff {
explicit NodeViewDiff(GraphViewT* graph_view, int node_index)
: graph_view(graph_view), node_index(node_index) {}
GraphViewT* graph_view;
int node_index;
string name;
bool update_name = false;
string op;
bool update_op = false;
string device;
bool update_device = false;
// Fanins to append after existing regular fanins.
std::vector<SafeTensorId> regular_inputs_to_add;
// Number of fanins to be appended. This is used for a quick comparison with
// `regular_inputs_to_add` for if there will be any missing inputs in the
// updated node.
int num_regular_inputs_to_add = 0;
// Fanins to update inplace.
std::map<int, SafeTensorId> regular_inputs_to_update;
// Fanins from end of regular fanins to remove. This keeps track of existing
// regular fanins in the original node to remove.
std::vector<bool> regular_inputs_to_remove;
// Number of fanins marked for removal. This is used for a quick comparison
// with `regular_inputs_to_remove` for if there will be any missing inputs
// in the updated node.
int num_regular_inputs_to_remove = 0;
absl::flat_hash_set<string> controlling_inputs_to_add;
std::set<int> controlling_inputs_to_remove;
absl::flat_hash_map<string, AttrValue> attrs_to_add;
absl::flat_hash_set<string> attrs_to_remove;
// AttrValueMap constructor and destructor are very expensive, we will
// initialize it lazily only if needed.
absl::optional<AttrValueMap> processed_attrs;
};
// Updates node name. If `name` is the same as the name in the original node,
// the field will be cleared in the diff.
template <typename GraphViewT>
inline bool UpdateName(NodeViewDiff<GraphViewT>* diff, absl::string_view name) {
if (diff->graph_view->GetNode(diff->node_index)->GetName() == name) {
diff->name.clear();
diff->update_name = false;
} else {
diff->name = string(name);
diff->update_name = true;
}
return true;
}
// Updates node op. If `op` is the same as the op in the original node, the
// field will be cleared in the diff.
template <typename GraphViewT>
inline bool UpdateOp(NodeViewDiff<GraphViewT>* diff, absl::string_view op) {
if (diff->graph_view->GetNode(diff->node_index)->GetOp() == op) {
diff->op.clear();
diff->update_op = false;
} else {
diff->op = string(op);
diff->update_op = true;
}
return true;
}
// Updates node device. If `device` is the same as the device in the original
// node, the field will be cleared in the diff.
template <typename GraphViewT>
inline bool UpdateDevice(NodeViewDiff<GraphViewT>* diff,
absl::string_view device) {
if (diff->graph_view->GetNode(diff->node_index)->GetDevice() == device) {
diff->device.clear();
diff->update_device = false;
} else {
diff->device = string(device);
diff->update_device = true;
}
return true;
}
// Adds or updates value in vector `v` at index `i`. This will also resize the
// vector if index `i` is out of bounds, padding the vector with
// `default_value`. Returns true if a new value was appended or if an update
// occurred where an existing value was changed from `default_value`.
template <typename T, typename U>
inline bool AddOrUpdateAtIndex(std::vector<T>* v, int i, const U& value,
const T& default_value) {
int v_size = v->size();
if (i > v_size) {
// Resize to include `value`, filling the newly introduced gap with
// `default_value` for later checks of validity (gaps in vector).
v->reserve(i + 1);
v->resize(i, default_value);
v->push_back({value});
} else if (i == v_size) {
// Vector is large enough, simply append `value` to the end.
v->push_back({value});
} else {
// Update existing value.
bool updated = (*v)[i] == default_value;
(*v)[i] = {value};
return updated;
}
return true;
}
// Checks if a node with name `node_name` will exist in the final mutated graph.
template <typename GraphViewT>
inline bool CheckNodeNameExists(
absl::string_view node_name,
const absl::flat_hash_map<absl::string_view, int>& updated_node_names,
const GraphViewT* graph_view) {
auto it = updated_node_names.find(node_name);
if (it != updated_node_names.end()) {
return it->second == kNodeNamePresent;
}
return graph_view->HasNode(node_name);
}
// Adds or updates regular fanin at `index` of regular fanins. If `index` is
// less than the number of regular fanins in the original node, the fanin at
// `index` in the original node will be updated with `fanin` if the fanin
// differs. If `index` is greater than or equal to the number of regular fanins,
// `fanin` will be added beyond the end of regular fanins at `index`.
template <typename GraphViewT>
inline bool AddOrUpdateRegularFanin(NodeViewDiff<GraphViewT>* diff, int index,
const TensorId& fanin) {
if (index < 0) {
// Not a valid index for regular fanins.
return false;
}
auto* node_view = diff->graph_view->GetNode(diff->node_index);
const int num_regular_fanins = node_view->NumRegularFanins();
if (index < num_regular_fanins) { // Updating existing fanins.
// Calculate (relative) index from end of regular fanins, from absolute
// index from beginning of regular fanins.
const int relative_removal_index = num_regular_fanins - index - 1;
// Check if at relative index fanin was already marked for removal.
int diff_regular_inputs_to_remove_size =
diff->regular_inputs_to_remove.size();
if (relative_removal_index < diff_regular_inputs_to_remove_size &&
diff->regular_inputs_to_remove[relative_removal_index]) {
// Unmark fanin for removal.
diff->regular_inputs_to_remove[relative_removal_index] = false;
--diff->num_regular_inputs_to_remove;
}
const auto& existing_fanin = node_view->GetRegularFanin(index);
if (existing_fanin.index() != fanin.index() ||
existing_fanin.node_view()->GetName() != fanin.node()) {
// Update fanin if it is different from original fanin in node.
gtl::InsertOrUpdate(&diff->regular_inputs_to_update, index,
SafeTensorId(fanin));
}
} else {
// Add fanin beyond current fanin range.
const int relative_add_index = index - num_regular_fanins;
if (AddOrUpdateAtIndex(&diff->regular_inputs_to_add, relative_add_index,
fanin, EmptyTensorId())) {
// New fanin was added.
++diff->num_regular_inputs_to_add;
}
}
return true;
}
// Remove regular fanin at `index` of regular fanins. This can remove existing
// fanins and updated/added fanins via AddOrUpdateRegularFanins.
template <typename GraphViewT>
inline bool RemoveRegularFanin(NodeViewDiff<GraphViewT>* diff, int index) {
if (index < 0) {
// Not a valid index for regular fanins.
return false;
}
auto* node_view = diff->graph_view->GetNode(diff->node_index);
const int num_regular_fanins = node_view->NumRegularFanins();
if (index < num_regular_fanins) { // Removing existing fanins.
// Remove updated fanin if it exists.
diff->regular_inputs_to_update.erase(index);
// Calculate (relative) index from end of regular fanins, from absolute
// index from beginning of regular fanins.
const int relative_removal_index = num_regular_fanins - index - 1;
if (AddOrUpdateAtIndex(&diff->regular_inputs_to_remove,
relative_removal_index,
/*value=*/true, /*default_value=*/false)) {
++diff->num_regular_inputs_to_remove;
}
} else {
// Relative index from end of regular fanins.
const int relative_add_index = index - num_regular_fanins;
int diff_regular_inputs_to_add_size = diff->regular_inputs_to_add.size();
if (relative_add_index >= diff_regular_inputs_to_add_size ||
IsEmptyTensorId(diff->regular_inputs_to_add[relative_add_index])) {
// At relative index, appended regular fanin was already marked for
// removal.
return false;
}
// Remove added fanin.
diff->regular_inputs_to_add[relative_add_index] = EmptyTensorId();
--diff->num_regular_inputs_to_add;
}
return true;
}
// Adds controlling fanin. If the controlling fanin already exists in the
// original node, it will be dedupped. If the controlling fanin is marked for
// removal, this will reverse it.
template <typename GraphViewT>
inline bool AddControllingFanin(NodeViewDiff<GraphViewT>* diff,
int control_index,
absl::string_view fanin_node_name) {
if (control_index == kMissingIndex) {
diff->controlling_inputs_to_add.emplace(fanin_node_name);
} else {
diff->controlling_inputs_to_remove.erase(control_index);
}
return true;
}
// Remove controlling fanin. If the controlling fanin does not exist in the
// original node and diff, nothing will happen. If the controlling fanin exists
// in the diff, it will be removed. Otherwise the controlling fanin will be
// marked for removal from the original node.
template <typename GraphViewT>
inline bool RemoveControllingFanin(NodeViewDiff<GraphViewT>* diff,
int control_index,
absl::string_view fanin_node_name) {
if (control_index == kMissingIndex) {
diff->controlling_inputs_to_add.erase(fanin_node_name);
} else {
diff->controlling_inputs_to_remove.emplace(control_index);
}
return true;
}
// Adds or updates an attribute by name. If an attribute exist in the original
// node or diff (including those marked for removal), this will overwrite it.
template <typename GraphViewT>
inline bool AddOrUpdateAttribute(NodeViewDiff<GraphViewT>* diff,
absl::string_view attr_name,
const AttrValue& attr_value) {
diff->attrs_to_add.empty() ? 0 : diff->attrs_to_remove.erase(attr_name);
gtl::InsertOrUpdate(&diff->attrs_to_add, string(attr_name), attr_value);
return true;
}
// Removes an attribute by name. If an attribute exist in the original node or
// diff, this will remove it.
template <typename GraphViewT>
inline bool RemoveAttribute(NodeViewDiff<GraphViewT>* diff,
absl::string_view attr_name) {
const size_t num_erased =
diff->attrs_to_add.empty() ? 0 : diff->attrs_to_add.erase(attr_name);
auto* node_view = diff->graph_view->GetNode(diff->node_index);
if (node_view->HasAttr(attr_name)) {
diff->attrs_to_remove.emplace(attr_name);
return true;
}
return num_erased > 0;
}
// Removes trailing values in vector `v` for values equal to `value`.
template <typename T>
inline void ResizeByTrimmingEndForValue(std::vector<T>* v, const T& value) {
int curr_index = v->size();
const int last_index = v->size() - 1;
for (int i = last_index; i >= 0; --i) {
if ((*v)[i] == value) {
curr_index = i;
} else {
break;
}
}
if (curr_index <= last_index) {
v->resize(curr_index);
}
}
// Checks if any changes are set in the diff.
template <typename GraphViewT>
inline bool IsEmpty(NodeViewDiff<GraphViewT>* diff) {
ResizeByTrimmingEndForValue(&diff->regular_inputs_to_remove, false);
ResizeByTrimmingEndForValue(&diff->regular_inputs_to_add, EmptyTensorId());
return !diff->update_name && !diff->update_op && !diff->update_device &&
diff->regular_inputs_to_add.empty() &&
diff->regular_inputs_to_update.empty() &&
diff->regular_inputs_to_remove.empty() &&
diff->controlling_inputs_to_add.empty() &&
diff->controlling_inputs_to_remove.empty() &&
diff->attrs_to_add.empty() && diff->attrs_to_remove.empty();
}
// Resets and clears existing diff.
template <typename GraphViewT>
inline void Reset(NodeViewDiff<GraphViewT>* diff) {
diff->name.clear();
diff->update_name = false;
diff->op.clear();
diff->update_op = false;
diff->device.clear();
diff->update_device = false;
std::vector<SafeTensorId>().swap(diff->regular_inputs_to_add);
diff->num_regular_inputs_to_add = false;
std::map<int, SafeTensorId>().swap(diff->regular_inputs_to_update);
std::vector<bool>().swap(diff->regular_inputs_to_remove);
diff->num_regular_inputs_to_remove = 0;
absl::flat_hash_set<string>().swap(diff->controlling_inputs_to_add);
std::set<int>().swap(diff->controlling_inputs_to_remove);
absl::flat_hash_map<string, AttrValue>().swap(diff->attrs_to_add);
absl::flat_hash_set<string>().swap(diff->attrs_to_remove);
}
// Checks if changes to node will result in a valid node.
template <typename GraphViewT>
inline bool IsWellFormed(
NodeViewDiff<GraphViewT>* diff,
const absl::flat_hash_map<absl::string_view, int>& updated_node_names) {
ResizeByTrimmingEndForValue(&diff->regular_inputs_to_remove, false);
ResizeByTrimmingEndForValue(&diff->regular_inputs_to_add, EmptyTensorId());
int diff_regular_inputs_to_add_size = diff->regular_inputs_to_add.size();
if (diff_regular_inputs_to_add_size != diff->num_regular_inputs_to_add) {
// Missing regular fanins in between appended fanins.
return false;
} else if (diff->num_regular_inputs_to_add > 0 &&
!diff->regular_inputs_to_remove.empty()) {
// Appending new fanins while removing existing fanins, resulting in missing
// regular fanins in between.
return false;
} else if (static_cast<int>(diff->regular_inputs_to_remove.size()) !=
diff->num_regular_inputs_to_remove) {
// Regular fanins exist in between removed fanins.
return false;
}
auto* node_view = diff->graph_view->GetNode(diff->node_index);
const string& node_name =
diff->update_name ? diff->name : node_view->GetName();
auto invalid_node_name = [&](absl::string_view fanin_node_name) -> bool {
return fanin_node_name == node_name ||
!CheckNodeNameExists(fanin_node_name, updated_node_names,
diff->graph_view);
};
// Check if nodes of all updated and new fanins exist (from name) and if such
// fanins do not introduce self loops. Note, this will not check for if
// unmodified fanins exist.
if (diff->update_name) {
// If name of node was changed in node, check all fanins. Updated fanins are
// checked for existence and self loops. Unmodified fanins are checked for
// self loops.
// `regular_inputs_to_update`, `controlling_inputs_to_remove` are sorted,
// so iterators from these maps/sets can be incremented alongside iteration
// and be used for comparisons.
const int last_index =
node_view->NumRegularFanins() - diff->num_regular_inputs_to_remove - 1;
auto regular_to_update_it = diff->regular_inputs_to_update.begin();
for (int i = 0; i <= last_index; ++i) {
if (regular_to_update_it != diff->regular_inputs_to_update.end() &&
regular_to_update_it->first < i) {
++regular_to_update_it;
}
if (regular_to_update_it != diff->regular_inputs_to_update.end() &&
regular_to_update_it->first == i) {
if (invalid_node_name(regular_to_update_it->second.node())) {
return false;
}
} else {
const string& regular_name =
node_view->GetRegularFanin(i).node_view()->GetName();
if (regular_name == node_name) {
return false;
}
}
}
auto& controls = node_view->GetControllingFanins();
const int num_controls = controls.size();
auto control_to_remove_it = diff->controlling_inputs_to_remove.begin();
for (int i = 0; i < num_controls; ++i) {
if (control_to_remove_it != diff->controlling_inputs_to_remove.end() &&
*control_to_remove_it < i) {
++control_to_remove_it;
}
if (control_to_remove_it != diff->controlling_inputs_to_remove.end() &&
*control_to_remove_it == i) {
// Control dependency marked for removal, can be ignored.
continue;
} else if (controls[i].node_view()->GetName() == node_name) {
return false;
}
}
} else {
// Name of node was not changed, check only updated fanins under the
// assumption prior fanins were valid.
for (const auto& updated : diff->regular_inputs_to_update) {
const string& fanin_name = updated.second.node();
if (invalid_node_name(fanin_name)) {
return false;
}
}
}
// Check appended regular fanins.
for (const auto& regular : diff->regular_inputs_to_add) {
if (invalid_node_name(regular.node())) {
return false;
}
}
// Check new controlling fanins.
for (const auto& control : diff->controlling_inputs_to_add) {
if (invalid_node_name(control)) {
return false;
}
}
return true;
}
// NewNode is a helper struct holding a new node to be added to a GraphViewT.
// This should not be initialized or be used directly.
template <typename GraphViewT>
struct NewNode {
explicit NewNode(GraphViewT* graph_view, NodeDef&& node)
: graph_view(graph_view), node(std::move(node)) {}
GraphViewT* graph_view;
NodeDef node;
std::vector<SafeTensorId> regular_fanins;
int num_regular_fanins = 0;
absl::flat_hash_set<string> controlling_fanins;
};
// Updates new node name.
template <typename GraphViewT>
inline void UpdateName(NewNode<GraphViewT>* new_node, absl::string_view name) {
if (name.empty()) {
new_node->node.clear_name();
} else {
new_node->node.set_name(string(name));
}
}
// Updates new node op.
template <typename GraphViewT>
inline void UpdateOp(NewNode<GraphViewT>* new_node, absl::string_view op) {
if (op.empty()) {
new_node->node.clear_op();
} else {
new_node->node.set_op(string(op));
}
}
// Updates new node device.
template <typename GraphViewT>
inline void UpdateDevice(NewNode<GraphViewT>* new_node,
absl::string_view device) {
if (device.empty()) {
new_node->node.clear_device();
} else {
new_node->node.set_device(string(device));
}
}
// Adds or updates regular fanin at `index` of regular fanins in the new node.
// If another fanin already exists at `index`, it will be replaced with `fanin`.
template <typename GraphViewT>
inline void AddOrUpdateRegularFanin(NewNode<GraphViewT>* new_node, int index,
const TensorId& fanin) {
if (index < 0) {
// Not a valid index for regular fanins.
return;
} else if (AddOrUpdateAtIndex(&new_node->regular_fanins, index, fanin,
EmptyTensorId())) {
++new_node->num_regular_fanins;
}
}
// Remove regular fanin at `index` of regular fanins in the new node. This can
// remove existing fanins and updated/added fanins via AddOrUpdateRegularFanins.
template <typename GraphViewT>
inline void RemoveRegularFanin(NewNode<GraphViewT>* new_node, int index) {
int new_node_regular_fanins_size = new_node->regular_fanins.size();
if (index < 0 || index >= new_node_regular_fanins_size ||
IsEmptyTensorId(new_node->regular_fanins[index])) {
return;
}
new_node->regular_fanins[index] = EmptyTensorId();
--new_node->num_regular_fanins;
}
// Adds controlling fanin to new node.
template <typename GraphViewT>
inline void AddControllingFanin(NewNode<GraphViewT>* new_node,
absl::string_view fanin_node_name) {
new_node->controlling_fanins.emplace(fanin_node_name);
}
// Removes controlling fanin to new node.
template <typename GraphViewT>
inline void RemoveControllingFanin(NewNode<GraphViewT>* new_node,
absl::string_view fanin_node_name) {
new_node->controlling_fanins.erase(fanin_node_name);
}
// Adds or updates an attribute by name to a new node.
template <typename GraphViewT>
inline void AddOrUpdateAttribute(NewNode<GraphViewT>* new_node,
absl::string_view attr_name,
const AttrValue& attr_value) {
gtl::InsertOrUpdate(new_node->node.mutable_attr(), string(attr_name),
attr_value);
}
// Removes an attribute by name to a new node.
template <typename GraphViewT>
inline void RemoveAttribute(NewNode<GraphViewT>* new_node,
absl::string_view attr_name) {
new_node->node.mutable_attr()->erase(string(attr_name));
}
// Checks if current state of new node is a valid node.
template <typename GraphViewT>
inline bool IsWellFormed(
NewNode<GraphViewT>* new_node,
const absl::flat_hash_map<absl::string_view, int>& updated_node_names) {
ResizeByTrimmingEndForValue(&new_node->regular_fanins, EmptyTensorId());
int new_node_regular_fanins_size = new_node->regular_fanins.size();
if (new_node_regular_fanins_size != new_node->num_regular_fanins) {
return false;
}
const string& node_name = new_node->node.name();
auto invalid_node_name = [new_node, updated_node_names,
node_name](absl::string_view fanin_node_name) {
return fanin_node_name == node_name ||
!CheckNodeNameExists(fanin_node_name, updated_node_names,
new_node->graph_view);
};
// Check if nodes of all fanins exist (from name) and if fanins do not
// introduce self loops.
for (const auto& regular : new_node->regular_fanins) {
if (invalid_node_name(regular.node())) {
return false;
}
}
for (const auto& control : new_node->controlling_fanins) {
if (invalid_node_name(control)) {
return false;
}
}
return true;
}
} // namespace internal
} // namespace utils
} // namespace grappler
} // namespace tensorflow
#endif // TENSORFLOW_CORE_GRAPPLER_UTILS_GRAPH_VIEW_INTERNAL_H_
| C | 5 | yage99/tensorflow | tensorflow/core/grappler/utils/graph_view_internal.h | [
"Apache-2.0"
] |
/*
Copyright 2018 The Kubernetes Authors.
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 options
import (
"github.com/spf13/pflag"
endpointconfig "k8s.io/kubernetes/pkg/controller/endpoint/config"
)
// EndpointControllerOptions holds the EndPointController options.
type EndpointControllerOptions struct {
*endpointconfig.EndpointControllerConfiguration
}
// AddFlags adds flags related to EndPointController for controller manager to the specified FlagSet.
func (o *EndpointControllerOptions) AddFlags(fs *pflag.FlagSet) {
if o == nil {
return
}
fs.Int32Var(&o.ConcurrentEndpointSyncs, "concurrent-endpoint-syncs", o.ConcurrentEndpointSyncs, "The number of endpoint syncing operations that will be done concurrently. Larger number = faster endpoint updating, but more CPU (and network) load")
fs.DurationVar(&o.EndpointUpdatesBatchPeriod.Duration, "endpoint-updates-batch-period", o.EndpointUpdatesBatchPeriod.Duration, "The length of endpoint updates batching period. Processing of pod changes will be delayed by this duration to join them with potential upcoming updates and reduce the overall number of endpoints updates. Larger number = higher endpoint programming latency, but lower number of endpoints revision generated")
}
// ApplyTo fills up EndPointController config with options.
func (o *EndpointControllerOptions) ApplyTo(cfg *endpointconfig.EndpointControllerConfiguration) error {
if o == nil {
return nil
}
cfg.ConcurrentEndpointSyncs = o.ConcurrentEndpointSyncs
cfg.EndpointUpdatesBatchPeriod = o.EndpointUpdatesBatchPeriod
return nil
}
// Validate checks validation of EndpointControllerOptions.
func (o *EndpointControllerOptions) Validate() []error {
if o == nil {
return nil
}
errs := []error{}
return errs
}
| Go | 4 | columbus9963/kubernetes | cmd/kube-controller-manager/app/options/endpointcontroller.go | [
"Apache-2.0"
] |
#test {
marker-type: ellipse;
line-offset: 2;
text-name: [name];
text-face-name: Arial;
text-largest-bbox-only: true;
}
| CartoCSS | 3 | nimix/carto | test/errorhandling/issue_474.mss | [
"Apache-2.0"
] |
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NW_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
#define NW_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
#include "base/callback.h"
#include "base/compiler_specific.h"
#include "base/i18n/rtl.h"
#include "base/memory/weak_ptr.h"
#include "components/autofill/core/browser/autofill_client.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
namespace content {
struct FrameNavigateParams;
struct LoadCommittedDetails;
class WebContents;
}
namespace autofill {
class AutofillDialogController;
class AutofillKeystoneBridgeWrapper;
class AutofillPopupControllerImpl;
struct FormData;
// Chrome implementation of AutofillClient.
class NWAutofillClient
: public AutofillClient,
public content::WebContentsUserData<NWAutofillClient>,
public content::WebContentsObserver {
public:
~NWAutofillClient() final;
// Called when the tab corresponding to |this| instance is activated.
void TabActivated();
// AutofillClient:
PersonalDataManager* GetPersonalDataManager() override;
scoped_refptr<AutofillWebDataService> GetDatabase() override;
PrefService* GetPrefs() override;
void HideRequestAutocompleteDialog() override;
void ShowAutofillSettings() override;
bool HasCreditCardScanFeature() override;
void ScanCreditCard(const CreditCardScanCallback& callback) override;
void ConfirmSaveCreditCard(
const base::Closure& save_card_callback) override;
void ShowRequestAutocompleteDialog(
const FormData& form,
content::RenderFrameHost* render_frame_host,
const ResultCallback& callback) override;
void ShowAutofillPopup(
const gfx::RectF& element_bounds,
base::i18n::TextDirection text_direction,
const std::vector<autofill::Suggestion>& suggestions,
base::WeakPtr<AutofillPopupDelegate> delegate) override;
void UpdateAutofillPopupDataListValues(
const std::vector<base::string16>& values,
const std::vector<base::string16>& labels) override;
void HideAutofillPopup() override;
bool IsAutocompleteEnabled() override;
void DetectAccountCreationForms(
content::RenderFrameHost* rfh,
const std::vector<autofill::FormStructure*>& forms) override;
void DidFillOrPreviewField(
const base::string16& autofilled_value,
const base::string16& profile_full_name) override;
// content::WebContentsObserver implementation.
void WebContentsDestroyed() override;
void ShowUnmaskPrompt(
const autofill::CreditCard& card,
base::WeakPtr<autofill::CardUnmaskDelegate> delegate) override;
void OnUnmaskVerificationResult(bool success) override;
void OnFirstUserGestureObserved() override;
private:
#if defined(OS_MACOSX) && !defined(OS_IOS)
// Creates |bridge_wrapper_|, which is responsible for dealing with Keystone
// notifications.
void RegisterForKeystoneNotifications();
// Deletes |bridge_wrapper_|.
void UnregisterFromKeystoneNotifications();
#endif // defined(OS_MACOSX) && !defined(OS_IOS)
explicit NWAutofillClient(content::WebContents* web_contents);
friend class content::WebContentsUserData<NWAutofillClient>;
content::WebContents* const web_contents_;
// base::WeakPtr<AutofillDialogController> dialog_controller_;
base::WeakPtr<AutofillPopupControllerImpl> popup_controller_;
#if defined(OS_MACOSX) && !defined(OS_IOS)
// Listens to Keystone notifications and passes relevant ones on to the
// PersonalDataManager.
//
// The class of this member must remain a forward declaration, even in the
// .cc implementation file, since the class is defined in a Mac-only
// implementation file. This means that the pointer cannot be wrapped in a
// scoped_ptr.
// AutofillKeystoneBridgeWrapper* bridge_wrapper_;
#endif // defined(OS_MACOSX) && !defined(OS_IOS)
DISALLOW_COPY_AND_ASSIGN(NWAutofillClient);
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_CHROME_AUTOFILL_CLIENT_H_
| C | 4 | namaljayathunga/nw.js | src/browser/nw_autofill_client.h | [
"MIT"
] |
/*
* This file is part of the X10 project (http://x10-lang.org).
*
* This file is licensed to You under the Eclipse Public License (EPL);
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.opensource.org/licenses/eclipse-1.0.php
*
* (C) Copyright IBM Corporation 2006-2016.
*/
import x10.io.Console;
import x10.util.Random;
/**
* This class represents a real-world problem in graphics engines --
* determining which objects in a large sprawling world are close enough to the
* camera to be considered for rendering.
*
* It illustrates the usage of X10 structs to define new primitive types.
* In Native X10, structs are allocated within their containing object/stack frame
* and thus using structs instead of classes for Vector3 and WorldObject greatly
* improves the memory efficiency of the computation.
*
* @Author Dave Cunningham
* @Author Vijay Saraswat
*/
class StructSpheres {
static type Real = Float;
static struct Vector3(x:Real, y:Real, z:Real) {
public def getX () = x;
public def getY () = y;
public def getZ () = z;
public def add (other:Vector3)
= Vector3(this.x+other.x, this.y+other.y, this.z+other.z);
public def neg () = Vector3(-this.x, -this.y, -this.z);
public def sub (other:Vector3) = add(other.neg());
public def length () = Math.sqrtf(length2());
public def length2 () = x*x + y*y + z*z;
}
static struct WorldObject {
def this (x:Real, y:Real, z:Real, r:Real) {
pos = Vector3(x,y,z);
renderingDistance = r;
}
public def intersects (home:Vector3)
= home.sub(pos).length2() < renderingDistance*renderingDistance;
protected val pos:Vector3;
protected val renderingDistance:Real;
}
public static def compute():boolean {
val reps = 7500;
// The following correspond to a modern out-door computer game:
val num_objects = 50000;
val world_size = 6000;
val obj_max_size = 400;
val ran = new Random(0);
// the array can go on the heap
// but the elements ought to be /*inlined*/ in the array
val spheres =
new Rail[WorldObject](num_objects, (i:long) => {
val x = (ran.nextDouble()*world_size) as Real;
val y = (ran.nextDouble()*world_size) as Real;
val z = (ran.nextDouble()*world_size) as Real;
val r = (ran.nextDouble()*obj_max_size) as Real;
return WorldObject(x,y,z,r);
});
val time_start = System.nanoTime();
var counter : Long = 0;
// HOT LOOP BEGINS
for (c in 1..reps) {
val x = (ran.nextDouble()*world_size) as Real;
val y = (ran.nextDouble()*world_size) as Real;
val z = (ran.nextDouble()*world_size) as Real;
val pos = Vector3(x,y,z);
for (i in spheres.range()) {
if (spheres(i).intersects(pos)) {
counter++;
}
}
}
// HOT LOOP ENDS
val time_taken = System.nanoTime() - time_start;
Console.OUT.println("Total time: "+time_taken/1E9);
val expected = 109702;
val ok = counter == expected;
if (!ok) {
Console.ERR.println("number of intersections: "+counter
+" (expected "+expected+")");
}
return ok;
}
public static def main (Rail[String]) {
compute();
}
}
| X10 | 5 | octonion/examples | languages/x10/StructSpheres.x10 | [
"MIT"
] |
(set-info :smt-lib-version 2.6)
(set-logic QF_UFLRA)
(set-info :source |CPAchecker with k-induction on SV-COMP14 program using MathSAT5, submitted by Philipp Wendler, http://cpachecker.sosy-lab.org|)
(set-info :category "industrial")
(set-info :status unsat)
(define-fun _1 () Bool true)
(declare-fun |main::lk3@2| () Real)
(declare-fun |main::lk5@2| () Real)
(declare-fun |main::lk5@4| () Real)
(declare-fun |main::lk6@7| () Real)
(declare-fun |main::lk6@5| () Real)
(declare-fun |main::lk2@7| () Real)
(declare-fun |main::lk3@3| () Real)
(declare-fun |main::lk4@6| () Real)
(declare-fun |main::lk4@2| () Real)
(declare-fun |main::lk2@6| () Real)
(declare-fun |main::lk2@3| () Real)
(declare-fun |main::lk5@3| () Real)
(declare-fun |main::lk6@6| () Real)
(declare-fun |main::lk6@4| () Real)
(declare-fun |main::lk4@4| () Real)
(declare-fun |main::cond@3| () Real)
(declare-fun |main::lk2@4| () Real)
(declare-fun |main::lk1@3| () Real)
(declare-fun |main::lk4@3| () Real)
(declare-fun |main::lk6@3| () Real)
(declare-fun |main::p7@1| () Real)
(declare-fun |main::lk3@6| () Real)
(declare-fun |main::lk4@7| () Real)
(declare-fun |main::lk7@3| () Real)
(declare-fun |main::lk7@4| () Real)
(declare-fun |main::lk2@2| () Real)
(declare-fun |main::lk5@7| () Real)
(declare-fun |main::lk1@5| () Real)
(declare-fun |main::lk7@5| () Real)
(declare-fun |main::p5@1| () Real)
(declare-fun |main::lk7@6| () Real)
(declare-fun |main::lk7@2| () Real)
(declare-fun |main::lk1@4| () Real)
(declare-fun |main::lk2@5| () Real)
(declare-fun |main::p1@1| () Real)
(declare-fun |main::lk5@5| () Real)
(declare-fun |main::cond@2| () Real)
(declare-fun |main::lk3@5| () Real)
(declare-fun |main::lk6@2| () Real)
(declare-fun |main::p6@1| () Real)
(declare-fun |main::lk4@5| () Real)
(declare-fun |main::p3@1| () Real)
(declare-fun |main::lk1@6| () Real)
(declare-fun |main::lk3@7| () Real)
(declare-fun |main::p2@1| () Real)
(declare-fun |main::lk1@2| () Real)
(declare-fun |main::p4@1| () Real)
(declare-fun |main::lk1@7| () Real)
(declare-fun |main::lk3@4| () Real)
(declare-fun |main::lk5@6| () Real)
(define-fun _7 () Real 0)
(define-fun _67 () Real |main::cond@3|)
(define-fun _68 () Bool (= _67 _7))
(define-fun _69 () Real 1)
(define-fun _72 () Bool (not _68))
(define-fun _74 () Real |main::lk1@3|)
(define-fun _77 () Real |main::lk2@3|)
(define-fun _80 () Real |main::lk3@3|)
(define-fun _83 () Real |main::lk4@3|)
(define-fun _86 () Real |main::lk5@3|)
(define-fun _89 () Real |main::lk6@3|)
(define-fun _92 () Real |main::lk7@3|)
(define-fun _101 () Real |main::lk1@4|)
(define-fun _104 () Bool (= _74 _101))
(define-fun _113 () Real |main::lk2@4|)
(define-fun _116 () Bool (= _77 _113))
(define-fun _125 () Real |main::lk3@4|)
(define-fun _128 () Bool (= _80 _125))
(define-fun _137 () Real |main::lk4@4|)
(define-fun _140 () Bool (= _83 _137))
(define-fun _149 () Real |main::lk5@4|)
(define-fun _152 () Bool (= _86 _149))
(define-fun _161 () Real |main::lk6@4|)
(define-fun _164 () Bool (= _89 _161))
(define-fun _173 () Real |main::lk7@4|)
(define-fun _176 () Bool (= _92 _173))
(define-fun _185 () Real |main::lk1@5|)
(define-fun _186 () Bool (= _185 _7))
(define-fun _197 () Real |main::lk2@5|)
(define-fun _198 () Bool (= _197 _7))
(define-fun _209 () Real |main::lk3@5|)
(define-fun _210 () Bool (= _209 _7))
(define-fun _221 () Real |main::lk4@5|)
(define-fun _222 () Bool (= _221 _7))
(define-fun _233 () Real |main::lk5@5|)
(define-fun _234 () Bool (= _233 _7))
(define-fun _245 () Real |main::lk6@5|)
(define-fun _246 () Bool (= _245 _7))
(define-fun _257 () Real |main::lk7@5|)
(define-fun _258 () Bool (= _257 _7))
(define-fun _295 () Real |main::cond@2|)
(define-fun _296 () Bool (= _295 _7))
(define-fun _298 () Bool (not _296))
(define-fun _299 () Real |main::lk1@2|)
(define-fun _300 () Bool (= _299 _7))
(define-fun _301 () Bool (and _298 _300))
(define-fun _302 () Real |main::lk2@2|)
(define-fun _303 () Bool (= _302 _7))
(define-fun _304 () Bool (and _301 _303))
(define-fun _305 () Real |main::lk3@2|)
(define-fun _306 () Bool (= _305 _7))
(define-fun _307 () Bool (and _304 _306))
(define-fun _308 () Real |main::lk4@2|)
(define-fun _309 () Bool (= _308 _7))
(define-fun _310 () Bool (and _307 _309))
(define-fun _311 () Real |main::lk5@2|)
(define-fun _312 () Bool (= _311 _7))
(define-fun _313 () Bool (and _310 _312))
(define-fun _314 () Real |main::lk6@2|)
(define-fun _315 () Bool (= _314 _7))
(define-fun _316 () Bool (and _313 _315))
(define-fun _317 () Real |main::lk7@2|)
(define-fun _318 () Bool (= _317 _7))
(define-fun _319 () Bool (and _316 _318))
(define-fun _320 () Real |main::p1@1|)
(define-fun _321 () Bool (= _320 _7))
(define-fun _322 () Bool (not _321))
(define-fun _324 () Bool (and _319 _322))
(define-fun _325 () Bool (and _319 _321))
(define-fun _326 () Bool (= _74 _69))
(define-fun _327 () Bool (and _324 _326))
(define-fun _328 () Bool (= _74 _299))
(define-fun _329 () Bool (and _325 _328))
(define-fun _330 () Bool (or _327 _329))
(define-fun _331 () Real |main::p2@1|)
(define-fun _332 () Bool (= _331 _7))
(define-fun _333 () Bool (not _332))
(define-fun _335 () Bool (and _330 _333))
(define-fun _336 () Bool (and _330 _332))
(define-fun _337 () Bool (= _77 _69))
(define-fun _338 () Bool (and _335 _337))
(define-fun _339 () Bool (= _77 _302))
(define-fun _340 () Bool (and _336 _339))
(define-fun _341 () Bool (or _338 _340))
(define-fun _342 () Real |main::p3@1|)
(define-fun _343 () Bool (= _342 _7))
(define-fun _344 () Bool (not _343))
(define-fun _346 () Bool (and _341 _344))
(define-fun _347 () Bool (and _341 _343))
(define-fun _348 () Bool (= _80 _69))
(define-fun _349 () Bool (and _346 _348))
(define-fun _350 () Bool (= _80 _305))
(define-fun _351 () Bool (and _347 _350))
(define-fun _352 () Bool (or _349 _351))
(define-fun _353 () Real |main::p4@1|)
(define-fun _354 () Bool (= _353 _7))
(define-fun _355 () Bool (not _354))
(define-fun _357 () Bool (and _352 _355))
(define-fun _358 () Bool (and _352 _354))
(define-fun _359 () Bool (= _83 _69))
(define-fun _360 () Bool (and _357 _359))
(define-fun _361 () Bool (= _83 _308))
(define-fun _362 () Bool (and _358 _361))
(define-fun _363 () Bool (or _360 _362))
(define-fun _364 () Real |main::p5@1|)
(define-fun _365 () Bool (= _364 _7))
(define-fun _366 () Bool (not _365))
(define-fun _368 () Bool (and _363 _366))
(define-fun _369 () Bool (and _363 _365))
(define-fun _370 () Bool (= _86 _69))
(define-fun _371 () Bool (and _368 _370))
(define-fun _372 () Bool (= _86 _311))
(define-fun _373 () Bool (and _369 _372))
(define-fun _374 () Bool (or _371 _373))
(define-fun _375 () Real |main::p6@1|)
(define-fun _376 () Bool (= _375 _7))
(define-fun _377 () Bool (not _376))
(define-fun _379 () Bool (and _374 _377))
(define-fun _380 () Bool (and _374 _376))
(define-fun _381 () Bool (= _89 _69))
(define-fun _382 () Bool (and _379 _381))
(define-fun _383 () Bool (= _89 _314))
(define-fun _384 () Bool (and _380 _383))
(define-fun _385 () Bool (or _382 _384))
(define-fun _386 () Real |main::p7@1|)
(define-fun _387 () Bool (= _386 _7))
(define-fun _388 () Bool (not _387))
(define-fun _390 () Bool (and _385 _388))
(define-fun _391 () Bool (and _385 _387))
(define-fun _392 () Bool (= _92 _69))
(define-fun _393 () Bool (and _390 _392))
(define-fun _394 () Bool (= _92 _317))
(define-fun _395 () Bool (and _391 _394))
(define-fun _396 () Bool (or _393 _395))
(define-fun _397 () Bool (and _322 _396))
(define-fun _398 () Bool (and _321 _396))
(define-fun _402 () Bool (and _326 _397))
(define-fun _403 () Bool (= _101 _7))
(define-fun _404 () Bool (and _402 _403))
(define-fun _405 () Bool (and _104 _398))
(define-fun _406 () Bool (or _404 _405))
(define-fun _407 () Bool (and _333 _406))
(define-fun _408 () Bool (and _332 _406))
(define-fun _412 () Bool (and _337 _407))
(define-fun _413 () Bool (= _113 _7))
(define-fun _414 () Bool (and _412 _413))
(define-fun _415 () Bool (and _116 _408))
(define-fun _416 () Bool (or _414 _415))
(define-fun _417 () Bool (and _344 _416))
(define-fun _418 () Bool (and _343 _416))
(define-fun _422 () Bool (and _348 _417))
(define-fun _423 () Bool (= _125 _7))
(define-fun _424 () Bool (and _422 _423))
(define-fun _425 () Bool (and _128 _418))
(define-fun _426 () Bool (or _424 _425))
(define-fun _427 () Bool (and _355 _426))
(define-fun _428 () Bool (and _354 _426))
(define-fun _432 () Bool (and _359 _427))
(define-fun _433 () Bool (= _137 _7))
(define-fun _434 () Bool (and _432 _433))
(define-fun _435 () Bool (and _140 _428))
(define-fun _436 () Bool (or _434 _435))
(define-fun _437 () Bool (and _366 _436))
(define-fun _438 () Bool (and _365 _436))
(define-fun _442 () Bool (and _370 _437))
(define-fun _443 () Bool (= _149 _7))
(define-fun _444 () Bool (and _442 _443))
(define-fun _445 () Bool (and _152 _438))
(define-fun _446 () Bool (or _444 _445))
(define-fun _447 () Bool (and _377 _446))
(define-fun _448 () Bool (and _376 _446))
(define-fun _452 () Bool (and _381 _447))
(define-fun _453 () Bool (= _161 _7))
(define-fun _454 () Bool (and _452 _453))
(define-fun _455 () Bool (and _164 _448))
(define-fun _456 () Bool (or _454 _455))
(define-fun _457 () Bool (and _388 _456))
(define-fun _458 () Bool (and _387 _456))
(define-fun _462 () Bool (and _392 _457))
(define-fun _463 () Bool (= _173 _7))
(define-fun _464 () Bool (and _462 _463))
(define-fun _465 () Bool (and _176 _458))
(define-fun _466 () Bool (or _464 _465))
(define-fun _468 () Bool (and _72 _466))
(define-fun _493 () Bool (and _186 _468))
(define-fun _494 () Bool (and _198 _493))
(define-fun _495 () Bool (and _210 _494))
(define-fun _496 () Bool (and _222 _495))
(define-fun _497 () Bool (and _234 _496))
(define-fun _498 () Bool (and _246 _497))
(define-fun _499 () Bool (and _258 _498))
(define-fun _500 () Bool (and _322 _499))
(define-fun _501 () Bool (and _321 _499))
(define-fun _502 () Real |main::lk1@6|)
(define-fun _503 () Bool (= _502 _69))
(define-fun _504 () Bool (and _500 _503))
(define-fun _505 () Bool (= _185 _502))
(define-fun _506 () Bool (and _501 _505))
(define-fun _507 () Bool (or _504 _506))
(define-fun _508 () Bool (and _333 _507))
(define-fun _509 () Bool (and _332 _507))
(define-fun _510 () Real |main::lk2@6|)
(define-fun _511 () Bool (= _510 _69))
(define-fun _512 () Bool (and _508 _511))
(define-fun _513 () Bool (= _197 _510))
(define-fun _514 () Bool (and _509 _513))
(define-fun _515 () Bool (or _512 _514))
(define-fun _516 () Bool (and _344 _515))
(define-fun _517 () Bool (and _343 _515))
(define-fun _518 () Real |main::lk3@6|)
(define-fun _519 () Bool (= _518 _69))
(define-fun _520 () Bool (and _516 _519))
(define-fun _521 () Bool (= _209 _518))
(define-fun _522 () Bool (and _517 _521))
(define-fun _523 () Bool (or _520 _522))
(define-fun _524 () Bool (and _355 _523))
(define-fun _525 () Bool (and _354 _523))
(define-fun _526 () Real |main::lk4@6|)
(define-fun _527 () Bool (= _526 _69))
(define-fun _528 () Bool (and _524 _527))
(define-fun _529 () Bool (= _221 _526))
(define-fun _530 () Bool (and _525 _529))
(define-fun _531 () Bool (or _528 _530))
(define-fun _532 () Bool (and _366 _531))
(define-fun _533 () Bool (and _365 _531))
(define-fun _534 () Real |main::lk5@6|)
(define-fun _535 () Bool (= _534 _69))
(define-fun _536 () Bool (and _532 _535))
(define-fun _537 () Bool (= _233 _534))
(define-fun _538 () Bool (and _533 _537))
(define-fun _539 () Bool (or _536 _538))
(define-fun _540 () Bool (and _377 _539))
(define-fun _541 () Bool (and _376 _539))
(define-fun _542 () Real |main::lk6@6|)
(define-fun _543 () Bool (= _542 _69))
(define-fun _544 () Bool (and _540 _543))
(define-fun _545 () Bool (= _245 _542))
(define-fun _546 () Bool (and _541 _545))
(define-fun _547 () Bool (or _544 _546))
(define-fun _548 () Bool (and _388 _547))
(define-fun _549 () Bool (and _387 _547))
(define-fun _550 () Real |main::lk7@6|)
(define-fun _551 () Bool (= _550 _69))
(define-fun _552 () Bool (and _548 _551))
(define-fun _553 () Bool (= _257 _550))
(define-fun _554 () Bool (and _549 _553))
(define-fun _555 () Bool (or _552 _554))
(define-fun _556 () Bool (and _322 _555))
(define-fun _557 () Bool (and _321 _555))
(define-fun _561 () Bool (and _503 _556))
(define-fun _578 () Real |main::lk1@7|)
(define-fun _579 () Bool (= _578 _7))
(define-fun _580 () Bool (and _561 _579))
(define-fun _581 () Bool (= _502 _578))
(define-fun _582 () Bool (and _557 _581))
(define-fun _583 () Bool (or _580 _582))
(define-fun _584 () Bool (and _333 _583))
(define-fun _585 () Bool (and _332 _583))
(define-fun _589 () Bool (and _511 _584))
(define-fun _600 () Real |main::lk2@7|)
(define-fun _601 () Bool (= _600 _7))
(define-fun _602 () Bool (and _589 _601))
(define-fun _603 () Bool (= _510 _600))
(define-fun _604 () Bool (and _585 _603))
(define-fun _605 () Bool (or _602 _604))
(define-fun _606 () Bool (and _344 _605))
(define-fun _607 () Bool (and _343 _605))
(define-fun _611 () Bool (and _519 _606))
(define-fun _621 () Real |main::lk3@7|)
(define-fun _622 () Bool (= _621 _7))
(define-fun _623 () Bool (and _611 _622))
(define-fun _624 () Bool (= _518 _621))
(define-fun _625 () Bool (and _607 _624))
(define-fun _626 () Bool (or _623 _625))
(define-fun _627 () Bool (and _355 _626))
(define-fun _628 () Bool (and _354 _626))
(define-fun _632 () Bool (and _527 _627))
(define-fun _641 () Real |main::lk4@7|)
(define-fun _642 () Bool (= _641 _7))
(define-fun _643 () Bool (and _632 _642))
(define-fun _644 () Bool (= _526 _641))
(define-fun _645 () Bool (and _628 _644))
(define-fun _646 () Bool (or _643 _645))
(define-fun _647 () Bool (and _366 _646))
(define-fun _648 () Bool (and _365 _646))
(define-fun _652 () Bool (and _535 _647))
(define-fun _660 () Real |main::lk5@7|)
(define-fun _661 () Bool (= _660 _7))
(define-fun _662 () Bool (and _652 _661))
(define-fun _663 () Bool (= _534 _660))
(define-fun _664 () Bool (and _648 _663))
(define-fun _665 () Bool (or _662 _664))
(define-fun _666 () Bool (and _377 _665))
(define-fun _667 () Bool (and _376 _665))
(define-fun _671 () Bool (and _543 _666))
(define-fun _678 () Real |main::lk6@7|)
(define-fun _679 () Bool (= _678 _7))
(define-fun _680 () Bool (and _671 _679))
(define-fun _681 () Bool (= _542 _678))
(define-fun _682 () Bool (and _667 _681))
(define-fun _683 () Bool (or _680 _682))
(define-fun _684 () Bool (and _388 _683))
(define-fun _731 () Bool (not _606))
(define-fun _732 () Bool (or _519 _731))
(define-fun _734 () Bool (not _627))
(define-fun _735 () Bool (or _527 _734))
(define-fun _736 () Bool (and _732 _735))
(define-fun _738 () Bool (not _666))
(define-fun _739 () Bool (or _543 _738))
(define-fun _740 () Bool (and _736 _739))
(define-fun _742 () Bool (not _556))
(define-fun _743 () Bool (or _503 _742))
(define-fun _744 () Bool (and _740 _743))
(define-fun _746 () Bool (not _647))
(define-fun _747 () Bool (or _535 _746))
(define-fun _748 () Bool (and _744 _747))
(define-fun _750 () Bool (not _684))
(define-fun _751 () Bool (or _551 _750))
(define-fun _752 () Bool (and _748 _751))
(define-fun _754 () Bool (not _584))
(define-fun _755 () Bool (or _511 _754))
(define-fun _756 () Bool (and _752 _755))
(define-fun _757 () Bool (not _756))
(assert _1)
(assert _757)
(check-sat)
(exit)
| SMT | 2 | livinlife6751/infer | sledge/test/smt/QF_UFLRA/cpachecker-induction-svcomp14/cpachecker-induction.test_locks_7_true-unreach-call_false-termination.c.smt2 | [
"MIT"
] |
export * as a from "./subdir/a.ts";
| TypeScript | 3 | Preta-Crowz/deno | cli/tests/bundle/file_tests-fixture08.ts | [
"MIT"
] |
(* Lens for the mount provider
Fork of the upstream Fstab lens. The main difference is that
comma-separated options and vfstype are not parsed into individual
entries, and are rather kept as one string
*)
module Mount_Fstab =
let sep_tab = Sep.tab
let sep_spc = Sep.space
let comma = Sep.comma
let eol = Util.eol
let comment = Util.comment
let empty = Util.empty
let file = /[^# \t\n]+/
(* An option label can't contain comma, comment, equals, or space *)
let optlabel = /[^,#= \n\t]+/
let spec = /[^,# \n\t][^ \n\t]*/
let comma_sep_list (l:string) =
let value = [ label "value" . Util.del_str "=" . ( store Rx.neg1 )? ] in
let lns = [ label l . store optlabel . value? ] in
Build.opt_list lns comma
let record = [ seq "mntent" .
[ label "spec" . store spec ] . sep_tab .
[ label "file" . store file ] . sep_tab .
[label "vfstype" . store file ] .
(sep_tab . [label "options" . store file ] .
(sep_tab . [ label "dump" . store /[0-9]+/ ] .
( sep_spc . [ label "passno" . store /[0-9]+/ ])? )? )?
. Util.comment_or_eol ]
let lns = ( empty | comment | record ) *
| Augeas | 5 | puppetlabs/libral | data/lenses/mount_fstab.aug | [
"Apache-2.0"
] |
// adapted from the book. You can find the original here:
// https://github.com/githwxi/ATS-Postiats/blob/master/doc/EXAMPLE/MISC/wclines.dats
staload "SATS/utils.sats"
staload "SATS/filetype.sats"
staload "SATS/error.sats"
staload "prelude/SATS/pointer.sats"
staload "libats/libc/SATS/stdio.sats"
staload UN = "prelude/SATS/unsafe.sats"
// FIXME: changing BUFSZ changes the # of comments & the # of blanks
#define BUFSZ (16*1024)
%{#
#include <string.h>
%}
%{^
#include <stdbool.h>
bool is_link(char *path) {
struct stat buf;
int x;
x = lstat(path, &buf);
return S_ISLNK(buf.st_mode);
}
%}
extern
fn is_link(string) : bool =
"mac#"
extern
fun memchr {l:addr}{m:nat}(pf : bytes_v(l, m) | p : ptr(l), c : char, size_t) :
[ l0 : addr | l+m > l0 ] (bytes_v(l, l0-l), bytes_v(l0, l+m-l0)| ptr(l0)) =
"mac#"
fn freadc_ {l:addr}{ sz : nat | sz >= 1 }(pf : !bytes_v(l, sz)
| inp : !FILEptr1, bufsize : size_t(sz), p : ptr(l), c : char) : size_t =
let
extern
castfn as_fileref(x : !FILEptr1) :<> FILEref
var n = $extfcall(size_t, "fread", p, sizeof<char>, bufsize - 1, as_fileref(inp))
val () = $UN.ptr0_set<char>(ptr_add<char>(p, n), c)
in
n
end
fn freadc {l:addr}(pf : !bytes_v(l, BUFSZ) | inp : !FILEptr1, p : ptr(l), c : char) : size_t =
freadc_(pf | inp, i2sz(BUFSZ), p, c)
vtypedef pair = @{ f = char, s = Option_vt(char) }
fn get_chars {m:nat}(s : string(m)) : Option_vt(pair) =
let
var l = length(s)
in
ifcase
| l >= 2 => let
val p = @{ f = string_head(s), s = Some_vt(s[1]) }
in
Some_vt(p)
end
| l >= 1 => let
val p = @{ f = string_head(s), s = None_vt }
in
Some_vt(p)
end
| _ => None_vt
end
// safely read bytes at a pointer
fn read_bytes {l:addr}{ m : nat | m > 0 }(pf : !bytes_v(l, m) | p : ptr(l)) : char =
$UN.ptr0_get<char>(p)
fn read_bytes_succ {l:addr}{ m : nat | m > 1 }(pf : !bytes_v(l, m) | p : ptr(l)) : char =
$UN.ptr0_get<char>(ptr_succ<char>(p))
fn compare_bytes {l:addr}{m:nat}(pf : !bytes_v(l, m) | p : ptr(l), comment : !Option_vt(pair)) : '(bool, bool) =
let
var match = lam@ (x : char, y : !Option_vt(char)) : bool =>
case+ y of
| Some_vt (z) => x = z
| None_vt() => true
// FIXME: this will fail if we have a comment at the boundaries.
var s2 = $UN.ptr0_get<char>(p)
var b = s2 = '\n'
var b2 = case+ comment of
| None_vt() => false
| Some_vt (p0) => let
var s3 = $UN.ptr0_get<char>(ptr_succ<char>(p))
in
s2 = p0.f && match(s3, p0.s)
end
in
'(b, b2)
end
// TODO: try to do call-by-reference but also stack allocate?
// this uses call-by-reference to go extra fast
fun wclbuf {l:addr}{n:nat}{l1:addr}( pf : !bytes_v(l, n) | p : ptr(l)
, pz : ptr(l1)
, res : file
, comment : !Option_vt(pair)
, ret : &file? >> file
) : void =
let
val (pf1, pf2 | p2) = memchr(pf | p, '\n', i2sz(BUFSZ))
var match_acc_file = lam@ (b : bool, b2 : bool) : file =>
case+ (b, b2) of
| (true, true) => @{ files = 0, blanks = 1, comments = 1, lines = 1 }
| (true, false) => @{ files = 0, blanks = 1, comments = 0, lines = 1 }
| (false, true) => @{ files = 0, blanks = 0, comments = 1, lines = 1 }
| (false, false) => @{ files = 0, blanks = 0, comments = 0, lines = 1 }
in
if p2 < pz then
let
prval (pf21, pf22) = array_v_uncons(pf2)
// FIXME: this will always ignore a comment in the first line of a file...
val '(cmp1, cmp2) = compare_bytes(pf22 | ptr_succ<byte>(p2), comment)
var acc_file = match_acc_file(cmp1, cmp2)
val () = wclbuf(pf22 | ptr_succ<byte>(p2), pz, res + acc_file, comment, ret)
prval () = pf2 := array_v_cons(pf21,pf22)
prval () = pf := bytes_v_unsplit(pf1,pf2)
in end
else
let
prval () = pf := bytes_v_unsplit(pf1,pf2)
in
ret := res
end
end
fn wclfil {l:addr}(pf : !bytes_v(l, BUFSZ) | inp : !FILEptr1, p : ptr(l), comment : !Option_vt(pair)) : file =
let
var acc_file = @{ files = 1, blanks = ~1, comments = 0, lines = 0 } : file
fun loop(pf : !bytes_v(l, BUFSZ) | inp : !FILEptr1, p : ptr(l), res : file, comment : !Option_vt(pair)) : file =
let
var n = freadc(pf | inp, p, '\n')
in
if n > 0 then
let
extern
castfn witness(x : size_t) :<> [m:nat] size_t(m)
var pz = ptr_add<char>(p, witness(n))
var ret: file
val () = wclbuf(pf | p, pz, res, comment, ret)
in
loop(pf | inp, p, ret, comment)
end
else
let
fn postproc(acc : file) : file =
let
var acc_r = ref<file>(acc)
val () = if acc.blanks = ~1 then
acc_r -> blanks := 0
else
()
in
!acc_r
end
in
postproc(res)
end
end
in
loop(pf | inp, p, acc_file, comment)
end
fn clear_opt(x : Option_vt(char)) : void =
case+ x of
| ~None_vt() => ()
| ~Some_vt (_) => ()
overload free with clear_opt
fn clear_function(x : Option_vt(pair)) : void =
case+ x of
| ~None_vt() => ()
| ~Some_vt (x) => free(x.s)
overload free with clear_function
val empty_file: file = let
var f = @{ files = 0, blanks = 0, comments = 0, lines = 0 } : file
in
f
end
fn count_char(s : string, comment : Option_vt(pair)) : file =
let
// TODO: use a dataview to make this safe??
var inp = fopen(s, file_mode_r)
in
if FILEptr_is_null(inp) then
let
extern
castfn fp_is_null { l : addr | l == null }{m:fm} (FILEptr(l,m)) :<> void
val () = fp_is_null(inp)
val () = bad_file(s)
in
(free(comment) ; empty_file)
end
else
let
// TODO: allocate once per thread
val (pfat, pfgc | p) = malloc_gc(g1i2u(BUFSZ))
prval () = pfat := b0ytes2bytes_v(pfat)
var res = wclfil(pfat | inp, p, comment)
val () = mfree_gc(pfat, pfgc | p)
val () = fclose1_exn(inp)
val () = free(comment)
in
res
end
end
// This ensures safety.
typedef small_string = [ m : nat | m <= 2 && m > 0 ] string(m)
fn line_count_skip_links(s : string, pre : Option_vt(small_string)) : file =
if is_link(s) then
case+ pre of
| ~Some_vt (_) => empty_file
| ~None_vt() => empty_file
else
case+ pre of
| ~Some_vt (x) => count_char(s, get_chars(x))
| ~None_vt() => count_char(s, None_vt)
fn line_count(s : string, pre : Option_vt(small_string)) : file =
case+ pre of
| ~Some_vt (x) => count_char(s, get_chars(x))
| ~None_vt() => count_char(s, None_vt)
| ATS | 5 | lambdaxymox/polyglot | DATS/count-loop.dats | [
"BSD-3-Clause"
] |
/* Copyright (c) 2017-2019 Netronome Systems, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
;TEST_INIT_EXEC nfp-reg mereg:i32.me0.XferIn_32=0xf
;TEST_INIT_EXEC nfp-reg mereg:i32.me0.XferIn_33=0xdeadbeef
#include "actions_harness.uc"
#include "pkt_ipv4_opt_icmp_csums_zero_68B_x80.uc"
#include <single_ctx_test.uc>
#include <global.uc>
#include <bitfields.uc>
#macro test_read_csum(out_csum, in_offset)
.begin
.reg addr
.reg read $csum
.sig sig_read
move(addr, 0x80)
mem[read8, $csum, addr, in_offset, 2], ctx_swap[sig_read]
alu[out_csum, --, B, $csum, >>16]
.end
#endm
#macro test_write_csum(in_offset, in_csum)
.begin
.reg addr
.reg write $csum
.sig sig_write
move(addr, 0x80)
alu[$csum, --, B, in_csum, <<16]
mem[write8, $csum, addr, in_offset, 2], ctx_swap[sig_write]
.end
#endm
.reg csum
// test noop
bits_clr__sz1(BF_AL(pkt_vec, PV_CSUM_OFFLOAD_bf), 0xf)
test_action_reset()
__actions_checksum(pkt_vec)
test_assert_equal(*$index, 0xdeadbeef)
test_read_csum(csum, 0x18)
test_assert_equal(csum, 0)
// test outer L4 checksum update (zero in packet)
bits_set__sz1(BF_AL(pkt_vec, PV_CSUM_OFFLOAD_OL3_bf), 1)
test_action_reset()
__actions_checksum(pkt_vec)
test_assert_equal(*$index, 0xdeadbeef)
test_read_csum(csum, 0x18)
test_assert_equal(csum, 0x137c)
// test outer L4 checksum update (garbage in packet)
immed[csum, 0x1234]
test_write_csum(0x18, csum)
test_action_reset()
__actions_checksum(pkt_vec)
test_assert_equal(*$index, 0xdeadbeef)
test_read_csum(csum, 0x18)
test_assert_equal(csum, 0x137c)
test_pass()
PV_SEEK_SUBROUTINE#:
pv_seek_subroutine(pkt_vec)
| UnrealScript | 3 | pcasconnetronome/nic-firmware | test/datapath/actions_csum_update_ipv4_opt_icmp_68B_x80_test.uc | [
"BSD-2-Clause"
] |
#!/bin/bash
# This script installs CCache with CUDA support.
# Example usage:
# ./ccache_setup.sh --path /installed/folder
set -e
shopt -s expand_aliases
# Setup the proxy
alias with_proxy="HTTPS_PROXY=http://fwdproxy:8080 HTTP_PROXY=http://fwdproxy:8080 FTP_PROXY=http://fwdproxy:8080 https_proxy=http://fwdproxy:8080 http_proxy=http://fwdproxy:8080 ftp_proxy=http://fwdproxy:8080 http_no_proxy='*.facebook.com|*.tfbnw.net|*.fb.com'"
# Parse options
path="$HOME/ccache"
force=false
while [[ $# -gt 0 ]]; do
case "$1" in
--path)
shift
path="$1"
path=$(realpath "$path")
;;
--force) # Force install
force=true
;;
--help)
echo 'usage: ./ccache_setup.py --path /installed/folder [--force]'
exit 0
;;
*)
echo "Invalid option: $1"
exit 1
;;
esac
shift
done
# Check whether you put nvcc in PATH
set +e
nvcc_path=$(which nvcc)
if [[ -z "$nvcc_path" ]]; then
nvcc_path="/usr/local/cuda/bin/nvcc"
export PATH="/usr/local/cuda/bin:$PATH"
fi
set -e
if [ ! -f "$nvcc_path" ] && ! $force; then
# shellcheck disable=SC2016
echo 'nvcc is not detected in $PATH'
exit 1
fi
echo "nvcc is detected at $nvcc_path"
if [ -f "$CUDA_NVCC_EXECUTABLE" ] && [[ "$CUDA_NVCC_EXECUTABLE" == *"ccache"* ]]; then # Heuristic rule
if $CUDA_NVCC_EXECUTABLE --version; then
if ! $force; then
echo "CCache with nvcc support is already installed at $CUDA_NVCC_EXECUTABLE, please add --force"
exit 0
fi
fi
fi
# Installing CCache
echo "CCache will be installed at $path"
if [ -e "$path" ]; then
mv --backup=t -T "$path" "${path}.old"
fi
with_proxy git clone https://github.com/colesbury/ccache.git "$path" -b ccbin
cd "$path"
./autogen.sh
./configure
make install prefix="$path"
mkdir -p "$path/lib"
mkdir -p "$path/cuda"
ln -sf "$path/bin/ccache" "$path/lib/cc"
ln -sf "$path/bin/ccache" "$path/lib/c++"
ln -sf "$path/bin/ccache" "$path/lib/gcc"
ln -sf "$path/bin/ccache" "$path/lib/g++"
ln -sf "$path/bin/ccache" "$path/cuda/nvcc"
"$path/bin/ccache" -M 25Gi
# Make sure the nvcc wrapped in CCache is runnable
"$path/cuda/nvcc" --version
echo 'Congrats! The CCache with nvcc support is installed!'
echo -e "Please add the following lines to your bash init script:\\n"
echo "################ Env Var for CCache with CUDA support ################"
# shellcheck disable=SC2016
echo 'export PATH="'"$path"'/lib:$PATH"'
echo 'export CUDA_NVCC_EXECUTABLE="'"$path"'/cuda/nvcc"'
echo '######################################################################'
| Shell | 4 | Hacky-DH/pytorch | scripts/fbcode-dev-setup/ccache_setup.sh | [
"Intel"
] |
<nav class="side-nav">
<h1><__trans phrase="Recent Entries"></h1>
<ul>
<mt:entries lastn="5">
<li><a href="<mt:entrypermalink>"><mt:entrytitle></a></li>
</mt:entries>
</ul>
</nav>
<nav class="side-nav">
<h1><__trans phrase="Categories"></h1>
<mt:TopLevelCategories>
<mt:SubCatIsFirst>
<ul>
</mt:SubCatIsFirst>
<mt:If tag="CategoryCount">
<li><a href="<$mt:CategoryArchiveLink$>"<mt:If tag="CategoryDescription"> title="<$mt:CategoryDescription remove_html="1" encode_html="1"$>"</mt:If>><$mt:CategoryLabel$> (<$mt:CategoryCount$>)</a>
<mt:Else>
<li><$mt:CategoryLabel$>
</mt:If>
<$mt:SubCatsRecurse$>
</li>
<mt:SubCatIsLast>
</ul>
</mt:SubCatIsLast>
</mt:TopLevelCategories>
</nav>
<nav class="side-nav">
<h1><__trans phrase="Yearly Archives"></h1>
<ul>
<mt:archivelist archive_type="Yearly">
<li><a href="<mt:archivelink>"><mt:archivetitle></a></li>
</mt:archivelist>
</ul>
</nav>
| MTML | 3 | movabletype/mt-theme-SimpleCorporate | themes/simplecorporate/templates/blog_sidemenu.mtml | [
"MIT"
] |
// Copyright 2006-2015 Las Venturas Playground. All rights reserved.
// Use of this source code is governed by the GPLv2 license, a copy of which can
// be found in the LICENSE file.
// Todo: they all need to be converted to dialogs (DIALOG_STYLE_LIST)
new const airportPrice = GetEconomyValue(AirportFlight);
new airportPriceString[24];
FinancialUtilities->formatPrice(airportPrice, airportPriceString, sizeof(airportPriceString));
// LV AIRPORT:
AirportMenu[0] = CreateMenu("LV Airport:", 2, 0.0, 200.0, 120.0, 250.0);
SetMenuColumnHeader(AirportMenu[0],0,"Destination");
AddMenuItem(AirportMenu[0],0,"San fierro");
AddMenuItem(AirportMenu[0],0,"Los Santos");
AddMenuItem(AirportMenu[0],0,"Liberty City");
SetMenuColumnHeader(AirportMenu[0],1,"Price");
AddMenuItem(AirportMenu[0],1,airportPriceString);
AddMenuItem(AirportMenu[0],1,airportPriceString);
AddMenuItem(AirportMenu[0],1,airportPriceString);
// SF AIRPORT:
AirportMenu[1] = CreateMenu("SF Airport:", 2, 0.0, 200.0, 120.0, 250.0);
SetMenuColumnHeader(AirportMenu[1],0,"Destination");
AddMenuItem(AirportMenu[1],0,"Las Venturas");
AddMenuItem(AirportMenu[1],0,"Los Santos");
AddMenuItem(AirportMenu[1],0,"Liberty City");
SetMenuColumnHeader(AirportMenu[0],1,"Price");
AddMenuItem(AirportMenu[1],1,airportPriceString);
AddMenuItem(AirportMenu[1],1,airportPriceString);
AddMenuItem(AirportMenu[1],1,airportPriceString);
// LS AIRPORT:
AirportMenu[2] = CreateMenu("LS Airport:", 2, 0.0, 200.0, 120.0, 250.0);
SetMenuColumnHeader(AirportMenu[2],0,"Destination");
AddMenuItem(AirportMenu[2],0,"Las Venturas");
AddMenuItem(AirportMenu[2],0,"San fierro");
AddMenuItem(AirportMenu[2],0,"Liberty City");
SetMenuColumnHeader(AirportMenu[2],1,"Price");
AddMenuItem(AirportMenu[2],1,airportPriceString);
AddMenuItem(AirportMenu[2],1,airportPriceString);
AddMenuItem(AirportMenu[2],1,airportPriceString);
// Liberty City:
AirportMenu[3] = CreateMenu("Liberty City:", 2, 0.0, 200.0, 120.0, 250.0);
SetMenuColumnHeader(AirportMenu[3],0,"Destination");
AddMenuItem(AirportMenu[3],0,"Las Venturas");
AddMenuItem(AirportMenu[3],0,"San fierro");
AddMenuItem(AirportMenu[3],0,"Los Santos");
SetMenuColumnHeader(AirportMenu[3],1,"Price");
AddMenuItem(AirportMenu[3],1,airportPriceString);
AddMenuItem(AirportMenu[3],1,airportPriceString);
AddMenuItem(AirportMenu[3],1,airportPriceString);
| PAWN | 3 | EPIC-striker/playground | pawn/Interface/menus.pwn | [
"MIT"
] |
import * as React from 'react';
import { OverridableStringUnion } from '@mui/types';
import { unstable_createCssVarsProvider as createCssVarsProvider } from '@mui/system';
// Test design system layer
type DesignSystemColorScheme = 'light' | 'dark';
interface Colors {
palette: {
primary: {
500: string;
};
};
}
interface DesignSystemThemeInput {
colorSchemes: Record<DesignSystemColorScheme, Colors>;
fontSize: {
md: string;
};
}
createCssVarsProvider<DesignSystemThemeInput, DesignSystemColorScheme>({
theme: {
fontSize: {
md: '1rem',
},
// @ts-expect-error 'dark' is missing
colorSchemes: {
light: {
palette: {
primary: {
500: '#007FFF',
},
},
},
},
},
});
createCssVarsProvider<DesignSystemThemeInput, DesignSystemColorScheme>(
// @ts-expect-error 'defaultColorScheme' is missing
{
theme: {
fontSize: {
md: '1rem',
},
colorSchemes: {
light: {
palette: {
primary: {
500: '#007FFF',
},
},
},
dark: {
palette: {
primary: {
500: '#007FFF',
},
},
},
},
},
},
);
createCssVarsProvider<DesignSystemThemeInput, DesignSystemColorScheme>({
theme: {
fontSize: {
md: '1rem',
},
// @ts-expect-error `lineHeight` is not in DesignSystemTheme
lineHeight: {},
colorSchemes: {
light: {
palette: {
primary: {
500: '#007FFF',
},
},
},
dark: {
palette: {
primary: {
500: '#007FFF',
},
},
},
},
},
// @ts-expect-error `yellow` is not in DesignSystemColorScheme
defaultColorScheme: 'yellow',
});
createCssVarsProvider<DesignSystemThemeInput, DesignSystemColorScheme>({
theme: {
fontSize: {
md: '1rem',
},
colorSchemes: {
light: {
palette: {
primary: {
500: '#007FFF',
},
},
},
dark: {
palette: {
primary: {
// @ts-expect-error `main` is not in Palette
main: '#007FFF',
},
},
},
},
},
defaultColorScheme: 'dark',
});
// ==============================
// Test application layer
interface JoyColorSchemeOverrides {}
type JoyExtendedColorScheme = OverridableStringUnion<never, JoyColorSchemeOverrides>;
type JoyColorScheme = 'light' | 'dark';
interface JoyColors {
palette: {
primary: {
main: string;
};
};
}
interface JoyThemeInput {
colorSchemes: Record<JoyColorScheme, JoyColors>;
fontSize: string;
fontFamily: string;
}
interface ApplicationThemeInput {
colorSchemes: Record<JoyExtendedColorScheme, JoyColors>;
fontSize: string;
fontFamily: string;
}
// Simulate color scheme extending, same as module augmentation in real application
interface JoyColorSchemeOverrides {
white: true;
}
const { CssVarsProvider } = createCssVarsProvider<
JoyThemeInput,
JoyColorScheme,
ApplicationThemeInput,
JoyExtendedColorScheme
>({
theme: {
fontSize: '1rem',
fontFamily: 'IBM Plex Sans',
colorSchemes: {
light: {
palette: {
primary: {
main: '#007FFF',
},
},
},
dark: {
palette: {
primary: {
main: '#007FFF',
},
},
},
},
},
defaultColorScheme: 'light',
});
function App() {
return (
<CssVarsProvider
theme={{
// @ts-expect-error `white` is missing
colorSchemes: {},
}}
/>
);
}
function App2() {
return (
<CssVarsProvider
theme={{
// @ts-expect-error `lineHeight` is not in theme
lineHeight: 1,
colorSchemes: {
white: {
palette: {
primary: {
main: '#ff5252',
},
},
},
},
}}
// @ts-expect-error `yellow` is not in
defaultColorScheme="yellow"
/>
);
}
// =========================
interface Joy2ColorSchemeOverrides {}
type Joy2ExtendedColorScheme = OverridableStringUnion<never, Joy2ColorSchemeOverrides>;
type Joy2ColorScheme = 'light' | 'dark';
interface Joy2Colors {
palette: {
primary: {
main: string;
};
};
}
interface Joy2ThemeInput {
colorSchemes: Record<Joy2ColorScheme, Joy2Colors>;
fontSize: string;
fontFamily: string;
}
interface Application2ThemeInput {
colorSchemes: Record<Joy2ExtendedColorScheme, Joy2Colors>;
fontSize: string;
fontFamily: string;
}
// Simulate color scheme extending, same as module augmentation in real application
interface Joy2ColorSchemeOverrides {
comfort: true;
trueDark: true;
}
const { CssVarsProvider: CssVarsProvider2, useColorScheme } = createCssVarsProvider<
Joy2ThemeInput,
Joy2ColorScheme,
Application2ThemeInput,
Joy2ExtendedColorScheme
>({
theme: {
fontSize: '1rem',
fontFamily: 'IBM Plex Sans',
colorSchemes: {
light: {
palette: {
primary: {
main: '#007FFF',
},
},
},
dark: {
palette: {
primary: {
main: '#007FFF',
},
},
},
},
},
defaultColorScheme: 'light',
});
function Content() {
const { setColorScheme } = useColorScheme();
React.useEffect(() => {
// @ts-expect-error 'yellow' is not typed in JoyExtendedColorScheme
setColorScheme('yellow');
setColorScheme('comfort');
}, [setColorScheme]);
return null;
}
function App3() {
return (
<CssVarsProvider2
theme={{
// @ts-expect-error `comfort` and `trueDark` are missing
colorSchemes: {},
}}
/>
);
}
function App4() {
return (
<CssVarsProvider2
theme={{
colorSchemes: {
comfort: {
palette: {
primary: {
main: '',
},
},
},
// @ts-expect-error Palette structure is not completed
trueDark: {},
},
}}
/>
);
}
| TypeScript | 4 | Gethomely/material-ui | packages/mui-system/src/cssVars/createCssVarsProvider.spec.tsx | [
"MIT"
] |
#include "store_ops.h"
#include "caffe2/core/blob_serialization.h"
namespace caffe2 {
constexpr auto kBlobName = "blob_name";
constexpr auto kAddValue = "add_value";
StoreSetOp::StoreSetOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<CPUContext>(operator_def, ws),
blobName_(
GetSingleArgument<std::string>(kBlobName, operator_def.input(DATA))) {
}
bool StoreSetOp::RunOnDevice() {
// Serialize and pass to store
auto* handler =
OperatorBase::Input<std::unique_ptr<StoreHandler>>(HANDLER).get();
handler->set(blobName_, SerializeBlob(InputBlob(DATA), blobName_));
return true;
}
REGISTER_CPU_OPERATOR(StoreSet, StoreSetOp);
OPERATOR_SCHEMA(StoreSet)
.NumInputs(2)
.NumOutputs(0)
.SetDoc(R"DOC(
Set a blob in a store. The key is the input blob's name and the value
is the data in that blob. The key can be overridden by specifying the
'blob_name' argument.
)DOC")
.Arg("blob_name", "alternative key for the blob (optional)")
.Input(0, "handler", "unique_ptr<StoreHandler>")
.Input(1, "data", "data blob");
StoreGetOp::StoreGetOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<CPUContext>(operator_def, ws),
blobName_(GetSingleArgument<std::string>(
kBlobName,
operator_def.output(DATA))) {}
bool StoreGetOp::RunOnDevice() {
// Get from store and deserialize
auto* handler =
OperatorBase::Input<std::unique_ptr<StoreHandler>>(HANDLER).get();
DeserializeBlob(handler->get(blobName_), OperatorBase::Outputs()[DATA]);
return true;
}
REGISTER_CPU_OPERATOR(StoreGet, StoreGetOp);
OPERATOR_SCHEMA(StoreGet)
.NumInputs(1)
.NumOutputs(1)
.SetDoc(R"DOC(
Get a blob from a store. The key is the output blob's name. The key
can be overridden by specifying the 'blob_name' argument.
)DOC")
.Arg("blob_name", "alternative key for the blob (optional)")
.Input(0, "handler", "unique_ptr<StoreHandler>")
.Output(0, "data", "data blob");
StoreAddOp::StoreAddOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<CPUContext>(operator_def, ws),
blobName_(GetSingleArgument<std::string>(kBlobName, "")),
addValue_(GetSingleArgument<int64_t>(kAddValue, 1)) {
CAFFE_ENFORCE(HasArgument(kBlobName));
}
bool StoreAddOp::RunOnDevice() {
auto* handler =
OperatorBase::Input<std::unique_ptr<StoreHandler>>(HANDLER).get();
Output(VALUE)->Resize(1);
Output(VALUE)->mutable_data<int64_t>()[0] =
handler->add(blobName_, addValue_);
return true;
}
REGISTER_CPU_OPERATOR(StoreAdd, StoreAddOp);
OPERATOR_SCHEMA(StoreAdd)
.NumInputs(1)
.NumOutputs(1)
.SetDoc(R"DOC(
Add a value to a remote counter. If the key is not set, the store
initializes it to 0 and then performs the add operation. The operation
returns the resulting counter value.
)DOC")
.Arg("blob_name", "key of the counter (required)")
.Arg("add_value", "value that is added (optional, default: 1)")
.Input(0, "handler", "unique_ptr<StoreHandler>")
.Output(0, "value", "the current value of the counter");
StoreWaitOp::StoreWaitOp(const OperatorDef& operator_def, Workspace* ws)
: Operator<CPUContext>(operator_def, ws),
blobNames_(GetRepeatedArgument<std::string>(kBlobName)) {}
bool StoreWaitOp::RunOnDevice() {
auto* handler =
OperatorBase::Input<std::unique_ptr<StoreHandler>>(HANDLER).get();
if (InputSize() == 2 && Input(1).IsType<std::string>()) {
CAFFE_ENFORCE(
blobNames_.empty(), "cannot specify both argument and input blob");
std::vector<std::string> blobNames;
auto* namesPtr = Input(1).data<std::string>();
for (int i = 0; i < Input(1).size(); ++i) {
// NOLINTNEXTLINE(performance-inefficient-vector-operation)
blobNames.push_back(namesPtr[i]);
}
handler->wait(blobNames);
} else {
handler->wait(blobNames_);
}
return true;
}
REGISTER_CPU_OPERATOR(StoreWait, StoreWaitOp);
OPERATOR_SCHEMA(StoreWait)
.NumInputs(1, 2)
.NumOutputs(0)
.SetDoc(R"DOC(
Wait for the specified blob names to be set. The blob names can be passed
either as an input blob with blob names or as an argument.
)DOC")
.Arg("blob_names", "names of the blobs to wait for (optional)")
.Input(0, "handler", "unique_ptr<StoreHandler>")
.Input(1, "names", "names of the blobs to wait for (optional)");
}
| C++ | 5 | Hacky-DH/pytorch | caffe2/distributed/store_ops.cc | [
"Intel"
] |
type MixedArtist implements Node, Entity & Releasable {
# The ID of an object
id: ID!
# The MBID of the entity.
mbid: MBID!
# A list of recordings linked to this entity.
recordings(after: String, first: Int): RecordingConnection
# A list of releases linked to this entity.
releases(
# Filter by one or more release group types.
type: [ReleaseGroupType]
# Filter by one or more release statuses.
status: [ReleaseStatus]
after: String
first: Int
): ReleaseConnection
}
| GraphQL | 4 | fuelingtheweb/prettier | tests/graphql_interface/object_type_def_mixed_syntax.graphql | [
"MIT"
] |
# RUN: llc -march=amdgcn -run-pass=instruction-select -verify-machineinstrs -o - %s | FileCheck %s -check-prefixes=GCN
---
name: bitcast
legalized: true
regBankSelected: true
tracksRegLiveness: true
# GCN-LABEL: name: bitcast
# GCN: [[A:%[0-9]+]]:vgpr_32 = COPY $vgpr0
# GCN: S_ENDPGM 0, implicit [[A]]
body: |
bb.0:
liveins: $vgpr0
%0:vgpr(s32) = COPY $vgpr0
%1:vgpr(<2 x s16>) = G_BITCAST %0
%2:vgpr(s32) = G_BITCAST %1
S_ENDPGM 0, implicit %2
...
| Mirah | 3 | medismailben/llvm-project | llvm/test/CodeGen/AMDGPU/GlobalISel/inst-select-bitcast.mir | [
"Apache-2.0"
] |
/* B.xs
*
* Copyright (c) 1996 Malcolm Beattie
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#ifdef PERL_OBJECT
#undef PL_op_name
#undef PL_opargs
#undef PL_op_desc
#define PL_op_name (get_op_names())
#define PL_opargs (get_opargs())
#define PL_op_desc (get_op_descs())
#endif
#ifdef PerlIO
typedef PerlIO * InputStream;
#else
typedef FILE * InputStream;
#endif
static char *svclassnames[] = {
"B::NULL",
"B::IV",
"B::NV",
"B::RV",
"B::PV",
"B::PVIV",
"B::PVNV",
"B::PVMG",
"B::BM",
"B::PVLV",
"B::AV",
"B::HV",
"B::CV",
"B::GV",
"B::FM",
"B::IO",
};
typedef enum {
OPc_NULL, /* 0 */
OPc_BASEOP, /* 1 */
OPc_UNOP, /* 2 */
OPc_BINOP, /* 3 */
OPc_LOGOP, /* 4 */
OPc_LISTOP, /* 5 */
OPc_PMOP, /* 6 */
OPc_SVOP, /* 7 */
OPc_PADOP, /* 8 */
OPc_PVOP, /* 9 */
OPc_CVOP, /* 10 */
OPc_LOOP, /* 11 */
OPc_COP /* 12 */
} opclass;
static char *opclassnames[] = {
"B::NULL",
"B::OP",
"B::UNOP",
"B::BINOP",
"B::LOGOP",
"B::LISTOP",
"B::PMOP",
"B::SVOP",
"B::PADOP",
"B::PVOP",
"B::CVOP",
"B::LOOP",
"B::COP"
};
static int walkoptree_debug = 0; /* Flag for walkoptree debug hook */
static SV *specialsv_list[6];
static opclass
cc_opclass(pTHX_ OP *o)
{
if (!o)
return OPc_NULL;
if (o->op_type == 0)
return (o->op_flags & OPf_KIDS) ? OPc_UNOP : OPc_BASEOP;
if (o->op_type == OP_SASSIGN)
return ((o->op_private & OPpASSIGN_BACKWARDS) ? OPc_UNOP : OPc_BINOP);
#ifdef USE_ITHREADS
if (o->op_type == OP_GV || o->op_type == OP_GVSV || o->op_type == OP_AELEMFAST)
return OPc_PADOP;
#endif
switch (PL_opargs[o->op_type] & OA_CLASS_MASK) {
case OA_BASEOP:
return OPc_BASEOP;
case OA_UNOP:
return OPc_UNOP;
case OA_BINOP:
return OPc_BINOP;
case OA_LOGOP:
return OPc_LOGOP;
case OA_LISTOP:
return OPc_LISTOP;
case OA_PMOP:
return OPc_PMOP;
case OA_SVOP:
return OPc_SVOP;
case OA_PADOP:
return OPc_PADOP;
case OA_PVOP_OR_SVOP:
/*
* Character translations (tr///) are usually a PVOP, keeping a
* pointer to a table of shorts used to look up translations.
* Under utf8, however, a simple table isn't practical; instead,
* the OP is an SVOP, and the SV is a reference to a swash
* (i.e., an RV pointing to an HV).
*/
return (o->op_private & (OPpTRANS_TO_UTF|OPpTRANS_FROM_UTF))
? OPc_SVOP : OPc_PVOP;
case OA_LOOP:
return OPc_LOOP;
case OA_COP:
return OPc_COP;
case OA_BASEOP_OR_UNOP:
/*
* UNI(OP_foo) in toke.c returns token UNI or FUNC1 depending on
* whether parens were seen. perly.y uses OPf_SPECIAL to
* signal whether a BASEOP had empty parens or none.
* Some other UNOPs are created later, though, so the best
* test is OPf_KIDS, which is set in newUNOP.
*/
return (o->op_flags & OPf_KIDS) ? OPc_UNOP : OPc_BASEOP;
case OA_FILESTATOP:
/*
* The file stat OPs are created via UNI(OP_foo) in toke.c but use
* the OPf_REF flag to distinguish between OP types instead of the
* usual OPf_SPECIAL flag. As usual, if OPf_KIDS is set, then we
* return OPc_UNOP so that walkoptree can find our children. If
* OPf_KIDS is not set then we check OPf_REF. Without OPf_REF set
* (no argument to the operator) it's an OP; with OPf_REF set it's
* an SVOP (and op_sv is the GV for the filehandle argument).
*/
return ((o->op_flags & OPf_KIDS) ? OPc_UNOP :
#ifdef USE_ITHREADS
(o->op_flags & OPf_REF) ? OPc_PADOP : OPc_BASEOP);
#else
(o->op_flags & OPf_REF) ? OPc_SVOP : OPc_BASEOP);
#endif
case OA_LOOPEXOP:
/*
* next, last, redo, dump and goto use OPf_SPECIAL to indicate that a
* label was omitted (in which case it's a BASEOP) or else a term was
* seen. In this last case, all except goto are definitely PVOP but
* goto is either a PVOP (with an ordinary constant label), an UNOP
* with OPf_STACKED (with a non-constant non-sub) or an UNOP for
* OP_REFGEN (with goto &sub) in which case OPf_STACKED also seems to
* get set.
*/
if (o->op_flags & OPf_STACKED)
return OPc_UNOP;
else if (o->op_flags & OPf_SPECIAL)
return OPc_BASEOP;
else
return OPc_PVOP;
}
warn("can't determine class of operator %s, assuming BASEOP\n",
PL_op_name[o->op_type]);
return OPc_BASEOP;
}
static char *
cc_opclassname(pTHX_ OP *o)
{
return opclassnames[cc_opclass(aTHX_ o)];
}
static SV *
make_sv_object(pTHX_ SV *arg, SV *sv)
{
char *type = 0;
IV iv;
for (iv = 0; iv < sizeof(specialsv_list)/sizeof(SV*); iv++) {
if (sv == specialsv_list[iv]) {
type = "B::SPECIAL";
break;
}
}
if (!type) {
type = svclassnames[SvTYPE(sv)];
iv = PTR2IV(sv);
}
sv_setiv(newSVrv(arg, type), iv);
return arg;
}
static SV *
make_mg_object(pTHX_ SV *arg, MAGIC *mg)
{
sv_setiv(newSVrv(arg, "B::MAGIC"), PTR2IV(mg));
return arg;
}
static SV *
cstring(pTHX_ SV *sv)
{
SV *sstr = newSVpvn("", 0);
STRLEN len;
char *s;
if (!SvOK(sv))
sv_setpvn(sstr, "0", 1);
else
{
/* XXX Optimise? */
s = SvPV(sv, len);
sv_catpv(sstr, "\"");
for (; len; len--, s++)
{
/* At least try a little for readability */
if (*s == '"')
sv_catpv(sstr, "\\\"");
else if (*s == '\\')
sv_catpv(sstr, "\\\\");
else if (*s >= ' ' && *s < 127) /* XXX not portable */
sv_catpvn(sstr, s, 1);
else if (*s == '\n')
sv_catpv(sstr, "\\n");
else if (*s == '\r')
sv_catpv(sstr, "\\r");
else if (*s == '\t')
sv_catpv(sstr, "\\t");
else if (*s == '\a')
sv_catpv(sstr, "\\a");
else if (*s == '\b')
sv_catpv(sstr, "\\b");
else if (*s == '\f')
sv_catpv(sstr, "\\f");
else if (*s == '\v')
sv_catpv(sstr, "\\v");
else
{
/* no trigraph support */
char escbuff[5]; /* to fit backslash, 3 octals + trailing \0 */
/* Don't want promotion of a signed -1 char in sprintf args */
unsigned char c = (unsigned char) *s;
sprintf(escbuff, "\\%03o", c);
sv_catpv(sstr, escbuff);
}
/* XXX Add line breaks if string is long */
}
sv_catpv(sstr, "\"");
}
return sstr;
}
static SV *
cchar(pTHX_ SV *sv)
{
SV *sstr = newSVpvn("'", 1);
STRLEN n_a;
char *s = SvPV(sv, n_a);
if (*s == '\'')
sv_catpv(sstr, "\\'");
else if (*s == '\\')
sv_catpv(sstr, "\\\\");
else if (*s >= ' ' && *s < 127) /* XXX not portable */
sv_catpvn(sstr, s, 1);
else if (*s == '\n')
sv_catpv(sstr, "\\n");
else if (*s == '\r')
sv_catpv(sstr, "\\r");
else if (*s == '\t')
sv_catpv(sstr, "\\t");
else if (*s == '\a')
sv_catpv(sstr, "\\a");
else if (*s == '\b')
sv_catpv(sstr, "\\b");
else if (*s == '\f')
sv_catpv(sstr, "\\f");
else if (*s == '\v')
sv_catpv(sstr, "\\v");
else
{
/* no trigraph support */
char escbuff[5]; /* to fit backslash, 3 octals + trailing \0 */
/* Don't want promotion of a signed -1 char in sprintf args */
unsigned char c = (unsigned char) *s;
sprintf(escbuff, "\\%03o", c);
sv_catpv(sstr, escbuff);
}
sv_catpv(sstr, "'");
return sstr;
}
void
walkoptree(pTHX_ SV *opsv, char *method)
{
dSP;
OP *o;
if (!SvROK(opsv))
croak("opsv is not a reference");
opsv = sv_mortalcopy(opsv);
o = INT2PTR(OP*,SvIV((SV*)SvRV(opsv)));
if (walkoptree_debug) {
PUSHMARK(sp);
XPUSHs(opsv);
PUTBACK;
perl_call_method("walkoptree_debug", G_DISCARD);
}
PUSHMARK(sp);
XPUSHs(opsv);
PUTBACK;
perl_call_method(method, G_DISCARD);
if (o && (o->op_flags & OPf_KIDS)) {
OP *kid;
for (kid = ((UNOP*)o)->op_first; kid; kid = kid->op_sibling) {
/* Use the same opsv. Rely on methods not to mess it up. */
sv_setiv(newSVrv(opsv, cc_opclassname(aTHX_ kid)), PTR2IV(kid));
walkoptree(aTHX_ opsv, method);
}
}
}
typedef OP *B__OP;
typedef UNOP *B__UNOP;
typedef BINOP *B__BINOP;
typedef LOGOP *B__LOGOP;
typedef LISTOP *B__LISTOP;
typedef PMOP *B__PMOP;
typedef SVOP *B__SVOP;
typedef PADOP *B__PADOP;
typedef PVOP *B__PVOP;
typedef LOOP *B__LOOP;
typedef COP *B__COP;
typedef SV *B__SV;
typedef SV *B__IV;
typedef SV *B__PV;
typedef SV *B__NV;
typedef SV *B__PVMG;
typedef SV *B__PVLV;
typedef SV *B__BM;
typedef SV *B__RV;
typedef AV *B__AV;
typedef HV *B__HV;
typedef CV *B__CV;
typedef GV *B__GV;
typedef IO *B__IO;
typedef MAGIC *B__MAGIC;
MODULE = B PACKAGE = B PREFIX = B_
PROTOTYPES: DISABLE
BOOT:
{
HV *stash = gv_stashpvn("B", 1, TRUE);
AV *export_ok = perl_get_av("B::EXPORT_OK",TRUE);
specialsv_list[0] = Nullsv;
specialsv_list[1] = &PL_sv_undef;
specialsv_list[2] = &PL_sv_yes;
specialsv_list[3] = &PL_sv_no;
specialsv_list[4] = pWARN_ALL;
specialsv_list[5] = pWARN_NONE;
#include "defsubs.h"
}
#define B_main_cv() PL_main_cv
#define B_init_av() PL_initav
#define B_begin_av() PL_beginav_save
#define B_end_av() PL_endav
#define B_main_root() PL_main_root
#define B_main_start() PL_main_start
#define B_amagic_generation() PL_amagic_generation
#define B_comppadlist() (PL_main_cv ? CvPADLIST(PL_main_cv) : CvPADLIST(PL_compcv))
#define B_sv_undef() &PL_sv_undef
#define B_sv_yes() &PL_sv_yes
#define B_sv_no() &PL_sv_no
B::AV
B_init_av()
B::AV
B_begin_av()
B::AV
B_end_av()
B::CV
B_main_cv()
B::OP
B_main_root()
B::OP
B_main_start()
long
B_amagic_generation()
B::AV
B_comppadlist()
B::SV
B_sv_undef()
B::SV
B_sv_yes()
B::SV
B_sv_no()
MODULE = B PACKAGE = B
void
walkoptree(opsv, method)
SV * opsv
char * method
CODE:
walkoptree(aTHX_ opsv, method);
int
walkoptree_debug(...)
CODE:
RETVAL = walkoptree_debug;
if (items > 0 && SvTRUE(ST(1)))
walkoptree_debug = 1;
OUTPUT:
RETVAL
#define address(sv) PTR2IV(sv)
IV
address(sv)
SV * sv
B::SV
svref_2object(sv)
SV * sv
CODE:
if (!SvROK(sv))
croak("argument is not a reference");
RETVAL = (SV*)SvRV(sv);
OUTPUT:
RETVAL
void
opnumber(name)
char * name
CODE:
{
int i;
IV result = -1;
ST(0) = sv_newmortal();
if (strncmp(name,"pp_",3) == 0)
name += 3;
for (i = 0; i < PL_maxo; i++)
{
if (strcmp(name, PL_op_name[i]) == 0)
{
result = i;
break;
}
}
sv_setiv(ST(0),result);
}
void
ppname(opnum)
int opnum
CODE:
ST(0) = sv_newmortal();
if (opnum >= 0 && opnum < PL_maxo) {
sv_setpvn(ST(0), "pp_", 3);
sv_catpv(ST(0), PL_op_name[opnum]);
}
void
hash(sv)
SV * sv
CODE:
char *s;
STRLEN len;
U32 hash = 0;
char hexhash[19]; /* must fit "0xffffffffffffffff" plus trailing \0 */
s = SvPV(sv, len);
PERL_HASH(hash, s, len);
sprintf(hexhash, "0x%"UVxf, (UV)hash);
ST(0) = sv_2mortal(newSVpv(hexhash, 0));
#define cast_I32(foo) (I32)foo
IV
cast_I32(i)
IV i
void
minus_c()
CODE:
PL_minus_c = TRUE;
void
save_BEGINs()
CODE:
PL_minus_c |= 0x10;
SV *
cstring(sv)
SV * sv
CODE:
RETVAL = cstring(aTHX_ sv);
OUTPUT:
RETVAL
SV *
cchar(sv)
SV * sv
CODE:
RETVAL = cchar(aTHX_ sv);
OUTPUT:
RETVAL
void
threadsv_names()
PPCODE:
#ifdef USE_THREADS
int i;
STRLEN len = strlen(PL_threadsv_names);
EXTEND(sp, len);
for (i = 0; i < len; i++)
PUSHs(sv_2mortal(newSVpvn(&PL_threadsv_names[i], 1)));
#endif
#define OP_next(o) o->op_next
#define OP_sibling(o) o->op_sibling
#define OP_desc(o) PL_op_desc[o->op_type]
#define OP_targ(o) o->op_targ
#define OP_type(o) o->op_type
#define OP_seq(o) o->op_seq
#define OP_flags(o) o->op_flags
#define OP_private(o) o->op_private
MODULE = B PACKAGE = B::OP PREFIX = OP_
B::OP
OP_next(o)
B::OP o
B::OP
OP_sibling(o)
B::OP o
char *
OP_name(o)
B::OP o
CODE:
RETVAL = PL_op_name[o->op_type];
OUTPUT:
RETVAL
void
OP_ppaddr(o)
B::OP o
PREINIT:
int i;
SV *sv = sv_newmortal();
CODE:
sv_setpvn(sv, "PL_ppaddr[OP_", 13);
sv_catpv(sv, PL_op_name[o->op_type]);
for (i=13; i<SvCUR(sv); ++i)
SvPVX(sv)[i] = toUPPER(SvPVX(sv)[i]);
sv_catpv(sv, "]");
ST(0) = sv;
char *
OP_desc(o)
B::OP o
PADOFFSET
OP_targ(o)
B::OP o
U16
OP_type(o)
B::OP o
U16
OP_seq(o)
B::OP o
U8
OP_flags(o)
B::OP o
U8
OP_private(o)
B::OP o
#define UNOP_first(o) o->op_first
MODULE = B PACKAGE = B::UNOP PREFIX = UNOP_
B::OP
UNOP_first(o)
B::UNOP o
#define BINOP_last(o) o->op_last
MODULE = B PACKAGE = B::BINOP PREFIX = BINOP_
B::OP
BINOP_last(o)
B::BINOP o
#define LOGOP_other(o) o->op_other
MODULE = B PACKAGE = B::LOGOP PREFIX = LOGOP_
B::OP
LOGOP_other(o)
B::LOGOP o
MODULE = B PACKAGE = B::LISTOP PREFIX = LISTOP_
U32
LISTOP_children(o)
B::LISTOP o
OP * kid = NO_INIT
int i = NO_INIT
CODE:
i = 0;
for (kid = o->op_first; kid; kid = kid->op_sibling)
i++;
RETVAL = i;
OUTPUT:
RETVAL
#define PMOP_pmreplroot(o) o->op_pmreplroot
#define PMOP_pmreplstart(o) o->op_pmreplstart
#define PMOP_pmnext(o) o->op_pmnext
#define PMOP_pmregexp(o) o->op_pmregexp
#define PMOP_pmflags(o) o->op_pmflags
#define PMOP_pmpermflags(o) o->op_pmpermflags
MODULE = B PACKAGE = B::PMOP PREFIX = PMOP_
void
PMOP_pmreplroot(o)
B::PMOP o
OP * root = NO_INIT
CODE:
ST(0) = sv_newmortal();
root = o->op_pmreplroot;
/* OP_PUSHRE stores an SV* instead of an OP* in op_pmreplroot */
if (o->op_type == OP_PUSHRE) {
sv_setiv(newSVrv(ST(0), root ?
svclassnames[SvTYPE((SV*)root)] : "B::SV"),
PTR2IV(root));
}
else {
sv_setiv(newSVrv(ST(0), cc_opclassname(aTHX_ root)), PTR2IV(root));
}
B::OP
PMOP_pmreplstart(o)
B::PMOP o
B::PMOP
PMOP_pmnext(o)
B::PMOP o
U16
PMOP_pmflags(o)
B::PMOP o
U16
PMOP_pmpermflags(o)
B::PMOP o
void
PMOP_precomp(o)
B::PMOP o
REGEXP * rx = NO_INIT
CODE:
ST(0) = sv_newmortal();
rx = o->op_pmregexp;
if (rx)
sv_setpvn(ST(0), rx->precomp, rx->prelen);
#define SVOP_sv(o) cSVOPo->op_sv
#define SVOP_gv(o) ((GV*)cSVOPo->op_sv)
MODULE = B PACKAGE = B::SVOP PREFIX = SVOP_
B::SV
SVOP_sv(o)
B::SVOP o
B::GV
SVOP_gv(o)
B::SVOP o
#define PADOP_padix(o) o->op_padix
#define PADOP_sv(o) (o->op_padix ? PL_curpad[o->op_padix] : Nullsv)
#define PADOP_gv(o) ((o->op_padix \
&& SvTYPE(PL_curpad[o->op_padix]) == SVt_PVGV) \
? (GV*)PL_curpad[o->op_padix] : Nullgv)
MODULE = B PACKAGE = B::PADOP PREFIX = PADOP_
PADOFFSET
PADOP_padix(o)
B::PADOP o
B::SV
PADOP_sv(o)
B::PADOP o
B::GV
PADOP_gv(o)
B::PADOP o
MODULE = B PACKAGE = B::PVOP PREFIX = PVOP_
void
PVOP_pv(o)
B::PVOP o
CODE:
/*
* OP_TRANS uses op_pv to point to a table of 256 shorts
* whereas other PVOPs point to a null terminated string.
*/
ST(0) = sv_2mortal(newSVpv(o->op_pv, (o->op_type == OP_TRANS) ?
256 * sizeof(short) : 0));
#define LOOP_redoop(o) o->op_redoop
#define LOOP_nextop(o) o->op_nextop
#define LOOP_lastop(o) o->op_lastop
MODULE = B PACKAGE = B::LOOP PREFIX = LOOP_
B::OP
LOOP_redoop(o)
B::LOOP o
B::OP
LOOP_nextop(o)
B::LOOP o
B::OP
LOOP_lastop(o)
B::LOOP o
#define COP_label(o) o->cop_label
#define COP_stashpv(o) CopSTASHPV(o)
#define COP_stash(o) CopSTASH(o)
#define COP_file(o) CopFILE(o)
#define COP_cop_seq(o) o->cop_seq
#define COP_arybase(o) o->cop_arybase
#define COP_line(o) CopLINE(o)
#define COP_warnings(o) o->cop_warnings
MODULE = B PACKAGE = B::COP PREFIX = COP_
char *
COP_label(o)
B::COP o
char *
COP_stashpv(o)
B::COP o
B::HV
COP_stash(o)
B::COP o
char *
COP_file(o)
B::COP o
U32
COP_cop_seq(o)
B::COP o
I32
COP_arybase(o)
B::COP o
U16
COP_line(o)
B::COP o
B::SV
COP_warnings(o)
B::COP o
MODULE = B PACKAGE = B::SV PREFIX = Sv
U32
SvREFCNT(sv)
B::SV sv
U32
SvFLAGS(sv)
B::SV sv
MODULE = B PACKAGE = B::IV PREFIX = Sv
IV
SvIV(sv)
B::IV sv
IV
SvIVX(sv)
B::IV sv
UV
SvUVX(sv)
B::IV sv
MODULE = B PACKAGE = B::IV
#define needs64bits(sv) ((I32)SvIVX(sv) != SvIVX(sv))
int
needs64bits(sv)
B::IV sv
void
packiv(sv)
B::IV sv
CODE:
if (sizeof(IV) == 8) {
U32 wp[2];
IV iv = SvIVX(sv);
/*
* The following way of spelling 32 is to stop compilers on
* 32-bit architectures from moaning about the shift count
* being >= the width of the type. Such architectures don't
* reach this code anyway (unless sizeof(IV) > 8 but then
* everything else breaks too so I'm not fussed at the moment).
*/
#ifdef UV_IS_QUAD
wp[0] = htonl(((UV)iv) >> (sizeof(UV)*4));
#else
wp[0] = htonl(((U32)iv) >> (sizeof(UV)*4));
#endif
wp[1] = htonl(iv & 0xffffffff);
ST(0) = sv_2mortal(newSVpvn((char *)wp, 8));
} else {
U32 w = htonl((U32)SvIVX(sv));
ST(0) = sv_2mortal(newSVpvn((char *)&w, 4));
}
MODULE = B PACKAGE = B::NV PREFIX = Sv
NV
SvNV(sv)
B::NV sv
NV
SvNVX(sv)
B::NV sv
MODULE = B PACKAGE = B::RV PREFIX = Sv
B::SV
SvRV(sv)
B::RV sv
MODULE = B PACKAGE = B::PV PREFIX = Sv
char*
SvPVX(sv)
B::PV sv
void
SvPV(sv)
B::PV sv
CODE:
ST(0) = sv_newmortal();
sv_setpvn(ST(0), SvPVX(sv), SvCUR(sv));
STRLEN
SvLEN(sv)
B::PV sv
STRLEN
SvCUR(sv)
B::PV sv
MODULE = B PACKAGE = B::PVMG PREFIX = Sv
void
SvMAGIC(sv)
B::PVMG sv
MAGIC * mg = NO_INIT
PPCODE:
for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic)
XPUSHs(make_mg_object(aTHX_ sv_newmortal(), mg));
MODULE = B PACKAGE = B::PVMG
B::HV
SvSTASH(sv)
B::PVMG sv
#define MgMOREMAGIC(mg) mg->mg_moremagic
#define MgPRIVATE(mg) mg->mg_private
#define MgTYPE(mg) mg->mg_type
#define MgFLAGS(mg) mg->mg_flags
#define MgOBJ(mg) mg->mg_obj
#define MgLENGTH(mg) mg->mg_len
MODULE = B PACKAGE = B::MAGIC PREFIX = Mg
B::MAGIC
MgMOREMAGIC(mg)
B::MAGIC mg
U16
MgPRIVATE(mg)
B::MAGIC mg
char
MgTYPE(mg)
B::MAGIC mg
U8
MgFLAGS(mg)
B::MAGIC mg
B::SV
MgOBJ(mg)
B::MAGIC mg
I32
MgLENGTH(mg)
B::MAGIC mg
void
MgPTR(mg)
B::MAGIC mg
CODE:
ST(0) = sv_newmortal();
if (mg->mg_ptr){
if (mg->mg_len >= 0){
sv_setpvn(ST(0), mg->mg_ptr, mg->mg_len);
} else {
if (mg->mg_len == HEf_SVKEY)
sv_setsv(ST(0),newRV((SV*)mg->mg_ptr));
}
}
MODULE = B PACKAGE = B::PVLV PREFIX = Lv
U32
LvTARGOFF(sv)
B::PVLV sv
U32
LvTARGLEN(sv)
B::PVLV sv
char
LvTYPE(sv)
B::PVLV sv
B::SV
LvTARG(sv)
B::PVLV sv
MODULE = B PACKAGE = B::BM PREFIX = Bm
I32
BmUSEFUL(sv)
B::BM sv
U16
BmPREVIOUS(sv)
B::BM sv
U8
BmRARE(sv)
B::BM sv
void
BmTABLE(sv)
B::BM sv
STRLEN len = NO_INIT
char * str = NO_INIT
CODE:
str = SvPV(sv, len);
/* Boyer-Moore table is just after string and its safety-margin \0 */
ST(0) = sv_2mortal(newSVpvn(str + len + 1, 256));
MODULE = B PACKAGE = B::GV PREFIX = Gv
void
GvNAME(gv)
B::GV gv
CODE:
ST(0) = sv_2mortal(newSVpvn(GvNAME(gv), GvNAMELEN(gv)));
bool
is_empty(gv)
B::GV gv
CODE:
RETVAL = GvGP(gv) == Null(GP*);
OUTPUT:
RETVAL
B::HV
GvSTASH(gv)
B::GV gv
B::SV
GvSV(gv)
B::GV gv
B::IO
GvIO(gv)
B::GV gv
B::CV
GvFORM(gv)
B::GV gv
B::AV
GvAV(gv)
B::GV gv
B::HV
GvHV(gv)
B::GV gv
B::GV
GvEGV(gv)
B::GV gv
B::CV
GvCV(gv)
B::GV gv
U32
GvCVGEN(gv)
B::GV gv
U16
GvLINE(gv)
B::GV gv
char *
GvFILE(gv)
B::GV gv
B::GV
GvFILEGV(gv)
B::GV gv
MODULE = B PACKAGE = B::GV
U32
GvREFCNT(gv)
B::GV gv
U8
GvFLAGS(gv)
B::GV gv
MODULE = B PACKAGE = B::IO PREFIX = Io
long
IoLINES(io)
B::IO io
long
IoPAGE(io)
B::IO io
long
IoPAGE_LEN(io)
B::IO io
long
IoLINES_LEFT(io)
B::IO io
char *
IoTOP_NAME(io)
B::IO io
B::GV
IoTOP_GV(io)
B::IO io
char *
IoFMT_NAME(io)
B::IO io
B::GV
IoFMT_GV(io)
B::IO io
char *
IoBOTTOM_NAME(io)
B::IO io
B::GV
IoBOTTOM_GV(io)
B::IO io
short
IoSUBPROCESS(io)
B::IO io
MODULE = B PACKAGE = B::IO
char
IoTYPE(io)
B::IO io
U8
IoFLAGS(io)
B::IO io
MODULE = B PACKAGE = B::AV PREFIX = Av
SSize_t
AvFILL(av)
B::AV av
SSize_t
AvMAX(av)
B::AV av
#define AvOFF(av) ((XPVAV*)SvANY(av))->xof_off
IV
AvOFF(av)
B::AV av
void
AvARRAY(av)
B::AV av
PPCODE:
if (AvFILL(av) >= 0) {
SV **svp = AvARRAY(av);
I32 i;
for (i = 0; i <= AvFILL(av); i++)
XPUSHs(make_sv_object(aTHX_ sv_newmortal(), svp[i]));
}
MODULE = B PACKAGE = B::AV
U8
AvFLAGS(av)
B::AV av
MODULE = B PACKAGE = B::CV PREFIX = Cv
B::HV
CvSTASH(cv)
B::CV cv
B::OP
CvSTART(cv)
B::CV cv
B::OP
CvROOT(cv)
B::CV cv
B::GV
CvGV(cv)
B::CV cv
char *
CvFILE(cv)
B::CV cv
long
CvDEPTH(cv)
B::CV cv
B::AV
CvPADLIST(cv)
B::CV cv
B::CV
CvOUTSIDE(cv)
B::CV cv
void
CvXSUB(cv)
B::CV cv
CODE:
ST(0) = sv_2mortal(newSViv(PTR2IV(CvXSUB(cv))));
void
CvXSUBANY(cv)
B::CV cv
CODE:
ST(0) = sv_2mortal(newSViv(CvXSUBANY(cv).any_iv));
MODULE = B PACKAGE = B::CV
U16
CvFLAGS(cv)
B::CV cv
MODULE = B PACKAGE = B::HV PREFIX = Hv
STRLEN
HvFILL(hv)
B::HV hv
STRLEN
HvMAX(hv)
B::HV hv
I32
HvKEYS(hv)
B::HV hv
I32
HvRITER(hv)
B::HV hv
char *
HvNAME(hv)
B::HV hv
B::PMOP
HvPMROOT(hv)
B::HV hv
void
HvARRAY(hv)
B::HV hv
PPCODE:
if (HvKEYS(hv) > 0) {
SV *sv;
char *key;
I32 len;
(void)hv_iterinit(hv);
EXTEND(sp, HvKEYS(hv) * 2);
while ((sv = hv_iternextsv(hv, &key, &len))) {
PUSHs(newSVpvn(key, len));
PUSHs(make_sv_object(aTHX_ sv_newmortal(), sv));
}
}
| XS | 3 | tharindusathis/sourcecodes-of-CodeReadingTheOpenSourcePerspective | perl/ext/b/b.xs | [
"Apache-1.1"
] |
: main
7.0 3.25 fmod pop
6.0 3.0 fmod pop
-6.0 3.0 fmod pop
-7.0 3.25 fmod pop
;
| MUF | 1 | revarbat/mufsim | tests/fmod.muf | [
"BSD-2-Clause"
] |
#define SHADER_NAME PHASER_MESH_VS
precision mediump float;
attribute vec3 aVertexPosition;
attribute vec3 aVertexNormal;
attribute vec2 aTextureCoord;
uniform mat4 uViewProjectionMatrix;
uniform mat4 uModelMatrix;
uniform mat4 uNormalMatrix;
varying vec2 vTextureCoord;
varying vec3 vNormal;
varying vec3 vPosition;
void main ()
{
vTextureCoord = aTextureCoord;
vPosition = vec3(uModelMatrix * vec4(aVertexPosition, 1.0));
vNormal = vec3(uNormalMatrix * vec4(aVertexNormal, 1.0));
gl_Position = uViewProjectionMatrix * uModelMatrix * vec4(aVertexPosition, 1.0);
}
| GLSL | 4 | dreammyboy/phaser | src/renderer/webgl/shaders/src/Mesh.vert | [
"MIT"
] |
#![feature(box_syntax)]
fn main() {
let x: Box<_> = box 1;
let f = move|| {
let _a = x;
drop(x);
//~^ ERROR: use of moved value: `x`
};
f();
}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/issues/issue-10398.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
----------------------------------------------------------------------------------
-- Engineer: Mike Field <hamster@snap.net.nz>
--
-- I've put this together for my personal use. You are welcome to use it however
-- your like. Just because it fits my needs it may not fit yours, if so, bad luck.
--
-- Description:
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_unsigned.ALL;
entity Capture is
Port ( clk : in STD_LOGIC;
probes : in STD_LOGIC_VECTOR (15 downto 0);
write_address : out STD_LOGIC_VECTOR (9 downto 0);
write_data : out STD_LOGIC_VECTOR (15 downto 0);
write_enable : out STD_LOGIC;
capture_done : out STD_LOGIC;
arm_again : in STD_LOGIC;
trigger_address : out STD_LOGIC_VECTOR (9 downto 0)
);
end Capture;
architecture Behavioral of Capture is
constant STATE_ARMING : std_logic_vector(1 downto 0) := "00";
constant STATE_ARMED : std_logic_vector(1 downto 0) := "01";
constant STATE_TRIGGERED : std_logic_vector(1 downto 0) := "10";
constant STATE_DONE : std_logic_vector(1 downto 0) := "11";
signal state : std_logic_vector(1 downto 0) := STATE_ARMING;
signal address : std_logic_vector(9 downto 0) := (others => '0');
signal captured : std_logic_vector(9 downto 0) := (others => '0');
signal last : std_logic_vector(15 downto 0) := (others => '0');
begin
process(clk)
begin
if rising_edge(clk) then
write_data <= probes;
write_address <= address;
address <= address+1;
case state is
when STATE_ARMING =>
capture_done <= '0';
write_enable <= '1';
if captured = "0111111111" then
state <= STATE_ARMED;
end if;
captured <= captured+1;
when STATE_ARMED =>
write_enable <= '1';
trigger_address <= address;
--============================
-- Trigger gotes here
--============================
if probes(15) = '1' then
state <= STATE_TRIGGERED;
end if;
--============================
when STATE_TRIGGERED =>
write_enable <= '1';
if captured = "1111111111" then
capture_done <= '1';
state <= STATE_DONE;
end if;
captured <= captured+1;
when STATE_DONE =>
write_enable <= '0';
if arm_again = '1' then
state <= STATE_ARMING;
end if;
when others =>
end case;
last <= probes;
end if;
end process;
end Behavioral; | VHDL | 4 | AmigaPorts/amiga2000-gfxcard | attic/PapPro-sdram_verilog_v0.1/capture.vhd | [
"MIT",
"IJG",
"Unlicense"
] |
[Exposed=Window,
HTMLConstructor]
interface HTMLTitleElement : HTMLElement {
[CEReactions] attribute DOMString text;
};
| WebIDL | 3 | corsarstl/Learn-Vue-2 | vue-testing/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement.webidl | [
"MIT"
] |
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct Uniforms {
half4 colorGreen;
half4 colorRed;
half unknownInput;
};
struct Inputs {
};
struct Outputs {
half4 sk_FragColor [[color(0)]];
};
bool inside_while_loop_b(Uniforms _uniforms) {
while (_uniforms.unknownInput == 123.0h) {
return false;
}
return true;
}
bool inside_infinite_do_loop_b() {
do {
return true;
} while (true);
}
bool inside_infinite_while_loop_b() {
while (true) {
return true;
}
}
bool after_do_loop_b() {
do {
break;
} while (true);
return true;
}
bool after_while_loop_b() {
while (true) {
break;
}
return true;
}
bool switch_with_all_returns_b(Uniforms _uniforms) {
switch (int(_uniforms.unknownInput)) {
case 1:
return true;
case 2:
return false;
default:
return false;
}
}
bool switch_fallthrough_b(Uniforms _uniforms) {
switch (int(_uniforms.unknownInput)) {
case 1:
return true;
case 2:
default:
return false;
}
}
bool switch_fallthrough_twice_b(Uniforms _uniforms) {
switch (int(_uniforms.unknownInput)) {
case 1:
case 2:
default:
return true;
}
}
bool switch_with_break_in_loop_b(Uniforms _uniforms) {
switch (int(_uniforms.unknownInput)) {
case 1:
for (int x = 0;x <= 10; ++x) {
break;
}
default:
return true;
}
}
bool switch_with_continue_in_loop_b(Uniforms _uniforms) {
switch (int(_uniforms.unknownInput)) {
case 1:
for (int x = 0;x <= 10; ++x) {
continue;
}
default:
return true;
}
}
bool switch_with_if_that_returns_b(Uniforms _uniforms) {
switch (int(_uniforms.unknownInput)) {
case 1:
if (_uniforms.unknownInput == 123.0h) return false; else return true;
default:
return true;
}
}
bool switch_with_one_sided_if_then_fallthrough_b(Uniforms _uniforms) {
switch (int(_uniforms.unknownInput)) {
case 1:
if (_uniforms.unknownInput == 123.0h) return false;
default:
return true;
}
}
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
Outputs _out;
(void)_out;
_out.sk_FragColor = ((((((((((inside_while_loop_b(_uniforms) && inside_infinite_do_loop_b()) && inside_infinite_while_loop_b()) && after_do_loop_b()) && after_while_loop_b()) && switch_with_all_returns_b(_uniforms)) && switch_fallthrough_b(_uniforms)) && switch_fallthrough_twice_b(_uniforms)) && switch_with_break_in_loop_b(_uniforms)) && switch_with_continue_in_loop_b(_uniforms)) && switch_with_if_that_returns_b(_uniforms)) && switch_with_one_sided_if_then_fallthrough_b(_uniforms) ? _uniforms.colorGreen : _uniforms.colorRed;
return _out;
}
| Metal | 3 | fourgrad/skia | tests/sksl/shared/ReturnsValueOnEveryPathES3.metal | [
"BSD-3-Clause"
] |
#define SHADER_NAME PHASER_POINTLIGHT_FS
precision mediump float;
uniform vec2 uResolution;
uniform float uCameraZoom;
varying vec4 lightPosition;
varying vec4 lightColor;
varying float lightRadius;
varying float lightAttenuation;
void main ()
{
vec2 center = (lightPosition.xy + 1.0) * (uResolution.xy * 0.5);
float distToSurf = length(center - gl_FragCoord.xy);
float radius = 1.0 - distToSurf / (lightRadius * uCameraZoom);
float intensity = smoothstep(0.0, 1.0, radius * lightAttenuation);
vec4 color = vec4(intensity, intensity, intensity, 0.0) * lightColor;
gl_FragColor = vec4(color.rgb * lightColor.a, color.a);
}
| GLSL | 4 | dreammyboy/phaser | src/renderer/webgl/shaders/src/PointLight.frag | [
"MIT"
] |
// input: []
// output: 9
package {
public class PrivateVoidCall {
public static function main():int{
var f:OtherClass = new OtherClass();
f.func();
return 9;
}
}
}
class OtherClass {
private function pf():void {
;
}
public function func():void {
this.pf();
}
}
| ActionScript | 3 | hackarada/youtube-dl | test/swftests/PrivateVoidCall.as | [
"Unlicense"
] |
-- ==============================================================
-- RTL generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and OpenCL
-- Version: 2020.2
-- Copyright (C) 1986-2020 Xilinx, Inc. All Rights Reserved.
--
-- ===========================================================
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
entity AWBNormalizationkern is
port (
ap_clk : IN STD_LOGIC;
ap_rst : IN STD_LOGIC;
ap_start : IN STD_LOGIC;
ap_done : OUT STD_LOGIC;
ap_idle : OUT STD_LOGIC;
ap_ready : OUT STD_LOGIC;
src_data_V_V_dout : IN STD_LOGIC_VECTOR (119 downto 0);
src_data_V_V_empty_n : IN STD_LOGIC;
src_data_V_V_read : OUT STD_LOGIC;
dst_rows_read : IN STD_LOGIC_VECTOR (15 downto 0);
dst_cols_read : IN STD_LOGIC_VECTOR (15 downto 0);
dst_data_V_V_din : OUT STD_LOGIC_VECTOR (119 downto 0);
dst_data_V_V_full_n : IN STD_LOGIC;
dst_data_V_V_write : OUT STD_LOGIC;
hist_0_address0 : OUT STD_LOGIC_VECTOR (9 downto 0);
hist_0_ce0 : OUT STD_LOGIC;
hist_0_q0 : IN STD_LOGIC_VECTOR (31 downto 0);
hist_1_address0 : OUT STD_LOGIC_VECTOR (9 downto 0);
hist_1_ce0 : OUT STD_LOGIC;
hist_1_q0 : IN STD_LOGIC_VECTOR (31 downto 0);
hist_2_address0 : OUT STD_LOGIC_VECTOR (9 downto 0);
hist_2_ce0 : OUT STD_LOGIC;
hist_2_q0 : IN STD_LOGIC_VECTOR (31 downto 0) );
end;
architecture behav of AWBNormalizationkern is
constant ap_const_logic_1 : STD_LOGIC := '1';
constant ap_const_logic_0 : STD_LOGIC := '0';
constant ap_ST_fsm_state1 : STD_LOGIC_VECTOR (16 downto 0) := "00000000000000001";
constant ap_ST_fsm_state2 : STD_LOGIC_VECTOR (16 downto 0) := "00000000000000010";
constant ap_ST_fsm_state3 : STD_LOGIC_VECTOR (16 downto 0) := "00000000000000100";
constant ap_ST_fsm_state4 : STD_LOGIC_VECTOR (16 downto 0) := "00000000000001000";
constant ap_ST_fsm_state5 : STD_LOGIC_VECTOR (16 downto 0) := "00000000000010000";
constant ap_ST_fsm_state6 : STD_LOGIC_VECTOR (16 downto 0) := "00000000000100000";
constant ap_ST_fsm_state7 : STD_LOGIC_VECTOR (16 downto 0) := "00000000001000000";
constant ap_ST_fsm_state8 : STD_LOGIC_VECTOR (16 downto 0) := "00000000010000000";
constant ap_ST_fsm_state9 : STD_LOGIC_VECTOR (16 downto 0) := "00000000100000000";
constant ap_ST_fsm_state10 : STD_LOGIC_VECTOR (16 downto 0) := "00000001000000000";
constant ap_ST_fsm_state11 : STD_LOGIC_VECTOR (16 downto 0) := "00000010000000000";
constant ap_ST_fsm_state12 : STD_LOGIC_VECTOR (16 downto 0) := "00000100000000000";
constant ap_ST_fsm_state13 : STD_LOGIC_VECTOR (16 downto 0) := "00001000000000000";
constant ap_ST_fsm_state14 : STD_LOGIC_VECTOR (16 downto 0) := "00010000000000000";
constant ap_ST_fsm_state15 : STD_LOGIC_VECTOR (16 downto 0) := "00100000000000000";
constant ap_ST_fsm_pp2_stage0 : STD_LOGIC_VECTOR (16 downto 0) := "01000000000000000";
constant ap_ST_fsm_state54 : STD_LOGIC_VECTOR (16 downto 0) := "10000000000000000";
constant ap_const_boolean_1 : BOOLEAN := true;
constant ap_const_lv32_0 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000000";
constant ap_const_lv32_F : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001111";
constant ap_const_boolean_0 : BOOLEAN := false;
constant ap_const_lv1_1 : STD_LOGIC_VECTOR (0 downto 0) := "1";
constant ap_const_lv32_7 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000111";
constant ap_const_lv32_B : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001011";
constant ap_const_lv32_1 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000001";
constant ap_const_lv32_2 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000010";
constant ap_const_lv32_3 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000011";
constant ap_const_lv32_4 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000100";
constant ap_const_lv32_5 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000101";
constant ap_const_lv1_0 : STD_LOGIC_VECTOR (0 downto 0) := "0";
constant ap_const_lv32_6 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000000110";
constant ap_const_lv32_8 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001000";
constant ap_const_lv32_9 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001001";
constant ap_const_lv32_A : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001010";
constant ap_const_lv32_C : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001100";
constant ap_const_lv32_E : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001110";
constant ap_const_lv2_0 : STD_LOGIC_VECTOR (1 downto 0) := "00";
constant ap_const_lv32_D : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000001101";
constant ap_const_lv11_0 : STD_LOGIC_VECTOR (10 downto 0) := "00000000000";
constant ap_const_lv16_3FF : STD_LOGIC_VECTOR (15 downto 0) := "0000001111111111";
constant ap_const_lv13_0 : STD_LOGIC_VECTOR (12 downto 0) := "0000000000000";
constant ap_const_lv32_10 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000010000";
constant ap_const_lv24_FFE0 : STD_LOGIC_VECTOR (23 downto 0) := "000000001111111111100000";
constant ap_const_lv24_FFFFE0 : STD_LOGIC_VECTOR (23 downto 0) := "111111111111111111100000";
constant ap_const_lv2_1 : STD_LOGIC_VECTOR (1 downto 0) := "01";
constant ap_const_lv38_26 : STD_LOGIC_VECTOR (37 downto 0) := "00000000000000000000000000000000100110";
constant ap_const_lv45_18DA : STD_LOGIC_VECTOR (44 downto 0) := "000000000000000000000000000000001100011011010";
constant ap_const_lv76_51EB851EB9 : STD_LOGIC_VECTOR (75 downto 0) := "0000000000000000000000000000000000000101000111101011100001010001111010111001";
constant ap_const_lv90_28F5C28F5C29 : STD_LOGIC_VECTOR (89 downto 0) := "000000000000000000000000000000000000000000001010001111010111000010100011110101110000101001";
constant ap_const_lv2_3 : STD_LOGIC_VECTOR (1 downto 0) := "11";
constant ap_const_lv32_33 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000110011";
constant ap_const_lv32_4B : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001001011";
constant ap_const_lv32_3A : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000111010";
constant ap_const_lv32_59 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001011001";
constant ap_const_lv11_1 : STD_LOGIC_VECTOR (10 downto 0) := "00000000001";
constant ap_const_lv24_40 : STD_LOGIC_VECTOR (23 downto 0) := "000000000000000001000000";
constant ap_const_lv16_0 : STD_LOGIC_VECTOR (15 downto 0) := "0000000000000000";
constant ap_const_lv16_FFFF : STD_LOGIC_VECTOR (15 downto 0) := "1111111111111111";
constant ap_const_lv24_FFFFC0 : STD_LOGIC_VECTOR (23 downto 0) := "111111111111111111000000";
constant ap_const_lv13_1 : STD_LOGIC_VECTOR (12 downto 0) := "0000000000001";
constant ap_const_lv32_13 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000010011";
constant ap_const_lv32_14 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000010100";
constant ap_const_lv32_1D : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000011101";
constant ap_const_lv32_1E : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000011110";
constant ap_const_lv32_27 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000100111";
constant ap_const_lv32_28 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000101000";
constant ap_const_lv32_31 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000110001";
constant ap_const_lv32_32 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000110010";
constant ap_const_lv32_3B : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000111011";
constant ap_const_lv32_3C : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000111100";
constant ap_const_lv32_45 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001000101";
constant ap_const_lv32_46 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001000110";
constant ap_const_lv32_4F : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001001111";
constant ap_const_lv32_50 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001010000";
constant ap_const_lv32_5A : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001011010";
constant ap_const_lv32_63 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001100011";
constant ap_const_lv32_64 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001100100";
constant ap_const_lv32_6D : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001101101";
constant ap_const_lv32_6E : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001101110";
constant ap_const_lv32_77 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000001110111";
constant ap_const_lv6_0 : STD_LOGIC_VECTOR (5 downto 0) := "000000";
constant ap_const_lv30_6 : STD_LOGIC_VECTOR (29 downto 0) := "000000000000000000000000000110";
constant ap_const_lv19_1 : STD_LOGIC_VECTOR (18 downto 0) := "0000000000000000001";
constant ap_const_lv32_12 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000010010";
constant ap_const_lv18_0 : STD_LOGIC_VECTOR (17 downto 0) := "000000000000000000";
constant ap_const_lv32_11 : STD_LOGIC_VECTOR (31 downto 0) := "00000000000000000000000000010001";
constant ap_const_lv8_0 : STD_LOGIC_VECTOR (7 downto 0) := "00000000";
constant ap_const_lv10_3FF : STD_LOGIC_VECTOR (9 downto 0) := "1111111111";
signal ap_CS_fsm : STD_LOGIC_VECTOR (16 downto 0) := "00000000000000001";
attribute fsm_encoding : string;
attribute fsm_encoding of ap_CS_fsm : signal is "none";
signal ap_CS_fsm_state1 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state1 : signal is "none";
signal src_data_V_V_blk_n : STD_LOGIC;
signal ap_CS_fsm_pp2_stage0 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_pp2_stage0 : signal is "none";
signal ap_enable_reg_pp2_iter1 : STD_LOGIC := '0';
signal ap_block_pp2_stage0 : BOOLEAN;
signal icmp_ln887_12_reg_3298 : STD_LOGIC_VECTOR (0 downto 0);
signal dst_data_V_V_blk_n : STD_LOGIC;
signal ap_enable_reg_pp2_iter37 : STD_LOGIC := '0';
signal icmp_ln887_12_reg_3298_pp2_iter36_reg : STD_LOGIC_VECTOR (0 downto 0);
signal t_V_2_reg_413 : STD_LOGIC_VECTOR (12 downto 0);
signal reg_433 : STD_LOGIC_VECTOR (31 downto 0);
signal ap_CS_fsm_state8 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state8 : signal is "none";
signal ap_CS_fsm_state12 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state12 : signal is "none";
signal reg_437 : STD_LOGIC_VECTOR (31 downto 0);
signal reg_441 : STD_LOGIC_VECTOR (31 downto 0);
signal width_reg_3128 : STD_LOGIC_VECTOR (13 downto 0);
signal total_fu_3033_p2 : STD_LOGIC_VECTOR (31 downto 0);
signal total_reg_3133 : STD_LOGIC_VECTOR (31 downto 0);
signal ap_CS_fsm_state2 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state2 : signal is "none";
signal grp_fu_541_p2 : STD_LOGIC_VECTOR (37 downto 0);
signal mul_ln1148_reg_3150 : STD_LOGIC_VECTOR (37 downto 0);
signal ap_CS_fsm_state3 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state3 : signal is "none";
signal grp_fu_547_p2 : STD_LOGIC_VECTOR (44 downto 0);
signal mul_ln1148_1_reg_3155 : STD_LOGIC_VECTOR (44 downto 0);
signal ap_CS_fsm_state4 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state4 : signal is "none";
signal grp_fu_556_p2 : STD_LOGIC_VECTOR (75 downto 0);
signal mul_ln1148_2_reg_3170 : STD_LOGIC_VECTOR (75 downto 0);
signal ap_CS_fsm_state5 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state5 : signal is "none";
signal grp_fu_565_p2 : STD_LOGIC_VECTOR (89 downto 0);
signal mul_ln1148_3_reg_3175 : STD_LOGIC_VECTOR (89 downto 0);
signal icmp_ln293_fu_571_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal ap_CS_fsm_state6 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state6 : signal is "none";
signal j_fu_577_p2 : STD_LOGIC_VECTOR (1 downto 0);
signal j_reg_3184 : STD_LOGIC_VECTOR (1 downto 0);
signal trunc_ln555_4_reg_3189 : STD_LOGIC_VECTOR (31 downto 0);
signal zext_ln887_2_fu_601_p1 : STD_LOGIC_VECTOR (32 downto 0);
signal zext_ln887_2_reg_3194 : STD_LOGIC_VECTOR (32 downto 0);
signal sext_ln1148_fu_641_p1 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1148_reg_3199 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1148_1_fu_645_p1 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1148_1_reg_3207 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1148_2_fu_649_p1 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1148_2_reg_3215 : STD_LOGIC_VECTOR (29 downto 0);
signal ap_CS_fsm_state7 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state7 : signal is "none";
signal add_ln700_fu_699_p2 : STD_LOGIC_VECTOR (10 downto 0);
signal ap_CS_fsm_state9 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state9 : signal is "none";
signal add_ln700_28_fu_705_p2 : STD_LOGIC_VECTOR (31 downto 0);
signal and_ln317_fu_693_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal sext_ln895_fu_759_p1 : STD_LOGIC_VECTOR (32 downto 0);
signal sext_ln895_reg_3251 : STD_LOGIC_VECTOR (32 downto 0);
signal ap_CS_fsm_state10 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state10 : signal is "none";
signal ap_CS_fsm_state11 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state11 : signal is "none";
signal icmp_ln883_fu_769_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln883_reg_3271 : STD_LOGIC_VECTOR (0 downto 0);
signal add_ln701_fu_799_p2 : STD_LOGIC_VECTOR (15 downto 0);
signal ap_CS_fsm_state13 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state13 : signal is "none";
signal and_ln329_fu_794_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln701_fu_805_p2 : STD_LOGIC_VECTOR (31 downto 0);
signal icmp_ln887_11_fu_872_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal ap_CS_fsm_state15 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state15 : signal is "none";
signal row_V_fu_877_p2 : STD_LOGIC_VECTOR (12 downto 0);
signal row_V_reg_3293 : STD_LOGIC_VECTOR (12 downto 0);
signal icmp_ln887_12_fu_887_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal ap_block_state16_pp2_stage0_iter0 : BOOLEAN;
signal ap_block_state17_pp2_stage0_iter1 : BOOLEAN;
signal ap_block_state18_pp2_stage0_iter2 : BOOLEAN;
signal ap_block_state19_pp2_stage0_iter3 : BOOLEAN;
signal ap_block_state20_pp2_stage0_iter4 : BOOLEAN;
signal ap_block_state21_pp2_stage0_iter5 : BOOLEAN;
signal ap_block_state22_pp2_stage0_iter6 : BOOLEAN;
signal ap_block_state23_pp2_stage0_iter7 : BOOLEAN;
signal ap_block_state24_pp2_stage0_iter8 : BOOLEAN;
signal ap_block_state25_pp2_stage0_iter9 : BOOLEAN;
signal ap_block_state26_pp2_stage0_iter10 : BOOLEAN;
signal ap_block_state27_pp2_stage0_iter11 : BOOLEAN;
signal ap_block_state28_pp2_stage0_iter12 : BOOLEAN;
signal ap_block_state29_pp2_stage0_iter13 : BOOLEAN;
signal ap_block_state30_pp2_stage0_iter14 : BOOLEAN;
signal ap_block_state31_pp2_stage0_iter15 : BOOLEAN;
signal ap_block_state32_pp2_stage0_iter16 : BOOLEAN;
signal ap_block_state33_pp2_stage0_iter17 : BOOLEAN;
signal ap_block_state34_pp2_stage0_iter18 : BOOLEAN;
signal ap_block_state35_pp2_stage0_iter19 : BOOLEAN;
signal ap_block_state36_pp2_stage0_iter20 : BOOLEAN;
signal ap_block_state37_pp2_stage0_iter21 : BOOLEAN;
signal ap_block_state38_pp2_stage0_iter22 : BOOLEAN;
signal ap_block_state39_pp2_stage0_iter23 : BOOLEAN;
signal ap_block_state40_pp2_stage0_iter24 : BOOLEAN;
signal ap_block_state41_pp2_stage0_iter25 : BOOLEAN;
signal ap_block_state42_pp2_stage0_iter26 : BOOLEAN;
signal ap_block_state43_pp2_stage0_iter27 : BOOLEAN;
signal ap_block_state44_pp2_stage0_iter28 : BOOLEAN;
signal ap_block_state45_pp2_stage0_iter29 : BOOLEAN;
signal ap_block_state46_pp2_stage0_iter30 : BOOLEAN;
signal ap_block_state47_pp2_stage0_iter31 : BOOLEAN;
signal ap_block_state48_pp2_stage0_iter32 : BOOLEAN;
signal ap_block_state49_pp2_stage0_iter33 : BOOLEAN;
signal ap_block_state50_pp2_stage0_iter34 : BOOLEAN;
signal ap_block_state51_pp2_stage0_iter35 : BOOLEAN;
signal ap_block_state52_pp2_stage0_iter36 : BOOLEAN;
signal ap_block_state53_pp2_stage0_iter37 : BOOLEAN;
signal ap_block_pp2_stage0_11001 : BOOLEAN;
signal icmp_ln887_12_reg_3298_pp2_iter1_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter2_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter3_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter4_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter5_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter6_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter7_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter8_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter9_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter10_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter11_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter12_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter13_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter14_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter15_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter16_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter17_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter18_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter19_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter20_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter21_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter22_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter23_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter24_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter25_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter26_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter27_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter28_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter29_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter30_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter31_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter32_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter33_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter34_reg : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_12_reg_3298_pp2_iter35_reg : STD_LOGIC_VECTOR (0 downto 0);
signal col_V_fu_892_p2 : STD_LOGIC_VECTOR (12 downto 0);
signal ap_enable_reg_pp2_iter0 : STD_LOGIC := '0';
signal trunc_ln703_fu_898_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal trunc_ln703_reg_3307 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_66_reg_3312 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_69_reg_3317 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_72_reg_3322 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_75_reg_3327 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_78_reg_3332 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_81_reg_3337 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_84_reg_3342 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_87_reg_3347 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_90_reg_3352 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_93_reg_3357 : STD_LOGIC_VECTOR (9 downto 0);
signal tmp_96_reg_3362 : STD_LOGIC_VECTOR (9 downto 0);
signal sub_ln1118_fu_1398_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_reg_3427 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_27_reg_3432 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_fu_1424_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_reg_3437 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_1_fu_1456_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_1_reg_3442 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_28_reg_3447 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_12_fu_1482_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_12_reg_3452 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_2_fu_1514_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_2_reg_3457 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_29_reg_3462 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_13_fu_1540_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_13_reg_3467 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_3_fu_1572_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_3_reg_3472 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_30_reg_3477 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_14_fu_1598_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_14_reg_3482 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_4_fu_1630_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_4_reg_3487 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_31_reg_3492 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_15_fu_1656_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_15_reg_3497 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_5_fu_1688_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_5_reg_3502 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_32_reg_3507 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_16_fu_1714_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_16_reg_3512 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_6_fu_1746_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_6_reg_3517 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_33_reg_3522 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_17_fu_1772_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_17_reg_3527 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_7_fu_1804_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_7_reg_3532 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_34_reg_3537 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_18_fu_1830_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_18_reg_3542 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_8_fu_1862_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_8_reg_3547 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_35_reg_3552 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_19_fu_1888_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_19_reg_3557 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_9_fu_1920_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_9_reg_3562 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_36_reg_3567 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_20_fu_1946_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_20_reg_3572 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_10_fu_1978_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_10_reg_3577 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_37_reg_3582 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_21_fu_2004_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_21_reg_3587 : STD_LOGIC_VECTOR (0 downto 0);
signal sub_ln1118_11_fu_2036_p2 : STD_LOGIC_VECTOR (40 downto 0);
signal sub_ln1118_11_reg_3592 : STD_LOGIC_VECTOR (40 downto 0);
signal tmp_38_reg_3597 : STD_LOGIC_VECTOR (17 downto 0);
signal icmp_ln851_22_fu_2062_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln851_22_reg_3602 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln45_fu_2139_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_reg_3607 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_1_fu_2218_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_1_reg_3612 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_2_fu_2297_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_2_reg_3617 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_3_fu_2376_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_3_reg_3622 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_4_fu_2455_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_4_reg_3627 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_5_fu_2534_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_5_reg_3632 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_6_fu_2613_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_6_reg_3637 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_7_fu_2692_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_7_reg_3642 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_8_fu_2771_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_8_reg_3647 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_9_fu_2850_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_9_reg_3652 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_10_fu_2929_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_10_reg_3657 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_11_fu_3008_p3 : STD_LOGIC_VECTOR (9 downto 0);
signal select_ln45_11_reg_3662 : STD_LOGIC_VECTOR (9 downto 0);
signal ap_block_pp2_stage0_subdone : BOOLEAN;
signal ap_condition_pp2_exit_iter0_state16 : STD_LOGIC;
signal ap_enable_reg_pp2_iter2 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter3 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter4 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter5 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter6 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter7 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter8 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter9 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter10 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter11 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter12 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter13 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter14 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter15 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter16 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter17 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter18 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter19 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter20 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter21 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter22 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter23 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter24 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter25 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter26 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter27 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter28 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter29 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter30 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter31 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter32 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter33 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter34 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter35 : STD_LOGIC := '0';
signal ap_enable_reg_pp2_iter36 : STD_LOGIC := '0';
signal j_0_reg_346 : STD_LOGIC_VECTOR (1 downto 0);
signal ap_CS_fsm_state14 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state14 : signal is "none";
signal t_V_16_0_reg_358 : STD_LOGIC_VECTOR (10 downto 0);
signal p_01629_1_0_reg_370 : STD_LOGIC_VECTOR (31 downto 0);
signal t_V_17_0_reg_381 : STD_LOGIC_VECTOR (15 downto 0);
signal p_01348_1_0_reg_393 : STD_LOGIC_VECTOR (31 downto 0);
signal t_V_reg_402 : STD_LOGIC_VECTOR (12 downto 0);
signal ap_CS_fsm_state54 : STD_LOGIC;
attribute fsm_encoding of ap_CS_fsm_state54 : signal is "none";
signal zext_ln544_fu_653_p1 : STD_LOGIC_VECTOR (63 downto 0);
signal zext_ln544_2_fu_762_p1 : STD_LOGIC_VECTOR (63 downto 0);
signal p_Val2_s_fu_210 : STD_LOGIC_VECTOR (23 downto 0);
signal maxValue_0_V_2_fu_832_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal p_Val2_6_fu_214 : STD_LOGIC_VECTOR (23 downto 0);
signal minValue_0_V_2_fu_723_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal p_Val2_7_fu_218 : STD_LOGIC_VECTOR (23 downto 0);
signal p_Val2_8_fu_222 : STD_LOGIC_VECTOR (23 downto 0);
signal p_Val2_9_fu_226 : STD_LOGIC_VECTOR (23 downto 0);
signal p_Val2_10_fu_230 : STD_LOGIC_VECTOR (23 downto 0);
signal minValue_0_V_fu_234 : STD_LOGIC_VECTOR (23 downto 0);
signal minValue_1_V_fu_238 : STD_LOGIC_VECTOR (23 downto 0);
signal minValue_2_V_fu_242 : STD_LOGIC_VECTOR (23 downto 0);
signal maxValue_0_V_fu_246 : STD_LOGIC_VECTOR (23 downto 0);
signal maxValue_1_V_fu_250 : STD_LOGIC_VECTOR (23 downto 0);
signal maxValue_2_V_fu_254 : STD_LOGIC_VECTOR (23 downto 0);
signal ap_block_pp2_stage0_01001 : BOOLEAN;
signal grp_fu_541_p0 : STD_LOGIC_VECTOR (31 downto 0);
signal grp_fu_541_p1 : STD_LOGIC_VECTOR (6 downto 0);
signal grp_fu_547_p0 : STD_LOGIC_VECTOR (31 downto 0);
signal grp_fu_547_p1 : STD_LOGIC_VECTOR (13 downto 0);
signal grp_fu_556_p0 : STD_LOGIC_VECTOR (37 downto 0);
signal grp_fu_556_p1 : STD_LOGIC_VECTOR (39 downto 0);
signal grp_fu_565_p0 : STD_LOGIC_VECTOR (44 downto 0);
signal grp_fu_565_p1 : STD_LOGIC_VECTOR (46 downto 0);
signal tmp_167_fu_583_p4 : STD_LOGIC_VECTOR (24 downto 0);
signal maxmin_diff_0_V_fu_623_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal maxmin_diff_1_V_fu_629_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal maxmin_diff_2_V_fu_635_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_445_p5 : STD_LOGIC_VECTOR (31 downto 0);
signal zext_ln215_4_fu_664_p1 : STD_LOGIC_VECTOR (32 downto 0);
signal zext_ln215_fu_660_p1 : STD_LOGIC_VECTOR (32 downto 0);
signal add_ln1353_fu_668_p2 : STD_LOGIC_VECTOR (32 downto 0);
signal tmp_168_fu_679_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal icmp_ln887_fu_674_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal xor_ln887_fu_687_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal tmp_105_fu_711_p5 : STD_LOGIC_VECTOR (23 downto 0);
signal zext_ln215_5_fu_775_p1 : STD_LOGIC_VECTOR (32 downto 0);
signal zext_ln215_6_fu_779_p1 : STD_LOGIC_VECTOR (32 downto 0);
signal sub_ln1354_fu_783_p2 : STD_LOGIC_VECTOR (32 downto 0);
signal icmp_ln895_fu_789_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal tmp_107_fu_820_p5 : STD_LOGIC_VECTOR (23 downto 0);
signal zext_ln887_fu_868_p1 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln887_1_fu_883_p1 : STD_LOGIC_VECTOR (13 downto 0);
signal shl_ln_fu_1012_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_fu_1019_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_fu_1023_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1037_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1037_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_1_fu_1042_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_1_fu_1049_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_1_fu_1053_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1067_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1067_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_2_fu_1072_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_2_fu_1079_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_2_fu_1083_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1097_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1097_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_3_fu_1102_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_3_fu_1109_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_3_fu_1113_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1127_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1127_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_4_fu_1132_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_4_fu_1139_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_4_fu_1143_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1157_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1157_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_5_fu_1162_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_5_fu_1169_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_5_fu_1173_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1187_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1187_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_6_fu_1192_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_6_fu_1199_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_6_fu_1203_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1217_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1217_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_7_fu_1222_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_7_fu_1229_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_7_fu_1233_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1247_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1247_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_8_fu_1252_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_8_fu_1259_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_8_fu_1263_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1277_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1277_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_9_fu_1282_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_9_fu_1289_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_9_fu_1293_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1307_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1307_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_s_fu_1312_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_10_fu_1319_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_10_fu_1323_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1337_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1337_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln703_10_fu_1342_p3 : STD_LOGIC_VECTOR (15 downto 0);
signal zext_ln703_11_fu_1349_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal sub_ln703_11_fu_1353_p2 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1367_p0 : STD_LOGIC_VECTOR (29 downto 0);
signal grp_fu_1367_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal grp_fu_1037_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_fu_1372_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln3_fu_1376_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_fu_1388_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_fu_1384_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_1_fu_1394_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_2_fu_1414_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1067_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_1_fu_1430_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_2_fu_1434_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_1_fu_1446_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_2_fu_1442_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_3_fu_1452_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_1_fu_1472_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1097_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_2_fu_1488_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_4_fu_1492_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_3_fu_1504_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_4_fu_1500_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_5_fu_1510_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_2_fu_1530_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1127_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_3_fu_1546_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_6_fu_1550_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_5_fu_1562_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_6_fu_1558_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_7_fu_1568_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_3_fu_1588_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1157_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_4_fu_1604_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_8_fu_1608_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_7_fu_1620_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_8_fu_1616_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_9_fu_1626_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_4_fu_1646_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1187_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_5_fu_1662_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_s_fu_1666_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_9_fu_1678_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_10_fu_1674_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_11_fu_1684_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_5_fu_1704_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1217_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_6_fu_1720_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_10_fu_1724_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_11_fu_1736_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_12_fu_1732_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_13_fu_1742_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_6_fu_1762_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1247_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_7_fu_1778_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_12_fu_1782_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_13_fu_1794_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_14_fu_1790_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_15_fu_1800_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_7_fu_1820_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1277_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_8_fu_1836_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_14_fu_1840_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_15_fu_1852_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_16_fu_1848_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_17_fu_1858_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_8_fu_1878_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1307_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_9_fu_1894_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_16_fu_1898_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_17_fu_1910_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_18_fu_1906_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_19_fu_1916_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_9_fu_1936_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1337_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_10_fu_1952_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_18_fu_1956_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_19_fu_1968_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_20_fu_1964_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_21_fu_1974_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_s_fu_1994_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal grp_fu_1367_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal trunc_ln1118_11_fu_2010_p1 : STD_LOGIC_VECTOR (23 downto 0);
signal shl_ln1118_20_fu_2014_p3 : STD_LOGIC_VECTOR (39 downto 0);
signal shl_ln1118_21_fu_2026_p2 : STD_LOGIC_VECTOR (29 downto 0);
signal sext_ln1118_22_fu_2022_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal sext_ln1118_23_fu_2032_p1 : STD_LOGIC_VECTOR (40 downto 0);
signal p_Result_105_10_fu_2052_p4 : STD_LOGIC_VECTOR (5 downto 0);
signal sext_ln835_fu_2068_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_29_fu_2078_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_169_fu_2071_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_fu_2084_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_fu_2091_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_170_fu_2103_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_fu_2099_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_fu_2111_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_171_fu_2119_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_fu_2129_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_fu_2135_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_1_fu_2147_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_30_fu_2157_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_172_fu_2150_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_12_fu_2163_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_12_fu_2170_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_173_fu_2182_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_13_fu_2178_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_1_fu_2190_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_174_fu_2198_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_1_fu_2208_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_1_fu_2214_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_2_fu_2226_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_31_fu_2236_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_175_fu_2229_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_13_fu_2242_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_13_fu_2249_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_176_fu_2261_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_14_fu_2257_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_2_fu_2269_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_177_fu_2277_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_2_fu_2287_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_2_fu_2293_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_3_fu_2305_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_32_fu_2315_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_178_fu_2308_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_14_fu_2321_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_14_fu_2328_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_179_fu_2340_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_15_fu_2336_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_3_fu_2348_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_180_fu_2356_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_3_fu_2366_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_3_fu_2372_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_4_fu_2384_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_33_fu_2394_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_181_fu_2387_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_15_fu_2400_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_15_fu_2407_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_182_fu_2419_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_16_fu_2415_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_4_fu_2427_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_183_fu_2435_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_4_fu_2445_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_4_fu_2451_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_5_fu_2463_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_34_fu_2473_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_184_fu_2466_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_16_fu_2479_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_16_fu_2486_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_185_fu_2498_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_17_fu_2494_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_5_fu_2506_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_186_fu_2514_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_5_fu_2524_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_5_fu_2530_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_6_fu_2542_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_35_fu_2552_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_187_fu_2545_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_17_fu_2558_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_17_fu_2565_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_188_fu_2577_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_18_fu_2573_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_6_fu_2585_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_189_fu_2593_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_6_fu_2603_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_6_fu_2609_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_7_fu_2621_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_36_fu_2631_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_190_fu_2624_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_18_fu_2637_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_18_fu_2644_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_191_fu_2656_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_19_fu_2652_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_7_fu_2664_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_192_fu_2672_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_7_fu_2682_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_7_fu_2688_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_8_fu_2700_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_37_fu_2710_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_193_fu_2703_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_19_fu_2716_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_19_fu_2723_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_194_fu_2735_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_20_fu_2731_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_8_fu_2743_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_195_fu_2751_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_8_fu_2761_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_8_fu_2767_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_9_fu_2779_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_38_fu_2789_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_196_fu_2782_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_20_fu_2795_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_20_fu_2802_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_197_fu_2814_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_21_fu_2810_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_9_fu_2822_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_198_fu_2830_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_9_fu_2840_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_9_fu_2846_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_10_fu_2858_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_39_fu_2868_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_199_fu_2861_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_21_fu_2874_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_21_fu_2881_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_200_fu_2893_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_22_fu_2889_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_10_fu_2901_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_201_fu_2909_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_10_fu_2919_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_10_fu_2925_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal sext_ln835_11_fu_2937_p1 : STD_LOGIC_VECTOR (18 downto 0);
signal add_ln700_40_fu_2947_p2 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_202_fu_2940_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal select_ln851_22_fu_2953_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal select_ln850_22_fu_2960_p3 : STD_LOGIC_VECTOR (18 downto 0);
signal tmp_203_fu_2972_p3 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln647_23_fu_2968_p1 : STD_LOGIC_VECTOR (17 downto 0);
signal select_ln399_11_fu_2980_p3 : STD_LOGIC_VECTOR (17 downto 0);
signal tmp_204_fu_2988_p4 : STD_LOGIC_VECTOR (7 downto 0);
signal icmp_ln45_11_fu_2998_p2 : STD_LOGIC_VECTOR (0 downto 0);
signal trunc_ln45_11_fu_3004_p1 : STD_LOGIC_VECTOR (9 downto 0);
signal total_fu_3033_p0 : STD_LOGIC_VECTOR (15 downto 0);
signal total_fu_3033_p1 : STD_LOGIC_VECTOR (15 downto 0);
signal grp_fu_1037_ce : STD_LOGIC;
signal grp_fu_1067_ce : STD_LOGIC;
signal grp_fu_1097_ce : STD_LOGIC;
signal grp_fu_1127_ce : STD_LOGIC;
signal grp_fu_1157_ce : STD_LOGIC;
signal grp_fu_1187_ce : STD_LOGIC;
signal grp_fu_1217_ce : STD_LOGIC;
signal grp_fu_1247_ce : STD_LOGIC;
signal grp_fu_1277_ce : STD_LOGIC;
signal grp_fu_1307_ce : STD_LOGIC;
signal grp_fu_1337_ce : STD_LOGIC;
signal grp_fu_1367_ce : STD_LOGIC;
signal ap_NS_fsm : STD_LOGIC_VECTOR (16 downto 0);
signal ap_idle_pp2 : STD_LOGIC;
signal ap_enable_pp2 : STD_LOGIC;
signal grp_fu_541_p00 : STD_LOGIC_VECTOR (37 downto 0);
signal grp_fu_547_p00 : STD_LOGIC_VECTOR (44 downto 0);
signal grp_fu_556_p00 : STD_LOGIC_VECTOR (75 downto 0);
signal grp_fu_565_p00 : STD_LOGIC_VECTOR (89 downto 0);
signal total_fu_3033_p00 : STD_LOGIC_VECTOR (31 downto 0);
signal total_fu_3033_p10 : STD_LOGIC_VECTOR (31 downto 0);
component ISPPipeline_accelPgM IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
din2_WIDTH : INTEGER;
din3_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
din0 : IN STD_LOGIC_VECTOR (31 downto 0);
din1 : IN STD_LOGIC_VECTOR (31 downto 0);
din2 : IN STD_LOGIC_VECTOR (31 downto 0);
din3 : IN STD_LOGIC_VECTOR (1 downto 0);
dout : OUT STD_LOGIC_VECTOR (31 downto 0) );
end component;
component ISPPipeline_accelQgW IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
clk : IN STD_LOGIC;
reset : IN STD_LOGIC;
din0 : IN STD_LOGIC_VECTOR (31 downto 0);
din1 : IN STD_LOGIC_VECTOR (6 downto 0);
ce : IN STD_LOGIC;
dout : OUT STD_LOGIC_VECTOR (37 downto 0) );
end component;
component ISPPipeline_accelRg6 IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
clk : IN STD_LOGIC;
reset : IN STD_LOGIC;
din0 : IN STD_LOGIC_VECTOR (31 downto 0);
din1 : IN STD_LOGIC_VECTOR (13 downto 0);
ce : IN STD_LOGIC;
dout : OUT STD_LOGIC_VECTOR (44 downto 0) );
end component;
component ISPPipeline_accelShg IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
clk : IN STD_LOGIC;
reset : IN STD_LOGIC;
din0 : IN STD_LOGIC_VECTOR (37 downto 0);
din1 : IN STD_LOGIC_VECTOR (39 downto 0);
ce : IN STD_LOGIC;
dout : OUT STD_LOGIC_VECTOR (75 downto 0) );
end component;
component ISPPipeline_accelThq IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
clk : IN STD_LOGIC;
reset : IN STD_LOGIC;
din0 : IN STD_LOGIC_VECTOR (44 downto 0);
din1 : IN STD_LOGIC_VECTOR (46 downto 0);
ce : IN STD_LOGIC;
dout : OUT STD_LOGIC_VECTOR (89 downto 0) );
end component;
component ISPPipeline_accelUhA IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
din2_WIDTH : INTEGER;
din3_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
din0 : IN STD_LOGIC_VECTOR (23 downto 0);
din1 : IN STD_LOGIC_VECTOR (23 downto 0);
din2 : IN STD_LOGIC_VECTOR (23 downto 0);
din3 : IN STD_LOGIC_VECTOR (1 downto 0);
dout : OUT STD_LOGIC_VECTOR (23 downto 0) );
end component;
component ISPPipeline_accelVhK IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
clk : IN STD_LOGIC;
reset : IN STD_LOGIC;
din0 : IN STD_LOGIC_VECTOR (29 downto 0);
din1 : IN STD_LOGIC_VECTOR (23 downto 0);
ce : IN STD_LOGIC;
dout : OUT STD_LOGIC_VECTOR (29 downto 0) );
end component;
component ISPPipeline_accelWhU IS
generic (
ID : INTEGER;
NUM_STAGE : INTEGER;
din0_WIDTH : INTEGER;
din1_WIDTH : INTEGER;
dout_WIDTH : INTEGER );
port (
din0 : IN STD_LOGIC_VECTOR (15 downto 0);
din1 : IN STD_LOGIC_VECTOR (15 downto 0);
dout : OUT STD_LOGIC_VECTOR (31 downto 0) );
end component;
begin
ISPPipeline_accelPgM_U438 : component ISPPipeline_accelPgM
generic map (
ID => 1,
NUM_STAGE => 1,
din0_WIDTH => 32,
din1_WIDTH => 32,
din2_WIDTH => 32,
din3_WIDTH => 2,
dout_WIDTH => 32)
port map (
din0 => reg_433,
din1 => reg_437,
din2 => reg_441,
din3 => j_0_reg_346,
dout => grp_fu_445_p5);
ISPPipeline_accelQgW_U439 : component ISPPipeline_accelQgW
generic map (
ID => 1,
NUM_STAGE => 2,
din0_WIDTH => 32,
din1_WIDTH => 7,
dout_WIDTH => 38)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_541_p0,
din1 => grp_fu_541_p1,
ce => ap_const_logic_1,
dout => grp_fu_541_p2);
ISPPipeline_accelRg6_U440 : component ISPPipeline_accelRg6
generic map (
ID => 1,
NUM_STAGE => 2,
din0_WIDTH => 32,
din1_WIDTH => 14,
dout_WIDTH => 45)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_547_p0,
din1 => grp_fu_547_p1,
ce => ap_const_logic_1,
dout => grp_fu_547_p2);
ISPPipeline_accelShg_U441 : component ISPPipeline_accelShg
generic map (
ID => 1,
NUM_STAGE => 2,
din0_WIDTH => 38,
din1_WIDTH => 40,
dout_WIDTH => 76)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_556_p0,
din1 => grp_fu_556_p1,
ce => ap_const_logic_1,
dout => grp_fu_556_p2);
ISPPipeline_accelThq_U442 : component ISPPipeline_accelThq
generic map (
ID => 1,
NUM_STAGE => 2,
din0_WIDTH => 45,
din1_WIDTH => 47,
dout_WIDTH => 90)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_565_p0,
din1 => grp_fu_565_p1,
ce => ap_const_logic_1,
dout => grp_fu_565_p2);
ISPPipeline_accelUhA_U443 : component ISPPipeline_accelUhA
generic map (
ID => 1,
NUM_STAGE => 1,
din0_WIDTH => 24,
din1_WIDTH => 24,
din2_WIDTH => 24,
din3_WIDTH => 2,
dout_WIDTH => 24)
port map (
din0 => minValue_0_V_fu_234,
din1 => minValue_1_V_fu_238,
din2 => minValue_2_V_fu_242,
din3 => j_0_reg_346,
dout => tmp_105_fu_711_p5);
ISPPipeline_accelUhA_U444 : component ISPPipeline_accelUhA
generic map (
ID => 1,
NUM_STAGE => 1,
din0_WIDTH => 24,
din1_WIDTH => 24,
din2_WIDTH => 24,
din3_WIDTH => 2,
dout_WIDTH => 24)
port map (
din0 => maxValue_0_V_fu_246,
din1 => maxValue_1_V_fu_250,
din2 => maxValue_2_V_fu_254,
din3 => j_0_reg_346,
dout => tmp_107_fu_820_p5);
ISPPipeline_accelVhK_U445 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1037_p0,
din1 => grp_fu_1037_p1,
ce => grp_fu_1037_ce,
dout => grp_fu_1037_p2);
ISPPipeline_accelVhK_U446 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1067_p0,
din1 => grp_fu_1067_p1,
ce => grp_fu_1067_ce,
dout => grp_fu_1067_p2);
ISPPipeline_accelVhK_U447 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1097_p0,
din1 => grp_fu_1097_p1,
ce => grp_fu_1097_ce,
dout => grp_fu_1097_p2);
ISPPipeline_accelVhK_U448 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1127_p0,
din1 => grp_fu_1127_p1,
ce => grp_fu_1127_ce,
dout => grp_fu_1127_p2);
ISPPipeline_accelVhK_U449 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1157_p0,
din1 => grp_fu_1157_p1,
ce => grp_fu_1157_ce,
dout => grp_fu_1157_p2);
ISPPipeline_accelVhK_U450 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1187_p0,
din1 => grp_fu_1187_p1,
ce => grp_fu_1187_ce,
dout => grp_fu_1187_p2);
ISPPipeline_accelVhK_U451 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1217_p0,
din1 => grp_fu_1217_p1,
ce => grp_fu_1217_ce,
dout => grp_fu_1217_p2);
ISPPipeline_accelVhK_U452 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1247_p0,
din1 => grp_fu_1247_p1,
ce => grp_fu_1247_ce,
dout => grp_fu_1247_p2);
ISPPipeline_accelVhK_U453 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1277_p0,
din1 => grp_fu_1277_p1,
ce => grp_fu_1277_ce,
dout => grp_fu_1277_p2);
ISPPipeline_accelVhK_U454 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1307_p0,
din1 => grp_fu_1307_p1,
ce => grp_fu_1307_ce,
dout => grp_fu_1307_p2);
ISPPipeline_accelVhK_U455 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1337_p0,
din1 => grp_fu_1337_p1,
ce => grp_fu_1337_ce,
dout => grp_fu_1337_p2);
ISPPipeline_accelVhK_U456 : component ISPPipeline_accelVhK
generic map (
ID => 1,
NUM_STAGE => 34,
din0_WIDTH => 30,
din1_WIDTH => 24,
dout_WIDTH => 30)
port map (
clk => ap_clk,
reset => ap_rst,
din0 => grp_fu_1367_p0,
din1 => grp_fu_1367_p1,
ce => grp_fu_1367_ce,
dout => grp_fu_1367_p2);
ISPPipeline_accelWhU_U457 : component ISPPipeline_accelWhU
generic map (
ID => 1,
NUM_STAGE => 1,
din0_WIDTH => 16,
din1_WIDTH => 16,
dout_WIDTH => 32)
port map (
din0 => total_fu_3033_p0,
din1 => total_fu_3033_p1,
dout => total_fu_3033_p2);
ap_CS_fsm_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_CS_fsm <= ap_ST_fsm_state1;
else
ap_CS_fsm <= ap_NS_fsm;
end if;
end if;
end process;
ap_enable_reg_pp2_iter0_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter0 <= ap_const_logic_0;
else
if (((ap_const_boolean_0 = ap_block_pp2_stage0_subdone) and (ap_const_logic_1 = ap_condition_pp2_exit_iter0_state16) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
ap_enable_reg_pp2_iter0 <= ap_const_logic_0;
elsif (((icmp_ln887_11_fu_872_p2 = ap_const_lv1_1) and (ap_const_logic_1 = ap_CS_fsm_state15))) then
ap_enable_reg_pp2_iter0 <= ap_const_logic_1;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter1_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter1 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
if ((ap_const_logic_1 = ap_condition_pp2_exit_iter0_state16)) then
ap_enable_reg_pp2_iter1 <= (ap_const_logic_1 xor ap_condition_pp2_exit_iter0_state16);
elsif ((ap_const_boolean_1 = ap_const_boolean_1)) then
ap_enable_reg_pp2_iter1 <= ap_enable_reg_pp2_iter0;
end if;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter10_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter10 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter10 <= ap_enable_reg_pp2_iter9;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter11_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter11 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter11 <= ap_enable_reg_pp2_iter10;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter12_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter12 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter12 <= ap_enable_reg_pp2_iter11;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter13_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter13 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter13 <= ap_enable_reg_pp2_iter12;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter14_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter14 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter14 <= ap_enable_reg_pp2_iter13;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter15_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter15 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter15 <= ap_enable_reg_pp2_iter14;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter16_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter16 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter16 <= ap_enable_reg_pp2_iter15;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter17_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter17 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter17 <= ap_enable_reg_pp2_iter16;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter18_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter18 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter18 <= ap_enable_reg_pp2_iter17;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter19_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter19 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter19 <= ap_enable_reg_pp2_iter18;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter2_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter2 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter2 <= ap_enable_reg_pp2_iter1;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter20_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter20 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter20 <= ap_enable_reg_pp2_iter19;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter21_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter21 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter21 <= ap_enable_reg_pp2_iter20;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter22_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter22 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter22 <= ap_enable_reg_pp2_iter21;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter23_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter23 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter23 <= ap_enable_reg_pp2_iter22;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter24_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter24 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter24 <= ap_enable_reg_pp2_iter23;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter25_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter25 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter25 <= ap_enable_reg_pp2_iter24;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter26_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter26 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter26 <= ap_enable_reg_pp2_iter25;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter27_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter27 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter27 <= ap_enable_reg_pp2_iter26;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter28_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter28 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter28 <= ap_enable_reg_pp2_iter27;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter29_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter29 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter29 <= ap_enable_reg_pp2_iter28;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter3_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter3 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter3 <= ap_enable_reg_pp2_iter2;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter30_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter30 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter30 <= ap_enable_reg_pp2_iter29;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter31_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter31 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter31 <= ap_enable_reg_pp2_iter30;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter32_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter32 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter32 <= ap_enable_reg_pp2_iter31;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter33_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter33 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter33 <= ap_enable_reg_pp2_iter32;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter34_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter34 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter34 <= ap_enable_reg_pp2_iter33;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter35_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter35 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter35 <= ap_enable_reg_pp2_iter34;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter36_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter36 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter36 <= ap_enable_reg_pp2_iter35;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter37_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter37 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter37 <= ap_enable_reg_pp2_iter36;
elsif (((icmp_ln887_11_fu_872_p2 = ap_const_lv1_1) and (ap_const_logic_1 = ap_CS_fsm_state15))) then
ap_enable_reg_pp2_iter37 <= ap_const_logic_0;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter4_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter4 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter4 <= ap_enable_reg_pp2_iter3;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter5_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter5 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter5 <= ap_enable_reg_pp2_iter4;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter6_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter6 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter6 <= ap_enable_reg_pp2_iter5;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter7_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter7 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter7 <= ap_enable_reg_pp2_iter6;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter8_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter8 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter8 <= ap_enable_reg_pp2_iter7;
end if;
end if;
end if;
end process;
ap_enable_reg_pp2_iter9_assign_proc : process(ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (ap_rst = '1') then
ap_enable_reg_pp2_iter9 <= ap_const_logic_0;
else
if ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone)) then
ap_enable_reg_pp2_iter9 <= ap_enable_reg_pp2_iter8;
end if;
end if;
end if;
end process;
j_0_reg_346_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state14)) then
j_0_reg_346 <= j_reg_3184;
elsif ((ap_const_logic_1 = ap_CS_fsm_state5)) then
j_0_reg_346 <= ap_const_lv2_0;
end if;
end if;
end process;
maxValue_0_V_fu_246_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_0) and (ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
maxValue_0_V_fu_246 <= maxValue_0_V_2_fu_832_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
maxValue_0_V_fu_246 <= ap_const_lv24_FFE0;
end if;
end if;
end process;
maxValue_1_V_fu_250_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_1) and (ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
maxValue_1_V_fu_250 <= maxValue_0_V_2_fu_832_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
maxValue_1_V_fu_250 <= ap_const_lv24_FFE0;
end if;
end if;
end process;
maxValue_2_V_fu_254_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((not((j_0_reg_346 = ap_const_lv2_1)) and not((j_0_reg_346 = ap_const_lv2_0)) and (ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
maxValue_2_V_fu_254 <= maxValue_0_V_2_fu_832_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
maxValue_2_V_fu_254 <= ap_const_lv24_FFE0;
end if;
end if;
end process;
minValue_0_V_fu_234_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_0) and (ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
minValue_0_V_fu_234 <= minValue_0_V_2_fu_723_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
minValue_0_V_fu_234 <= ap_const_lv24_FFFFE0;
end if;
end if;
end process;
minValue_1_V_fu_238_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_1) and (ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
minValue_1_V_fu_238 <= minValue_0_V_2_fu_723_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
minValue_1_V_fu_238 <= ap_const_lv24_FFFFE0;
end if;
end if;
end process;
minValue_2_V_fu_242_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((not((j_0_reg_346 = ap_const_lv2_1)) and not((j_0_reg_346 = ap_const_lv2_0)) and (ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
minValue_2_V_fu_242 <= minValue_0_V_2_fu_723_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
minValue_2_V_fu_242 <= ap_const_lv24_FFFFE0;
end if;
end if;
end process;
p_01348_1_0_reg_393_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
p_01348_1_0_reg_393 <= sub_ln701_fu_805_p2;
elsif ((ap_const_logic_1 = ap_CS_fsm_state10)) then
p_01348_1_0_reg_393 <= total_reg_3133;
end if;
end if;
end process;
p_01629_1_0_reg_370_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
p_01629_1_0_reg_370 <= add_ln700_28_fu_705_p2;
elsif (((ap_const_logic_1 = ap_CS_fsm_state6) and (icmp_ln293_fu_571_p2 = ap_const_lv1_0))) then
p_01629_1_0_reg_370 <= ap_const_lv32_0;
end if;
end if;
end process;
p_Val2_10_fu_230_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((not((j_0_reg_346 = ap_const_lv2_1)) and not((j_0_reg_346 = ap_const_lv2_0)) and (ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
p_Val2_10_fu_230 <= minValue_0_V_2_fu_723_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
p_Val2_10_fu_230 <= ap_const_lv24_FFFFE0;
end if;
end if;
end process;
p_Val2_6_fu_214_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_0) and (ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
p_Val2_6_fu_214 <= minValue_0_V_2_fu_723_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
p_Val2_6_fu_214 <= ap_const_lv24_FFFFE0;
end if;
end if;
end process;
p_Val2_7_fu_218_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_1) and (ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
p_Val2_7_fu_218 <= maxValue_0_V_2_fu_832_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
p_Val2_7_fu_218 <= ap_const_lv24_FFE0;
end if;
end if;
end process;
p_Val2_8_fu_222_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_1) and (ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
p_Val2_8_fu_222 <= minValue_0_V_2_fu_723_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
p_Val2_8_fu_222 <= ap_const_lv24_FFFFE0;
end if;
end if;
end process;
p_Val2_9_fu_226_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((not((j_0_reg_346 = ap_const_lv2_1)) and not((j_0_reg_346 = ap_const_lv2_0)) and (ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
p_Val2_9_fu_226 <= maxValue_0_V_2_fu_832_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
p_Val2_9_fu_226 <= ap_const_lv24_FFE0;
end if;
end if;
end process;
p_Val2_s_fu_210_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((j_0_reg_346 = ap_const_lv2_0) and (ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
p_Val2_s_fu_210 <= maxValue_0_V_2_fu_832_p2;
elsif (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
p_Val2_s_fu_210 <= ap_const_lv24_FFE0;
end if;
end if;
end process;
t_V_16_0_reg_358_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
t_V_16_0_reg_358 <= add_ln700_fu_699_p2;
elsif (((ap_const_logic_1 = ap_CS_fsm_state6) and (icmp_ln293_fu_571_p2 = ap_const_lv1_0))) then
t_V_16_0_reg_358 <= ap_const_lv11_0;
end if;
end if;
end process;
t_V_17_0_reg_381_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
t_V_17_0_reg_381 <= add_ln701_fu_799_p2;
elsif ((ap_const_logic_1 = ap_CS_fsm_state10)) then
t_V_17_0_reg_381 <= ap_const_lv16_3FF;
end if;
end if;
end process;
t_V_2_reg_413_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((icmp_ln887_12_fu_887_p2 = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0) and (ap_enable_reg_pp2_iter0 = ap_const_logic_1))) then
t_V_2_reg_413 <= col_V_fu_892_p2;
elsif (((icmp_ln887_11_fu_872_p2 = ap_const_lv1_1) and (ap_const_logic_1 = ap_CS_fsm_state15))) then
t_V_2_reg_413 <= ap_const_lv13_0;
end if;
end if;
end process;
t_V_reg_402_assign_proc : process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state54)) then
t_V_reg_402 <= row_V_reg_3293;
elsif (((icmp_ln293_fu_571_p2 = ap_const_lv1_1) and (ap_const_logic_1 = ap_CS_fsm_state6))) then
t_V_reg_402 <= ap_const_lv13_0;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((icmp_ln887_12_reg_3298_pp2_iter34_reg = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0_11001))) then
icmp_ln851_12_reg_3452 <= icmp_ln851_12_fu_1482_p2;
icmp_ln851_13_reg_3467 <= icmp_ln851_13_fu_1540_p2;
icmp_ln851_14_reg_3482 <= icmp_ln851_14_fu_1598_p2;
icmp_ln851_15_reg_3497 <= icmp_ln851_15_fu_1656_p2;
icmp_ln851_16_reg_3512 <= icmp_ln851_16_fu_1714_p2;
icmp_ln851_17_reg_3527 <= icmp_ln851_17_fu_1772_p2;
icmp_ln851_18_reg_3542 <= icmp_ln851_18_fu_1830_p2;
icmp_ln851_19_reg_3557 <= icmp_ln851_19_fu_1888_p2;
icmp_ln851_20_reg_3572 <= icmp_ln851_20_fu_1946_p2;
icmp_ln851_21_reg_3587 <= icmp_ln851_21_fu_2004_p2;
icmp_ln851_22_reg_3602 <= icmp_ln851_22_fu_2062_p2;
icmp_ln851_reg_3437 <= icmp_ln851_fu_1424_p2;
sub_ln1118_10_reg_3577(40 downto 6) <= sub_ln1118_10_fu_1978_p2(40 downto 6);
sub_ln1118_11_reg_3592(40 downto 6) <= sub_ln1118_11_fu_2036_p2(40 downto 6);
sub_ln1118_1_reg_3442(40 downto 6) <= sub_ln1118_1_fu_1456_p2(40 downto 6);
sub_ln1118_2_reg_3457(40 downto 6) <= sub_ln1118_2_fu_1514_p2(40 downto 6);
sub_ln1118_3_reg_3472(40 downto 6) <= sub_ln1118_3_fu_1572_p2(40 downto 6);
sub_ln1118_4_reg_3487(40 downto 6) <= sub_ln1118_4_fu_1630_p2(40 downto 6);
sub_ln1118_5_reg_3502(40 downto 6) <= sub_ln1118_5_fu_1688_p2(40 downto 6);
sub_ln1118_6_reg_3517(40 downto 6) <= sub_ln1118_6_fu_1746_p2(40 downto 6);
sub_ln1118_7_reg_3532(40 downto 6) <= sub_ln1118_7_fu_1804_p2(40 downto 6);
sub_ln1118_8_reg_3547(40 downto 6) <= sub_ln1118_8_fu_1862_p2(40 downto 6);
sub_ln1118_9_reg_3562(40 downto 6) <= sub_ln1118_9_fu_1920_p2(40 downto 6);
sub_ln1118_reg_3427(40 downto 6) <= sub_ln1118_fu_1398_p2(40 downto 6);
tmp_27_reg_3432 <= sub_ln1118_fu_1398_p2(29 downto 12);
tmp_28_reg_3447 <= sub_ln1118_1_fu_1456_p2(29 downto 12);
tmp_29_reg_3462 <= sub_ln1118_2_fu_1514_p2(29 downto 12);
tmp_30_reg_3477 <= sub_ln1118_3_fu_1572_p2(29 downto 12);
tmp_31_reg_3492 <= sub_ln1118_4_fu_1630_p2(29 downto 12);
tmp_32_reg_3507 <= sub_ln1118_5_fu_1688_p2(29 downto 12);
tmp_33_reg_3522 <= sub_ln1118_6_fu_1746_p2(29 downto 12);
tmp_34_reg_3537 <= sub_ln1118_7_fu_1804_p2(29 downto 12);
tmp_35_reg_3552 <= sub_ln1118_8_fu_1862_p2(29 downto 12);
tmp_36_reg_3567 <= sub_ln1118_9_fu_1920_p2(29 downto 12);
tmp_37_reg_3582 <= sub_ln1118_10_fu_1978_p2(29 downto 12);
tmp_38_reg_3597 <= sub_ln1118_11_fu_2036_p2(29 downto 12);
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state11)) then
icmp_ln883_reg_3271 <= icmp_ln883_fu_769_p2;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
icmp_ln887_12_reg_3298 <= icmp_ln887_12_fu_887_p2;
icmp_ln887_12_reg_3298_pp2_iter1_reg <= icmp_ln887_12_reg_3298;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_boolean_0 = ap_block_pp2_stage0_11001)) then
icmp_ln887_12_reg_3298_pp2_iter10_reg <= icmp_ln887_12_reg_3298_pp2_iter9_reg;
icmp_ln887_12_reg_3298_pp2_iter11_reg <= icmp_ln887_12_reg_3298_pp2_iter10_reg;
icmp_ln887_12_reg_3298_pp2_iter12_reg <= icmp_ln887_12_reg_3298_pp2_iter11_reg;
icmp_ln887_12_reg_3298_pp2_iter13_reg <= icmp_ln887_12_reg_3298_pp2_iter12_reg;
icmp_ln887_12_reg_3298_pp2_iter14_reg <= icmp_ln887_12_reg_3298_pp2_iter13_reg;
icmp_ln887_12_reg_3298_pp2_iter15_reg <= icmp_ln887_12_reg_3298_pp2_iter14_reg;
icmp_ln887_12_reg_3298_pp2_iter16_reg <= icmp_ln887_12_reg_3298_pp2_iter15_reg;
icmp_ln887_12_reg_3298_pp2_iter17_reg <= icmp_ln887_12_reg_3298_pp2_iter16_reg;
icmp_ln887_12_reg_3298_pp2_iter18_reg <= icmp_ln887_12_reg_3298_pp2_iter17_reg;
icmp_ln887_12_reg_3298_pp2_iter19_reg <= icmp_ln887_12_reg_3298_pp2_iter18_reg;
icmp_ln887_12_reg_3298_pp2_iter20_reg <= icmp_ln887_12_reg_3298_pp2_iter19_reg;
icmp_ln887_12_reg_3298_pp2_iter21_reg <= icmp_ln887_12_reg_3298_pp2_iter20_reg;
icmp_ln887_12_reg_3298_pp2_iter22_reg <= icmp_ln887_12_reg_3298_pp2_iter21_reg;
icmp_ln887_12_reg_3298_pp2_iter23_reg <= icmp_ln887_12_reg_3298_pp2_iter22_reg;
icmp_ln887_12_reg_3298_pp2_iter24_reg <= icmp_ln887_12_reg_3298_pp2_iter23_reg;
icmp_ln887_12_reg_3298_pp2_iter25_reg <= icmp_ln887_12_reg_3298_pp2_iter24_reg;
icmp_ln887_12_reg_3298_pp2_iter26_reg <= icmp_ln887_12_reg_3298_pp2_iter25_reg;
icmp_ln887_12_reg_3298_pp2_iter27_reg <= icmp_ln887_12_reg_3298_pp2_iter26_reg;
icmp_ln887_12_reg_3298_pp2_iter28_reg <= icmp_ln887_12_reg_3298_pp2_iter27_reg;
icmp_ln887_12_reg_3298_pp2_iter29_reg <= icmp_ln887_12_reg_3298_pp2_iter28_reg;
icmp_ln887_12_reg_3298_pp2_iter2_reg <= icmp_ln887_12_reg_3298_pp2_iter1_reg;
icmp_ln887_12_reg_3298_pp2_iter30_reg <= icmp_ln887_12_reg_3298_pp2_iter29_reg;
icmp_ln887_12_reg_3298_pp2_iter31_reg <= icmp_ln887_12_reg_3298_pp2_iter30_reg;
icmp_ln887_12_reg_3298_pp2_iter32_reg <= icmp_ln887_12_reg_3298_pp2_iter31_reg;
icmp_ln887_12_reg_3298_pp2_iter33_reg <= icmp_ln887_12_reg_3298_pp2_iter32_reg;
icmp_ln887_12_reg_3298_pp2_iter34_reg <= icmp_ln887_12_reg_3298_pp2_iter33_reg;
icmp_ln887_12_reg_3298_pp2_iter35_reg <= icmp_ln887_12_reg_3298_pp2_iter34_reg;
icmp_ln887_12_reg_3298_pp2_iter36_reg <= icmp_ln887_12_reg_3298_pp2_iter35_reg;
icmp_ln887_12_reg_3298_pp2_iter3_reg <= icmp_ln887_12_reg_3298_pp2_iter2_reg;
icmp_ln887_12_reg_3298_pp2_iter4_reg <= icmp_ln887_12_reg_3298_pp2_iter3_reg;
icmp_ln887_12_reg_3298_pp2_iter5_reg <= icmp_ln887_12_reg_3298_pp2_iter4_reg;
icmp_ln887_12_reg_3298_pp2_iter6_reg <= icmp_ln887_12_reg_3298_pp2_iter5_reg;
icmp_ln887_12_reg_3298_pp2_iter7_reg <= icmp_ln887_12_reg_3298_pp2_iter6_reg;
icmp_ln887_12_reg_3298_pp2_iter8_reg <= icmp_ln887_12_reg_3298_pp2_iter7_reg;
icmp_ln887_12_reg_3298_pp2_iter9_reg <= icmp_ln887_12_reg_3298_pp2_iter8_reg;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state6)) then
j_reg_3184 <= j_fu_577_p2;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state3)) then
mul_ln1148_1_reg_3155 <= grp_fu_547_p2;
mul_ln1148_reg_3150 <= grp_fu_541_p2;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state5)) then
mul_ln1148_2_reg_3170 <= grp_fu_556_p2;
mul_ln1148_3_reg_3175 <= grp_fu_565_p2;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_const_logic_1 = ap_CS_fsm_state8) or (ap_const_logic_1 = ap_CS_fsm_state12))) then
reg_433 <= hist_0_q0;
reg_437 <= hist_1_q0;
reg_441 <= hist_2_q0;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state15)) then
row_V_reg_3293 <= row_V_fu_877_p2;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((icmp_ln887_12_reg_3298_pp2_iter35_reg = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0_11001))) then
select_ln45_10_reg_3657 <= select_ln45_10_fu_2929_p3;
select_ln45_11_reg_3662 <= select_ln45_11_fu_3008_p3;
select_ln45_1_reg_3612 <= select_ln45_1_fu_2218_p3;
select_ln45_2_reg_3617 <= select_ln45_2_fu_2297_p3;
select_ln45_3_reg_3622 <= select_ln45_3_fu_2376_p3;
select_ln45_4_reg_3627 <= select_ln45_4_fu_2455_p3;
select_ln45_5_reg_3632 <= select_ln45_5_fu_2534_p3;
select_ln45_6_reg_3637 <= select_ln45_6_fu_2613_p3;
select_ln45_7_reg_3642 <= select_ln45_7_fu_2692_p3;
select_ln45_8_reg_3647 <= select_ln45_8_fu_2771_p3;
select_ln45_9_reg_3652 <= select_ln45_9_fu_2850_p3;
select_ln45_reg_3607 <= select_ln45_fu_2139_p3;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((icmp_ln293_fu_571_p2 = ap_const_lv1_1) and (ap_const_logic_1 = ap_CS_fsm_state6))) then
sext_ln1148_1_reg_3207 <= sext_ln1148_1_fu_645_p1;
sext_ln1148_2_reg_3215 <= sext_ln1148_2_fu_649_p1;
sext_ln1148_reg_3199 <= sext_ln1148_fu_641_p1;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if ((ap_const_logic_1 = ap_CS_fsm_state10)) then
sext_ln895_reg_3251 <= sext_ln895_fu_759_p1;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((icmp_ln887_12_reg_3298 = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
tmp_66_reg_3312 <= src_data_V_V_dout(19 downto 10);
tmp_69_reg_3317 <= src_data_V_V_dout(29 downto 20);
tmp_72_reg_3322 <= src_data_V_V_dout(39 downto 30);
tmp_75_reg_3327 <= src_data_V_V_dout(49 downto 40);
tmp_78_reg_3332 <= src_data_V_V_dout(59 downto 50);
tmp_81_reg_3337 <= src_data_V_V_dout(69 downto 60);
tmp_84_reg_3342 <= src_data_V_V_dout(79 downto 70);
tmp_87_reg_3347 <= src_data_V_V_dout(89 downto 80);
tmp_90_reg_3352 <= src_data_V_V_dout(99 downto 90);
tmp_93_reg_3357 <= src_data_V_V_dout(109 downto 100);
tmp_96_reg_3362 <= src_data_V_V_dout(119 downto 110);
trunc_ln703_reg_3307 <= trunc_ln703_fu_898_p1;
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
total_reg_3133 <= total_fu_3033_p2;
width_reg_3128 <= dst_cols_read(15 downto 2);
end if;
end if;
end process;
process (ap_clk)
begin
if (ap_clk'event and ap_clk = '1') then
if (((ap_const_logic_1 = ap_CS_fsm_state6) and (icmp_ln293_fu_571_p2 = ap_const_lv1_0))) then
trunc_ln555_4_reg_3189 <= mul_ln1148_3_reg_3175(89 downto 58);
zext_ln887_2_reg_3194(24 downto 0) <= zext_ln887_2_fu_601_p1(24 downto 0);
end if;
end if;
end process;
zext_ln887_2_reg_3194(32 downto 25) <= "00000000";
sub_ln1118_reg_3427(5 downto 0) <= "000000";
sub_ln1118_1_reg_3442(5 downto 0) <= "000000";
sub_ln1118_2_reg_3457(5 downto 0) <= "000000";
sub_ln1118_3_reg_3472(5 downto 0) <= "000000";
sub_ln1118_4_reg_3487(5 downto 0) <= "000000";
sub_ln1118_5_reg_3502(5 downto 0) <= "000000";
sub_ln1118_6_reg_3517(5 downto 0) <= "000000";
sub_ln1118_7_reg_3532(5 downto 0) <= "000000";
sub_ln1118_8_reg_3547(5 downto 0) <= "000000";
sub_ln1118_9_reg_3562(5 downto 0) <= "000000";
sub_ln1118_10_reg_3577(5 downto 0) <= "000000";
sub_ln1118_11_reg_3592(5 downto 0) <= "000000";
ap_NS_fsm_assign_proc : process (ap_start, ap_CS_fsm, ap_CS_fsm_state1, ap_enable_reg_pp2_iter1, ap_enable_reg_pp2_iter37, icmp_ln293_fu_571_p2, ap_CS_fsm_state6, ap_CS_fsm_state9, and_ln317_fu_693_p2, ap_CS_fsm_state13, and_ln329_fu_794_p2, icmp_ln887_11_fu_872_p2, ap_CS_fsm_state15, icmp_ln887_12_fu_887_p2, ap_enable_reg_pp2_iter0, ap_block_pp2_stage0_subdone, ap_enable_reg_pp2_iter36)
begin
case ap_CS_fsm is
when ap_ST_fsm_state1 =>
if (((ap_start = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
ap_NS_fsm <= ap_ST_fsm_state2;
else
ap_NS_fsm <= ap_ST_fsm_state1;
end if;
when ap_ST_fsm_state2 =>
ap_NS_fsm <= ap_ST_fsm_state3;
when ap_ST_fsm_state3 =>
ap_NS_fsm <= ap_ST_fsm_state4;
when ap_ST_fsm_state4 =>
ap_NS_fsm <= ap_ST_fsm_state5;
when ap_ST_fsm_state5 =>
ap_NS_fsm <= ap_ST_fsm_state6;
when ap_ST_fsm_state6 =>
if (((icmp_ln293_fu_571_p2 = ap_const_lv1_1) and (ap_const_logic_1 = ap_CS_fsm_state6))) then
ap_NS_fsm <= ap_ST_fsm_state15;
else
ap_NS_fsm <= ap_ST_fsm_state7;
end if;
when ap_ST_fsm_state7 =>
ap_NS_fsm <= ap_ST_fsm_state8;
when ap_ST_fsm_state8 =>
ap_NS_fsm <= ap_ST_fsm_state9;
when ap_ST_fsm_state9 =>
if (((ap_const_lv1_1 = and_ln317_fu_693_p2) and (ap_const_logic_1 = ap_CS_fsm_state9))) then
ap_NS_fsm <= ap_ST_fsm_state7;
else
ap_NS_fsm <= ap_ST_fsm_state10;
end if;
when ap_ST_fsm_state10 =>
ap_NS_fsm <= ap_ST_fsm_state11;
when ap_ST_fsm_state11 =>
ap_NS_fsm <= ap_ST_fsm_state12;
when ap_ST_fsm_state12 =>
ap_NS_fsm <= ap_ST_fsm_state13;
when ap_ST_fsm_state13 =>
if (((ap_const_lv1_1 = and_ln329_fu_794_p2) and (ap_const_logic_1 = ap_CS_fsm_state13))) then
ap_NS_fsm <= ap_ST_fsm_state11;
else
ap_NS_fsm <= ap_ST_fsm_state14;
end if;
when ap_ST_fsm_state14 =>
ap_NS_fsm <= ap_ST_fsm_state6;
when ap_ST_fsm_state15 =>
if (((ap_const_logic_1 = ap_CS_fsm_state15) and (icmp_ln887_11_fu_872_p2 = ap_const_lv1_0))) then
ap_NS_fsm <= ap_ST_fsm_state1;
else
ap_NS_fsm <= ap_ST_fsm_pp2_stage0;
end if;
when ap_ST_fsm_pp2_stage0 =>
if ((not(((ap_const_boolean_0 = ap_block_pp2_stage0_subdone) and (ap_enable_reg_pp2_iter1 = ap_const_logic_0) and (ap_enable_reg_pp2_iter0 = ap_const_logic_1) and (icmp_ln887_12_fu_887_p2 = ap_const_lv1_0))) and not(((ap_enable_reg_pp2_iter36 = ap_const_logic_0) and (ap_const_boolean_0 = ap_block_pp2_stage0_subdone) and (ap_enable_reg_pp2_iter37 = ap_const_logic_1))))) then
ap_NS_fsm <= ap_ST_fsm_pp2_stage0;
elsif ((((ap_enable_reg_pp2_iter36 = ap_const_logic_0) and (ap_const_boolean_0 = ap_block_pp2_stage0_subdone) and (ap_enable_reg_pp2_iter37 = ap_const_logic_1)) or ((ap_const_boolean_0 = ap_block_pp2_stage0_subdone) and (ap_enable_reg_pp2_iter1 = ap_const_logic_0) and (ap_enable_reg_pp2_iter0 = ap_const_logic_1) and (icmp_ln887_12_fu_887_p2 = ap_const_lv1_0)))) then
ap_NS_fsm <= ap_ST_fsm_state54;
else
ap_NS_fsm <= ap_ST_fsm_pp2_stage0;
end if;
when ap_ST_fsm_state54 =>
ap_NS_fsm <= ap_ST_fsm_state15;
when others =>
ap_NS_fsm <= "XXXXXXXXXXXXXXXXX";
end case;
end process;
add_ln1353_fu_668_p2 <= std_logic_vector(unsigned(zext_ln215_4_fu_664_p1) + unsigned(zext_ln215_fu_660_p1));
add_ln700_28_fu_705_p2 <= std_logic_vector(unsigned(grp_fu_445_p5) + unsigned(p_01629_1_0_reg_370));
add_ln700_29_fu_2078_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_fu_2068_p1));
add_ln700_30_fu_2157_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_1_fu_2147_p1));
add_ln700_31_fu_2236_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_2_fu_2226_p1));
add_ln700_32_fu_2315_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_3_fu_2305_p1));
add_ln700_33_fu_2394_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_4_fu_2384_p1));
add_ln700_34_fu_2473_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_5_fu_2463_p1));
add_ln700_35_fu_2552_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_6_fu_2542_p1));
add_ln700_36_fu_2631_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_7_fu_2621_p1));
add_ln700_37_fu_2710_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_8_fu_2700_p1));
add_ln700_38_fu_2789_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_9_fu_2779_p1));
add_ln700_39_fu_2868_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_10_fu_2858_p1));
add_ln700_40_fu_2947_p2 <= std_logic_vector(unsigned(ap_const_lv19_1) + unsigned(sext_ln835_11_fu_2937_p1));
add_ln700_fu_699_p2 <= std_logic_vector(unsigned(t_V_16_0_reg_358) + unsigned(ap_const_lv11_1));
add_ln701_fu_799_p2 <= std_logic_vector(unsigned(t_V_17_0_reg_381) + unsigned(ap_const_lv16_FFFF));
and_ln317_fu_693_p2 <= (xor_ln887_fu_687_p2 and icmp_ln887_fu_674_p2);
and_ln329_fu_794_p2 <= (icmp_ln895_fu_789_p2 and icmp_ln883_reg_3271);
ap_CS_fsm_pp2_stage0 <= ap_CS_fsm(15);
ap_CS_fsm_state1 <= ap_CS_fsm(0);
ap_CS_fsm_state10 <= ap_CS_fsm(9);
ap_CS_fsm_state11 <= ap_CS_fsm(10);
ap_CS_fsm_state12 <= ap_CS_fsm(11);
ap_CS_fsm_state13 <= ap_CS_fsm(12);
ap_CS_fsm_state14 <= ap_CS_fsm(13);
ap_CS_fsm_state15 <= ap_CS_fsm(14);
ap_CS_fsm_state2 <= ap_CS_fsm(1);
ap_CS_fsm_state3 <= ap_CS_fsm(2);
ap_CS_fsm_state4 <= ap_CS_fsm(3);
ap_CS_fsm_state5 <= ap_CS_fsm(4);
ap_CS_fsm_state54 <= ap_CS_fsm(16);
ap_CS_fsm_state6 <= ap_CS_fsm(5);
ap_CS_fsm_state7 <= ap_CS_fsm(6);
ap_CS_fsm_state8 <= ap_CS_fsm(7);
ap_CS_fsm_state9 <= ap_CS_fsm(8);
ap_block_pp2_stage0 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_pp2_stage0_01001_assign_proc : process(src_data_V_V_empty_n, dst_data_V_V_full_n, ap_enable_reg_pp2_iter1, icmp_ln887_12_reg_3298, ap_enable_reg_pp2_iter37, icmp_ln887_12_reg_3298_pp2_iter36_reg)
begin
ap_block_pp2_stage0_01001 <= (((icmp_ln887_12_reg_3298_pp2_iter36_reg = ap_const_lv1_1) and (dst_data_V_V_full_n = ap_const_logic_0) and (ap_enable_reg_pp2_iter37 = ap_const_logic_1)) or ((icmp_ln887_12_reg_3298 = ap_const_lv1_1) and (src_data_V_V_empty_n = ap_const_logic_0) and (ap_enable_reg_pp2_iter1 = ap_const_logic_1)));
end process;
ap_block_pp2_stage0_11001_assign_proc : process(src_data_V_V_empty_n, dst_data_V_V_full_n, ap_enable_reg_pp2_iter1, icmp_ln887_12_reg_3298, ap_enable_reg_pp2_iter37, icmp_ln887_12_reg_3298_pp2_iter36_reg)
begin
ap_block_pp2_stage0_11001 <= (((icmp_ln887_12_reg_3298_pp2_iter36_reg = ap_const_lv1_1) and (dst_data_V_V_full_n = ap_const_logic_0) and (ap_enable_reg_pp2_iter37 = ap_const_logic_1)) or ((icmp_ln887_12_reg_3298 = ap_const_lv1_1) and (src_data_V_V_empty_n = ap_const_logic_0) and (ap_enable_reg_pp2_iter1 = ap_const_logic_1)));
end process;
ap_block_pp2_stage0_subdone_assign_proc : process(src_data_V_V_empty_n, dst_data_V_V_full_n, ap_enable_reg_pp2_iter1, icmp_ln887_12_reg_3298, ap_enable_reg_pp2_iter37, icmp_ln887_12_reg_3298_pp2_iter36_reg)
begin
ap_block_pp2_stage0_subdone <= (((icmp_ln887_12_reg_3298_pp2_iter36_reg = ap_const_lv1_1) and (dst_data_V_V_full_n = ap_const_logic_0) and (ap_enable_reg_pp2_iter37 = ap_const_logic_1)) or ((icmp_ln887_12_reg_3298 = ap_const_lv1_1) and (src_data_V_V_empty_n = ap_const_logic_0) and (ap_enable_reg_pp2_iter1 = ap_const_logic_1)));
end process;
ap_block_state16_pp2_stage0_iter0 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state17_pp2_stage0_iter1_assign_proc : process(src_data_V_V_empty_n, icmp_ln887_12_reg_3298)
begin
ap_block_state17_pp2_stage0_iter1 <= ((icmp_ln887_12_reg_3298 = ap_const_lv1_1) and (src_data_V_V_empty_n = ap_const_logic_0));
end process;
ap_block_state18_pp2_stage0_iter2 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state19_pp2_stage0_iter3 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state20_pp2_stage0_iter4 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state21_pp2_stage0_iter5 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state22_pp2_stage0_iter6 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state23_pp2_stage0_iter7 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state24_pp2_stage0_iter8 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state25_pp2_stage0_iter9 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state26_pp2_stage0_iter10 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state27_pp2_stage0_iter11 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state28_pp2_stage0_iter12 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state29_pp2_stage0_iter13 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state30_pp2_stage0_iter14 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state31_pp2_stage0_iter15 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state32_pp2_stage0_iter16 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state33_pp2_stage0_iter17 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state34_pp2_stage0_iter18 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state35_pp2_stage0_iter19 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state36_pp2_stage0_iter20 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state37_pp2_stage0_iter21 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state38_pp2_stage0_iter22 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state39_pp2_stage0_iter23 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state40_pp2_stage0_iter24 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state41_pp2_stage0_iter25 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state42_pp2_stage0_iter26 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state43_pp2_stage0_iter27 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state44_pp2_stage0_iter28 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state45_pp2_stage0_iter29 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state46_pp2_stage0_iter30 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state47_pp2_stage0_iter31 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state48_pp2_stage0_iter32 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state49_pp2_stage0_iter33 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state50_pp2_stage0_iter34 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state51_pp2_stage0_iter35 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state52_pp2_stage0_iter36 <= not((ap_const_boolean_1 = ap_const_boolean_1));
ap_block_state53_pp2_stage0_iter37_assign_proc : process(dst_data_V_V_full_n, icmp_ln887_12_reg_3298_pp2_iter36_reg)
begin
ap_block_state53_pp2_stage0_iter37 <= ((icmp_ln887_12_reg_3298_pp2_iter36_reg = ap_const_lv1_1) and (dst_data_V_V_full_n = ap_const_logic_0));
end process;
ap_condition_pp2_exit_iter0_state16_assign_proc : process(icmp_ln887_12_fu_887_p2)
begin
if ((icmp_ln887_12_fu_887_p2 = ap_const_lv1_0)) then
ap_condition_pp2_exit_iter0_state16 <= ap_const_logic_1;
else
ap_condition_pp2_exit_iter0_state16 <= ap_const_logic_0;
end if;
end process;
ap_done_assign_proc : process(ap_start, ap_CS_fsm_state1, icmp_ln887_11_fu_872_p2, ap_CS_fsm_state15)
begin
if ((((ap_start = ap_const_logic_0) and (ap_const_logic_1 = ap_CS_fsm_state1)) or ((ap_const_logic_1 = ap_CS_fsm_state15) and (icmp_ln887_11_fu_872_p2 = ap_const_lv1_0)))) then
ap_done <= ap_const_logic_1;
else
ap_done <= ap_const_logic_0;
end if;
end process;
ap_enable_pp2 <= (ap_idle_pp2 xor ap_const_logic_1);
ap_idle_assign_proc : process(ap_start, ap_CS_fsm_state1)
begin
if (((ap_start = ap_const_logic_0) and (ap_const_logic_1 = ap_CS_fsm_state1))) then
ap_idle <= ap_const_logic_1;
else
ap_idle <= ap_const_logic_0;
end if;
end process;
ap_idle_pp2_assign_proc : process(ap_enable_reg_pp2_iter1, ap_enable_reg_pp2_iter37, ap_enable_reg_pp2_iter0, ap_enable_reg_pp2_iter2, ap_enable_reg_pp2_iter3, ap_enable_reg_pp2_iter4, ap_enable_reg_pp2_iter5, ap_enable_reg_pp2_iter6, ap_enable_reg_pp2_iter7, ap_enable_reg_pp2_iter8, ap_enable_reg_pp2_iter9, ap_enable_reg_pp2_iter10, ap_enable_reg_pp2_iter11, ap_enable_reg_pp2_iter12, ap_enable_reg_pp2_iter13, ap_enable_reg_pp2_iter14, ap_enable_reg_pp2_iter15, ap_enable_reg_pp2_iter16, ap_enable_reg_pp2_iter17, ap_enable_reg_pp2_iter18, ap_enable_reg_pp2_iter19, ap_enable_reg_pp2_iter20, ap_enable_reg_pp2_iter21, ap_enable_reg_pp2_iter22, ap_enable_reg_pp2_iter23, ap_enable_reg_pp2_iter24, ap_enable_reg_pp2_iter25, ap_enable_reg_pp2_iter26, ap_enable_reg_pp2_iter27, ap_enable_reg_pp2_iter28, ap_enable_reg_pp2_iter29, ap_enable_reg_pp2_iter30, ap_enable_reg_pp2_iter31, ap_enable_reg_pp2_iter32, ap_enable_reg_pp2_iter33, ap_enable_reg_pp2_iter34, ap_enable_reg_pp2_iter35, ap_enable_reg_pp2_iter36)
begin
if (((ap_enable_reg_pp2_iter36 = ap_const_logic_0) and (ap_enable_reg_pp2_iter35 = ap_const_logic_0) and (ap_enable_reg_pp2_iter34 = ap_const_logic_0) and (ap_enable_reg_pp2_iter33 = ap_const_logic_0) and (ap_enable_reg_pp2_iter32 = ap_const_logic_0) and (ap_enable_reg_pp2_iter31 = ap_const_logic_0) and (ap_enable_reg_pp2_iter30 = ap_const_logic_0) and (ap_enable_reg_pp2_iter29 = ap_const_logic_0) and (ap_enable_reg_pp2_iter28 = ap_const_logic_0) and (ap_enable_reg_pp2_iter27 = ap_const_logic_0) and (ap_enable_reg_pp2_iter26 = ap_const_logic_0) and (ap_enable_reg_pp2_iter25 = ap_const_logic_0) and (ap_enable_reg_pp2_iter24 = ap_const_logic_0) and (ap_enable_reg_pp2_iter23 = ap_const_logic_0) and (ap_enable_reg_pp2_iter22 = ap_const_logic_0) and (ap_enable_reg_pp2_iter21 = ap_const_logic_0) and (ap_enable_reg_pp2_iter20 = ap_const_logic_0) and (ap_enable_reg_pp2_iter19 = ap_const_logic_0) and (ap_enable_reg_pp2_iter18 = ap_const_logic_0) and (ap_enable_reg_pp2_iter17 = ap_const_logic_0) and (ap_enable_reg_pp2_iter16 = ap_const_logic_0) and (ap_enable_reg_pp2_iter15 = ap_const_logic_0) and (ap_enable_reg_pp2_iter14 = ap_const_logic_0) and (ap_enable_reg_pp2_iter13 = ap_const_logic_0) and (ap_enable_reg_pp2_iter12 = ap_const_logic_0) and (ap_enable_reg_pp2_iter11 = ap_const_logic_0) and (ap_enable_reg_pp2_iter10 = ap_const_logic_0) and (ap_enable_reg_pp2_iter9 = ap_const_logic_0) and (ap_enable_reg_pp2_iter8 = ap_const_logic_0) and (ap_enable_reg_pp2_iter7 = ap_const_logic_0) and (ap_enable_reg_pp2_iter6 = ap_const_logic_0) and (ap_enable_reg_pp2_iter5 = ap_const_logic_0) and (ap_enable_reg_pp2_iter4 = ap_const_logic_0) and (ap_enable_reg_pp2_iter3 = ap_const_logic_0) and (ap_enable_reg_pp2_iter2 = ap_const_logic_0) and (ap_enable_reg_pp2_iter37 = ap_const_logic_0) and (ap_enable_reg_pp2_iter1 = ap_const_logic_0) and (ap_enable_reg_pp2_iter0 = ap_const_logic_0))) then
ap_idle_pp2 <= ap_const_logic_1;
else
ap_idle_pp2 <= ap_const_logic_0;
end if;
end process;
ap_ready_assign_proc : process(icmp_ln887_11_fu_872_p2, ap_CS_fsm_state15)
begin
if (((ap_const_logic_1 = ap_CS_fsm_state15) and (icmp_ln887_11_fu_872_p2 = ap_const_lv1_0))) then
ap_ready <= ap_const_logic_1;
else
ap_ready <= ap_const_logic_0;
end if;
end process;
col_V_fu_892_p2 <= std_logic_vector(unsigned(t_V_2_reg_413) + unsigned(ap_const_lv13_1));
dst_data_V_V_blk_n_assign_proc : process(dst_data_V_V_full_n, ap_block_pp2_stage0, ap_enable_reg_pp2_iter37, icmp_ln887_12_reg_3298_pp2_iter36_reg)
begin
if (((icmp_ln887_12_reg_3298_pp2_iter36_reg = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0) and (ap_enable_reg_pp2_iter37 = ap_const_logic_1))) then
dst_data_V_V_blk_n <= dst_data_V_V_full_n;
else
dst_data_V_V_blk_n <= ap_const_logic_1;
end if;
end process;
dst_data_V_V_din <= (((((((((((select_ln45_11_reg_3662 & select_ln45_10_reg_3657) & select_ln45_9_reg_3652) & select_ln45_8_reg_3647) & select_ln45_7_reg_3642) & select_ln45_6_reg_3637) & select_ln45_5_reg_3632) & select_ln45_4_reg_3627) & select_ln45_3_reg_3622) & select_ln45_2_reg_3617) & select_ln45_1_reg_3612) & select_ln45_reg_3607);
dst_data_V_V_write_assign_proc : process(ap_enable_reg_pp2_iter37, icmp_ln887_12_reg_3298_pp2_iter36_reg, ap_block_pp2_stage0_11001)
begin
if (((icmp_ln887_12_reg_3298_pp2_iter36_reg = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_enable_reg_pp2_iter37 = ap_const_logic_1))) then
dst_data_V_V_write <= ap_const_logic_1;
else
dst_data_V_V_write <= ap_const_logic_0;
end if;
end process;
grp_fu_1037_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1037_ce <= ap_const_logic_1;
else
grp_fu_1037_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1037_p0 <= (sub_ln703_fu_1023_p2 & ap_const_lv6_0);
grp_fu_1037_p1 <= sext_ln1148_reg_3199(24 - 1 downto 0);
grp_fu_1067_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1067_ce <= ap_const_logic_1;
else
grp_fu_1067_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1067_p0 <= (sub_ln703_1_fu_1053_p2 & ap_const_lv6_0);
grp_fu_1067_p1 <= sext_ln1148_1_reg_3207(24 - 1 downto 0);
grp_fu_1097_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1097_ce <= ap_const_logic_1;
else
grp_fu_1097_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1097_p0 <= (sub_ln703_2_fu_1083_p2 & ap_const_lv6_0);
grp_fu_1097_p1 <= sext_ln1148_2_reg_3215(24 - 1 downto 0);
grp_fu_1127_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1127_ce <= ap_const_logic_1;
else
grp_fu_1127_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1127_p0 <= (sub_ln703_3_fu_1113_p2 & ap_const_lv6_0);
grp_fu_1127_p1 <= sext_ln1148_reg_3199(24 - 1 downto 0);
grp_fu_1157_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1157_ce <= ap_const_logic_1;
else
grp_fu_1157_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1157_p0 <= (sub_ln703_4_fu_1143_p2 & ap_const_lv6_0);
grp_fu_1157_p1 <= sext_ln1148_1_reg_3207(24 - 1 downto 0);
grp_fu_1187_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1187_ce <= ap_const_logic_1;
else
grp_fu_1187_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1187_p0 <= (sub_ln703_5_fu_1173_p2 & ap_const_lv6_0);
grp_fu_1187_p1 <= sext_ln1148_2_reg_3215(24 - 1 downto 0);
grp_fu_1217_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1217_ce <= ap_const_logic_1;
else
grp_fu_1217_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1217_p0 <= (sub_ln703_6_fu_1203_p2 & ap_const_lv6_0);
grp_fu_1217_p1 <= sext_ln1148_reg_3199(24 - 1 downto 0);
grp_fu_1247_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1247_ce <= ap_const_logic_1;
else
grp_fu_1247_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1247_p0 <= (sub_ln703_7_fu_1233_p2 & ap_const_lv6_0);
grp_fu_1247_p1 <= sext_ln1148_1_reg_3207(24 - 1 downto 0);
grp_fu_1277_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1277_ce <= ap_const_logic_1;
else
grp_fu_1277_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1277_p0 <= (sub_ln703_8_fu_1263_p2 & ap_const_lv6_0);
grp_fu_1277_p1 <= sext_ln1148_2_reg_3215(24 - 1 downto 0);
grp_fu_1307_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1307_ce <= ap_const_logic_1;
else
grp_fu_1307_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1307_p0 <= (sub_ln703_9_fu_1293_p2 & ap_const_lv6_0);
grp_fu_1307_p1 <= sext_ln1148_reg_3199(24 - 1 downto 0);
grp_fu_1337_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1337_ce <= ap_const_logic_1;
else
grp_fu_1337_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1337_p0 <= (sub_ln703_10_fu_1323_p2 & ap_const_lv6_0);
grp_fu_1337_p1 <= sext_ln1148_1_reg_3207(24 - 1 downto 0);
grp_fu_1367_ce_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_block_pp2_stage0_11001)
begin
if (((ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
grp_fu_1367_ce <= ap_const_logic_1;
else
grp_fu_1367_ce <= ap_const_logic_0;
end if;
end process;
grp_fu_1367_p0 <= (sub_ln703_11_fu_1353_p2 & ap_const_lv6_0);
grp_fu_1367_p1 <= sext_ln1148_2_reg_3215(24 - 1 downto 0);
grp_fu_541_p0 <= grp_fu_541_p00(32 - 1 downto 0);
grp_fu_541_p00 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(total_reg_3133),38));
grp_fu_541_p1 <= ap_const_lv38_26(7 - 1 downto 0);
grp_fu_547_p0 <= grp_fu_547_p00(32 - 1 downto 0);
grp_fu_547_p00 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(total_reg_3133),45));
grp_fu_547_p1 <= ap_const_lv45_18DA(14 - 1 downto 0);
grp_fu_556_p0 <= grp_fu_556_p00(38 - 1 downto 0);
grp_fu_556_p00 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(mul_ln1148_reg_3150),76));
grp_fu_556_p1 <= ap_const_lv76_51EB851EB9(40 - 1 downto 0);
grp_fu_565_p0 <= grp_fu_565_p00(45 - 1 downto 0);
grp_fu_565_p00 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(mul_ln1148_1_reg_3155),90));
grp_fu_565_p1 <= ap_const_lv90_28F5C28F5C29(47 - 1 downto 0);
hist_0_address0_assign_proc : process(ap_CS_fsm_state7, ap_CS_fsm_state11, zext_ln544_fu_653_p1, zext_ln544_2_fu_762_p1)
begin
if ((ap_const_logic_1 = ap_CS_fsm_state11)) then
hist_0_address0 <= zext_ln544_2_fu_762_p1(10 - 1 downto 0);
elsif ((ap_const_logic_1 = ap_CS_fsm_state7)) then
hist_0_address0 <= zext_ln544_fu_653_p1(10 - 1 downto 0);
else
hist_0_address0 <= "XXXXXXXXXX";
end if;
end process;
hist_0_ce0_assign_proc : process(ap_CS_fsm_state7, ap_CS_fsm_state11)
begin
if (((ap_const_logic_1 = ap_CS_fsm_state11) or (ap_const_logic_1 = ap_CS_fsm_state7))) then
hist_0_ce0 <= ap_const_logic_1;
else
hist_0_ce0 <= ap_const_logic_0;
end if;
end process;
hist_1_address0_assign_proc : process(ap_CS_fsm_state7, ap_CS_fsm_state11, zext_ln544_fu_653_p1, zext_ln544_2_fu_762_p1)
begin
if ((ap_const_logic_1 = ap_CS_fsm_state11)) then
hist_1_address0 <= zext_ln544_2_fu_762_p1(10 - 1 downto 0);
elsif ((ap_const_logic_1 = ap_CS_fsm_state7)) then
hist_1_address0 <= zext_ln544_fu_653_p1(10 - 1 downto 0);
else
hist_1_address0 <= "XXXXXXXXXX";
end if;
end process;
hist_1_ce0_assign_proc : process(ap_CS_fsm_state7, ap_CS_fsm_state11)
begin
if (((ap_const_logic_1 = ap_CS_fsm_state11) or (ap_const_logic_1 = ap_CS_fsm_state7))) then
hist_1_ce0 <= ap_const_logic_1;
else
hist_1_ce0 <= ap_const_logic_0;
end if;
end process;
hist_2_address0_assign_proc : process(ap_CS_fsm_state7, ap_CS_fsm_state11, zext_ln544_fu_653_p1, zext_ln544_2_fu_762_p1)
begin
if ((ap_const_logic_1 = ap_CS_fsm_state11)) then
hist_2_address0 <= zext_ln544_2_fu_762_p1(10 - 1 downto 0);
elsif ((ap_const_logic_1 = ap_CS_fsm_state7)) then
hist_2_address0 <= zext_ln544_fu_653_p1(10 - 1 downto 0);
else
hist_2_address0 <= "XXXXXXXXXX";
end if;
end process;
hist_2_ce0_assign_proc : process(ap_CS_fsm_state7, ap_CS_fsm_state11)
begin
if (((ap_const_logic_1 = ap_CS_fsm_state11) or (ap_const_logic_1 = ap_CS_fsm_state7))) then
hist_2_ce0 <= ap_const_logic_1;
else
hist_2_ce0 <= ap_const_logic_0;
end if;
end process;
icmp_ln293_fu_571_p2 <= "1" when (j_0_reg_346 = ap_const_lv2_3) else "0";
icmp_ln45_10_fu_2919_p2 <= "0" when (tmp_201_fu_2909_p4 = ap_const_lv8_0) else "1";
icmp_ln45_11_fu_2998_p2 <= "0" when (tmp_204_fu_2988_p4 = ap_const_lv8_0) else "1";
icmp_ln45_1_fu_2208_p2 <= "0" when (tmp_174_fu_2198_p4 = ap_const_lv8_0) else "1";
icmp_ln45_2_fu_2287_p2 <= "0" when (tmp_177_fu_2277_p4 = ap_const_lv8_0) else "1";
icmp_ln45_3_fu_2366_p2 <= "0" when (tmp_180_fu_2356_p4 = ap_const_lv8_0) else "1";
icmp_ln45_4_fu_2445_p2 <= "0" when (tmp_183_fu_2435_p4 = ap_const_lv8_0) else "1";
icmp_ln45_5_fu_2524_p2 <= "0" when (tmp_186_fu_2514_p4 = ap_const_lv8_0) else "1";
icmp_ln45_6_fu_2603_p2 <= "0" when (tmp_189_fu_2593_p4 = ap_const_lv8_0) else "1";
icmp_ln45_7_fu_2682_p2 <= "0" when (tmp_192_fu_2672_p4 = ap_const_lv8_0) else "1";
icmp_ln45_8_fu_2761_p2 <= "0" when (tmp_195_fu_2751_p4 = ap_const_lv8_0) else "1";
icmp_ln45_9_fu_2840_p2 <= "0" when (tmp_198_fu_2830_p4 = ap_const_lv8_0) else "1";
icmp_ln45_fu_2129_p2 <= "0" when (tmp_171_fu_2119_p4 = ap_const_lv8_0) else "1";
icmp_ln851_12_fu_1482_p2 <= "1" when (p_Result_105_1_fu_1472_p4 = ap_const_lv6_0) else "0";
icmp_ln851_13_fu_1540_p2 <= "1" when (p_Result_105_2_fu_1530_p4 = ap_const_lv6_0) else "0";
icmp_ln851_14_fu_1598_p2 <= "1" when (p_Result_105_3_fu_1588_p4 = ap_const_lv6_0) else "0";
icmp_ln851_15_fu_1656_p2 <= "1" when (p_Result_105_4_fu_1646_p4 = ap_const_lv6_0) else "0";
icmp_ln851_16_fu_1714_p2 <= "1" when (p_Result_105_5_fu_1704_p4 = ap_const_lv6_0) else "0";
icmp_ln851_17_fu_1772_p2 <= "1" when (p_Result_105_6_fu_1762_p4 = ap_const_lv6_0) else "0";
icmp_ln851_18_fu_1830_p2 <= "1" when (p_Result_105_7_fu_1820_p4 = ap_const_lv6_0) else "0";
icmp_ln851_19_fu_1888_p2 <= "1" when (p_Result_105_8_fu_1878_p4 = ap_const_lv6_0) else "0";
icmp_ln851_20_fu_1946_p2 <= "1" when (p_Result_105_9_fu_1936_p4 = ap_const_lv6_0) else "0";
icmp_ln851_21_fu_2004_p2 <= "1" when (p_Result_105_s_fu_1994_p4 = ap_const_lv6_0) else "0";
icmp_ln851_22_fu_2062_p2 <= "1" when (p_Result_105_10_fu_2052_p4 = ap_const_lv6_0) else "0";
icmp_ln851_fu_1424_p2 <= "1" when (p_Result_2_fu_1414_p4 = ap_const_lv6_0) else "0";
icmp_ln883_fu_769_p2 <= "0" when (t_V_17_0_reg_381 = ap_const_lv16_0) else "1";
icmp_ln887_11_fu_872_p2 <= "1" when (signed(zext_ln887_fu_868_p1) < signed(dst_rows_read)) else "0";
icmp_ln887_12_fu_887_p2 <= "1" when (unsigned(zext_ln887_1_fu_883_p1) < unsigned(width_reg_3128)) else "0";
icmp_ln887_fu_674_p2 <= "1" when (unsigned(add_ln1353_fu_668_p2) < unsigned(zext_ln887_2_reg_3194)) else "0";
icmp_ln895_fu_789_p2 <= "1" when (signed(sub_ln1354_fu_783_p2) > signed(sext_ln895_reg_3251)) else "0";
j_fu_577_p2 <= std_logic_vector(unsigned(j_0_reg_346) + unsigned(ap_const_lv2_1));
maxValue_0_V_2_fu_832_p2 <= std_logic_vector(unsigned(tmp_107_fu_820_p5) + unsigned(ap_const_lv24_FFFFC0));
maxmin_diff_0_V_fu_623_p2 <= std_logic_vector(unsigned(p_Val2_s_fu_210) - unsigned(p_Val2_6_fu_214));
maxmin_diff_1_V_fu_629_p2 <= std_logic_vector(unsigned(p_Val2_7_fu_218) - unsigned(p_Val2_8_fu_222));
maxmin_diff_2_V_fu_635_p2 <= std_logic_vector(unsigned(p_Val2_9_fu_226) - unsigned(p_Val2_10_fu_230));
minValue_0_V_2_fu_723_p2 <= std_logic_vector(unsigned(tmp_105_fu_711_p5) + unsigned(ap_const_lv24_40));
p_Result_105_10_fu_2052_p4 <= sub_ln1118_11_fu_2036_p2(11 downto 6);
p_Result_105_1_fu_1472_p4 <= sub_ln1118_1_fu_1456_p2(11 downto 6);
p_Result_105_2_fu_1530_p4 <= sub_ln1118_2_fu_1514_p2(11 downto 6);
p_Result_105_3_fu_1588_p4 <= sub_ln1118_3_fu_1572_p2(11 downto 6);
p_Result_105_4_fu_1646_p4 <= sub_ln1118_4_fu_1630_p2(11 downto 6);
p_Result_105_5_fu_1704_p4 <= sub_ln1118_5_fu_1688_p2(11 downto 6);
p_Result_105_6_fu_1762_p4 <= sub_ln1118_6_fu_1746_p2(11 downto 6);
p_Result_105_7_fu_1820_p4 <= sub_ln1118_7_fu_1804_p2(11 downto 6);
p_Result_105_8_fu_1878_p4 <= sub_ln1118_8_fu_1862_p2(11 downto 6);
p_Result_105_9_fu_1936_p4 <= sub_ln1118_9_fu_1920_p2(11 downto 6);
p_Result_105_s_fu_1994_p4 <= sub_ln1118_10_fu_1978_p2(11 downto 6);
p_Result_2_fu_1414_p4 <= sub_ln1118_fu_1398_p2(11 downto 6);
row_V_fu_877_p2 <= std_logic_vector(unsigned(t_V_reg_402) + unsigned(ap_const_lv13_1));
select_ln399_10_fu_2901_p3 <=
ap_const_lv18_0 when (tmp_200_fu_2893_p3(0) = '1') else
trunc_ln647_22_fu_2889_p1;
select_ln399_11_fu_2980_p3 <=
ap_const_lv18_0 when (tmp_203_fu_2972_p3(0) = '1') else
trunc_ln647_23_fu_2968_p1;
select_ln399_1_fu_2190_p3 <=
ap_const_lv18_0 when (tmp_173_fu_2182_p3(0) = '1') else
trunc_ln647_13_fu_2178_p1;
select_ln399_2_fu_2269_p3 <=
ap_const_lv18_0 when (tmp_176_fu_2261_p3(0) = '1') else
trunc_ln647_14_fu_2257_p1;
select_ln399_3_fu_2348_p3 <=
ap_const_lv18_0 when (tmp_179_fu_2340_p3(0) = '1') else
trunc_ln647_15_fu_2336_p1;
select_ln399_4_fu_2427_p3 <=
ap_const_lv18_0 when (tmp_182_fu_2419_p3(0) = '1') else
trunc_ln647_16_fu_2415_p1;
select_ln399_5_fu_2506_p3 <=
ap_const_lv18_0 when (tmp_185_fu_2498_p3(0) = '1') else
trunc_ln647_17_fu_2494_p1;
select_ln399_6_fu_2585_p3 <=
ap_const_lv18_0 when (tmp_188_fu_2577_p3(0) = '1') else
trunc_ln647_18_fu_2573_p1;
select_ln399_7_fu_2664_p3 <=
ap_const_lv18_0 when (tmp_191_fu_2656_p3(0) = '1') else
trunc_ln647_19_fu_2652_p1;
select_ln399_8_fu_2743_p3 <=
ap_const_lv18_0 when (tmp_194_fu_2735_p3(0) = '1') else
trunc_ln647_20_fu_2731_p1;
select_ln399_9_fu_2822_p3 <=
ap_const_lv18_0 when (tmp_197_fu_2814_p3(0) = '1') else
trunc_ln647_21_fu_2810_p1;
select_ln399_fu_2111_p3 <=
ap_const_lv18_0 when (tmp_170_fu_2103_p3(0) = '1') else
trunc_ln647_fu_2099_p1;
select_ln45_10_fu_2929_p3 <=
ap_const_lv10_3FF when (icmp_ln45_10_fu_2919_p2(0) = '1') else
trunc_ln45_10_fu_2925_p1;
select_ln45_11_fu_3008_p3 <=
ap_const_lv10_3FF when (icmp_ln45_11_fu_2998_p2(0) = '1') else
trunc_ln45_11_fu_3004_p1;
select_ln45_1_fu_2218_p3 <=
ap_const_lv10_3FF when (icmp_ln45_1_fu_2208_p2(0) = '1') else
trunc_ln45_1_fu_2214_p1;
select_ln45_2_fu_2297_p3 <=
ap_const_lv10_3FF when (icmp_ln45_2_fu_2287_p2(0) = '1') else
trunc_ln45_2_fu_2293_p1;
select_ln45_3_fu_2376_p3 <=
ap_const_lv10_3FF when (icmp_ln45_3_fu_2366_p2(0) = '1') else
trunc_ln45_3_fu_2372_p1;
select_ln45_4_fu_2455_p3 <=
ap_const_lv10_3FF when (icmp_ln45_4_fu_2445_p2(0) = '1') else
trunc_ln45_4_fu_2451_p1;
select_ln45_5_fu_2534_p3 <=
ap_const_lv10_3FF when (icmp_ln45_5_fu_2524_p2(0) = '1') else
trunc_ln45_5_fu_2530_p1;
select_ln45_6_fu_2613_p3 <=
ap_const_lv10_3FF when (icmp_ln45_6_fu_2603_p2(0) = '1') else
trunc_ln45_6_fu_2609_p1;
select_ln45_7_fu_2692_p3 <=
ap_const_lv10_3FF when (icmp_ln45_7_fu_2682_p2(0) = '1') else
trunc_ln45_7_fu_2688_p1;
select_ln45_8_fu_2771_p3 <=
ap_const_lv10_3FF when (icmp_ln45_8_fu_2761_p2(0) = '1') else
trunc_ln45_8_fu_2767_p1;
select_ln45_9_fu_2850_p3 <=
ap_const_lv10_3FF when (icmp_ln45_9_fu_2840_p2(0) = '1') else
trunc_ln45_9_fu_2846_p1;
select_ln45_fu_2139_p3 <=
ap_const_lv10_3FF when (icmp_ln45_fu_2129_p2(0) = '1') else
trunc_ln45_fu_2135_p1;
select_ln850_12_fu_2170_p3 <=
select_ln851_12_fu_2163_p3 when (tmp_172_fu_2150_p3(0) = '1') else
sext_ln835_1_fu_2147_p1;
select_ln850_13_fu_2249_p3 <=
select_ln851_13_fu_2242_p3 when (tmp_175_fu_2229_p3(0) = '1') else
sext_ln835_2_fu_2226_p1;
select_ln850_14_fu_2328_p3 <=
select_ln851_14_fu_2321_p3 when (tmp_178_fu_2308_p3(0) = '1') else
sext_ln835_3_fu_2305_p1;
select_ln850_15_fu_2407_p3 <=
select_ln851_15_fu_2400_p3 when (tmp_181_fu_2387_p3(0) = '1') else
sext_ln835_4_fu_2384_p1;
select_ln850_16_fu_2486_p3 <=
select_ln851_16_fu_2479_p3 when (tmp_184_fu_2466_p3(0) = '1') else
sext_ln835_5_fu_2463_p1;
select_ln850_17_fu_2565_p3 <=
select_ln851_17_fu_2558_p3 when (tmp_187_fu_2545_p3(0) = '1') else
sext_ln835_6_fu_2542_p1;
select_ln850_18_fu_2644_p3 <=
select_ln851_18_fu_2637_p3 when (tmp_190_fu_2624_p3(0) = '1') else
sext_ln835_7_fu_2621_p1;
select_ln850_19_fu_2723_p3 <=
select_ln851_19_fu_2716_p3 when (tmp_193_fu_2703_p3(0) = '1') else
sext_ln835_8_fu_2700_p1;
select_ln850_20_fu_2802_p3 <=
select_ln851_20_fu_2795_p3 when (tmp_196_fu_2782_p3(0) = '1') else
sext_ln835_9_fu_2779_p1;
select_ln850_21_fu_2881_p3 <=
select_ln851_21_fu_2874_p3 when (tmp_199_fu_2861_p3(0) = '1') else
sext_ln835_10_fu_2858_p1;
select_ln850_22_fu_2960_p3 <=
select_ln851_22_fu_2953_p3 when (tmp_202_fu_2940_p3(0) = '1') else
sext_ln835_11_fu_2937_p1;
select_ln850_fu_2091_p3 <=
select_ln851_fu_2084_p3 when (tmp_169_fu_2071_p3(0) = '1') else
sext_ln835_fu_2068_p1;
select_ln851_12_fu_2163_p3 <=
sext_ln835_1_fu_2147_p1 when (icmp_ln851_12_reg_3452(0) = '1') else
add_ln700_30_fu_2157_p2;
select_ln851_13_fu_2242_p3 <=
sext_ln835_2_fu_2226_p1 when (icmp_ln851_13_reg_3467(0) = '1') else
add_ln700_31_fu_2236_p2;
select_ln851_14_fu_2321_p3 <=
sext_ln835_3_fu_2305_p1 when (icmp_ln851_14_reg_3482(0) = '1') else
add_ln700_32_fu_2315_p2;
select_ln851_15_fu_2400_p3 <=
sext_ln835_4_fu_2384_p1 when (icmp_ln851_15_reg_3497(0) = '1') else
add_ln700_33_fu_2394_p2;
select_ln851_16_fu_2479_p3 <=
sext_ln835_5_fu_2463_p1 when (icmp_ln851_16_reg_3512(0) = '1') else
add_ln700_34_fu_2473_p2;
select_ln851_17_fu_2558_p3 <=
sext_ln835_6_fu_2542_p1 when (icmp_ln851_17_reg_3527(0) = '1') else
add_ln700_35_fu_2552_p2;
select_ln851_18_fu_2637_p3 <=
sext_ln835_7_fu_2621_p1 when (icmp_ln851_18_reg_3542(0) = '1') else
add_ln700_36_fu_2631_p2;
select_ln851_19_fu_2716_p3 <=
sext_ln835_8_fu_2700_p1 when (icmp_ln851_19_reg_3557(0) = '1') else
add_ln700_37_fu_2710_p2;
select_ln851_20_fu_2795_p3 <=
sext_ln835_9_fu_2779_p1 when (icmp_ln851_20_reg_3572(0) = '1') else
add_ln700_38_fu_2789_p2;
select_ln851_21_fu_2874_p3 <=
sext_ln835_10_fu_2858_p1 when (icmp_ln851_21_reg_3587(0) = '1') else
add_ln700_39_fu_2868_p2;
select_ln851_22_fu_2953_p3 <=
sext_ln835_11_fu_2937_p1 when (icmp_ln851_22_reg_3602(0) = '1') else
add_ln700_40_fu_2947_p2;
select_ln851_fu_2084_p3 <=
sext_ln835_fu_2068_p1 when (icmp_ln851_reg_3437(0) = '1') else
add_ln700_29_fu_2078_p2;
sext_ln1118_10_fu_1674_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_s_fu_1666_p3),41));
sext_ln1118_11_fu_1684_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_9_fu_1678_p2),41));
sext_ln1118_12_fu_1732_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_10_fu_1724_p3),41));
sext_ln1118_13_fu_1742_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_11_fu_1736_p2),41));
sext_ln1118_14_fu_1790_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_12_fu_1782_p3),41));
sext_ln1118_15_fu_1800_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_13_fu_1794_p2),41));
sext_ln1118_16_fu_1848_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_14_fu_1840_p3),41));
sext_ln1118_17_fu_1858_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_15_fu_1852_p2),41));
sext_ln1118_18_fu_1906_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_16_fu_1898_p3),41));
sext_ln1118_19_fu_1916_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_17_fu_1910_p2),41));
sext_ln1118_1_fu_1394_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_fu_1388_p2),41));
sext_ln1118_20_fu_1964_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_18_fu_1956_p3),41));
sext_ln1118_21_fu_1974_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_19_fu_1968_p2),41));
sext_ln1118_22_fu_2022_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_20_fu_2014_p3),41));
sext_ln1118_23_fu_2032_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_21_fu_2026_p2),41));
sext_ln1118_2_fu_1442_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_2_fu_1434_p3),41));
sext_ln1118_3_fu_1452_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_1_fu_1446_p2),41));
sext_ln1118_4_fu_1500_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_4_fu_1492_p3),41));
sext_ln1118_5_fu_1510_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_3_fu_1504_p2),41));
sext_ln1118_6_fu_1558_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_6_fu_1550_p3),41));
sext_ln1118_7_fu_1568_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_5_fu_1562_p2),41));
sext_ln1118_8_fu_1616_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_8_fu_1608_p3),41));
sext_ln1118_9_fu_1626_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln1118_7_fu_1620_p2),41));
sext_ln1118_fu_1384_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(shl_ln3_fu_1376_p3),41));
sext_ln1148_1_fu_645_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(maxmin_diff_1_V_fu_629_p2),30));
sext_ln1148_2_fu_649_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(maxmin_diff_2_V_fu_635_p2),30));
sext_ln1148_fu_641_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(maxmin_diff_0_V_fu_623_p2),30));
sext_ln835_10_fu_2858_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_37_reg_3582),19));
sext_ln835_11_fu_2937_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_38_reg_3597),19));
sext_ln835_1_fu_2147_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_28_reg_3447),19));
sext_ln835_2_fu_2226_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_29_reg_3462),19));
sext_ln835_3_fu_2305_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_30_reg_3477),19));
sext_ln835_4_fu_2384_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_31_reg_3492),19));
sext_ln835_5_fu_2463_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_32_reg_3507),19));
sext_ln835_6_fu_2542_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_33_reg_3522),19));
sext_ln835_7_fu_2621_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_34_reg_3537),19));
sext_ln835_8_fu_2700_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_35_reg_3552),19));
sext_ln835_9_fu_2779_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_36_reg_3567),19));
sext_ln835_fu_2068_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(tmp_27_reg_3432),19));
sext_ln895_fu_759_p1 <= std_logic_vector(IEEE.numeric_std.resize(signed(trunc_ln555_4_reg_3189),33));
shl_ln1118_10_fu_1724_p3 <= (trunc_ln1118_6_fu_1720_p1 & ap_const_lv16_0);
shl_ln1118_11_fu_1736_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1217_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_12_fu_1782_p3 <= (trunc_ln1118_7_fu_1778_p1 & ap_const_lv16_0);
shl_ln1118_13_fu_1794_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1247_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_14_fu_1840_p3 <= (trunc_ln1118_8_fu_1836_p1 & ap_const_lv16_0);
shl_ln1118_15_fu_1852_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1277_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_16_fu_1898_p3 <= (trunc_ln1118_9_fu_1894_p1 & ap_const_lv16_0);
shl_ln1118_17_fu_1910_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1307_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_18_fu_1956_p3 <= (trunc_ln1118_10_fu_1952_p1 & ap_const_lv16_0);
shl_ln1118_19_fu_1968_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1337_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_1_fu_1446_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1067_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_20_fu_2014_p3 <= (trunc_ln1118_11_fu_2010_p1 & ap_const_lv16_0);
shl_ln1118_21_fu_2026_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1367_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_2_fu_1434_p3 <= (trunc_ln1118_1_fu_1430_p1 & ap_const_lv16_0);
shl_ln1118_3_fu_1504_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1097_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_4_fu_1492_p3 <= (trunc_ln1118_2_fu_1488_p1 & ap_const_lv16_0);
shl_ln1118_5_fu_1562_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1127_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_6_fu_1550_p3 <= (trunc_ln1118_3_fu_1546_p1 & ap_const_lv16_0);
shl_ln1118_7_fu_1620_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1157_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_8_fu_1608_p3 <= (trunc_ln1118_4_fu_1604_p1 & ap_const_lv16_0);
shl_ln1118_9_fu_1678_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1187_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_fu_1388_p2 <= std_logic_vector(shift_left(unsigned(grp_fu_1037_p2),to_integer(unsigned('0' & ap_const_lv30_6(30-1 downto 0)))));
shl_ln1118_s_fu_1666_p3 <= (trunc_ln1118_5_fu_1662_p1 & ap_const_lv16_0);
shl_ln3_fu_1376_p3 <= (trunc_ln1118_fu_1372_p1 & ap_const_lv16_0);
shl_ln703_10_fu_1342_p3 <= (tmp_96_reg_3362 & ap_const_lv6_0);
shl_ln703_1_fu_1042_p3 <= (tmp_66_reg_3312 & ap_const_lv6_0);
shl_ln703_2_fu_1072_p3 <= (tmp_69_reg_3317 & ap_const_lv6_0);
shl_ln703_3_fu_1102_p3 <= (tmp_72_reg_3322 & ap_const_lv6_0);
shl_ln703_4_fu_1132_p3 <= (tmp_75_reg_3327 & ap_const_lv6_0);
shl_ln703_5_fu_1162_p3 <= (tmp_78_reg_3332 & ap_const_lv6_0);
shl_ln703_6_fu_1192_p3 <= (tmp_81_reg_3337 & ap_const_lv6_0);
shl_ln703_7_fu_1222_p3 <= (tmp_84_reg_3342 & ap_const_lv6_0);
shl_ln703_8_fu_1252_p3 <= (tmp_87_reg_3347 & ap_const_lv6_0);
shl_ln703_9_fu_1282_p3 <= (tmp_90_reg_3352 & ap_const_lv6_0);
shl_ln703_s_fu_1312_p3 <= (tmp_93_reg_3357 & ap_const_lv6_0);
shl_ln_fu_1012_p3 <= (trunc_ln703_reg_3307 & ap_const_lv6_0);
src_data_V_V_blk_n_assign_proc : process(src_data_V_V_empty_n, ap_CS_fsm_pp2_stage0, ap_enable_reg_pp2_iter1, ap_block_pp2_stage0, icmp_ln887_12_reg_3298)
begin
if (((icmp_ln887_12_reg_3298 = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0) and (ap_enable_reg_pp2_iter1 = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
src_data_V_V_blk_n <= src_data_V_V_empty_n;
else
src_data_V_V_blk_n <= ap_const_logic_1;
end if;
end process;
src_data_V_V_read_assign_proc : process(ap_CS_fsm_pp2_stage0, ap_enable_reg_pp2_iter1, icmp_ln887_12_reg_3298, ap_block_pp2_stage0_11001)
begin
if (((icmp_ln887_12_reg_3298 = ap_const_lv1_1) and (ap_const_boolean_0 = ap_block_pp2_stage0_11001) and (ap_enable_reg_pp2_iter1 = ap_const_logic_1) and (ap_const_logic_1 = ap_CS_fsm_pp2_stage0))) then
src_data_V_V_read <= ap_const_logic_1;
else
src_data_V_V_read <= ap_const_logic_0;
end if;
end process;
sub_ln1118_10_fu_1978_p2 <= std_logic_vector(signed(sext_ln1118_20_fu_1964_p1) - signed(sext_ln1118_21_fu_1974_p1));
sub_ln1118_11_fu_2036_p2 <= std_logic_vector(signed(sext_ln1118_22_fu_2022_p1) - signed(sext_ln1118_23_fu_2032_p1));
sub_ln1118_1_fu_1456_p2 <= std_logic_vector(signed(sext_ln1118_2_fu_1442_p1) - signed(sext_ln1118_3_fu_1452_p1));
sub_ln1118_2_fu_1514_p2 <= std_logic_vector(signed(sext_ln1118_4_fu_1500_p1) - signed(sext_ln1118_5_fu_1510_p1));
sub_ln1118_3_fu_1572_p2 <= std_logic_vector(signed(sext_ln1118_6_fu_1558_p1) - signed(sext_ln1118_7_fu_1568_p1));
sub_ln1118_4_fu_1630_p2 <= std_logic_vector(signed(sext_ln1118_8_fu_1616_p1) - signed(sext_ln1118_9_fu_1626_p1));
sub_ln1118_5_fu_1688_p2 <= std_logic_vector(signed(sext_ln1118_10_fu_1674_p1) - signed(sext_ln1118_11_fu_1684_p1));
sub_ln1118_6_fu_1746_p2 <= std_logic_vector(signed(sext_ln1118_12_fu_1732_p1) - signed(sext_ln1118_13_fu_1742_p1));
sub_ln1118_7_fu_1804_p2 <= std_logic_vector(signed(sext_ln1118_14_fu_1790_p1) - signed(sext_ln1118_15_fu_1800_p1));
sub_ln1118_8_fu_1862_p2 <= std_logic_vector(signed(sext_ln1118_16_fu_1848_p1) - signed(sext_ln1118_17_fu_1858_p1));
sub_ln1118_9_fu_1920_p2 <= std_logic_vector(signed(sext_ln1118_18_fu_1906_p1) - signed(sext_ln1118_19_fu_1916_p1));
sub_ln1118_fu_1398_p2 <= std_logic_vector(signed(sext_ln1118_fu_1384_p1) - signed(sext_ln1118_1_fu_1394_p1));
sub_ln1354_fu_783_p2 <= std_logic_vector(unsigned(zext_ln215_5_fu_775_p1) - unsigned(zext_ln215_6_fu_779_p1));
sub_ln701_fu_805_p2 <= std_logic_vector(unsigned(p_01348_1_0_reg_393) - unsigned(grp_fu_445_p5));
sub_ln703_10_fu_1323_p2 <= std_logic_vector(unsigned(zext_ln703_10_fu_1319_p1) - unsigned(minValue_1_V_fu_238));
sub_ln703_11_fu_1353_p2 <= std_logic_vector(unsigned(zext_ln703_11_fu_1349_p1) - unsigned(minValue_2_V_fu_242));
sub_ln703_1_fu_1053_p2 <= std_logic_vector(unsigned(zext_ln703_1_fu_1049_p1) - unsigned(minValue_1_V_fu_238));
sub_ln703_2_fu_1083_p2 <= std_logic_vector(unsigned(zext_ln703_2_fu_1079_p1) - unsigned(minValue_2_V_fu_242));
sub_ln703_3_fu_1113_p2 <= std_logic_vector(unsigned(zext_ln703_3_fu_1109_p1) - unsigned(minValue_0_V_fu_234));
sub_ln703_4_fu_1143_p2 <= std_logic_vector(unsigned(zext_ln703_4_fu_1139_p1) - unsigned(minValue_1_V_fu_238));
sub_ln703_5_fu_1173_p2 <= std_logic_vector(unsigned(zext_ln703_5_fu_1169_p1) - unsigned(minValue_2_V_fu_242));
sub_ln703_6_fu_1203_p2 <= std_logic_vector(unsigned(zext_ln703_6_fu_1199_p1) - unsigned(minValue_0_V_fu_234));
sub_ln703_7_fu_1233_p2 <= std_logic_vector(unsigned(zext_ln703_7_fu_1229_p1) - unsigned(minValue_1_V_fu_238));
sub_ln703_8_fu_1263_p2 <= std_logic_vector(unsigned(zext_ln703_8_fu_1259_p1) - unsigned(minValue_2_V_fu_242));
sub_ln703_9_fu_1293_p2 <= std_logic_vector(unsigned(zext_ln703_9_fu_1289_p1) - unsigned(minValue_0_V_fu_234));
sub_ln703_fu_1023_p2 <= std_logic_vector(unsigned(zext_ln703_fu_1019_p1) - unsigned(minValue_0_V_fu_234));
tmp_167_fu_583_p4 <= mul_ln1148_2_reg_3170(75 downto 51);
tmp_168_fu_679_p3 <= t_V_16_0_reg_358(10 downto 10);
tmp_169_fu_2071_p3 <= sub_ln1118_reg_3427(29 downto 29);
tmp_170_fu_2103_p3 <= select_ln850_fu_2091_p3(18 downto 18);
tmp_171_fu_2119_p4 <= select_ln399_fu_2111_p3(17 downto 10);
tmp_172_fu_2150_p3 <= sub_ln1118_1_reg_3442(29 downto 29);
tmp_173_fu_2182_p3 <= select_ln850_12_fu_2170_p3(18 downto 18);
tmp_174_fu_2198_p4 <= select_ln399_1_fu_2190_p3(17 downto 10);
tmp_175_fu_2229_p3 <= sub_ln1118_2_reg_3457(29 downto 29);
tmp_176_fu_2261_p3 <= select_ln850_13_fu_2249_p3(18 downto 18);
tmp_177_fu_2277_p4 <= select_ln399_2_fu_2269_p3(17 downto 10);
tmp_178_fu_2308_p3 <= sub_ln1118_3_reg_3472(29 downto 29);
tmp_179_fu_2340_p3 <= select_ln850_14_fu_2328_p3(18 downto 18);
tmp_180_fu_2356_p4 <= select_ln399_3_fu_2348_p3(17 downto 10);
tmp_181_fu_2387_p3 <= sub_ln1118_4_reg_3487(29 downto 29);
tmp_182_fu_2419_p3 <= select_ln850_15_fu_2407_p3(18 downto 18);
tmp_183_fu_2435_p4 <= select_ln399_4_fu_2427_p3(17 downto 10);
tmp_184_fu_2466_p3 <= sub_ln1118_5_reg_3502(29 downto 29);
tmp_185_fu_2498_p3 <= select_ln850_16_fu_2486_p3(18 downto 18);
tmp_186_fu_2514_p4 <= select_ln399_5_fu_2506_p3(17 downto 10);
tmp_187_fu_2545_p3 <= sub_ln1118_6_reg_3517(29 downto 29);
tmp_188_fu_2577_p3 <= select_ln850_17_fu_2565_p3(18 downto 18);
tmp_189_fu_2593_p4 <= select_ln399_6_fu_2585_p3(17 downto 10);
tmp_190_fu_2624_p3 <= sub_ln1118_7_reg_3532(29 downto 29);
tmp_191_fu_2656_p3 <= select_ln850_18_fu_2644_p3(18 downto 18);
tmp_192_fu_2672_p4 <= select_ln399_7_fu_2664_p3(17 downto 10);
tmp_193_fu_2703_p3 <= sub_ln1118_8_reg_3547(29 downto 29);
tmp_194_fu_2735_p3 <= select_ln850_19_fu_2723_p3(18 downto 18);
tmp_195_fu_2751_p4 <= select_ln399_8_fu_2743_p3(17 downto 10);
tmp_196_fu_2782_p3 <= sub_ln1118_9_reg_3562(29 downto 29);
tmp_197_fu_2814_p3 <= select_ln850_20_fu_2802_p3(18 downto 18);
tmp_198_fu_2830_p4 <= select_ln399_9_fu_2822_p3(17 downto 10);
tmp_199_fu_2861_p3 <= sub_ln1118_10_reg_3577(29 downto 29);
tmp_200_fu_2893_p3 <= select_ln850_21_fu_2881_p3(18 downto 18);
tmp_201_fu_2909_p4 <= select_ln399_10_fu_2901_p3(17 downto 10);
tmp_202_fu_2940_p3 <= sub_ln1118_11_reg_3592(29 downto 29);
tmp_203_fu_2972_p3 <= select_ln850_22_fu_2960_p3(18 downto 18);
tmp_204_fu_2988_p4 <= select_ln399_11_fu_2980_p3(17 downto 10);
total_fu_3033_p0 <= total_fu_3033_p00(16 - 1 downto 0);
total_fu_3033_p00 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(dst_rows_read),32));
total_fu_3033_p1 <= total_fu_3033_p10(16 - 1 downto 0);
total_fu_3033_p10 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(dst_cols_read),32));
trunc_ln1118_10_fu_1952_p1 <= grp_fu_1337_p2(24 - 1 downto 0);
trunc_ln1118_11_fu_2010_p1 <= grp_fu_1367_p2(24 - 1 downto 0);
trunc_ln1118_1_fu_1430_p1 <= grp_fu_1067_p2(24 - 1 downto 0);
trunc_ln1118_2_fu_1488_p1 <= grp_fu_1097_p2(24 - 1 downto 0);
trunc_ln1118_3_fu_1546_p1 <= grp_fu_1127_p2(24 - 1 downto 0);
trunc_ln1118_4_fu_1604_p1 <= grp_fu_1157_p2(24 - 1 downto 0);
trunc_ln1118_5_fu_1662_p1 <= grp_fu_1187_p2(24 - 1 downto 0);
trunc_ln1118_6_fu_1720_p1 <= grp_fu_1217_p2(24 - 1 downto 0);
trunc_ln1118_7_fu_1778_p1 <= grp_fu_1247_p2(24 - 1 downto 0);
trunc_ln1118_8_fu_1836_p1 <= grp_fu_1277_p2(24 - 1 downto 0);
trunc_ln1118_9_fu_1894_p1 <= grp_fu_1307_p2(24 - 1 downto 0);
trunc_ln1118_fu_1372_p1 <= grp_fu_1037_p2(24 - 1 downto 0);
trunc_ln45_10_fu_2925_p1 <= select_ln399_10_fu_2901_p3(10 - 1 downto 0);
trunc_ln45_11_fu_3004_p1 <= select_ln399_11_fu_2980_p3(10 - 1 downto 0);
trunc_ln45_1_fu_2214_p1 <= select_ln399_1_fu_2190_p3(10 - 1 downto 0);
trunc_ln45_2_fu_2293_p1 <= select_ln399_2_fu_2269_p3(10 - 1 downto 0);
trunc_ln45_3_fu_2372_p1 <= select_ln399_3_fu_2348_p3(10 - 1 downto 0);
trunc_ln45_4_fu_2451_p1 <= select_ln399_4_fu_2427_p3(10 - 1 downto 0);
trunc_ln45_5_fu_2530_p1 <= select_ln399_5_fu_2506_p3(10 - 1 downto 0);
trunc_ln45_6_fu_2609_p1 <= select_ln399_6_fu_2585_p3(10 - 1 downto 0);
trunc_ln45_7_fu_2688_p1 <= select_ln399_7_fu_2664_p3(10 - 1 downto 0);
trunc_ln45_8_fu_2767_p1 <= select_ln399_8_fu_2743_p3(10 - 1 downto 0);
trunc_ln45_9_fu_2846_p1 <= select_ln399_9_fu_2822_p3(10 - 1 downto 0);
trunc_ln45_fu_2135_p1 <= select_ln399_fu_2111_p3(10 - 1 downto 0);
trunc_ln647_13_fu_2178_p1 <= select_ln850_12_fu_2170_p3(18 - 1 downto 0);
trunc_ln647_14_fu_2257_p1 <= select_ln850_13_fu_2249_p3(18 - 1 downto 0);
trunc_ln647_15_fu_2336_p1 <= select_ln850_14_fu_2328_p3(18 - 1 downto 0);
trunc_ln647_16_fu_2415_p1 <= select_ln850_15_fu_2407_p3(18 - 1 downto 0);
trunc_ln647_17_fu_2494_p1 <= select_ln850_16_fu_2486_p3(18 - 1 downto 0);
trunc_ln647_18_fu_2573_p1 <= select_ln850_17_fu_2565_p3(18 - 1 downto 0);
trunc_ln647_19_fu_2652_p1 <= select_ln850_18_fu_2644_p3(18 - 1 downto 0);
trunc_ln647_20_fu_2731_p1 <= select_ln850_19_fu_2723_p3(18 - 1 downto 0);
trunc_ln647_21_fu_2810_p1 <= select_ln850_20_fu_2802_p3(18 - 1 downto 0);
trunc_ln647_22_fu_2889_p1 <= select_ln850_21_fu_2881_p3(18 - 1 downto 0);
trunc_ln647_23_fu_2968_p1 <= select_ln850_22_fu_2960_p3(18 - 1 downto 0);
trunc_ln647_fu_2099_p1 <= select_ln850_fu_2091_p3(18 - 1 downto 0);
trunc_ln703_fu_898_p1 <= src_data_V_V_dout(10 - 1 downto 0);
xor_ln887_fu_687_p2 <= (tmp_168_fu_679_p3 xor ap_const_lv1_1);
zext_ln215_4_fu_664_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(grp_fu_445_p5),33));
zext_ln215_5_fu_775_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(p_01348_1_0_reg_393),33));
zext_ln215_6_fu_779_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(grp_fu_445_p5),33));
zext_ln215_fu_660_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(p_01629_1_0_reg_370),33));
zext_ln544_2_fu_762_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(t_V_17_0_reg_381),64));
zext_ln544_fu_653_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(t_V_16_0_reg_358),64));
zext_ln703_10_fu_1319_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_s_fu_1312_p3),24));
zext_ln703_11_fu_1349_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_10_fu_1342_p3),24));
zext_ln703_1_fu_1049_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_1_fu_1042_p3),24));
zext_ln703_2_fu_1079_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_2_fu_1072_p3),24));
zext_ln703_3_fu_1109_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_3_fu_1102_p3),24));
zext_ln703_4_fu_1139_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_4_fu_1132_p3),24));
zext_ln703_5_fu_1169_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_5_fu_1162_p3),24));
zext_ln703_6_fu_1199_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_6_fu_1192_p3),24));
zext_ln703_7_fu_1229_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_7_fu_1222_p3),24));
zext_ln703_8_fu_1259_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_8_fu_1252_p3),24));
zext_ln703_9_fu_1289_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln703_9_fu_1282_p3),24));
zext_ln703_fu_1019_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(shl_ln_fu_1012_p3),24));
zext_ln887_1_fu_883_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(t_V_2_reg_413),14));
zext_ln887_2_fu_601_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(tmp_167_fu_583_p4),33));
zext_ln887_fu_868_p1 <= std_logic_vector(IEEE.numeric_std.resize(unsigned(t_V_reg_402),16));
end behav;
| VHDL | 4 | hito0512/Vitis-AI | Whole-App-Acceleration/apps/resnet50/build_flow/DPUCVDX8G_vck190/vck190_platform/hw/source/ip/isppipeline_accel/hdl/vhdl/AWBNormalizationkern.vhd | [
"Apache-2.0"
] |
new class FlyingObstacle : Obstacle {
enum {
LEFT, RIGHT, TOP, BOTTOM
}
new method __init__(pos, mode) {
this.pos = pos;
new dynamic tmp = randint(MIN_OBSTACLE_SIZE, MAX_OBSTACLE_SIZE);
this.size = Vector(tmp, tmp);
this.mode = mode;
this.velocity = randint(MIN_FLYINGOBST_SPEED, MAX_FLYINGOBST_SPEED);
}
new method isAlive() {
match this.mode {
case FlyingObstacle.LEFT {
return this.pos.x < RESOLUTION.x;
}
case FlyingObstacle.RIGHT {
return this.pos.x > 0;
}
case FlyingObstacle.TOP {
return this.pos.y < RESOLUTION.y;
}
case FlyingObstacle.BOTTOM {
return this.pos.y > 0;
}
}
}
new method update() {
new dynamic pt1, pt2;
match this.mode {
case FlyingObstacle.LEFT {
this.pos.x += this.velocity;
pt1 = this.pos.copy();
pt1.y += this.size.y;
pt2 = this.pos + this.size;
pt2.y -= this.size.y // 2;
graphics.polygon((this.pos, pt1, pt2), FG);
}
case FlyingObstacle.RIGHT {
this.pos.x -= this.velocity;
pt1 = this.pos.copy();
pt2 = this.pos.copy();
pt1.y += this.size.y // 2;
pt2.x += this.size.x;
graphics.polygon((pt1, pt2, this.pos + this.size), FG);
}
case FlyingObstacle.TOP {
this.pos.y += this.velocity;
pt1 = this.pos.copy();
pt1.x += this.size.x;
pt2 = this.pos + this.size;
pt2.x -= this.size.x // 2;
graphics.polygon((this.pos, pt1, pt2), FG);
}
case FlyingObstacle.BOTTOM {
this.pos.y -= this.velocity;
pt1 = this.pos.copy();
pt2 = this.pos.copy();
pt1.y += this.size.y;
pt2.x += this.size.x // 2;
graphics.polygon((pt1, pt2, this.pos + this.size), FG);
}
}
if DEBUG_MODE {
graphics.fastRectangle(this.pos, this.size, HITBOX_COLOR, DEBUG_LINES_WIDTH);
new dynamic tmp;
if this.mode in (FlyingObstacle.LEFT, FlyingObstacle.RIGHT) {
tmp = this.pos.y + this.size.y // 2;
graphics.line(Vector(0, tmp), Vector(RESOLUTION.x, tmp), INFO_COLOR, DEBUG_LINES_WIDTH);
} else {
tmp = this.pos.x + this.size.x // 2;
graphics.line(Vector(tmp, 0), Vector(tmp, RESOLUTION.y), INFO_COLOR, DEBUG_LINES_WIDTH);
}
}
}
} | Opal | 4 | thatsOven/pong-plus-plus | FlyingObstacle.opal | [
"MIT"
] |
output "leader_public_ip" {
value = module.loadtest.leader_public_ip
description = "The public IP address of the leader server instance."
}
output "leader_private_ip" {
value = module.loadtest.leader_private_ip
description = "The private IP address of the leader server instance."
}
output "nodes_public_ip" {
value = module.loadtest.nodes_public_ip
description = "The public IP address of the nodes instances."
}
output "nodes_private_ip" {
value = module.loadtest.nodes_private_ip
description = "The private IP address of the nodes instances."
}
output "dashboard_url" {
value = "http://${coalesce(module.loadtest.leader_public_ip, module.loadtest.leader_private_ip)}"
description = "The URL of the Locust UI."
}
| HCL | 4 | KevinHoi128/locust | examples/terraform/aws/output.tf | [
"MIT"
] |
mean ← +/÷≢
a ← 2 3 4 2 4 6 3 5
⎕ ← mean a
meandev ← ⊢ - +/ ÷ ≢
⎕ ← meandev a
var ← mean ({⍵×⍵}⊢-+/÷≢)
stddev ← {⍵*0.5} var
all ← mean, var, stddev
⎕ ← all a ⍝ ->
⎕ ← (⍳{⍺/⍵}⍳)3 ⍝ -> 1 2 2 3 3 3
⍝ ⎕ ← (⍳(/∘⊢)⍳)3
⍝ ⎕ ← (2 2 3/⍳)3 ok now
0
| APL | 2 | melsman/apltail | tests/trains1.apl | [
"MIT"
] |
Red/System [
Title: "Email! datatype runtime functions"
Author: "Nenad Rakocevic"
File: %email.reds
Tabs: 4
Rights: "Copyright (C) 2016-2018 Red Foundation. All rights reserved."
License: {
Distributed under the Boost Software License, Version 1.0.
See https://github.com/red/red/blob/master/red-system/runtime/BSL-License.txt
}
]
email: context [
verbose: 0
push: func [
email [red-email!]
][
#if debug? = yes [if verbose > 0 [print-line "email/push"]]
copy-cell as red-value! email stack/push*
]
;-- Actions --
mold: func [
email [red-email!]
buffer [red-string!]
only? [logic!]
all? [logic!]
flat? [logic!]
arg [red-value!]
part [integer!]
indent [integer!]
return: [integer!]
][
#if debug? = yes [if verbose > 0 [print-line "email/mold"]]
string/form as red-string! email buffer arg part
]
eval-path: func [
parent [red-string!] ;-- implicit type casting
element [red-value!]
value [red-value!]
path [red-value!]
case? [logic!]
get? [logic!]
tail? [logic!]
return: [red-value!]
/local
part [red-value!]
w [red-word!]
sym [integer!]
pos [integer!]
slots [integer!]
][
#if debug? = yes [if verbose > 0 [print-line "email/eval-path"]]
switch TYPE_OF(element) [
TYPE_WORD [
w: as red-word! element
sym: symbol/resolve w/symbol
if all [sym <> words/user sym <> words/host][
fire [TO_ERROR(script invalid-path) path element]
]
]
TYPE_INTEGER [
return string/eval-path parent element value path case? get? tail?
]
default [fire [TO_ERROR(script invalid-path) path element]]
]
pos: string/rs-find parent as-integer #"@"
if pos = -1 [pos: string/rs-length? parent]
parent: string/push parent
part: either sym = words/user [
as red-value! integer/push pos
][
parent/head: pos + 1
either value = null [null][
as red-value! integer/push string/rs-length? parent
]
]
either value <> null [
_series/change as red-series! parent value part no null
object/check-owner as red-value! parent
][
value: stack/push*
_series/copy as red-series! parent as red-series! value part no null
value/header: TYPE_STRING
]
slots: either part = null [2][3]
stack/pop slots ;-- avoid moving stack top
value
]
init: does [
datatype/register [
TYPE_EMAIL
TYPE_STRING
"email!"
;-- General actions --
INHERIT_ACTION ;make
null ;random
INHERIT_ACTION ;reflect
INHERIT_ACTION ;to
INHERIT_ACTION ;form
:mold
:eval-path
null ;set-path
INHERIT_ACTION ;compare
;-- Scalar actions --
null ;absolute
null ;add
null ;divide
null ;multiply
null ;negate
null ;power
null ;remainder
null ;round
null ;subtract
null ;even?
null ;odd?
;-- Bitwise actions --
null ;and~
null ;complement
null ;or~
null ;xor~
;-- Series actions --
null ;append
INHERIT_ACTION ;at
INHERIT_ACTION ;back
INHERIT_ACTION ;change
INHERIT_ACTION ;clear
INHERIT_ACTION ;copy
INHERIT_ACTION ;find
INHERIT_ACTION ;head
INHERIT_ACTION ;head?
INHERIT_ACTION ;index?
INHERIT_ACTION ;insert
INHERIT_ACTION ;length?
INHERIT_ACTION ;move
INHERIT_ACTION ;next
INHERIT_ACTION ;pick
INHERIT_ACTION ;poke
INHERIT_ACTION ;put
INHERIT_ACTION ;remove
INHERIT_ACTION ;reverse
INHERIT_ACTION ;select
null ;sort
INHERIT_ACTION ;skip
INHERIT_ACTION ;swap
INHERIT_ACTION ;tail
INHERIT_ACTION ;tail?
INHERIT_ACTION ;take
null ;trim
;-- I/O actions --
null ;create
null ;close
null ;delete
INHERIT_ACTION ;modify
null ;open
null ;open?
null ;query
null ;read
null ;rename
null ;update
null ;write
]
]
]
| Red | 5 | GalenIvanov/red | runtime/datatypes/email.reds | [
"BSL-1.0",
"BSD-3-Clause"
] |
// sdk stuff
import structs/[HashMap, ArrayList]
import ../io/TabbedWriter
// our stuff
import ../frontend/[Token, BuildParams]
import Expression, Type, Visitor, TypeDecl, Node, FunctionDecl,
FunctionCall, VariableAccess, BaseType, VariableDecl
import tinker/[Response, Resolver, Trail, Errors]
CoverDecl: class extends TypeDecl {
fromType: Type
isProto: Bool
isGenerated := false
fromClosure := false
init: func ~coverDeclNoSuper(.name, .token) {
super(name, token)
}
init: func ~coverDecl(.name, .superType, .token) {
super(name, superType, token)
}
isPrimitiveType: func -> Bool {
true
}
hasMeta?: func -> Bool {
!template
}
accept: func (visitor: Visitor) { visitor visitCoverDecl(this) }
setFromType: func (=fromType) {}
getFromType: func -> Type { fromType }
setProto: func (=isProto) {}
// all functions of a cover are final, because we don't have a 'class' field
addFunction: func (fDecl: FunctionDecl) {
fDecl isFinal = true
super(fDecl)
}
resolve: func (trail: Trail, res: Resolver) -> Response {
if (debugCondition()) {
"Resolving CoverDecl #{this}, template = #{template ? template toString() : "<none>"}" println()
}
// resolve the body, methods, arguments
response := super(trail, res)
if(!response ok()) return response
if(fromType) {
trail push(this)
response := fromType resolve(trail, res)
if(!response ok()) {
fromType setRef(BuiltinType new(fromType getName(), nullToken))
}
if(fromType getRef() != null) {
fromType checkedDig(res)
}
trail pop(this)
}
return Response OK
}
resolveCall: func (call: FunctionCall, res: Resolver, trail: Trail) -> Int {
if(fromType && fromType getRef() && fromType getRef() instanceOf?(TypeDecl)) {
tDecl := fromType getRef() as TypeDecl
meta := tDecl getMeta()
if(meta) {
meta resolveCall(call, res, trail)
} else {
tDecl resolveCall(call, res, trail)
}
}
if(!call ref) {
return super(call, res, trail)
}
0
}
resolveAccess: func (access: VariableAccess, res: Resolver, trail: Trail) -> Int {
if(fromType && fromType getRef() && fromType getRef() instanceOf?(TypeDecl)) {
// Try to find out if we are covering a pointer so we can throw a "need dereferencing" error
burrowedFrom := fromType
while(burrowedFrom) {
if(!burrowedFrom getRef()) return -1
if(burrowedFrom class == PointerType) {
return 0 // we can't access stuff in covers from pointer types
}
if(!burrowedFrom getRef() instanceOf?(This)) break
burrowedFrom = burrowedFrom getRef() as This fromType
}
fromType getRef() as TypeDecl resolveAccess(access, res, trail)
}
if(!access ref) {
return super(access, res, trail)
}
0
}
writeSize: func (w: TabbedWriter, instance: Bool) {
w app("sizeof("). app(underName()). app(")")
}
replace: func (oldie, kiddo: Node) -> Bool { false }
}
AddingVariablesInAddon: class extends Error {
init: func (base: CoverDecl, =token) {
message = base token formatMessage("...while extending cover " + base toString(), "") +
token formatMessage("Attempting to add variables to another cover!", "ERROR")
}
format: func -> String {
message
}
}
CoverDeclLoop: class extends Error {
init: super func ~tokenMessage
}
| ooc | 4 | shamanas/rock | source/rock/middle/CoverDecl.ooc | [
"MIT"
] |
# -*- Python -*-
"""Skylark macros for system libraries.
"""
SYSTEM_LIBS_ENABLED = %{syslibs_enabled}
SYSTEM_LIBS_LIST = [
%{syslibs_list}
]
def if_any_system_libs(a, b=[]):
"""Conditional which evaluates to 'a' if any system libraries are configured."""
if SYSTEM_LIBS_ENABLED:
return a
else:
return b
def if_system_lib(lib, a, b=[]):
"""Conditional which evaluates to 'a' if we're using the system version of lib"""
if SYSTEM_LIBS_ENABLED and lib in SYSTEM_LIBS_LIST:
return a
else:
return b
def if_not_system_lib(lib, a, b=[]):
"""Conditional which evaluates to 'a' if we're using the system version of lib"""
return if_system_lib(lib, b, a)
| Smarty | 4 | abhaikollara/tensorflow | third_party/systemlibs/build_defs.bzl.tpl | [
"Apache-2.0"
] |
\begin{code}
module Issue97 where
\end{code}
| Literate Agda | 0 | shlevy/agda | test/Succeed/Issue97.lagda | [
"BSD-3-Clause"
] |
'reach 0.1';
const app21 = (f) => {
return f(2, 1);
};
export const main = Reach.App(
{}, [], () => {
assert(app21(add) == 3);
assert(app21(sub) == 1);
assert(app21(mul) == 2);
assert(app21(div) == 2);
assert(app21(mod) == 0);
assert(!app21(lt));
assert(!app21(le));
assert(!app21(eq));
assert(app21(ge));
assert(app21(gt));
}
);
| RenderScript | 4 | chikeabuah/reach-lang | hs/t/y/operator_aliases.rsh | [
"Apache-2.0"
] |
%{
/*-------------------------------------------------------------------------
*
* exprparse.y
* bison grammar for a simple expression syntax
*
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/bin/pgbench/exprparse.y
*
*-------------------------------------------------------------------------
*/
#include "postgres_fe.h"
#include "pgbench.h"
#define PGBENCH_NARGS_VARIABLE (-1)
#define PGBENCH_NARGS_CASE (-2)
#define PGBENCH_NARGS_HASH (-3)
PgBenchExpr *expr_parse_result;
static PgBenchExprList *make_elist(PgBenchExpr *exp, PgBenchExprList *list);
static PgBenchExpr *make_null_constant(void);
static PgBenchExpr *make_boolean_constant(bool bval);
static PgBenchExpr *make_integer_constant(int64 ival);
static PgBenchExpr *make_double_constant(double dval);
static PgBenchExpr *make_variable(char *varname);
static PgBenchExpr *make_op(yyscan_t yyscanner, const char *operator,
PgBenchExpr *lexpr, PgBenchExpr *rexpr);
static PgBenchExpr *make_uop(yyscan_t yyscanner, const char *operator, PgBenchExpr *expr);
static int find_func(yyscan_t yyscanner, const char *fname);
static PgBenchExpr *make_func(yyscan_t yyscanner, int fnumber, PgBenchExprList *args);
static PgBenchExpr *make_case(yyscan_t yyscanner, PgBenchExprList *when_then_list, PgBenchExpr *else_part);
%}
%pure-parser
%expect 0
%name-prefix="expr_yy"
%parse-param {yyscan_t yyscanner}
%lex-param {yyscan_t yyscanner}
%union
{
int64 ival;
double dval;
bool bval;
char *str;
PgBenchExpr *expr;
PgBenchExprList *elist;
}
%type <elist> elist when_then_list
%type <expr> expr case_control
%type <ival> INTEGER_CONST function
%type <dval> DOUBLE_CONST
%type <bval> BOOLEAN_CONST
%type <str> VARIABLE FUNCTION
%token NULL_CONST INTEGER_CONST MAXINT_PLUS_ONE_CONST DOUBLE_CONST
%token BOOLEAN_CONST VARIABLE FUNCTION
%token AND_OP OR_OP NOT_OP NE_OP LE_OP GE_OP LS_OP RS_OP IS_OP
%token CASE_KW WHEN_KW THEN_KW ELSE_KW END_KW
/* Precedence: lowest to highest, taken from postgres SQL parser */
%left OR_OP
%left AND_OP
%right NOT_OP
%nonassoc IS_OP ISNULL_OP NOTNULL_OP
%nonassoc '<' '>' '=' LE_OP GE_OP NE_OP
%left '|' '#' '&' LS_OP RS_OP '~'
%left '+' '-'
%left '*' '/' '%'
%right UNARY
%%
result: expr { expr_parse_result = $1; }
elist: { $$ = NULL; }
| expr { $$ = make_elist($1, NULL); }
| elist ',' expr { $$ = make_elist($3, $1); }
;
expr: '(' expr ')' { $$ = $2; }
| '+' expr %prec UNARY { $$ = $2; }
/* unary minus "-x" implemented as "0 - x" */
| '-' expr %prec UNARY { $$ = make_op(yyscanner, "-",
make_integer_constant(0), $2); }
/* special PG_INT64_MIN handling, only after a unary minus */
| '-' MAXINT_PLUS_ONE_CONST %prec UNARY
{ $$ = make_integer_constant(PG_INT64_MIN); }
/* binary ones complement "~x" implemented as 0xffff... xor x" */
| '~' expr { $$ = make_op(yyscanner, "#",
make_integer_constant(~INT64CONST(0)), $2); }
| NOT_OP expr { $$ = make_uop(yyscanner, "!not", $2); }
| expr '+' expr { $$ = make_op(yyscanner, "+", $1, $3); }
| expr '-' expr { $$ = make_op(yyscanner, "-", $1, $3); }
| expr '*' expr { $$ = make_op(yyscanner, "*", $1, $3); }
| expr '/' expr { $$ = make_op(yyscanner, "/", $1, $3); }
| expr '%' expr { $$ = make_op(yyscanner, "mod", $1, $3); }
| expr '<' expr { $$ = make_op(yyscanner, "<", $1, $3); }
| expr LE_OP expr { $$ = make_op(yyscanner, "<=", $1, $3); }
| expr '>' expr { $$ = make_op(yyscanner, "<", $3, $1); }
| expr GE_OP expr { $$ = make_op(yyscanner, "<=", $3, $1); }
| expr '=' expr { $$ = make_op(yyscanner, "=", $1, $3); }
| expr NE_OP expr { $$ = make_op(yyscanner, "<>", $1, $3); }
| expr '&' expr { $$ = make_op(yyscanner, "&", $1, $3); }
| expr '|' expr { $$ = make_op(yyscanner, "|", $1, $3); }
| expr '#' expr { $$ = make_op(yyscanner, "#", $1, $3); }
| expr LS_OP expr { $$ = make_op(yyscanner, "<<", $1, $3); }
| expr RS_OP expr { $$ = make_op(yyscanner, ">>", $1, $3); }
| expr AND_OP expr { $$ = make_op(yyscanner, "!and", $1, $3); }
| expr OR_OP expr { $$ = make_op(yyscanner, "!or", $1, $3); }
/* IS variants */
| expr ISNULL_OP { $$ = make_op(yyscanner, "!is", $1, make_null_constant()); }
| expr NOTNULL_OP {
$$ = make_uop(yyscanner, "!not",
make_op(yyscanner, "!is", $1, make_null_constant()));
}
| expr IS_OP NULL_CONST { $$ = make_op(yyscanner, "!is", $1, make_null_constant()); }
| expr IS_OP NOT_OP NULL_CONST
{
$$ = make_uop(yyscanner, "!not",
make_op(yyscanner, "!is", $1, make_null_constant()));
}
| expr IS_OP BOOLEAN_CONST
{
$$ = make_op(yyscanner, "!is", $1, make_boolean_constant($3));
}
| expr IS_OP NOT_OP BOOLEAN_CONST
{
$$ = make_uop(yyscanner, "!not",
make_op(yyscanner, "!is", $1, make_boolean_constant($4)));
}
/* constants */
| NULL_CONST { $$ = make_null_constant(); }
| BOOLEAN_CONST { $$ = make_boolean_constant($1); }
| INTEGER_CONST { $$ = make_integer_constant($1); }
| DOUBLE_CONST { $$ = make_double_constant($1); }
/* misc */
| VARIABLE { $$ = make_variable($1); }
| function '(' elist ')' { $$ = make_func(yyscanner, $1, $3); }
| case_control { $$ = $1; }
;
when_then_list:
when_then_list WHEN_KW expr THEN_KW expr { $$ = make_elist($5, make_elist($3, $1)); }
| WHEN_KW expr THEN_KW expr { $$ = make_elist($4, make_elist($2, NULL)); }
case_control:
CASE_KW when_then_list END_KW { $$ = make_case(yyscanner, $2, make_null_constant()); }
| CASE_KW when_then_list ELSE_KW expr END_KW { $$ = make_case(yyscanner, $2, $4); }
function: FUNCTION { $$ = find_func(yyscanner, $1); pg_free($1); }
;
%%
static PgBenchExpr *
make_null_constant(void)
{
PgBenchExpr *expr = pg_malloc(sizeof(PgBenchExpr));
expr->etype = ENODE_CONSTANT;
expr->u.constant.type = PGBT_NULL;
expr->u.constant.u.ival = 0;
return expr;
}
static PgBenchExpr *
make_integer_constant(int64 ival)
{
PgBenchExpr *expr = pg_malloc(sizeof(PgBenchExpr));
expr->etype = ENODE_CONSTANT;
expr->u.constant.type = PGBT_INT;
expr->u.constant.u.ival = ival;
return expr;
}
static PgBenchExpr *
make_double_constant(double dval)
{
PgBenchExpr *expr = pg_malloc(sizeof(PgBenchExpr));
expr->etype = ENODE_CONSTANT;
expr->u.constant.type = PGBT_DOUBLE;
expr->u.constant.u.dval = dval;
return expr;
}
static PgBenchExpr *
make_boolean_constant(bool bval)
{
PgBenchExpr *expr = pg_malloc(sizeof(PgBenchExpr));
expr->etype = ENODE_CONSTANT;
expr->u.constant.type = PGBT_BOOLEAN;
expr->u.constant.u.bval = bval;
return expr;
}
static PgBenchExpr *
make_variable(char *varname)
{
PgBenchExpr *expr = pg_malloc(sizeof(PgBenchExpr));
expr->etype = ENODE_VARIABLE;
expr->u.variable.varname = varname;
return expr;
}
/* binary operators */
static PgBenchExpr *
make_op(yyscan_t yyscanner, const char *operator,
PgBenchExpr *lexpr, PgBenchExpr *rexpr)
{
return make_func(yyscanner, find_func(yyscanner, operator),
make_elist(rexpr, make_elist(lexpr, NULL)));
}
/* unary operator */
static PgBenchExpr *
make_uop(yyscan_t yyscanner, const char *operator, PgBenchExpr *expr)
{
return make_func(yyscanner, find_func(yyscanner, operator), make_elist(expr, NULL));
}
/*
* List of available functions:
* - fname: function name, "!..." for special internal functions
* - nargs: number of arguments. Special cases:
* - PGBENCH_NARGS_VARIABLE is a special value for least & greatest
* meaning #args >= 1;
* - PGBENCH_NARGS_CASE is for the "CASE WHEN ..." function, which
* has #args >= 3 and odd;
* - PGBENCH_NARGS_HASH is for hash functions, which have one required
* and one optional argument;
* - tag: function identifier from PgBenchFunction enum
*/
static const struct
{
const char *fname;
int nargs;
PgBenchFunction tag;
} PGBENCH_FUNCTIONS[] =
{
/* parsed as operators, executed as functions */
{
"+", 2, PGBENCH_ADD
},
{
"-", 2, PGBENCH_SUB
},
{
"*", 2, PGBENCH_MUL
},
{
"/", 2, PGBENCH_DIV
},
{
"mod", 2, PGBENCH_MOD
},
/* actual functions */
{
"abs", 1, PGBENCH_ABS
},
{
"least", PGBENCH_NARGS_VARIABLE, PGBENCH_LEAST
},
{
"greatest", PGBENCH_NARGS_VARIABLE, PGBENCH_GREATEST
},
{
"debug", 1, PGBENCH_DEBUG
},
{
"pi", 0, PGBENCH_PI
},
{
"sqrt", 1, PGBENCH_SQRT
},
{
"ln", 1, PGBENCH_LN
},
{
"exp", 1, PGBENCH_EXP
},
{
"int", 1, PGBENCH_INT
},
{
"double", 1, PGBENCH_DOUBLE
},
{
"random", 2, PGBENCH_RANDOM
},
{
"random_gaussian", 3, PGBENCH_RANDOM_GAUSSIAN
},
{
"random_exponential", 3, PGBENCH_RANDOM_EXPONENTIAL
},
{
"random_zipfian", 3, PGBENCH_RANDOM_ZIPFIAN
},
{
"pow", 2, PGBENCH_POW
},
{
"power", 2, PGBENCH_POW
},
/* logical operators */
{
"!and", 2, PGBENCH_AND
},
{
"!or", 2, PGBENCH_OR
},
{
"!not", 1, PGBENCH_NOT
},
/* bitwise integer operators */
{
"&", 2, PGBENCH_BITAND
},
{
"|", 2, PGBENCH_BITOR
},
{
"#", 2, PGBENCH_BITXOR
},
{
"<<", 2, PGBENCH_LSHIFT
},
{
">>", 2, PGBENCH_RSHIFT
},
/* comparison operators */
{
"=", 2, PGBENCH_EQ
},
{
"<>", 2, PGBENCH_NE
},
{
"<=", 2, PGBENCH_LE
},
{
"<", 2, PGBENCH_LT
},
{
"!is", 2, PGBENCH_IS
},
/* "case when ... then ... else ... end" construction */
{
"!case_end", PGBENCH_NARGS_CASE, PGBENCH_CASE
},
{
"hash", PGBENCH_NARGS_HASH, PGBENCH_HASH_MURMUR2
},
{
"hash_murmur2", PGBENCH_NARGS_HASH, PGBENCH_HASH_MURMUR2
},
{
"hash_fnv1a", PGBENCH_NARGS_HASH, PGBENCH_HASH_FNV1A
},
/* keep as last array element */
{
NULL, 0, 0
}
};
/*
* Find a function from its name
*
* return the index of the function from the PGBENCH_FUNCTIONS array
* or fail if the function is unknown.
*/
static int
find_func(yyscan_t yyscanner, const char *fname)
{
int i = 0;
while (PGBENCH_FUNCTIONS[i].fname)
{
if (pg_strcasecmp(fname, PGBENCH_FUNCTIONS[i].fname) == 0)
return i;
i++;
}
expr_yyerror_more(yyscanner, "unexpected function name", fname);
/* not reached */
return -1;
}
/* Expression linked list builder */
static PgBenchExprList *
make_elist(PgBenchExpr *expr, PgBenchExprList *list)
{
PgBenchExprLink *cons;
if (list == NULL)
{
list = pg_malloc(sizeof(PgBenchExprList));
list->head = NULL;
list->tail = NULL;
}
cons = pg_malloc(sizeof(PgBenchExprLink));
cons->expr = expr;
cons->next = NULL;
if (list->head == NULL)
list->head = cons;
else
list->tail->next = cons;
list->tail = cons;
return list;
}
/* Return the length of an expression list */
static int
elist_length(PgBenchExprList *list)
{
PgBenchExprLink *link = list != NULL ? list->head : NULL;
int len = 0;
for (; link != NULL; link = link->next)
len++;
return len;
}
/* Build function call expression */
static PgBenchExpr *
make_func(yyscan_t yyscanner, int fnumber, PgBenchExprList *args)
{
int len = elist_length(args);
PgBenchExpr *expr = pg_malloc(sizeof(PgBenchExpr));
Assert(fnumber >= 0);
/* validate arguments number including few special cases */
switch (PGBENCH_FUNCTIONS[fnumber].nargs)
{
/* check at least one arg for least & greatest */
case PGBENCH_NARGS_VARIABLE:
if (len == 0)
expr_yyerror_more(yyscanner, "at least one argument expected",
PGBENCH_FUNCTIONS[fnumber].fname);
break;
/* case (when ... then ...)+ (else ...)? end */
case PGBENCH_NARGS_CASE:
/* 'else' branch is always present, but could be a NULL-constant */
if (len < 3 || len % 2 != 1)
expr_yyerror_more(yyscanner,
"odd and >= 3 number of arguments expected",
"case control structure");
break;
/* hash functions with optional seed argument */
case PGBENCH_NARGS_HASH:
if (len < 1 || len > 2)
expr_yyerror_more(yyscanner, "unexpected number of arguments",
PGBENCH_FUNCTIONS[fnumber].fname);
if (len == 1)
{
PgBenchExpr *var = make_variable("default_seed");
args = make_elist(var, args);
}
break;
/* common case: positive arguments number */
default:
Assert(PGBENCH_FUNCTIONS[fnumber].nargs >= 0);
if (PGBENCH_FUNCTIONS[fnumber].nargs != len)
expr_yyerror_more(yyscanner, "unexpected number of arguments",
PGBENCH_FUNCTIONS[fnumber].fname);
}
expr->etype = ENODE_FUNCTION;
expr->u.function.function = PGBENCH_FUNCTIONS[fnumber].tag;
/* only the link is used, the head/tail is not useful anymore */
expr->u.function.args = args != NULL ? args->head : NULL;
if (args)
pg_free(args);
return expr;
}
static PgBenchExpr *
make_case(yyscan_t yyscanner, PgBenchExprList *when_then_list, PgBenchExpr *else_part)
{
return make_func(yyscanner,
find_func(yyscanner, "!case_end"),
make_elist(else_part, when_then_list));
}
/*
* exprscan.l is compiled as part of exprparse.y. Currently, this is
* unavoidable because exprparse does not create a .h file to export
* its token symbols. If these files ever grow large enough to be
* worth compiling separately, that could be fixed; but for now it
* seems like useless complication.
*/
/* First, get rid of "#define yyscan_t" from pgbench.h */
#undef yyscan_t
/* ... and the yylval macro, which flex will have its own definition for */
#undef yylval
#include "exprscan.c"
| Yacc | 5 | bradfordb-vmware/gpdb | src/bin/pgbench/exprparse.y | [
"PostgreSQL",
"Apache-2.0"
] |
-- Macro Scripts File
-- Created: Nov 17 1998
-- Author: Frank DeLise
-- Macro Scripts for Shapes
--***********************************************************************************************
-- MODIFY THIS AT YOUR OWN RISK
macroScript Lines
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Line Shape"
buttontext:"Line"
Icon:#("Splines",1)
(
on execute do StartObjectCreation Line
on isChecked return (mcrUtils.IsCreating Line)
)
macroScript Circle
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Circle Shape"
buttontext:"Circle"
Icon:#("Splines",2)
(
on execute do StartObjectCreation Circle
on isChecked return (mcrUtils.IsCreating Circle)
)
macroScript Arc
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Arc Shape"
buttontext:"Arc"
Icon:#("Splines",3)
(
on execute do StartObjectCreation Arc
on isChecked return (mcrUtils.IsCreating Arc)
)
macroScript Ngon
category:"Shapes"
internalcategory:"Shapes"
tooltip:"NGon Shape"
buttontext:"NGon"
Icon:#("Splines",4)
(
on execute do StartObjectCreation Ngon
on isChecked return (mcrUtils.IsCreating Ngon)
)
macroScript Text
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Text Shape"
buttontext:"Text"
Icon:#("Splines",5)
(
on execute do StartObjectCreation Text
on isChecked return (mcrUtils.IsCreating Text)
)
macroScript Rectangle
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Rectangle Shape"
buttontext:"Rectangle"
Icon:#("Splines",7)
(
on execute do StartObjectCreation Rectangle
on isChecked return (mcrUtils.IsCreating Rectangle)
)
macroScript Ellipse
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Ellipse Shape"
buttontext:"Ellipse"
Icon:#("Splines",8)
(
on execute do StartObjectCreation Ellipse
on isChecked return (mcrUtils.IsCreating Ellipse)
)
macroScript Donut
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Donut Shape"
buttontext:"Donut"
Icon:#("Splines",9)
(
on execute do StartObjectCreation Donut
on isChecked return (mcrUtils.IsCreating Donut)
)
macroScript Star
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Star Shape"
buttontext:"Star"
Icon:#("Splines",10)
(
on execute do StartObjectCreation Star
on isChecked return (mcrUtils.IsCreating Star)
)
macroScript Helix
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Helix Shape"
buttontext:"Helix"
Icon:#("Splines",11)
(
on execute do StartObjectCreation Helix
on isChecked return (mcrUtils.IsCreating Helix)
)
macroScript Section
category:"Shapes"
internalcategory:"Shapes"
tooltip:"Section Shape"
buttontext:"Section "
Icon:#("Splines",6)
(
on execute do StartObjectCreation Section
on isChecked return (mcrUtils.IsCreating Section)
)
| MAXScript | 3 | 89096000/MaxScript | Modelling/softinstance/treeview/icons/Macro_Shapes.mcr | [
"MIT"
] |
//This file is part of "GZE - GroundZero Engine"
//The permisive licence allow to use GZE for free or commercial project (Apache License, Version 2.0).
//For conditions of distribution and use, see copyright notice in Licence.txt, this license must be included with any distribution of the code.
package {
import GZ.Base.Math.Math;
/**
* @author Maeiky
*/
public vector Vec4 {
public var nX : Number = 0;
public var x : Number = 0;
public var y : Number = 0;
public var z : Number = 0;
public var w : Number = 0;
public function Vec4(x : Number = 0, y : Number = 0, z : Number = 0, w : Number = 0):Void {
}
}
}
| Redcode | 2 | VLiance/GZE | src/Lib_GZ/Base/Container/Vector/Vec4.cw | [
"Apache-2.0"
] |
module Language.PureScript.CST.Flatten where
import Prelude
import Data.DList (DList)
import Language.PureScript.CST.Types
import Language.PureScript.CST.Positions
flattenModule :: Module a -> DList SourceToken
flattenModule m@(Module _ a b c d e f g) =
pure a <>
flattenName b <>
foldMap (flattenWrapped (flattenSeparated flattenExport)) c <>
pure d <>
foldMap flattenImportDecl e <>
foldMap flattenDeclaration f <>
pure (SourceToken (TokenAnn eofRange g []) TokEof)
where
(_, endTkn) = moduleRange m
eofPos = advanceLeading (srcEnd (srcRange endTkn)) g
eofRange = SourceRange eofPos eofPos
flattenDataHead :: DataHead a -> DList SourceToken
flattenDataHead (DataHead a b c) = pure a <> flattenName b <> foldMap flattenTypeVarBinding c
flattenDataCtor :: DataCtor a -> DList SourceToken
flattenDataCtor (DataCtor _ a b) = flattenName a <> foldMap flattenType b
flattenClassHead :: ClassHead a -> DList SourceToken
flattenClassHead (ClassHead a b c d e) =
pure a <>
foldMap (\(f, g) -> flattenOneOrDelimited flattenConstraint f <> pure g) b <>
flattenName c <>
foldMap flattenTypeVarBinding d <>
foldMap (\(f, g) -> pure f <> flattenSeparated flattenClassFundep g) e
flattenClassFundep :: ClassFundep -> DList SourceToken
flattenClassFundep = \case
FundepDetermined a b ->
pure a <> foldMap flattenName b
FundepDetermines a b c ->
foldMap flattenName a <> pure b <> foldMap flattenName c
flattenInstance :: Instance a -> DList SourceToken
flattenInstance (Instance a b) =
flattenInstanceHead a <> foldMap (\(c, d) -> pure c <> foldMap flattenInstanceBinding d) b
flattenInstanceHead :: InstanceHead a -> DList SourceToken
flattenInstanceHead (InstanceHead a b c d e) =
pure a <>
foldMap (\(n, s) -> flattenName n <> pure s) b <>
foldMap (\(g, h) -> flattenOneOrDelimited flattenConstraint g <> pure h) c <>
flattenQualifiedName d <>
foldMap flattenType e
flattenInstanceBinding :: InstanceBinding a -> DList SourceToken
flattenInstanceBinding = \case
InstanceBindingSignature _ a -> flattenLabeled flattenName flattenType a
InstanceBindingName _ a -> flattenValueBindingFields a
flattenValueBindingFields :: ValueBindingFields a -> DList SourceToken
flattenValueBindingFields (ValueBindingFields a b c) =
flattenName a <>
foldMap flattenBinder b <>
flattenGuarded c
flattenBinder :: Binder a -> DList SourceToken
flattenBinder = \case
BinderWildcard _ a -> pure a
BinderVar _ a -> flattenName a
BinderNamed _ a b c -> flattenName a <> pure b <> flattenBinder c
BinderConstructor _ a b -> flattenQualifiedName a <> foldMap flattenBinder b
BinderBoolean _ a _ -> pure a
BinderChar _ a _ -> pure a
BinderString _ a _ -> pure a
BinderNumber _ a b _ -> foldMap pure a <> pure b
BinderArray _ a -> flattenWrapped (foldMap (flattenSeparated flattenBinder)) a
BinderRecord _ a ->
flattenWrapped (foldMap (flattenSeparated (flattenRecordLabeled flattenBinder))) a
BinderParens _ a -> flattenWrapped flattenBinder a
BinderTyped _ a b c -> flattenBinder a <> pure b <> flattenType c
BinderOp _ a b c -> flattenBinder a <> flattenQualifiedName b <> flattenBinder c
flattenRecordLabeled :: (a -> DList SourceToken) -> RecordLabeled a -> DList SourceToken
flattenRecordLabeled f = \case
RecordPun a -> flattenName a
RecordField a b c -> flattenLabel a <> pure b <> f c
flattenRecordAccessor :: RecordAccessor a -> DList SourceToken
flattenRecordAccessor (RecordAccessor a b c) =
flattenExpr a <> pure b <> flattenSeparated flattenLabel c
flattenRecordUpdate :: RecordUpdate a -> DList SourceToken
flattenRecordUpdate = \case
RecordUpdateLeaf a b c -> flattenLabel a <> pure b <> flattenExpr c
RecordUpdateBranch a b ->
flattenLabel a <> flattenWrapped (flattenSeparated flattenRecordUpdate) b
flattenLambda :: Lambda a -> DList SourceToken
flattenLambda (Lambda a b c d) =
pure a <> foldMap flattenBinder b <> pure c <> flattenExpr d
flattenIfThenElse :: IfThenElse a -> DList SourceToken
flattenIfThenElse (IfThenElse a b c d e f) =
pure a <> flattenExpr b <> pure c <> flattenExpr d <> pure e <> flattenExpr f
flattenCaseOf :: CaseOf a -> DList SourceToken
flattenCaseOf (CaseOf a b c d) =
pure a <>
flattenSeparated flattenExpr b <>
pure c <>
foldMap (\(e, f) -> flattenSeparated flattenBinder e <> flattenGuarded f) d
flattenLetIn :: LetIn a -> DList SourceToken
flattenLetIn (LetIn a b c d) =
pure a <> foldMap flattenLetBinding b <> pure c <> flattenExpr d
flattenDoBlock :: DoBlock a -> DList SourceToken
flattenDoBlock (DoBlock a b) =
pure a <> foldMap flattenDoStatement b
flattenAdoBlock :: AdoBlock a -> DList SourceToken
flattenAdoBlock (AdoBlock a b c d) =
pure a <> foldMap flattenDoStatement b <> pure c <> flattenExpr d
flattenDoStatement :: DoStatement a -> DList SourceToken
flattenDoStatement = \case
DoLet a b -> pure a <> foldMap flattenLetBinding b
DoDiscard a -> flattenExpr a
DoBind a b c -> flattenBinder a <> pure b <> flattenExpr c
flattenExpr :: Expr a -> DList SourceToken
flattenExpr = \case
ExprHole _ a -> flattenName a
ExprSection _ a -> pure a
ExprIdent _ a -> flattenQualifiedName a
ExprConstructor _ a -> flattenQualifiedName a
ExprBoolean _ a _ -> pure a
ExprChar _ a _ -> pure a
ExprString _ a _ -> pure a
ExprNumber _ a _ -> pure a
ExprArray _ a -> flattenWrapped (foldMap (flattenSeparated flattenExpr)) a
ExprRecord _ a ->
flattenWrapped (foldMap (flattenSeparated (flattenRecordLabeled flattenExpr))) a
ExprParens _ a -> flattenWrapped flattenExpr a
ExprTyped _ a b c -> flattenExpr a <> pure b <> flattenType c
ExprInfix _ a b c -> flattenExpr a <> flattenWrapped flattenExpr b <> flattenExpr c
ExprOp _ a b c -> flattenExpr a <> flattenQualifiedName b <> flattenExpr c
ExprOpName _ a -> flattenQualifiedName a
ExprNegate _ a b -> pure a <> flattenExpr b
ExprRecordAccessor _ a -> flattenRecordAccessor a
ExprRecordUpdate _ a b -> flattenExpr a <> flattenWrapped (flattenSeparated flattenRecordUpdate) b
ExprApp _ a b -> flattenExpr a <> flattenExpr b
ExprLambda _ a -> flattenLambda a
ExprIf _ a -> flattenIfThenElse a
ExprCase _ a -> flattenCaseOf a
ExprLet _ a -> flattenLetIn a
ExprDo _ a -> flattenDoBlock a
ExprAdo _ a -> flattenAdoBlock a
flattenLetBinding :: LetBinding a -> DList SourceToken
flattenLetBinding = \case
LetBindingSignature _ a -> flattenLabeled flattenName flattenType a
LetBindingName _ a -> flattenValueBindingFields a
LetBindingPattern _ a b c -> flattenBinder a <> pure b <> flattenWhere c
flattenWhere :: Where a -> DList SourceToken
flattenWhere (Where a b) =
flattenExpr a <> foldMap (\(c, d) -> pure c <> foldMap flattenLetBinding d) b
flattenPatternGuard :: PatternGuard a -> DList SourceToken
flattenPatternGuard (PatternGuard a b) =
foldMap (\(c, d) -> flattenBinder c <> pure d) a <> flattenExpr b
flattenGuardedExpr :: GuardedExpr a -> DList SourceToken
flattenGuardedExpr (GuardedExpr a b c d) =
pure a <>
flattenSeparated flattenPatternGuard b <>
pure c <>
flattenWhere d
flattenGuarded :: Guarded a -> DList SourceToken
flattenGuarded = \case
Unconditional a b -> pure a <> flattenWhere b
Guarded a -> foldMap flattenGuardedExpr a
flattenFixityFields :: FixityFields -> DList SourceToken
flattenFixityFields (FixityFields (a, _) (b, _) c) =
pure a <> pure b <> flattenFixityOp c
flattenFixityOp :: FixityOp -> DList SourceToken
flattenFixityOp = \case
FixityValue a b c -> flattenQualifiedName a <> pure b <> flattenName c
FixityType a b c d -> pure a <> flattenQualifiedName b <> pure c <> flattenName d
flattenForeign :: Foreign a -> DList SourceToken
flattenForeign = \case
ForeignValue a -> flattenLabeled flattenName flattenType a
ForeignData a b -> pure a <> flattenLabeled flattenName flattenType b
ForeignKind a b -> pure a <> flattenName b
flattenRole :: Role -> DList SourceToken
flattenRole = pure . roleTok
flattenDeclaration :: Declaration a -> DList SourceToken
flattenDeclaration = \case
DeclData _ a b ->
flattenDataHead a <>
foldMap (\(t, cs) -> pure t <> flattenSeparated flattenDataCtor cs) b
DeclType _ a b c ->flattenDataHead a <> pure b <> flattenType c
DeclNewtype _ a b c d -> flattenDataHead a <> pure b <> flattenName c <> flattenType d
DeclClass _ a b ->
flattenClassHead a <>
foldMap (\(c, d) -> pure c <> foldMap (flattenLabeled flattenName flattenType) d) b
DeclInstanceChain _ a -> flattenSeparated flattenInstance a
DeclDerive _ a b c -> pure a <> foldMap pure b <> flattenInstanceHead c
DeclKindSignature _ a b -> pure a <> flattenLabeled flattenName flattenType b
DeclSignature _ a -> flattenLabeled flattenName flattenType a
DeclFixity _ a -> flattenFixityFields a
DeclForeign _ a b c -> pure a <> pure b <> flattenForeign c
DeclRole _ a b c d -> pure a <> pure b <> flattenName c <> foldMap flattenRole d
DeclValue _ a -> flattenValueBindingFields a
flattenQualifiedName :: QualifiedName a -> DList SourceToken
flattenQualifiedName = pure . qualTok
flattenName :: Name a -> DList SourceToken
flattenName = pure . nameTok
flattenLabel :: Label -> DList SourceToken
flattenLabel = pure . lblTok
flattenExport :: Export a -> DList SourceToken
flattenExport = \case
ExportValue _ n -> flattenName n
ExportOp _ n -> flattenName n
ExportType _ n dms -> flattenName n <> foldMap flattenDataMembers dms
ExportTypeOp _ t n -> pure t <> flattenName n
ExportClass _ t n -> pure t <> flattenName n
ExportKind _ t n -> pure t <> flattenName n
ExportModule _ t n -> pure t <> flattenName n
flattenDataMembers :: DataMembers a -> DList SourceToken
flattenDataMembers = \case
DataAll _ t -> pure t
DataEnumerated _ ns -> flattenWrapped (foldMap (flattenSeparated flattenName)) ns
flattenImportDecl :: ImportDecl a -> DList SourceToken
flattenImportDecl (ImportDecl _ a b c d) =
pure a <>
flattenName b <>
foldMap (\(mt, is) ->
foldMap pure mt <> flattenWrapped (flattenSeparated flattenImport) is) c <>
foldMap (\(t, n) -> pure t <> flattenName n) d
flattenImport :: Import a -> DList SourceToken
flattenImport = \case
ImportValue _ n -> flattenName n
ImportOp _ n -> flattenName n
ImportType _ n dms -> flattenName n <> foldMap flattenDataMembers dms
ImportTypeOp _ t n -> pure t <> flattenName n
ImportClass _ t n -> pure t <> flattenName n
ImportKind _ t n -> pure t <> flattenName n
flattenWrapped :: (a -> DList SourceToken) -> Wrapped a -> DList SourceToken
flattenWrapped k (Wrapped a b c) = pure a <> k b <> pure c
flattenSeparated :: (a -> DList SourceToken) -> Separated a -> DList SourceToken
flattenSeparated k (Separated a b) = k a <> foldMap (\(c, d) -> pure c <> k d) b
flattenOneOrDelimited
:: (a -> DList SourceToken) -> OneOrDelimited a -> DList SourceToken
flattenOneOrDelimited f = \case
One a -> f a
Many a -> flattenWrapped (flattenSeparated f) a
flattenLabeled :: (a -> DList SourceToken) -> (b -> DList SourceToken) -> Labeled a b -> DList SourceToken
flattenLabeled ka kc (Labeled a b c) = ka a <> pure b <> kc c
flattenType :: Type a -> DList SourceToken
flattenType = \case
TypeVar _ a -> pure $ nameTok a
TypeConstructor _ a -> pure $ qualTok a
TypeWildcard _ a -> pure a
TypeHole _ a -> pure $ nameTok a
TypeString _ a _ -> pure a
TypeRow _ a -> flattenWrapped flattenRow a
TypeRecord _ a -> flattenWrapped flattenRow a
TypeForall _ a b c d -> pure a <> foldMap flattenTypeVarBinding b <> pure c <> flattenType d
TypeKinded _ a b c -> flattenType a <> pure b <> flattenType c
TypeApp _ a b -> flattenType a <> flattenType b
TypeOp _ a b c -> flattenType a <> pure (qualTok b) <> flattenType c
TypeOpName _ a -> pure $ qualTok a
TypeArr _ a b c -> flattenType a <> pure b <> flattenType c
TypeArrName _ a -> pure a
TypeConstrained _ a b c -> flattenConstraint a <> pure b <> flattenType c
TypeParens _ a -> flattenWrapped flattenType a
TypeUnaryRow _ a b -> pure a <> flattenType b
flattenRow :: Row a -> DList SourceToken
flattenRow (Row lbls tl) =
foldMap (flattenSeparated (flattenLabeled (pure . lblTok) flattenType)) lbls
<> foldMap (\(a, b) -> pure a <> flattenType b) tl
flattenTypeVarBinding :: TypeVarBinding a -> DList SourceToken
flattenTypeVarBinding = \case
TypeVarKinded a -> flattenWrapped (flattenLabeled (pure . nameTok) flattenType) a
TypeVarName a -> pure $ nameTok a
flattenConstraint :: Constraint a -> DList SourceToken
flattenConstraint = \case
Constraint _ a b -> pure (qualTok a) <> foldMap flattenType b
ConstraintParens _ a -> flattenWrapped flattenConstraint a
| Haskell | 4 | dunhamsteve/purescript | lib/purescript-cst/src/Language/PureScript/CST/Flatten.hs | [
"BSD-3-Clause"
] |
particle_system snow
{
src = "assets/particles/snowflake.png"
blendmode = add
gravity = 0,-1,0
velocity = -2.4,-0.1,0
lifetime = 5
lifetime_variance = 0
colour = 255,255,255,255
rotation_speed = 5
scale_affector = 0
size = 0.03
emit_rate = 30
spawn_radius = 0.8
release_count = 0
} | Component Pascal | 4 | fallahn/crogine | samples/threat_level/assets/particles/snow.cps | [
"FTL",
"Zlib"
] |
ScalaDependencyInjection:Dependency Injection with Guice
ScalaCompileTimeDependencyInjection:Compile Time Dependency Injection | TeX | 2 | AurelienRichez/playframework | documentation/manual/working/scalaGuide/main/dependencyinjection/index.toc | [
"Apache-2.0"
] |
/* Copyright 2021 The TensorFlow Authors. 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.
==============================================================================*/
#include <memory>
#include <set>
#include "src/libfuzzer/libfuzzer_macro.h" // from @com_google_libprotobuf_mutator
#include "tensorflow/c/checkpoint_reader.h"
#include "tensorflow/c/tf_status.h"
#include "tensorflow/c/tf_status_helper.h"
#include "tensorflow/core/framework/resource_handle.h"
#include "tensorflow/core/framework/tensor_shape.h"
#include "tensorflow/core/framework/types.h"
#include "tensorflow/core/framework/types.pb.h"
#include "tensorflow/core/framework/variant.h"
#include "tensorflow/core/lib/io/table_builder.h"
#include "tensorflow/core/lib/io/table_options.h"
#include "tensorflow/core/platform/env.h"
#include "tensorflow/core/platform/file_system.h"
#include "tensorflow/core/platform/status.h"
#include "tensorflow/core/platform/stringpiece.h"
#include "tensorflow/core/platform/tstring.h"
#include "tensorflow/core/util/saved_tensor_slice_util.h"
#include "tensorflow/security/fuzzing/checkpoint_reader_fuzz_input.pb.h"
// This is a fuzzer for tensorflow::checkpoint::CheckpointReader. LevelDB
// reading and proto parsing are already fuzz-tested, so there's no need to test
// them here.
namespace {
using ::tensorflow::checkpoint::EncodeTensorNameSlice;
using ::tensorflow::checkpoint::kSavedTensorSlicesKey;
void CreateCheckpoint(const std::string& filename,
const tensorflow::CheckpointReaderFuzzInput& contents) {
std::unique_ptr<tensorflow::WritableFile> writable_file;
TF_CHECK_OK(
tensorflow::Env::Default()->NewWritableFile(filename, &writable_file));
tensorflow::table::Options options;
options.compression = tensorflow::table::kNoCompression;
tensorflow::table::TableBuilder builder(options, writable_file.get());
// Entries must be added in sorted order.
{
tensorflow::SavedTensorSlices sts;
*sts.mutable_meta() = contents.meta();
builder.Add(kSavedTensorSlicesKey, sts.SerializeAsString());
}
std::map<std::string, const tensorflow::SavedSlice*> entries;
for (const tensorflow::SavedSlice& saved_slice : contents.data()) {
// The encoded tensor slice name is not included in the fuzz input since
// it's difficult for the fuzzer to find the proper encoding, resulting in
// lots of fruitless inputs with mismatched keys. Note that TensorSlice will
// not currently crash with unverified data so long as it's only used by
// EncodeTensorNameSlice.
tensorflow::TensorSlice slice(saved_slice.slice());
entries.insert(
{EncodeTensorNameSlice(saved_slice.name(), slice), &saved_slice});
}
tensorflow::SavedTensorSlices sts;
for (const auto& entry : entries) {
*sts.mutable_data() = *entry.second;
builder.Add(entry.first, sts.SerializeAsString());
}
TF_CHECK_OK(builder.Finish());
TF_CHECK_OK(writable_file->Close());
}
int GetDataTypeSize(tensorflow::DataType data_type) {
// tensorflow::DataTypeSize doesn't support several types.
switch (data_type) {
case tensorflow::DT_STRING:
return sizeof(tensorflow::tstring);
case tensorflow::DT_VARIANT:
return sizeof(tensorflow::Variant);
case tensorflow::DT_RESOURCE:
return sizeof(tensorflow::ResourceHandle);
default:
return tensorflow::DataTypeSize(data_type);
}
}
DEFINE_PROTO_FUZZER(const tensorflow::CheckpointReaderFuzzInput& input) {
// Using a ram file avoids disk I/O, speeding up the fuzzer.
const std::string filename = "ram:///checkpoint";
CreateCheckpoint(filename, input);
tensorflow::TF_StatusPtr status(TF_NewStatus());
tensorflow::checkpoint::CheckpointReader reader(filename, status.get());
if (TF_GetCode(status.get()) != TF_OK) return;
// Load each tensor in the input.
std::unique_ptr<tensorflow::Tensor> tensor;
for (const auto& entry : input.meta().tensor()) {
// Fuzz tests have a memory limit of 2 GB; skipping tensors over 1 GB is
// sufficient to avoid OOMs.
static constexpr double kMaxTensorSize = 1e9;
auto data_type = reader.GetVariableToDataTypeMap().find(entry.name());
auto shape = reader.GetVariableToShapeMap().find(entry.name());
if (data_type != reader.GetVariableToDataTypeMap().end() &&
shape != reader.GetVariableToShapeMap().end() &&
static_cast<double>(GetDataTypeSize(data_type->second)) *
shape->second.num_elements() <
kMaxTensorSize) {
reader.GetTensor(entry.name(), &tensor, status.get());
}
}
}
} // namespace
| C++ | 4 | EricRemmerswaal/tensorflow | tensorflow/security/fuzzing/checkpoint_reader_fuzz.cc | [
"Apache-2.0"
] |
// Check that `where Self::Output: Copy` is turned into a bound on `Op::Output`.
//check-pass
trait Op
where
Self::Output: Copy,
{
type Output;
}
fn duplicate<T: Op>(x: T::Output) -> (T::Output, T::Output) {
(x, x)
}
fn main() {}
| Rust | 4 | Eric-Arellano/rust | src/test/ui/associated-type-bounds/assoc-type-bound-through-where-clause.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
<cfcomponent>
<cffunction name="init">
<cfscript>
my = structnew(); // cflint ignore:MISSING_VAR
my.somekey = "";
</cfscript>
</cffunction>
</cfcomponent> | ColdFusion CFC | 4 | tonym128/CFLint | src/test/resources/com/cflint/tests/Ignores/ignore_489.cfc | [
"BSD-3-Clause"
] |
@echo off
setlocal
for /f "delims=" %%i in ('rustc --print=sysroot') do set rustc_sysroot=%%i
set rust_etc=%rustc_sysroot%\lib\rustlib\etc
windbg -c ".nvload %rust_etc%\intrinsic.natvis; .nvload %rust_etc%\liballoc.natvis; .nvload %rust_etc%\libcore.natvis;" %*
| Batchfile | 3 | Eric-Arellano/rust | src/etc/rust-windbg.cmd | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
{:objects
{:Query
{:fields
{:hello {:type (non-null String)
:resolve :hello}}}}} | edn | 4 | hagenek/lacinia | dev-resources/non-chatty-library-failures.edn | [
"Apache-2.0"
] |
#![feature(let_else)]
// Slightly different from explicit-mut-annotated -- this won't show an error until borrowck.
// Should it show a type error instead?
fn main() {
let Some(n): &mut Option<i32> = &mut &Some(5i32) else {
//~^ ERROR cannot borrow data in a `&` reference as mutable
return
};
*n += 1;
let _ = n;
}
| Rust | 3 | ohno418/rust | src/test/ui/let-else/let-else-binding-explicit-mut-borrow.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
"""The Microsoft Teams component."""
| Python | 0 | domwillcode/home-assistant | homeassistant/components/msteams/__init__.py | [
"Apache-2.0"
] |
/*
* Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <bits/stdint.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
typedef uint16_t n_short;
typedef uint32_t n_long;
typedef uint32_t n_time;
__END_DECLS
| C | 4 | r00ster91/serenity | Userland/Libraries/LibC/netinet/in_systm.h | [
"BSD-2-Clause"
] |
class Bignum {
"""
Class for large integer values in Fancy.
"""
include: Number
ruby_aliases: [ '==, '-, '+, '*, '/, '<, '>, '<=, '>=, '===, '**, '&, '<<, '>> ]
forwards_unary_ruby_methods
alias_method: 'to_s: for: 'to_s
alias_method: 'modulo: for: 'modulo
alias_method: ":%" for: "modulo:" # prepend with : so we dont overwrite ruby's % operator
alias_method: 'div: for: 'div
}
| Fancy | 4 | bakkdoor/fancy | lib/rbx/bignum.fy | [
"BSD-3-Clause"
] |
# Dict Literals and Line Breaking
var d1 = {
}
var d2 = {}
var d3 = {name: 'bob'}
var d4 = {
name: 'bob'}
var d5 = {name: 'bob'
}
var d6 = {name: 'bob',
}
var commas0 = {
name: 'bob'
age: 10
}
var commas1 = {
name: 'bob',
age: 10
}
var commas2 = {
name: 'bob',
age: 10,
}
var lines = {
# Continuation valid
name: \
bob
}
| Tea | 3 | Schweinepriester/oil | tea/testdata/dict.tea | [
"Apache-2.0"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- generated with COPASI 4.23 (Build 178) (http://www.copasi.org) at 2018-03-30 20:43:02 UTC -->
<?oxygen RNGSchema="http://www.copasi.org/static/schema/CopasiML.rng" type="xml"?>
<COPASI xmlns="http://www.copasi.org/static/schema" versionMajor="4" versionMinor="23" versionDevel="178" copasiSourcesModified="0">
<ListOfFunctions>
<Function key="Function_13" name="Mass action (irreversible)" type="MassAction" reversible="false">
<MiriamAnnotation>
<rdf:RDF xmlns:CopasiMT="http://www.copasi.org/RDF/MiriamTerms#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#Function_13">
<CopasiMT:is rdf:resource="urn:miriam:obo.sbo:SBO:0000041" />
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Comment>
<body xmlns="http://www.w3.org/1999/xhtml">
<b>Mass action rate law for first order irreversible reactions</b>
<p>
Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant.
</p>
</body>
</Comment>
<Expression>
k1*PRODUCT<substrate_i>
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_80" name="k1" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_81" name="substrate" order="1" role="substrate"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_14" name="Mass action (reversible)" type="MassAction" reversible="true">
<MiriamAnnotation>
<rdf:RDF xmlns:CopasiMT="http://www.copasi.org/RDF/MiriamTerms#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#Function_14">
<CopasiMT:is rdf:resource="urn:miriam:obo.sbo:SBO:0000042" />
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Comment>
<body xmlns="http://www.w3.org/1999/xhtml">
<b>Mass action rate law for reversible reactions</b>
<p>
Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does include a reverse process that creates the reactants from the products.
</p>
</body>
</Comment>
<Expression>
k1*PRODUCT<substrate_i>-k2*PRODUCT<product_j>
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_69" name="k1" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_68" name="substrate" order="1" role="substrate"/>
<ParameterDescription key="FunctionParameter_78" name="k2" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_79" name="product" order="3" role="product"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_49" name="Catalytic activation (irrev)_1" type="UserDefined" reversible="false">
<Expression>
IKKb_active_phosphorylation_vmax*s14*TNFa_TNFR1_EL/((IKKb_active_phosphorylation_kM+s14)*(IKKb_active_phosphorylation_kA+TNFa_TNFR1_EL))
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_388" name="IKKb_active_phosphorylation_kA" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_387" name="IKKb_active_phosphorylation_kM" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_386" name="IKKb_active_phosphorylation_vmax" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_385" name="TNFa_TNFR1_EL" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_384" name="s14" order="4" role="substrate"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_50" name="Henri-Michaelis-Menten (irreversible)_1" type="UserDefined" reversible="false">
<Expression>
IkBa_phosphorylation_vmax*IkBa_cytoplasm/(IkBa_phosphorylation_kM+IkBa_cytoplasm)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_379" name="IkBa_cytoplasm" order="0" role="substrate"/>
<ParameterDescription key="FunctionParameter_380" name="IkBa_phosphorylation_kM" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_381" name="IkBa_phosphorylation_vmax" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_51" name="Henri-Michaelis-Menten (irreversible)_2" type="UserDefined" reversible="false">
<Expression>
IkBa_translation_vmax*IkBa_mRNA_cytoplasm/(IkBa_translation_Km+IkBa_mRNA_cytoplasm)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_378" name="IkBa_mRNA_cytoplasm" order="0" role="substrate"/>
<ParameterDescription key="FunctionParameter_383" name="IkBa_translation_Km" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_382" name="IkBa_translation_vmax" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_52" name="Henri-Michaelis-Menten (irreversible)_3" type="UserDefined" reversible="false">
<Expression>
JNK_active_phosphorylation_vmax*JNK/(JNK_active_phoshorylation_Km+JNK)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_375" name="JNK" order="0" role="substrate"/>
<ParameterDescription key="FunctionParameter_376" name="JNK_active_phoshorylation_Km" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_377" name="JNK_active_phosphorylation_vmax" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_53" name="Henri-Michaelis-Menten (irreversible)_4" type="UserDefined" reversible="false">
<Expression>
MSK1_activation_vmax*MSK1/(MSK1_activation_kM+MSK1)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_372" name="MSK1" order="0" role="substrate"/>
<ParameterDescription key="FunctionParameter_373" name="MSK1_activation_kM" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_374" name="MSK1_activation_vmax" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_54" name="Henri-Michaelis-Menten (irreversible)_5" type="UserDefined" reversible="false">
<Expression>
p38_active_phosphorylation_vmax*p38/(p38_active_phoshorylation_Km+p38)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_369" name="p38" order="0" role="substrate"/>
<ParameterDescription key="FunctionParameter_370" name="p38_active_phoshorylation_Km" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_371" name="p38_active_phosphorylation_vmax" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_55" name="Henri-Michaelis-Menten (irreversible)_6" type="UserDefined" reversible="false">
<Expression>
p65_P_MSK1_phosphrylation_vmax*s8/(p65_P_MSK1_phosphrylation_kM+s8)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_366" name="p65_P_MSK1_phosphrylation_kM" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_367" name="p65_P_MSK1_phosphrylation_vmax" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_368" name="s8" order="2" role="substrate"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_56" name="Henri-Michaelis-Menten (irreversible)_7" type="UserDefined" reversible="false">
<Expression>
p65_MSK1_phosphrylation_vmax*p65_nucleus/(p65_MSK1_phosphorylation_kM+p65_nucleus)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_363" name="p65_MSK1_phosphorylation_kM" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_364" name="p65_MSK1_phosphrylation_vmax" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_365" name="p65_nucleus" order="2" role="substrate"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_57" name="activated Transcription [1]_1" type="UserDefined" reversible="false">
<Expression>
IkBa_transcription_initiation_kbasal+IkBa_transcription_kA2_p65_P*s8+IkBa_transcription_kA_p65*p65_nucleus+IkBa_transcription_kA3_p65_2P*p65_2P
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_360" name="IkBa_transcription_initiation_kbasal" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_361" name="IkBa_transcription_kA2_p65_P" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_362" name="IkBa_transcription_kA3_p65_2P" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_359" name="IkBa_transcription_kA_p65" order="3" role="constant"/>
<ParameterDescription key="FunctionParameter_358" name="p65_2P" order="4" role="modifier"/>
<ParameterDescription key="FunctionParameter_357" name="p65_nucleus" order="5" role="modifier"/>
<ParameterDescription key="FunctionParameter_356" name="s8" order="6" role="modifier"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_58" name="Henri-Michaelis-Menten (irreversible)_8" type="UserDefined" reversible="false">
<Expression>
IkBa_p65_phosphorylation_vmax*s19/(IkBa_p65_phosphorylation_kM+s19)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_349" name="IkBa_p65_phosphorylation_kM" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_350" name="IkBa_p65_phosphorylation_vmax" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_351" name="s19" order="2" role="substrate"/>
</ListOfParameterDescriptions>
</Function>
</ListOfFunctions>
<Model key="Model_0" name="beuke1" simulationType="time" timeUnit="s" volumeUnit="µl" areaUnit="m²" lengthUnit="m" quantityUnit="pmol" type="deterministic" avogadroConstant="6.0221417899999999e+23">
<MiriamAnnotation>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#Model_0">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2017-03-27T14:23:57Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfCompartments>
<Compartment key="Compartment_3" name="EL" simulationType="fixed" dimensionality="3" addNoise="false">
</Compartment>
<Compartment key="Compartment_4" name="nucleus" simulationType="fixed" dimensionality="3" addNoise="false">
</Compartment>
<Compartment key="Compartment_5" name="cytoplasm" simulationType="fixed" dimensionality="3" addNoise="false">
</Compartment>
</ListOfCompartments>
<ListOfMetabolites>
<Metabolite key="Metabolite_41" name="LPS" simulationType="reactions" compartment="Compartment_3" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_45" name="TNFR1" simulationType="reactions" compartment="Compartment_3" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_50" name="TNFa:TNFR1" simulationType="reactions" compartment="Compartment_3" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_52" name="TNFa" simulationType="fixed" compartment="Compartment_3" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_49" name="IkBa_mRNA" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_47" name="IkBa_pre_mRNA_1" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_29" name="IkBa_pre_mRNA_2" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_30" name="MSK1" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_31" name="MSK1_P" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_32" name="p65_2P" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_33" name="p65-IkBa" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_34" name="p65" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_35" name="IkBa" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_36" name="p65_P" simulationType="reactions" compartment="Compartment_4" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_37" name="IkBa" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_38" name="IkBa_mRNA" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_39" name="JNK" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_40" name="JNK_P" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_42" name="TNFR1" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_48" name="TNFa:TNFR1" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_51" name="p38" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_46" name="p38_P" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_44" name="p65" simulationType="reactions" compartment="Compartment_5" addNoise="false">
<MiriamAnnotation>
<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#Metabolite_44">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-02-14T14:08:09Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_43" name="p65_mRNA" simulationType="fixed" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_63" name="IKKb" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_62" name="IKKb_p" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_61" name="p65-IkBa" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_60" name="p65_P" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
<Metabolite key="Metabolite_59" name="IkBa_p" simulationType="reactions" compartment="Compartment_5" addNoise="false">
</Metabolite>
</ListOfMetabolites>
<ListOfModelValues>
<ModelValue key="ModelValue_108" name="IKKb_active_phosphorylation_kA" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_109" name="IKKb_active_phosphorylation_kM" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_110" name="IKKb_active_phosphorylation_vmax" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_111" name="IKKb_basal_phosphoylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_112" name="IKKb_dephopshorylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_8" name="IkBa_deg_complex_cyt_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_7" name="IkBa_deg_complex_nuc_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_114" name="IkBa_deg_cyt_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_115" name="IkBa_deg_nuc_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_116" name="IkBa_mRNA_deg_cyt_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_117" name="IkBa_mRNA_deg_nuc_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_118" name="IkBa_mRNA_transport_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_119" name="IkBa_nuclear_export_k" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_nuclear_import_k],Reference=Value>*0.5
</Expression>
</ModelValue>
<ModelValue key="ModelValue_120" name="IkBa_nuclear_import_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_121" name="IkBa:p65_association_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_122" name="IkBa:p65_dissociation_k" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_association_k],Reference=Value>*0.003
</Expression>
</ModelValue>
<ModelValue key="ModelValue_123" name="IkBa:p65_nuclear_export_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_124" name="IkBa:p65_nuclear_import_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_125" name="IkBa:p65_phosphorylation_kM" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_126" name="IkBa:p65_phosphorylation_kcat" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_127" name="IkBa:p65_phosphorylation_vmax" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_kcat],Reference=Value>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb_p],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_128" name="IkBa_p_active_degradation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_129" name="IkBa_phosphorylation_kM" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_130" name="IkBa_phosphorylation_kcat" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_kcat],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_131" name="IkBa_phosphorylation_vmax" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_kcat],Reference=Value>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb_p],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_132" name="IkBa_transcription_elongation_kbasal" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_133" name="IkBa_transcription_initiation_kbasal" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_134" name="IkBa_transcription_kA2_p65_P" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_135" name="IkBa_transcription_kA3_p65_2P" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_136" name="IkBa_transcription_kA_p65" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_137" name="IkBa_translation_Km" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_138" name="IkBa_translation_vmax" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_139" name="JNK_active_phoshorylation_Km" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_140" name="JNK_active_phosphorylation_kcat" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_141" name="JNK_active_phosphorylation_vmax" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[JNK_active_phosphorylation_kcat],Reference=Value>*<CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFa:TNFR1],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_142" name="JNK_basal_phosphorylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_143" name="JNK_dephosphorylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_144" name="LPS_LSEC_degradation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_145" name="LPS_MC_degradation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_146" name="MSK1_activation_kM" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_147" name="MSK1_activation_vmax" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[MSK1_phosphorylation_kcat],Reference=Value>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38_P],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_148" name="MSK1_dephosphorylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_149" name="MSK1_phosphorylation_kcat" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_150" name="TNFa_LSEC_transcription_elongation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_151" name="TNFa_LSEC_transcription_initiation_kA_LPS" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_152" name="TNFa_LSEC_transcription_initiation_kbasal" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_153" name="TNFa_LSEC_transcription_initiation_vA_LPS" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_154" name="TNFa_LSEC_translation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_155" name="TNFa_MC_transcription_elongation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_156" name="TNFa_MC_transcription_initiation_kA_LPS" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_157" name="TNFa_MC_transcription_initiation_kbasal" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_158" name="TNFa_MC_transcription_initiation_vA_LPS" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_159" name="TNFa_MC_translation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_160" name="TNFa_degradation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_161" name="TNFa_mRNA_LSEC_degradation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_162" name="TNFa_mRNA_MC_degradation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_163" name="k_IkBa" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_164" name="k_IkBa_P" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_165" name="k_IkBa_mRNA" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_166" name="k_JNK_P" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_167" name="k_MSK_P" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_168" name="k_TNFR1_outer_membrane2vessicle_shuttle" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_169" name="k_TNFR1_vessicle2outer_membrane_shuttle" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_170" name="k_TNFa:TNFR1_association" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_171" name="k_TNFa:TNFR1_dissociation" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_association],Reference=Value>*1.9e-005
</Expression>
</ModelValue>
<ModelValue key="ModelValue_172" name="k_TNFa:TNFR1_internalisation" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_173" name="k_TNFa_internal_degradation" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_174" name="k_p38_P" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_175" name="k_p65" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_176" name="k_p65_P" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_177" name="p38_active_phoshorylation_Km" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_178" name="p38_active_phosphorylation_kcat" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_179" name="p38_active_phosphorylation_vmax" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[p38_active_phosphorylation_kcat],Reference=Value>*<CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFa:TNFR1],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_180" name="p38_basal_phosphorylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_181" name="p38_dephosphorylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_182" name="p65_2P_dephosphorylation" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[p65_P_dephosphorylation_k],Reference=Value>*1
</Expression>
</ModelValue>
<ModelValue key="ModelValue_183" name="p65_MSK1_phosphorylation_kM" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_184" name="p65_MSK1_phosphrylation_kcat" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_185" name="p65_MSK1_phosphrylation_vmax" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphrylation_kcat],Reference=Value>*<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1_P],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_186" name="p65_P_MSK1_phosphrylation_kM" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphorylation_kM],Reference=Value>*1
</Expression>
</ModelValue>
<ModelValue key="ModelValue_187" name="p65_P_MSK1_phosphrylation_kcat" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphrylation_kcat],Reference=Value>*1
</Expression>
</ModelValue>
<ModelValue key="ModelValue_188" name="p65_P_MSK1_phosphrylation_vmax" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kcat],Reference=Value>*<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1_P],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_189" name="p65_P_dephosphorylation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_190" name="p65_degradation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_191" name="p65_nuclear_export_k" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[p65_nuclear_import_k],Reference=Value>*0.02
</Expression>
</ModelValue>
<ModelValue key="ModelValue_192" name="p65_nuclear_import_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_193" name="p65_translation_k" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_194" name="scaled_IkBa" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_IkBa],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_195" name="scaled_IkBa_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_IkBa_P],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_P],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_196" name="scaled_IkBa_mRNA" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_IkBa_mRNA],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_mRNA],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_197" name="scaled_JNK_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_JNK_P],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_JNK_P],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_198" name="scaled_MSK_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_MSK_P],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_MSK_P],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_199" name="scaled_p38_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_p38_P],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_p38_P],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_200" name="scaled_p65" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_p65],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_p65],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_201" name="scaled_p65_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[k_p65_P],Reference=Value>*<CN=Root,Model=beuke1,Vector=Values[unscaled_p65_P],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_202" name="unscaled_IkBa" simulationType="assignment" addNoise="false">
<Expression>
(<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65-IkBa],Reference=Concentration>)*<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Reference=Volume>+(<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_p],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65-IkBa],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa],Reference=Concentration>)*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Reference=Volume>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_203" name="unscaled_IkBa_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_p],Reference=Concentration>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Reference=Volume>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_204" name="unscaled_IkBa_mRNA" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_mRNA],Reference=Concentration>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Reference=Volume>+<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Reference=Volume>*<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_mRNA],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_205" name="unscaled_JNK_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Reference=Volume>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[JNK_P],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_206" name="unscaled_MSK_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Reference=Volume>*<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1_P],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_207" name="unscaled_p38_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Reference=Volume>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38_P],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_208" name="unscaled_p65" simulationType="assignment" addNoise="false">
<Expression>
(<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65_P],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65-IkBa],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Concentration>)*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Reference=Volume>+<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Reference=Volume>*(<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_P],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65-IkBa],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_2P],Reference=Concentration>)
</Expression>
</ModelValue>
<ModelValue key="ModelValue_209" name="unscaled_p65_P" simulationType="assignment" addNoise="false">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Reference=Volume>*<CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_P],Reference=Concentration>+<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Reference=Volume>*<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65_P],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_210" name="min" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_211" name="max" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_212" name="amp" simulationType="assignment" addNoise="false">
<MiriamAnnotation>
<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#ModelValue_212">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2017-03-30T16:12:21Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=beuke1,Vector=Values[max],Reference=Value>-<CN=Root,Model=beuke1,Vector=Values[min],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_213" name="time1" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_214" name="period" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_215" name="avg" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_216" name="int" simulationType="ode" addNoise="false">
<MiriamAnnotation>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#ModelValue_216">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2017-03-31T14:19:51Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Concentration>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_217" name="sign" simulationType="fixed" addNoise="false">
</ModelValue>
<ModelValue key="ModelValue_218" name="counter" simulationType="fixed" addNoise="false">
<MiriamAnnotation>
<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#ModelValue_218">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-02-14T14:14:10Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</ModelValue>
</ListOfModelValues>
<ListOfReactions>
<Reaction key="Reaction_49" name="Complex_association_c" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_37" stoichiometry="1"/>
<Substrate metabolite="Metabolite_44" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_61" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7626" name="k1" value="0.0380804"/>
<Constant key="Parameter_7712" name="k2" value="0.000114241"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_121"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_37"/>
<SourceParameter reference="Metabolite_44"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_122"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_61"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_50" name="Complex_degradation_IkBa_c" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_61" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_44" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7714" name="k1" value="1e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_8"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_61"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_51" name="Complex_degradation_IkBa_n" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_33" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_34" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7715" name="k1" value="1e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_7"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_52" name="Complex_degradation_p65_c" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_61" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_37" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7709" name="k1" value="1.59425e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_190"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_61"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_53" name="Complex_degradation_p65_n" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_33" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_35" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7710" name="k1" value="1.59425e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_190"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_54" name="Complex_nuclear_shuttle" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_33" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_61" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7713" name="k1" value="0.0001"/>
<Constant key="Parameter_7705" name="k2" value="0.002"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_123"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_124"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_61"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_55" name="IKK_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_63" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_62" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_50" stoichiometry="1"/>
<Modifier metabolite="Metabolite_52" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_7704" name="IKKb_active_phosphorylation_kA" value="0.225847"/>
<Constant key="Parameter_7711" name="IKKb_active_phosphorylation_kM" value="5.99993"/>
<Constant key="Parameter_7707" name="IKKb_active_phosphorylation_vmax" value="214.511"/>
</ListOfConstants>
<KineticLaw function="Function_49" unitType="ConcentrationPerTime" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_388">
<SourceParameter reference="ModelValue_108"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_387">
<SourceParameter reference="ModelValue_109"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_386">
<SourceParameter reference="ModelValue_110"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_385">
<SourceParameter reference="Metabolite_50"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_384">
<SourceParameter reference="Metabolite_63"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_56" name="IkBa_degradation_c" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_37" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7708" name="k1" value="9.79808e-06"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_114"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_37"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_57" name="IkBa_degradation_n" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_35" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7706" name="k1" value="1e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_115"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_35"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_58" name="IkBa_mRNA_degradation_c" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_38" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7702" name="k1" value="4.9291e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_116"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_38"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_59" name="IkBa_mRNA_degradation_n" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_49" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7700" name="k1" value="5e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_117"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_49"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_60" name="IkBa_mRNA_transport" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_49" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_38" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7703" name="k1" value="0.0001"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_118"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_49"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_61" name="IkBa_nuclear_shuttle" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_37" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_35" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7697" name="k1" value="0.005"/>
<Constant key="Parameter_7696" name="k2" value="0.0025"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_120"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_37"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_119"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_35"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_62" name="IkBa_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_37" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_59" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7701" name="IkBa_phosphorylation_kM" value="0.117842"/>
<Constant key="Parameter_7639" name="IkBa_phosphorylation_vmax" value="0.000221972"/>
</ListOfConstants>
<KineticLaw function="Function_50" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_379">
<SourceParameter reference="Metabolite_37"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_380">
<SourceParameter reference="ModelValue_129"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_381">
<SourceParameter reference="ModelValue_131"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_63" name="IkBa_transcription_elongation_1" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_47" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_29" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7698" name="k1" value="7.9497e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_132"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_47"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_64" name="IkBa_transcription_elongation_2" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_29" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_49" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7699" name="k1" value="7.9497e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_132"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_29"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_65" name="IkBa_translation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_38" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_37" stoichiometry="1"/>
<Product metabolite="Metabolite_38" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7649" name="IkBa_translation_Km" value="3.69291"/>
<Constant key="Parameter_7692" name="IkBa_translation_vmax" value="0.00120941"/>
</ListOfConstants>
<KineticLaw function="Function_51" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_378">
<SourceParameter reference="Metabolite_38"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_383">
<SourceParameter reference="ModelValue_137"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_382">
<SourceParameter reference="ModelValue_138"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_66" name="JNK_active_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_39" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_40" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7690" name="JNK_active_phoshorylation_Km" value="0.00163613"/>
<Constant key="Parameter_7686" name="JNK_active_phosphorylation_vmax" value="0"/>
</ListOfConstants>
<KineticLaw function="Function_52" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_375">
<SourceParameter reference="Metabolite_39"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_376">
<SourceParameter reference="ModelValue_139"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_377">
<SourceParameter reference="ModelValue_141"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_67" name="JNK_basal_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_39" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_40" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7691" name="k1" value="2.59046e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_142"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_39"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_68" name="JNK_dephosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_40" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_39" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7687" name="k1" value="0.000710823"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_143"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_40"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_69" name="LPS_LSEC_degradation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_41" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7682" name="k1" value="0.000221889"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[EL]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_144"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_41"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_70" name="LPS_MC_degradation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_41" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7688" name="k1" value="0.000115242"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[EL]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_145"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_41"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_71" name="MSK1_activation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_30" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_31" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7693" name="MSK1_activation_kM" value="0.332175"/>
<Constant key="Parameter_7654" name="MSK1_activation_vmax" value="0.000293323"/>
</ListOfConstants>
<KineticLaw function="Function_53" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_372">
<SourceParameter reference="Metabolite_30"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_373">
<SourceParameter reference="ModelValue_146"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_374">
<SourceParameter reference="ModelValue_147"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_72" name="MSK1_deactivation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_31" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_30" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7683" name="k1" value="0.01"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_148"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_31"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_73" name="TNFR1_shuttle" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_42" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_45" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7617" name="k1" value="0.0004"/>
<Constant key="Parameter_7620" name="k2" value="1.8e-05"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_169"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_42"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_168"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_45"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_74" name="TNFa:TNFR1_association" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_52" stoichiometry="1"/>
<Substrate metabolite="Metabolite_45" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_50" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7614" name="k1" value="16.833"/>
<Constant key="Parameter_7684" name="k2" value="0.000319827"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[EL]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_170"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_52"/>
<SourceParameter reference="Metabolite_45"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_171"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_50"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_75" name="TNFa:TNFR1_internalisation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_50" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_48" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7689" name="k1" value="0.000924"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_172"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_50"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_76" name="TNFa degradation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_52" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7619" name="k1" value="0.000171417"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[EL]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_160"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_52"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_77" name="TNFa_internal_degradation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_48" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_42" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7674" name="k1" value="6.14429e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_173"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_48"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_78" name="basal_IKKb_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_63" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_62" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7677" name="k1" value="8.60727e-08"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_111"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_63"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_79" name="p38_active_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_51" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_46" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7675" name="p38_active_phoshorylation_Km" value="2.56473"/>
<Constant key="Parameter_7621" name="p38_active_phosphorylation_vmax" value="0"/>
</ListOfConstants>
<KineticLaw function="Function_54" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_369">
<SourceParameter reference="Metabolite_51"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_370">
<SourceParameter reference="ModelValue_177"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_371">
<SourceParameter reference="ModelValue_179"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_99" name="p38_basal_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_51" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_46" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7681" name="k1" value="0.00025146"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_180"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_51"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_98" name="p38_dephosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_46" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_51" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7670" name="k1" value="0.000531555"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_181"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_46"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_97" name="p65_2P_degradation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_32" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7678" name="k1" value="1.59425e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_190"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_32"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_96" name="p65_2P_dephosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_32" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_34" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7680" name="k1" value="0.000892996"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_182"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_32"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_95" name="p65_P_degradation_c" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_60" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7685" name="k1" value="1.59425e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_190"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_60"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_94" name="p65_P_degradation_n" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_36" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7676" name="k1" value="1.59425e-05"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_190"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_36"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_93" name="p65_P_dephosphorylation_c" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_36" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_34" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7668" name="k1" value="0.000892996"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_189"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_36"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_92" name="p65_P_dephosphorylation_n" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_60" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_44" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7679" name="k1" value="0.000892996"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_189"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_60"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_91" name="p65_P_phosphorylation_MSK1" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_36" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_32" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_31" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_7663" name="p65_P_MSK1_phosphrylation_kM" value="0.843653"/>
<Constant key="Parameter_7664" name="p65_P_MSK1_phosphrylation_vmax" value="0.00102741"/>
</ListOfConstants>
<KineticLaw function="Function_55" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_366">
<SourceParameter reference="ModelValue_186"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_367">
<SourceParameter reference="ModelValue_188"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_368">
<SourceParameter reference="Metabolite_36"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_90" name="p65_nuclear_shuttle" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_44" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_34" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7662" name="k1" value="0.0005"/>
<Constant key="Parameter_7671" name="k2" value="1e-05"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_192"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_44"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_191"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_34"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_89" name="p65_phosphorylation_MSK1" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_34" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_32" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_31" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_7672" name="p65_MSK1_phosphorylation_kM" value="0.843653"/>
<Constant key="Parameter_7667" name="p65_MSK1_phosphrylation_vmax" value="0.00102741"/>
</ListOfConstants>
<KineticLaw function="Function_56" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_363">
<SourceParameter reference="ModelValue_183"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_364">
<SourceParameter reference="ModelValue_185"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_365">
<SourceParameter reference="Metabolite_34"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_88" name="p65_translation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_43" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_44" stoichiometry="1"/>
<Product metabolite="Metabolite_43" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7673" name="k1" value="1.75863e-06"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_193"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_43"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_87" name="IkBa_transcription_initiation" reversible="false" fast="false" addNoise="false">
<ListOfProducts>
<Product metabolite="Metabolite_47" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_32" stoichiometry="1"/>
<Modifier metabolite="Metabolite_34" stoichiometry="1"/>
<Modifier metabolite="Metabolite_36" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_7665" name="IkBa_transcription_initiation_kbasal" value="1e-06"/>
<Constant key="Parameter_7669" name="IkBa_transcription_kA2_p65_P" value="0.0001"/>
<Constant key="Parameter_7666" name="IkBa_transcription_kA3_p65_2P" value="0.0001"/>
<Constant key="Parameter_7660" name="IkBa_transcription_kA_p65" value="0.232624"/>
</ListOfConstants>
<KineticLaw function="Function_57" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_360">
<SourceParameter reference="ModelValue_133"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_361">
<SourceParameter reference="ModelValue_134"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_362">
<SourceParameter reference="ModelValue_135"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_359">
<SourceParameter reference="ModelValue_136"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_358">
<SourceParameter reference="Metabolite_32"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_357">
<SourceParameter reference="Metabolite_34"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_356">
<SourceParameter reference="Metabolite_36"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_86" name="IkBa_p_active_degradation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_59" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_7658" name="k1" value="0.00374704"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_128"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_59"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_85" name="Complex_phosphorylation" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_61" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_59" stoichiometry="1"/>
<Product metabolite="Metabolite_60" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7659" name="IkBa_p65_phosphorylation_kM" value="0.599893"/>
<Constant key="Parameter_7618" name="IkBa_p65_phosphorylation_vmax" value="0.000221972"/>
</ListOfConstants>
<KineticLaw function="Function_58" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_349">
<SourceParameter reference="ModelValue_125"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_350">
<SourceParameter reference="ModelValue_127"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_351">
<SourceParameter reference="Metabolite_61"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_84" name="dephosphorylation IKK" reversible="false" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_62" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_63" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7625" name="k1" value="0.00212692"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_80">
<SourceParameter reference="ModelValue_112"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="Metabolite_62"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_83" name="Complex_association_n" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_35" stoichiometry="1"/>
<Substrate metabolite="Metabolite_34" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_33" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7661" name="k1" value="0.0380804"/>
<Constant key="Parameter_7368" name="k2" value="0.000114241"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default" scalingCompartment="CN=Root,Model=beuke1,Vector=Compartments[nucleus]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_121"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_35"/>
<SourceParameter reference="Metabolite_34"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_122"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_82" name="p65_P_nuclear_shuttle" reversible="true" fast="false" addNoise="false">
<ListOfSubstrates>
<Substrate metabolite="Metabolite_60" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfProducts>
<Product metabolite="Metabolite_36" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_7369" name="k1" value="0.0005"/>
<Constant key="Parameter_7315" name="k2" value="1e-05"/>
</ListOfConstants>
<KineticLaw function="Function_14" unitType="Default">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_69">
<SourceParameter reference="ModelValue_192"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_68">
<SourceParameter reference="Metabolite_60"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_78">
<SourceParameter reference="ModelValue_191"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_36"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
</ListOfReactions>
<ListOfEvents>
<Event key="Event_0" name="min" fireAtInitialTime="0" persistentTrigger="0">
<MiriamAnnotation>
<rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#Event_0">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2017-03-30T16:13:45Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Rate> > 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="ModelValue_210">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Concentration>
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_217">
<Expression>
-<CN=Root,Model=beuke1,Vector=Values[sign],Reference=Value>
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_218">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[counter],Reference=Value>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_3" name="max" fireAtInitialTime="0" persistentTrigger="0">
<MiriamAnnotation>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#Event_3">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2017-03-30T16:14:34Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Rate> < 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="ModelValue_211">
<Expression>
<CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Concentration>
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_213">
<Expression>
<CN=Root,Model=beuke1,Reference=Time>
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_214">
<Expression>
<CN=Root,Model=beuke1,Reference=Time>-<CN=Root,Model=beuke1,Vector=Values[time1],Reference=Value>
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_215">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[int],Reference=Value>/<CN=Root,Model=beuke1,Vector=Values[period],Reference=Value>
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_216">
<Expression>
0
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_217">
<Expression>
-<CN=Root,Model=beuke1,Vector=Values[sign],Reference=Value>
</Expression>
</Assignment>
<Assignment targetKey="ModelValue_218">
<Expression>
<CN=Root,Model=beuke1,Vector=Values[counter],Reference=Value>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
</ListOfEvents>
<ListOfModelParameterSets activeSet="ModelParameterSet_0">
<ModelParameterSet key="ModelParameterSet_0" name="Initial State">
<ModelParameterGroup cn="String=Initial Time" type="Group">
<ModelParameter cn="CN=Root,Model=beuke1" value="0" type="Model" simulationType="time"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Initial Compartment Sizes" type="Group">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[EL]" value="2.5900000000000002e-06" type="Compartment" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus]" value="7.9999999999999996e-07" type="Compartment" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm]" value="1.2999999999999999e-05" type="Compartment" simulationType="fixed"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Initial Species Values" type="Group">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[LPS]" value="7798673.6180500006" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFR1]" value="1915.894621127193" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFa:TNFR1]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFa]" value="917.49835381634625" type="Species" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_mRNA]" value="16.741821099107149" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_pre_mRNA_1]" value="926214.74297503615" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_pre_mRNA_2]" value="926214.74297503615" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1]" value="7212745.4386496814" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1_P]" value="13824.709350325529" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_2P]" value="102415.9970892102" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65-IkBa]" value="428562.47568196338" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65]" value="7131.4437299996334" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa]" value="444478.39400965557" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_P]" value="83411.493122878295" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa]" value="3611387.4722043518" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_mRNA]" value="10257237.8075299" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[JNK]" value="7553510.5629981197" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[JNK_P]" value="275273.76400187978" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[TNFR1]" value="432.74067697274342" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[TNFa:TNFR1]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38]" value="5314621.6602560114" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38_P]" value="2514162.666743997" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65]" value="2318.7564433152638" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65_mRNA]" value="7828784.3269999996" type="Species" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb]" value="2348541.369331039" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb_p]" value="93.928768960989473" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65-IkBa]" value="348205.76605032221" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65_P]" value="27112.892084477469" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_p]" value="505973.20938342536" type="Species" simulationType="reactions"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Initial Global Quantities" type="Group">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IKKb_active_phosphorylation_kA]" value="0.22584699999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IKKb_active_phosphorylation_kM]" value="5.9999253986099763" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IKKb_active_phosphorylation_vmax]" value="214.511" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IKKb_basal_phosphoylation_k]" value="8.6072734027274997e-08" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IKKb_dephopshorylation_k]" value="0.002126924084237061" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_deg_complex_cyt_k]" value="1.0000000000000001e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_deg_complex_nuc_k]" value="1.00000000002221e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_deg_cyt_k]" value="9.7980800000000006e-06" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_deg_nuc_k]" value="1.0000000000000001e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_mRNA_deg_cyt_k]" value="4.9291e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_mRNA_deg_nuc_k]" value="5.0000000000000002e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_mRNA_transport_k]" value="0.0001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_nuclear_export_k]" value="0.0025000000000000001" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_nuclear_import_k]" value="0.0050000000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_association_k]" value="0.038080424418151397" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_dissociation_k]" value="0.0001142412732544542" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_nuclear_export_k]" value="0.000100000000000222" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_nuclear_import_k]" value="0.0019999999999997802" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_kM]" value="0.59989342964577941" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_kcat]" value="18.500918641635661" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_vmax]" value="0.00022197169318651728" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_p_active_degradation_k]" value="0.00374704364447229" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_kM]" value="0.117842" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_kcat]" value="18.500918641635661" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_vmax]" value="0.00022197169318651728" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_elongation_kbasal]" value="7.9497024021163017e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_initiation_kbasal]" value="9.9999999999999995e-07" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_kA2_p65_P]" value="0.000100000000000222" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_kA3_p65_2P]" value="0.000100000000000222" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_kA_p65]" value="0.23262432287335619" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_translation_Km]" value="3.6929099999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[IkBa_translation_vmax]" value="0.00120941" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[JNK_active_phoshorylation_Km]" value="0.0016361306255064201" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[JNK_active_phosphorylation_kcat]" value="11501.848605491499" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[JNK_active_phosphorylation_vmax]" value="0" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[JNK_basal_phosphorylation_k]" value="2.5904620308721599e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[JNK_dephosphorylation_k]" value="0.00071082263811762803" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[LPS_LSEC_degradation_k]" value="0.000221888641398861" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[LPS_MC_degradation_k]" value="0.000115242287512479" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[MSK1_activation_kM]" value="0.332175" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[MSK1_activation_vmax]" value="0.0002933226422510503" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[MSK1_dephosphorylation_k]" value="0.0099999999999997799" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[MSK1_phosphorylation_kcat]" value="0.00091336958216119905" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_LSEC_transcription_elongation_k]" value="1.0000000002220399e-06" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_LSEC_transcription_initiation_kA_LPS]" value="1.0937545446161601" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_LSEC_transcription_initiation_kbasal]" value="0" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_LSEC_transcription_initiation_vA_LPS]" value="1.22913885610405e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_LSEC_translation_k]" value="2.1819503787823699e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_MC_transcription_elongation_k]" value="1.0000000002220399e-06" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_MC_transcription_initiation_kA_LPS]" value="0.83406985346583096" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_MC_transcription_initiation_kbasal]" value="0" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_MC_transcription_initiation_vA_LPS]" value="5.97504797065566e-06" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_MC_translation_k]" value="2.1894167810831798e-06" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_degradation_k]" value="0.000171416922199217" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_mRNA_LSEC_degradation_k]" value="0.58439602675956803" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[TNFa_mRNA_MC_degradation_k]" value="0.050715716095883802" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_IkBa]" value="145028.78158363799" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_IkBa_P]" value="584678.80956640502" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_IkBa_mRNA]" value="21395.245793948801" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_JNK_P]" value="1491678.2351977001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_MSK_P]" value="28373108.944711499" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_TNFR1_outer_membrane2vessicle_shuttle]" value="1.8e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_TNFR1_vessicle2outer_membrane_shuttle]" value="0.00040000000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_association]" value="16.832999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_dissociation]" value="0.00031982700000000001" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_internalisation]" value="0.00092400000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_TNFa_internal_degradation]" value="6.1442899999999994e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_p38_P]" value="197139.21763645901" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_p65]" value="0.102372088824604" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[k_p65_P]" value="3050644.1138216699" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p38_active_phoshorylation_Km]" value="2.5647334845410801" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p38_active_phosphorylation_kcat]" value="549341.56606688304" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p38_active_phosphorylation_vmax]" value="0" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p38_basal_phosphorylation_k]" value="0.00025145997620859502" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p38_dephosphorylation_k]" value="0.00053155456244858516" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_2P_dephosphorylation]" value="0.00089299602995035509" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphorylation_kM]" value="0.84365297237173797" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphrylation_kcat]" value="0.035803860144060298" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphrylation_vmax]" value="0.0010274126244695619" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kM]" value="0.84365297237173797" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kcat]" value="0.035803860144060298" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_vmax]" value="0.0010274126244695619" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_P_dephosphorylation_k]" value="0.00089299602995035509" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_degradation_k]" value="1.5942540684736069e-05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_nuclear_export_k]" value="1.0000000000000001e-05" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_nuclear_import_k]" value="0.00050000000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[p65_translation_k]" value="1.758629979014617e-06" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa]" value="1.285674999999997" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa_P]" value="0.49124019999999791" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa_mRNA]" value="0.3644160000000003" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_JNK_P]" value="0.68185023999999872" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_MSK_P]" value="0.65134631200000026" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_p38_P]" value="0.82302954400000106" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_p65]" value="1.6984982995744289e-07" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[scaled_p65_P]" value="0.55988479999999918" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa]" value="8.8649644985023138e-06" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_P]" value="8.4018813742249228e-07" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_mRNA]" value="1.7032568987969644e-05" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_JNK_P]" value="4.5710276111230481e-07" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_MSK_P]" value="2.2956466042167914e-08" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p38_P]" value="4.1748646153082307e-06" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p65]" value="1.6591419781269655e-06" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p65_P]" value="1.8353002812203092e-07" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[min]" value="0" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[max]" value="0" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[amp]" value="0" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[time1]" value="0" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[period]" value="0" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[avg]" value="0" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[int]" value="0" type="ModelValue" simulationType="ode"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[sign]" value="9.9999999999999995e-08" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Values[counter]" value="0" type="ModelValue" simulationType="fixed"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Kinetic Parameters" type="Group">
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_association_c]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_association_c],ParameterGroup=Parameters,Parameter=k1" value="0.038080424418151397" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_association_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_association_c],ParameterGroup=Parameters,Parameter=k2" value="0.0001142412732544542" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_dissociation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_IkBa_c]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_IkBa_c],ParameterGroup=Parameters,Parameter=k1" value="1.0000000000000001e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_deg_complex_cyt_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_IkBa_n]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_IkBa_n],ParameterGroup=Parameters,Parameter=k1" value="1.00000000002221e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_deg_complex_nuc_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_p65_c]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_p65_c],ParameterGroup=Parameters,Parameter=k1" value="1.5942540684736069e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_p65_n]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_degradation_p65_n],ParameterGroup=Parameters,Parameter=k1" value="1.5942540684736069e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_nuclear_shuttle]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k1" value="0.000100000000000222" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_nuclear_export_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k2" value="0.0019999999999997802" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_nuclear_import_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IKK_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IKK_phosphorylation],ParameterGroup=Parameters,Parameter=IKKb_active_phosphorylation_kA" value="0.22584699999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IKKb_active_phosphorylation_kA],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IKK_phosphorylation],ParameterGroup=Parameters,Parameter=IKKb_active_phosphorylation_kM" value="5.9999253986099763" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IKKb_active_phosphorylation_kM],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IKK_phosphorylation],ParameterGroup=Parameters,Parameter=IKKb_active_phosphorylation_vmax" value="214.511" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IKKb_active_phosphorylation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_degradation_c]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_degradation_c],ParameterGroup=Parameters,Parameter=k1" value="9.7980800000000006e-06" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_deg_cyt_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_degradation_n]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_degradation_n],ParameterGroup=Parameters,Parameter=k1" value="1.0000000000000001e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_deg_nuc_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_mRNA_degradation_c]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_mRNA_degradation_c],ParameterGroup=Parameters,Parameter=k1" value="4.9291e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_mRNA_deg_cyt_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_mRNA_degradation_n]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_mRNA_degradation_n],ParameterGroup=Parameters,Parameter=k1" value="5.0000000000000002e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_mRNA_deg_nuc_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_mRNA_transport]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_mRNA_transport],ParameterGroup=Parameters,Parameter=k1" value="0.0001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_mRNA_transport_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_nuclear_shuttle]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k1" value="0.0050000000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_nuclear_import_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k2" value="0.0025000000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_nuclear_export_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_phosphorylation],ParameterGroup=Parameters,Parameter=IkBa_phosphorylation_kM" value="0.117842" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_kM],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_phosphorylation],ParameterGroup=Parameters,Parameter=IkBa_phosphorylation_vmax" value="0.00022197169318651728" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_elongation_1]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_elongation_1],ParameterGroup=Parameters,Parameter=k1" value="7.9497024021163017e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_elongation_kbasal],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_elongation_2]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_elongation_2],ParameterGroup=Parameters,Parameter=k1" value="7.9497024021163017e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_elongation_kbasal],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_translation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_translation],ParameterGroup=Parameters,Parameter=IkBa_translation_Km" value="3.6929099999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_translation_Km],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_translation],ParameterGroup=Parameters,Parameter=IkBa_translation_vmax" value="0.00120941" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_translation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[JNK_active_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[JNK_active_phosphorylation],ParameterGroup=Parameters,Parameter=JNK_active_phoshorylation_Km" value="0.0016361306255064201" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[JNK_active_phoshorylation_Km],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[JNK_active_phosphorylation],ParameterGroup=Parameters,Parameter=JNK_active_phosphorylation_vmax" value="0" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[JNK_active_phosphorylation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[JNK_basal_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[JNK_basal_phosphorylation],ParameterGroup=Parameters,Parameter=k1" value="2.5904620308721599e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[JNK_basal_phosphorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[JNK_dephosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[JNK_dephosphorylation],ParameterGroup=Parameters,Parameter=k1" value="0.00071082263811762803" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[JNK_dephosphorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[LPS_LSEC_degradation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[LPS_LSEC_degradation],ParameterGroup=Parameters,Parameter=k1" value="0.000221888641398861" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[LPS_LSEC_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[LPS_MC_degradation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[LPS_MC_degradation],ParameterGroup=Parameters,Parameter=k1" value="0.000115242287512479" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[LPS_MC_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[MSK1_activation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[MSK1_activation],ParameterGroup=Parameters,Parameter=MSK1_activation_kM" value="0.332175" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[MSK1_activation_kM],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[MSK1_activation],ParameterGroup=Parameters,Parameter=MSK1_activation_vmax" value="0.0002933226422510503" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[MSK1_activation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[MSK1_deactivation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[MSK1_deactivation],ParameterGroup=Parameters,Parameter=k1" value="0.0099999999999997799" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[MSK1_dephosphorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[TNFR1_shuttle]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[TNFR1_shuttle],ParameterGroup=Parameters,Parameter=k1" value="0.00040000000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[k_TNFR1_vessicle2outer_membrane_shuttle],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[TNFR1_shuttle],ParameterGroup=Parameters,Parameter=k2" value="1.8e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[k_TNFR1_outer_membrane2vessicle_shuttle],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa:TNFR1_association]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa:TNFR1_association],ParameterGroup=Parameters,Parameter=k1" value="16.832999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_association],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa:TNFR1_association],ParameterGroup=Parameters,Parameter=k2" value="0.00031982700000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_dissociation],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa:TNFR1_internalisation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa:TNFR1_internalisation],ParameterGroup=Parameters,Parameter=k1" value="0.00092400000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_internalisation],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa degradation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa degradation],ParameterGroup=Parameters,Parameter=k1" value="0.000171416922199217" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[TNFa_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa_internal_degradation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[TNFa_internal_degradation],ParameterGroup=Parameters,Parameter=k1" value="6.1442899999999994e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[k_TNFa_internal_degradation],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[basal_IKKb_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[basal_IKKb_phosphorylation],ParameterGroup=Parameters,Parameter=k1" value="8.6072734027274997e-08" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IKKb_basal_phosphoylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p38_active_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p38_active_phosphorylation],ParameterGroup=Parameters,Parameter=p38_active_phoshorylation_Km" value="2.5647334845410801" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p38_active_phoshorylation_Km],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p38_active_phosphorylation],ParameterGroup=Parameters,Parameter=p38_active_phosphorylation_vmax" value="0" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p38_active_phosphorylation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p38_basal_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p38_basal_phosphorylation],ParameterGroup=Parameters,Parameter=k1" value="0.00025145997620859502" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p38_basal_phosphorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p38_dephosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p38_dephosphorylation],ParameterGroup=Parameters,Parameter=k1" value="0.00053155456244858516" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p38_dephosphorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_2P_degradation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_2P_degradation],ParameterGroup=Parameters,Parameter=k1" value="1.5942540684736069e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_2P_dephosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_2P_dephosphorylation],ParameterGroup=Parameters,Parameter=k1" value="0.00089299602995035509" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_2P_dephosphorylation],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_degradation_c]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_degradation_c],ParameterGroup=Parameters,Parameter=k1" value="1.5942540684736069e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_degradation_n]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_degradation_n],ParameterGroup=Parameters,Parameter=k1" value="1.5942540684736069e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_dephosphorylation_c]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_dephosphorylation_c],ParameterGroup=Parameters,Parameter=k1" value="0.00089299602995035509" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_P_dephosphorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_dephosphorylation_n]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_dephosphorylation_n],ParameterGroup=Parameters,Parameter=k1" value="0.00089299602995035509" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_P_dephosphorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_phosphorylation_MSK1]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_phosphorylation_MSK1],ParameterGroup=Parameters,Parameter=p65_P_MSK1_phosphrylation_kM" value="0.84365297237173797" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kM],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_phosphorylation_MSK1],ParameterGroup=Parameters,Parameter=p65_P_MSK1_phosphrylation_vmax" value="0.0010274126244695619" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_nuclear_shuttle]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k1" value="0.00050000000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_nuclear_import_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k2" value="1.0000000000000001e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_nuclear_export_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_phosphorylation_MSK1]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_phosphorylation_MSK1],ParameterGroup=Parameters,Parameter=p65_MSK1_phosphorylation_kM" value="0.84365297237173797" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphorylation_kM],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_phosphorylation_MSK1],ParameterGroup=Parameters,Parameter=p65_MSK1_phosphrylation_vmax" value="0.0010274126244695619" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphrylation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_translation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_translation],ParameterGroup=Parameters,Parameter=k1" value="1.758629979014617e-06" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_translation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_initiation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_initiation],ParameterGroup=Parameters,Parameter=IkBa_transcription_initiation_kbasal" value="9.9999999999999995e-07" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_initiation_kbasal],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_initiation],ParameterGroup=Parameters,Parameter=IkBa_transcription_kA2_p65_P" value="0.000100000000000222" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_kA2_p65_P],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_initiation],ParameterGroup=Parameters,Parameter=IkBa_transcription_kA3_p65_2P" value="0.000100000000000222" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_kA3_p65_2P],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_transcription_initiation],ParameterGroup=Parameters,Parameter=IkBa_transcription_kA_p65" value="0.23262432287335619" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_kA_p65],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_p_active_degradation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[IkBa_p_active_degradation],ParameterGroup=Parameters,Parameter=k1" value="0.00374704364447229" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa_p_active_degradation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_phosphorylation]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_phosphorylation],ParameterGroup=Parameters,Parameter=IkBa_p65_phosphorylation_kM" value="0.59989342964577941" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_kM],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_phosphorylation],ParameterGroup=Parameters,Parameter=IkBa_p65_phosphorylation_vmax" value="0.00022197169318651728" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_vmax],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[dephosphorylation IKK]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[dephosphorylation IKK],ParameterGroup=Parameters,Parameter=k1" value="0.002126924084237061" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IKKb_dephopshorylation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_association_n]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_association_n],ParameterGroup=Parameters,Parameter=k1" value="0.038080424418151397" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_association_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[Complex_association_n],ParameterGroup=Parameters,Parameter=k2" value="0.0001142412732544542" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[IkBa:p65_dissociation_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_nuclear_shuttle]" type="Reaction">
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k1" value="0.00050000000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_nuclear_import_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=beuke1,Vector=Reactions[p65_P_nuclear_shuttle],ParameterGroup=Parameters,Parameter=k2" value="1.0000000000000001e-05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=beuke1,Vector=Values[p65_nuclear_export_k],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
</ModelParameterGroup>
</ModelParameterSet>
</ListOfModelParameterSets>
<StateTemplate>
<StateTemplateVariable objectReference="Model_0"/>
<StateTemplateVariable objectReference="ModelValue_216"/>
<StateTemplateVariable objectReference="Metabolite_34"/>
<StateTemplateVariable objectReference="Metabolite_37"/>
<StateTemplateVariable objectReference="Metabolite_44"/>
<StateTemplateVariable objectReference="Metabolite_36"/>
<StateTemplateVariable objectReference="Metabolite_61"/>
<StateTemplateVariable objectReference="Metabolite_35"/>
<StateTemplateVariable objectReference="Metabolite_60"/>
<StateTemplateVariable objectReference="Metabolite_49"/>
<StateTemplateVariable objectReference="Metabolite_39"/>
<StateTemplateVariable objectReference="Metabolite_51"/>
<StateTemplateVariable objectReference="Metabolite_63"/>
<StateTemplateVariable objectReference="Metabolite_32"/>
<StateTemplateVariable objectReference="Metabolite_59"/>
<StateTemplateVariable objectReference="Metabolite_45"/>
<StateTemplateVariable objectReference="Metabolite_48"/>
<StateTemplateVariable objectReference="Metabolite_41"/>
<StateTemplateVariable objectReference="Metabolite_47"/>
<StateTemplateVariable objectReference="Metabolite_30"/>
<StateTemplateVariable objectReference="Metabolite_33"/>
<StateTemplateVariable objectReference="Metabolite_38"/>
<StateTemplateVariable objectReference="Metabolite_29"/>
<StateTemplateVariable objectReference="Metabolite_50"/>
<StateTemplateVariable objectReference="Metabolite_40"/>
<StateTemplateVariable objectReference="Metabolite_42"/>
<StateTemplateVariable objectReference="Metabolite_31"/>
<StateTemplateVariable objectReference="Metabolite_46"/>
<StateTemplateVariable objectReference="Metabolite_62"/>
<StateTemplateVariable objectReference="ModelValue_119"/>
<StateTemplateVariable objectReference="ModelValue_122"/>
<StateTemplateVariable objectReference="ModelValue_127"/>
<StateTemplateVariable objectReference="ModelValue_130"/>
<StateTemplateVariable objectReference="ModelValue_131"/>
<StateTemplateVariable objectReference="ModelValue_141"/>
<StateTemplateVariable objectReference="ModelValue_147"/>
<StateTemplateVariable objectReference="ModelValue_171"/>
<StateTemplateVariable objectReference="ModelValue_179"/>
<StateTemplateVariable objectReference="ModelValue_182"/>
<StateTemplateVariable objectReference="ModelValue_185"/>
<StateTemplateVariable objectReference="ModelValue_186"/>
<StateTemplateVariable objectReference="ModelValue_187"/>
<StateTemplateVariable objectReference="ModelValue_188"/>
<StateTemplateVariable objectReference="ModelValue_191"/>
<StateTemplateVariable objectReference="ModelValue_194"/>
<StateTemplateVariable objectReference="ModelValue_195"/>
<StateTemplateVariable objectReference="ModelValue_196"/>
<StateTemplateVariable objectReference="ModelValue_197"/>
<StateTemplateVariable objectReference="ModelValue_198"/>
<StateTemplateVariable objectReference="ModelValue_199"/>
<StateTemplateVariable objectReference="ModelValue_200"/>
<StateTemplateVariable objectReference="ModelValue_201"/>
<StateTemplateVariable objectReference="ModelValue_202"/>
<StateTemplateVariable objectReference="ModelValue_203"/>
<StateTemplateVariable objectReference="ModelValue_204"/>
<StateTemplateVariable objectReference="ModelValue_205"/>
<StateTemplateVariable objectReference="ModelValue_206"/>
<StateTemplateVariable objectReference="ModelValue_207"/>
<StateTemplateVariable objectReference="ModelValue_208"/>
<StateTemplateVariable objectReference="ModelValue_209"/>
<StateTemplateVariable objectReference="ModelValue_212"/>
<StateTemplateVariable objectReference="Metabolite_52"/>
<StateTemplateVariable objectReference="Metabolite_43"/>
<StateTemplateVariable objectReference="Compartment_3"/>
<StateTemplateVariable objectReference="Compartment_4"/>
<StateTemplateVariable objectReference="Compartment_5"/>
<StateTemplateVariable objectReference="ModelValue_108"/>
<StateTemplateVariable objectReference="ModelValue_109"/>
<StateTemplateVariable objectReference="ModelValue_110"/>
<StateTemplateVariable objectReference="ModelValue_111"/>
<StateTemplateVariable objectReference="ModelValue_112"/>
<StateTemplateVariable objectReference="ModelValue_8"/>
<StateTemplateVariable objectReference="ModelValue_7"/>
<StateTemplateVariable objectReference="ModelValue_114"/>
<StateTemplateVariable objectReference="ModelValue_115"/>
<StateTemplateVariable objectReference="ModelValue_116"/>
<StateTemplateVariable objectReference="ModelValue_117"/>
<StateTemplateVariable objectReference="ModelValue_118"/>
<StateTemplateVariable objectReference="ModelValue_120"/>
<StateTemplateVariable objectReference="ModelValue_121"/>
<StateTemplateVariable objectReference="ModelValue_123"/>
<StateTemplateVariable objectReference="ModelValue_124"/>
<StateTemplateVariable objectReference="ModelValue_125"/>
<StateTemplateVariable objectReference="ModelValue_126"/>
<StateTemplateVariable objectReference="ModelValue_128"/>
<StateTemplateVariable objectReference="ModelValue_129"/>
<StateTemplateVariable objectReference="ModelValue_132"/>
<StateTemplateVariable objectReference="ModelValue_133"/>
<StateTemplateVariable objectReference="ModelValue_134"/>
<StateTemplateVariable objectReference="ModelValue_135"/>
<StateTemplateVariable objectReference="ModelValue_136"/>
<StateTemplateVariable objectReference="ModelValue_137"/>
<StateTemplateVariable objectReference="ModelValue_138"/>
<StateTemplateVariable objectReference="ModelValue_139"/>
<StateTemplateVariable objectReference="ModelValue_140"/>
<StateTemplateVariable objectReference="ModelValue_142"/>
<StateTemplateVariable objectReference="ModelValue_143"/>
<StateTemplateVariable objectReference="ModelValue_144"/>
<StateTemplateVariable objectReference="ModelValue_145"/>
<StateTemplateVariable objectReference="ModelValue_146"/>
<StateTemplateVariable objectReference="ModelValue_148"/>
<StateTemplateVariable objectReference="ModelValue_149"/>
<StateTemplateVariable objectReference="ModelValue_150"/>
<StateTemplateVariable objectReference="ModelValue_151"/>
<StateTemplateVariable objectReference="ModelValue_152"/>
<StateTemplateVariable objectReference="ModelValue_153"/>
<StateTemplateVariable objectReference="ModelValue_154"/>
<StateTemplateVariable objectReference="ModelValue_155"/>
<StateTemplateVariable objectReference="ModelValue_156"/>
<StateTemplateVariable objectReference="ModelValue_157"/>
<StateTemplateVariable objectReference="ModelValue_158"/>
<StateTemplateVariable objectReference="ModelValue_159"/>
<StateTemplateVariable objectReference="ModelValue_160"/>
<StateTemplateVariable objectReference="ModelValue_161"/>
<StateTemplateVariable objectReference="ModelValue_162"/>
<StateTemplateVariable objectReference="ModelValue_163"/>
<StateTemplateVariable objectReference="ModelValue_164"/>
<StateTemplateVariable objectReference="ModelValue_165"/>
<StateTemplateVariable objectReference="ModelValue_166"/>
<StateTemplateVariable objectReference="ModelValue_167"/>
<StateTemplateVariable objectReference="ModelValue_168"/>
<StateTemplateVariable objectReference="ModelValue_169"/>
<StateTemplateVariable objectReference="ModelValue_170"/>
<StateTemplateVariable objectReference="ModelValue_172"/>
<StateTemplateVariable objectReference="ModelValue_173"/>
<StateTemplateVariable objectReference="ModelValue_174"/>
<StateTemplateVariable objectReference="ModelValue_175"/>
<StateTemplateVariable objectReference="ModelValue_176"/>
<StateTemplateVariable objectReference="ModelValue_177"/>
<StateTemplateVariable objectReference="ModelValue_178"/>
<StateTemplateVariable objectReference="ModelValue_180"/>
<StateTemplateVariable objectReference="ModelValue_181"/>
<StateTemplateVariable objectReference="ModelValue_183"/>
<StateTemplateVariable objectReference="ModelValue_184"/>
<StateTemplateVariable objectReference="ModelValue_189"/>
<StateTemplateVariable objectReference="ModelValue_190"/>
<StateTemplateVariable objectReference="ModelValue_192"/>
<StateTemplateVariable objectReference="ModelValue_193"/>
<StateTemplateVariable objectReference="ModelValue_210"/>
<StateTemplateVariable objectReference="ModelValue_211"/>
<StateTemplateVariable objectReference="ModelValue_213"/>
<StateTemplateVariable objectReference="ModelValue_214"/>
<StateTemplateVariable objectReference="ModelValue_215"/>
<StateTemplateVariable objectReference="ModelValue_217"/>
<StateTemplateVariable objectReference="ModelValue_218"/>
</StateTemplate>
<InitialState type="initialState">
0 0 7131.4437299996334 3611387.4722043518 2318.7564433152638 83411.493122878295 348205.76605032221 444478.39400965557 27112.892084477469 16.741821099107149 7553510.5629981197 5314621.6602560114 2348541.369331039 102415.9970892102 505973.20938342536 1915.894621127193 0 7798673.6180500006 926214.74297503615 7212745.4386496814 428562.47568196338 10257237.8075299 926214.74297503615 0 275273.76400187978 432.74067697274342 13824.709350325529 2514162.666743997 93.928768960989473 0.0025000000000000001 0.0001142412732544542 0.00022197169318651728 18.500918641635661 0.00022197169318651728 0 0.0002933226422510503 0.00031982700000000001 0 0.00089299602995035509 0.0010274126244695619 0.84365297237173797 0.035803860144060298 0.0010274126244695619 1.0000000000000001e-05 1.285674999999997 0.49124019999999791 0.3644160000000003 0.68185023999999872 0.65134631200000026 0.82302954400000106 1.6984982995744289e-07 0.55988479999999918 8.8649644985023138e-06 8.4018813742249228e-07 1.7032568987969644e-05 4.5710276111230481e-07 2.2956466042167914e-08 4.1748646153082307e-06 1.6591419781269655e-06 1.8353002812203092e-07 0 917.49835381634625 7828784.3269999996 2.5900000000000002e-06 7.9999999999999996e-07 1.2999999999999999e-05 0.22584699999999999 5.9999253986099763 214.511 8.6072734027274997e-08 0.002126924084237061 1.0000000000000001e-05 1.00000000002221e-05 9.7980800000000006e-06 1.0000000000000001e-05 4.9291e-05 5.0000000000000002e-05 0.0001 0.0050000000000000001 0.038080424418151397 0.000100000000000222 0.0019999999999997802 0.59989342964577941 18.500918641635661 0.00374704364447229 0.117842 7.9497024021163017e-05 9.9999999999999995e-07 0.000100000000000222 0.000100000000000222 0.23262432287335619 3.6929099999999999 0.00120941 0.0016361306255064201 11501.848605491499 2.5904620308721599e-05 0.00071082263811762803 0.000221888641398861 0.000115242287512479 0.332175 0.0099999999999997799 0.00091336958216119905 1.0000000002220399e-06 1.0937545446161601 0 1.22913885610405e-05 2.1819503787823699e-05 1.0000000002220399e-06 0.83406985346583096 0 5.97504797065566e-06 2.1894167810831798e-06 0.000171416922199217 0.58439602675956803 0.050715716095883802 145028.78158363799 584678.80956640502 21395.245793948801 1491678.2351977001 28373108.944711499 1.8e-05 0.00040000000000000002 16.832999999999998 0.00092400000000000002 6.1442899999999994e-05 197139.21763645901 0.102372088824604 3050644.1138216699 2.5647334845410801 549341.56606688304 0.00025145997620859502 0.00053155456244858516 0.84365297237173797 0.035803860144060298 0.00089299602995035509 1.5942540684736069e-05 0.00050000000000000001 1.758629979014617e-06 0 0 0 0 0 9.9999999999999995e-08 0
</InitialState>
</Model>
<ListOfTasks>
<Task key="Task_12" name="Steady-State" type="steadyState" scheduled="false" updateModel="false">
<Report reference="Report_10" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="JacobianRequested" type="bool" value="1"/>
<Parameter name="StabilityAnalysisRequested" type="bool" value="1"/>
</Problem>
<Method name="Enhanced Newton" type="EnhancedNewton">
<Parameter name="Resolution" type="unsignedFloat" value="1.0000000000000001e-09"/>
<Parameter name="Derivation Factor" type="unsignedFloat" value="0.001"/>
<Parameter name="Use Newton" type="bool" value="1"/>
<Parameter name="Use Integration" type="bool" value="1"/>
<Parameter name="Use Back Integration" type="bool" value="1"/>
<Parameter name="Accept Negative Concentrations" type="bool" value="0"/>
<Parameter name="Iteration Limit" type="unsignedInteger" value="50"/>
<Parameter name="Maximum duration for forward integration" type="unsignedFloat" value="1000000000"/>
<Parameter name="Maximum duration for backward integration" type="unsignedFloat" value="1000000"/>
</Method>
</Task>
<Task key="Task_11" name="Time-Course" type="timeCourse" scheduled="true" updateModel="false">
<Report reference="Report_2" target="EventTest30.1.txt" append="0" confirmOverwrite="0"/>
<Problem>
<Parameter name="AutomaticStepSize" type="bool" value="0"/>
<Parameter name="StepNumber" type="unsignedInteger" value="200"/>
<Parameter name="StepSize" type="float" value="5000"/>
<Parameter name="Duration" type="float" value="1000000"/>
<Parameter name="TimeSeriesRequested" type="bool" value="0"/>
<Parameter name="OutputStartTime" type="float" value="10000"/>
<Parameter name="Output Event" type="bool" value="0"/>
<Parameter name="Start in Steady State" type="bool" value="0"/>
<Parameter name="Continue on Simultaneous Events" type="bool" value="1"/>
</Problem>
<Method name="Deterministic (LSODA)" type="Deterministic(LSODA)">
<Parameter name="Integrate Reduced Model" type="bool" value="0"/>
<Parameter name="Relative Tolerance" type="unsignedFloat" value="9.9999999999999995e-08"/>
<Parameter name="Absolute Tolerance" type="unsignedFloat" value="1e-13"/>
<Parameter name="Max Internal Steps" type="unsignedInteger" value="10000"/>
<Parameter name="Max Internal Step Size" type="unsignedFloat" value="0"/>
</Method>
</Task>
<Task key="Task_10" name="Scan" type="scan" scheduled="false" updateModel="false">
<Problem>
<Parameter name="Subtask" type="unsignedInteger" value="1"/>
<ParameterGroup name="ScanItems">
</ParameterGroup>
<Parameter name="Output in subtask" type="bool" value="1"/>
<Parameter name="Adjust initial conditions" type="bool" value="0"/>
</Problem>
<Method name="Scan Framework" type="ScanFramework">
</Method>
</Task>
<Task key="Task_9" name="Elementary Flux Modes" type="fluxMode" scheduled="false" updateModel="false">
<Report reference="Report_19" target="" append="1" confirmOverwrite="1"/>
<Problem>
</Problem>
<Method name="EFM Algorithm" type="EFMAlgorithm">
</Method>
</Task>
<Task key="Task_8" name="Optimization" type="optimization" scheduled="false" updateModel="false">
<Report reference="Report_9" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="Subtask" type="cn" value="CN=Root,Vector=TaskList[Steady-State]"/>
<ParameterText name="ObjectiveExpression" type="expression">
<CN=Root,Vector=TaskList[Steady-State],Eigen Values=Eigenvalues of reduced system Jacobian,Reference=Maximum real part of complex eigenvalue>
</ParameterText>
<Parameter name="Maximize" type="bool" value="1"/>
<Parameter name="Randomize Start Values" type="bool" value="0"/>
<Parameter name="Calculate Statistics" type="bool" value="1"/>
<ParameterGroup name="OptimizationItemList">
<ParameterGroup name="OptimizationItem">
<Parameter name="LowerBound" type="cn" value="9.79808e-006"/>
<Parameter name="ObjectCN" type="cn" value="CN=Root,Model=beuke1,Vector=Values[IkBa_deg_cyt_k],Reference=InitialValue"/>
<Parameter name="StartValue" type="float" value="9.7980800000000006e-06"/>
<Parameter name="UpperBound" type="cn" value="1.46971e-005"/>
</ParameterGroup>
<ParameterGroup name="OptimizationItem">
<Parameter name="LowerBound" type="cn" value="3.28606e-005"/>
<Parameter name="ObjectCN" type="cn" value="CN=Root,Model=beuke1,Vector=Values[IkBa_mRNA_deg_cyt_k],Reference=InitialValue"/>
<Parameter name="StartValue" type="float" value="4.9291e-05"/>
<Parameter name="UpperBound" type="cn" value="4.9291e-005"/>
</ParameterGroup>
<ParameterGroup name="OptimizationItem">
<Parameter name="LowerBound" type="cn" value="0.117842"/>
<Parameter name="ObjectCN" type="cn" value="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_kM],Reference=InitialValue"/>
<Parameter name="StartValue" type="float" value="0.117842"/>
<Parameter name="UpperBound" type="cn" value="0.176763"/>
</ParameterGroup>
<ParameterGroup name="OptimizationItem">
<Parameter name="LowerBound" type="cn" value="7.9497e-005"/>
<Parameter name="ObjectCN" type="cn" value="CN=Root,Model=beuke1,Vector=Values[IkBa_transcription_elongation_kbasal],Reference=InitialValue"/>
<Parameter name="StartValue" type="float" value="7.9497024021163017e-05"/>
<Parameter name="UpperBound" type="cn" value="0.000119245"/>
</ParameterGroup>
<ParameterGroup name="OptimizationItem">
<Parameter name="LowerBound" type="cn" value="0.000806272"/>
<Parameter name="ObjectCN" type="cn" value="CN=Root,Model=beuke1,Vector=Values[IkBa_translation_vmax],Reference=InitialValue"/>
<Parameter name="StartValue" type="float" value="0.00120941"/>
<Parameter name="UpperBound" type="cn" value="0.00120941"/>
</ParameterGroup>
</ParameterGroup>
<ParameterGroup name="OptimizationConstraintList">
</ParameterGroup>
</Problem>
<Method name="Particle Swarm" type="ParticleSwarm">
<Parameter name="Iteration Limit" type="unsignedInteger" value="500"/>
<Parameter name="Swarm Size" type="unsignedInteger" value="50"/>
<Parameter name="Std. Deviation" type="unsignedFloat" value="9.9999999999999995e-07"/>
<Parameter name="Random Number Generator" type="unsignedInteger" value="1"/>
<Parameter name="Seed" type="unsignedInteger" value="0"/>
<Parameter name="#LogVerbosity" type="unsignedInteger" value="0"/>
</Method>
</Task>
<Task key="Task_7" name="Parameter Estimation" type="parameterFitting" scheduled="false" updateModel="false">
<Report reference="Report_8" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="Maximize" type="bool" value="0"/>
<Parameter name="Randomize Start Values" type="bool" value="0"/>
<Parameter name="Calculate Statistics" type="bool" value="1"/>
<ParameterGroup name="OptimizationItemList">
</ParameterGroup>
<ParameterGroup name="OptimizationConstraintList">
</ParameterGroup>
<Parameter name="Steady-State" type="cn" value="CN=Root,Vector=TaskList[Steady-State]"/>
<Parameter name="Time-Course" type="cn" value="CN=Root,Vector=TaskList[Time-Course]"/>
<Parameter name="Create Parameter Sets" type="bool" value="0"/>
<ParameterGroup name="Experiment Set">
</ParameterGroup>
<ParameterGroup name="Validation Set">
<Parameter name="Weight" type="unsignedFloat" value="1"/>
<Parameter name="Threshold" type="unsignedInteger" value="5"/>
</ParameterGroup>
</Problem>
<Method name="Evolutionary Programming" type="EvolutionaryProgram">
<Parameter name="Number of Generations" type="unsignedInteger" value="200"/>
<Parameter name="Population Size" type="unsignedInteger" value="20"/>
<Parameter name="Random Number Generator" type="unsignedInteger" value="1"/>
<Parameter name="Seed" type="unsignedInteger" value="0"/>
<Parameter name="#LogVerbosity" type="unsignedInteger" value="0"/>
</Method>
</Task>
<Task key="Task_6" name="Metabolic Control Analysis" type="metabolicControlAnalysis" scheduled="false" updateModel="false">
<Report reference="Report_7" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="Steady-State" type="key" value="Task_12"/>
</Problem>
<Method name="MCA Method (Reder)" type="MCAMethod(Reder)">
<Parameter name="Modulation Factor" type="unsignedFloat" value="1.0000000000000001e-09"/>
<Parameter name="Use Reder" type="bool" value="1"/>
<Parameter name="Use Smallbone" type="bool" value="1"/>
</Method>
</Task>
<Task key="Task_5" name="Lyapunov Exponents" type="lyapunovExponents" scheduled="false" updateModel="false">
<Report reference="Report_6" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="ExponentNumber" type="unsignedInteger" value="3"/>
<Parameter name="DivergenceRequested" type="bool" value="1"/>
<Parameter name="TransientTime" type="float" value="0"/>
</Problem>
<Method name="Wolf Method" type="WolfMethod">
<Parameter name="Orthonormalization Interval" type="unsignedFloat" value="1"/>
<Parameter name="Overall time" type="unsignedFloat" value="1000"/>
<Parameter name="Relative Tolerance" type="unsignedFloat" value="9.9999999999999995e-07"/>
<Parameter name="Absolute Tolerance" type="unsignedFloat" value="9.9999999999999998e-13"/>
<Parameter name="Max Internal Steps" type="unsignedInteger" value="10000"/>
</Method>
</Task>
<Task key="Task_4" name="Time Scale Separation Analysis" type="timeScaleSeparationAnalysis" scheduled="false" updateModel="false">
<Report reference="Report_5" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="StepNumber" type="unsignedInteger" value="100"/>
<Parameter name="StepSize" type="float" value="0.01"/>
<Parameter name="Duration" type="float" value="1"/>
<Parameter name="TimeSeriesRequested" type="bool" value="1"/>
<Parameter name="OutputStartTime" type="float" value="0"/>
</Problem>
<Method name="ILDM (LSODA,Deuflhard)" type="TimeScaleSeparation(ILDM,Deuflhard)">
<Parameter name="Deuflhard Tolerance" type="unsignedFloat" value="9.9999999999999995e-07"/>
</Method>
</Task>
<Task key="Task_3" name="Sensitivities" type="sensitivities" scheduled="false" updateModel="false">
<Report reference="Report_4" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="SubtaskType" type="unsignedInteger" value="1"/>
<ParameterGroup name="TargetFunctions">
<Parameter name="SingleObject" type="cn" value=""/>
<Parameter name="ObjectListType" type="unsignedInteger" value="45"/>
</ParameterGroup>
<ParameterGroup name="ListOfVariables">
<ParameterGroup name="Variables">
<Parameter name="SingleObject" type="cn" value=""/>
<Parameter name="ObjectListType" type="unsignedInteger" value="41"/>
</ParameterGroup>
<ParameterGroup name="Variables">
<Parameter name="SingleObject" type="cn" value=""/>
<Parameter name="ObjectListType" type="unsignedInteger" value="0"/>
</ParameterGroup>
</ParameterGroup>
</Problem>
<Method name="Sensitivities Method" type="SensitivitiesMethod">
<Parameter name="Delta factor" type="unsignedFloat" value="0.001"/>
<Parameter name="Delta minimum" type="unsignedFloat" value="9.9999999999999998e-13"/>
</Method>
</Task>
<Task key="Task_2" name="Moieties" type="moieties" scheduled="false" updateModel="false">
<Problem>
</Problem>
<Method name="Householder Reduction" type="Householder">
</Method>
</Task>
<Task key="Task_1" name="Cross Section" type="crosssection" scheduled="false" updateModel="false">
<Problem>
<Parameter name="AutomaticStepSize" type="bool" value="0"/>
<Parameter name="StepNumber" type="unsignedInteger" value="100"/>
<Parameter name="StepSize" type="float" value="0.01"/>
<Parameter name="Duration" type="float" value="1"/>
<Parameter name="TimeSeriesRequested" type="bool" value="1"/>
<Parameter name="OutputStartTime" type="float" value="0"/>
<Parameter name="Output Event" type="bool" value="0"/>
<Parameter name="Start in Steady State" type="bool" value="0"/>
<Parameter name="LimitCrossings" type="bool" value="0"/>
<Parameter name="NumCrossingsLimit" type="unsignedInteger" value="0"/>
<Parameter name="LimitOutTime" type="bool" value="0"/>
<Parameter name="LimitOutCrossings" type="bool" value="0"/>
<Parameter name="PositiveDirection" type="bool" value="1"/>
<Parameter name="NumOutCrossingsLimit" type="unsignedInteger" value="0"/>
<Parameter name="LimitUntilConvergence" type="bool" value="0"/>
<Parameter name="ConvergenceTolerance" type="float" value="9.9999999999999995e-07"/>
<Parameter name="Threshold" type="float" value="0"/>
<Parameter name="DelayOutputUntilConvergence" type="bool" value="0"/>
<Parameter name="OutputConvergenceTolerance" type="float" value="9.9999999999999995e-07"/>
<ParameterText name="TriggerExpression" type="expression">
</ParameterText>
<Parameter name="SingleVariable" type="cn" value=""/>
<Parameter name="Continue on Simultaneous Events" type="bool" value="0"/>
</Problem>
<Method name="Deterministic (LSODA)" type="Deterministic(LSODA)">
<Parameter name="Integrate Reduced Model" type="bool" value="0"/>
<Parameter name="Relative Tolerance" type="unsignedFloat" value="9.9999999999999995e-07"/>
<Parameter name="Absolute Tolerance" type="unsignedFloat" value="9.9999999999999998e-13"/>
<Parameter name="Max Internal Steps" type="unsignedInteger" value="10000"/>
<Parameter name="Max Internal Step Size" type="unsignedFloat" value="0"/>
</Method>
</Task>
<Task key="Task_13" name="Linear Noise Approximation" type="linearNoiseApproximation" scheduled="false" updateModel="false">
<Report reference="Report_3" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="Steady-State" type="key" value="Task_12"/>
</Problem>
<Method name="Linear Noise Approximation" type="LinearNoiseApproximation">
</Method>
</Task>
</ListOfTasks>
<ListOfReports>
<Report key="Report_10" name="Steady-State" taskType="steadyState" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Footer>
<Object cn="CN=Root,Vector=TaskList[Steady-State]"/>
</Footer>
</Report>
<Report key="Report_19" name="Elementary Flux Modes" taskType="fluxMode" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Footer>
<Object cn="CN=Root,Vector=TaskList[Elementary Flux Modes],Object=Result"/>
</Footer>
</Report>
<Report key="Report_9" name="Optimization" taskType="optimization" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Header>
<Object cn="CN=Root,Vector=TaskList[Optimization],Object=Description"/>
<Object cn="String=\[Function Evaluations\]"/>
<Object cn="Separator=	"/>
<Object cn="String=\[Best Value\]"/>
<Object cn="Separator=	"/>
<Object cn="String=\[Best Parameters\]"/>
</Header>
<Body>
<Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Function Evaluations"/>
<Object cn="Separator=	"/>
<Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Best Value"/>
<Object cn="Separator=	"/>
<Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Best Parameters"/>
</Body>
<Footer>
<Object cn="String=
"/>
<Object cn="CN=Root,Vector=TaskList[Optimization],Object=Result"/>
</Footer>
</Report>
<Report key="Report_8" name="Parameter Estimation" taskType="parameterFitting" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Header>
<Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Object=Description"/>
<Object cn="String=\[Function Evaluations\]"/>
<Object cn="Separator=	"/>
<Object cn="String=\[Best Value\]"/>
<Object cn="Separator=	"/>
<Object cn="String=\[Best Parameters\]"/>
</Header>
<Body>
<Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Problem=Parameter Estimation,Reference=Function Evaluations"/>
<Object cn="Separator=	"/>
<Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Problem=Parameter Estimation,Reference=Best Value"/>
<Object cn="Separator=	"/>
<Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Problem=Parameter Estimation,Reference=Best Parameters"/>
</Body>
<Footer>
<Object cn="String=
"/>
<Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Object=Result"/>
</Footer>
</Report>
<Report key="Report_7" name="Metabolic Control Analysis" taskType="metabolicControlAnalysis" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Header>
<Object cn="CN=Root,Vector=TaskList[Metabolic Control Analysis],Object=Description"/>
</Header>
<Footer>
<Object cn="String=
"/>
<Object cn="CN=Root,Vector=TaskList[Metabolic Control Analysis],Object=Result"/>
</Footer>
</Report>
<Report key="Report_6" name="Lyapunov Exponents" taskType="lyapunovExponents" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Header>
<Object cn="CN=Root,Vector=TaskList[Lyapunov Exponents],Object=Description"/>
</Header>
<Footer>
<Object cn="String=
"/>
<Object cn="CN=Root,Vector=TaskList[Lyapunov Exponents],Object=Result"/>
</Footer>
</Report>
<Report key="Report_5" name="Time Scale Separation Analysis" taskType="timeScaleSeparationAnalysis" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Header>
<Object cn="CN=Root,Vector=TaskList[Time Scale Separation Analysis],Object=Description"/>
</Header>
<Footer>
<Object cn="String=
"/>
<Object cn="CN=Root,Vector=TaskList[Time Scale Separation Analysis],Object=Result"/>
</Footer>
</Report>
<Report key="Report_4" name="Sensitivities" taskType="sensitivities" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Header>
<Object cn="CN=Root,Vector=TaskList[Sensitivities],Object=Description"/>
</Header>
<Footer>
<Object cn="String=
"/>
<Object cn="CN=Root,Vector=TaskList[Sensitivities],Object=Result"/>
</Footer>
</Report>
<Report key="Report_3" name="Linear Noise Approximation" taskType="linearNoiseApproximation" separator="	" precision="6">
<Comment>
Automatically generated report.
</Comment>
<Header>
<Object cn="CN=Root,Vector=TaskList[Linear Noise Approximation],Object=Description"/>
</Header>
<Footer>
<Object cn="String=
"/>
<Object cn="CN=Root,Vector=TaskList[Linear Noise Approximation],Object=Result"/>
</Footer>
</Report>
<Report key="Report_2" name="Time, Concentrations, Volumes, and Global Quantity Values" taskType="timeCourse" separator="	" precision="6">
<Comment>
A table of time, variable species concentrations, variable compartment volumes, and variable global quantity values.
</Comment>
<Table printTitle="1">
<Object cn="CN=Root,Model=beuke1,Reference=Time"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[LPS],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFR1],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFa:TNFR1],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_mRNA],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_pre_mRNA_1],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_pre_mRNA_2],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1_P],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_2P],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65-IkBa],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_P],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_mRNA],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[JNK],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[JNK_P],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[TNFR1],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[TNFa:TNFR1],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38_P],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb_p],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65-IkBa],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65_P],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_p],Reference=Concentration"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[IkBa_nuclear_export_k],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_dissociation_k],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_vmax],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_kcat],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_vmax],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[JNK_active_phosphorylation_vmax],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[MSK1_activation_vmax],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_dissociation],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[p38_active_phosphorylation_vmax],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[p65_2P_dephosphorylation],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphrylation_vmax],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kM],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kcat],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_vmax],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[p65_nuclear_export_k],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa_mRNA],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_JNK_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_MSK_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_p38_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_p65],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[scaled_p65_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_mRNA],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_JNK_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_MSK_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p38_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p65],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p65_P],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[min],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[max],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[amp],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[time1],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[period],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[avg],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[int],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[sign],Reference=Value"/>
<Object cn="CN=Root,Model=beuke1,Vector=Values[counter],Reference=Value"/>
</Table>
</Report>
</ListOfReports>
<ListOfPlots>
<PlotSpecification name="plot_1" type="Plot2D" active="1" taskTypes="">
<Parameter name="log X" type="bool" value="0"/>
<Parameter name="log Y" type="bool" value="0"/>
<ListOfPlotItems>
<PlotItem name="Values[amp]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[amp],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[avg]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[avg],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[max]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[max],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[min]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[min],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[period]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[period],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65{cytoplasm}]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="p65{cytoplasm}.Rate|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Rate"/>
</ListOfChannels>
</PlotItem>
</ListOfPlotItems>
</PlotSpecification>
<PlotSpecification name="plot" type="Plot2D" active="1" taskTypes="">
<Parameter name="log X" type="bool" value="0"/>
<Parameter name="log Y" type="bool" value="0"/>
<ListOfPlotItems>
<PlotItem name="Values[counter]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[counter],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[sign]|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[sign],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="p65{cytoplasm}.Rate|Time" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Rate"/>
</ListOfChannels>
</PlotItem>
</ListOfPlotItems>
</PlotSpecification>
<PlotSpecification name="Concentrations, Volumes, and Global Quantity Values" type="Plot2D" active="0" taskTypes="">
<Parameter name="log X" type="bool" value="0"/>
<Parameter name="log Y" type="bool" value="0"/>
<ListOfPlotItems>
<PlotItem name="Values[IkBa:p65_dissociation_k]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_dissociation_k],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[IkBa:p65_phosphorylation_vmax]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[IkBa:p65_phosphorylation_vmax],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[IkBa_nuclear_export_k]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[IkBa_nuclear_export_k],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[IkBa_phosphorylation_kcat]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_kcat],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[IkBa_phosphorylation_vmax]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[IkBa_phosphorylation_vmax],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[JNK_active_phosphorylation_vmax]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[JNK_active_phosphorylation_vmax],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[MSK1_activation_vmax]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[MSK1_activation_vmax],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[amp]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[amp],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[avg]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[avg],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[counter]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[counter],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[int]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[int],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[k_TNFa:TNFR1_dissociation]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[k_TNFa:TNFR1_dissociation],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[max]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[max],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[min]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[min],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[p38_active_phosphorylation_vmax]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[p38_active_phosphorylation_vmax],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[p65_2P_dephosphorylation]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[p65_2P_dephosphorylation],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[p65_MSK1_phosphrylation_vmax]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[p65_MSK1_phosphrylation_vmax],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[p65_P_MSK1_phosphrylation_kM]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kM],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[p65_P_MSK1_phosphrylation_kcat]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_kcat],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[p65_P_MSK1_phosphrylation_vmax]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[p65_P_MSK1_phosphrylation_vmax],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[p65_nuclear_export_k]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[p65_nuclear_export_k],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[period]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[period],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_IkBa]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_IkBa_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_IkBa_mRNA]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_IkBa_mRNA],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_JNK_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_JNK_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_MSK_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_MSK_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_p38_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_p38_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_p65]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_p65],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[scaled_p65_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[scaled_p65_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[sign]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[sign],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[time1]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[time1],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_IkBa]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_IkBa_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_IkBa_mRNA]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_IkBa_mRNA],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_JNK_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_JNK_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_MSK_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_MSK_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_p38_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p38_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_p65]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p65],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="Values[unscaled_p65_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Values[unscaled_p65_P],Reference=Value"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IKKb]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IKKb_p]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IKKb_p],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IkBa_mRNA{cytoplasm}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_mRNA],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IkBa_mRNA{nucleus}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_mRNA],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IkBa_p]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa_p],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IkBa_pre_mRNA_1]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_pre_mRNA_1],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IkBa_pre_mRNA_2]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa_pre_mRNA_2],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IkBa{cytoplasm}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[IkBa],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[IkBa{nucleus}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[IkBa],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[JNK]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[JNK],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[JNK_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[JNK_P],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[LPS]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[LPS],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[MSK1]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[MSK1_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[MSK1_P],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[TNFR1{EL}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFR1],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[TNFR1{cytoplasm}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[TNFR1],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[TNFa:TNFR1{EL}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[EL],Vector=Metabolites[TNFa:TNFR1],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[TNFa:TNFR1{cytoplasm}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[TNFa:TNFR1],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p38]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p38_P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p38_P],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65-IkBa{cytoplasm}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65-IkBa],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65-IkBa{nucleus}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65-IkBa],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65_2P]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_2P],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65_P{cytoplasm}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65_P],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65_P{nucleus}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65_P],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65{cytoplasm}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[cytoplasm],Vector=Metabolites[p65],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
<PlotItem name="[p65{nucleus}]" type="Curve2D">
<Parameter name="Line type" type="unsignedInteger" value="0"/>
<Parameter name="Line subtype" type="unsignedInteger" value="0"/>
<Parameter name="Line width" type="unsignedFloat" value="1"/>
<Parameter name="Symbol subtype" type="unsignedInteger" value="0"/>
<Parameter name="Color" type="string" value="auto"/>
<Parameter name="Recording Activity" type="string" value="during"/>
<ListOfChannels>
<ChannelSpec cn="CN=Root,Model=beuke1,Reference=Time"/>
<ChannelSpec cn="CN=Root,Model=beuke1,Vector=Compartments[nucleus],Vector=Metabolites[p65],Reference=Concentration"/>
</ListOfChannels>
</PlotItem>
</ListOfPlotItems>
</PlotSpecification>
</ListOfPlots>
<GUI>
</GUI>
<SBMLReference file="beuke1.xml">
<SBMLMap SBMLid="Complex_association_c" COPASIkey="Reaction_49"/>
<SBMLMap SBMLid="Complex_degradation_IkBa_c" COPASIkey="Reaction_50"/>
<SBMLMap SBMLid="Complex_degradation_IkBa_n" COPASIkey="Reaction_51"/>
<SBMLMap SBMLid="Complex_degradation_p65_c" COPASIkey="Reaction_52"/>
<SBMLMap SBMLid="Complex_degradation_p65_n" COPASIkey="Reaction_53"/>
<SBMLMap SBMLid="Complex_nuclear_shuttle" COPASIkey="Reaction_54"/>
<SBMLMap SBMLid="EL" COPASIkey="Compartment_3"/>
<SBMLMap SBMLid="IKK_phosphorylation" COPASIkey="Reaction_55"/>
<SBMLMap SBMLid="IKKb_active_phosphorylation_kA" COPASIkey="ModelValue_108"/>
<SBMLMap SBMLid="IKKb_active_phosphorylation_kM" COPASIkey="ModelValue_109"/>
<SBMLMap SBMLid="IKKb_active_phosphorylation_vmax" COPASIkey="ModelValue_110"/>
<SBMLMap SBMLid="IKKb_basal_phosphoylation_k" COPASIkey="ModelValue_111"/>
<SBMLMap SBMLid="IKKb_dephopshorylation_k" COPASIkey="ModelValue_112"/>
<SBMLMap SBMLid="IkBa_cytoplasm" COPASIkey="Metabolite_37"/>
<SBMLMap SBMLid="IkBa_deg_complex_cyt_k" COPASIkey="ModelValue_8"/>
<SBMLMap SBMLid="IkBa_deg_complex_nuc_k" COPASIkey="ModelValue_7"/>
<SBMLMap SBMLid="IkBa_deg_cyt_k" COPASIkey="ModelValue_114"/>
<SBMLMap SBMLid="IkBa_deg_nuc_k" COPASIkey="ModelValue_115"/>
<SBMLMap SBMLid="IkBa_degradation_c" COPASIkey="Reaction_56"/>
<SBMLMap SBMLid="IkBa_degradation_n" COPASIkey="Reaction_57"/>
<SBMLMap SBMLid="IkBa_mRNA_cytoplasm" COPASIkey="Metabolite_38"/>
<SBMLMap SBMLid="IkBa_mRNA_deg_cyt_k" COPASIkey="ModelValue_116"/>
<SBMLMap SBMLid="IkBa_mRNA_deg_nuc_k" COPASIkey="ModelValue_117"/>
<SBMLMap SBMLid="IkBa_mRNA_degradation_c" COPASIkey="Reaction_58"/>
<SBMLMap SBMLid="IkBa_mRNA_degradation_n" COPASIkey="Reaction_59"/>
<SBMLMap SBMLid="IkBa_mRNA_nucleus" COPASIkey="Metabolite_49"/>
<SBMLMap SBMLid="IkBa_mRNA_transport" COPASIkey="Reaction_60"/>
<SBMLMap SBMLid="IkBa_mRNA_transport_k" COPASIkey="ModelValue_118"/>
<SBMLMap SBMLid="IkBa_nuclear_export_k" COPASIkey="ModelValue_119"/>
<SBMLMap SBMLid="IkBa_nuclear_import_k" COPASIkey="ModelValue_120"/>
<SBMLMap SBMLid="IkBa_nuclear_shuttle" COPASIkey="Reaction_61"/>
<SBMLMap SBMLid="IkBa_p65_association_k" COPASIkey="ModelValue_121"/>
<SBMLMap SBMLid="IkBa_p65_dissociation_k" COPASIkey="ModelValue_122"/>
<SBMLMap SBMLid="IkBa_p65_nuclear_export_k" COPASIkey="ModelValue_123"/>
<SBMLMap SBMLid="IkBa_p65_nuclear_import_k" COPASIkey="ModelValue_124"/>
<SBMLMap SBMLid="IkBa_p65_phosphorylation_kM" COPASIkey="ModelValue_125"/>
<SBMLMap SBMLid="IkBa_p65_phosphorylation_kcat" COPASIkey="ModelValue_126"/>
<SBMLMap SBMLid="IkBa_p65_phosphorylation_vmax" COPASIkey="ModelValue_127"/>
<SBMLMap SBMLid="IkBa_p_active_degradation_k" COPASIkey="ModelValue_128"/>
<SBMLMap SBMLid="IkBa_phosphorylation" COPASIkey="Reaction_62"/>
<SBMLMap SBMLid="IkBa_phosphorylation_kM" COPASIkey="ModelValue_129"/>
<SBMLMap SBMLid="IkBa_phosphorylation_kcat" COPASIkey="ModelValue_130"/>
<SBMLMap SBMLid="IkBa_phosphorylation_vmax" COPASIkey="ModelValue_131"/>
<SBMLMap SBMLid="IkBa_pre_mRNA_1" COPASIkey="Metabolite_47"/>
<SBMLMap SBMLid="IkBa_pre_mRNA_2" COPASIkey="Metabolite_29"/>
<SBMLMap SBMLid="IkBa_transcription_elongation_1" COPASIkey="Reaction_63"/>
<SBMLMap SBMLid="IkBa_transcription_elongation_2" COPASIkey="Reaction_64"/>
<SBMLMap SBMLid="IkBa_transcription_elongation_kbasal" COPASIkey="ModelValue_132"/>
<SBMLMap SBMLid="IkBa_transcription_initiation_kbasal" COPASIkey="ModelValue_133"/>
<SBMLMap SBMLid="IkBa_transcription_kA2_p65_P" COPASIkey="ModelValue_134"/>
<SBMLMap SBMLid="IkBa_transcription_kA3_p65_2P" COPASIkey="ModelValue_135"/>
<SBMLMap SBMLid="IkBa_transcription_kA_p65" COPASIkey="ModelValue_136"/>
<SBMLMap SBMLid="IkBa_translation" COPASIkey="Reaction_65"/>
<SBMLMap SBMLid="IkBa_translation_Km" COPASIkey="ModelValue_137"/>
<SBMLMap SBMLid="IkBa_translation_vmax" COPASIkey="ModelValue_138"/>
<SBMLMap SBMLid="JNK" COPASIkey="Metabolite_39"/>
<SBMLMap SBMLid="JNK_P" COPASIkey="Metabolite_40"/>
<SBMLMap SBMLid="JNK_active_phoshorylation_Km" COPASIkey="ModelValue_139"/>
<SBMLMap SBMLid="JNK_active_phosphorylation" COPASIkey="Reaction_66"/>
<SBMLMap SBMLid="JNK_active_phosphorylation_kcat" COPASIkey="ModelValue_140"/>
<SBMLMap SBMLid="JNK_active_phosphorylation_vmax" COPASIkey="ModelValue_141"/>
<SBMLMap SBMLid="JNK_basal_phosphorylation" COPASIkey="Reaction_67"/>
<SBMLMap SBMLid="JNK_basal_phosphorylation_k" COPASIkey="ModelValue_142"/>
<SBMLMap SBMLid="JNK_dephosphorylation" COPASIkey="Reaction_68"/>
<SBMLMap SBMLid="JNK_dephosphorylation_k" COPASIkey="ModelValue_143"/>
<SBMLMap SBMLid="LPS" COPASIkey="Metabolite_41"/>
<SBMLMap SBMLid="LPS_LSEC_degradation" COPASIkey="Reaction_69"/>
<SBMLMap SBMLid="LPS_LSEC_degradation_k" COPASIkey="ModelValue_144"/>
<SBMLMap SBMLid="LPS_MC_degradation" COPASIkey="Reaction_70"/>
<SBMLMap SBMLid="LPS_MC_degradation_k" COPASIkey="ModelValue_145"/>
<SBMLMap SBMLid="MSK1" COPASIkey="Metabolite_30"/>
<SBMLMap SBMLid="MSK1_P" COPASIkey="Metabolite_31"/>
<SBMLMap SBMLid="MSK1_activation" COPASIkey="Reaction_71"/>
<SBMLMap SBMLid="MSK1_activation_kM" COPASIkey="ModelValue_146"/>
<SBMLMap SBMLid="MSK1_activation_vmax" COPASIkey="ModelValue_147"/>
<SBMLMap SBMLid="MSK1_deactivation" COPASIkey="Reaction_72"/>
<SBMLMap SBMLid="MSK1_dephosphorylation_k" COPASIkey="ModelValue_148"/>
<SBMLMap SBMLid="MSK1_phosphorylation_kcat" COPASIkey="ModelValue_149"/>
<SBMLMap SBMLid="TNFR1_EL" COPASIkey="Metabolite_45"/>
<SBMLMap SBMLid="TNFR1_cytoplasm" COPASIkey="Metabolite_42"/>
<SBMLMap SBMLid="TNFR1_shuttle" COPASIkey="Reaction_73"/>
<SBMLMap SBMLid="TNFa_LSEC_transcription_elongation_k" COPASIkey="ModelValue_150"/>
<SBMLMap SBMLid="TNFa_LSEC_transcription_initiation_kA_LPS" COPASIkey="ModelValue_151"/>
<SBMLMap SBMLid="TNFa_LSEC_transcription_initiation_kbasal" COPASIkey="ModelValue_152"/>
<SBMLMap SBMLid="TNFa_LSEC_transcription_initiation_vA_LPS" COPASIkey="ModelValue_153"/>
<SBMLMap SBMLid="TNFa_LSEC_translation_k" COPASIkey="ModelValue_154"/>
<SBMLMap SBMLid="TNFa_MC_transcription_elongation_k" COPASIkey="ModelValue_155"/>
<SBMLMap SBMLid="TNFa_MC_transcription_initiation_kA_LPS" COPASIkey="ModelValue_156"/>
<SBMLMap SBMLid="TNFa_MC_transcription_initiation_kbasal" COPASIkey="ModelValue_157"/>
<SBMLMap SBMLid="TNFa_MC_transcription_initiation_vA_LPS" COPASIkey="ModelValue_158"/>
<SBMLMap SBMLid="TNFa_MC_translation_k" COPASIkey="ModelValue_159"/>
<SBMLMap SBMLid="TNFa_TNFR1_EL" COPASIkey="Metabolite_50"/>
<SBMLMap SBMLid="TNFa_TNFR1_association" COPASIkey="Reaction_74"/>
<SBMLMap SBMLid="TNFa_TNFR1_cytoplasm" COPASIkey="Metabolite_48"/>
<SBMLMap SBMLid="TNFa_TNFR1_internalisation" COPASIkey="Reaction_75"/>
<SBMLMap SBMLid="TNFa_degradation" COPASIkey="Reaction_76"/>
<SBMLMap SBMLid="TNFa_degradation_k" COPASIkey="ModelValue_160"/>
<SBMLMap SBMLid="TNFa_internal_degradation" COPASIkey="Reaction_77"/>
<SBMLMap SBMLid="TNFa_mRNA_LSEC_degradation_k" COPASIkey="ModelValue_161"/>
<SBMLMap SBMLid="TNFa_mRNA_MC_degradation_k" COPASIkey="ModelValue_162"/>
<SBMLMap SBMLid="basal_IKKb_phosphorylation" COPASIkey="Reaction_78"/>
<SBMLMap SBMLid="c1" COPASIkey="Compartment_4"/>
<SBMLMap SBMLid="default" COPASIkey="Compartment_5"/>
<SBMLMap SBMLid="k_IkBa" COPASIkey="ModelValue_163"/>
<SBMLMap SBMLid="k_IkBa_P" COPASIkey="ModelValue_164"/>
<SBMLMap SBMLid="k_IkBa_mRNA" COPASIkey="ModelValue_165"/>
<SBMLMap SBMLid="k_JNK_P" COPASIkey="ModelValue_166"/>
<SBMLMap SBMLid="k_MSK_P" COPASIkey="ModelValue_167"/>
<SBMLMap SBMLid="k_TNFR1_outer_membrane2vessicle_shuttle" COPASIkey="ModelValue_168"/>
<SBMLMap SBMLid="k_TNFR1_vessicle2outer_membrane_shuttle" COPASIkey="ModelValue_169"/>
<SBMLMap SBMLid="k_TNFa_TNFR1_association" COPASIkey="ModelValue_170"/>
<SBMLMap SBMLid="k_TNFa_TNFR1_dissociation" COPASIkey="ModelValue_171"/>
<SBMLMap SBMLid="k_TNFa_TNFR1_internalisation" COPASIkey="ModelValue_172"/>
<SBMLMap SBMLid="k_TNFa_internal_degradation" COPASIkey="ModelValue_173"/>
<SBMLMap SBMLid="k_p38_P" COPASIkey="ModelValue_174"/>
<SBMLMap SBMLid="k_p65" COPASIkey="ModelValue_175"/>
<SBMLMap SBMLid="k_p65_P" COPASIkey="ModelValue_176"/>
<SBMLMap SBMLid="p38" COPASIkey="Metabolite_51"/>
<SBMLMap SBMLid="p38_P" COPASIkey="Metabolite_46"/>
<SBMLMap SBMLid="p38_active_phoshorylation_Km" COPASIkey="ModelValue_177"/>
<SBMLMap SBMLid="p38_active_phosphorylation" COPASIkey="Reaction_79"/>
<SBMLMap SBMLid="p38_active_phosphorylation_kcat" COPASIkey="ModelValue_178"/>
<SBMLMap SBMLid="p38_active_phosphorylation_vmax" COPASIkey="ModelValue_179"/>
<SBMLMap SBMLid="p38_basal_phosphorylation" COPASIkey="Reaction_99"/>
<SBMLMap SBMLid="p38_basal_phosphorylation_k" COPASIkey="ModelValue_180"/>
<SBMLMap SBMLid="p38_dephosphorylation" COPASIkey="Reaction_98"/>
<SBMLMap SBMLid="p38_dephosphorylation_k" COPASIkey="ModelValue_181"/>
<SBMLMap SBMLid="p65_2P" COPASIkey="Metabolite_32"/>
<SBMLMap SBMLid="p65_2P_degradation" COPASIkey="Reaction_97"/>
<SBMLMap SBMLid="p65_2P_dephosphorylation" COPASIkey="ModelValue_182"/>
<SBMLMap SBMLid="p65_2P_dephosphorylation_0" COPASIkey="Reaction_96"/>
<SBMLMap SBMLid="p65_IkBa_nucleus" COPASIkey="Metabolite_33"/>
<SBMLMap SBMLid="p65_MSK1_phosphorylation_kM" COPASIkey="ModelValue_183"/>
<SBMLMap SBMLid="p65_MSK1_phosphrylation_kcat" COPASIkey="ModelValue_184"/>
<SBMLMap SBMLid="p65_MSK1_phosphrylation_vmax" COPASIkey="ModelValue_185"/>
<SBMLMap SBMLid="p65_P_MSK1_phosphrylation_kM" COPASIkey="ModelValue_186"/>
<SBMLMap SBMLid="p65_P_MSK1_phosphrylation_kcat" COPASIkey="ModelValue_187"/>
<SBMLMap SBMLid="p65_P_MSK1_phosphrylation_vmax" COPASIkey="ModelValue_188"/>
<SBMLMap SBMLid="p65_P_degradation_c" COPASIkey="Reaction_95"/>
<SBMLMap SBMLid="p65_P_degradation_n" COPASIkey="Reaction_94"/>
<SBMLMap SBMLid="p65_P_dephosphorylation_c" COPASIkey="Reaction_93"/>
<SBMLMap SBMLid="p65_P_dephosphorylation_k" COPASIkey="ModelValue_189"/>
<SBMLMap SBMLid="p65_P_dephosphorylation_n" COPASIkey="Reaction_92"/>
<SBMLMap SBMLid="p65_P_phosphorylation_MSK1" COPASIkey="Reaction_91"/>
<SBMLMap SBMLid="p65_cytoplasm" COPASIkey="Metabolite_44"/>
<SBMLMap SBMLid="p65_degradation_k" COPASIkey="ModelValue_190"/>
<SBMLMap SBMLid="p65_mRNA" COPASIkey="Metabolite_43"/>
<SBMLMap SBMLid="p65_nuclear_export_k" COPASIkey="ModelValue_191"/>
<SBMLMap SBMLid="p65_nuclear_import_k" COPASIkey="ModelValue_192"/>
<SBMLMap SBMLid="p65_nuclear_shuttle" COPASIkey="Reaction_90"/>
<SBMLMap SBMLid="p65_nucleus" COPASIkey="Metabolite_34"/>
<SBMLMap SBMLid="p65_phosphorylation_MSK1" COPASIkey="Reaction_89"/>
<SBMLMap SBMLid="p65_translation" COPASIkey="Reaction_88"/>
<SBMLMap SBMLid="p65_translation_k" COPASIkey="ModelValue_193"/>
<SBMLMap SBMLid="re10" COPASIkey="Reaction_87"/>
<SBMLMap SBMLid="re14" COPASIkey="Reaction_86"/>
<SBMLMap SBMLid="re15" COPASIkey="Reaction_85"/>
<SBMLMap SBMLid="re17" COPASIkey="Reaction_84"/>
<SBMLMap SBMLid="re19" COPASIkey="Reaction_83"/>
<SBMLMap SBMLid="re3" COPASIkey="Reaction_82"/>
<SBMLMap SBMLid="s11" COPASIkey="Metabolite_35"/>
<SBMLMap SBMLid="s14" COPASIkey="Metabolite_63"/>
<SBMLMap SBMLid="s15" COPASIkey="Metabolite_62"/>
<SBMLMap SBMLid="s16" COPASIkey="Metabolite_52"/>
<SBMLMap SBMLid="s19" COPASIkey="Metabolite_61"/>
<SBMLMap SBMLid="s3" COPASIkey="Metabolite_60"/>
<SBMLMap SBMLid="s5" COPASIkey="Metabolite_59"/>
<SBMLMap SBMLid="s8" COPASIkey="Metabolite_36"/>
<SBMLMap SBMLid="scaled_IkBa" COPASIkey="ModelValue_194"/>
<SBMLMap SBMLid="scaled_IkBa_P" COPASIkey="ModelValue_195"/>
<SBMLMap SBMLid="scaled_IkBa_mRNA" COPASIkey="ModelValue_196"/>
<SBMLMap SBMLid="scaled_JNK_P" COPASIkey="ModelValue_197"/>
<SBMLMap SBMLid="scaled_MSK_P" COPASIkey="ModelValue_198"/>
<SBMLMap SBMLid="scaled_p38_P" COPASIkey="ModelValue_199"/>
<SBMLMap SBMLid="scaled_p65" COPASIkey="ModelValue_200"/>
<SBMLMap SBMLid="scaled_p65_P" COPASIkey="ModelValue_201"/>
<SBMLMap SBMLid="unscaled_IkBa" COPASIkey="ModelValue_202"/>
<SBMLMap SBMLid="unscaled_IkBa_P" COPASIkey="ModelValue_203"/>
<SBMLMap SBMLid="unscaled_IkBa_mRNA" COPASIkey="ModelValue_204"/>
<SBMLMap SBMLid="unscaled_JNK_P" COPASIkey="ModelValue_205"/>
<SBMLMap SBMLid="unscaled_MSK_P" COPASIkey="ModelValue_206"/>
<SBMLMap SBMLid="unscaled_p38_P" COPASIkey="ModelValue_207"/>
<SBMLMap SBMLid="unscaled_p65" COPASIkey="ModelValue_208"/>
<SBMLMap SBMLid="unscaled_p65_P" COPASIkey="ModelValue_209"/>
</SBMLReference>
<ListOfUnitDefinitions>
<UnitDefinition key="Unit_0" name="meter" symbol="m">
<Expression>
m
</Expression>
</UnitDefinition>
<UnitDefinition key="Unit_2" name="second" symbol="s">
<Expression>
s
</Expression>
</UnitDefinition>
<UnitDefinition key="Unit_6" name="Avogadro" symbol="Avogadro">
<Expression>
Avogadro
</Expression>
</UnitDefinition>
<UnitDefinition key="Unit_8" name="item" symbol="#">
<Expression>
#
</Expression>
</UnitDefinition>
<UnitDefinition key="Unit_17" name="liter" symbol="l">
<Expression>
0.001*m^3
</Expression>
</UnitDefinition>
<UnitDefinition key="Unit_20" name="mole" symbol="mol">
<Expression>
Avogadro*#
</Expression>
</UnitDefinition>
</ListOfUnitDefinitions>
</COPASI>
| Component Pascal | 5 | SzVarga/COPASI | TestSuite/events/EventTest30.cps | [
"Artistic-2.0"
] |
sleep 2
t app appmode photo_burst
sleep 1
t app burst_settings 5-1
sleep 1
t app button shutter PR
sleep 9
poweroff yes
reboot yes | AGS Script | 1 | waltersgrey/autoexechack | BurstHacks/BurstAndTurnOff/5:1/Hero3PlusBlack/autoexec.ash | [
"MIT"
] |
#+TITLE: lang/scheme
#+DATE: July 23, 2019
#+SINCE: v2.0.9
#+STARTUP: inlineimages
* Table of Contents :TOC_3:noexport:
- [[#description][Description]]
- [[#module-flags][Module Flags]]
- [[#plugins][Plugins]]
- [[#prerequisites][Prerequisites]]
- [[#features][Features]]
- [[#commands][Commands]]
- [[#geiser][Geiser]]
* Description
This module provides an environment for hacking and having fun in scheme. It is
powered by [[https://www.nongnu.org/geiser/geiser_1.html#introduction][geiser]].
** Module Flags
+ =+chez=
+ =+chibi=
+ =+chicken=
+ =+gambit=
+ =+gauche=
+ =+guile=
+ =+kawa=
+ =+mit=
+ =+racket=
** Plugins
+ [[https://gitlab.com/jaor/geiser][geiser]]
+ [[https://github.com/nbfalcon/macrostep-geiser][macrostep-geiser]]
+ [[https://gitlab.com/emacs-geiser/chez][geiser-chez]] (if =+chez=)
+ [[https://gitlab.com/emacs-geiser/chibi][geiser-chibi]] (if =+chibi=)
+ [[https://gitlab.com/emacs-geiser/chicken][geiser-chicken]] (if =+chicken=)
+ [[https://gitlab.com/emacs-geiser/gambit][geiser-gambit]] (if =+gambit=)
+ [[https://gitlab.com/emacs-geiser/gauche][geiser-gauche]] (if =+gauche=)
+ [[https://gitlab.com/emacs-geiser/guile][geiser-guile]] (if =+guile=)
+ [[https://github.com/flatwhatson/flycheck-guile][flycheck-guile]] (if =+guile= and =:checkers syntax=)
+ [[https://gitlab.com/emacs-geiser/kawa][geiser-kawa]] (if =+kawa=)
+ [[https://gitlab.com/emacs-geiser/mit][geiser-mit]] (if =+mit=)
+ [[https://gitlab.com/emacs-geiser/racket][geiser-racket]] (if =+racket=)
* Prerequisites
This module requires you to have at least one of the supported schemes, namely:
- [[https://www.gnu.org/software/guile][Guile]] 2.2.0 or better
- [[https://call-cc.org][Chicken]] 4.8.0 or better
- [[https://www.gnu.org/software/mit-scheme][MIT/GNU Scheme]] 9.1.1 or better
- [[https://synthcode.com/scheme/chibi][Chibi Scheme]] 0.7.3 or better
- [[https://www.scheme.com][Chez Scheme]] 9.4 or better
Their executables must be present in your path for geiser to work properly.
* Features
** Commands
*** Geiser
| command | key / ex command | description |
|---------------------+------------------+----------------------|
| ~+scheme/open-repl~ | =:repl= | Open the Scheme Repl |
| | | |
| Org | 3 | leezu/doom-emacs | modules/lang/scheme/README.org | [
"MIT"
] |
{% extends 'partials/base.html.twig' %}
| Twig | 1 | AuroraOS/grav | plugins/simplesearch/templates/partials/simplesearch_base.html.twig | [
"MIT"
] |
package org.xtendroid.db
import android.app.Fragment
import android.content.Context
import java.util.List
import org.eclipse.xtend.lib.macro.Active
import org.eclipse.xtend.lib.macro.TransformationContext
import org.eclipse.xtend.lib.macro.TransformationParticipant
import org.eclipse.xtend.lib.macro.declaration.MutableClassDeclaration
import org.eclipse.xtend.lib.macro.declaration.MutableFieldDeclaration
import org.eclipse.xtend.lib.macro.declaration.MutableMemberDeclaration
import org.eclipse.xtend.lib.macro.declaration.Visibility
@Active(typeof(AndroidDatabaseProcessor))
annotation AndroidDatabase {
}
class AndroidDatabaseProcessor implements TransformationParticipant<MutableMemberDeclaration> {
override doTransform(List<? extends MutableMemberDeclaration> elements, TransformationContext context) {
elements.forEach[e|e.transform(context)]
}
def dispatch void transform(MutableClassDeclaration clazz, extension TransformationContext context) {
// extend BaseDbService
if (clazz.extendedClass == Object.newTypeReference()) {
clazz.extendedClass = BaseDbService.newTypeReference
}
// add singleton instance getter
clazz.addMethod("getDb") [
addParameter("activity", Context.newTypeReference)
setReturnType(clazz.newTypeReference())
setStatic(true)
body = ['''
return new «clazz.simpleName»(activity);
''']
]
// add a getter for fragments too
clazz.addMethod("getDb") [
addParameter("fragment", Fragment.newTypeReference)
setReturnType(clazz.newTypeReference())
setStatic(true)
body = ['''
return new «clazz.simpleName»(fragment.getActivity());
''']
]
// make constructors protected, use the getDb() methods above
clazz.declaredConstructors.forEach[c|
c.visibility = Visibility.PROTECTED
]
}
def dispatch void transform(MutableFieldDeclaration it, extension TransformationContext context) {
it.doTransform(context)
}
def doTransform(MutableFieldDeclaration field, extension TransformationContext context) {
}
}
| Xtend | 4 | kusl/Xtendroid | Xtendroid/src/org/xtendroid/db/AndroidDatabase.xtend | [
"MIT"
] |
import Int "mo:base/Int";
import Quicksort "Quicksort";
actor Main {
// Sort an array of integers.
public query func sort(xs : [Int]) : async [Int] {
return Quicksort.sortBy(xs, Int.compare);
};
};
| Modelica | 4 | DaveSimplifire/examples | motoko/quicksort/src/Main.mo | [
"Apache-2.0"
] |
# This file is distributed under the same license as the Django package.
#
# Translators:
# Claudio Fernandes <squeral@gmail.com>, 2015
# Jannis Leidel <jannis@leidel.info>, 2011
# jorgecarleitao <jorgecarleitao@gmail.com>, 2015
# Manuela Silva <inactive+h_manuela_rodsilva@transifex.com>, 2015
# Nuno Mariz <nmariz@gmail.com>, 2011-2012,2015
# Paulo Köch <paulo.koch@gmail.com>, 2011
# Raúl Pedro Fernandes Santos, 2014
msgid ""
msgstr ""
"Project-Id-Version: django\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-19 16:49+0100\n"
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
"Language-Team: Portuguese (http://www.transifex.com/django/django/language/"
"pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "GIS"
msgstr "SIG"
msgid "The base GIS field."
msgstr "O campo GIS base."
msgid ""
"The base Geometry field -- maps to the OpenGIS Specification Geometry type."
msgstr ""
"O campo de Geometria base -- mapeia para o tipo de Geometria de "
"Especificação do OpenGIS."
msgid "Point"
msgstr "Ponto"
msgid "Line string"
msgstr "Linha"
msgid "Polygon"
msgstr "Polígono"
msgid "Multi-point"
msgstr "Multi-ponto"
msgid "Multi-line string"
msgstr "Multi-linha"
msgid "Multi polygon"
msgstr "Multi-polígono"
msgid "Geometry collection"
msgstr "Coleção geométrica"
msgid "Extent Aggregate Field"
msgstr "Extender Campo Agregado"
msgid "Raster Field"
msgstr "Campo Raster"
msgid "No geometry value provided."
msgstr "Não foi submetido nenhum valor do tipo geometria."
msgid "Invalid geometry value."
msgstr "Valor inválido de geometria."
msgid "Invalid geometry type."
msgstr "Tipo inválido de geometria."
msgid ""
"An error occurred when transforming the geometry to the SRID of the geometry "
"form field."
msgstr ""
"Ocorreu um erro na transformação da geometria para o SRID da geometria do "
"campo do formulário."
msgid "Delete all Features"
msgstr "Eliminar todas as Caraterísticas"
msgid "WKT debugging window:"
msgstr "Janela de depuração de WKT:"
msgid "Debugging window (serialized value)"
msgstr "Janela de depuração (valor serializado)"
msgid "No feeds are registered."
msgstr "Nenhum feed está registado."
#, python-format
msgid "Slug %r isn't registered."
msgstr "O slug %r não está registado."
| Gettext Catalog | 2 | jpmallarino/django | django/contrib/gis/locale/pt/LC_MESSAGES/django.po | [
"BSD-3-Clause",
"0BSD"
] |
graph([professor_ability(p0,h),professor_ability(p1,h),professor_ability(p2,m),professor_ability(p3,m),professor_ability(p4,h),professor_ability(p5,h),professor_ability(p6,l),professor_ability(p7,l),professor_ability(p8,m),professor_ability(p9,h),professor_ability(p10,m),professor_ability(p11,h),professor_ability(p12,h),professor_ability(p13,m),professor_ability(p14,m),professor_ability(p15,m),professor_ability(p16,m),professor_ability(p17,m),professor_ability(p18,l),professor_ability(p19,h),professor_ability(p20,h),professor_ability(p21,_G131298),professor_ability(p22,m),professor_ability(p23,m),professor_ability(p24,l),professor_ability(p25,m),professor_ability(p26,h),professor_ability(p27,h),professor_ability(p28,_G131333),professor_ability(p29,m),professor_ability(p30,m),professor_ability(p31,h),professor_popularity(p0,h),professor_popularity(p1,_G131358),professor_popularity(p2,l),professor_popularity(p3,h),professor_popularity(p4,h),professor_popularity(p5,h),professor_popularity(p6,l),professor_popularity(p7,l),professor_popularity(p8,m),professor_popularity(p9,h),professor_popularity(p10,l),professor_popularity(p11,_G131408),professor_popularity(p12,h),professor_popularity(p13,l),professor_popularity(p14,m),professor_popularity(p15,h),professor_popularity(p16,m),professor_popularity(p17,h),professor_popularity(p18,l),professor_popularity(p19,_G131448),professor_popularity(p20,h),professor_popularity(p21,h),professor_popularity(p22,h),professor_popularity(p23,l),professor_popularity(p24,l),professor_popularity(p25,l),professor_popularity(p26,m),professor_popularity(p27,h),professor_popularity(p28,h),professor_popularity(p29,l),professor_popularity(p30,m),professor_popularity(p31,h),registration_grade(r0,a),registration_grade(r1,_G131518),registration_grade(r2,c),registration_grade(r3,c),registration_grade(r4,c),registration_grade(r5,c),registration_grade(r6,a),registration_grade(r7,a),registration_grade(r8,b),registration_grade(r9,a),registration_grade(r10,a),registration_grade(r11,a),registration_grade(r12,a),registration_grade(r13,a),registration_grade(r14,b),registration_grade(r15,b),registration_grade(r16,_G131593),registration_grade(r17,b),registration_grade(r18,_G131603),registration_grade(r19,c),registration_grade(r20,c),registration_grade(r21,a),registration_grade(r22,a),registration_grade(r23,b),registration_grade(r24,b),registration_grade(r25,a),registration_grade(r26,a),registration_grade(r27,b),registration_grade(r28,c),registration_grade(r29,b),registration_grade(r30,c),registration_grade(r31,b),registration_grade(r32,c),registration_grade(r33,a),registration_grade(r34,c),registration_grade(r35,c),registration_grade(r36,a),registration_grade(r37,a),registration_grade(r38,c),registration_grade(r39,a),registration_grade(r40,_G131713),registration_grade(r41,c),registration_grade(r42,b),registration_grade(r43,a),registration_grade(r44,a),registration_grade(r45,a),registration_grade(r46,a),registration_grade(r47,b),registration_grade(r48,b),registration_grade(r49,b),registration_grade(r50,_G131763),registration_grade(r51,b),registration_grade(r52,_G131773),registration_grade(r53,a),registration_grade(r54,b),registration_grade(r55,a),registration_grade(r56,c),registration_grade(r57,c),registration_grade(r58,a),registration_grade(r59,c),registration_grade(r60,a),registration_grade(r61,a),registration_grade(r62,a),registration_grade(r63,b),registration_grade(r64,b),registration_grade(r65,b),registration_grade(r66,b),registration_grade(r67,b),registration_grade(r68,a),registration_grade(r69,b),registration_grade(r70,c),registration_grade(r71,b),registration_grade(r72,a),registration_grade(r73,b),registration_grade(r74,a),registration_grade(r75,b),registration_grade(r76,c),registration_grade(r77,a),registration_grade(r78,b),registration_grade(r79,a),registration_grade(r80,b),registration_grade(r81,_G131918),registration_grade(r82,_G131923),registration_grade(r83,a),registration_grade(r84,c),registration_grade(r85,b),registration_grade(r86,b),registration_grade(r87,b),registration_grade(r88,c),registration_grade(r89,c),registration_grade(r90,c),registration_grade(r91,a),registration_grade(r92,d),registration_grade(r93,b),registration_grade(r94,c),registration_grade(r95,_G131988),registration_grade(r96,_G131993),registration_grade(r97,a),registration_grade(r98,b),registration_grade(r99,b),registration_grade(r100,a),registration_grade(r101,a),registration_grade(r102,a),registration_grade(r103,_G132028),registration_grade(r104,b),registration_grade(r105,c),registration_grade(r106,b),registration_grade(r107,b),registration_grade(r108,b),registration_grade(r109,b),registration_grade(r110,a),registration_grade(r111,a),registration_grade(r112,a),registration_grade(r113,c),registration_grade(r114,_G132083),registration_grade(r115,d),registration_grade(r116,b),registration_grade(r117,c),registration_grade(r118,a),registration_grade(r119,b),registration_grade(r120,_G132113),registration_grade(r121,c),registration_grade(r122,b),registration_grade(r123,a),registration_grade(r124,a),registration_grade(r125,b),registration_grade(r126,b),registration_grade(r127,b),registration_grade(r128,a),registration_grade(r129,c),registration_grade(r130,a),registration_grade(r131,a),registration_grade(r132,b),registration_grade(r133,a),registration_grade(r134,a),registration_grade(r135,b),registration_grade(r136,a),registration_grade(r137,b),registration_grade(r138,a),registration_grade(r139,_G132208),registration_grade(r140,a),registration_grade(r141,b),registration_grade(r142,b),registration_grade(r143,b),registration_grade(r144,_G132233),registration_grade(r145,b),registration_grade(r146,a),registration_grade(r147,a),registration_grade(r148,a),registration_grade(r149,a),registration_grade(r150,b),registration_grade(r151,a),registration_grade(r152,a),registration_grade(r153,b),registration_grade(r154,_G132283),registration_grade(r155,c),registration_grade(r156,b),registration_grade(r157,b),registration_grade(r158,c),registration_grade(r159,b),registration_grade(r160,a),registration_grade(r161,a),registration_grade(r162,b),registration_grade(r163,a),registration_grade(r164,b),registration_grade(r165,b),registration_grade(r166,c),registration_grade(r167,a),registration_grade(r168,_G132353),registration_grade(r169,a),registration_grade(r170,a),registration_grade(r171,a),registration_grade(r172,c),registration_grade(r173,b),registration_grade(r174,a),registration_grade(r175,b),registration_grade(r176,b),registration_grade(r177,c),registration_grade(r178,_G132403),registration_grade(r179,d),registration_grade(r180,c),registration_grade(r181,a),registration_grade(r182,b),registration_grade(r183,a),registration_grade(r184,a),registration_grade(r185,b),registration_grade(r186,_G132443),registration_grade(r187,a),registration_grade(r188,a),registration_grade(r189,a),registration_grade(r190,_G132463),registration_grade(r191,b),registration_grade(r192,b),registration_grade(r193,c),registration_grade(r194,b),registration_grade(r195,c),registration_grade(r196,_G132493),registration_grade(r197,a),registration_grade(r198,_G132503),registration_grade(r199,b),registration_grade(r200,b),registration_grade(r201,c),registration_grade(r202,a),registration_grade(r203,a),registration_grade(r204,b),registration_grade(r205,a),registration_grade(r206,a),registration_grade(r207,a),registration_grade(r208,c),registration_grade(r209,b),registration_grade(r210,a),registration_grade(r211,d),registration_grade(r212,b),registration_grade(r213,b),registration_grade(r214,a),registration_grade(r215,a),registration_grade(r216,b),registration_grade(r217,a),registration_grade(r218,b),registration_grade(r219,a),registration_grade(r220,_G132613),registration_grade(r221,b),registration_grade(r222,c),registration_grade(r223,a),registration_grade(r224,b),registration_grade(r225,b),registration_grade(r226,d),registration_grade(r227,b),registration_grade(r228,c),registration_grade(r229,b),registration_grade(r230,a),registration_grade(r231,_G132668),registration_grade(r232,a),registration_grade(r233,b),registration_grade(r234,b),registration_grade(r235,_G132688),registration_grade(r236,b),registration_grade(r237,c),registration_grade(r238,d),registration_grade(r239,b),registration_grade(r240,b),registration_grade(r241,a),registration_grade(r242,b),registration_grade(r243,a),registration_grade(r244,_G132733),registration_grade(r245,a),registration_grade(r246,b),registration_grade(r247,c),registration_grade(r248,b),registration_grade(r249,a),registration_grade(r250,a),registration_grade(r251,a),registration_grade(r252,b),registration_grade(r253,a),registration_grade(r254,_G132783),registration_grade(r255,a),registration_grade(r256,a),registration_grade(r257,b),registration_grade(r258,a),registration_grade(r259,a),registration_grade(r260,b),registration_grade(r261,a),registration_grade(r262,a),registration_grade(r263,a),registration_grade(r264,c),registration_grade(r265,a),registration_grade(r266,a),registration_grade(r267,a),registration_grade(r268,c),registration_grade(r269,a),registration_grade(r270,c),registration_grade(r271,b),registration_grade(r272,c),registration_grade(r273,b),registration_grade(r274,c),registration_grade(r275,a),registration_grade(r276,a),registration_grade(r277,a),registration_grade(r278,a),registration_grade(r279,a),registration_grade(r280,b),registration_grade(r281,b),registration_grade(r282,d),registration_grade(r283,a),registration_grade(r284,_G132933),registration_grade(r285,b),registration_grade(r286,a),registration_grade(r287,b),registration_grade(r288,b),registration_grade(r289,d),registration_grade(r290,_G132963),registration_grade(r291,_G132968),registration_grade(r292,b),registration_grade(r293,a),registration_grade(r294,a),registration_grade(r295,a),registration_grade(r296,b),registration_grade(r297,_G132998),registration_grade(r298,a),registration_grade(r299,a),registration_grade(r300,b),registration_grade(r301,b),registration_grade(r302,_G133023),registration_grade(r303,a),registration_grade(r304,a),registration_grade(r305,b),registration_grade(r306,b),registration_grade(r307,c),registration_grade(r308,c),registration_grade(r309,c),registration_grade(r310,a),registration_grade(r311,a),registration_grade(r312,a),registration_grade(r313,a),registration_grade(r314,c),registration_grade(r315,c),registration_grade(r316,c),registration_grade(r317,c),registration_grade(r318,c),registration_grade(r319,c),registration_grade(r320,b),registration_grade(r321,b),registration_grade(r322,a),registration_grade(r323,c),registration_grade(r324,b),registration_grade(r325,b),registration_grade(r326,a),registration_grade(r327,_G133148),registration_grade(r328,b),registration_grade(r329,a),registration_grade(r330,b),registration_grade(r331,a),registration_grade(r332,a),registration_grade(r333,a),registration_grade(r334,c),registration_grade(r335,d),registration_grade(r336,b),registration_grade(r337,b),registration_grade(r338,b),registration_grade(r339,_G133208),registration_grade(r340,b),registration_grade(r341,_G133218),registration_grade(r342,b),registration_grade(r343,a),registration_grade(r344,c),registration_grade(r345,b),registration_grade(r346,b),registration_grade(r347,b),registration_grade(r348,a),registration_grade(r349,a),registration_grade(r350,b),registration_grade(r351,_G133268),registration_grade(r352,d),registration_grade(r353,c),registration_grade(r354,c),registration_grade(r355,c),registration_grade(r356,_G133293),registration_grade(r357,b),registration_grade(r358,a),registration_grade(r359,a),registration_grade(r360,a),registration_grade(r361,b),registration_grade(r362,c),registration_grade(r363,c),registration_grade(r364,b),registration_grade(r365,b),registration_grade(r366,b),registration_grade(r367,b),registration_grade(r368,a),registration_grade(r369,c),registration_grade(r370,b),registration_grade(r371,a),registration_grade(r372,a),registration_grade(r373,a),registration_grade(r374,b),registration_grade(r375,b),registration_grade(r376,_G133393),registration_grade(r377,a),registration_grade(r378,a),registration_grade(r379,c),registration_grade(r380,a),registration_grade(r381,c),registration_grade(r382,a),registration_grade(r383,a),registration_grade(r384,b),registration_grade(r385,b),registration_grade(r386,_G133443),registration_grade(r387,a),registration_grade(r388,a),registration_grade(r389,a),registration_grade(r390,_G133463),registration_grade(r391,b),registration_grade(r392,_G133473),registration_grade(r393,b),registration_grade(r394,c),registration_grade(r395,b),registration_grade(r396,b),registration_grade(r397,a),registration_grade(r398,b),registration_grade(r399,c),registration_grade(r400,a),registration_grade(r401,c),registration_grade(r402,a),registration_grade(r403,a),registration_grade(r404,a),registration_grade(r405,a),registration_grade(r406,a),registration_grade(r407,b),registration_grade(r408,a),registration_grade(r409,_G133558),registration_grade(r410,b),registration_grade(r411,b),registration_grade(r412,a),registration_grade(r413,a),registration_grade(r414,a),registration_grade(r415,b),registration_grade(r416,b),registration_grade(r417,d),registration_grade(r418,a),registration_grade(r419,a),registration_grade(r420,a),registration_grade(r421,c),registration_grade(r422,b),registration_grade(r423,b),registration_grade(r424,a),registration_grade(r425,b),registration_grade(r426,c),registration_grade(r427,c),registration_grade(r428,c),registration_grade(r429,c),registration_grade(r430,b),registration_grade(r431,d),registration_grade(r432,c),registration_grade(r433,a),registration_grade(r434,a),registration_grade(r435,c),registration_grade(r436,a),registration_grade(r437,c),registration_grade(r438,_G133703),registration_grade(r439,b),registration_grade(r440,c),registration_grade(r441,a),registration_grade(r442,c),registration_grade(r443,a),registration_grade(r444,a),registration_grade(r445,a),registration_grade(r446,a),registration_grade(r447,d),registration_grade(r448,_G133753),registration_grade(r449,b),registration_grade(r450,a),registration_grade(r451,a),registration_grade(r452,b),registration_grade(r453,d),registration_grade(r454,d),registration_grade(r455,c),registration_grade(r456,_G133793),registration_grade(r457,a),registration_grade(r458,b),registration_grade(r459,b),registration_grade(r460,a),registration_grade(r461,b),registration_grade(r462,a),registration_grade(r463,d),registration_grade(r464,a),registration_grade(r465,a),registration_grade(r466,_G133843),registration_grade(r467,b),registration_grade(r468,a),registration_grade(r469,a),registration_grade(r470,c),registration_grade(r471,b),registration_grade(r472,_G133873),registration_grade(r473,c),registration_grade(r474,_G133883),registration_grade(r475,a),registration_grade(r476,c),registration_grade(r477,b),registration_grade(r478,a),registration_grade(r479,b),registration_grade(r480,_G133913),registration_grade(r481,_G133918),registration_grade(r482,b),registration_grade(r483,a),registration_grade(r484,a),registration_grade(r485,a),registration_grade(r486,a),registration_grade(r487,a),registration_grade(r488,a),registration_grade(r489,b),registration_grade(r490,c),registration_grade(r491,c),registration_grade(r492,b),registration_grade(r493,a),registration_grade(r494,b),registration_grade(r495,b),registration_grade(r496,a),registration_grade(r497,c),registration_grade(r498,b),registration_grade(r499,c),registration_grade(r500,b),registration_grade(r501,a),registration_grade(r502,a),registration_grade(r503,_G134028),registration_grade(r504,b),registration_grade(r505,c),registration_grade(r506,c),registration_grade(r507,a),registration_grade(r508,c),registration_grade(r509,b),registration_grade(r510,a),registration_grade(r511,c),registration_grade(r512,b),registration_grade(r513,b),registration_grade(r514,c),registration_grade(r515,c),registration_grade(r516,_G134093),registration_grade(r517,b),registration_grade(r518,a),registration_grade(r519,a),registration_grade(r520,b),registration_grade(r521,a),registration_grade(r522,b),registration_grade(r523,a),registration_grade(r524,_G134133),registration_grade(r525,c),registration_grade(r526,c),registration_grade(r527,c),registration_grade(r528,a),registration_grade(r529,b),registration_grade(r530,_G134163),registration_grade(r531,b),registration_grade(r532,a),registration_grade(r533,a),registration_grade(r534,b),registration_grade(r535,c),registration_grade(r536,a),registration_grade(r537,a),registration_grade(r538,a),registration_grade(r539,b),registration_grade(r540,b),registration_grade(r541,_G134218),registration_grade(r542,a),registration_grade(r543,_G134228),registration_grade(r544,b),registration_grade(r545,a),registration_grade(r546,b),registration_grade(r547,c),registration_grade(r548,c),registration_grade(r549,_G134258),registration_grade(r550,a),registration_grade(r551,a),registration_grade(r552,c),registration_grade(r553,_G134278),registration_grade(r554,b),registration_grade(r555,b),registration_grade(r556,a),registration_grade(r557,a),registration_grade(r558,a),registration_grade(r559,b),registration_grade(r560,b),registration_grade(r561,a),registration_grade(r562,a),registration_grade(r563,a),registration_grade(r564,b),registration_grade(r565,d),registration_grade(r566,c),registration_grade(r567,a),registration_grade(r568,a),registration_grade(r569,a),registration_grade(r570,c),registration_grade(r571,c),registration_grade(r572,b),registration_grade(r573,a),registration_grade(r574,c),registration_grade(r575,a),registration_grade(r576,a),registration_grade(r577,_G134398),registration_grade(r578,b),registration_grade(r579,a),registration_grade(r580,b),registration_grade(r581,a),registration_grade(r582,a),registration_grade(r583,a),registration_grade(r584,a),registration_grade(r585,c),registration_grade(r586,b),registration_grade(r587,c),registration_grade(r588,c),registration_grade(r589,c),registration_grade(r590,b),registration_grade(r591,c),registration_grade(r592,b),registration_grade(r593,b),registration_grade(r594,c),registration_grade(r595,b),registration_grade(r596,a),registration_grade(r597,a),registration_grade(r598,a),registration_grade(r599,a),registration_grade(r600,a),registration_grade(r601,b),registration_grade(r602,a),registration_grade(r603,d),registration_grade(r604,c),registration_grade(r605,a),registration_grade(r606,a),registration_grade(r607,b),registration_grade(r608,a),registration_grade(r609,b),registration_grade(r610,a),registration_grade(r611,a),registration_grade(r612,_G134573),registration_grade(r613,a),registration_grade(r614,d),registration_grade(r615,b),registration_grade(r616,a),registration_grade(r617,a),registration_grade(r618,b),registration_grade(r619,a),registration_grade(r620,a),registration_grade(r621,a),registration_grade(r622,b),registration_grade(r623,b),registration_grade(r624,a),registration_grade(r625,_G134638),registration_grade(r626,a),registration_grade(r627,b),registration_grade(r628,a),registration_grade(r629,b),registration_grade(r630,c),registration_grade(r631,a),registration_grade(r632,a),registration_grade(r633,b),registration_grade(r634,b),registration_grade(r635,b),registration_grade(r636,_G134693),registration_grade(r637,c),registration_grade(r638,a),registration_grade(r639,b),registration_grade(r640,c),registration_grade(r641,c),registration_grade(r642,c),registration_grade(r643,a),registration_grade(r644,a),registration_grade(r645,b),registration_grade(r646,b),registration_grade(r647,b),registration_grade(r648,a),registration_grade(r649,b),registration_grade(r650,c),registration_grade(r651,_G134768),registration_grade(r652,b),registration_grade(r653,_G134778),registration_grade(r654,b),registration_grade(r655,a),registration_grade(r656,b),registration_grade(r657,a),registration_grade(r658,a),registration_grade(r659,a),registration_grade(r660,a),registration_grade(r661,c),registration_grade(r662,a),registration_grade(r663,a),registration_grade(r664,c),registration_grade(r665,a),registration_grade(r666,b),registration_grade(r667,b),registration_grade(r668,d),registration_grade(r669,b),registration_grade(r670,a),registration_grade(r671,c),registration_grade(r672,_G134873),registration_grade(r673,a),registration_grade(r674,a),registration_grade(r675,b),registration_grade(r676,a),registration_grade(r677,a),registration_grade(r678,a),registration_grade(r679,a),registration_grade(r680,c),registration_grade(r681,b),registration_grade(r682,a),registration_grade(r683,b),registration_grade(r684,b),registration_grade(r685,a),registration_grade(r686,b),registration_grade(r687,_G134948),registration_grade(r688,c),registration_grade(r689,b),registration_grade(r690,a),registration_grade(r691,_G134968),registration_grade(r692,a),registration_grade(r693,b),registration_grade(r694,a),registration_grade(r695,a),registration_grade(r696,_G134993),registration_grade(r697,c),registration_grade(r698,b),registration_grade(r699,a),registration_grade(r700,a),registration_grade(r701,a),registration_grade(r702,a),registration_grade(r703,c),registration_grade(r704,c),registration_grade(r705,_G135038),registration_grade(r706,b),registration_grade(r707,_G135048),registration_grade(r708,b),registration_grade(r709,b),registration_grade(r710,b),registration_grade(r711,b),registration_grade(r712,c),registration_grade(r713,_G135078),registration_grade(r714,b),registration_grade(r715,a),registration_grade(r716,a),registration_grade(r717,_G135098),registration_grade(r718,a),registration_grade(r719,c),registration_grade(r720,a),registration_grade(r721,b),registration_grade(r722,b),registration_grade(r723,b),registration_grade(r724,a),registration_grade(r725,c),registration_grade(r726,a),registration_grade(r727,a),registration_grade(r728,b),registration_grade(r729,b),registration_grade(r730,c),registration_grade(r731,a),registration_grade(r732,a),registration_grade(r733,a),registration_grade(r734,b),registration_grade(r735,_G135188),registration_grade(r736,a),registration_grade(r737,b),registration_grade(r738,b),registration_grade(r739,a),registration_grade(r740,a),registration_grade(r741,a),registration_grade(r742,d),registration_grade(r743,d),registration_grade(r744,a),registration_grade(r745,b),registration_grade(r746,a),registration_grade(r747,a),registration_grade(r748,b),registration_grade(r749,c),registration_grade(r750,a),registration_grade(r751,c),registration_grade(r752,b),registration_grade(r753,c),registration_grade(r754,c),registration_grade(r755,c),registration_grade(r756,b),registration_grade(r757,c),registration_grade(r758,b),registration_grade(r759,b),registration_grade(r760,a),registration_grade(r761,a),registration_grade(r762,b),registration_grade(r763,_G135328),registration_grade(r764,a),registration_grade(r765,a),registration_grade(r766,c),registration_grade(r767,c),registration_grade(r768,c),registration_grade(r769,c),registration_grade(r770,b),registration_grade(r771,_G135368),registration_grade(r772,a),registration_grade(r773,b),registration_grade(r774,b),registration_grade(r775,a),registration_grade(r776,a),registration_grade(r777,_G135398),registration_grade(r778,c),registration_grade(r779,b),registration_grade(r780,a),registration_grade(r781,b),registration_grade(r782,a),registration_grade(r783,c),registration_grade(r784,c),registration_grade(r785,c),registration_grade(r786,c),registration_grade(r787,a),registration_grade(r788,a),registration_grade(r789,c),registration_grade(r790,b),registration_grade(r791,b),registration_grade(r792,a),registration_grade(r793,a),registration_grade(r794,b),registration_grade(r795,a),registration_grade(r796,a),registration_grade(r797,_G135498),registration_grade(r798,b),registration_grade(r799,c),registration_grade(r800,b),registration_grade(r801,b),registration_grade(r802,a),registration_grade(r803,b),registration_grade(r804,a),registration_grade(r805,b),registration_grade(r806,a),registration_grade(r807,a),registration_grade(r808,b),registration_grade(r809,c),registration_grade(r810,b),registration_grade(r811,d),registration_grade(r812,c),registration_grade(r813,c),registration_grade(r814,c),registration_grade(r815,c),registration_grade(r816,b),registration_grade(r817,a),registration_grade(r818,b),registration_grade(r819,_G135608),registration_grade(r820,d),registration_grade(r821,b),registration_grade(r822,a),registration_grade(r823,_G135628),registration_grade(r824,c),registration_grade(r825,b),registration_grade(r826,b),registration_grade(r827,_G135648),registration_grade(r828,b),registration_grade(r829,_G135658),registration_grade(r830,_G135663),registration_grade(r831,_G135668),registration_grade(r832,b),registration_grade(r833,b),registration_grade(r834,b),registration_grade(r835,a),registration_grade(r836,a),registration_grade(r837,c),registration_grade(r838,_G135703),registration_grade(r839,b),registration_grade(r840,_G135713),registration_grade(r841,a),registration_grade(r842,a),registration_grade(r843,b),registration_grade(r844,a),registration_grade(r845,c),registration_grade(r846,b),registration_grade(r847,_G135748),registration_grade(r848,c),registration_grade(r849,b),registration_grade(r850,b),registration_grade(r851,b),registration_grade(r852,c),registration_grade(r853,b),registration_grade(r854,c),registration_grade(r855,d),registration_grade(r856,c),student_intelligence(s0,l),student_intelligence(s1,l),student_intelligence(s2,h),student_intelligence(s3,h),student_intelligence(s4,h),student_intelligence(s5,h),student_intelligence(s6,m),student_intelligence(s7,h),student_intelligence(s8,h),student_intelligence(s9,m),student_intelligence(s10,m),student_intelligence(s11,m),student_intelligence(s12,h),student_intelligence(s13,h),student_intelligence(s14,h),student_intelligence(s15,m),student_intelligence(s16,h),student_intelligence(s17,m),student_intelligence(s18,m),student_intelligence(s19,h),student_intelligence(s20,m),student_intelligence(s21,h),student_intelligence(s22,_G135908),student_intelligence(s23,h),student_intelligence(s24,m),student_intelligence(s25,h),student_intelligence(s26,m),student_intelligence(s27,m),student_intelligence(s28,m),student_intelligence(s29,m),student_intelligence(s30,h),student_intelligence(s31,_G135953),student_intelligence(s32,m),student_intelligence(s33,_G135963),student_intelligence(s34,l),student_intelligence(s35,m),student_intelligence(s36,l),student_intelligence(s37,m),student_intelligence(s38,h),student_intelligence(s39,h),student_intelligence(s40,_G135998),student_intelligence(s41,m),student_intelligence(s42,m),student_intelligence(s43,h),student_intelligence(s44,h),student_intelligence(s45,h),student_intelligence(s46,l),student_intelligence(s47,h),student_intelligence(s48,m),student_intelligence(s49,_G136043),student_intelligence(s50,_G136048),student_intelligence(s51,m),student_intelligence(s52,m),student_intelligence(s53,_G136063),student_intelligence(s54,h),student_intelligence(s55,h),student_intelligence(s56,l),student_intelligence(s57,m),student_intelligence(s58,_G136088),student_intelligence(s59,m),student_intelligence(s60,_G136098),student_intelligence(s61,h),student_intelligence(s62,m),student_intelligence(s63,h),student_intelligence(s64,l),student_intelligence(s65,m),student_intelligence(s66,_G136128),student_intelligence(s67,m),student_intelligence(s68,h),student_intelligence(s69,h),student_intelligence(s70,l),student_intelligence(s71,m),student_intelligence(s72,h),student_intelligence(s73,_G136163),student_intelligence(s74,h),student_intelligence(s75,h),student_intelligence(s76,h),student_intelligence(s77,h),student_intelligence(s78,h),student_intelligence(s79,_G136193),student_intelligence(s80,m),student_intelligence(s81,l),student_intelligence(s82,h),student_intelligence(s83,h),student_intelligence(s84,m),student_intelligence(s85,h),student_intelligence(s86,m),student_intelligence(s87,h),student_intelligence(s88,h),student_intelligence(s89,_G136243),student_intelligence(s90,h),student_intelligence(s91,m),student_intelligence(s92,h),student_intelligence(s93,l),student_intelligence(s94,l),student_intelligence(s95,h),student_intelligence(s96,m),student_intelligence(s97,h),student_intelligence(s98,h),student_intelligence(s99,l),student_intelligence(s100,_G136298),student_intelligence(s101,h),student_intelligence(s102,m),student_intelligence(s103,h),student_intelligence(s104,l),student_intelligence(s105,m),student_intelligence(s106,h),student_intelligence(s107,l),student_intelligence(s108,m),student_intelligence(s109,m),student_intelligence(s110,m),student_intelligence(s111,h),student_intelligence(s112,m),student_intelligence(s113,h),student_intelligence(s114,_G136368),student_intelligence(s115,h),student_intelligence(s116,_G136378),student_intelligence(s117,_G136383),student_intelligence(s118,m),student_intelligence(s119,h),student_intelligence(s120,h),student_intelligence(s121,h),student_intelligence(s122,_G136408),student_intelligence(s123,m),student_intelligence(s124,h),student_intelligence(s125,m),student_intelligence(s126,m),student_intelligence(s127,m),student_intelligence(s128,_G136438),student_intelligence(s129,h),student_intelligence(s130,m),student_intelligence(s131,_G136453),student_intelligence(s132,h),student_intelligence(s133,h),student_intelligence(s134,h),student_intelligence(s135,h),student_intelligence(s136,m),student_intelligence(s137,m),student_intelligence(s138,l),student_intelligence(s139,h),student_intelligence(s140,h),student_intelligence(s141,m),student_intelligence(s142,m),student_intelligence(s143,h),student_intelligence(s144,h),student_intelligence(s145,h),student_intelligence(s146,m),student_intelligence(s147,m),student_intelligence(s148,m),student_intelligence(s149,h),student_intelligence(s150,l),student_intelligence(s151,h),student_intelligence(s152,h),student_intelligence(s153,m),student_intelligence(s154,m),student_intelligence(s155,h),student_intelligence(s156,m),student_intelligence(s157,m),student_intelligence(s158,h),student_intelligence(s159,h),student_intelligence(s160,m),student_intelligence(s161,m),student_intelligence(s162,h),student_intelligence(s163,m),student_intelligence(s164,m),student_intelligence(s165,m),student_intelligence(s166,m),student_intelligence(s167,h),student_intelligence(s168,h),student_intelligence(s169,m),student_intelligence(s170,_G136648),student_intelligence(s171,m),student_intelligence(s172,h),student_intelligence(s173,h),student_intelligence(s174,h),student_intelligence(s175,m),student_intelligence(s176,m),student_intelligence(s177,m),student_intelligence(s178,h),student_intelligence(s179,m),student_intelligence(s180,m),student_intelligence(s181,_G136703),student_intelligence(s182,_G136708),student_intelligence(s183,h),student_intelligence(s184,h),student_intelligence(s185,m),student_intelligence(s186,m),student_intelligence(s187,m),student_intelligence(s188,h),student_intelligence(s189,m),student_intelligence(s190,h),student_intelligence(s191,l),student_intelligence(s192,h),student_intelligence(s193,m),student_intelligence(s194,m),student_intelligence(s195,m),student_intelligence(s196,h),student_intelligence(s197,h),student_intelligence(s198,h),student_intelligence(s199,m),student_intelligence(s200,h),student_intelligence(s201,l),student_intelligence(s202,h),student_intelligence(s203,_G136813),student_intelligence(s204,h),student_intelligence(s205,h),student_intelligence(s206,h),student_intelligence(s207,h),student_intelligence(s208,m),student_intelligence(s209,_G136843),student_intelligence(s210,_G136848),student_intelligence(s211,m),student_intelligence(s212,_G136858),student_intelligence(s213,_G136863),student_intelligence(s214,h),student_intelligence(s215,m),student_intelligence(s216,h),student_intelligence(s217,m),student_intelligence(s218,h),student_intelligence(s219,h),student_intelligence(s220,h),student_intelligence(s221,h),student_intelligence(s222,_G136908),student_intelligence(s223,m),student_intelligence(s224,l),student_intelligence(s225,l),student_intelligence(s226,m),student_intelligence(s227,h),student_intelligence(s228,h),student_intelligence(s229,m),student_intelligence(s230,m),student_intelligence(s231,h),student_intelligence(s232,m),student_intelligence(s233,h),student_intelligence(s234,l),student_intelligence(s235,h),student_intelligence(s236,_G136978),student_intelligence(s237,h),student_intelligence(s238,h),student_intelligence(s239,h),student_intelligence(s240,h),student_intelligence(s241,m),student_intelligence(s242,l),student_intelligence(s243,h),student_intelligence(s244,h),student_intelligence(s245,l),student_intelligence(s246,m),student_intelligence(s247,h),student_intelligence(s248,m),student_intelligence(s249,h),student_intelligence(s250,m),student_intelligence(s251,_G137053),student_intelligence(s252,m),student_intelligence(s253,m),student_intelligence(s254,m),student_intelligence(s255,m),course_difficulty(c0,h),course_difficulty(c1,m),course_difficulty(c2,l),course_difficulty(c3,m),course_difficulty(c4,m),course_difficulty(c5,l),course_difficulty(c6,m),course_difficulty(c7,h),course_difficulty(c8,h),course_difficulty(c9,l),course_difficulty(c10,m),course_difficulty(c11,m),course_difficulty(c12,_G137138),course_difficulty(c13,h),course_difficulty(c14,m),course_difficulty(c15,h),course_difficulty(c16,l),course_difficulty(c17,h),course_difficulty(c18,m),course_difficulty(c19,l),course_difficulty(c20,m),course_difficulty(c21,h),course_difficulty(c22,m),course_difficulty(c23,m),course_difficulty(c24,h),course_difficulty(c25,m),course_difficulty(c26,l),course_difficulty(c27,h),course_difficulty(c28,m),course_difficulty(c29,m),course_difficulty(c30,m),course_difficulty(c31,m),course_difficulty(c32,l),course_difficulty(c33,m),course_difficulty(c34,_G137248),course_difficulty(c35,h),course_difficulty(c36,h),course_difficulty(c37,m),course_difficulty(c38,m),course_difficulty(c39,m),course_difficulty(c40,h),course_difficulty(c41,m),course_difficulty(c42,h),course_difficulty(c43,m),course_difficulty(c44,m),course_difficulty(c45,m),course_difficulty(c46,m),course_difficulty(c47,m),course_difficulty(c48,m),course_difficulty(c49,_G137323),course_difficulty(c50,_G137328),course_difficulty(c51,h),course_difficulty(c52,h),course_difficulty(c53,h),course_difficulty(c54,m),course_difficulty(c55,h),course_difficulty(c56,m),course_difficulty(c57,m),course_difficulty(c58,h),course_difficulty(c59,m),course_difficulty(c60,h),course_difficulty(c61,_G137383),course_difficulty(c62,_G137388),course_difficulty(c63,l),registration_satisfaction(r0,h),registration_satisfaction(r1,l),registration_satisfaction(r2,h),registration_satisfaction(r3,m),registration_satisfaction(r4,h),registration_satisfaction(r5,h),registration_satisfaction(r6,h),registration_satisfaction(r7,h),registration_satisfaction(r8,_G137438),registration_satisfaction(r9,h),registration_satisfaction(r10,h),registration_satisfaction(r11,h),registration_satisfaction(r12,h),registration_satisfaction(r13,h),registration_satisfaction(r14,m),registration_satisfaction(r15,h),registration_satisfaction(r16,h),registration_satisfaction(r17,_G137483),registration_satisfaction(r18,l),registration_satisfaction(r19,m),registration_satisfaction(r20,h),registration_satisfaction(r21,h),registration_satisfaction(r22,_G137508),registration_satisfaction(r23,m),registration_satisfaction(r24,h),registration_satisfaction(r25,h),registration_satisfaction(r26,h),registration_satisfaction(r27,h),registration_satisfaction(r28,h),registration_satisfaction(r29,h),registration_satisfaction(r30,l),registration_satisfaction(r31,h),registration_satisfaction(r32,_G137558),registration_satisfaction(r33,h),registration_satisfaction(r34,h),registration_satisfaction(r35,h),registration_satisfaction(r36,m),registration_satisfaction(r37,h),registration_satisfaction(r38,h),registration_satisfaction(r39,h),registration_satisfaction(r40,h),registration_satisfaction(r41,h),registration_satisfaction(r42,l),registration_satisfaction(r43,_G137613),registration_satisfaction(r44,h),registration_satisfaction(r45,h),registration_satisfaction(r46,m),registration_satisfaction(r47,_G137633),registration_satisfaction(r48,h),registration_satisfaction(r49,h),registration_satisfaction(r50,h),registration_satisfaction(r51,h),registration_satisfaction(r52,h),registration_satisfaction(r53,h),registration_satisfaction(r54,h),registration_satisfaction(r55,h),registration_satisfaction(r56,l),registration_satisfaction(r57,h),registration_satisfaction(r58,h),registration_satisfaction(r59,l),registration_satisfaction(r60,h),registration_satisfaction(r61,h),registration_satisfaction(r62,h),registration_satisfaction(r63,h),registration_satisfaction(r64,h),registration_satisfaction(r65,h),registration_satisfaction(r66,h),registration_satisfaction(r67,_G137733),registration_satisfaction(r68,h),registration_satisfaction(r69,m),registration_satisfaction(r70,h),registration_satisfaction(r71,h),registration_satisfaction(r72,l),registration_satisfaction(r73,h),registration_satisfaction(r74,h),registration_satisfaction(r75,h),registration_satisfaction(r76,h),registration_satisfaction(r77,h),registration_satisfaction(r78,m),registration_satisfaction(r79,h),registration_satisfaction(r80,h),registration_satisfaction(r81,h),registration_satisfaction(r82,l),registration_satisfaction(r83,m),registration_satisfaction(r84,m),registration_satisfaction(r85,h),registration_satisfaction(r86,m),registration_satisfaction(r87,m),registration_satisfaction(r88,h),registration_satisfaction(r89,h),registration_satisfaction(r90,m),registration_satisfaction(r91,h),registration_satisfaction(r92,_G137858),registration_satisfaction(r93,h),registration_satisfaction(r94,l),registration_satisfaction(r95,h),registration_satisfaction(r96,h),registration_satisfaction(r97,h),registration_satisfaction(r98,h),registration_satisfaction(r99,h),registration_satisfaction(r100,h),registration_satisfaction(r101,h),registration_satisfaction(r102,h),registration_satisfaction(r103,h),registration_satisfaction(r104,h),registration_satisfaction(r105,l),registration_satisfaction(r106,h),registration_satisfaction(r107,l),registration_satisfaction(r108,_G137938),registration_satisfaction(r109,h),registration_satisfaction(r110,h),registration_satisfaction(r111,h),registration_satisfaction(r112,h),registration_satisfaction(r113,h),registration_satisfaction(r114,m),registration_satisfaction(r115,l),registration_satisfaction(r116,_G137978),registration_satisfaction(r117,h),registration_satisfaction(r118,h),registration_satisfaction(r119,h),registration_satisfaction(r120,l),registration_satisfaction(r121,h),registration_satisfaction(r122,_G138008),registration_satisfaction(r123,l),registration_satisfaction(r124,h),registration_satisfaction(r125,m),registration_satisfaction(r126,h),registration_satisfaction(r127,h),registration_satisfaction(r128,h),registration_satisfaction(r129,h),registration_satisfaction(r130,h),registration_satisfaction(r131,h),registration_satisfaction(r132,m),registration_satisfaction(r133,h),registration_satisfaction(r134,m),registration_satisfaction(r135,h),registration_satisfaction(r136,h),registration_satisfaction(r137,h),registration_satisfaction(r138,_G138088),registration_satisfaction(r139,h),registration_satisfaction(r140,h),registration_satisfaction(r141,l),registration_satisfaction(r142,h),registration_satisfaction(r143,_G138113),registration_satisfaction(r144,h),registration_satisfaction(r145,_G138123),registration_satisfaction(r146,h),registration_satisfaction(r147,l),registration_satisfaction(r148,m),registration_satisfaction(r149,_G138143),registration_satisfaction(r150,h),registration_satisfaction(r151,h),registration_satisfaction(r152,_G138158),registration_satisfaction(r153,h),registration_satisfaction(r154,m),registration_satisfaction(r155,m),registration_satisfaction(r156,h),registration_satisfaction(r157,m),registration_satisfaction(r158,l),registration_satisfaction(r159,m),registration_satisfaction(r160,h),registration_satisfaction(r161,h),registration_satisfaction(r162,m),registration_satisfaction(r163,h),registration_satisfaction(r164,m),registration_satisfaction(r165,m),registration_satisfaction(r166,l),registration_satisfaction(r167,_G138233),registration_satisfaction(r168,_G138238),registration_satisfaction(r169,h),registration_satisfaction(r170,h),registration_satisfaction(r171,h),registration_satisfaction(r172,h),registration_satisfaction(r173,h),registration_satisfaction(r174,h),registration_satisfaction(r175,h),registration_satisfaction(r176,h),registration_satisfaction(r177,h),registration_satisfaction(r178,_G138288),registration_satisfaction(r179,l),registration_satisfaction(r180,h),registration_satisfaction(r181,m),registration_satisfaction(r182,h),registration_satisfaction(r183,l),registration_satisfaction(r184,h),registration_satisfaction(r185,h),registration_satisfaction(r186,h),registration_satisfaction(r187,h),registration_satisfaction(r188,m),registration_satisfaction(r189,h),registration_satisfaction(r190,h),registration_satisfaction(r191,h),registration_satisfaction(r192,m),registration_satisfaction(r193,h),registration_satisfaction(r194,h),registration_satisfaction(r195,h),registration_satisfaction(r196,h),registration_satisfaction(r197,h),registration_satisfaction(r198,h),registration_satisfaction(r199,h),registration_satisfaction(r200,m),registration_satisfaction(r201,h),registration_satisfaction(r202,_G138408),registration_satisfaction(r203,h),registration_satisfaction(r204,h),registration_satisfaction(r205,h),registration_satisfaction(r206,h),registration_satisfaction(r207,h),registration_satisfaction(r208,h),registration_satisfaction(r209,_G138443),registration_satisfaction(r210,h),registration_satisfaction(r211,m),registration_satisfaction(r212,h),registration_satisfaction(r213,h),registration_satisfaction(r214,h),registration_satisfaction(r215,h),registration_satisfaction(r216,h),registration_satisfaction(r217,h),registration_satisfaction(r218,m),registration_satisfaction(r219,h),registration_satisfaction(r220,h),registration_satisfaction(r221,m),registration_satisfaction(r222,l),registration_satisfaction(r223,h),registration_satisfaction(r224,h),registration_satisfaction(r225,l),registration_satisfaction(r226,l),registration_satisfaction(r227,_G138533),registration_satisfaction(r228,l),registration_satisfaction(r229,l),registration_satisfaction(r230,h),registration_satisfaction(r231,l),registration_satisfaction(r232,h),registration_satisfaction(r233,m),registration_satisfaction(r234,l),registration_satisfaction(r235,h),registration_satisfaction(r236,l),registration_satisfaction(r237,m),registration_satisfaction(r238,m),registration_satisfaction(r239,m),registration_satisfaction(r240,h),registration_satisfaction(r241,h),registration_satisfaction(r242,m),registration_satisfaction(r243,h),registration_satisfaction(r244,m),registration_satisfaction(r245,h),registration_satisfaction(r246,h),registration_satisfaction(r247,l),registration_satisfaction(r248,l),registration_satisfaction(r249,h),registration_satisfaction(r250,h),registration_satisfaction(r251,h),registration_satisfaction(r252,h),registration_satisfaction(r253,h),registration_satisfaction(r254,h),registration_satisfaction(r255,h),registration_satisfaction(r256,h),registration_satisfaction(r257,m),registration_satisfaction(r258,_G138688),registration_satisfaction(r259,_G138693),registration_satisfaction(r260,h),registration_satisfaction(r261,h),registration_satisfaction(r262,h),registration_satisfaction(r263,m),registration_satisfaction(r264,h),registration_satisfaction(r265,h),registration_satisfaction(r266,l),registration_satisfaction(r267,h),registration_satisfaction(r268,_G138738),registration_satisfaction(r269,_G138743),registration_satisfaction(r270,l),registration_satisfaction(r271,h),registration_satisfaction(r272,l),registration_satisfaction(r273,_G138763),registration_satisfaction(r274,h),registration_satisfaction(r275,h),registration_satisfaction(r276,h),registration_satisfaction(r277,h),registration_satisfaction(r278,h),registration_satisfaction(r279,h),registration_satisfaction(r280,_G138798),registration_satisfaction(r281,m),registration_satisfaction(r282,h),registration_satisfaction(r283,h),registration_satisfaction(r284,_G138818),registration_satisfaction(r285,m),registration_satisfaction(r286,h),registration_satisfaction(r287,h),registration_satisfaction(r288,h),registration_satisfaction(r289,l),registration_satisfaction(r290,m),registration_satisfaction(r291,_G138853),registration_satisfaction(r292,m),registration_satisfaction(r293,h),registration_satisfaction(r294,h),registration_satisfaction(r295,_G138873),registration_satisfaction(r296,l),registration_satisfaction(r297,h),registration_satisfaction(r298,h),registration_satisfaction(r299,h),registration_satisfaction(r300,l),registration_satisfaction(r301,h),registration_satisfaction(r302,m),registration_satisfaction(r303,h),registration_satisfaction(r304,h),registration_satisfaction(r305,l),registration_satisfaction(r306,h),registration_satisfaction(r307,l),registration_satisfaction(r308,l),registration_satisfaction(r309,m),registration_satisfaction(r310,h),registration_satisfaction(r311,l),registration_satisfaction(r312,_G138958),registration_satisfaction(r313,_G138963),registration_satisfaction(r314,h),registration_satisfaction(r315,h),registration_satisfaction(r316,l),registration_satisfaction(r317,l),registration_satisfaction(r318,h),registration_satisfaction(r319,m),registration_satisfaction(r320,h),registration_satisfaction(r321,l),registration_satisfaction(r322,h),registration_satisfaction(r323,l),registration_satisfaction(r324,h),registration_satisfaction(r325,h),registration_satisfaction(r326,h),registration_satisfaction(r327,m),registration_satisfaction(r328,h),registration_satisfaction(r329,h),registration_satisfaction(r330,l),registration_satisfaction(r331,h),registration_satisfaction(r332,l),registration_satisfaction(r333,h),registration_satisfaction(r334,h),registration_satisfaction(r335,h),registration_satisfaction(r336,_G139078),registration_satisfaction(r337,_G139083),registration_satisfaction(r338,h),registration_satisfaction(r339,h),registration_satisfaction(r340,h),registration_satisfaction(r341,_G139103),registration_satisfaction(r342,h),registration_satisfaction(r343,h),registration_satisfaction(r344,_G139118),registration_satisfaction(r345,m),registration_satisfaction(r346,h),registration_satisfaction(r347,m),registration_satisfaction(r348,m),registration_satisfaction(r349,h),registration_satisfaction(r350,m),registration_satisfaction(r351,h),registration_satisfaction(r352,l),registration_satisfaction(r353,h),registration_satisfaction(r354,h),registration_satisfaction(r355,_G139173),registration_satisfaction(r356,m),registration_satisfaction(r357,_G139183),registration_satisfaction(r358,h),registration_satisfaction(r359,l),registration_satisfaction(r360,h),registration_satisfaction(r361,m),registration_satisfaction(r362,h),registration_satisfaction(r363,l),registration_satisfaction(r364,h),registration_satisfaction(r365,m),registration_satisfaction(r366,h),registration_satisfaction(r367,h),registration_satisfaction(r368,h),registration_satisfaction(r369,_G139243),registration_satisfaction(r370,h),registration_satisfaction(r371,h),registration_satisfaction(r372,h),registration_satisfaction(r373,h),registration_satisfaction(r374,l),registration_satisfaction(r375,h),registration_satisfaction(r376,m),registration_satisfaction(r377,h),registration_satisfaction(r378,h),registration_satisfaction(r379,h),registration_satisfaction(r380,h),registration_satisfaction(r381,m),registration_satisfaction(r382,h),registration_satisfaction(r383,h),registration_satisfaction(r384,m),registration_satisfaction(r385,m),registration_satisfaction(r386,l),registration_satisfaction(r387,h),registration_satisfaction(r388,h),registration_satisfaction(r389,h),registration_satisfaction(r390,h),registration_satisfaction(r391,l),registration_satisfaction(r392,h),registration_satisfaction(r393,h),registration_satisfaction(r394,h),registration_satisfaction(r395,_G139373),registration_satisfaction(r396,h),registration_satisfaction(r397,_G139383),registration_satisfaction(r398,l),registration_satisfaction(r399,h),registration_satisfaction(r400,h),registration_satisfaction(r401,l),registration_satisfaction(r402,h),registration_satisfaction(r403,h),registration_satisfaction(r404,h),registration_satisfaction(r405,h),registration_satisfaction(r406,h),registration_satisfaction(r407,h),registration_satisfaction(r408,h),registration_satisfaction(r409,h),registration_satisfaction(r410,h),registration_satisfaction(r411,l),registration_satisfaction(r412,h),registration_satisfaction(r413,l),registration_satisfaction(r414,_G139468),registration_satisfaction(r415,m),registration_satisfaction(r416,h),registration_satisfaction(r417,h),registration_satisfaction(r418,h),registration_satisfaction(r419,h),registration_satisfaction(r420,h),registration_satisfaction(r421,h),registration_satisfaction(r422,m),registration_satisfaction(r423,h),registration_satisfaction(r424,h),registration_satisfaction(r425,h),registration_satisfaction(r426,l),registration_satisfaction(r427,h),registration_satisfaction(r428,_G139538),registration_satisfaction(r429,h),registration_satisfaction(r430,l),registration_satisfaction(r431,m),registration_satisfaction(r432,h),registration_satisfaction(r433,h),registration_satisfaction(r434,h),registration_satisfaction(r435,m),registration_satisfaction(r436,h),registration_satisfaction(r437,h),registration_satisfaction(r438,l),registration_satisfaction(r439,h),registration_satisfaction(r440,h),registration_satisfaction(r441,h),registration_satisfaction(r442,m),registration_satisfaction(r443,h),registration_satisfaction(r444,h),registration_satisfaction(r445,h),registration_satisfaction(r446,h),registration_satisfaction(r447,m),registration_satisfaction(r448,l),registration_satisfaction(r449,h),registration_satisfaction(r450,h),registration_satisfaction(r451,h),registration_satisfaction(r452,h),registration_satisfaction(r453,h),registration_satisfaction(r454,l),registration_satisfaction(r455,m),registration_satisfaction(r456,h),registration_satisfaction(r457,h),registration_satisfaction(r458,m),registration_satisfaction(r459,m),registration_satisfaction(r460,l),registration_satisfaction(r461,h),registration_satisfaction(r462,h),registration_satisfaction(r463,l),registration_satisfaction(r464,h),registration_satisfaction(r465,h),registration_satisfaction(r466,l),registration_satisfaction(r467,h),registration_satisfaction(r468,h),registration_satisfaction(r469,h),registration_satisfaction(r470,h),registration_satisfaction(r471,h),registration_satisfaction(r472,h),registration_satisfaction(r473,l),registration_satisfaction(r474,m),registration_satisfaction(r475,h),registration_satisfaction(r476,l),registration_satisfaction(r477,m),registration_satisfaction(r478,h),registration_satisfaction(r479,l),registration_satisfaction(r480,h),registration_satisfaction(r481,m),registration_satisfaction(r482,h),registration_satisfaction(r483,h),registration_satisfaction(r484,m),registration_satisfaction(r485,h),registration_satisfaction(r486,h),registration_satisfaction(r487,h),registration_satisfaction(r488,l),registration_satisfaction(r489,m),registration_satisfaction(r490,m),registration_satisfaction(r491,l),registration_satisfaction(r492,_G139858),registration_satisfaction(r493,h),registration_satisfaction(r494,m),registration_satisfaction(r495,h),registration_satisfaction(r496,_G139878),registration_satisfaction(r497,h),registration_satisfaction(r498,l),registration_satisfaction(r499,_G139893),registration_satisfaction(r500,m),registration_satisfaction(r501,h),registration_satisfaction(r502,h),registration_satisfaction(r503,l),registration_satisfaction(r504,m),registration_satisfaction(r505,h),registration_satisfaction(r506,h),registration_satisfaction(r507,h),registration_satisfaction(r508,l),registration_satisfaction(r509,m),registration_satisfaction(r510,h),registration_satisfaction(r511,l),registration_satisfaction(r512,h),registration_satisfaction(r513,h),registration_satisfaction(r514,h),registration_satisfaction(r515,_G139973),registration_satisfaction(r516,_G139978),registration_satisfaction(r517,m),registration_satisfaction(r518,h),registration_satisfaction(r519,h),registration_satisfaction(r520,h),registration_satisfaction(r521,_G140003),registration_satisfaction(r522,h),registration_satisfaction(r523,h),registration_satisfaction(r524,_G140018),registration_satisfaction(r525,l),registration_satisfaction(r526,h),registration_satisfaction(r527,l),registration_satisfaction(r528,h),registration_satisfaction(r529,h),registration_satisfaction(r530,h),registration_satisfaction(r531,m),registration_satisfaction(r532,h),registration_satisfaction(r533,h),registration_satisfaction(r534,l),registration_satisfaction(r535,m),registration_satisfaction(r536,h),registration_satisfaction(r537,h),registration_satisfaction(r538,h),registration_satisfaction(r539,h),registration_satisfaction(r540,m),registration_satisfaction(r541,_G140103),registration_satisfaction(r542,h),registration_satisfaction(r543,h),registration_satisfaction(r544,h),registration_satisfaction(r545,h),registration_satisfaction(r546,h),registration_satisfaction(r547,l),registration_satisfaction(r548,h),registration_satisfaction(r549,h),registration_satisfaction(r550,h),registration_satisfaction(r551,h),registration_satisfaction(r552,m),registration_satisfaction(r553,m),registration_satisfaction(r554,l),registration_satisfaction(r555,m),registration_satisfaction(r556,h),registration_satisfaction(r557,h),registration_satisfaction(r558,h),registration_satisfaction(r559,h),registration_satisfaction(r560,h),registration_satisfaction(r561,h),registration_satisfaction(r562,h),registration_satisfaction(r563,m),registration_satisfaction(r564,h),registration_satisfaction(r565,l),registration_satisfaction(r566,_G140228),registration_satisfaction(r567,h),registration_satisfaction(r568,h),registration_satisfaction(r569,h),registration_satisfaction(r570,h),registration_satisfaction(r571,l),registration_satisfaction(r572,m),registration_satisfaction(r573,h),registration_satisfaction(r574,m),registration_satisfaction(r575,h),registration_satisfaction(r576,h),registration_satisfaction(r577,_G140283),registration_satisfaction(r578,l),registration_satisfaction(r579,h),registration_satisfaction(r580,m),registration_satisfaction(r581,h),registration_satisfaction(r582,h),registration_satisfaction(r583,h),registration_satisfaction(r584,h),registration_satisfaction(r585,h),registration_satisfaction(r586,m),registration_satisfaction(r587,m),registration_satisfaction(r588,l),registration_satisfaction(r589,l),registration_satisfaction(r590,h),registration_satisfaction(r591,h),registration_satisfaction(r592,_G140358),registration_satisfaction(r593,h),registration_satisfaction(r594,l),registration_satisfaction(r595,_G140373),registration_satisfaction(r596,h),registration_satisfaction(r597,h),registration_satisfaction(r598,h),registration_satisfaction(r599,h),registration_satisfaction(r600,m),registration_satisfaction(r601,m),registration_satisfaction(r602,h),registration_satisfaction(r603,h),registration_satisfaction(r604,l),registration_satisfaction(r605,h),registration_satisfaction(r606,h),registration_satisfaction(r607,l),registration_satisfaction(r608,h),registration_satisfaction(r609,h),registration_satisfaction(r610,h),registration_satisfaction(r611,h),registration_satisfaction(r612,l),registration_satisfaction(r613,h),registration_satisfaction(r614,m),registration_satisfaction(r615,l),registration_satisfaction(r616,h),registration_satisfaction(r617,h),registration_satisfaction(r618,h),registration_satisfaction(r619,h),registration_satisfaction(r620,h),registration_satisfaction(r621,h),registration_satisfaction(r622,h),registration_satisfaction(r623,l),registration_satisfaction(r624,m),registration_satisfaction(r625,l),registration_satisfaction(r626,h),registration_satisfaction(r627,h),registration_satisfaction(r628,h),registration_satisfaction(r629,h),registration_satisfaction(r630,h),registration_satisfaction(r631,h),registration_satisfaction(r632,h),registration_satisfaction(r633,h),registration_satisfaction(r634,h),registration_satisfaction(r635,m),registration_satisfaction(r636,l),registration_satisfaction(r637,m),registration_satisfaction(r638,h),registration_satisfaction(r639,h),registration_satisfaction(r640,h),registration_satisfaction(r641,h),registration_satisfaction(r642,h),registration_satisfaction(r643,h),registration_satisfaction(r644,h),registration_satisfaction(r645,h),registration_satisfaction(r646,h),registration_satisfaction(r647,h),registration_satisfaction(r648,h),registration_satisfaction(r649,_G140643),registration_satisfaction(r650,h),registration_satisfaction(r651,h),registration_satisfaction(r652,m),registration_satisfaction(r653,l),registration_satisfaction(r654,h),registration_satisfaction(r655,h),registration_satisfaction(r656,m),registration_satisfaction(r657,h),registration_satisfaction(r658,h),registration_satisfaction(r659,_G140693),registration_satisfaction(r660,h),registration_satisfaction(r661,h),registration_satisfaction(r662,h),registration_satisfaction(r663,h),registration_satisfaction(r664,l),registration_satisfaction(r665,h),registration_satisfaction(r666,_G140728),registration_satisfaction(r667,h),registration_satisfaction(r668,l),registration_satisfaction(r669,h),registration_satisfaction(r670,_G140748),registration_satisfaction(r671,h),registration_satisfaction(r672,l),registration_satisfaction(r673,l),registration_satisfaction(r674,h),registration_satisfaction(r675,_G140773),registration_satisfaction(r676,_G140778),registration_satisfaction(r677,_G140783),registration_satisfaction(r678,h),registration_satisfaction(r679,h),registration_satisfaction(r680,m),registration_satisfaction(r681,h),registration_satisfaction(r682,h),registration_satisfaction(r683,h),registration_satisfaction(r684,m),registration_satisfaction(r685,h),registration_satisfaction(r686,h),registration_satisfaction(r687,l),registration_satisfaction(r688,h),registration_satisfaction(r689,m),registration_satisfaction(r690,h),registration_satisfaction(r691,h),registration_satisfaction(r692,_G140858),registration_satisfaction(r693,h),registration_satisfaction(r694,_G140868),registration_satisfaction(r695,h),registration_satisfaction(r696,h),registration_satisfaction(r697,m),registration_satisfaction(r698,h),registration_satisfaction(r699,h),registration_satisfaction(r700,h),registration_satisfaction(r701,h),registration_satisfaction(r702,_G140908),registration_satisfaction(r703,l),registration_satisfaction(r704,l),registration_satisfaction(r705,l),registration_satisfaction(r706,m),registration_satisfaction(r707,h),registration_satisfaction(r708,l),registration_satisfaction(r709,m),registration_satisfaction(r710,l),registration_satisfaction(r711,h),registration_satisfaction(r712,h),registration_satisfaction(r713,h),registration_satisfaction(r714,m),registration_satisfaction(r715,h),registration_satisfaction(r716,h),registration_satisfaction(r717,h),registration_satisfaction(r718,l),registration_satisfaction(r719,_G140993),registration_satisfaction(r720,h),registration_satisfaction(r721,h),registration_satisfaction(r722,h),registration_satisfaction(r723,h),registration_satisfaction(r724,h),registration_satisfaction(r725,h),registration_satisfaction(r726,h),registration_satisfaction(r727,_G141033),registration_satisfaction(r728,m),registration_satisfaction(r729,_G141043),registration_satisfaction(r730,h),registration_satisfaction(r731,h),registration_satisfaction(r732,h),registration_satisfaction(r733,h),registration_satisfaction(r734,h),registration_satisfaction(r735,h),registration_satisfaction(r736,h),registration_satisfaction(r737,h),registration_satisfaction(r738,h),registration_satisfaction(r739,h),registration_satisfaction(r740,h),registration_satisfaction(r741,_G141103),registration_satisfaction(r742,h),registration_satisfaction(r743,h),registration_satisfaction(r744,h),registration_satisfaction(r745,m),registration_satisfaction(r746,h),registration_satisfaction(r747,h),registration_satisfaction(r748,h),registration_satisfaction(r749,m),registration_satisfaction(r750,h),registration_satisfaction(r751,h),registration_satisfaction(r752,m),registration_satisfaction(r753,m),registration_satisfaction(r754,h),registration_satisfaction(r755,l),registration_satisfaction(r756,h),registration_satisfaction(r757,h),registration_satisfaction(r758,h),registration_satisfaction(r759,l),registration_satisfaction(r760,h),registration_satisfaction(r761,h),registration_satisfaction(r762,m),registration_satisfaction(r763,h),registration_satisfaction(r764,_G141218),registration_satisfaction(r765,h),registration_satisfaction(r766,h),registration_satisfaction(r767,h),registration_satisfaction(r768,l),registration_satisfaction(r769,l),registration_satisfaction(r770,m),registration_satisfaction(r771,m),registration_satisfaction(r772,h),registration_satisfaction(r773,m),registration_satisfaction(r774,h),registration_satisfaction(r775,h),registration_satisfaction(r776,h),registration_satisfaction(r777,l),registration_satisfaction(r778,h),registration_satisfaction(r779,_G141293),registration_satisfaction(r780,_G141298),registration_satisfaction(r781,m),registration_satisfaction(r782,m),registration_satisfaction(r783,m),registration_satisfaction(r784,l),registration_satisfaction(r785,l),registration_satisfaction(r786,h),registration_satisfaction(r787,h),registration_satisfaction(r788,h),registration_satisfaction(r789,_G141343),registration_satisfaction(r790,h),registration_satisfaction(r791,h),registration_satisfaction(r792,h),registration_satisfaction(r793,m),registration_satisfaction(r794,l),registration_satisfaction(r795,h),registration_satisfaction(r796,h),registration_satisfaction(r797,h),registration_satisfaction(r798,m),registration_satisfaction(r799,m),registration_satisfaction(r800,m),registration_satisfaction(r801,h),registration_satisfaction(r802,h),registration_satisfaction(r803,h),registration_satisfaction(r804,h),registration_satisfaction(r805,h),registration_satisfaction(r806,h),registration_satisfaction(r807,l),registration_satisfaction(r808,m),registration_satisfaction(r809,l),registration_satisfaction(r810,h),registration_satisfaction(r811,_G141453),registration_satisfaction(r812,h),registration_satisfaction(r813,_G141463),registration_satisfaction(r814,l),registration_satisfaction(r815,h),registration_satisfaction(r816,h),registration_satisfaction(r817,h),registration_satisfaction(r818,l),registration_satisfaction(r819,h),registration_satisfaction(r820,h),registration_satisfaction(r821,_G141503),registration_satisfaction(r822,m),registration_satisfaction(r823,h),registration_satisfaction(r824,m),registration_satisfaction(r825,l),registration_satisfaction(r826,l),registration_satisfaction(r827,l),registration_satisfaction(r828,m),registration_satisfaction(r829,l),registration_satisfaction(r830,h),registration_satisfaction(r831,h),registration_satisfaction(r832,m),registration_satisfaction(r833,h),registration_satisfaction(r834,h),registration_satisfaction(r835,h),registration_satisfaction(r836,h),registration_satisfaction(r837,h),registration_satisfaction(r838,l),registration_satisfaction(r839,m),registration_satisfaction(r840,m),registration_satisfaction(r841,h),registration_satisfaction(r842,h),registration_satisfaction(r843,h),registration_satisfaction(r844,h),registration_satisfaction(r845,_G141623),registration_satisfaction(r846,l),registration_satisfaction(r847,h),registration_satisfaction(r848,l),registration_satisfaction(r849,h),registration_satisfaction(r850,h),registration_satisfaction(r851,h),registration_satisfaction(r852,h),registration_satisfaction(r853,h),registration_satisfaction(r854,m),registration_satisfaction(r855,h),registration_satisfaction(r856,l)]) | Prolog | 1 | ryandesign/yap | packages/CLPBN/benchmarks/school/missing10.yap | [
"Artistic-1.0-Perl",
"ClArtistic"
] |
import Nat "mo:base/Nat";
import TrieSet "mo:base/TrieSet";
import Nat32 "mo:base/Nat32";
import Hash "mo:base/Hash";
import Suite "mo:matchers/Suite";
import M "mo:matchers/Matchers";
import T "mo:matchers/Testable";
let simpleTests = do {
let set1 = TrieSet.fromArray<Nat>([ 1, 2, 3, 1, 2, 3, 1 ], Nat32.fromNat, Nat.equal);
let suite = Suite.suite("TrieSet fromArray", [
Suite.test(
"mem",
TrieSet.mem<Nat>(set1, 1, 1, Nat.equal),
M.equals(T.bool true)
),
Suite.test(
"size",
TrieSet.size(set1),
M.equals(T.nat 3)
),
Suite.test(
"toArray",
TrieSet.toArray<Nat>(set1),
M.equals(T.array<Nat>(T.natTestable, [ 1, 2, 3 ]))
)
]);
Suite.run(suite);
};
let binopTests = do {
let a = TrieSet.fromArray<Nat>([1, 3], Hash.hash, Nat.equal);
let b = TrieSet.fromArray<Nat>([2, 3], Hash.hash, Nat.equal);
let suite = Suite.suite("TrieSet -- binary operations", [
Suite.test("union",
TrieSet.toArray(TrieSet.union(a, b, Nat.equal)),
M.equals(T.array<Nat>(T.natTestable, [1, 2, 3]))
),
Suite.test("intersect",
TrieSet.toArray(TrieSet.intersect(a, b, Nat.equal)),
M.equals(T.array<Nat>(T.natTestable, [3]))
),
Suite.test("diff",
TrieSet.toArray(TrieSet.diff(a, b, Nat.equal)),
M.equals(T.array<Nat>(T.natTestable, [1]))
),
]);
Suite.run(suite);
};
| Modelica | 4 | nomeata/motoko-base | test/trieSetTest.mo | [
"Apache-2.0"
] |
/*
Copyright 2018 Google LLC
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.
*/
#include <tommath.h>
#include <tomcrypt.h>
//#define PROD
//#define DEBUG
#ifdef DEBUG
#define dbgprintf(...) printf(__VA_ARGS__)
#else
#define dbgprintf(...)
#endif
#ifdef PROD
#define PSS ("acc6bbca472433494")
#define CTF_FLAG ("CTF{fLaGinTh34Ir}")
#else
#define PSS ("thesecret")
#define CTF_FLAG ("CTF{flag}")
#endif
int count = 0;
int d = 2000;
bool is_server = false;
void setup() {
Serial.begin(115200);
pinMode(LED_BUILTIN, OUTPUT);
pinMode(KEY_BUILTIN, INPUT);
crypt_mp_init("l");
register_hash(&sha256_desc);
register_cipher(&aes_desc);
init_prng();
digitalWrite(LED_BUILTIN, HIGH);
delay(2000);
digitalWrite(LED_BUILTIN, LOW);
if (digitalRead(KEY_BUILTIN) == 1) {
Serial.println("Starting as client");
client_setup();
} else {
Serial.println("Starting as server");
d = 500;
is_server = true;
server_setup();
}
}
void loop() {
delay(d);
if (count++ % 2)
digitalWrite(LED_BUILTIN, HIGH);
else
digitalWrite(LED_BUILTIN, LOW);
if (!is_server) {
client_loop();
}
}
| Arduino | 3 | iicarus-bit/google-ctf | 2018/finals/crypto-ble/arduino/challenge/challenge.ino | [
"Apache-2.0"
] |
"""
before
closure
after
"""
a = def:
print("closure")
print("before")
a()
print("after")
| Boo | 1 | popcatalin81/boo | tests/testcases/integration/closures/closures-2.boo | [
"BSD-3-Clause"
] |
;;-------------------------------------------------------------------------------------------------------
;; Copyright (C) Microsoft. All rights reserved.
;; Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
;;-------------------------------------------------------------------------------------------------------
(set-logic ALL)
;;
;; Type Tags
;;
(declare-datatypes (
(TypeTag 0)
) (
(
(TypeTag_$Invalid)
;;TYPE_TAG_DECLS;;
)
))
(declare-datatypes (
(AbstractTypeTag 0)
) (
(
(AbstractTypeTag_$Invalid)
;;ABSTRACT_TYPE_TAG_DECLS;;
)
))
(declare-datatypes (
(TupleIndexTag 0)
) (
(
(TupleIndexTag_$Invalid)
;;INDEX_TAG_DECLS;;
)
))
(declare-datatypes (
(RecordPropertyTag 0)
) (
(
(RecordPropertyTag_$Invalid)
;;RecordPropertyTag;;
)
))
(declare-fun SubtypeOf@ (TypeTag AbstractTypeTag) Bool)
;;SUBTYPE_DECLS;;
(declare-fun HasIndex@ (TypeTag TupleIndexTag) Bool)
;;TUPLE_HAS_INDEX_DECLS;;
(declare-fun HasProperty@ (TypeTag RecordPropertyTag) Bool)
;;RECORD_HAS_PROPERTY_DECLS;;
(declare-fun TypeTagRank@ (TypeTag) Int)
;;KEY_TYPE_TAG_RANK;;
;;BINTEGRAL_TYPE_ALIAS;;
(define-sort BBigInt () Int)
(define-sort BBigNat () Int)
(define-sort BFloat () Real)
(define-sort BDecimal () Real)
(define-sort BRational () Real)
;;BSTRING_TYPE_ALIAS;;
(define-sort BByteBuffer () (Seq (_ BitVec 8)))
(define-sort BISOTime () Int)
(define-sort BLogicalTime () Int)
(define-sort BUUID () (_ BitVec 12)) ;;TODO we should experiment with this encoding -- int, bv128, constructor?
;;BHASHCODE_TYPE_ALIAS;;
;;TODO BHashable and Hash + HashInvert and axioms
;;BINT_CONSTANTS;;
(define-sort HavocSequence () (Seq BNat))
(declare-sort NumericOps 0)
(declare-sort ListFlatOps 0)
(declare-sort ListConcatOps 0)
(declare-sort ListOps 0)
(declare-const BBigInt@zero BBigInt) (assert (= BBigInt@zero 0))
(declare-const BBigInt@one BBigInt) (assert (= BBigInt@one 1))
(declare-const BBigNat@zero BBigNat) (assert (= BBigNat@zero 0))
(declare-const BBigNat@one BBigNat) (assert (= BBigNat@one 1))
(declare-const BFloat@zero BFloat) (assert (= BFloat@zero 0.0))
(declare-const BFloat@one BFloat) (assert (= BFloat@one 1.0))
(declare-const BFloat@pi BFloat) (assert (= BFloat@pi 3.141592653589793))
(declare-const BFloat@e BFloat) (assert (= BFloat@e 2.718281828459045))
(declare-const BDecimal@zero BDecimal) (assert (= BDecimal@zero 0.0))
(declare-const BDecimal@one BDecimal) (assert (= BDecimal@one 1.0))
(declare-const BDecimal@pi BDecimal) (assert (= BDecimal@pi 3.141592653589793))
(declare-const BDecimal@e BDecimal) (assert (= BDecimal@e 2.718281828459045))
(declare-const BRational@zero BRational) (assert (= BRational@zero 0.0))
(declare-const BRational@one BRational) (assert (= BRational@one 1.0))
(declare-fun BByteBuffer@expandstr ((BByteBuffer)) BString)
;;Define the ISequence datatype and operators
(declare-sort ISequence 0)
(declare-fun ISequence@size (ISequence) BNat)
(declare-fun ISequence@get (ISequence BNat) BNat)
(define-fun ISequence@assertSorted ((s ISequence)) Bool
(let ((len (ISequence@size s)))
(forall ((i BNat) (j BNat))
(=> (and (bvult i j) (bvult j len))
(bvult (ISequence@get s i) (ISequence@get s j))))
)
)
(define-fun ISequence@assertValuesRange ((s ISequence) (limit BNat)) Bool
(let ((len (ISequence@size s)))
(forall ((i BNat))
(=> (bvult i len)
(bvult (ISequence@get s i) limit)))
)
)
(declare-const ISequence@empty ISequence)
(assert (= (ISequence@size ISequence@empty) BNat@zero))
;;Define the JSequence datatype
(declare-datatype JSequencePair ((JSequencePair@cons (JSequencePair@a BNat) (JSequencePair@b BNat))))
(declare-sort JSequence 0)
(declare-fun JSequence@size (JSequence) BNat)
(declare-fun JSequence@get (JSequence BNat) JSequencePair)
(define-fun JSequence@assertSorted ((s JSequence)) Bool
(let ((len (JSequence@size s)))
(forall ((i BNat) (j BNat))
(=> (and (bvult i j) (bvult j len))
(or
(bvult (JSequencePair@a (JSequence@get s i)) (JSequencePair@a (JSequence@get s j)))
(and (= (JSequencePair@a (JSequence@get s i)) (JSequencePair@a (JSequence@get s j))) (bvult (JSequencePair@b (JSequence@get s i)) (JSequencePair@b (JSequence@get s j))))
)
)
)
)
)
(define-fun JSequence@assertValuesRange ((s JSequence) (limita BNat) (limitb BNat)) Bool
(let ((len (JSequence@size s)))
(forall ((i BNat))
(=> (bvult i len)
(and (bvult (JSequencePair@a (JSequence@get s i)) limita) (bvult (JSequencePair@b (JSequence@get s i)) limitb))))
)
)
(declare-const JSequence@empty JSequence)
(assert (= (JSequence@size JSequence@empty) BNat@zero))
;;Define the SSequence datatype
(declare-sort SSequence 0)
(declare-fun SSequence@size (SSequence) BNat)
(declare-fun SSequence@get (SSequence BNat) BNat)
(define-fun SSequence@assertValuesRange ((s SSequence) (limit BNat)) Bool
(let ((len (SSequence@size s)))
(forall ((i BNat))
(=> (bvult i len)
(bvult (SSequence@get s i) limit)))
)
)
(declare-const SSequence@empty SSequence)
(assert (= (SSequence@size SSequence@empty) BNat@zero))
;;
;; Primitive datatypes
;;
(declare-datatypes (
(bsq_none 0)
(bsq_nothing 0)
; Bool -> Bool
; Int -> BV
; Nat -> BV
; BigInt -> Int
; BigNat -> Int
; Float -> Real
; Decimal -> Real
; Rational -> Real
; String -> String | (Seq (_ BitVec 64))
; ByteBuffer -> (Seq (_ BitVec 8))
; ISOTime -> Int
; LogicalTime -> Int
; UUID -> ?? need to investigate
; ContentHash -> (_ BitVec X)
) (
( (bsq_none@literal) )
( (bsq_nothing@literal) )
))
;;
;; KeyType Concept datatypes
;;
(declare-datatypes (
;;KEY_TYPE_DECLS;;
(bsq_keyobject 0)
(BKey 0)
) (
;;KEY_TYPE_CONSTRUCTORS;;
(
(bsqkey_none@literal)
(bsqkey_nothing@literal)
(bsqkey_bool@box (bsqkey_bool_value Bool))
(bsqkey_int@box (bsqkey_int_value BInt))
(bsqkey_nat@box (bsqkey_nat_value BNat))
(bsqkey_bigint@box (bsqkey_bigint_value BBigInt))
(bsqkey_bignat@box (bsqkey_bignat_value BBigNat))
(bsqkey_string@box (bsqkey_string_value BString))
(bsqkey_logicaltime@box (bsqkey_logicaltime_value BLogicalTime))
(bsqkey_uuid@box (bsqkey_uuid_value BUUID))
(bsqkey_contenthash@box (bsqkey_contenthash_value BHash))
;;KEY_TYPE_BOXING;;
)
( (BKey@box (BKey_type TypeTag) (BKey_value bsq_keyobject)) )
))
(declare-const BKey@none BKey)
(assert (= BKey@none (BKey@box TypeTag_None bsqkey_none@literal)))
(declare-const BKey@nothing BKey)
(assert (= BKey@nothing (BKey@box TypeTag_Nothing bsqkey_nothing@literal)))
(define-fun bsqkey_none@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
false
)
(define-fun bsqkey_nothing@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
false
)
(define-fun bsqkey_bool@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(and (not (bsqkey_bool_value k1)) (bsqkey_bool_value k2))
)
(define-fun bsqkey_int@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(bvslt (bsqkey_int_value k1) (bsqkey_int_value k2))
)
(define-fun bsqkey_nat@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(bvult (bsqkey_nat_value k1) (bsqkey_nat_value k2))
)
(define-fun bsqkey_bigint@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(< (bsqkey_bigint_value k1) (bsqkey_bigint_value k2))
)
(define-fun bsqkey_bignat@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(< (bsqkey_bignat_value k1) (bsqkey_bignat_value k2))
)
(define-fun bsqkey_string@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(str.< (bsqkey_string_value k1) (bsqkey_string_value k2))
)
(define-fun bsqkey_logicaltime@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(< (bsqkey_logicaltime_value k1) (bsqkey_logicaltime_value k2))
)
(define-fun bsqkey_uuid@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(bvult (bsqkey_uuid_value k1) (bsqkey_uuid_value k2))
)
(define-fun bsqkey_contenthash@less ((k1 bsq_keyobject) (k2 bsq_keyobject)) Bool
(bvult (bsqkey_contenthash_value k1) (bsqkey_contenthash_value k2))
)
;;
;; Any Concept datatypes
;;
(declare-datatypes (
(bsq_regex 0)
;;TUPLE_DECLS;;
;;RECORD_DECLS;;
;;TYPE_COLLECTION_INTERNAL_INFO_DECLS;;
;;TYPE_DECLS;;
(bsq_object 0)
(BTerm 0)
) (
( (bsq_regex@cons (bsq_regex_value Int)) )
;;TUPLE_TYPE_CONSTRUCTORS;;
;;RECORD_TYPE_CONSTRUCTORS;;
;;TYPE_COLLECTION_INTERNAL_INFO_CONSTRUCTORS;;
;;TYPE_CONSTRUCTORS;;
(
(bsqobject_float@box (bsqobject_float_value BFloat))
(bsqobject_decimal@box (bsqobject_decimal_value BDecimal))
(bsqobject_rational@box (bsqobject_rational_value BRational))
(bsqobject_bytebuffer@box (bsqobject_bytebuffer_value BByteBuffer))
(bsqobject_isotime@box (bsqobject_isotime_value Int))
(bsqobject_regex@box (bsqobject_regex_value bsq_regex))
;;TUPLE_TYPE_BOXING;;
;;RECORD_TYPE_BOXING;;
;;TYPE_BOXING;;
)
(
(BTerm@termbox (BTerm_termtype TypeTag) (BTerm_termvalue bsq_object))
(BTerm@keybox (BTerm_keyvalue BKey))
)
))
(declare-const BTerm@none BTerm)
(assert (= BTerm@none (BTerm@keybox BKey@none)))
(declare-const BTerm@nothing BTerm)
(assert (= BTerm@nothing (BTerm@keybox BKey@nothing)))
;;TYPE_COLLECTION_EMPTY_DECLS;;
;;
;;Define utility functions
;;
(define-fun GetTypeTag@BKey ((t BKey)) TypeTag
(BKey_type t)
)
(define-fun GetTypeTag@BTerm ((t BTerm)) TypeTag
(ite ((_ is BTerm@termbox) t) (BTerm_termtype t) (BKey_type (BTerm_keyvalue t)))
)
;;
;; Ephemeral datatypes
;;
(declare-datatypes (
(elistnull 0)
;;EPHEMERAL_DECLS;;
) (
( (elistnull@cons) )
;;EPHEMERAL_CONSTRUCTORS;;
))
(declare-datatypes (
(ErrorID 0)
) (
(
(ErrorID_AssumeCheck)
(ErrorID_Target)
)
))
(declare-datatypes (
;;RESULT_DECLS;;
;;MASK_DECLS;;
) (
;;RESULTS;;
;;MASKS;;
))
;;
;;Free constructors for entrypoint initialization
;;
(define-fun BNone@UFCons_API ((hs (Seq BNat))) bsq_none
bsq_none@literal
)
(define-fun BNothing@UFCons_API ((hs (Seq BNat))) bsq_nothing
bsq_nothing@literal
)
(declare-fun BBool@UFCons_API ((Seq BNat)) Bool)
(declare-fun BInt@UFCons_API ((Seq BNat)) BInt )
(declare-fun BNat@UFCons_API ((Seq BNat)) BNat)
(declare-fun BBigInt@UFCons_API ((Seq BNat)) BBigInt)
(declare-fun BBigNat@UFCons_API ((Seq BNat)) BBigNat)
(declare-fun BFloat@UFCons_API ((Seq BNat)) BFloat)
(declare-fun BDecimal@UFCons_API ((Seq BNat)) BDecimal)
(declare-fun BRational@UFCons_API ((Seq BNat)) BRational)
(declare-fun BString@UFCons_API ((Seq BNat)) BString)
(declare-fun BByteBuffer@UFCons_API ((Seq BNat)) BByteBuffer)
(declare-fun BISOTime@UFCons_API ((Seq BNat)) BISOTime)
(declare-fun BLogicalTime@UFCons_API ((Seq BNat)) BLogicalTime)
(declare-fun BUUID@UFCons_API ((Seq BNat)) BUUID)
(declare-fun BContentHash@UFCons_API ((Seq BNat)) BHash)
(declare-fun ListSize@UFCons_API ((Seq BNat)) BNat)
(declare-fun EnumChoice@UFCons_API ((Seq BNat)) BNat)
(declare-fun ConceptChoice@UFCons_API ((Seq BNat)) BNat)
(declare-fun UnionChoice@UFCons_API ((Seq BNat)) BNat)
;;GLOBAL_DECLS;;
;;UF_DECLS;;
;;FUNCTION_DECLS;;
;;GLOBAL_DEFINITIONS;;
;;ACTION;;
| SMT | 3 | lzscydkd/BosqueLanguage | impl/src/tooling/verifier/runtime/smtruntime.smt2 | [
"MIT"
] |
--TEST--
Bug #33802 (throw Exception in error handler causes crash)
--FILE--
<?php
set_error_handler('errorHandler', E_USER_ERROR);
try{
test();
}catch(Exception $e){
}
restore_error_handler();
function test(){
trigger_error("error", E_USER_ERROR);
}
function errorHandler($errno, $errstr, $errfile, $errline) {
throw new Exception();
}
?>
ok
--EXPECT--
ok
| PHP | 3 | guomoumou123/php5.5.10 | Zend/tests/bug33802.phpt | [
"PHP-3.01"
] |
// RUN: %target-typecheck-verify-swift -target %target-cpu-apple-macosx10.15 -swift-version 5
// REQUIRES: objc_interop
// REQUIRES: OS=macosx
import SwiftUI
struct UnitVolumeView: View {
var measurement: Measurement<Unit>
var body: some View {
Text("")
}
}
struct UnitView_Previews: PreviewProvider {
static var previews: some View {
let volume: Measurement<Unit> = Measurement<UnitVolume>(value: 200, unit: UnitVolume.milliliters)
// expected-error@-1 {{cannot assign value of type 'Measurement<UnitVolume>' to type 'Measurement<Unit>'}}
// expected-note@-2 {{arguments to generic parameter 'UnitType' ('UnitVolume' and 'Unit') are expected to be equal}}
Group {
ForEach(["en", "de", "fr"], id: \.self) { id in
UnitVolumeView(measurement: volume)
.previewLayout(PreviewLayout.sizeThatFits)
.environment(\.locale, .init(identifier: id))
}
}
}
}
| Swift | 4 | gandhi56/swift | validation-test/Sema/SwiftUI/rdar68795727.swift | [
"Apache-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.