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 |
|---|---|---|---|---|---|
/*
* Copyright (c) 2021, [your name here] <[your email here]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCrypto/Authentication/HMAC.h>
#include <LibCrypto/Hash/MD5.h>
#include <LibCrypto/Hash/SHA1.h>
#include <LibCrypto/Hash/SHA2.h>
#include <LibTest/TestCase.h>
#include <cstring>
TEST_CASE(test_hmac_md5_name)
{
Crypto::Authentication::HMAC<Crypto::Hash::MD5> hmac("Well Hello Friends");
EXPECT_EQ(hmac.class_name(), "HMAC-MD5");
}
TEST_CASE(test_hmac_md5_process)
{
Crypto::Authentication::HMAC<Crypto::Hash::MD5> hmac("Well Hello Friends");
u8 result[] {
0x3b, 0x5b, 0xde, 0x30, 0x3a, 0x54, 0x7b, 0xbb, 0x09, 0xfe, 0x78, 0x89, 0xbc, 0x9f, 0x22, 0xa3
};
auto mac = hmac.process("Some bogus data");
EXPECT(memcmp(result, mac.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_md5_process_reuse)
{
Crypto::Authentication::HMAC<Crypto::Hash::MD5> hmac("Well Hello Friends");
auto mac_0 = hmac.process("Some bogus data");
auto mac_1 = hmac.process("Some bogus data");
EXPECT(memcmp(mac_0.data, mac_1.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha1_name)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA1> hmac("Well Hello Friends");
EXPECT_EQ(hmac.class_name(), "HMAC-SHA1");
}
TEST_CASE(test_hmac_sha1_process)
{
u8 key[] { 0xc8, 0x52, 0xe5, 0x4a, 0x2c, 0x03, 0x2b, 0xc9, 0x63, 0xd3, 0xc2, 0x79, 0x0f, 0x76, 0x43, 0xef, 0x36, 0xc3, 0x7a, 0xca };
Crypto::Authentication::HMAC<Crypto::Hash::SHA1> hmac(ReadonlyBytes { key, sizeof(key) });
u8 result[] {
0x2c, 0x57, 0x32, 0x61, 0x3b, 0xa7, 0x84, 0x87, 0x0e, 0x4f, 0x42, 0x07, 0x2f, 0xf0, 0xe7, 0x41, 0xd7, 0x15, 0xf4, 0x56
};
u8 value[] {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x03, 0x03, 0x00, 0x10, 0x14, 0x00, 0x00, 0x0c, 0xa1, 0x91, 0x1a, 0x20, 0x59, 0xb5, 0x45, 0xa9, 0xb4, 0xad, 0x75, 0x3e
};
auto mac = hmac.process(value, 29);
EXPECT(memcmp(result, mac.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha1_process_reuse)
{
u8 key[] { 0xc8, 0x52, 0xe5, 0x4a, 0x2c, 0x03, 0x2b, 0xc9, 0x63, 0xd3, 0xc2, 0x79, 0x0f, 0x76, 0x43, 0xef, 0x36, 0xc3, 0x7a, 0xca };
Crypto::Authentication::HMAC<Crypto::Hash::SHA1> hmac(ReadonlyBytes { key, sizeof(key) });
u8 result[] {
0x2c, 0x57, 0x32, 0x61, 0x3b, 0xa7, 0x84, 0x87, 0x0e, 0x4f, 0x42, 0x07, 0x2f, 0xf0, 0xe7, 0x41, 0xd7, 0x15, 0xf4, 0x56
};
u8 value[] {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x03, 0x03, 0x00, 0x10, 0x14, 0x00, 0x00, 0x0c, 0xa1, 0x91, 0x1a, 0x20, 0x59, 0xb5, 0x45, 0xa9, 0xb4, 0xad, 0x75, 0x3e
};
hmac.update(value, 8);
hmac.update(value + 8, 5);
hmac.update(value + 13, 16);
auto mac = hmac.digest();
EXPECT(memcmp(result, mac.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha256_name)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA256> hmac("Well Hello Friends");
EXPECT_EQ(hmac.class_name(), "HMAC-SHA256");
}
TEST_CASE(test_hmac_sha256_process)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA256> hmac("Well Hello Friends");
u8 result[] {
0x1a, 0xf2, 0x20, 0x62, 0xde, 0x3b, 0x84, 0x65, 0xc1, 0x25, 0x23, 0x99, 0x76, 0x15, 0x1b, 0xec, 0x15, 0x21, 0x82, 0x1f, 0x23, 0xca, 0x11, 0x66, 0xdd, 0x8c, 0x6e, 0xf1, 0x81, 0x3b, 0x7f, 0x1b
};
auto mac = hmac.process("Some bogus data");
EXPECT(memcmp(result, mac.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha256_reuse)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA256> hmac("Well Hello Friends");
auto mac_0 = hmac.process("Some bogus data");
auto mac_1 = hmac.process("Some bogus data");
EXPECT(memcmp(mac_0.data, mac_1.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha256_data_is_same_size_as_block)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA256> hmac("Well Hello Friends");
u8 result[] = {
0x1d, 0x90, 0xce, 0x68, 0x45, 0x0b, 0xba, 0xd6, 0xbe, 0x1c, 0xb2, 0x3a, 0xea, 0x7f, 0xac, 0x4b, 0x68, 0x08, 0xa4, 0x77, 0x81, 0x2a, 0xad, 0x5d, 0x05, 0xe2, 0x15, 0xe8, 0xf4, 0xcb, 0x06, 0xaf
};
auto mac = hmac.process("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
EXPECT(memcmp(result, mac.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha256_data_is_bigger_size_as_block)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA256> hmac("Well Hello Friends");
u8 result[] = {
0x9b, 0xa3, 0x9e, 0xf3, 0xb4, 0x30, 0x5f, 0x6f, 0x67, 0xd0, 0xa8, 0xb0, 0xf0, 0xcb, 0x12, 0xf5, 0x85, 0xe2, 0x19, 0xba, 0x0c, 0x8b, 0xe5, 0x43, 0xf0, 0x93, 0x39, 0xa8, 0xa3, 0x07, 0xf1, 0x95
};
auto mac = hmac.process("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
EXPECT(memcmp(result, mac.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha512_name)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA512> hmac("Well Hello Friends");
EXPECT_EQ(hmac.class_name(), "HMAC-SHA512");
}
TEST_CASE(test_hmac_sha512_process)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA512> hmac("Well Hello Friends");
u8 result[] {
0xeb, 0xa8, 0x34, 0x11, 0xfd, 0x5b, 0x46, 0x5b, 0xef, 0xbb, 0x67, 0x5e, 0x7d, 0xc2, 0x7c, 0x2c, 0x6b, 0xe1, 0xcf, 0xe6, 0xc7, 0xe4, 0x7d, 0xeb, 0xca, 0x97, 0xb7, 0x4c, 0xd3, 0x4d, 0x6f, 0x08, 0x9f, 0x0d, 0x3a, 0xf1, 0xcb, 0x00, 0x79, 0x78, 0x2f, 0x05, 0x8e, 0xeb, 0x94, 0x48, 0x0d, 0x50, 0x64, 0x3b, 0xca, 0x70, 0xe2, 0x69, 0x38, 0x4f, 0xe4, 0xb0, 0x49, 0x0f, 0xc5, 0x4c, 0x7a, 0xa7
};
auto mac = hmac.process("Some bogus data");
EXPECT(memcmp(result, mac.data, hmac.digest_size()) == 0);
}
TEST_CASE(test_hmac_sha512_reuse)
{
Crypto::Authentication::HMAC<Crypto::Hash::SHA512> hmac("Well Hello Friends");
auto mac_0 = hmac.process("Some bogus data");
auto mac_1 = hmac.process("Some bogus data");
EXPECT(memcmp(mac_0.data, mac_1.data, hmac.digest_size()) == 0);
}
| C++ | 4 | r00ster91/serenity | Tests/LibCrypto/TestHMAC.cpp | [
"BSD-2-Clause"
] |
{-
Elm generator test
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: 1.0.0
NOTE: This file is auto generated by the openapi-generator.
https://github.com/openapitools/openapi-generator.git
DO NOT EDIT THIS FILE MANUALLY.
For more info on generating Elm code, see https://eriktim.github.io/openapi-elm/
-}
module Api.Data exposing
( Absent
, Array
, Composed
, ComposedBase
, Discriminated(..)
, DiscriminatedA
, DiscriminatedB
, Enum(..), enumVariants
, Enumeric(..), enumericVariants
, Maybe_
, OneOf(..)
, OneOfA
, OneOfB
, Primitive
, Recursion, RecursionMaybe(..), RecursionList(..), RecursionRef(..)
, RecursionLoop, RecursionLoopRef(..)
, UnsafeCharacters
, encodeAbsent
, encodeArray
, encodeComposed
, encodeComposedBase
, encodeDiscriminated
, encodeDiscriminatedA
, encodeDiscriminatedB
, encodeEnum
, encodeEnumeric
, encodeMaybe
, encodeOneOf
, encodeOneOfA
, encodeOneOfB
, encodePrimitive
, encodeRecursion
, encodeRecursionLoop
, encodeUnsafeCharacters
, absentDecoder
, arrayDecoder
, composedDecoder
, composedBaseDecoder
, discriminatedDecoder
, discriminatedADecoder
, discriminatedBDecoder
, enumDecoder
, enumericDecoder
, maybeDecoder
, oneOfDecoder
, oneOfADecoder
, oneOfBDecoder
, primitiveDecoder
, recursionDecoder
, recursionLoopDecoder
, unsafeCharactersDecoder
)
import Api
import Dict
import Json.Decode
import Json.Encode
-- MODEL
{-| Model having absent and null values
-}
type alias Absent =
{ default : Maybe String
, required : String
, nullable : Maybe String
, requiredNullable : Maybe String
}
{-| Model with arrays
-}
type alias Array =
{ array : List (String)
, arrayOfArray : List (List (String))
, arrayOfPrimitve : Maybe (List (Primitive))
, arrayOfEnum : Maybe (List (Enum))
}
{-| Composed model
-}
type alias Composed =
{ base : Float
, value : Maybe String
}
type alias ComposedBase =
{ base : Float
}
{-| Discriminated model
-}
type Discriminated
= Discriminated BaseDiscriminated
| DiscriminatedDiscriminatedA DiscriminatedA
| DiscriminatedDiscriminatedB DiscriminatedB
type alias BaseDiscriminated =
{ kind : String
}
type alias DiscriminatedA =
{ baseDiscriminated: BaseDiscriminated
, a : Maybe String
}
type alias DiscriminatedB =
{ baseDiscriminated: BaseDiscriminated
, b : Maybe String
}
type Enum
= EnumFoo
| EnumBar
| EnumBaz
enumVariants : List Enum
enumVariants =
[ EnumFoo
, EnumBar
, EnumBaz
]
type Enumeric
= Enumeric1
| Enumeric2
| Enumeric3
enumericVariants : List Enumeric
enumericVariants =
[ Enumeric1
, Enumeric2
, Enumeric3
]
{-| Model using reserved words
-}
type alias Maybe_ =
{ type_ : Maybe String
, if_ : Maybe Bool
}
{-| One of two models
-}
type OneOf
= OneOfOneOfA OneOfA
| OneOfOneOfB OneOfB
type alias OneOfA =
{ a : Maybe String
}
type alias OneOfB =
{ b : Maybe String
}
{-| Model with primitive properties
-}
type alias Primitive =
{ string : Maybe String
, number : Maybe Float
, float : Maybe Float
, double : Maybe Float
, integer : Maybe Int
, short : Maybe Int
, long : Maybe Int
, boolean : Maybe Bool
}
type alias Recursion =
{ maybe : RecursionMaybe
, list : RecursionList
, ref : RecursionRef
}
type RecursionMaybe = RecursionMaybe (Maybe Recursion)
unwrapRecursionMaybe : RecursionMaybe -> Maybe Recursion
unwrapRecursionMaybe (RecursionMaybe maybe) = maybe
type RecursionList = RecursionList (Maybe (List (Recursion)))
unwrapRecursionList : RecursionList -> Maybe (List (Recursion))
unwrapRecursionList (RecursionList list) = list
type RecursionRef = RecursionRef (Maybe RecursionLoop)
unwrapRecursionRef : RecursionRef -> Maybe RecursionLoop
unwrapRecursionRef (RecursionRef ref) = ref
type alias RecursionLoop =
{ ref : RecursionLoopRef
}
type RecursionLoopRef = RecursionLoopRef (Maybe Recursion)
unwrapRecursionLoopRef : RecursionLoopRef -> Maybe Recursion
unwrapRecursionLoopRef (RecursionLoopRef ref) = ref
{-| Model using unsafe characters
-}
type alias UnsafeCharacters =
{ prefix : Maybe String
, suffix : Maybe String
, rnd0mTff : Maybe String
, before : Maybe String
, after : Maybe String
, both : Maybe String
, inTheMiddle : Maybe String
}
-- ENCODER
encodeAbsent : Absent -> Json.Encode.Value
encodeAbsent =
encodeObject << encodeAbsentPairs
encodeAbsentWithTag : ( String, String ) -> Absent -> Json.Encode.Value
encodeAbsentWithTag (tagField, tag) model =
encodeObject (encodeAbsentPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeAbsentPairs : Absent -> List EncodedField
encodeAbsentPairs model =
let
pairs =
[ maybeEncode "default" Json.Encode.string model.default
, encode "required" Json.Encode.string model.required
, maybeEncodeNullable "nullable" Json.Encode.string model.nullable
, encodeNullable "requiredNullable" Json.Encode.string model.requiredNullable
]
in
pairs
encodeArray : Array -> Json.Encode.Value
encodeArray =
encodeObject << encodeArrayPairs
encodeArrayWithTag : ( String, String ) -> Array -> Json.Encode.Value
encodeArrayWithTag (tagField, tag) model =
encodeObject (encodeArrayPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeArrayPairs : Array -> List EncodedField
encodeArrayPairs model =
let
pairs =
[ encode "array" (Json.Encode.list Json.Encode.string) model.array
, encode "arrayOfArray" (Json.Encode.list (Json.Encode.list Json.Encode.string)) model.arrayOfArray
, maybeEncode "arrayOfPrimitve" (Json.Encode.list encodePrimitive) model.arrayOfPrimitve
, maybeEncode "arrayOfEnum" (Json.Encode.list encodeEnum) model.arrayOfEnum
]
in
pairs
encodeComposed : Composed -> Json.Encode.Value
encodeComposed =
encodeObject << encodeComposedPairs
encodeComposedWithTag : ( String, String ) -> Composed -> Json.Encode.Value
encodeComposedWithTag (tagField, tag) model =
encodeObject (encodeComposedPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeComposedPairs : Composed -> List EncodedField
encodeComposedPairs model =
let
pairs =
[ encode "base" Json.Encode.float model.base
, maybeEncode "value" Json.Encode.string model.value
]
in
pairs
encodeComposedBase : ComposedBase -> Json.Encode.Value
encodeComposedBase =
encodeObject << encodeComposedBasePairs
encodeComposedBaseWithTag : ( String, String ) -> ComposedBase -> Json.Encode.Value
encodeComposedBaseWithTag (tagField, tag) model =
encodeObject (encodeComposedBasePairs model ++ [ encode tagField Json.Encode.string tag ])
encodeComposedBasePairs : ComposedBase -> List EncodedField
encodeComposedBasePairs model =
let
pairs =
[ encode "base" Json.Encode.float model.base
]
in
pairs
encodeDiscriminated : Discriminated -> Json.Encode.Value
encodeDiscriminated model =
case model of
Discriminated subModel ->
encodeBaseDiscriminated subModel
DiscriminatedDiscriminatedA subModel ->
encodeDiscriminatedAWithTag ("kind", "DiscriminatedA") subModel
DiscriminatedDiscriminatedB subModel ->
encodeDiscriminatedBWithTag ("kind", "DiscriminatedB") subModel
encodeBaseDiscriminated : BaseDiscriminated -> Json.Encode.Value
encodeBaseDiscriminated =
encodeObject << encodeBaseDiscriminatedPairs
encodeBaseDiscriminatedWithTag : ( String, String ) -> BaseDiscriminated -> Json.Encode.Value
encodeBaseDiscriminatedWithTag (tagField, tag) model =
encodeObject (encodeBaseDiscriminatedPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeBaseDiscriminatedPairs : BaseDiscriminated -> List EncodedField
encodeBaseDiscriminatedPairs model =
let
pairs =
[ encode "kind" Json.Encode.string model.kind
]
in
pairs
encodeDiscriminatedA : DiscriminatedA -> Json.Encode.Value
encodeDiscriminatedA =
encodeObject << encodeDiscriminatedAPairs
encodeDiscriminatedAWithTag : ( String, String ) -> DiscriminatedA -> Json.Encode.Value
encodeDiscriminatedAWithTag (tagField, tag) model =
encodeObject (encodeDiscriminatedAPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeDiscriminatedAPairs : DiscriminatedA -> List EncodedField
encodeDiscriminatedAPairs model =
let
pairs =
[ maybeEncode "a" Json.Encode.string model.a
]
in
encodeBaseDiscriminatedPairs model.baseDiscriminated ++ pairs
encodeDiscriminatedB : DiscriminatedB -> Json.Encode.Value
encodeDiscriminatedB =
encodeObject << encodeDiscriminatedBPairs
encodeDiscriminatedBWithTag : ( String, String ) -> DiscriminatedB -> Json.Encode.Value
encodeDiscriminatedBWithTag (tagField, tag) model =
encodeObject (encodeDiscriminatedBPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeDiscriminatedBPairs : DiscriminatedB -> List EncodedField
encodeDiscriminatedBPairs model =
let
pairs =
[ maybeEncode "b" Json.Encode.string model.b
]
in
encodeBaseDiscriminatedPairs model.baseDiscriminated ++ pairs
stringFromEnum : Enum -> String
stringFromEnum model =
case model of
EnumFoo ->
"foo"
EnumBar ->
"bar"
EnumBaz ->
"baz"
encodeEnum : Enum -> Json.Encode.Value
encodeEnum =
Json.Encode.string << stringFromEnum
stringFromEnumeric : Enumeric -> String
stringFromEnumeric =
String.fromInt << intFromEnumeric
intFromEnumeric : Enumeric -> Int
intFromEnumeric model =
case model of
Enumeric1 ->
1
Enumeric2 ->
2
Enumeric3 ->
3
encodeEnumeric : Enumeric -> Json.Encode.Value
encodeEnumeric =
Json.Encode.int << intFromEnumeric
encodeMaybe : Maybe_ -> Json.Encode.Value
encodeMaybe =
encodeObject << encodeMaybePairs
encodeMaybeWithTag : ( String, String ) -> Maybe_ -> Json.Encode.Value
encodeMaybeWithTag (tagField, tag) model =
encodeObject (encodeMaybePairs model ++ [ encode tagField Json.Encode.string tag ])
encodeMaybePairs : Maybe_ -> List EncodedField
encodeMaybePairs model =
let
pairs =
[ maybeEncode "type" Json.Encode.string model.type_
, maybeEncode "if" Json.Encode.bool model.if_
]
in
pairs
encodeOneOf : OneOf -> Json.Encode.Value
encodeOneOf model =
case model of
OneOfOneOfA subModel ->
encodeOneOfA subModel
OneOfOneOfB subModel ->
encodeOneOfB subModel
encodeOneOfA : OneOfA -> Json.Encode.Value
encodeOneOfA =
encodeObject << encodeOneOfAPairs
encodeOneOfAWithTag : ( String, String ) -> OneOfA -> Json.Encode.Value
encodeOneOfAWithTag (tagField, tag) model =
encodeObject (encodeOneOfAPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeOneOfAPairs : OneOfA -> List EncodedField
encodeOneOfAPairs model =
let
pairs =
[ maybeEncode "a" Json.Encode.string model.a
]
in
pairs
encodeOneOfB : OneOfB -> Json.Encode.Value
encodeOneOfB =
encodeObject << encodeOneOfBPairs
encodeOneOfBWithTag : ( String, String ) -> OneOfB -> Json.Encode.Value
encodeOneOfBWithTag (tagField, tag) model =
encodeObject (encodeOneOfBPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeOneOfBPairs : OneOfB -> List EncodedField
encodeOneOfBPairs model =
let
pairs =
[ maybeEncode "b" Json.Encode.string model.b
]
in
pairs
encodePrimitive : Primitive -> Json.Encode.Value
encodePrimitive =
encodeObject << encodePrimitivePairs
encodePrimitiveWithTag : ( String, String ) -> Primitive -> Json.Encode.Value
encodePrimitiveWithTag (tagField, tag) model =
encodeObject (encodePrimitivePairs model ++ [ encode tagField Json.Encode.string tag ])
encodePrimitivePairs : Primitive -> List EncodedField
encodePrimitivePairs model =
let
pairs =
[ maybeEncode "string" Json.Encode.string model.string
, maybeEncode "number" Json.Encode.float model.number
, maybeEncode "float" Json.Encode.float model.float
, maybeEncode "double" Json.Encode.float model.double
, maybeEncode "integer" Json.Encode.int model.integer
, maybeEncode "short" Json.Encode.int model.short
, maybeEncode "long" Json.Encode.int model.long
, maybeEncode "boolean" Json.Encode.bool model.boolean
]
in
pairs
encodeRecursion : Recursion -> Json.Encode.Value
encodeRecursion =
encodeObject << encodeRecursionPairs
encodeRecursionWithTag : ( String, String ) -> Recursion -> Json.Encode.Value
encodeRecursionWithTag (tagField, tag) model =
encodeObject (encodeRecursionPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeRecursionPairs : Recursion -> List EncodedField
encodeRecursionPairs model =
let
pairs =
[ maybeEncode "maybe" encodeRecursion <| unwrapRecursionMaybe model.maybe
, maybeEncode "list" (Json.Encode.list encodeRecursion) <| unwrapRecursionList model.list
, maybeEncode "ref" encodeRecursionLoop <| unwrapRecursionRef model.ref
]
in
pairs
encodeRecursionLoop : RecursionLoop -> Json.Encode.Value
encodeRecursionLoop =
encodeObject << encodeRecursionLoopPairs
encodeRecursionLoopWithTag : ( String, String ) -> RecursionLoop -> Json.Encode.Value
encodeRecursionLoopWithTag (tagField, tag) model =
encodeObject (encodeRecursionLoopPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeRecursionLoopPairs : RecursionLoop -> List EncodedField
encodeRecursionLoopPairs model =
let
pairs =
[ maybeEncode "ref" encodeRecursion <| unwrapRecursionLoopRef model.ref
]
in
pairs
encodeUnsafeCharacters : UnsafeCharacters -> Json.Encode.Value
encodeUnsafeCharacters =
encodeObject << encodeUnsafeCharactersPairs
encodeUnsafeCharactersWithTag : ( String, String ) -> UnsafeCharacters -> Json.Encode.Value
encodeUnsafeCharactersWithTag (tagField, tag) model =
encodeObject (encodeUnsafeCharactersPairs model ++ [ encode tagField Json.Encode.string tag ])
encodeUnsafeCharactersPairs : UnsafeCharacters -> List EncodedField
encodeUnsafeCharactersPairs model =
let
pairs =
[ maybeEncode "$prefix" Json.Encode.string model.prefix
, maybeEncode "suffix$" Json.Encode.string model.suffix
, maybeEncode "r@nd0m_$t#ff" Json.Encode.string model.rnd0mTff
, maybeEncode "_before" Json.Encode.string model.before
, maybeEncode "after_" Json.Encode.string model.after
, maybeEncode "_both_" Json.Encode.string model.both
, maybeEncode "in_the_middle" Json.Encode.string model.inTheMiddle
]
in
pairs
-- DECODER
absentDecoder : Json.Decode.Decoder Absent
absentDecoder =
Json.Decode.succeed Absent
|> maybeDecode "default" Json.Decode.string Nothing
|> decode "required" Json.Decode.string
|> maybeDecodeNullable "nullable" Json.Decode.string Nothing
|> decodeNullable "requiredNullable" Json.Decode.string
arrayDecoder : Json.Decode.Decoder Array
arrayDecoder =
Json.Decode.succeed Array
|> decode "array" (Json.Decode.list Json.Decode.string)
|> decode "arrayOfArray" (Json.Decode.list (Json.Decode.list Json.Decode.string))
|> maybeDecode "arrayOfPrimitve" (Json.Decode.list primitiveDecoder) Nothing
|> maybeDecode "arrayOfEnum" (Json.Decode.list enumDecoder) Nothing
composedDecoder : Json.Decode.Decoder Composed
composedDecoder =
Json.Decode.succeed Composed
|> decode "base" Json.Decode.float
|> maybeDecode "value" Json.Decode.string Nothing
composedBaseDecoder : Json.Decode.Decoder ComposedBase
composedBaseDecoder =
Json.Decode.succeed ComposedBase
|> decode "base" Json.Decode.float
discriminatedDecoder : Json.Decode.Decoder Discriminated
discriminatedDecoder =
Json.Decode.field "kind" Json.Decode.string
|> Json.Decode.andThen discriminatedTagDecoder
discriminatedTagDecoder : String -> Json.Decode.Decoder Discriminated
discriminatedTagDecoder tag =
case tag of
"DiscriminatedA" ->
Json.Decode.map DiscriminatedDiscriminatedA discriminatedADecoder
"DiscriminatedB" ->
Json.Decode.map DiscriminatedDiscriminatedB discriminatedBDecoder
_ ->
Json.Decode.map Discriminated baseDiscriminatedDecoder
baseDiscriminatedDecoder : Json.Decode.Decoder BaseDiscriminated
baseDiscriminatedDecoder =
Json.Decode.succeed BaseDiscriminated
|> decode "kind" Json.Decode.string
discriminatedADecoder : Json.Decode.Decoder DiscriminatedA
discriminatedADecoder =
Json.Decode.succeed DiscriminatedA
|> decodeChain baseDiscriminatedDecoder
|> maybeDecode "a" Json.Decode.string Nothing
discriminatedBDecoder : Json.Decode.Decoder DiscriminatedB
discriminatedBDecoder =
Json.Decode.succeed DiscriminatedB
|> decodeChain baseDiscriminatedDecoder
|> maybeDecode "b" Json.Decode.string Nothing
enumDecoder : Json.Decode.Decoder Enum
enumDecoder =
Json.Decode.string
|> Json.Decode.andThen
(\value ->
case value of
"foo" ->
Json.Decode.succeed EnumFoo
"bar" ->
Json.Decode.succeed EnumBar
"baz" ->
Json.Decode.succeed EnumBaz
other ->
Json.Decode.fail <| "Unknown type: " ++ other
)
enumericDecoder : Json.Decode.Decoder Enumeric
enumericDecoder =
Json.Decode.int
|> Json.Decode.andThen
(\value ->
case value of
1 ->
Json.Decode.succeed Enumeric1
2 ->
Json.Decode.succeed Enumeric2
3 ->
Json.Decode.succeed Enumeric3
other ->
Json.Decode.fail <| "Unknown type: " ++ String.fromInt other
)
maybeDecoder : Json.Decode.Decoder Maybe_
maybeDecoder =
Json.Decode.succeed Maybe_
|> maybeDecode "type" Json.Decode.string Nothing
|> maybeDecode "if" Json.Decode.bool Nothing
oneOfDecoder : Json.Decode.Decoder OneOf
oneOfDecoder =
Json.Decode.oneOf
[ Json.Decode.map OneOfOneOfA oneOfADecoder
, Json.Decode.map OneOfOneOfB oneOfBDecoder
]
oneOfADecoder : Json.Decode.Decoder OneOfA
oneOfADecoder =
Json.Decode.succeed OneOfA
|> maybeDecode "a" Json.Decode.string Nothing
oneOfBDecoder : Json.Decode.Decoder OneOfB
oneOfBDecoder =
Json.Decode.succeed OneOfB
|> maybeDecode "b" Json.Decode.string Nothing
primitiveDecoder : Json.Decode.Decoder Primitive
primitiveDecoder =
Json.Decode.succeed Primitive
|> maybeDecode "string" Json.Decode.string Nothing
|> maybeDecode "number" Json.Decode.float Nothing
|> maybeDecode "float" Json.Decode.float Nothing
|> maybeDecode "double" Json.Decode.float Nothing
|> maybeDecode "integer" Json.Decode.int Nothing
|> maybeDecode "short" Json.Decode.int Nothing
|> maybeDecode "long" Json.Decode.int Nothing
|> maybeDecode "boolean" Json.Decode.bool Nothing
recursionDecoder : Json.Decode.Decoder Recursion
recursionDecoder =
Json.Decode.succeed Recursion
|> maybeDecodeLazy RecursionMaybe "maybe" (Json.Decode.lazy (\_ -> recursionDecoder)) Nothing
|> maybeDecodeLazy RecursionList "list" (Json.Decode.list (Json.Decode.lazy (\_ -> recursionDecoder))) Nothing
|> maybeDecodeLazy RecursionRef "ref" (Json.Decode.lazy (\_ -> recursionLoopDecoder)) Nothing
recursionLoopDecoder : Json.Decode.Decoder RecursionLoop
recursionLoopDecoder =
Json.Decode.succeed RecursionLoop
|> maybeDecodeLazy RecursionLoopRef "ref" (Json.Decode.lazy (\_ -> recursionDecoder)) Nothing
unsafeCharactersDecoder : Json.Decode.Decoder UnsafeCharacters
unsafeCharactersDecoder =
Json.Decode.succeed UnsafeCharacters
|> maybeDecode "$prefix" Json.Decode.string Nothing
|> maybeDecode "suffix$" Json.Decode.string Nothing
|> maybeDecode "r@nd0m_$t#ff" Json.Decode.string Nothing
|> maybeDecode "_before" Json.Decode.string Nothing
|> maybeDecode "after_" Json.Decode.string Nothing
|> maybeDecode "_both_" Json.Decode.string Nothing
|> maybeDecode "in_the_middle" Json.Decode.string Nothing
-- HELPER
type alias EncodedField =
Maybe ( String, Json.Encode.Value )
encodeObject : List EncodedField -> Json.Encode.Value
encodeObject =
Json.Encode.object << List.filterMap identity
encode : String -> (a -> Json.Encode.Value) -> a -> EncodedField
encode key encoder value =
Just ( key, encoder value )
encodeNullable : String -> (a -> Json.Encode.Value) -> Maybe a -> EncodedField
encodeNullable key encoder value =
Just ( key, Maybe.withDefault Json.Encode.null (Maybe.map encoder value) )
maybeEncode : String -> (a -> Json.Encode.Value) -> Maybe a -> EncodedField
maybeEncode key encoder =
Maybe.map (Tuple.pair key << encoder)
maybeEncodeNullable : String -> (a -> Json.Encode.Value) -> Maybe a -> EncodedField
maybeEncodeNullable =
encodeNullable
decode : String -> Json.Decode.Decoder a -> Json.Decode.Decoder (a -> b) -> Json.Decode.Decoder b
decode key decoder =
decodeChain (Json.Decode.field key decoder)
decodeLazy : (a -> c) -> String -> Json.Decode.Decoder a -> Json.Decode.Decoder (c -> b) -> Json.Decode.Decoder b
decodeLazy f key decoder =
decodeChainLazy f (Json.Decode.field key decoder)
decodeNullable : String -> Json.Decode.Decoder a -> Json.Decode.Decoder (Maybe a -> b) -> Json.Decode.Decoder b
decodeNullable key decoder =
decodeChain (maybeField key decoder Nothing)
decodeNullableLazy : (Maybe a -> c) -> String -> Json.Decode.Decoder a -> Json.Decode.Decoder (c -> b) -> Json.Decode.Decoder b
decodeNullableLazy f key decoder =
decodeChainLazy f (maybeField key decoder Nothing)
maybeDecode : String -> Json.Decode.Decoder a -> Maybe a -> Json.Decode.Decoder (Maybe a -> b) -> Json.Decode.Decoder b
maybeDecode key decoder fallback =
-- let's be kind to null-values as well
decodeChain (maybeField key decoder fallback)
maybeDecodeLazy : (Maybe a -> c) -> String -> Json.Decode.Decoder a -> Maybe a -> Json.Decode.Decoder (c -> b) -> Json.Decode.Decoder b
maybeDecodeLazy f key decoder fallback =
-- let's be kind to null-values as well
decodeChainLazy f (maybeField key decoder fallback)
maybeDecodeNullable : String -> Json.Decode.Decoder a -> Maybe a -> Json.Decode.Decoder (Maybe a -> b) -> Json.Decode.Decoder b
maybeDecodeNullable key decoder fallback =
decodeChain (maybeField key decoder fallback)
maybeDecodeNullableLazy : (Maybe a -> c) -> String -> Json.Decode.Decoder a -> Maybe a -> Json.Decode.Decoder (c -> b) -> Json.Decode.Decoder b
maybeDecodeNullableLazy f key decoder fallback =
decodeChainLazy f (maybeField key decoder fallback)
maybeField : String -> Json.Decode.Decoder a -> Maybe a -> Json.Decode.Decoder (Maybe a)
maybeField key decoder fallback =
let
fieldDecoder =
Json.Decode.field key Json.Decode.value
valueDecoder =
Json.Decode.oneOf [ Json.Decode.map Just decoder, Json.Decode.null fallback ]
decodeObject rawObject =
case Json.Decode.decodeValue fieldDecoder rawObject of
Ok rawValue ->
case Json.Decode.decodeValue valueDecoder rawValue of
Ok value ->
Json.Decode.succeed value
Err error ->
Json.Decode.fail (Json.Decode.errorToString error)
Err _ ->
Json.Decode.succeed fallback
in
Json.Decode.value
|> Json.Decode.andThen decodeObject
decodeChain : Json.Decode.Decoder a -> Json.Decode.Decoder (a -> b) -> Json.Decode.Decoder b
decodeChain =
Json.Decode.map2 (|>)
decodeChainLazy : (a -> c) -> Json.Decode.Decoder a -> Json.Decode.Decoder (c -> b) -> Json.Decode.Decoder b
decodeChainLazy f =
decodeChain << Json.Decode.map f | Elm | 5 | therockstorm/openapi-generator | samples/openapi3/client/elm/src/Api/Data.elm | [
"Apache-2.0"
] |
pong = nil
done = false
Parent = Thread current
ping = Actor spawn: {
loop: {
count = Actor receive
"." print
{ count println; done = true; break } if: (count > 1000)
pong ! (count + 1)
}
Parent run
}
pong = Actor spawn: {
loop: {
count = Actor receive
"-" print
{ count println; done = true; break } if: (count > 1000)
ping ! (count + 1)
}
Parent run
}
ping ! 1
# Let the actors process while the main thread sleeps...
Thread stop | Fancy | 3 | bakkdoor/fancy | examples/actors_primitive.fy | [
"BSD-3-Clause"
] |
/*****************************************************************************
*
* QUERY:
* LOAD "filename"
*
*****************************************************************************/
LoadStmt: LOAD file_name
{
PGLoadStmt *n = makeNode(PGLoadStmt);
n->filename = $2;
n->load_type = PG_LOAD_TYPE_LOAD;
$$ = (PGNode *)n;
} |
INSTALL file_name {
PGLoadStmt *n = makeNode(PGLoadStmt);
n->filename = $2;
n->load_type = PG_LOAD_TYPE_INSTALL;
$$ = (PGNode *)n;
} |
FORCE INSTALL file_name {
PGLoadStmt *n = makeNode(PGLoadStmt);
n->filename = $3;
n->load_type = PG_LOAD_TYPE_FORCE_INSTALL;
$$ = (PGNode *)n;
}
;
file_name: Sconst { $$ = $1; } |
ColId { $$ = $1; };
| Yacc | 4 | AldoMyrtaj/duckdb | third_party/libpg_query/grammar/statements/load.y | [
"MIT"
] |
1728 1728 19896
0 0 1
0 8 -1
0 33 -1
0 202 -1
1 1 1.25
1 6 -1
1 8 -0.25
1 34 -0.75
1 203 -1
2 2 1.25
2 7 -1
2 35 -0.75
2 201 -1
2 202 -0.25
3 3 1
3 8 1
3 14 -1
3 36 -1
3 208 -1
4 4 1.25
4 6 1
4 8 -0.25
4 12 -1
4 14 -0.25
4 37 -0.75
4 209 -1
5 5 1.25
5 7 1
5 13 -1
5 38 -0.75
5 207 -1
5 208 -0.25
6 1 -1
6 4 1
6 6 2
6 12 -1
6 34 1
6 37 -1
6 203 1
6 209 -1
7 2 -1
7 5 1
7 7 2.5
7 13 -0.75
7 35 1
7 38 -1
7 201 1
7 203 -0.25
7 207 -1
7 209 -0.25
8 0 -1
8 1 -0.25
8 3 1
8 4 -0.25
8 8 2.5
8 14 -0.75
8 33 1
8 34 -0.25
8 36 -1
8 37 -0.25
8 202 1
8 208 -1
9 9 1
9 14 1
9 20 -1
9 42 -1
9 217 -1
10 10 1.25
10 12 1
10 14 -0.25
10 18 -1
10 20 -0.25
10 43 -0.75
10 218 -1
11 11 1.25
11 13 1
11 19 -1
11 44 -0.75
11 216 -1
11 217 -0.25
12 4 -1
12 6 -1
12 10 1
12 12 2
12 18 -1
12 37 1
12 43 -1
12 209 1
12 218 -1
13 5 -1
13 7 -0.75
13 11 1
13 13 2.5
13 19 -0.75
13 38 1
13 44 -1
13 207 1
13 209 -0.25
13 216 -1
13 218 -0.25
14 3 -1
14 4 -0.25
14 8 -0.75
14 9 1
14 10 -0.25
14 14 2.5
14 20 -0.75
14 36 1
14 37 -0.25
14 42 -1
14 43 -0.25
14 208 1
14 217 -1
15 15 1
15 20 1
15 26 -1
15 48 -1
15 226 -1
16 16 1.25
16 18 1
16 20 -0.25
16 24 -1
16 26 -0.25
16 49 -0.75
16 227 -1
17 17 1.25
17 19 1
17 25 -1
17 50 -0.75
17 225 -1
17 226 -0.25
18 10 -1
18 12 -1
18 16 1
18 18 2
18 24 -1
18 43 1
18 49 -1
18 218 1
18 227 -1
19 11 -1
19 13 -0.75
19 17 1
19 19 2.5
19 25 -0.75
19 44 1
19 50 -1
19 216 1
19 218 -0.25
19 225 -1
19 227 -0.25
20 9 -1
20 10 -0.25
20 14 -0.75
20 15 1
20 16 -0.25
20 20 2.5
20 26 -0.75
20 42 1
20 43 -0.25
20 48 -1
20 49 -0.25
20 217 1
20 226 -1
21 21 1
21 26 1
21 32 -1
21 54 -1
21 235 -1
22 22 1.25
22 24 1
22 26 -0.25
22 30 -1
22 32 -0.25
22 55 -0.75
22 236 -1
23 23 1.25
23 25 1
23 31 -1
23 56 -0.75
23 234 -1
23 235 -0.25
24 16 -1
24 18 -1
24 22 1
24 24 2
24 30 -1
24 49 1
24 55 -1
24 227 1
24 236 -1
25 17 -1
25 19 -0.75
25 23 1
25 25 2.5
25 31 -0.75
25 50 1
25 56 -1
25 225 1
25 227 -0.25
25 234 -1
25 236 -0.25
26 15 -1
26 16 -0.25
26 20 -0.75
26 21 1
26 22 -0.25
26 26 2.5
26 32 -0.75
26 48 1
26 49 -0.25
26 54 -1
26 55 -0.25
26 226 1
26 235 -1
27 27 1
27 32 1
27 60 -1
27 244 -1
28 28 1.25
28 30 1
28 32 -0.25
28 61 -0.75
28 245 -1
29 29 1.25
29 31 1
29 62 -0.75
29 243 -1
29 244 -0.25
30 22 -1
30 24 -1
30 28 1
30 30 2
30 55 1
30 61 -1
30 236 1
30 245 -1
31 23 -1
31 25 -0.75
31 29 1
31 31 2.5
31 56 1
31 62 -1
31 234 1
31 236 -0.25
31 243 -1
31 245 -0.25
32 21 -1
32 22 -0.25
32 26 -0.75
32 27 1
32 28 -0.25
32 32 2.5
32 54 1
32 55 -0.25
32 60 -1
32 61 -0.25
32 235 1
32 244 -1
33 0 -1
33 8 1
33 33 2
33 41 -1
33 66 -1
33 202 1
33 250 -1
34 1 -0.75
34 6 1
34 8 -0.25
34 34 2.5
34 39 -1
34 41 -0.25
34 67 -0.75
34 203 1
34 251 -1
35 2 -0.75
35 7 1
35 35 2.5
35 40 -1
35 68 -0.75
35 201 1
35 202 -0.25
35 249 -1
35 250 -0.25
36 3 -1
36 8 -1
36 14 1
36 36 2
36 41 1
36 47 -1
36 69 -1
36 208 1
36 256 -1
37 4 -0.75
37 6 -1
37 8 -0.25
37 12 1
37 14 -0.25
37 37 2.5
37 39 1
37 41 -0.25
37 45 -1
37 47 -0.25
37 70 -0.75
37 209 1
37 257 -1
38 5 -0.75
38 7 -1
38 13 1
38 38 2.5
38 40 1
38 46 -1
38 71 -0.75
38 207 1
38 208 -0.25
38 255 -1
38 256 -0.25
39 34 -1
39 37 1
39 39 2
39 45 -1
39 67 1
39 70 -1
39 251 1
39 257 -1
40 35 -1
40 38 1
40 40 2.5
40 46 -0.75
40 68 1
40 71 -1
40 249 1
40 251 -0.25
40 255 -1
40 257 -0.25
41 33 -1
41 34 -0.25
41 36 1
41 37 -0.25
41 41 2.5
41 47 -0.75
41 66 1
41 67 -0.25
41 69 -1
41 70 -0.25
41 250 1
41 256 -1
42 9 -1
42 14 -1
42 20 1
42 42 2
42 47 1
42 53 -1
42 75 -1
42 217 1
42 265 -1
43 10 -0.75
43 12 -1
43 14 -0.25
43 18 1
43 20 -0.25
43 43 2.5
43 45 1
43 47 -0.25
43 51 -1
43 53 -0.25
43 76 -0.75
43 218 1
43 266 -1
44 11 -0.75
44 13 -1
44 19 1
44 44 2.5
44 46 1
44 52 -1
44 77 -0.75
44 216 1
44 217 -0.25
44 264 -1
44 265 -0.25
45 37 -1
45 39 -1
45 43 1
45 45 2
45 51 -1
45 70 1
45 76 -1
45 257 1
45 266 -1
46 38 -1
46 40 -0.75
46 44 1
46 46 2.5
46 52 -0.75
46 71 1
46 77 -1
46 255 1
46 257 -0.25
46 264 -1
46 266 -0.25
47 36 -1
47 37 -0.25
47 41 -0.75
47 42 1
47 43 -0.25
47 47 2.5
47 53 -0.75
47 69 1
47 70 -0.25
47 75 -1
47 76 -0.25
47 256 1
47 265 -1
48 15 -1
48 20 -1
48 26 1
48 48 2
48 53 1
48 59 -1
48 81 -1
48 226 1
48 274 -1
49 16 -0.75
49 18 -1
49 20 -0.25
49 24 1
49 26 -0.25
49 49 2.5
49 51 1
49 53 -0.25
49 57 -1
49 59 -0.25
49 82 -0.75
49 227 1
49 275 -1
50 17 -0.75
50 19 -1
50 25 1
50 50 2.5
50 52 1
50 58 -1
50 83 -0.75
50 225 1
50 226 -0.25
50 273 -1
50 274 -0.25
51 43 -1
51 45 -1
51 49 1
51 51 2
51 57 -1
51 76 1
51 82 -1
51 266 1
51 275 -1
52 44 -1
52 46 -0.75
52 50 1
52 52 2.5
52 58 -0.75
52 77 1
52 83 -1
52 264 1
52 266 -0.25
52 273 -1
52 275 -0.25
53 42 -1
53 43 -0.25
53 47 -0.75
53 48 1
53 49 -0.25
53 53 2.5
53 59 -0.75
53 75 1
53 76 -0.25
53 81 -1
53 82 -0.25
53 265 1
53 274 -1
54 21 -1
54 26 -1
54 32 1
54 54 2
54 59 1
54 65 -1
54 87 -1
54 235 1
54 283 -1
55 22 -0.75
55 24 -1
55 26 -0.25
55 30 1
55 32 -0.25
55 55 2.5
55 57 1
55 59 -0.25
55 63 -1
55 65 -0.25
55 88 -0.75
55 236 1
55 284 -1
56 23 -0.75
56 25 -1
56 31 1
56 56 2.5
56 58 1
56 64 -1
56 89 -0.75
56 234 1
56 235 -0.25
56 282 -1
56 283 -0.25
57 49 -1
57 51 -1
57 55 1
57 57 2
57 63 -1
57 82 1
57 88 -1
57 275 1
57 284 -1
58 50 -1
58 52 -0.75
58 56 1
58 58 2.5
58 64 -0.75
58 83 1
58 89 -1
58 273 1
58 275 -0.25
58 282 -1
58 284 -0.25
59 48 -1
59 49 -0.25
59 53 -0.75
59 54 1
59 55 -0.25
59 59 2.5
59 65 -0.75
59 81 1
59 82 -0.25
59 87 -1
59 88 -0.25
59 274 1
59 283 -1
60 27 -1
60 32 -1
60 60 2
60 65 1
60 93 -1
60 244 1
60 292 -1
61 28 -0.75
61 30 -1
61 32 -0.25
61 61 2.5
61 63 1
61 65 -0.25
61 94 -0.75
61 245 1
61 293 -1
62 29 -0.75
62 31 -1
62 62 2.5
62 64 1
62 95 -0.75
62 243 1
62 244 -0.25
62 291 -1
62 292 -0.25
63 55 -1
63 57 -1
63 61 1
63 63 2
63 88 1
63 94 -1
63 284 1
63 293 -1
64 56 -1
64 58 -0.75
64 62 1
64 64 2.5
64 89 1
64 95 -1
64 282 1
64 284 -0.25
64 291 -1
64 293 -0.25
65 54 -1
65 55 -0.25
65 59 -0.75
65 60 1
65 61 -0.25
65 65 2.5
65 87 1
65 88 -0.25
65 93 -1
65 94 -0.25
65 283 1
65 292 -1
66 33 -1
66 41 1
66 66 2
66 74 -1
66 99 -1
66 250 1
66 301 -1
67 34 -0.75
67 39 1
67 41 -0.25
67 67 2.5
67 72 -1
67 74 -0.25
67 100 -0.75
67 251 1
67 302 -1
68 35 -0.75
68 40 1
68 68 2.5
68 73 -1
68 101 -0.75
68 249 1
68 250 -0.25
68 300 -1
68 301 -0.25
69 36 -1
69 41 -1
69 47 1
69 69 2
69 74 1
69 80 -1
69 102 -1
69 256 1
69 307 -1
70 37 -0.75
70 39 -1
70 41 -0.25
70 45 1
70 47 -0.25
70 70 2.5
70 72 1
70 74 -0.25
70 78 -1
70 80 -0.25
70 103 -0.75
70 257 1
70 308 -1
71 38 -0.75
71 40 -1
71 46 1
71 71 2.5
71 73 1
71 79 -1
71 104 -0.75
71 255 1
71 256 -0.25
71 306 -1
71 307 -0.25
72 67 -1
72 70 1
72 72 2
72 78 -1
72 100 1
72 103 -1
72 302 1
72 308 -1
73 68 -1
73 71 1
73 73 2.5
73 79 -0.75
73 101 1
73 104 -1
73 300 1
73 302 -0.25
73 306 -1
73 308 -0.25
74 66 -1
74 67 -0.25
74 69 1
74 70 -0.25
74 74 2.5
74 80 -0.75
74 99 1
74 100 -0.25
74 102 -1
74 103 -0.25
74 301 1
74 307 -1
75 42 -1
75 47 -1
75 53 1
75 75 2
75 80 1
75 86 -1
75 108 -1
75 265 1
75 316 -1
76 43 -0.75
76 45 -1
76 47 -0.25
76 51 1
76 53 -0.25
76 76 2.5
76 78 1
76 80 -0.25
76 84 -1
76 86 -0.25
76 109 -0.75
76 266 1
76 317 -1
77 44 -0.75
77 46 -1
77 52 1
77 77 2.5
77 79 1
77 85 -1
77 110 -0.75
77 264 1
77 265 -0.25
77 315 -1
77 316 -0.25
78 70 -1
78 72 -1
78 76 1
78 78 2
78 84 -1
78 103 1
78 109 -1
78 308 1
78 317 -1
79 71 -1
79 73 -0.75
79 77 1
79 79 2.5
79 85 -0.75
79 104 1
79 110 -1
79 306 1
79 308 -0.25
79 315 -1
79 317 -0.25
80 69 -1
80 70 -0.25
80 74 -0.75
80 75 1
80 76 -0.25
80 80 2.5
80 86 -0.75
80 102 1
80 103 -0.25
80 108 -1
80 109 -0.25
80 307 1
80 316 -1
81 48 -1
81 53 -1
81 59 1
81 81 2
81 86 1
81 92 -1
81 114 -1
81 274 1
81 325 -1
82 49 -0.75
82 51 -1
82 53 -0.25
82 57 1
82 59 -0.25
82 82 2.5
82 84 1
82 86 -0.25
82 90 -1
82 92 -0.25
82 115 -0.75
82 275 1
82 326 -1
83 50 -0.75
83 52 -1
83 58 1
83 83 2.5
83 85 1
83 91 -1
83 116 -0.75
83 273 1
83 274 -0.25
83 324 -1
83 325 -0.25
84 76 -1
84 78 -1
84 82 1
84 84 2
84 90 -1
84 109 1
84 115 -1
84 317 1
84 326 -1
85 77 -1
85 79 -0.75
85 83 1
85 85 2.5
85 91 -0.75
85 110 1
85 116 -1
85 315 1
85 317 -0.25
85 324 -1
85 326 -0.25
86 75 -1
86 76 -0.25
86 80 -0.75
86 81 1
86 82 -0.25
86 86 2.5
86 92 -0.75
86 108 1
86 109 -0.25
86 114 -1
86 115 -0.25
86 316 1
86 325 -1
87 54 -1
87 59 -1
87 65 1
87 87 2
87 92 1
87 98 -1
87 120 -1
87 283 1
87 334 -1
88 55 -0.75
88 57 -1
88 59 -0.25
88 63 1
88 65 -0.25
88 88 2.5
88 90 1
88 92 -0.25
88 96 -1
88 98 -0.25
88 121 -0.75
88 284 1
88 335 -1
89 56 -0.75
89 58 -1
89 64 1
89 89 2.5
89 91 1
89 97 -1
89 122 -0.75
89 282 1
89 283 -0.25
89 333 -1
89 334 -0.25
90 82 -1
90 84 -1
90 88 1
90 90 2
90 96 -1
90 115 1
90 121 -1
90 326 1
90 335 -1
91 83 -1
91 85 -0.75
91 89 1
91 91 2.5
91 97 -0.75
91 116 1
91 122 -1
91 324 1
91 326 -0.25
91 333 -1
91 335 -0.25
92 81 -1
92 82 -0.25
92 86 -0.75
92 87 1
92 88 -0.25
92 92 2.5
92 98 -0.75
92 114 1
92 115 -0.25
92 120 -1
92 121 -0.25
92 325 1
92 334 -1
93 60 -1
93 65 -1
93 93 2
93 98 1
93 126 -1
93 292 1
93 343 -1
94 61 -0.75
94 63 -1
94 65 -0.25
94 94 2.5
94 96 1
94 98 -0.25
94 127 -0.75
94 293 1
94 344 -1
95 62 -0.75
95 64 -1
95 95 2.5
95 97 1
95 128 -0.75
95 291 1
95 292 -0.25
95 342 -1
95 343 -0.25
96 88 -1
96 90 -1
96 94 1
96 96 2
96 121 1
96 127 -1
96 335 1
96 344 -1
97 89 -1
97 91 -0.75
97 95 1
97 97 2.5
97 122 1
97 128 -1
97 333 1
97 335 -0.25
97 342 -1
97 344 -0.25
98 87 -1
98 88 -0.25
98 92 -0.75
98 93 1
98 94 -0.25
98 98 2.5
98 120 1
98 121 -0.25
98 126 -1
98 127 -0.25
98 334 1
98 343 -1
99 66 -1
99 74 1
99 99 2
99 107 -1
99 132 -1
99 301 1
99 352 -1
100 67 -0.75
100 72 1
100 74 -0.25
100 100 2.5
100 105 -1
100 107 -0.25
100 133 -0.75
100 302 1
100 353 -1
101 68 -0.75
101 73 1
101 101 2.5
101 106 -1
101 134 -0.75
101 300 1
101 301 -0.25
101 351 -1
101 352 -0.25
102 69 -1
102 74 -1
102 80 1
102 102 2
102 107 1
102 113 -1
102 135 -1
102 307 1
102 358 -1
103 70 -0.75
103 72 -1
103 74 -0.25
103 78 1
103 80 -0.25
103 103 2.5
103 105 1
103 107 -0.25
103 111 -1
103 113 -0.25
103 136 -0.75
103 308 1
103 359 -1
104 71 -0.75
104 73 -1
104 79 1
104 104 2.5
104 106 1
104 112 -1
104 137 -0.75
104 306 1
104 307 -0.25
104 357 -1
104 358 -0.25
105 100 -1
105 103 1
105 105 2
105 111 -1
105 133 1
105 136 -1
105 353 1
105 359 -1
106 101 -1
106 104 1
106 106 2.5
106 112 -0.75
106 134 1
106 137 -1
106 351 1
106 353 -0.25
106 357 -1
106 359 -0.25
107 99 -1
107 100 -0.25
107 102 1
107 103 -0.25
107 107 2.5
107 113 -0.75
107 132 1
107 133 -0.25
107 135 -1
107 136 -0.25
107 352 1
107 358 -1
108 75 -1
108 80 -1
108 86 1
108 108 2
108 113 1
108 119 -1
108 141 -1
108 316 1
108 367 -1
109 76 -0.75
109 78 -1
109 80 -0.25
109 84 1
109 86 -0.25
109 109 2.5
109 111 1
109 113 -0.25
109 117 -1
109 119 -0.25
109 142 -0.75
109 317 1
109 368 -1
110 77 -0.75
110 79 -1
110 85 1
110 110 2.5
110 112 1
110 118 -1
110 143 -0.75
110 315 1
110 316 -0.25
110 366 -1
110 367 -0.25
111 103 -1
111 105 -1
111 109 1
111 111 2
111 117 -1
111 136 1
111 142 -1
111 359 1
111 368 -1
112 104 -1
112 106 -0.75
112 110 1
112 112 2.5
112 118 -0.75
112 137 1
112 143 -1
112 357 1
112 359 -0.25
112 366 -1
112 368 -0.25
113 102 -1
113 103 -0.25
113 107 -0.75
113 108 1
113 109 -0.25
113 113 2.5
113 119 -0.75
113 135 1
113 136 -0.25
113 141 -1
113 142 -0.25
113 358 1
113 367 -1
114 81 -1
114 86 -1
114 92 1
114 114 2
114 119 1
114 125 -1
114 147 -1
114 325 1
114 376 -1
115 82 -0.75
115 84 -1
115 86 -0.25
115 90 1
115 92 -0.25
115 115 2.5
115 117 1
115 119 -0.25
115 123 -1
115 125 -0.25
115 148 -0.75
115 326 1
115 377 -1
116 83 -0.75
116 85 -1
116 91 1
116 116 2.5
116 118 1
116 124 -1
116 149 -0.75
116 324 1
116 325 -0.25
116 375 -1
116 376 -0.25
117 109 -1
117 111 -1
117 115 1
117 117 2
117 123 -1
117 142 1
117 148 -1
117 368 1
117 377 -1
118 110 -1
118 112 -0.75
118 116 1
118 118 2.5
118 124 -0.75
118 143 1
118 149 -1
118 366 1
118 368 -0.25
118 375 -1
118 377 -0.25
119 108 -1
119 109 -0.25
119 113 -0.75
119 114 1
119 115 -0.25
119 119 2.5
119 125 -0.75
119 141 1
119 142 -0.25
119 147 -1
119 148 -0.25
119 367 1
119 376 -1
120 87 -1
120 92 -1
120 98 1
120 120 2
120 125 1
120 131 -1
120 153 -1
120 334 1
120 385 -1
121 88 -0.75
121 90 -1
121 92 -0.25
121 96 1
121 98 -0.25
121 121 2.5
121 123 1
121 125 -0.25
121 129 -1
121 131 -0.25
121 154 -0.75
121 335 1
121 386 -1
122 89 -0.75
122 91 -1
122 97 1
122 122 2.5
122 124 1
122 130 -1
122 155 -0.75
122 333 1
122 334 -0.25
122 384 -1
122 385 -0.25
123 115 -1
123 117 -1
123 121 1
123 123 2
123 129 -1
123 148 1
123 154 -1
123 377 1
123 386 -1
124 116 -1
124 118 -0.75
124 122 1
124 124 2.5
124 130 -0.75
124 149 1
124 155 -1
124 375 1
124 377 -0.25
124 384 -1
124 386 -0.25
125 114 -1
125 115 -0.25
125 119 -0.75
125 120 1
125 121 -0.25
125 125 2.5
125 131 -0.75
125 147 1
125 148 -0.25
125 153 -1
125 154 -0.25
125 376 1
125 385 -1
126 93 -1
126 98 -1
126 126 2
126 131 1
126 159 -1
126 343 1
126 394 -1
127 94 -0.75
127 96 -1
127 98 -0.25
127 127 2.5
127 129 1
127 131 -0.25
127 160 -0.75
127 344 1
127 395 -1
128 95 -0.75
128 97 -1
128 128 2.5
128 130 1
128 161 -0.75
128 342 1
128 343 -0.25
128 393 -1
128 394 -0.25
129 121 -1
129 123 -1
129 127 1
129 129 2
129 154 1
129 160 -1
129 386 1
129 395 -1
130 122 -1
130 124 -0.75
130 128 1
130 130 2.5
130 155 1
130 161 -1
130 384 1
130 386 -0.25
130 393 -1
130 395 -0.25
131 120 -1
131 121 -0.25
131 125 -0.75
131 126 1
131 127 -0.25
131 131 2.5
131 153 1
131 154 -0.25
131 159 -1
131 160 -0.25
131 385 1
131 394 -1
132 99 -1
132 107 1
132 132 2
132 140 -1
132 165 -1
132 352 1
132 403 -1
133 100 -0.75
133 105 1
133 107 -0.25
133 133 2.5
133 138 -1
133 140 -0.250000000000001
133 166 -0.75
133 353 1
133 404 -1
134 101 -0.75
134 106 1
134 134 2.5
134 139 -1
134 167 -0.75
134 351 1
134 352 -0.25
134 402 -1
134 403 -0.250000000000001
135 102 -1
135 107 -1
135 113 1
135 135 2
135 140 1
135 146 -1
135 168 -1
135 358 1
135 409 -1
136 103 -0.75
136 105 -1
136 107 -0.25
136 111 1
136 113 -0.25
136 136 2.5
136 138 1
136 140 -0.250000000000001
136 144 -1
136 146 -0.250000000000001
136 169 -0.75
136 359 1
136 410 -1
137 104 -0.75
137 106 -1
137 112 1
137 137 2.5
137 139 1
137 145 -1
137 170 -0.75
137 357 1
137 358 -0.25
137 408 -1
137 409 -0.250000000000001
138 133 -1
138 136 1
138 138 2
138 144 -1
138 166 1
138 169 -1
138 404 1
138 410 -1
139 134 -1
139 137 1
139 139 2.5
139 145 -0.75
139 167 1
139 170 -1
139 402 1
139 404 -0.25
139 408 -1
139 410 -0.25
140 132 -1
140 133 -0.250000000000001
140 135 1
140 136 -0.250000000000001
140 140 2.5
140 146 -0.75
140 165 1
140 166 -0.25
140 168 -1
140 169 -0.25
140 403 1
140 409 -1
141 108 -1
141 113 -1
141 119 1
141 141 2
141 146 1
141 152 -1
141 174 -1
141 367 1
141 418 -1
142 109 -0.75
142 111 -1
142 113 -0.25
142 117 1
142 119 -0.25
142 142 2.5
142 144 1
142 146 -0.250000000000001
142 150 -1
142 152 -0.250000000000001
142 175 -0.75
142 368 1
142 419 -1
143 110 -0.75
143 112 -1
143 118 1
143 143 2.5
143 145 1
143 151 -1
143 176 -0.75
143 366 1
143 367 -0.25
143 417 -1
143 418 -0.250000000000001
144 136 -1
144 138 -1
144 142 1
144 144 2
144 150 -1
144 169 1
144 175 -1
144 410 1
144 419 -1
145 137 -1
145 139 -0.75
145 143 1
145 145 2.5
145 151 -0.75
145 170 1
145 176 -1
145 408 1
145 410 -0.25
145 417 -1
145 419 -0.25
146 135 -1
146 136 -0.250000000000001
146 140 -0.75
146 141 1
146 142 -0.250000000000001
146 146 2.5
146 152 -0.75
146 168 1
146 169 -0.25
146 174 -1
146 175 -0.25
146 409 1
146 418 -1
147 114 -1
147 119 -1
147 125 1
147 147 2
147 152 1
147 158 -1
147 180 -1
147 376 1
147 427 -1
148 115 -0.75
148 117 -1
148 119 -0.25
148 123 1
148 125 -0.25
148 148 2.5
148 150 1
148 152 -0.250000000000001
148 156 -1
148 158 -0.250000000000001
148 181 -0.75
148 377 1
148 428 -1
149 116 -0.75
149 118 -1
149 124 1
149 149 2.5
149 151 1
149 157 -1
149 182 -0.75
149 375 1
149 376 -0.25
149 426 -1
149 427 -0.250000000000001
150 142 -1
150 144 -1
150 148 1
150 150 2
150 156 -1
150 175 1
150 181 -1
150 419 1
150 428 -1
151 143 -1
151 145 -0.75
151 149 1
151 151 2.5
151 157 -0.75
151 176 1
151 182 -1
151 417 1
151 419 -0.25
151 426 -1
151 428 -0.25
152 141 -1
152 142 -0.250000000000001
152 146 -0.75
152 147 1
152 148 -0.250000000000001
152 152 2.5
152 158 -0.75
152 174 1
152 175 -0.25
152 180 -1
152 181 -0.25
152 418 1
152 427 -1
153 120 -1
153 125 -1
153 131 1
153 153 2
153 158 1
153 164 -1
153 186 -1
153 385 1
153 436 -1
154 121 -0.75
154 123 -1
154 125 -0.25
154 129 1
154 131 -0.25
154 154 2.5
154 156 1
154 158 -0.250000000000001
154 162 -1
154 164 -0.250000000000001
154 187 -0.75
154 386 1
154 437 -1
155 122 -0.75
155 124 -1
155 130 1
155 155 2.5
155 157 1
155 163 -1
155 188 -0.75
155 384 1
155 385 -0.25
155 435 -1
155 436 -0.250000000000001
156 148 -1
156 150 -1
156 154 1
156 156 2
156 162 -1
156 181 1
156 187 -1
156 428 1
156 437 -1
157 149 -1
157 151 -0.75
157 155 1
157 157 2.5
157 163 -0.75
157 182 1
157 188 -1
157 426 1
157 428 -0.25
157 435 -1
157 437 -0.25
158 147 -1
158 148 -0.250000000000001
158 152 -0.75
158 153 1
158 154 -0.250000000000001
158 158 2.5
158 164 -0.75
158 180 1
158 181 -0.25
158 186 -1
158 187 -0.25
158 427 1
158 436 -1
159 126 -1
159 131 -1
159 159 2
159 164 1
159 192 -1
159 394 1
159 445 -1
160 127 -0.75
160 129 -1
160 131 -0.25
160 160 2.5
160 162 1
160 164 -0.250000000000001
160 193 -0.75
160 395 1
160 446 -1
161 128 -0.75
161 130 -1
161 161 2.5
161 163 1
161 194 -0.75
161 393 1
161 394 -0.25
161 444 -1
161 445 -0.250000000000001
162 154 -1
162 156 -1
162 160 1
162 162 2
162 187 1
162 193 -1
162 437 1
162 446 -1
163 155 -1
163 157 -0.75
163 161 1
163 163 2.5
163 188 1
163 194 -1
163 435 1
163 437 -0.25
163 444 -1
163 446 -0.25
164 153 -1
164 154 -0.250000000000001
164 158 -0.75
164 159 1
164 160 -0.250000000000001
164 164 2.5
164 186 1
164 187 -0.25
164 192 -1
164 193 -0.25
164 436 1
164 445 -1
165 132 -1
165 140 1
165 165 2
165 173 -1
165 403 1
165 454 -1
166 133 -0.75
166 138 1
166 140 -0.25
166 166 2.5
166 171 -1
166 173 -0.25
166 404 1
166 455 -1
167 134 -0.75
167 139 1
167 167 2.5
167 172 -1
167 402 1
167 403 -0.25
167 453 -1
167 454 -0.25
168 135 -1
168 140 -1
168 146 1
168 168 2
168 173 1
168 179 -1
168 409 1
168 460 -1
169 136 -0.75
169 138 -1
169 140 -0.25
169 144 1
169 146 -0.25
169 169 2.5
169 171 1
169 173 -0.25
169 177 -1
169 179 -0.25
169 410 1
169 461 -1
170 137 -0.75
170 139 -1
170 145 1
170 170 2.5
170 172 1
170 178 -1
170 408 1
170 409 -0.25
170 459 -1
170 460 -0.25
171 166 -1
171 169 1
171 171 2
171 177 -1
171 455 1
171 461 -1
172 167 -1
172 170 1
172 172 2.5
172 178 -0.75
172 453 1
172 455 -0.25
172 459 -1
172 461 -0.25
173 165 -1
173 166 -0.25
173 168 1
173 169 -0.25
173 173 2.5
173 179 -0.75
173 454 1
173 460 -1
174 141 -1
174 146 -1
174 152 1
174 174 2
174 179 1
174 185 -1
174 418 1
174 469 -1
175 142 -0.75
175 144 -1
175 146 -0.25
175 150 1
175 152 -0.25
175 175 2.5
175 177 1
175 179 -0.25
175 183 -1
175 185 -0.25
175 419 1
175 470 -1
176 143 -0.75
176 145 -1
176 151 1
176 176 2.5
176 178 1
176 184 -1
176 417 1
176 418 -0.25
176 468 -1
176 469 -0.25
177 169 -1
177 171 -1
177 175 1
177 177 2
177 183 -1
177 461 1
177 470 -1
178 170 -1
178 172 -0.75
178 176 1
178 178 2.5
178 184 -0.75
178 459 1
178 461 -0.25
178 468 -1
178 470 -0.25
179 168 -1
179 169 -0.25
179 173 -0.75
179 174 1
179 175 -0.25
179 179 2.5
179 185 -0.75
179 460 1
179 469 -1
180 147 -1
180 152 -1
180 158 1
180 180 2
180 185 1
180 191 -1
180 427 1
180 478 -1
181 148 -0.75
181 150 -1
181 152 -0.25
181 156 1
181 158 -0.25
181 181 2.5
181 183 1
181 185 -0.25
181 189 -1
181 191 -0.25
181 428 1
181 479 -1
182 149 -0.75
182 151 -1
182 157 1
182 182 2.5
182 184 1
182 190 -1
182 426 1
182 427 -0.25
182 477 -1
182 478 -0.25
183 175 -1
183 177 -1
183 181 1
183 183 2
183 189 -1
183 470 1
183 479 -1
184 176 -1
184 178 -0.75
184 182 1
184 184 2.5
184 190 -0.75
184 468 1
184 470 -0.25
184 477 -1
184 479 -0.25
185 174 -1
185 175 -0.25
185 179 -0.75
185 180 1
185 181 -0.25
185 185 2.5
185 191 -0.75
185 469 1
185 478 -1
186 153 -1
186 158 -1
186 164 1
186 186 2
186 191 1
186 197 -1
186 436 1
186 487 -1
187 154 -0.75
187 156 -1
187 158 -0.25
187 162 1
187 164 -0.25
187 187 2.5
187 189 1
187 191 -0.25
187 195 -1
187 197 -0.25
187 437 1
187 488 -1
188 155 -0.75
188 157 -1
188 163 1
188 188 2.5
188 190 1
188 196 -1
188 435 1
188 436 -0.25
188 486 -1
188 487 -0.25
189 181 -1
189 183 -1
189 187 1
189 189 2
189 195 -1
189 479 1
189 488 -1
190 182 -1
190 184 -0.75
190 188 1
190 190 2.5
190 196 -0.75
190 477 1
190 479 -0.25
190 486 -1
190 488 -0.25
191 180 -1
191 181 -0.25
191 185 -0.75
191 186 1
191 187 -0.25
191 191 2.5
191 197 -0.75
191 478 1
191 487 -1
192 159 -1
192 164 -1
192 192 2
192 197 1
192 445 1
192 496 -1
193 160 -0.75
193 162 -1
193 164 -0.25
193 193 2.5
193 195 1
193 197 -0.25
193 446 1
193 497 -1
194 161 -0.75
194 163 -1
194 194 2.5
194 196 1
194 444 1
194 445 -0.25
194 495 -1
194 496 -0.25
195 187 -1
195 189 -1
195 193 1
195 195 2
195 488 1
195 497 -1
196 188 -1
196 190 -0.75
196 194 1
196 196 2.5
196 486 1
196 488 -0.25
196 495 -1
196 497 -0.25
197 186 -1
197 187 -0.25
197 191 -0.75
197 192 1
197 193 -0.25
197 197 2.5
197 487 1
197 496 -1
198 198 1
198 202 1
198 212 -1
198 252 -1
198 508 -1
199 199 1.25
199 203 1
199 210 -1
199 212 -0.25
199 253 -0.75
199 509 -1
200 200 1.25
200 201 1
200 202 -0.25
200 211 -1
200 254 -0.75
200 507 -1
200 508 -0.25
201 2 -1
201 7 1
201 35 1
201 200 1
201 201 2
201 211 -1
201 254 -1
201 507 -1
202 0 -1
202 2 -0.25
202 8 1
202 33 1
202 35 -0.25
202 198 1
202 200 -0.25
202 202 2.5
202 212 -1
202 252 -1
202 254 -0.25
202 508 -0.75
203 1 -1
203 6 1
203 7 -0.25
203 34 1
203 199 1
203 203 2.5
203 210 -1
203 211 -0.25
203 253 -1
203 509 -0.75
204 204 1
204 208 1
204 212 1
204 221 -1
204 258 -1
204 514 -1
205 205 1.25
205 209 1
205 210 1
205 212 -0.25
205 219 -1
205 221 -0.25
205 259 -0.75
205 515 -1
206 206 1.25
206 207 1
206 208 -0.25
206 211 1
206 220 -1
206 260 -0.75
206 513 -1
206 514 -0.25
207 5 -1
207 7 -1
207 13 1
207 38 1
207 206 1
207 207 2
207 211 1
207 220 -1
207 260 -1
207 513 -1
208 3 -1
208 5 -0.25
208 8 -1
208 14 1
208 36 1
208 38 -0.25
208 204 1
208 206 -0.25
208 208 2.5
208 212 1
208 221 -1
208 258 -1
208 260 -0.25
208 514 -0.75
209 4 -1
209 6 -1
209 7 -0.25
209 12 1
209 13 -0.25
209 37 1
209 205 1
209 209 2.5
209 210 1
209 211 -0.25
209 219 -1
209 220 -0.25
209 259 -1
209 515 -0.75
210 199 -1
210 203 -1
210 205 1
210 209 1
210 210 2
210 219 -1
210 253 1
210 259 -1
210 509 1
210 515 -1
211 200 -1
211 201 -1
211 203 -0.25
211 206 1
211 207 1
211 209 -0.25
211 211 2.5
211 220 -0.75
211 254 1
211 260 -1
211 507 1
211 509 -0.25
211 513 -1
211 515 -0.25
212 198 -1
212 199 -0.25
212 202 -1
212 204 1
212 205 -0.25
212 208 1
212 212 2.5
212 221 -0.75
212 252 1
212 253 -0.25
212 258 -1
212 259 -0.25
212 508 1
212 514 -1
213 213 1
213 217 1
213 221 1
213 230 -1
213 267 -1
213 523 -1
214 214 1.25
214 218 1
214 219 1
214 221 -0.25
214 228 -1
214 230 -0.25
214 268 -0.75
214 524 -1
215 215 1.25
215 216 1
215 217 -0.25
215 220 1
215 229 -1
215 269 -0.75
215 522 -1
215 523 -0.25
216 11 -1
216 13 -1
216 19 1
216 44 1
216 215 1
216 216 2
216 220 1
216 229 -1
216 269 -1
216 522 -1
217 9 -1
217 11 -0.25
217 14 -1
217 20 1
217 42 1
217 44 -0.25
217 213 1
217 215 -0.25
217 217 2.5
217 221 1
217 230 -1
217 267 -1
217 269 -0.25
217 523 -0.75
218 10 -1
218 12 -1
218 13 -0.25
218 18 1
218 19 -0.25
218 43 1
218 214 1
218 218 2.5
218 219 1
218 220 -0.25
218 228 -1
218 229 -0.25
218 268 -1
218 524 -0.75
219 205 -1
219 209 -1
219 210 -1
219 214 1
219 218 1
219 219 2
219 228 -1
219 259 1
219 268 -1
219 515 1
219 524 -1
220 206 -1
220 207 -1
220 209 -0.25
220 211 -0.75
220 215 1
220 216 1
220 218 -0.25
220 220 2.5
220 229 -0.75
220 260 1
220 269 -1
220 513 1
220 515 -0.25
220 522 -1
220 524 -0.25
221 204 -1
221 205 -0.25
221 208 -1
221 212 -0.75
221 213 1
221 214 -0.25
221 217 1
221 221 2.5
221 230 -0.75
221 258 1
221 259 -0.25
221 267 -1
221 268 -0.25
221 514 1
221 523 -1
222 222 1
222 226 1
222 230 1
222 239 -1
222 276 -1
222 532 -1
223 223 1.25
223 227 1
223 228 1
223 230 -0.25
223 237 -1
223 239 -0.25
223 277 -0.75
223 533 -1
224 224 1.25
224 225 1
224 226 -0.25
224 229 1
224 238 -1
224 278 -0.75
224 531 -1
224 532 -0.25
225 17 -1
225 19 -1
225 25 1
225 50 1
225 224 1
225 225 2
225 229 1
225 238 -1
225 278 -1
225 531 -1
226 15 -1
226 17 -0.25
226 20 -1
226 26 1
226 48 1
226 50 -0.25
226 222 1
226 224 -0.25
226 226 2.5
226 230 1
226 239 -1
226 276 -1
226 278 -0.25
226 532 -0.75
227 16 -1
227 18 -1
227 19 -0.25
227 24 1
227 25 -0.25
227 49 1
227 223 1
227 227 2.5
227 228 1
227 229 -0.25
227 237 -1
227 238 -0.25
227 277 -1
227 533 -0.75
228 214 -1
228 218 -1
228 219 -1
228 223 1
228 227 1
228 228 2
228 237 -1
228 268 1
228 277 -1
228 524 1
228 533 -1
229 215 -1
229 216 -1
229 218 -0.25
229 220 -0.75
229 224 1
229 225 1
229 227 -0.25
229 229 2.5
229 238 -0.75
229 269 1
229 278 -1
229 522 1
229 524 -0.25
229 531 -1
229 533 -0.25
230 213 -1
230 214 -0.25
230 217 -1
230 221 -0.75
230 222 1
230 223 -0.25
230 226 1
230 230 2.5
230 239 -0.75
230 267 1
230 268 -0.25
230 276 -1
230 277 -0.25
230 523 1
230 532 -1
231 231 1
231 235 1
231 239 1
231 248 -1
231 285 -1
231 541 -1
232 232 1.25
232 236 1
232 237 1
232 239 -0.25
232 246 -1
232 248 -0.25
232 286 -0.75
232 542 -1
233 233 1.25
233 234 1
233 235 -0.25
233 238 1
233 247 -1
233 287 -0.75
233 540 -1
233 541 -0.25
234 23 -1
234 25 -1
234 31 1
234 56 1
234 233 1
234 234 2
234 238 1
234 247 -1
234 287 -1
234 540 -1
235 21 -1
235 23 -0.25
235 26 -1
235 32 1
235 54 1
235 56 -0.25
235 231 1
235 233 -0.25
235 235 2.5
235 239 1
235 248 -1
235 285 -1
235 287 -0.25
235 541 -0.75
236 22 -1
236 24 -1
236 25 -0.25
236 30 1
236 31 -0.25
236 55 1
236 232 1
236 236 2.5
236 237 1
236 238 -0.25
236 246 -1
236 247 -0.25
236 286 -1
236 542 -0.75
237 223 -1
237 227 -1
237 228 -1
237 232 1
237 236 1
237 237 2
237 246 -1
237 277 1
237 286 -1
237 533 1
237 542 -1
238 224 -1
238 225 -1
238 227 -0.25
238 229 -0.75
238 233 1
238 234 1
238 236 -0.25
238 238 2.5
238 247 -0.75
238 278 1
238 287 -1
238 531 1
238 533 -0.25
238 540 -1
238 542 -0.25
239 222 -1
239 223 -0.25
239 226 -1
239 230 -0.75
239 231 1
239 232 -0.25
239 235 1
239 239 2.5
239 248 -0.75
239 276 1
239 277 -0.25
239 285 -1
239 286 -0.25
239 532 1
239 541 -1
240 240 1
240 244 1
240 248 1
240 294 -1
240 550 -1
241 241 1.25
241 245 1
241 246 1
241 248 -0.25
241 295 -0.75
241 551 -1
242 242 1.25
242 243 1
242 244 -0.25
242 247 1
242 296 -0.75
242 549 -1
242 550 -0.25
243 29 -1
243 31 -1
243 62 1
243 242 1
243 243 2
243 247 1
243 296 -1
243 549 -1
244 27 -1
244 29 -0.25
244 32 -1
244 60 1
244 62 -0.25
244 240 1
244 242 -0.25
244 244 2.5
244 248 1
244 294 -1
244 296 -0.25
244 550 -0.75
245 28 -1
245 30 -1
245 31 -0.25
245 61 1
245 241 1
245 245 2.5
245 246 1
245 247 -0.25
245 295 -1
245 551 -0.75
246 232 -1
246 236 -1
246 237 -1
246 241 1
246 245 1
246 246 2
246 286 1
246 295 -1
246 542 1
246 551 -1
247 233 -1
247 234 -1
247 236 -0.25
247 238 -0.75
247 242 1
247 243 1
247 245 -0.25
247 247 2.5
247 287 1
247 296 -1
247 540 1
247 542 -0.25
247 549 -1
247 551 -0.25
248 231 -1
248 232 -0.25
248 235 -1
248 239 -0.75
248 240 1
248 241 -0.25
248 244 1
248 248 2.5
248 285 1
248 286 -0.25
248 294 -1
248 295 -0.25
248 541 1
248 550 -1
249 35 -1
249 40 1
249 68 1
249 249 2
249 254 1
249 262 -1
249 305 -1
249 555 -1
250 33 -1
250 35 -0.25
250 41 1
250 66 1
250 68 -0.25
250 250 2.5
250 252 1
250 254 -0.25
250 263 -1
250 303 -1
250 305 -0.25
250 556 -0.75
251 34 -1
251 39 1
251 40 -0.25
251 67 1
251 251 2.5
251 253 1
251 261 -1
251 262 -0.25
251 304 -1
251 557 -0.75
252 198 -1
252 202 -1
252 212 1
252 250 1
252 252 2
252 263 -1
252 303 -1
252 508 1
252 556 -1
253 199 -0.75
253 203 -1
253 210 1
253 212 -0.25
253 251 1
253 253 2.5
253 261 -1
253 263 -0.25
253 304 -0.75
253 509 1
253 557 -1
254 200 -0.75
254 201 -1
254 202 -0.25
254 211 1
254 249 1
254 250 -0.25
254 254 2.5
254 262 -1
254 305 -0.75
254 507 1
254 508 -0.25
254 555 -1
254 556 -0.25
255 38 -1
255 40 -1
255 46 1
255 71 1
255 255 2
255 260 1
255 262 1
255 271 -1
255 311 -1
255 561 -1
256 36 -1
256 38 -0.25
256 41 -1
256 47 1
256 69 1
256 71 -0.25
256 256 2.5
256 258 1
256 260 -0.25
256 263 1
256 272 -1
256 309 -1
256 311 -0.25
256 562 -0.75
257 37 -1
257 39 -1
257 40 -0.25
257 45 1
257 46 -0.25
257 70 1
257 257 2.5
257 259 1
257 261 1
257 262 -0.25
257 270 -1
257 271 -0.25
257 310 -1
257 563 -0.75
258 204 -1
258 208 -1
258 212 -1
258 221 1
258 256 1
258 258 2
258 263 1
258 272 -1
258 309 -1
258 514 1
258 562 -1
259 205 -0.75
259 209 -1
259 210 -1
259 212 -0.25
259 219 1
259 221 -0.25
259 257 1
259 259 2.5
259 261 1
259 263 -0.25
259 270 -1
259 272 -0.25
259 310 -0.75
259 515 1
259 563 -1
260 206 -0.75
260 207 -1
260 208 -0.25
260 211 -1
260 220 1
260 255 1
260 256 -0.25
260 260 2.5
260 262 1
260 271 -1
260 311 -0.75
260 513 1
260 514 -0.25
260 561 -1
260 562 -0.25
261 251 -1
261 253 -1
261 257 1
261 259 1
261 261 2
261 270 -1
261 304 1
261 310 -1
261 557 1
261 563 -1
262 249 -1
262 251 -0.25
262 254 -1
262 255 1
262 257 -0.25
262 260 1
262 262 2.5
262 271 -0.75
262 305 1
262 311 -1
262 555 1
262 557 -0.25
262 561 -1
262 563 -0.25
263 250 -1
263 252 -1
263 253 -0.25
263 256 1
263 258 1
263 259 -0.25
263 263 2.5
263 272 -0.75
263 303 1
263 304 -0.25
263 309 -1
263 310 -0.25
263 556 1
263 562 -1
264 44 -1
264 46 -1
264 52 1
264 77 1
264 264 2
264 269 1
264 271 1
264 280 -1
264 320 -1
264 570 -1
265 42 -1
265 44 -0.25
265 47 -1
265 53 1
265 75 1
265 77 -0.25
265 265 2.5
265 267 1
265 269 -0.25
265 272 1
265 281 -1
265 318 -1
265 320 -0.25
265 571 -0.75
266 43 -1
266 45 -1
266 46 -0.25
266 51 1
266 52 -0.25
266 76 1
266 266 2.5
266 268 1
266 270 1
266 271 -0.25
266 279 -1
266 280 -0.25
266 319 -1
266 572 -0.75
267 213 -1
267 217 -1
267 221 -1
267 230 1
267 265 1
267 267 2
267 272 1
267 281 -1
267 318 -1
267 523 1
267 571 -1
268 214 -0.75
268 218 -1
268 219 -1
268 221 -0.25
268 228 1
268 230 -0.25
268 266 1
268 268 2.5
268 270 1
268 272 -0.25
268 279 -1
268 281 -0.25
268 319 -0.75
268 524 1
268 572 -1
269 215 -0.75
269 216 -1
269 217 -0.25
269 220 -1
269 229 1
269 264 1
269 265 -0.25
269 269 2.5
269 271 1
269 280 -1
269 320 -0.75
269 522 1
269 523 -0.25
269 570 -1
269 571 -0.25
270 257 -1
270 259 -1
270 261 -1
270 266 1
270 268 1
270 270 2
270 279 -1
270 310 1
270 319 -1
270 563 1
270 572 -1
271 255 -1
271 257 -0.25
271 260 -1
271 262 -0.75
271 264 1
271 266 -0.25
271 269 1
271 271 2.5
271 280 -0.75
271 311 1
271 320 -1
271 561 1
271 563 -0.25
271 570 -1
271 572 -0.25
272 256 -1
272 258 -1
272 259 -0.25
272 263 -0.75
272 265 1
272 267 1
272 268 -0.25
272 272 2.5
272 281 -0.75
272 309 1
272 310 -0.25
272 318 -1
272 319 -0.25
272 562 1
272 571 -1
273 50 -1
273 52 -1
273 58 1
273 83 1
273 273 2
273 278 1
273 280 1
273 289 -1
273 329 -1
273 579 -1
274 48 -1
274 50 -0.25
274 53 -1
274 59 1
274 81 1
274 83 -0.25
274 274 2.5
274 276 1
274 278 -0.25
274 281 1
274 290 -1
274 327 -1
274 329 -0.25
274 580 -0.75
275 49 -1
275 51 -1
275 52 -0.25
275 57 1
275 58 -0.25
275 82 1
275 275 2.5
275 277 1
275 279 1
275 280 -0.25
275 288 -1
275 289 -0.25
275 328 -1
275 581 -0.75
276 222 -1
276 226 -1
276 230 -1
276 239 1
276 274 1
276 276 2
276 281 1
276 290 -1
276 327 -1
276 532 1
276 580 -1
277 223 -0.75
277 227 -1
277 228 -1
277 230 -0.25
277 237 1
277 239 -0.25
277 275 1
277 277 2.5
277 279 1
277 281 -0.25
277 288 -1
277 290 -0.25
277 328 -0.75
277 533 1
277 581 -1
278 224 -0.75
278 225 -1
278 226 -0.25
278 229 -1
278 238 1
278 273 1
278 274 -0.25
278 278 2.5
278 280 1
278 289 -1
278 329 -0.75
278 531 1
278 532 -0.25
278 579 -1
278 580 -0.25
279 266 -1
279 268 -1
279 270 -1
279 275 1
279 277 1
279 279 2
279 288 -1
279 319 1
279 328 -1
279 572 1
279 581 -1
280 264 -1
280 266 -0.25
280 269 -1
280 271 -0.75
280 273 1
280 275 -0.25
280 278 1
280 280 2.5
280 289 -0.75
280 320 1
280 329 -1
280 570 1
280 572 -0.25
280 579 -1
280 581 -0.25
281 265 -1
281 267 -1
281 268 -0.25
281 272 -0.75
281 274 1
281 276 1
281 277 -0.25
281 281 2.5
281 290 -0.75
281 318 1
281 319 -0.25
281 327 -1
281 328 -0.25
281 571 1
281 580 -1
282 56 -1
282 58 -1
282 64 1
282 89 1
282 282 2
282 287 1
282 289 1
282 298 -1
282 338 -1
282 588 -1
283 54 -1
283 56 -0.25
283 59 -1
283 65 1
283 87 1
283 89 -0.25
283 283 2.5
283 285 1
283 287 -0.25
283 290 1
283 299 -1
283 336 -1
283 338 -0.25
283 589 -0.75
284 55 -1
284 57 -1
284 58 -0.25
284 63 1
284 64 -0.25
284 88 1
284 284 2.5
284 286 1
284 288 1
284 289 -0.25
284 297 -1
284 298 -0.25
284 337 -1
284 590 -0.75
285 231 -1
285 235 -1
285 239 -1
285 248 1
285 283 1
285 285 2
285 290 1
285 299 -1
285 336 -1
285 541 1
285 589 -1
286 232 -0.75
286 236 -1
286 237 -1
286 239 -0.25
286 246 1
286 248 -0.25
286 284 1
286 286 2.5
286 288 1
286 290 -0.25
286 297 -1
286 299 -0.25
286 337 -0.75
286 542 1
286 590 -1
287 233 -0.75
287 234 -1
287 235 -0.25
287 238 -1
287 247 1
287 282 1
287 283 -0.25
287 287 2.5
287 289 1
287 298 -1
287 338 -0.75
287 540 1
287 541 -0.25
287 588 -1
287 589 -0.25
288 275 -1
288 277 -1
288 279 -1
288 284 1
288 286 1
288 288 2
288 297 -1
288 328 1
288 337 -1
288 581 1
288 590 -1
289 273 -1
289 275 -0.25
289 278 -1
289 280 -0.75
289 282 1
289 284 -0.25
289 287 1
289 289 2.5
289 298 -0.75
289 329 1
289 338 -1
289 579 1
289 581 -0.25
289 588 -1
289 590 -0.25
290 274 -1
290 276 -1
290 277 -0.25
290 281 -0.75
290 283 1
290 285 1
290 286 -0.25
290 290 2.5
290 299 -0.75
290 327 1
290 328 -0.25
290 336 -1
290 337 -0.25
290 580 1
290 589 -1
291 62 -1
291 64 -1
291 95 1
291 291 2
291 296 1
291 298 1
291 347 -1
291 597 -1
292 60 -1
292 62 -0.25
292 65 -1
292 93 1
292 95 -0.25
292 292 2.5
292 294 1
292 296 -0.25
292 299 1
292 345 -1
292 347 -0.25
292 598 -0.75
293 61 -1
293 63 -1
293 64 -0.25
293 94 1
293 293 2.5
293 295 1
293 297 1
293 298 -0.25
293 346 -1
293 599 -0.75
294 240 -1
294 244 -1
294 248 -1
294 292 1
294 294 2
294 299 1
294 345 -1
294 550 1
294 598 -1
295 241 -0.75
295 245 -1
295 246 -1
295 248 -0.25
295 293 1
295 295 2.5
295 297 1
295 299 -0.25
295 346 -0.75
295 551 1
295 599 -1
296 242 -0.75
296 243 -1
296 244 -0.25
296 247 -1
296 291 1
296 292 -0.25
296 296 2.5
296 298 1
296 347 -0.75
296 549 1
296 550 -0.25
296 597 -1
296 598 -0.25
297 284 -1
297 286 -1
297 288 -1
297 293 1
297 295 1
297 297 2
297 337 1
297 346 -1
297 590 1
297 599 -1
298 282 -1
298 284 -0.25
298 287 -1
298 289 -0.75
298 291 1
298 293 -0.25
298 296 1
298 298 2.5
298 338 1
298 347 -1
298 588 1
298 590 -0.25
298 597 -1
298 599 -0.25
299 283 -1
299 285 -1
299 286 -0.25
299 290 -0.75
299 292 1
299 294 1
299 295 -0.25
299 299 2.5
299 336 1
299 337 -0.25
299 345 -1
299 346 -0.25
299 589 1
299 598 -1
300 68 -1
300 73 1
300 101 1
300 300 2
300 305 1
300 313 -1
300 356 -1
300 606 -1
301 66 -1
301 68 -0.25
301 74 1
301 99 1
301 101 -0.25
301 301 2.5
301 303 1
301 305 -0.25
301 314 -1
301 354 -1
301 356 -0.25
301 607 -0.75
302 67 -1
302 72 1
302 73 -0.25
302 100 1
302 302 2.5
302 304 1
302 312 -1
302 313 -0.25
302 355 -1
302 608 -0.75
303 250 -1
303 252 -1
303 263 1
303 301 1
303 303 2
303 314 -1
303 354 -1
303 556 1
303 607 -1
304 251 -1
304 253 -0.75
304 261 1
304 263 -0.25
304 302 1
304 304 2.5
304 312 -1
304 314 -0.25
304 355 -0.75
304 557 1
304 608 -1
305 249 -1
305 250 -0.25
305 254 -0.75
305 262 1
305 300 1
305 301 -0.25
305 305 2.5
305 313 -1
305 356 -0.75
305 555 1
305 556 -0.25
305 606 -1
305 607 -0.25
306 71 -1
306 73 -1
306 79 1
306 104 1
306 306 2
306 311 1
306 313 1
306 322 -1
306 362 -1
306 612 -1
307 69 -1
307 71 -0.25
307 74 -1
307 80 1
307 102 1
307 104 -0.25
307 307 2.5
307 309 1
307 311 -0.25
307 314 1
307 323 -1
307 360 -1
307 362 -0.25
307 613 -0.75
308 70 -1
308 72 -1
308 73 -0.25
308 78 1
308 79 -0.25
308 103 1
308 308 2.5
308 310 1
308 312 1
308 313 -0.25
308 321 -1
308 322 -0.25
308 361 -1
308 614 -0.75
309 256 -1
309 258 -1
309 263 -1
309 272 1
309 307 1
309 309 2
309 314 1
309 323 -1
309 360 -1
309 562 1
309 613 -1
310 257 -1
310 259 -0.75
310 261 -1
310 263 -0.25
310 270 1
310 272 -0.25
310 308 1
310 310 2.5
310 312 1
310 314 -0.25
310 321 -1
310 323 -0.25
310 361 -0.75
310 563 1
310 614 -1
311 255 -1
311 256 -0.25
311 260 -0.75
311 262 -1
311 271 1
311 306 1
311 307 -0.25
311 311 2.5
311 313 1
311 322 -1
311 362 -0.75
311 561 1
311 562 -0.25
311 612 -1
311 613 -0.25
312 302 -1
312 304 -1
312 308 1
312 310 1
312 312 2
312 321 -1
312 355 1
312 361 -1
312 608 1
312 614 -1
313 300 -1
313 302 -0.25
313 305 -1
313 306 1
313 308 -0.25
313 311 1
313 313 2.5
313 322 -0.75
313 356 1
313 362 -1
313 606 1
313 608 -0.25
313 612 -1
313 614 -0.25
314 301 -1
314 303 -1
314 304 -0.25
314 307 1
314 309 1
314 310 -0.25
314 314 2.5
314 323 -0.75
314 354 1
314 355 -0.25
314 360 -1
314 361 -0.25
314 607 1
314 613 -1
315 77 -1
315 79 -1
315 85 1
315 110 1
315 315 2
315 320 1
315 322 1
315 331 -1
315 371 -1
315 621 -1
316 75 -1
316 77 -0.25
316 80 -1
316 86 1
316 108 1
316 110 -0.25
316 316 2.5
316 318 1
316 320 -0.25
316 323 1
316 332 -1
316 369 -1
316 371 -0.25
316 622 -0.75
317 76 -1
317 78 -1
317 79 -0.25
317 84 1
317 85 -0.25
317 109 1
317 317 2.5
317 319 1
317 321 1
317 322 -0.25
317 330 -1
317 331 -0.25
317 370 -1
317 623 -0.75
318 265 -1
318 267 -1
318 272 -1
318 281 1
318 316 1
318 318 2
318 323 1
318 332 -1
318 369 -1
318 571 1
318 622 -1
319 266 -1
319 268 -0.75
319 270 -1
319 272 -0.25
319 279 1
319 281 -0.25
319 317 1
319 319 2.5
319 321 1
319 323 -0.25
319 330 -1
319 332 -0.25
319 370 -0.75
319 572 1
319 623 -1
320 264 -1
320 265 -0.25
320 269 -0.75
320 271 -1
320 280 1
320 315 1
320 316 -0.25
320 320 2.5
320 322 1
320 331 -1
320 371 -0.75
320 570 1
320 571 -0.25
320 621 -1
320 622 -0.25
321 308 -1
321 310 -1
321 312 -1
321 317 1
321 319 1
321 321 2
321 330 -1
321 361 1
321 370 -1
321 614 1
321 623 -1
322 306 -1
322 308 -0.25
322 311 -1
322 313 -0.75
322 315 1
322 317 -0.25
322 320 1
322 322 2.5
322 331 -0.75
322 362 1
322 371 -1
322 612 1
322 614 -0.25
322 621 -1
322 623 -0.25
323 307 -1
323 309 -1
323 310 -0.25
323 314 -0.75
323 316 1
323 318 1
323 319 -0.25
323 323 2.5
323 332 -0.75
323 360 1
323 361 -0.25
323 369 -1
323 370 -0.25
323 613 1
323 622 -1
324 83 -1
324 85 -1
324 91 1
324 116 1
324 324 2
324 329 1
324 331 1
324 340 -1
324 380 -1
324 630 -1
325 81 -1
325 83 -0.25
325 86 -1
325 92 1
325 114 1
325 116 -0.25
325 325 2.5
325 327 1
325 329 -0.25
325 332 1
325 341 -1
325 378 -1
325 380 -0.25
325 631 -0.75
326 82 -1
326 84 -1
326 85 -0.25
326 90 1
326 91 -0.25
326 115 1
326 326 2.5
326 328 1
326 330 1
326 331 -0.25
326 339 -1
326 340 -0.25
326 379 -1
326 632 -0.75
327 274 -1
327 276 -1
327 281 -1
327 290 1
327 325 1
327 327 2
327 332 1
327 341 -1
327 378 -1
327 580 1
327 631 -1
328 275 -1
328 277 -0.75
328 279 -1
328 281 -0.25
328 288 1
328 290 -0.25
328 326 1
328 328 2.5
328 330 1
328 332 -0.25
328 339 -1
328 341 -0.25
328 379 -0.75
328 581 1
328 632 -1
329 273 -1
329 274 -0.25
329 278 -0.75
329 280 -1
329 289 1
329 324 1
329 325 -0.25
329 329 2.5
329 331 1
329 340 -1
329 380 -0.75
329 579 1
329 580 -0.25
329 630 -1
329 631 -0.25
330 317 -1
330 319 -1
330 321 -1
330 326 1
330 328 1
330 330 2
330 339 -1
330 370 1
330 379 -1
330 623 1
330 632 -1
331 315 -1
331 317 -0.25
331 320 -1
331 322 -0.75
331 324 1
331 326 -0.25
331 329 1
331 331 2.5
331 340 -0.75
331 371 1
331 380 -1
331 621 1
331 623 -0.25
331 630 -1
331 632 -0.25
332 316 -1
332 318 -1
332 319 -0.25
332 323 -0.75
332 325 1
332 327 1
332 328 -0.25
332 332 2.5
332 341 -0.75
332 369 1
332 370 -0.25
332 378 -1
332 379 -0.25
332 622 1
332 631 -1
333 89 -1
333 91 -1
333 97 1
333 122 1
333 333 2
333 338 1
333 340 1
333 349 -1
333 389 -1
333 639 -1
334 87 -1
334 89 -0.25
334 92 -1
334 98 1
334 120 1
334 122 -0.25
334 334 2.5
334 336 1
334 338 -0.25
334 341 1
334 350 -1
334 387 -1
334 389 -0.25
334 640 -0.75
335 88 -1
335 90 -1
335 91 -0.25
335 96 1
335 97 -0.25
335 121 1
335 335 2.5
335 337 1
335 339 1
335 340 -0.25
335 348 -1
335 349 -0.25
335 388 -1
335 641 -0.75
336 283 -1
336 285 -1
336 290 -1
336 299 1
336 334 1
336 336 2
336 341 1
336 350 -1
336 387 -1
336 589 1
336 640 -1
337 284 -1
337 286 -0.75
337 288 -1
337 290 -0.25
337 297 1
337 299 -0.25
337 335 1
337 337 2.5
337 339 1
337 341 -0.25
337 348 -1
337 350 -0.25
337 388 -0.75
337 590 1
337 641 -1
338 282 -1
338 283 -0.25
338 287 -0.75
338 289 -1
338 298 1
338 333 1
338 334 -0.25
338 338 2.5
338 340 1
338 349 -1
338 389 -0.75
338 588 1
338 589 -0.25
338 639 -1
338 640 -0.25
339 326 -1
339 328 -1
339 330 -1
339 335 1
339 337 1
339 339 2
339 348 -1
339 379 1
339 388 -1
339 632 1
339 641 -1
340 324 -1
340 326 -0.25
340 329 -1
340 331 -0.75
340 333 1
340 335 -0.25
340 338 1
340 340 2.5
340 349 -0.75
340 380 1
340 389 -1
340 630 1
340 632 -0.25
340 639 -1
340 641 -0.25
341 325 -1
341 327 -1
341 328 -0.25
341 332 -0.75
341 334 1
341 336 1
341 337 -0.25
341 341 2.5
341 350 -0.75
341 378 1
341 379 -0.25
341 387 -1
341 388 -0.25
341 631 1
341 640 -1
342 95 -1
342 97 -1
342 128 1
342 342 2
342 347 1
342 349 1
342 398 -1
342 648 -1
343 93 -1
343 95 -0.25
343 98 -1
343 126 1
343 128 -0.25
343 343 2.5
343 345 1
343 347 -0.25
343 350 1
343 396 -1
343 398 -0.25
343 649 -0.75
344 94 -1
344 96 -1
344 97 -0.25
344 127 1
344 344 2.5
344 346 1
344 348 1
344 349 -0.25
344 397 -1
344 650 -0.75
345 292 -1
345 294 -1
345 299 -1
345 343 1
345 345 2
345 350 1
345 396 -1
345 598 1
345 649 -1
346 293 -1
346 295 -0.75
346 297 -1
346 299 -0.25
346 344 1
346 346 2.5
346 348 1
346 350 -0.25
346 397 -0.75
346 599 1
346 650 -1
347 291 -1
347 292 -0.25
347 296 -0.75
347 298 -1
347 342 1
347 343 -0.25
347 347 2.5
347 349 1
347 398 -0.75
347 597 1
347 598 -0.25
347 648 -1
347 649 -0.25
348 335 -1
348 337 -1
348 339 -1
348 344 1
348 346 1
348 348 2
348 388 1
348 397 -1
348 641 1
348 650 -1
349 333 -1
349 335 -0.25
349 338 -1
349 340 -0.75
349 342 1
349 344 -0.25
349 347 1
349 349 2.5
349 389 1
349 398 -1
349 639 1
349 641 -0.25
349 648 -1
349 650 -0.25
350 334 -1
350 336 -1
350 337 -0.25
350 341 -0.75
350 343 1
350 345 1
350 346 -0.25
350 350 2.5
350 387 1
350 388 -0.25
350 396 -1
350 397 -0.25
350 640 1
350 649 -1
351 101 -1
351 106 1
351 134 1
351 351 2
351 356 1
351 364 -1
351 407 -1
351 657 -1
352 99 -1
352 101 -0.25
352 107 1
352 132 1
352 134 -0.25
352 352 2.5
352 354 1
352 356 -0.25
352 365 -1
352 405 -1
352 407 -0.25
352 658 -0.75
353 100 -1
353 105 1
353 106 -0.25
353 133 1
353 353 2.5
353 355 1
353 363 -1
353 364 -0.25
353 406 -1
353 659 -0.75
354 301 -1
354 303 -1
354 314 1
354 352 1
354 354 2
354 365 -1
354 405 -1
354 607 1
354 658 -1
355 302 -1
355 304 -0.75
355 312 1
355 314 -0.25
355 353 1
355 355 2.5
355 363 -1
355 365 -0.25
355 406 -0.75
355 608 1
355 659 -1
356 300 -1
356 301 -0.25
356 305 -0.75
356 313 1
356 351 1
356 352 -0.25
356 356 2.5
356 364 -1
356 407 -0.75
356 606 1
356 607 -0.25
356 657 -1
356 658 -0.25
357 104 -1
357 106 -1
357 112 1
357 137 1
357 357 2
357 362 1
357 364 1
357 373 -1
357 413 -1
357 663 -1
358 102 -1
358 104 -0.25
358 107 -1
358 113 1
358 135 1
358 137 -0.25
358 358 2.5
358 360 1
358 362 -0.25
358 365 1
358 374 -1
358 411 -1
358 413 -0.25
358 664 -0.75
359 103 -1
359 105 -1
359 106 -0.25
359 111 1
359 112 -0.25
359 136 1
359 359 2.5
359 361 1
359 363 1
359 364 -0.25
359 372 -1
359 373 -0.25
359 412 -1
359 665 -0.75
360 307 -1
360 309 -1
360 314 -1
360 323 1
360 358 1
360 360 2
360 365 1
360 374 -1
360 411 -1
360 613 1
360 664 -1
361 308 -1
361 310 -0.75
361 312 -1
361 314 -0.25
361 321 1
361 323 -0.25
361 359 1
361 361 2.5
361 363 1
361 365 -0.25
361 372 -1
361 374 -0.25
361 412 -0.75
361 614 1
361 665 -1
362 306 -1
362 307 -0.25
362 311 -0.75
362 313 -1
362 322 1
362 357 1
362 358 -0.25
362 362 2.5
362 364 1
362 373 -1
362 413 -0.75
362 612 1
362 613 -0.25
362 663 -1
362 664 -0.25
363 353 -1
363 355 -1
363 359 1
363 361 1
363 363 2
363 372 -1
363 406 1
363 412 -1
363 659 1
363 665 -1
364 351 -1
364 353 -0.25
364 356 -1
364 357 1
364 359 -0.25
364 362 1
364 364 2.5
364 373 -0.75
364 407 1
364 413 -1
364 657 1
364 659 -0.25
364 663 -1
364 665 -0.25
365 352 -1
365 354 -1
365 355 -0.25
365 358 1
365 360 1
365 361 -0.25
365 365 2.5
365 374 -0.75
365 405 1
365 406 -0.25
365 411 -1
365 412 -0.25
365 658 1
365 664 -1
366 110 -1
366 112 -1
366 118 1
366 143 1
366 366 2
366 371 1
366 373 1
366 382 -1
366 422 -1
366 672 -1
367 108 -1
367 110 -0.25
367 113 -1
367 119 1
367 141 1
367 143 -0.25
367 367 2.5
367 369 1
367 371 -0.25
367 374 1
367 383 -1
367 420 -1
367 422 -0.25
367 673 -0.75
368 109 -1
368 111 -1
368 112 -0.25
368 117 1
368 118 -0.25
368 142 1
368 368 2.5
368 370 1
368 372 1
368 373 -0.25
368 381 -1
368 382 -0.25
368 421 -1
368 674 -0.75
369 316 -1
369 318 -1
369 323 -1
369 332 1
369 367 1
369 369 2
369 374 1
369 383 -1
369 420 -1
369 622 1
369 673 -1
370 317 -1
370 319 -0.75
370 321 -1
370 323 -0.25
370 330 1
370 332 -0.25
370 368 1
370 370 2.5
370 372 1
370 374 -0.25
370 381 -1
370 383 -0.25
370 421 -0.75
370 623 1
370 674 -1
371 315 -1
371 316 -0.25
371 320 -0.75
371 322 -1
371 331 1
371 366 1
371 367 -0.25
371 371 2.5
371 373 1
371 382 -1
371 422 -0.75
371 621 1
371 622 -0.25
371 672 -1
371 673 -0.25
372 359 -1
372 361 -1
372 363 -1
372 368 1
372 370 1
372 372 2
372 381 -1
372 412 1
372 421 -1
372 665 1
372 674 -1
373 357 -1
373 359 -0.25
373 362 -1
373 364 -0.75
373 366 1
373 368 -0.25
373 371 1
373 373 2.5
373 382 -0.75
373 413 1
373 422 -1
373 663 1
373 665 -0.25
373 672 -1
373 674 -0.25
374 358 -1
374 360 -1
374 361 -0.25
374 365 -0.75
374 367 1
374 369 1
374 370 -0.25
374 374 2.5
374 383 -0.75
374 411 1
374 412 -0.25
374 420 -1
374 421 -0.25
374 664 1
374 673 -1
375 116 -1
375 118 -1
375 124 1
375 149 1
375 375 2
375 380 1
375 382 1
375 391 -1
375 431 -1
375 681 -1
376 114 -1
376 116 -0.25
376 119 -1
376 125 1
376 147 1
376 149 -0.25
376 376 2.5
376 378 1
376 380 -0.25
376 383 1
376 392 -1
376 429 -1
376 431 -0.25
376 682 -0.75
377 115 -1
377 117 -1
377 118 -0.25
377 123 1
377 124 -0.25
377 148 1
377 377 2.5
377 379 1
377 381 1
377 382 -0.25
377 390 -1
377 391 -0.25
377 430 -1
377 683 -0.75
378 325 -1
378 327 -1
378 332 -1
378 341 1
378 376 1
378 378 2
378 383 1
378 392 -1
378 429 -1
378 631 1
378 682 -1
379 326 -1
379 328 -0.75
379 330 -1
379 332 -0.25
379 339 1
379 341 -0.25
379 377 1
379 379 2.5
379 381 1
379 383 -0.25
379 390 -1
379 392 -0.25
379 430 -0.75
379 632 1
379 683 -1
380 324 -1
380 325 -0.25
380 329 -0.75
380 331 -1
380 340 1
380 375 1
380 376 -0.25
380 380 2.5
380 382 1
380 391 -1
380 431 -0.75
380 630 1
380 631 -0.25
380 681 -1
380 682 -0.25
381 368 -1
381 370 -1
381 372 -1
381 377 1
381 379 1
381 381 2
381 390 -1
381 421 1
381 430 -1
381 674 1
381 683 -1
382 366 -1
382 368 -0.25
382 371 -1
382 373 -0.75
382 375 1
382 377 -0.25
382 380 1
382 382 2.5
382 391 -0.75
382 422 1
382 431 -1
382 672 1
382 674 -0.25
382 681 -1
382 683 -0.25
383 367 -1
383 369 -1
383 370 -0.25
383 374 -0.75
383 376 1
383 378 1
383 379 -0.25
383 383 2.5
383 392 -0.75
383 420 1
383 421 -0.25
383 429 -1
383 430 -0.25
383 673 1
383 682 -1
384 122 -1
384 124 -1
384 130 1
384 155 1
384 384 2
384 389 1
384 391 1
384 400 -1
384 440 -1
384 690 -1
385 120 -1
385 122 -0.25
385 125 -1
385 131 1
385 153 1
385 155 -0.25
385 385 2.5
385 387 1
385 389 -0.25
385 392 1
385 401 -1
385 438 -1
385 440 -0.25
385 691 -0.75
386 121 -1
386 123 -1
386 124 -0.25
386 129 1
386 130 -0.25
386 154 1
386 386 2.5
386 388 1
386 390 1
386 391 -0.25
386 399 -1
386 400 -0.25
386 439 -1
386 692 -0.75
387 334 -1
387 336 -1
387 341 -1
387 350 1
387 385 1
387 387 2
387 392 1
387 401 -1
387 438 -1
387 640 1
387 691 -1
388 335 -1
388 337 -0.75
388 339 -1
388 341 -0.25
388 348 1
388 350 -0.25
388 386 1
388 388 2.5
388 390 1
388 392 -0.25
388 399 -1
388 401 -0.25
388 439 -0.75
388 641 1
388 692 -1
389 333 -1
389 334 -0.25
389 338 -0.75
389 340 -1
389 349 1
389 384 1
389 385 -0.25
389 389 2.5
389 391 1
389 400 -1
389 440 -0.75
389 639 1
389 640 -0.25
389 690 -1
389 691 -0.25
390 377 -1
390 379 -1
390 381 -1
390 386 1
390 388 1
390 390 2
390 399 -1
390 430 1
390 439 -1
390 683 1
390 692 -1
391 375 -1
391 377 -0.25
391 380 -1
391 382 -0.75
391 384 1
391 386 -0.25
391 389 1
391 391 2.5
391 400 -0.75
391 431 1
391 440 -1
391 681 1
391 683 -0.25
391 690 -1
391 692 -0.25
392 376 -1
392 378 -1
392 379 -0.25
392 383 -0.75
392 385 1
392 387 1
392 388 -0.25
392 392 2.5
392 401 -0.75
392 429 1
392 430 -0.25
392 438 -1
392 439 -0.25
392 682 1
392 691 -1
393 128 -1
393 130 -1
393 161 1
393 393 2
393 398 1
393 400 1
393 449 -1
393 699 -1
394 126 -1
394 128 -0.25
394 131 -1
394 159 1
394 161 -0.25
394 394 2.5
394 396 1
394 398 -0.25
394 401 1
394 447 -1
394 449 -0.25
394 700 -0.75
395 127 -1
395 129 -1
395 130 -0.25
395 160 1
395 395 2.5
395 397 1
395 399 1
395 400 -0.25
395 448 -1
395 701 -0.75
396 343 -1
396 345 -1
396 350 -1
396 394 1
396 396 2
396 401 1
396 447 -1
396 649 1
396 700 -1
397 344 -1
397 346 -0.75
397 348 -1
397 350 -0.25
397 395 1
397 397 2.5
397 399 1
397 401 -0.25
397 448 -0.75
397 650 1
397 701 -1
398 342 -1
398 343 -0.25
398 347 -0.75
398 349 -1
398 393 1
398 394 -0.25
398 398 2.5
398 400 1
398 449 -0.75
398 648 1
398 649 -0.25
398 699 -1
398 700 -0.25
399 386 -1
399 388 -1
399 390 -1
399 395 1
399 397 1
399 399 2
399 439 1
399 448 -1
399 692 1
399 701 -1
400 384 -1
400 386 -0.25
400 389 -1
400 391 -0.75
400 393 1
400 395 -0.25
400 398 1
400 400 2.5
400 440 1
400 449 -1
400 690 1
400 692 -0.25
400 699 -1
400 701 -0.25
401 385 -1
401 387 -1
401 388 -0.25
401 392 -0.75
401 394 1
401 396 1
401 397 -0.25
401 401 2.5
401 438 1
401 439 -0.25
401 447 -1
401 448 -0.25
401 691 1
401 700 -1
402 134 -1
402 139 1
402 167 1
402 402 2
402 407 1
402 415 -1
402 458 -1
402 708 -1
403 132 -1
403 134 -0.250000000000001
403 140 1
403 165 1
403 167 -0.25
403 403 2.5
403 405 1
403 407 -0.250000000000001
403 416 -1
403 456 -1
403 458 -0.25
403 709 -0.75
404 133 -1
404 138 1
404 139 -0.25
404 166 1
404 404 2.5
404 406 1
404 414 -1
404 415 -0.25
404 457 -1
404 710 -0.75
405 352 -1
405 354 -1
405 365 1
405 403 1
405 405 2
405 416 -1
405 456 -1
405 658 1
405 709 -1
406 353 -1
406 355 -0.75
406 363 1
406 365 -0.25
406 404 1
406 406 2.5
406 414 -1
406 416 -0.250000000000001
406 457 -0.75
406 659 1
406 710 -1
407 351 -1
407 352 -0.25
407 356 -0.75
407 364 1
407 402 1
407 403 -0.250000000000001
407 407 2.5
407 415 -1
407 458 -0.75
407 657 1
407 658 -0.25
407 708 -1
407 709 -0.250000000000001
408 137 -1
408 139 -1
408 145 1
408 170 1
408 408 2
408 413 1
408 415 1
408 424 -1
408 464 -1
408 714 -1
409 135 -1
409 137 -0.250000000000001
409 140 -1
409 146 1
409 168 1
409 170 -0.25
409 409 2.5
409 411 1
409 413 -0.250000000000001
409 416 1
409 425 -1
409 462 -1
409 464 -0.25
409 715 -0.75
410 136 -1
410 138 -1
410 139 -0.25
410 144 1
410 145 -0.25
410 169 1
410 410 2.5
410 412 1
410 414 1
410 415 -0.25
410 423 -1
410 424 -0.25
410 463 -1
410 716 -0.75
411 358 -1
411 360 -1
411 365 -1
411 374 1
411 409 1
411 411 2
411 416 1
411 425 -1
411 462 -1
411 664 1
411 715 -1
412 359 -1
412 361 -0.75
412 363 -1
412 365 -0.25
412 372 1
412 374 -0.25
412 410 1
412 412 2.5
412 414 1
412 416 -0.250000000000001
412 423 -1
412 425 -0.250000000000001
412 463 -0.75
412 665 1
412 716 -1
413 357 -1
413 358 -0.25
413 362 -0.75
413 364 -1
413 373 1
413 408 1
413 409 -0.250000000000001
413 413 2.5
413 415 1
413 424 -1
413 464 -0.75
413 663 1
413 664 -0.25
413 714 -1
413 715 -0.250000000000001
414 404 -1
414 406 -1
414 410 1
414 412 1
414 414 2
414 423 -1
414 457 1
414 463 -1
414 710 1
414 716 -1
415 402 -1
415 404 -0.25
415 407 -1
415 408 1
415 410 -0.25
415 413 1
415 415 2.5
415 424 -0.75
415 458 1
415 464 -1
415 708 1
415 710 -0.25
415 714 -1
415 716 -0.25
416 403 -1
416 405 -1
416 406 -0.250000000000001
416 409 1
416 411 1
416 412 -0.250000000000001
416 416 2.5
416 425 -0.75
416 456 1
416 457 -0.25
416 462 -1
416 463 -0.25
416 709 1
416 715 -1
417 143 -1
417 145 -1
417 151 1
417 176 1
417 417 2
417 422 1
417 424 1
417 433 -1
417 473 -1
417 723 -1
418 141 -1
418 143 -0.250000000000001
418 146 -1
418 152 1
418 174 1
418 176 -0.25
418 418 2.5
418 420 1
418 422 -0.250000000000001
418 425 1
418 434 -1
418 471 -1
418 473 -0.25
418 724 -0.75
419 142 -1
419 144 -1
419 145 -0.25
419 150 1
419 151 -0.25
419 175 1
419 419 2.5
419 421 1
419 423 1
419 424 -0.25
419 432 -1
419 433 -0.25
419 472 -1
419 725 -0.75
420 367 -1
420 369 -1
420 374 -1
420 383 1
420 418 1
420 420 2
420 425 1
420 434 -1
420 471 -1
420 673 1
420 724 -1
421 368 -1
421 370 -0.75
421 372 -1
421 374 -0.25
421 381 1
421 383 -0.25
421 419 1
421 421 2.5
421 423 1
421 425 -0.250000000000001
421 432 -1
421 434 -0.250000000000001
421 472 -0.75
421 674 1
421 725 -1
422 366 -1
422 367 -0.25
422 371 -0.75
422 373 -1
422 382 1
422 417 1
422 418 -0.250000000000001
422 422 2.5
422 424 1
422 433 -1
422 473 -0.75
422 672 1
422 673 -0.25
422 723 -1
422 724 -0.250000000000001
423 410 -1
423 412 -1
423 414 -1
423 419 1
423 421 1
423 423 2
423 432 -1
423 463 1
423 472 -1
423 716 1
423 725 -1
424 408 -1
424 410 -0.25
424 413 -1
424 415 -0.75
424 417 1
424 419 -0.25
424 422 1
424 424 2.5
424 433 -0.75
424 464 1
424 473 -1
424 714 1
424 716 -0.25
424 723 -1
424 725 -0.25
425 409 -1
425 411 -1
425 412 -0.250000000000001
425 416 -0.75
425 418 1
425 420 1
425 421 -0.250000000000001
425 425 2.5
425 434 -0.75
425 462 1
425 463 -0.25
425 471 -1
425 472 -0.25
425 715 1
425 724 -1
426 149 -1
426 151 -1
426 157 1
426 182 1
426 426 2
426 431 1
426 433 1
426 442 -1
426 482 -1
426 732 -1
427 147 -1
427 149 -0.250000000000001
427 152 -1
427 158 1
427 180 1
427 182 -0.25
427 427 2.5
427 429 1
427 431 -0.250000000000001
427 434 1
427 443 -1
427 480 -1
427 482 -0.25
427 733 -0.75
428 148 -1
428 150 -1
428 151 -0.25
428 156 1
428 157 -0.25
428 181 1
428 428 2.5
428 430 1
428 432 1
428 433 -0.25
428 441 -1
428 442 -0.25
428 481 -1
428 734 -0.75
429 376 -1
429 378 -1
429 383 -1
429 392 1
429 427 1
429 429 2
429 434 1
429 443 -1
429 480 -1
429 682 1
429 733 -1
430 377 -1
430 379 -0.75
430 381 -1
430 383 -0.25
430 390 1
430 392 -0.25
430 428 1
430 430 2.5
430 432 1
430 434 -0.250000000000001
430 441 -1
430 443 -0.250000000000001
430 481 -0.75
430 683 1
430 734 -1
431 375 -1
431 376 -0.25
431 380 -0.75
431 382 -1
431 391 1
431 426 1
431 427 -0.250000000000001
431 431 2.5
431 433 1
431 442 -1
431 482 -0.75
431 681 1
431 682 -0.25
431 732 -1
431 733 -0.250000000000001
432 419 -1
432 421 -1
432 423 -1
432 428 1
432 430 1
432 432 2
432 441 -1
432 472 1
432 481 -1
432 725 1
432 734 -1
433 417 -1
433 419 -0.25
433 422 -1
433 424 -0.75
433 426 1
433 428 -0.25
433 431 1
433 433 2.5
433 442 -0.75
433 473 1
433 482 -1
433 723 1
433 725 -0.25
433 732 -1
433 734 -0.25
434 418 -1
434 420 -1
434 421 -0.250000000000001
434 425 -0.75
434 427 1
434 429 1
434 430 -0.250000000000001
434 434 2.5
434 443 -0.75
434 471 1
434 472 -0.25
434 480 -1
434 481 -0.25
434 724 1
434 733 -1
435 155 -1
435 157 -1
435 163 1
435 188 1
435 435 2
435 440 1
435 442 1
435 451 -1
435 491 -1
435 741 -1
436 153 -1
436 155 -0.250000000000001
436 158 -1
436 164 1
436 186 1
436 188 -0.25
436 436 2.5
436 438 1
436 440 -0.250000000000001
436 443 1
436 452 -1
436 489 -1
436 491 -0.25
436 742 -0.75
437 154 -1
437 156 -1
437 157 -0.25
437 162 1
437 163 -0.25
437 187 1
437 437 2.5
437 439 1
437 441 1
437 442 -0.25
437 450 -1
437 451 -0.25
437 490 -1
437 743 -0.75
438 385 -1
438 387 -1
438 392 -1
438 401 1
438 436 1
438 438 2
438 443 1
438 452 -1
438 489 -1
438 691 1
438 742 -1
439 386 -1
439 388 -0.75
439 390 -1
439 392 -0.25
439 399 1
439 401 -0.25
439 437 1
439 439 2.5
439 441 1
439 443 -0.250000000000001
439 450 -1
439 452 -0.250000000000001
439 490 -0.75
439 692 1
439 743 -1
440 384 -1
440 385 -0.25
440 389 -0.75
440 391 -1
440 400 1
440 435 1
440 436 -0.250000000000001
440 440 2.5
440 442 1
440 451 -1
440 491 -0.75
440 690 1
440 691 -0.25
440 741 -1
440 742 -0.250000000000001
441 428 -1
441 430 -1
441 432 -1
441 437 1
441 439 1
441 441 2
441 450 -1
441 481 1
441 490 -1
441 734 1
441 743 -1
442 426 -1
442 428 -0.25
442 431 -1
442 433 -0.75
442 435 1
442 437 -0.25
442 440 1
442 442 2.5
442 451 -0.75
442 482 1
442 491 -1
442 732 1
442 734 -0.25
442 741 -1
442 743 -0.25
443 427 -1
443 429 -1
443 430 -0.250000000000001
443 434 -0.75
443 436 1
443 438 1
443 439 -0.250000000000001
443 443 2.5
443 452 -0.75
443 480 1
443 481 -0.25
443 489 -1
443 490 -0.25
443 733 1
443 742 -1
444 161 -1
444 163 -1
444 194 1
444 444 2
444 449 1
444 451 1
444 500 -1
444 750 -1
445 159 -1
445 161 -0.250000000000001
445 164 -1
445 192 1
445 194 -0.25
445 445 2.5
445 447 1
445 449 -0.250000000000001
445 452 1
445 498 -1
445 500 -0.25
445 751 -0.75
446 160 -1
446 162 -1
446 163 -0.25
446 193 1
446 446 2.5
446 448 1
446 450 1
446 451 -0.25
446 499 -1
446 752 -0.75
447 394 -1
447 396 -1
447 401 -1
447 445 1
447 447 2
447 452 1
447 498 -1
447 700 1
447 751 -1
448 395 -1
448 397 -0.75
448 399 -1
448 401 -0.25
448 446 1
448 448 2.5
448 450 1
448 452 -0.250000000000001
448 499 -0.75
448 701 1
448 752 -1
449 393 -1
449 394 -0.25
449 398 -0.75
449 400 -1
449 444 1
449 445 -0.250000000000001
449 449 2.5
449 451 1
449 500 -0.75
449 699 1
449 700 -0.25
449 750 -1
449 751 -0.250000000000001
450 437 -1
450 439 -1
450 441 -1
450 446 1
450 448 1
450 450 2
450 490 1
450 499 -1
450 743 1
450 752 -1
451 435 -1
451 437 -0.25
451 440 -1
451 442 -0.75
451 444 1
451 446 -0.25
451 449 1
451 451 2.5
451 491 1
451 500 -1
451 741 1
451 743 -0.25
451 750 -1
451 752 -0.25
452 436 -1
452 438 -1
452 439 -0.250000000000001
452 443 -0.75
452 445 1
452 447 1
452 448 -0.250000000000001
452 452 2.5
452 489 1
452 490 -0.25
452 498 -1
452 499 -0.25
452 742 1
452 751 -1
453 167 -1
453 172 1
453 453 2
453 458 1
453 466 -1
453 759 -1
454 165 -1
454 167 -0.25
454 173 1
454 454 2.5
454 456 1
454 458 -0.25
454 467 -1
454 760 -0.75
455 166 -1
455 171 1
455 172 -0.25
455 455 2.5
455 457 1
455 465 -1
455 466 -0.25
455 761 -0.75
456 403 -1
456 405 -1
456 416 1
456 454 1
456 456 2
456 467 -1
456 709 1
456 760 -1
457 404 -1
457 406 -0.75
457 414 1
457 416 -0.25
457 455 1
457 457 2.5
457 465 -1
457 467 -0.25
457 710 1
457 761 -1
458 402 -1
458 403 -0.25
458 407 -0.75
458 415 1
458 453 1
458 454 -0.25
458 458 2.5
458 466 -1
458 708 1
458 709 -0.25
458 759 -1
458 760 -0.25
459 170 -1
459 172 -1
459 178 1
459 459 2
459 464 1
459 466 1
459 475 -1
459 765 -1
460 168 -1
460 170 -0.25
460 173 -1
460 179 1
460 460 2.5
460 462 1
460 464 -0.25
460 467 1
460 476 -1
460 766 -0.75
461 169 -1
461 171 -1
461 172 -0.25
461 177 1
461 178 -0.25
461 461 2.5
461 463 1
461 465 1
461 466 -0.25
461 474 -1
461 475 -0.25
461 767 -0.75
462 409 -1
462 411 -1
462 416 -1
462 425 1
462 460 1
462 462 2
462 467 1
462 476 -1
462 715 1
462 766 -1
463 410 -1
463 412 -0.75
463 414 -1
463 416 -0.25
463 423 1
463 425 -0.25
463 461 1
463 463 2.5
463 465 1
463 467 -0.25
463 474 -1
463 476 -0.25
463 716 1
463 767 -1
464 408 -1
464 409 -0.25
464 413 -0.75
464 415 -1
464 424 1
464 459 1
464 460 -0.25
464 464 2.5
464 466 1
464 475 -1
464 714 1
464 715 -0.25
464 765 -1
464 766 -0.25
465 455 -1
465 457 -1
465 461 1
465 463 1
465 465 2
465 474 -1
465 761 1
465 767 -1
466 453 -1
466 455 -0.25
466 458 -1
466 459 1
466 461 -0.25
466 464 1
466 466 2.5
466 475 -0.75
466 759 1
466 761 -0.25
466 765 -1
466 767 -0.25
467 454 -1
467 456 -1
467 457 -0.25
467 460 1
467 462 1
467 463 -0.25
467 467 2.5
467 476 -0.75
467 760 1
467 766 -1
468 176 -1
468 178 -1
468 184 1
468 468 2
468 473 1
468 475 1
468 484 -1
468 774 -1
469 174 -1
469 176 -0.25
469 179 -1
469 185 1
469 469 2.5
469 471 1
469 473 -0.25
469 476 1
469 485 -1
469 775 -0.75
470 175 -1
470 177 -1
470 178 -0.25
470 183 1
470 184 -0.25
470 470 2.5
470 472 1
470 474 1
470 475 -0.25
470 483 -1
470 484 -0.25
470 776 -0.75
471 418 -1
471 420 -1
471 425 -1
471 434 1
471 469 1
471 471 2
471 476 1
471 485 -1
471 724 1
471 775 -1
472 419 -1
472 421 -0.75
472 423 -1
472 425 -0.25
472 432 1
472 434 -0.25
472 470 1
472 472 2.5
472 474 1
472 476 -0.25
472 483 -1
472 485 -0.25
472 725 1
472 776 -1
473 417 -1
473 418 -0.25
473 422 -0.75
473 424 -1
473 433 1
473 468 1
473 469 -0.25
473 473 2.5
473 475 1
473 484 -1
473 723 1
473 724 -0.25
473 774 -1
473 775 -0.25
474 461 -1
474 463 -1
474 465 -1
474 470 1
474 472 1
474 474 2
474 483 -1
474 767 1
474 776 -1
475 459 -1
475 461 -0.25
475 464 -1
475 466 -0.75
475 468 1
475 470 -0.25
475 473 1
475 475 2.5
475 484 -0.75
475 765 1
475 767 -0.25
475 774 -1
475 776 -0.25
476 460 -1
476 462 -1
476 463 -0.25
476 467 -0.75
476 469 1
476 471 1
476 472 -0.25
476 476 2.5
476 485 -0.75
476 766 1
476 775 -1
477 182 -1
477 184 -1
477 190 1
477 477 2
477 482 1
477 484 1
477 493 -1
477 783 -1
478 180 -1
478 182 -0.25
478 185 -1
478 191 1
478 478 2.5
478 480 1
478 482 -0.25
478 485 1
478 494 -1
478 784 -0.75
479 181 -1
479 183 -1
479 184 -0.25
479 189 1
479 190 -0.25
479 479 2.5
479 481 1
479 483 1
479 484 -0.25
479 492 -1
479 493 -0.25
479 785 -0.75
480 427 -1
480 429 -1
480 434 -1
480 443 1
480 478 1
480 480 2
480 485 1
480 494 -1
480 733 1
480 784 -1
481 428 -1
481 430 -0.75
481 432 -1
481 434 -0.25
481 441 1
481 443 -0.25
481 479 1
481 481 2.5
481 483 1
481 485 -0.25
481 492 -1
481 494 -0.25
481 734 1
481 785 -1
482 426 -1
482 427 -0.25
482 431 -0.75
482 433 -1
482 442 1
482 477 1
482 478 -0.25
482 482 2.5
482 484 1
482 493 -1
482 732 1
482 733 -0.25
482 783 -1
482 784 -0.25
483 470 -1
483 472 -1
483 474 -1
483 479 1
483 481 1
483 483 2
483 492 -1
483 776 1
483 785 -1
484 468 -1
484 470 -0.25
484 473 -1
484 475 -0.75
484 477 1
484 479 -0.25
484 482 1
484 484 2.5
484 493 -0.75
484 774 1
484 776 -0.25
484 783 -1
484 785 -0.25
485 469 -1
485 471 -1
485 472 -0.25
485 476 -0.75
485 478 1
485 480 1
485 481 -0.25
485 485 2.5
485 494 -0.75
485 775 1
485 784 -1
486 188 -1
486 190 -1
486 196 1
486 486 2
486 491 1
486 493 1
486 502 -1
486 792 -1
487 186 -1
487 188 -0.25
487 191 -1
487 197 1
487 487 2.5
487 489 1
487 491 -0.25
487 494 1
487 503 -1
487 793 -0.75
488 187 -1
488 189 -1
488 190 -0.25
488 195 1
488 196 -0.25
488 488 2.5
488 490 1
488 492 1
488 493 -0.25
488 501 -1
488 502 -0.25
488 794 -0.75
489 436 -1
489 438 -1
489 443 -1
489 452 1
489 487 1
489 489 2
489 494 1
489 503 -1
489 742 1
489 793 -1
490 437 -1
490 439 -0.75
490 441 -1
490 443 -0.25
490 450 1
490 452 -0.25
490 488 1
490 490 2.5
490 492 1
490 494 -0.25
490 501 -1
490 503 -0.25
490 743 1
490 794 -1
491 435 -1
491 436 -0.25
491 440 -0.75
491 442 -1
491 451 1
491 486 1
491 487 -0.25
491 491 2.5
491 493 1
491 502 -1
491 741 1
491 742 -0.25
491 792 -1
491 793 -0.25
492 479 -1
492 481 -1
492 483 -1
492 488 1
492 490 1
492 492 2
492 501 -1
492 785 1
492 794 -1
493 477 -1
493 479 -0.25
493 482 -1
493 484 -0.75
493 486 1
493 488 -0.25
493 491 1
493 493 2.5
493 502 -0.75
493 783 1
493 785 -0.25
493 792 -1
493 794 -0.25
494 478 -1
494 480 -1
494 481 -0.25
494 485 -0.75
494 487 1
494 489 1
494 490 -0.25
494 494 2.5
494 503 -0.75
494 784 1
494 793 -1
495 194 -1
495 196 -1
495 495 2
495 500 1
495 502 1
495 801 -1
496 192 -1
496 194 -0.25
496 197 -1
496 496 2.5
496 498 1
496 500 -0.25
496 503 1
496 802 -0.75
497 193 -1
497 195 -1
497 196 -0.25
497 497 2.5
497 499 1
497 501 1
497 502 -0.25
497 803 -0.75
498 445 -1
498 447 -1
498 452 -1
498 496 1
498 498 2
498 503 1
498 751 1
498 802 -1
499 446 -1
499 448 -0.75
499 450 -1
499 452 -0.25
499 497 1
499 499 2.5
499 501 1
499 503 -0.25
499 752 1
499 803 -1
500 444 -1
500 445 -0.25
500 449 -0.75
500 451 -1
500 495 1
500 496 -0.25
500 500 2.5
500 502 1
500 750 1
500 751 -0.25
500 801 -1
500 802 -0.25
501 488 -1
501 490 -1
501 492 -1
501 497 1
501 499 1
501 501 2
501 794 1
501 803 -1
502 486 -1
502 488 -0.25
502 491 -1
502 493 -0.75
502 495 1
502 497 -0.25
502 500 1
502 502 2.5
502 792 1
502 794 -0.25
502 801 -1
502 803 -0.25
503 487 -1
503 489 -1
503 490 -0.25
503 494 -0.75
503 496 1
503 498 1
503 499 -0.25
503 503 2.5
503 793 1
503 802 -1
504 504 1
504 508 1
504 518 -1
504 558 -1
504 814 -1
505 505 1.25
505 509 1
505 516 -1
505 518 -0.25
505 559 -0.75
505 815 -1
506 506 1.25
506 507 1
506 508 -0.25
506 517 -1
506 560 -0.75
506 813 -1
506 814 -0.25
507 200 -1
507 201 -1
507 211 1
507 254 1
507 506 1
507 507 2
507 517 -1
507 560 -1
507 813 -1
508 198 -1
508 200 -0.25
508 202 -0.75
508 212 1
508 252 1
508 254 -0.25
508 504 1
508 506 -0.25
508 508 2.5
508 518 -1
508 558 -1
508 560 -0.25
508 814 -0.75
509 199 -1
509 203 -0.75
509 210 1
509 211 -0.25
509 253 1
509 505 1
509 509 2.5
509 516 -1
509 517 -0.25
509 559 -1
509 815 -0.75
510 510 1
510 514 1
510 518 1
510 527 -1
510 564 -1
510 820 -1
511 511 1.25
511 515 1
511 516 1
511 518 -0.25
511 525 -1
511 527 -0.25
511 565 -0.75
511 821 -1
512 512 1.25
512 513 1
512 514 -0.25
512 517 1
512 526 -1
512 566 -0.75
512 819 -1
512 820 -0.25
513 206 -1
513 207 -1
513 211 -1
513 220 1
513 260 1
513 512 1
513 513 2
513 517 1
513 526 -1
513 566 -1
513 819 -1
514 204 -1
514 206 -0.25
514 208 -0.75
514 212 -1
514 221 1
514 258 1
514 260 -0.25
514 510 1
514 512 -0.25
514 514 2.5
514 518 1
514 527 -1
514 564 -1
514 566 -0.25
514 820 -0.75
515 205 -1
515 209 -0.75
515 210 -1
515 211 -0.25
515 219 1
515 220 -0.25
515 259 1
515 511 1
515 515 2.5
515 516 1
515 517 -0.25
515 525 -1
515 526 -0.25
515 565 -1
515 821 -0.75
516 505 -1
516 509 -1
516 511 1
516 515 1
516 516 2
516 525 -1
516 559 1
516 565 -1
516 815 1
516 821 -1
517 506 -1
517 507 -1
517 509 -0.25
517 512 1
517 513 1
517 515 -0.25
517 517 2.5
517 526 -0.75
517 560 1
517 566 -1
517 813 1
517 815 -0.25
517 819 -1
517 821 -0.25
518 504 -1
518 505 -0.25
518 508 -1
518 510 1
518 511 -0.25
518 514 1
518 518 2.5
518 527 -0.75
518 558 1
518 559 -0.25
518 564 -1
518 565 -0.25
518 814 1
518 820 -1
519 519 1
519 523 1
519 527 1
519 536 -1
519 573 -1
519 829 -1
520 520 1.25
520 524 1
520 525 1
520 527 -0.25
520 534 -1
520 536 -0.25
520 574 -0.75
520 830 -1
521 521 1.25
521 522 1
521 523 -0.25
521 526 1
521 535 -1
521 575 -0.75
521 828 -1
521 829 -0.25
522 215 -1
522 216 -1
522 220 -1
522 229 1
522 269 1
522 521 1
522 522 2
522 526 1
522 535 -1
522 575 -1
522 828 -1
523 213 -1
523 215 -0.25
523 217 -0.75
523 221 -1
523 230 1
523 267 1
523 269 -0.25
523 519 1
523 521 -0.25
523 523 2.5
523 527 1
523 536 -1
523 573 -1
523 575 -0.25
523 829 -0.75
524 214 -1
524 218 -0.75
524 219 -1
524 220 -0.25
524 228 1
524 229 -0.25
524 268 1
524 520 1
524 524 2.5
524 525 1
524 526 -0.25
524 534 -1
524 535 -0.25
524 574 -1
524 830 -0.75
525 511 -1
525 515 -1
525 516 -1
525 520 1
525 524 1
525 525 2
525 534 -1
525 565 1
525 574 -1
525 821 1
525 830 -1
526 512 -1
526 513 -1
526 515 -0.25
526 517 -0.75
526 521 1
526 522 1
526 524 -0.25
526 526 2.5
526 535 -0.75
526 566 1
526 575 -1
526 819 1
526 821 -0.25
526 828 -1
526 830 -0.25
527 510 -1
527 511 -0.25
527 514 -1
527 518 -0.75
527 519 1
527 520 -0.25
527 523 1
527 527 2.5
527 536 -0.75
527 564 1
527 565 -0.25
527 573 -1
527 574 -0.25
527 820 1
527 829 -1
528 528 1
528 532 1
528 536 1
528 545 -1
528 582 -1
528 838 -1
529 529 1.25
529 533 1
529 534 1
529 536 -0.25
529 543 -1
529 545 -0.25
529 583 -0.75
529 839 -1
530 530 1.25
530 531 1
530 532 -0.25
530 535 1
530 544 -1
530 584 -0.75
530 837 -1
530 838 -0.25
531 224 -1
531 225 -1
531 229 -1
531 238 1
531 278 1
531 530 1
531 531 2
531 535 1
531 544 -1
531 584 -1
531 837 -1
532 222 -1
532 224 -0.25
532 226 -0.75
532 230 -1
532 239 1
532 276 1
532 278 -0.25
532 528 1
532 530 -0.25
532 532 2.5
532 536 1
532 545 -1
532 582 -1
532 584 -0.25
532 838 -0.75
533 223 -1
533 227 -0.75
533 228 -1
533 229 -0.25
533 237 1
533 238 -0.25
533 277 1
533 529 1
533 533 2.5
533 534 1
533 535 -0.25
533 543 -1
533 544 -0.25
533 583 -1
533 839 -0.75
534 520 -1
534 524 -1
534 525 -1
534 529 1
534 533 1
534 534 2
534 543 -1
534 574 1
534 583 -1
534 830 1
534 839 -1
535 521 -1
535 522 -1
535 524 -0.25
535 526 -0.75
535 530 1
535 531 1
535 533 -0.25
535 535 2.5
535 544 -0.75
535 575 1
535 584 -1
535 828 1
535 830 -0.25
535 837 -1
535 839 -0.25
536 519 -1
536 520 -0.25
536 523 -1
536 527 -0.75
536 528 1
536 529 -0.25
536 532 1
536 536 2.5
536 545 -0.75
536 573 1
536 574 -0.25
536 582 -1
536 583 -0.25
536 829 1
536 838 -1
537 537 1
537 541 1
537 545 1
537 554 -1
537 591 -1
537 847 -1
538 538 1.25
538 542 1
538 543 1
538 545 -0.25
538 552 -1
538 554 -0.25
538 592 -0.75
538 848 -1
539 539 1.25
539 540 1
539 541 -0.25
539 544 1
539 553 -1
539 593 -0.75
539 846 -1
539 847 -0.25
540 233 -1
540 234 -1
540 238 -1
540 247 1
540 287 1
540 539 1
540 540 2
540 544 1
540 553 -1
540 593 -1
540 846 -1
541 231 -1
541 233 -0.25
541 235 -0.75
541 239 -1
541 248 1
541 285 1
541 287 -0.25
541 537 1
541 539 -0.25
541 541 2.5
541 545 1
541 554 -1
541 591 -1
541 593 -0.25
541 847 -0.75
542 232 -1
542 236 -0.75
542 237 -1
542 238 -0.25
542 246 1
542 247 -0.25
542 286 1
542 538 1
542 542 2.5
542 543 1
542 544 -0.25
542 552 -1
542 553 -0.25
542 592 -1
542 848 -0.75
543 529 -1
543 533 -1
543 534 -1
543 538 1
543 542 1
543 543 2
543 552 -1
543 583 1
543 592 -1
543 839 1
543 848 -1
544 530 -1
544 531 -1
544 533 -0.25
544 535 -0.75
544 539 1
544 540 1
544 542 -0.25
544 544 2.5
544 553 -0.75
544 584 1
544 593 -1
544 837 1
544 839 -0.25
544 846 -1
544 848 -0.25
545 528 -1
545 529 -0.25
545 532 -1
545 536 -0.75
545 537 1
545 538 -0.25
545 541 1
545 545 2.5
545 554 -0.75
545 582 1
545 583 -0.25
545 591 -1
545 592 -0.25
545 838 1
545 847 -1
546 546 1
546 550 1
546 554 1
546 600 -1
546 856 -1
547 547 1.25
547 551 1
547 552 1
547 554 -0.25
547 601 -0.75
547 857 -1
548 548 1.25
548 549 1
548 550 -0.25
548 553 1
548 602 -0.75
548 855 -1
548 856 -0.25
549 242 -1
549 243 -1
549 247 -1
549 296 1
549 548 1
549 549 2
549 553 1
549 602 -1
549 855 -1
550 240 -1
550 242 -0.25
550 244 -0.75
550 248 -1
550 294 1
550 296 -0.25
550 546 1
550 548 -0.25
550 550 2.5
550 554 1
550 600 -1
550 602 -0.25
550 856 -0.75
551 241 -1
551 245 -0.75
551 246 -1
551 247 -0.25
551 295 1
551 547 1
551 551 2.5
551 552 1
551 553 -0.25
551 601 -1
551 857 -0.75
552 538 -1
552 542 -1
552 543 -1
552 547 1
552 551 1
552 552 2
552 592 1
552 601 -1
552 848 1
552 857 -1
553 539 -1
553 540 -1
553 542 -0.25
553 544 -0.75
553 548 1
553 549 1
553 551 -0.25
553 553 2.5
553 593 1
553 602 -1
553 846 1
553 848 -0.25
553 855 -1
553 857 -0.25
554 537 -1
554 538 -0.25
554 541 -1
554 545 -0.75
554 546 1
554 547 -0.25
554 550 1
554 554 2.5
554 591 1
554 592 -0.25
554 600 -1
554 601 -0.25
554 847 1
554 856 -1
555 249 -1
555 254 -1
555 262 1
555 305 1
555 555 2
555 560 1
555 568 -1
555 611 -1
555 861 -1
556 250 -0.75
556 252 -1
556 254 -0.25
556 263 1
556 303 1
556 305 -0.25
556 556 2.5
556 558 1
556 560 -0.25
556 569 -1
556 609 -1
556 611 -0.25
556 862 -0.75
557 251 -0.75
557 253 -1
557 261 1
557 262 -0.25
557 304 1
557 557 2.5
557 559 1
557 567 -1
557 568 -0.25
557 610 -1
557 863 -0.75
558 504 -1
558 508 -1
558 518 1
558 556 1
558 558 2
558 569 -1
558 609 -1
558 814 1
558 862 -1
559 505 -0.75
559 509 -1
559 516 1
559 518 -0.25
559 557 1
559 559 2.5
559 567 -1
559 569 -0.25
559 610 -0.75
559 815 1
559 863 -1
560 506 -0.75
560 507 -1
560 508 -0.25
560 517 1
560 555 1
560 556 -0.25
560 560 2.5
560 568 -1
560 611 -0.75
560 813 1
560 814 -0.25
560 861 -1
560 862 -0.25
561 255 -1
561 260 -1
561 262 -1
561 271 1
561 311 1
561 561 2
561 566 1
561 568 1
561 577 -1
561 617 -1
561 867 -1
562 256 -0.75
562 258 -1
562 260 -0.25
562 263 -1
562 272 1
562 309 1
562 311 -0.25
562 562 2.5
562 564 1
562 566 -0.25
562 569 1
562 578 -1
562 615 -1
562 617 -0.25
562 868 -0.75
563 257 -0.75
563 259 -1
563 261 -1
563 262 -0.25
563 270 1
563 271 -0.25
563 310 1
563 563 2.5
563 565 1
563 567 1
563 568 -0.25
563 576 -1
563 577 -0.25
563 616 -1
563 869 -0.75
564 510 -1
564 514 -1
564 518 -1
564 527 1
564 562 1
564 564 2
564 569 1
564 578 -1
564 615 -1
564 820 1
564 868 -1
565 511 -0.75
565 515 -1
565 516 -1
565 518 -0.25
565 525 1
565 527 -0.25
565 563 1
565 565 2.5
565 567 1
565 569 -0.25
565 576 -1
565 578 -0.25
565 616 -0.75
565 821 1
565 869 -1
566 512 -0.75
566 513 -1
566 514 -0.25
566 517 -1
566 526 1
566 561 1
566 562 -0.25
566 566 2.5
566 568 1
566 577 -1
566 617 -0.75
566 819 1
566 820 -0.25
566 867 -1
566 868 -0.25
567 557 -1
567 559 -1
567 563 1
567 565 1
567 567 2
567 576 -1
567 610 1
567 616 -1
567 863 1
567 869 -1
568 555 -1
568 557 -0.25
568 560 -1
568 561 1
568 563 -0.25
568 566 1
568 568 2.5
568 577 -0.75
568 611 1
568 617 -1
568 861 1
568 863 -0.25
568 867 -1
568 869 -0.25
569 556 -1
569 558 -1
569 559 -0.25
569 562 1
569 564 1
569 565 -0.25
569 569 2.5
569 578 -0.75
569 609 1
569 610 -0.25
569 615 -1
569 616 -0.25
569 862 1
569 868 -1
570 264 -1
570 269 -1
570 271 -1
570 280 1
570 320 1
570 570 2
570 575 1
570 577 1
570 586 -1
570 626 -1
570 876 -1
571 265 -0.75
571 267 -1
571 269 -0.25
571 272 -1
571 281 1
571 318 1
571 320 -0.25
571 571 2.5
571 573 1
571 575 -0.25
571 578 1
571 587 -1
571 624 -1
571 626 -0.25
571 877 -0.75
572 266 -0.75
572 268 -1
572 270 -1
572 271 -0.25
572 279 1
572 280 -0.25
572 319 1
572 572 2.5
572 574 1
572 576 1
572 577 -0.25
572 585 -1
572 586 -0.25
572 625 -1
572 878 -0.75
573 519 -1
573 523 -1
573 527 -1
573 536 1
573 571 1
573 573 2
573 578 1
573 587 -1
573 624 -1
573 829 1
573 877 -1
574 520 -0.75
574 524 -1
574 525 -1
574 527 -0.25
574 534 1
574 536 -0.25
574 572 1
574 574 2.5
574 576 1
574 578 -0.25
574 585 -1
574 587 -0.25
574 625 -0.75
574 830 1
574 878 -1
575 521 -0.75
575 522 -1
575 523 -0.25
575 526 -1
575 535 1
575 570 1
575 571 -0.25
575 575 2.5
575 577 1
575 586 -1
575 626 -0.75
575 828 1
575 829 -0.25
575 876 -1
575 877 -0.25
576 563 -1
576 565 -1
576 567 -1
576 572 1
576 574 1
576 576 2
576 585 -1
576 616 1
576 625 -1
576 869 1
576 878 -1
577 561 -1
577 563 -0.25
577 566 -1
577 568 -0.75
577 570 1
577 572 -0.25
577 575 1
577 577 2.5
577 586 -0.75
577 617 1
577 626 -1
577 867 1
577 869 -0.25
577 876 -1
577 878 -0.25
578 562 -1
578 564 -1
578 565 -0.25
578 569 -0.75
578 571 1
578 573 1
578 574 -0.25
578 578 2.5
578 587 -0.75
578 615 1
578 616 -0.25
578 624 -1
578 625 -0.25
578 868 1
578 877 -1
579 273 -1
579 278 -1
579 280 -1
579 289 1
579 329 1
579 579 2
579 584 1
579 586 1
579 595 -1
579 635 -1
579 885 -1
580 274 -0.75
580 276 -1
580 278 -0.25
580 281 -1
580 290 1
580 327 1
580 329 -0.25
580 580 2.5
580 582 1
580 584 -0.25
580 587 1
580 596 -1
580 633 -1
580 635 -0.25
580 886 -0.75
581 275 -0.75
581 277 -1
581 279 -1
581 280 -0.25
581 288 1
581 289 -0.25
581 328 1
581 581 2.5
581 583 1
581 585 1
581 586 -0.25
581 594 -1
581 595 -0.25
581 634 -1
581 887 -0.75
582 528 -1
582 532 -1
582 536 -1
582 545 1
582 580 1
582 582 2
582 587 1
582 596 -1
582 633 -1
582 838 1
582 886 -1
583 529 -0.75
583 533 -1
583 534 -1
583 536 -0.25
583 543 1
583 545 -0.25
583 581 1
583 583 2.5
583 585 1
583 587 -0.25
583 594 -1
583 596 -0.25
583 634 -0.75
583 839 1
583 887 -1
584 530 -0.75
584 531 -1
584 532 -0.25
584 535 -1
584 544 1
584 579 1
584 580 -0.25
584 584 2.5
584 586 1
584 595 -1
584 635 -0.75
584 837 1
584 838 -0.25
584 885 -1
584 886 -0.25
585 572 -1
585 574 -1
585 576 -1
585 581 1
585 583 1
585 585 2
585 594 -1
585 625 1
585 634 -1
585 878 1
585 887 -1
586 570 -1
586 572 -0.25
586 575 -1
586 577 -0.75
586 579 1
586 581 -0.25
586 584 1
586 586 2.5
586 595 -0.75
586 626 1
586 635 -1
586 876 1
586 878 -0.25
586 885 -1
586 887 -0.25
587 571 -1
587 573 -1
587 574 -0.25
587 578 -0.75
587 580 1
587 582 1
587 583 -0.25
587 587 2.5
587 596 -0.75
587 624 1
587 625 -0.25
587 633 -1
587 634 -0.25
587 877 1
587 886 -1
588 282 -1
588 287 -1
588 289 -1
588 298 1
588 338 1
588 588 2
588 593 1
588 595 1
588 604 -1
588 644 -1
588 894 -1
589 283 -0.75
589 285 -1
589 287 -0.25
589 290 -1
589 299 1
589 336 1
589 338 -0.25
589 589 2.5
589 591 1
589 593 -0.25
589 596 1
589 605 -1
589 642 -1
589 644 -0.25
589 895 -0.75
590 284 -0.75
590 286 -1
590 288 -1
590 289 -0.25
590 297 1
590 298 -0.25
590 337 1
590 590 2.5
590 592 1
590 594 1
590 595 -0.25
590 603 -1
590 604 -0.25
590 643 -1
590 896 -0.75
591 537 -1
591 541 -1
591 545 -1
591 554 1
591 589 1
591 591 2
591 596 1
591 605 -1
591 642 -1
591 847 1
591 895 -1
592 538 -0.75
592 542 -1
592 543 -1
592 545 -0.25
592 552 1
592 554 -0.25
592 590 1
592 592 2.5
592 594 1
592 596 -0.25
592 603 -1
592 605 -0.25
592 643 -0.75
592 848 1
592 896 -1
593 539 -0.75
593 540 -1
593 541 -0.25
593 544 -1
593 553 1
593 588 1
593 589 -0.25
593 593 2.5
593 595 1
593 604 -1
593 644 -0.75
593 846 1
593 847 -0.25
593 894 -1
593 895 -0.25
594 581 -1
594 583 -1
594 585 -1
594 590 1
594 592 1
594 594 2
594 603 -1
594 634 1
594 643 -1
594 887 1
594 896 -1
595 579 -1
595 581 -0.25
595 584 -1
595 586 -0.75
595 588 1
595 590 -0.25
595 593 1
595 595 2.5
595 604 -0.75
595 635 1
595 644 -1
595 885 1
595 887 -0.25
595 894 -1
595 896 -0.25
596 580 -1
596 582 -1
596 583 -0.25
596 587 -0.75
596 589 1
596 591 1
596 592 -0.25
596 596 2.5
596 605 -0.75
596 633 1
596 634 -0.25
596 642 -1
596 643 -0.25
596 886 1
596 895 -1
597 291 -1
597 296 -1
597 298 -1
597 347 1
597 597 2
597 602 1
597 604 1
597 653 -1
597 903 -1
598 292 -0.75
598 294 -1
598 296 -0.25
598 299 -1
598 345 1
598 347 -0.25
598 598 2.5
598 600 1
598 602 -0.25
598 605 1
598 651 -1
598 653 -0.25
598 904 -0.75
599 293 -0.75
599 295 -1
599 297 -1
599 298 -0.25
599 346 1
599 599 2.5
599 601 1
599 603 1
599 604 -0.25
599 652 -1
599 905 -0.75
600 546 -1
600 550 -1
600 554 -1
600 598 1
600 600 2
600 605 1
600 651 -1
600 856 1
600 904 -1
601 547 -0.75
601 551 -1
601 552 -1
601 554 -0.25
601 599 1
601 601 2.5
601 603 1
601 605 -0.25
601 652 -0.75
601 857 1
601 905 -1
602 548 -0.75
602 549 -1
602 550 -0.25
602 553 -1
602 597 1
602 598 -0.25
602 602 2.5
602 604 1
602 653 -0.75
602 855 1
602 856 -0.25
602 903 -1
602 904 -0.25
603 590 -1
603 592 -1
603 594 -1
603 599 1
603 601 1
603 603 2
603 643 1
603 652 -1
603 896 1
603 905 -1
604 588 -1
604 590 -0.25
604 593 -1
604 595 -0.75
604 597 1
604 599 -0.25
604 602 1
604 604 2.5
604 644 1
604 653 -1
604 894 1
604 896 -0.25
604 903 -1
604 905 -0.25
605 589 -1
605 591 -1
605 592 -0.25
605 596 -0.75
605 598 1
605 600 1
605 601 -0.25
605 605 2.5
605 642 1
605 643 -0.25
605 651 -1
605 652 -0.25
605 895 1
605 904 -1
606 300 -1
606 305 -1
606 313 1
606 356 1
606 606 2
606 611 1
606 619 -1
606 662 -1
606 912 -1
607 301 -0.75
607 303 -1
607 305 -0.25
607 314 1
607 354 1
607 356 -0.25
607 607 2.5
607 609 1
607 611 -0.25
607 620 -1
607 660 -1
607 662 -0.25
607 913 -0.75
608 302 -0.75
608 304 -1
608 312 1
608 313 -0.25
608 355 1
608 608 2.5
608 610 1
608 618 -1
608 619 -0.25
608 661 -1
608 914 -0.75
609 556 -1
609 558 -1
609 569 1
609 607 1
609 609 2
609 620 -1
609 660 -1
609 862 1
609 913 -1
610 557 -1
610 559 -0.75
610 567 1
610 569 -0.25
610 608 1
610 610 2.5
610 618 -1
610 620 -0.25
610 661 -0.75
610 863 1
610 914 -1
611 555 -1
611 556 -0.25
611 560 -0.75
611 568 1
611 606 1
611 607 -0.25
611 611 2.5
611 619 -1
611 662 -0.75
611 861 1
611 862 -0.25
611 912 -1
611 913 -0.25
612 306 -1
612 311 -1
612 313 -1
612 322 1
612 362 1
612 612 2
612 617 1
612 619 1
612 628 -1
612 668 -1
612 918 -1
613 307 -0.75
613 309 -1
613 311 -0.25
613 314 -1
613 323 1
613 360 1
613 362 -0.25
613 613 2.5
613 615 1
613 617 -0.25
613 620 1
613 629 -1
613 666 -1
613 668 -0.25
613 919 -0.75
614 308 -0.75
614 310 -1
614 312 -1
614 313 -0.25
614 321 1
614 322 -0.25
614 361 1
614 614 2.5
614 616 1
614 618 1
614 619 -0.25
614 627 -1
614 628 -0.25
614 667 -1
614 920 -0.75
615 562 -1
615 564 -1
615 569 -1
615 578 1
615 613 1
615 615 2
615 620 1
615 629 -1
615 666 -1
615 868 1
615 919 -1
616 563 -1
616 565 -0.75
616 567 -1
616 569 -0.25
616 576 1
616 578 -0.25
616 614 1
616 616 2.5
616 618 1
616 620 -0.25
616 627 -1
616 629 -0.25
616 667 -0.75
616 869 1
616 920 -1
617 561 -1
617 562 -0.25
617 566 -0.75
617 568 -1
617 577 1
617 612 1
617 613 -0.25
617 617 2.5
617 619 1
617 628 -1
617 668 -0.75
617 867 1
617 868 -0.25
617 918 -1
617 919 -0.25
618 608 -1
618 610 -1
618 614 1
618 616 1
618 618 2
618 627 -1
618 661 1
618 667 -1
618 914 1
618 920 -1
619 606 -1
619 608 -0.25
619 611 -1
619 612 1
619 614 -0.25
619 617 1
619 619 2.5
619 628 -0.75
619 662 1
619 668 -1
619 912 1
619 914 -0.25
619 918 -1
619 920 -0.25
620 607 -1
620 609 -1
620 610 -0.25
620 613 1
620 615 1
620 616 -0.25
620 620 2.5
620 629 -0.75
620 660 1
620 661 -0.25
620 666 -1
620 667 -0.25
620 913 1
620 919 -1
621 315 -1
621 320 -1
621 322 -1
621 331 1
621 371 1
621 621 2
621 626 1
621 628 1
621 637 -1
621 677 -1
621 927 -1
622 316 -0.75
622 318 -1
622 320 -0.25
622 323 -1
622 332 1
622 369 1
622 371 -0.25
622 622 2.5
622 624 1
622 626 -0.25
622 629 1
622 638 -1
622 675 -1
622 677 -0.25
622 928 -0.75
623 317 -0.75
623 319 -1
623 321 -1
623 322 -0.25
623 330 1
623 331 -0.25
623 370 1
623 623 2.5
623 625 1
623 627 1
623 628 -0.25
623 636 -1
623 637 -0.25
623 676 -1
623 929 -0.75
624 571 -1
624 573 -1
624 578 -1
624 587 1
624 622 1
624 624 2
624 629 1
624 638 -1
624 675 -1
624 877 1
624 928 -1
625 572 -1
625 574 -0.75
625 576 -1
625 578 -0.25
625 585 1
625 587 -0.25
625 623 1
625 625 2.5
625 627 1
625 629 -0.25
625 636 -1
625 638 -0.25
625 676 -0.75
625 878 1
625 929 -1
626 570 -1
626 571 -0.25
626 575 -0.75
626 577 -1
626 586 1
626 621 1
626 622 -0.25
626 626 2.5
626 628 1
626 637 -1
626 677 -0.75
626 876 1
626 877 -0.25
626 927 -1
626 928 -0.25
627 614 -1
627 616 -1
627 618 -1
627 623 1
627 625 1
627 627 2
627 636 -1
627 667 1
627 676 -1
627 920 1
627 929 -1
628 612 -1
628 614 -0.25
628 617 -1
628 619 -0.75
628 621 1
628 623 -0.25
628 626 1
628 628 2.5
628 637 -0.75
628 668 1
628 677 -1
628 918 1
628 920 -0.25
628 927 -1
628 929 -0.25
629 613 -1
629 615 -1
629 616 -0.25
629 620 -0.75
629 622 1
629 624 1
629 625 -0.25
629 629 2.5
629 638 -0.75
629 666 1
629 667 -0.25
629 675 -1
629 676 -0.25
629 919 1
629 928 -1
630 324 -1
630 329 -1
630 331 -1
630 340 1
630 380 1
630 630 2
630 635 1
630 637 1
630 646 -1
630 686 -1
630 936 -1
631 325 -0.75
631 327 -1
631 329 -0.25
631 332 -1
631 341 1
631 378 1
631 380 -0.25
631 631 2.5
631 633 1
631 635 -0.25
631 638 1
631 647 -1
631 684 -1
631 686 -0.25
631 937 -0.75
632 326 -0.75
632 328 -1
632 330 -1
632 331 -0.25
632 339 1
632 340 -0.25
632 379 1
632 632 2.5
632 634 1
632 636 1
632 637 -0.25
632 645 -1
632 646 -0.25
632 685 -1
632 938 -0.75
633 580 -1
633 582 -1
633 587 -1
633 596 1
633 631 1
633 633 2
633 638 1
633 647 -1
633 684 -1
633 886 1
633 937 -1
634 581 -1
634 583 -0.75
634 585 -1
634 587 -0.25
634 594 1
634 596 -0.25
634 632 1
634 634 2.5
634 636 1
634 638 -0.25
634 645 -1
634 647 -0.25
634 685 -0.75
634 887 1
634 938 -1
635 579 -1
635 580 -0.25
635 584 -0.75
635 586 -1
635 595 1
635 630 1
635 631 -0.25
635 635 2.5
635 637 1
635 646 -1
635 686 -0.75
635 885 1
635 886 -0.25
635 936 -1
635 937 -0.25
636 623 -1
636 625 -1
636 627 -1
636 632 1
636 634 1
636 636 2
636 645 -1
636 676 1
636 685 -1
636 929 1
636 938 -1
637 621 -1
637 623 -0.25
637 626 -1
637 628 -0.75
637 630 1
637 632 -0.25
637 635 1
637 637 2.5
637 646 -0.75
637 677 1
637 686 -1
637 927 1
637 929 -0.25
637 936 -1
637 938 -0.25
638 622 -1
638 624 -1
638 625 -0.25
638 629 -0.75
638 631 1
638 633 1
638 634 -0.25
638 638 2.5
638 647 -0.75
638 675 1
638 676 -0.25
638 684 -1
638 685 -0.25
638 928 1
638 937 -1
639 333 -1
639 338 -1
639 340 -1
639 349 1
639 389 1
639 639 2
639 644 1
639 646 1
639 655 -1
639 695 -1
639 945 -1
640 334 -0.75
640 336 -1
640 338 -0.25
640 341 -1
640 350 1
640 387 1
640 389 -0.25
640 640 2.5
640 642 1
640 644 -0.25
640 647 1
640 656 -1
640 693 -1
640 695 -0.25
640 946 -0.75
641 335 -0.75
641 337 -1
641 339 -1
641 340 -0.25
641 348 1
641 349 -0.25
641 388 1
641 641 2.5
641 643 1
641 645 1
641 646 -0.25
641 654 -1
641 655 -0.25
641 694 -1
641 947 -0.75
642 589 -1
642 591 -1
642 596 -1
642 605 1
642 640 1
642 642 2
642 647 1
642 656 -1
642 693 -1
642 895 1
642 946 -1
643 590 -1
643 592 -0.75
643 594 -1
643 596 -0.25
643 603 1
643 605 -0.25
643 641 1
643 643 2.5
643 645 1
643 647 -0.25
643 654 -1
643 656 -0.25
643 694 -0.75
643 896 1
643 947 -1
644 588 -1
644 589 -0.25
644 593 -0.75
644 595 -1
644 604 1
644 639 1
644 640 -0.25
644 644 2.5
644 646 1
644 655 -1
644 695 -0.75
644 894 1
644 895 -0.25
644 945 -1
644 946 -0.25
645 632 -1
645 634 -1
645 636 -1
645 641 1
645 643 1
645 645 2
645 654 -1
645 685 1
645 694 -1
645 938 1
645 947 -1
646 630 -1
646 632 -0.25
646 635 -1
646 637 -0.75
646 639 1
646 641 -0.25
646 644 1
646 646 2.5
646 655 -0.75
646 686 1
646 695 -1
646 936 1
646 938 -0.25
646 945 -1
646 947 -0.25
647 631 -1
647 633 -1
647 634 -0.25
647 638 -0.75
647 640 1
647 642 1
647 643 -0.25
647 647 2.5
647 656 -0.75
647 684 1
647 685 -0.25
647 693 -1
647 694 -0.25
647 937 1
647 946 -1
648 342 -1
648 347 -1
648 349 -1
648 398 1
648 648 2
648 653 1
648 655 1
648 704 -1
648 954 -1
649 343 -0.75
649 345 -1
649 347 -0.25
649 350 -1
649 396 1
649 398 -0.25
649 649 2.5
649 651 1
649 653 -0.25
649 656 1
649 702 -1
649 704 -0.25
649 955 -0.75
650 344 -0.75
650 346 -1
650 348 -1
650 349 -0.25
650 397 1
650 650 2.5
650 652 1
650 654 1
650 655 -0.25
650 703 -1
650 956 -0.75
651 598 -1
651 600 -1
651 605 -1
651 649 1
651 651 2
651 656 1
651 702 -1
651 904 1
651 955 -1
652 599 -1
652 601 -0.75
652 603 -1
652 605 -0.25
652 650 1
652 652 2.5
652 654 1
652 656 -0.25
652 703 -0.75
652 905 1
652 956 -1
653 597 -1
653 598 -0.25
653 602 -0.75
653 604 -1
653 648 1
653 649 -0.25
653 653 2.5
653 655 1
653 704 -0.75
653 903 1
653 904 -0.25
653 954 -1
653 955 -0.25
654 641 -1
654 643 -1
654 645 -1
654 650 1
654 652 1
654 654 2
654 694 1
654 703 -1
654 947 1
654 956 -1
655 639 -1
655 641 -0.25
655 644 -1
655 646 -0.75
655 648 1
655 650 -0.25
655 653 1
655 655 2.5
655 695 1
655 704 -1
655 945 1
655 947 -0.25
655 954 -1
655 956 -0.25
656 640 -1
656 642 -1
656 643 -0.25
656 647 -0.75
656 649 1
656 651 1
656 652 -0.25
656 656 2.5
656 693 1
656 694 -0.25
656 702 -1
656 703 -0.25
656 946 1
656 955 -1
657 351 -1
657 356 -1
657 364 1
657 407 1
657 657 2
657 662 1
657 670 -1
657 713 -1
657 963 -1
658 352 -0.75
658 354 -1
658 356 -0.25
658 365 1
658 405 1
658 407 -0.25
658 658 2.5
658 660 1
658 662 -0.25
658 671 -1
658 711 -1
658 713 -0.25
658 964 -0.75
659 353 -0.75
659 355 -1
659 363 1
659 364 -0.25
659 406 1
659 659 2.5
659 661 1
659 669 -1
659 670 -0.25
659 712 -1
659 965 -0.75
660 607 -1
660 609 -1
660 620 1
660 658 1
660 660 2
660 671 -1
660 711 -1
660 913 1
660 964 -1
661 608 -1
661 610 -0.75
661 618 1
661 620 -0.25
661 659 1
661 661 2.5
661 669 -1
661 671 -0.25
661 712 -0.75
661 914 1
661 965 -1
662 606 -1
662 607 -0.25
662 611 -0.75
662 619 1
662 657 1
662 658 -0.25
662 662 2.5
662 670 -1
662 713 -0.75
662 912 1
662 913 -0.25
662 963 -1
662 964 -0.25
663 357 -1
663 362 -1
663 364 -1
663 373 1
663 413 1
663 663 2
663 668 1
663 670 1
663 679 -1
663 719 -1
663 969 -1
664 358 -0.75
664 360 -1
664 362 -0.25
664 365 -1
664 374 1
664 411 1
664 413 -0.25
664 664 2.5
664 666 1
664 668 -0.25
664 671 1
664 680 -1
664 717 -1
664 719 -0.25
664 970 -0.75
665 359 -0.75
665 361 -1
665 363 -1
665 364 -0.25
665 372 1
665 373 -0.25
665 412 1
665 665 2.5
665 667 1
665 669 1
665 670 -0.25
665 678 -1
665 679 -0.25
665 718 -1
665 971 -0.75
666 613 -1
666 615 -1
666 620 -1
666 629 1
666 664 1
666 666 2
666 671 1
666 680 -1
666 717 -1
666 919 1
666 970 -1
667 614 -1
667 616 -0.75
667 618 -1
667 620 -0.25
667 627 1
667 629 -0.25
667 665 1
667 667 2.5
667 669 1
667 671 -0.25
667 678 -1
667 680 -0.25
667 718 -0.75
667 920 1
667 971 -1
668 612 -1
668 613 -0.25
668 617 -0.75
668 619 -1
668 628 1
668 663 1
668 664 -0.25
668 668 2.5
668 670 1
668 679 -1
668 719 -0.75
668 918 1
668 919 -0.25
668 969 -1
668 970 -0.25
669 659 -1
669 661 -1
669 665 1
669 667 1
669 669 2
669 678 -1
669 712 1
669 718 -1
669 965 1
669 971 -1
670 657 -1
670 659 -0.25
670 662 -1
670 663 1
670 665 -0.25
670 668 1
670 670 2.5
670 679 -0.75
670 713 1
670 719 -1
670 963 1
670 965 -0.25
670 969 -1
670 971 -0.25
671 658 -1
671 660 -1
671 661 -0.25
671 664 1
671 666 1
671 667 -0.25
671 671 2.5
671 680 -0.75
671 711 1
671 712 -0.25
671 717 -1
671 718 -0.25
671 964 1
671 970 -1
672 366 -1
672 371 -1
672 373 -1
672 382 1
672 422 1
672 672 2
672 677 1
672 679 1
672 688 -1
672 728 -1
672 978 -1
673 367 -0.75
673 369 -1
673 371 -0.25
673 374 -1
673 383 1
673 420 1
673 422 -0.25
673 673 2.5
673 675 1
673 677 -0.25
673 680 1
673 689 -1
673 726 -1
673 728 -0.25
673 979 -0.75
674 368 -0.75
674 370 -1
674 372 -1
674 373 -0.25
674 381 1
674 382 -0.25
674 421 1
674 674 2.5
674 676 1
674 678 1
674 679 -0.25
674 687 -1
674 688 -0.25
674 727 -1
674 980 -0.75
675 622 -1
675 624 -1
675 629 -1
675 638 1
675 673 1
675 675 2
675 680 1
675 689 -1
675 726 -1
675 928 1
675 979 -1
676 623 -1
676 625 -0.75
676 627 -1
676 629 -0.25
676 636 1
676 638 -0.25
676 674 1
676 676 2.5
676 678 1
676 680 -0.25
676 687 -1
676 689 -0.25
676 727 -0.75
676 929 1
676 980 -1
677 621 -1
677 622 -0.25
677 626 -0.75
677 628 -1
677 637 1
677 672 1
677 673 -0.25
677 677 2.5
677 679 1
677 688 -1
677 728 -0.75
677 927 1
677 928 -0.25
677 978 -1
677 979 -0.25
678 665 -1
678 667 -1
678 669 -1
678 674 1
678 676 1
678 678 2
678 687 -1
678 718 1
678 727 -1
678 971 1
678 980 -1
679 663 -1
679 665 -0.25
679 668 -1
679 670 -0.75
679 672 1
679 674 -0.25
679 677 1
679 679 2.5
679 688 -0.75
679 719 1
679 728 -1
679 969 1
679 971 -0.25
679 978 -1
679 980 -0.25
680 664 -1
680 666 -1
680 667 -0.25
680 671 -0.75
680 673 1
680 675 1
680 676 -0.25
680 680 2.5
680 689 -0.75
680 717 1
680 718 -0.25
680 726 -1
680 727 -0.25
680 970 1
680 979 -1
681 375 -1
681 380 -1
681 382 -1
681 391 1
681 431 1
681 681 2
681 686 1
681 688 1
681 697 -1
681 737 -1
681 987 -1
682 376 -0.75
682 378 -1
682 380 -0.25
682 383 -1
682 392 1
682 429 1
682 431 -0.25
682 682 2.5
682 684 1
682 686 -0.25
682 689 1
682 698 -1
682 735 -1
682 737 -0.25
682 988 -0.75
683 377 -0.75
683 379 -1
683 381 -1
683 382 -0.25
683 390 1
683 391 -0.25
683 430 1
683 683 2.5
683 685 1
683 687 1
683 688 -0.25
683 696 -1
683 697 -0.25
683 736 -1
683 989 -0.75
684 631 -1
684 633 -1
684 638 -1
684 647 1
684 682 1
684 684 2
684 689 1
684 698 -1
684 735 -1
684 937 1
684 988 -1
685 632 -1
685 634 -0.75
685 636 -1
685 638 -0.25
685 645 1
685 647 -0.25
685 683 1
685 685 2.5
685 687 1
685 689 -0.25
685 696 -1
685 698 -0.25
685 736 -0.75
685 938 1
685 989 -1
686 630 -1
686 631 -0.25
686 635 -0.75
686 637 -1
686 646 1
686 681 1
686 682 -0.25
686 686 2.5
686 688 1
686 697 -1
686 737 -0.75
686 936 1
686 937 -0.25
686 987 -1
686 988 -0.25
687 674 -1
687 676 -1
687 678 -1
687 683 1
687 685 1
687 687 2
687 696 -1
687 727 1
687 736 -1
687 980 1
687 989 -1
688 672 -1
688 674 -0.25
688 677 -1
688 679 -0.75
688 681 1
688 683 -0.25
688 686 1
688 688 2.5
688 697 -0.75
688 728 1
688 737 -1
688 978 1
688 980 -0.25
688 987 -1
688 989 -0.25
689 673 -1
689 675 -1
689 676 -0.25
689 680 -0.75
689 682 1
689 684 1
689 685 -0.25
689 689 2.5
689 698 -0.75
689 726 1
689 727 -0.25
689 735 -1
689 736 -0.25
689 979 1
689 988 -1
690 384 -1
690 389 -1
690 391 -1
690 400 1
690 440 1
690 690 2
690 695 1
690 697 1
690 706 -1
690 746 -1
690 996 -1
691 385 -0.75
691 387 -1
691 389 -0.25
691 392 -1
691 401 1
691 438 1
691 440 -0.25
691 691 2.5
691 693 1
691 695 -0.25
691 698 1
691 707 -1
691 744 -1
691 746 -0.25
691 997 -0.75
692 386 -0.75
692 388 -1
692 390 -1
692 391 -0.25
692 399 1
692 400 -0.25
692 439 1
692 692 2.5
692 694 1
692 696 1
692 697 -0.25
692 705 -1
692 706 -0.25
692 745 -1
692 998 -0.75
693 640 -1
693 642 -1
693 647 -1
693 656 1
693 691 1
693 693 2
693 698 1
693 707 -1
693 744 -1
693 946 1
693 997 -1
694 641 -1
694 643 -0.75
694 645 -1
694 647 -0.25
694 654 1
694 656 -0.25
694 692 1
694 694 2.5
694 696 1
694 698 -0.25
694 705 -1
694 707 -0.25
694 745 -0.75
694 947 1
694 998 -1
695 639 -1
695 640 -0.25
695 644 -0.75
695 646 -1
695 655 1
695 690 1
695 691 -0.25
695 695 2.5
695 697 1
695 706 -1
695 746 -0.75
695 945 1
695 946 -0.25
695 996 -1
695 997 -0.25
696 683 -1
696 685 -1
696 687 -1
696 692 1
696 694 1
696 696 2
696 705 -1
696 736 1
696 745 -1
696 989 1
696 998 -1
697 681 -1
697 683 -0.25
697 686 -1
697 688 -0.75
697 690 1
697 692 -0.25
697 695 1
697 697 2.5
697 706 -0.75
697 737 1
697 746 -1
697 987 1
697 989 -0.25
697 996 -1
697 998 -0.25
698 682 -1
698 684 -1
698 685 -0.25
698 689 -0.75
698 691 1
698 693 1
698 694 -0.25
698 698 2.5
698 707 -0.75
698 735 1
698 736 -0.25
698 744 -1
698 745 -0.25
698 988 1
698 997 -1
699 393 -1
699 398 -1
699 400 -1
699 449 1
699 699 2
699 704 1
699 706 1
699 755 -1
699 1005 -1
700 394 -0.75
700 396 -1
700 398 -0.25
700 401 -1
700 447 1
700 449 -0.25
700 700 2.5
700 702 1
700 704 -0.25
700 707 1
700 753 -1
700 755 -0.25
700 1006 -0.75
701 395 -0.75
701 397 -1
701 399 -1
701 400 -0.25
701 448 1
701 701 2.5
701 703 1
701 705 1
701 706 -0.25
701 754 -1
701 1007 -0.75
702 649 -1
702 651 -1
702 656 -1
702 700 1
702 702 2
702 707 1
702 753 -1
702 955 1
702 1006 -1
703 650 -1
703 652 -0.75
703 654 -1
703 656 -0.25
703 701 1
703 703 2.5
703 705 1
703 707 -0.25
703 754 -0.75
703 956 1
703 1007 -1
704 648 -1
704 649 -0.25
704 653 -0.75
704 655 -1
704 699 1
704 700 -0.25
704 704 2.5
704 706 1
704 755 -0.75
704 954 1
704 955 -0.25
704 1005 -1
704 1006 -0.25
705 692 -1
705 694 -1
705 696 -1
705 701 1
705 703 1
705 705 2
705 745 1
705 754 -1
705 998 1
705 1007 -1
706 690 -1
706 692 -0.25
706 695 -1
706 697 -0.75
706 699 1
706 701 -0.25
706 704 1
706 706 2.5
706 746 1
706 755 -1
706 996 1
706 998 -0.25
706 1005 -1
706 1007 -0.25
707 691 -1
707 693 -1
707 694 -0.25
707 698 -0.75
707 700 1
707 702 1
707 703 -0.25
707 707 2.5
707 744 1
707 745 -0.25
707 753 -1
707 754 -0.25
707 997 1
707 1006 -1
708 402 -1
708 407 -1
708 415 1
708 458 1
708 708 2
708 713 1
708 721 -1
708 764 -1
708 1014 -1
709 403 -0.75
709 405 -1
709 407 -0.250000000000001
709 416 1
709 456 1
709 458 -0.25
709 709 2.5
709 711 1
709 713 -0.250000000000001
709 722 -1
709 762 -1
709 764 -0.25
709 1015 -0.75
710 404 -0.75
710 406 -1
710 414 1
710 415 -0.25
710 457 1
710 710 2.5
710 712 1
710 720 -1
710 721 -0.25
710 763 -1
710 1016 -0.75
711 658 -1
711 660 -1
711 671 1
711 709 1
711 711 2
711 722 -1
711 762 -1
711 964 1
711 1015 -1
712 659 -1
712 661 -0.75
712 669 1
712 671 -0.25
712 710 1
712 712 2.5
712 720 -1
712 722 -0.250000000000001
712 763 -0.75
712 965 1
712 1016 -1
713 657 -1
713 658 -0.25
713 662 -0.75
713 670 1
713 708 1
713 709 -0.250000000000001
713 713 2.5
713 721 -1
713 764 -0.75
713 963 1
713 964 -0.25
713 1014 -1
713 1015 -0.250000000000001
714 408 -1
714 413 -1
714 415 -1
714 424 1
714 464 1
714 714 2
714 719 1
714 721 1
714 730 -1
714 770 -1
714 1020 -1
715 409 -0.75
715 411 -1
715 413 -0.250000000000001
715 416 -1
715 425 1
715 462 1
715 464 -0.25
715 715 2.5
715 717 1
715 719 -0.250000000000001
715 722 1
715 731 -1
715 768 -1
715 770 -0.25
715 1021 -0.75
716 410 -0.75
716 412 -1
716 414 -1
716 415 -0.25
716 423 1
716 424 -0.25
716 463 1
716 716 2.5
716 718 1
716 720 1
716 721 -0.25
716 729 -1
716 730 -0.25
716 769 -1
716 1022 -0.75
717 664 -1
717 666 -1
717 671 -1
717 680 1
717 715 1
717 717 2
717 722 1
717 731 -1
717 768 -1
717 970 1
717 1021 -1
718 665 -1
718 667 -0.75
718 669 -1
718 671 -0.25
718 678 1
718 680 -0.25
718 716 1
718 718 2.5
718 720 1
718 722 -0.250000000000001
718 729 -1
718 731 -0.250000000000001
718 769 -0.75
718 971 1
718 1022 -1
719 663 -1
719 664 -0.25
719 668 -0.75
719 670 -1
719 679 1
719 714 1
719 715 -0.250000000000001
719 719 2.5
719 721 1
719 730 -1
719 770 -0.75
719 969 1
719 970 -0.25
719 1020 -1
719 1021 -0.250000000000001
720 710 -1
720 712 -1
720 716 1
720 718 1
720 720 2
720 729 -1
720 763 1
720 769 -1
720 1016 1
720 1022 -1
721 708 -1
721 710 -0.25
721 713 -1
721 714 1
721 716 -0.25
721 719 1
721 721 2.5
721 730 -0.75
721 764 1
721 770 -1
721 1014 1
721 1016 -0.25
721 1020 -1
721 1022 -0.25
722 709 -1
722 711 -1
722 712 -0.250000000000001
722 715 1
722 717 1
722 718 -0.250000000000001
722 722 2.5
722 731 -0.75
722 762 1
722 763 -0.25
722 768 -1
722 769 -0.25
722 1015 1
722 1021 -1
723 417 -1
723 422 -1
723 424 -1
723 433 1
723 473 1
723 723 2
723 728 1
723 730 1
723 739 -1
723 779 -1
723 1029 -1
724 418 -0.75
724 420 -1
724 422 -0.250000000000001
724 425 -1
724 434 1
724 471 1
724 473 -0.25
724 724 2.5
724 726 1
724 728 -0.250000000000001
724 731 1
724 740 -1
724 777 -1
724 779 -0.25
724 1030 -0.75
725 419 -0.75
725 421 -1
725 423 -1
725 424 -0.25
725 432 1
725 433 -0.25
725 472 1
725 725 2.5
725 727 1
725 729 1
725 730 -0.25
725 738 -1
725 739 -0.25
725 778 -1
725 1031 -0.75
726 673 -1
726 675 -1
726 680 -1
726 689 1
726 724 1
726 726 2
726 731 1
726 740 -1
726 777 -1
726 979 1
726 1030 -1
727 674 -1
727 676 -0.75
727 678 -1
727 680 -0.25
727 687 1
727 689 -0.25
727 725 1
727 727 2.5
727 729 1
727 731 -0.250000000000001
727 738 -1
727 740 -0.250000000000001
727 778 -0.75
727 980 1
727 1031 -1
728 672 -1
728 673 -0.25
728 677 -0.75
728 679 -1
728 688 1
728 723 1
728 724 -0.250000000000001
728 728 2.5
728 730 1
728 739 -1
728 779 -0.75
728 978 1
728 979 -0.25
728 1029 -1
728 1030 -0.250000000000001
729 716 -1
729 718 -1
729 720 -1
729 725 1
729 727 1
729 729 2
729 738 -1
729 769 1
729 778 -1
729 1022 1
729 1031 -1
730 714 -1
730 716 -0.25
730 719 -1
730 721 -0.75
730 723 1
730 725 -0.25
730 728 1
730 730 2.5
730 739 -0.75
730 770 1
730 779 -1
730 1020 1
730 1022 -0.25
730 1029 -1
730 1031 -0.25
731 715 -1
731 717 -1
731 718 -0.250000000000001
731 722 -0.75
731 724 1
731 726 1
731 727 -0.250000000000001
731 731 2.5
731 740 -0.75
731 768 1
731 769 -0.25
731 777 -1
731 778 -0.25
731 1021 1
731 1030 -1
732 426 -1
732 431 -1
732 433 -1
732 442 1
732 482 1
732 732 2
732 737 1
732 739 1
732 748 -1
732 788 -1
732 1038 -1
733 427 -0.75
733 429 -1
733 431 -0.250000000000001
733 434 -1
733 443 1
733 480 1
733 482 -0.25
733 733 2.5
733 735 1
733 737 -0.250000000000001
733 740 1
733 749 -1
733 786 -1
733 788 -0.25
733 1039 -0.75
734 428 -0.75
734 430 -1
734 432 -1
734 433 -0.25
734 441 1
734 442 -0.25
734 481 1
734 734 2.5
734 736 1
734 738 1
734 739 -0.25
734 747 -1
734 748 -0.25
734 787 -1
734 1040 -0.75
735 682 -1
735 684 -1
735 689 -1
735 698 1
735 733 1
735 735 2
735 740 1
735 749 -1
735 786 -1
735 988 1
735 1039 -1
736 683 -1
736 685 -0.75
736 687 -1
736 689 -0.25
736 696 1
736 698 -0.25
736 734 1
736 736 2.5
736 738 1
736 740 -0.250000000000001
736 747 -1
736 749 -0.250000000000001
736 787 -0.75
736 989 1
736 1040 -1
737 681 -1
737 682 -0.25
737 686 -0.75
737 688 -1
737 697 1
737 732 1
737 733 -0.250000000000001
737 737 2.5
737 739 1
737 748 -1
737 788 -0.75
737 987 1
737 988 -0.25
737 1038 -1
737 1039 -0.250000000000001
738 725 -1
738 727 -1
738 729 -1
738 734 1
738 736 1
738 738 2
738 747 -1
738 778 1
738 787 -1
738 1031 1
738 1040 -1
739 723 -1
739 725 -0.25
739 728 -1
739 730 -0.75
739 732 1
739 734 -0.25
739 737 1
739 739 2.5
739 748 -0.75
739 779 1
739 788 -1
739 1029 1
739 1031 -0.25
739 1038 -1
739 1040 -0.25
740 724 -1
740 726 -1
740 727 -0.250000000000001
740 731 -0.75
740 733 1
740 735 1
740 736 -0.250000000000001
740 740 2.5
740 749 -0.75
740 777 1
740 778 -0.25
740 786 -1
740 787 -0.25
740 1030 1
740 1039 -1
741 435 -1
741 440 -1
741 442 -1
741 451 1
741 491 1
741 741 2
741 746 1
741 748 1
741 757 -1
741 797 -1
741 1047 -1
742 436 -0.75
742 438 -1
742 440 -0.250000000000001
742 443 -1
742 452 1
742 489 1
742 491 -0.25
742 742 2.5
742 744 1
742 746 -0.250000000000001
742 749 1
742 758 -1
742 795 -1
742 797 -0.25
742 1048 -0.75
743 437 -0.75
743 439 -1
743 441 -1
743 442 -0.25
743 450 1
743 451 -0.25
743 490 1
743 743 2.5
743 745 1
743 747 1
743 748 -0.25
743 756 -1
743 757 -0.25
743 796 -1
743 1049 -0.75
744 691 -1
744 693 -1
744 698 -1
744 707 1
744 742 1
744 744 2
744 749 1
744 758 -1
744 795 -1
744 997 1
744 1048 -1
745 692 -1
745 694 -0.75
745 696 -1
745 698 -0.25
745 705 1
745 707 -0.25
745 743 1
745 745 2.5
745 747 1
745 749 -0.250000000000001
745 756 -1
745 758 -0.250000000000001
745 796 -0.75
745 998 1
745 1049 -1
746 690 -1
746 691 -0.25
746 695 -0.75
746 697 -1
746 706 1
746 741 1
746 742 -0.250000000000001
746 746 2.5
746 748 1
746 757 -1
746 797 -0.75
746 996 1
746 997 -0.25
746 1047 -1
746 1048 -0.250000000000001
747 734 -1
747 736 -1
747 738 -1
747 743 1
747 745 1
747 747 2
747 756 -1
747 787 1
747 796 -1
747 1040 1
747 1049 -1
748 732 -1
748 734 -0.25
748 737 -1
748 739 -0.75
748 741 1
748 743 -0.25
748 746 1
748 748 2.5
748 757 -0.75
748 788 1
748 797 -1
748 1038 1
748 1040 -0.25
748 1047 -1
748 1049 -0.25
749 733 -1
749 735 -1
749 736 -0.250000000000001
749 740 -0.75
749 742 1
749 744 1
749 745 -0.250000000000001
749 749 2.5
749 758 -0.75
749 786 1
749 787 -0.25
749 795 -1
749 796 -0.25
749 1039 1
749 1048 -1
750 444 -1
750 449 -1
750 451 -1
750 500 1
750 750 2
750 755 1
750 757 1
750 806 -1
750 1056 -1
751 445 -0.75
751 447 -1
751 449 -0.250000000000001
751 452 -1
751 498 1
751 500 -0.25
751 751 2.5
751 753 1
751 755 -0.250000000000001
751 758 1
751 804 -1
751 806 -0.25
751 1057 -0.75
752 446 -0.75
752 448 -1
752 450 -1
752 451 -0.25
752 499 1
752 752 2.5
752 754 1
752 756 1
752 757 -0.25
752 805 -1
752 1058 -0.75
753 700 -1
753 702 -1
753 707 -1
753 751 1
753 753 2
753 758 1
753 804 -1
753 1006 1
753 1057 -1
754 701 -1
754 703 -0.75
754 705 -1
754 707 -0.25
754 752 1
754 754 2.5
754 756 1
754 758 -0.250000000000001
754 805 -0.75
754 1007 1
754 1058 -1
755 699 -1
755 700 -0.25
755 704 -0.75
755 706 -1
755 750 1
755 751 -0.250000000000001
755 755 2.5
755 757 1
755 806 -0.75
755 1005 1
755 1006 -0.25
755 1056 -1
755 1057 -0.250000000000001
756 743 -1
756 745 -1
756 747 -1
756 752 1
756 754 1
756 756 2
756 796 1
756 805 -1
756 1049 1
756 1058 -1
757 741 -1
757 743 -0.25
757 746 -1
757 748 -0.75
757 750 1
757 752 -0.25
757 755 1
757 757 2.5
757 797 1
757 806 -1
757 1047 1
757 1049 -0.25
757 1056 -1
757 1058 -0.25
758 742 -1
758 744 -1
758 745 -0.250000000000001
758 749 -0.75
758 751 1
758 753 1
758 754 -0.250000000000001
758 758 2.5
758 795 1
758 796 -0.25
758 804 -1
758 805 -0.25
758 1048 1
758 1057 -1
759 453 -1
759 458 -1
759 466 1
759 759 2
759 764 1
759 772 -1
759 1065 -1
760 454 -0.75
760 456 -1
760 458 -0.25
760 467 1
760 760 2.5
760 762 1
760 764 -0.25
760 773 -1
760 1066 -0.75
761 455 -0.75
761 457 -1
761 465 1
761 466 -0.25
761 761 2.5
761 763 1
761 771 -1
761 772 -0.25
761 1067 -0.75
762 709 -1
762 711 -1
762 722 1
762 760 1
762 762 2
762 773 -1
762 1015 1
762 1066 -1
763 710 -1
763 712 -0.75
763 720 1
763 722 -0.25
763 761 1
763 763 2.5
763 771 -1
763 773 -0.25
763 1016 1
763 1067 -1
764 708 -1
764 709 -0.25
764 713 -0.75
764 721 1
764 759 1
764 760 -0.25
764 764 2.5
764 772 -1
764 1014 1
764 1015 -0.25
764 1065 -1
764 1066 -0.25
765 459 -1
765 464 -1
765 466 -1
765 475 1
765 765 2
765 770 1
765 772 1
765 781 -1
765 1071 -1
766 460 -0.75
766 462 -1
766 464 -0.25
766 467 -1
766 476 1
766 766 2.5
766 768 1
766 770 -0.25
766 773 1
766 782 -1
766 1072 -0.75
767 461 -0.75
767 463 -1
767 465 -1
767 466 -0.25
767 474 1
767 475 -0.25
767 767 2.5
767 769 1
767 771 1
767 772 -0.25
767 780 -1
767 781 -0.25
767 1073 -0.75
768 715 -1
768 717 -1
768 722 -1
768 731 1
768 766 1
768 768 2
768 773 1
768 782 -1
768 1021 1
768 1072 -1
769 716 -1
769 718 -0.75
769 720 -1
769 722 -0.25
769 729 1
769 731 -0.25
769 767 1
769 769 2.5
769 771 1
769 773 -0.25
769 780 -1
769 782 -0.25
769 1022 1
769 1073 -1
770 714 -1
770 715 -0.25
770 719 -0.75
770 721 -1
770 730 1
770 765 1
770 766 -0.25
770 770 2.5
770 772 1
770 781 -1
770 1020 1
770 1021 -0.25
770 1071 -1
770 1072 -0.25
771 761 -1
771 763 -1
771 767 1
771 769 1
771 771 2
771 780 -1
771 1067 1
771 1073 -1
772 759 -1
772 761 -0.25
772 764 -1
772 765 1
772 767 -0.25
772 770 1
772 772 2.5
772 781 -0.75
772 1065 1
772 1067 -0.25
772 1071 -1
772 1073 -0.25
773 760 -1
773 762 -1
773 763 -0.25
773 766 1
773 768 1
773 769 -0.25
773 773 2.5
773 782 -0.75
773 1066 1
773 1072 -1
774 468 -1
774 473 -1
774 475 -1
774 484 1
774 774 2
774 779 1
774 781 1
774 790 -1
774 1080 -1
775 469 -0.75
775 471 -1
775 473 -0.25
775 476 -1
775 485 1
775 775 2.5
775 777 1
775 779 -0.25
775 782 1
775 791 -1
775 1081 -0.75
776 470 -0.75
776 472 -1
776 474 -1
776 475 -0.25
776 483 1
776 484 -0.25
776 776 2.5
776 778 1
776 780 1
776 781 -0.25
776 789 -1
776 790 -0.25
776 1082 -0.75
777 724 -1
777 726 -1
777 731 -1
777 740 1
777 775 1
777 777 2
777 782 1
777 791 -1
777 1030 1
777 1081 -1
778 725 -1
778 727 -0.75
778 729 -1
778 731 -0.25
778 738 1
778 740 -0.25
778 776 1
778 778 2.5
778 780 1
778 782 -0.25
778 789 -1
778 791 -0.25
778 1031 1
778 1082 -1
779 723 -1
779 724 -0.25
779 728 -0.75
779 730 -1
779 739 1
779 774 1
779 775 -0.25
779 779 2.5
779 781 1
779 790 -1
779 1029 1
779 1030 -0.25
779 1080 -1
779 1081 -0.25
780 767 -1
780 769 -1
780 771 -1
780 776 1
780 778 1
780 780 2
780 789 -1
780 1073 1
780 1082 -1
781 765 -1
781 767 -0.25
781 770 -1
781 772 -0.75
781 774 1
781 776 -0.25
781 779 1
781 781 2.5
781 790 -0.75
781 1071 1
781 1073 -0.25
781 1080 -1
781 1082 -0.25
782 766 -1
782 768 -1
782 769 -0.25
782 773 -0.75
782 775 1
782 777 1
782 778 -0.25
782 782 2.5
782 791 -0.75
782 1072 1
782 1081 -1
783 477 -1
783 482 -1
783 484 -1
783 493 1
783 783 2
783 788 1
783 790 1
783 799 -1
783 1089 -1
784 478 -0.75
784 480 -1
784 482 -0.25
784 485 -1
784 494 1
784 784 2.5
784 786 1
784 788 -0.25
784 791 1
784 800 -1
784 1090 -0.75
785 479 -0.75
785 481 -1
785 483 -1
785 484 -0.25
785 492 1
785 493 -0.25
785 785 2.5
785 787 1
785 789 1
785 790 -0.25
785 798 -1
785 799 -0.25
785 1091 -0.75
786 733 -1
786 735 -1
786 740 -1
786 749 1
786 784 1
786 786 2
786 791 1
786 800 -1
786 1039 1
786 1090 -1
787 734 -1
787 736 -0.75
787 738 -1
787 740 -0.25
787 747 1
787 749 -0.25
787 785 1
787 787 2.5
787 789 1
787 791 -0.25
787 798 -1
787 800 -0.25
787 1040 1
787 1091 -1
788 732 -1
788 733 -0.25
788 737 -0.75
788 739 -1
788 748 1
788 783 1
788 784 -0.25
788 788 2.5
788 790 1
788 799 -1
788 1038 1
788 1039 -0.25
788 1089 -1
788 1090 -0.25
789 776 -1
789 778 -1
789 780 -1
789 785 1
789 787 1
789 789 2
789 798 -1
789 1082 1
789 1091 -1
790 774 -1
790 776 -0.25
790 779 -1
790 781 -0.75
790 783 1
790 785 -0.25
790 788 1
790 790 2.5
790 799 -0.75
790 1080 1
790 1082 -0.25
790 1089 -1
790 1091 -0.25
791 775 -1
791 777 -1
791 778 -0.25
791 782 -0.75
791 784 1
791 786 1
791 787 -0.25
791 791 2.5
791 800 -0.75
791 1081 1
791 1090 -1
792 486 -1
792 491 -1
792 493 -1
792 502 1
792 792 2
792 797 1
792 799 1
792 808 -1
792 1098 -1
793 487 -0.75
793 489 -1
793 491 -0.25
793 494 -1
793 503 1
793 793 2.5
793 795 1
793 797 -0.25
793 800 1
793 809 -1
793 1099 -0.75
794 488 -0.75
794 490 -1
794 492 -1
794 493 -0.25
794 501 1
794 502 -0.25
794 794 2.5
794 796 1
794 798 1
794 799 -0.25
794 807 -1
794 808 -0.25
794 1100 -0.75
795 742 -1
795 744 -1
795 749 -1
795 758 1
795 793 1
795 795 2
795 800 1
795 809 -1
795 1048 1
795 1099 -1
796 743 -1
796 745 -0.75
796 747 -1
796 749 -0.25
796 756 1
796 758 -0.25
796 794 1
796 796 2.5
796 798 1
796 800 -0.25
796 807 -1
796 809 -0.25
796 1049 1
796 1100 -1
797 741 -1
797 742 -0.25
797 746 -0.75
797 748 -1
797 757 1
797 792 1
797 793 -0.25
797 797 2.5
797 799 1
797 808 -1
797 1047 1
797 1048 -0.25
797 1098 -1
797 1099 -0.25
798 785 -1
798 787 -1
798 789 -1
798 794 1
798 796 1
798 798 2
798 807 -1
798 1091 1
798 1100 -1
799 783 -1
799 785 -0.25
799 788 -1
799 790 -0.75
799 792 1
799 794 -0.25
799 797 1
799 799 2.5
799 808 -0.75
799 1089 1
799 1091 -0.25
799 1098 -1
799 1100 -0.25
800 784 -1
800 786 -1
800 787 -0.25
800 791 -0.75
800 793 1
800 795 1
800 796 -0.25
800 800 2.5
800 809 -0.75
800 1090 1
800 1099 -1
801 495 -1
801 500 -1
801 502 -1
801 801 2
801 806 1
801 808 1
801 1107 -1
802 496 -0.75
802 498 -1
802 500 -0.25
802 503 -1
802 802 2.5
802 804 1
802 806 -0.25
802 809 1
802 1108 -0.75
803 497 -0.75
803 499 -1
803 501 -1
803 502 -0.25
803 803 2.5
803 805 1
803 807 1
803 808 -0.25
803 1109 -0.75
804 751 -1
804 753 -1
804 758 -1
804 802 1
804 804 2
804 809 1
804 1057 1
804 1108 -1
805 752 -1
805 754 -0.75
805 756 -1
805 758 -0.25
805 803 1
805 805 2.5
805 807 1
805 809 -0.25
805 1058 1
805 1109 -1
806 750 -1
806 751 -0.25
806 755 -0.75
806 757 -1
806 801 1
806 802 -0.25
806 806 2.5
806 808 1
806 1056 1
806 1057 -0.25
806 1107 -1
806 1108 -0.25
807 794 -1
807 796 -1
807 798 -1
807 803 1
807 805 1
807 807 2
807 1100 1
807 1109 -1
808 792 -1
808 794 -0.25
808 797 -1
808 799 -0.75
808 801 1
808 803 -0.25
808 806 1
808 808 2.5
808 1098 1
808 1100 -0.25
808 1107 -1
808 1109 -0.25
809 793 -1
809 795 -1
809 796 -0.25
809 800 -0.75
809 802 1
809 804 1
809 805 -0.25
809 809 2.5
809 1099 1
809 1108 -1
810 810 1
810 814 1
810 824 -1
810 864 -1
810 1120 -1
811 811 1.25
811 815 1
811 822 -1
811 824 -0.25
811 865 -0.75
811 1121 -1
812 812 1.25
812 813 1
812 814 -0.25
812 823 -1
812 866 -0.75
812 1119 -1
812 1120 -0.25
813 506 -1
813 507 -1
813 517 1
813 560 1
813 812 1
813 813 2
813 823 -1
813 866 -1
813 1119 -1
814 504 -1
814 506 -0.25
814 508 -0.75
814 518 1
814 558 1
814 560 -0.25
814 810 1
814 812 -0.25
814 814 2.5
814 824 -1
814 864 -1
814 866 -0.25
814 1120 -0.75
815 505 -1
815 509 -0.75
815 516 1
815 517 -0.25
815 559 1
815 811 1
815 815 2.5
815 822 -1
815 823 -0.25
815 865 -1
815 1121 -0.75
816 816 1
816 820 1
816 824 1
816 833 -1
816 870 -1
816 1126 -1
817 817 1.25
817 821 1
817 822 1
817 824 -0.25
817 831 -1
817 833 -0.25
817 871 -0.75
817 1127 -1
818 818 1.25
818 819 1
818 820 -0.25
818 823 1
818 832 -1
818 872 -0.75
818 1125 -1
818 1126 -0.25
819 512 -1
819 513 -1
819 517 -1
819 526 1
819 566 1
819 818 1
819 819 2
819 823 1
819 832 -1
819 872 -1
819 1125 -1
820 510 -1
820 512 -0.25
820 514 -0.75
820 518 -1
820 527 1
820 564 1
820 566 -0.25
820 816 1
820 818 -0.25
820 820 2.5
820 824 1
820 833 -1
820 870 -1
820 872 -0.25
820 1126 -0.75
821 511 -1
821 515 -0.75
821 516 -1
821 517 -0.25
821 525 1
821 526 -0.25
821 565 1
821 817 1
821 821 2.5
821 822 1
821 823 -0.25
821 831 -1
821 832 -0.25
821 871 -1
821 1127 -0.75
822 811 -1
822 815 -1
822 817 1
822 821 1
822 822 2
822 831 -1
822 865 1
822 871 -1
822 1121 1
822 1127 -1
823 812 -1
823 813 -1
823 815 -0.25
823 818 1
823 819 1
823 821 -0.25
823 823 2.5
823 832 -0.75
823 866 1
823 872 -1
823 1119 1
823 1121 -0.25
823 1125 -1
823 1127 -0.25
824 810 -1
824 811 -0.25
824 814 -1
824 816 1
824 817 -0.25
824 820 1
824 824 2.5
824 833 -0.75
824 864 1
824 865 -0.25
824 870 -1
824 871 -0.25
824 1120 1
824 1126 -1
825 825 1
825 829 1
825 833 1
825 842 -1
825 879 -1
825 1135 -1
826 826 1.25
826 830 1
826 831 1
826 833 -0.25
826 840 -1
826 842 -0.25
826 880 -0.75
826 1136 -1
827 827 1.25
827 828 1
827 829 -0.25
827 832 1
827 841 -1
827 881 -0.75
827 1134 -1
827 1135 -0.25
828 521 -1
828 522 -1
828 526 -1
828 535 1
828 575 1
828 827 1
828 828 2
828 832 1
828 841 -1
828 881 -1
828 1134 -1
829 519 -1
829 521 -0.25
829 523 -0.75
829 527 -1
829 536 1
829 573 1
829 575 -0.25
829 825 1
829 827 -0.25
829 829 2.5
829 833 1
829 842 -1
829 879 -1
829 881 -0.25
829 1135 -0.75
830 520 -1
830 524 -0.75
830 525 -1
830 526 -0.25
830 534 1
830 535 -0.25
830 574 1
830 826 1
830 830 2.5
830 831 1
830 832 -0.25
830 840 -1
830 841 -0.25
830 880 -1
830 1136 -0.75
831 817 -1
831 821 -1
831 822 -1
831 826 1
831 830 1
831 831 2
831 840 -1
831 871 1
831 880 -1
831 1127 1
831 1136 -1
832 818 -1
832 819 -1
832 821 -0.25
832 823 -0.75
832 827 1
832 828 1
832 830 -0.25
832 832 2.5
832 841 -0.75
832 872 1
832 881 -1
832 1125 1
832 1127 -0.25
832 1134 -1
832 1136 -0.25
833 816 -1
833 817 -0.25
833 820 -1
833 824 -0.75
833 825 1
833 826 -0.25
833 829 1
833 833 2.5
833 842 -0.75
833 870 1
833 871 -0.25
833 879 -1
833 880 -0.25
833 1126 1
833 1135 -1
834 834 1
834 838 1
834 842 1
834 851 -1
834 888 -1
834 1144 -1
835 835 1.25
835 839 1
835 840 1
835 842 -0.25
835 849 -1
835 851 -0.25
835 889 -0.75
835 1145 -1
836 836 1.25
836 837 1
836 838 -0.25
836 841 1
836 850 -1
836 890 -0.75
836 1143 -1
836 1144 -0.25
837 530 -1
837 531 -1
837 535 -1
837 544 1
837 584 1
837 836 1
837 837 2
837 841 1
837 850 -1
837 890 -1
837 1143 -1
838 528 -1
838 530 -0.25
838 532 -0.75
838 536 -1
838 545 1
838 582 1
838 584 -0.25
838 834 1
838 836 -0.25
838 838 2.5
838 842 1
838 851 -1
838 888 -1
838 890 -0.25
838 1144 -0.75
839 529 -1
839 533 -0.75
839 534 -1
839 535 -0.25
839 543 1
839 544 -0.25
839 583 1
839 835 1
839 839 2.5
839 840 1
839 841 -0.25
839 849 -1
839 850 -0.25
839 889 -1
839 1145 -0.75
840 826 -1
840 830 -1
840 831 -1
840 835 1
840 839 1
840 840 2
840 849 -1
840 880 1
840 889 -1
840 1136 1
840 1145 -1
841 827 -1
841 828 -1
841 830 -0.25
841 832 -0.75
841 836 1
841 837 1
841 839 -0.25
841 841 2.5
841 850 -0.75
841 881 1
841 890 -1
841 1134 1
841 1136 -0.25
841 1143 -1
841 1145 -0.25
842 825 -1
842 826 -0.25
842 829 -1
842 833 -0.75
842 834 1
842 835 -0.25
842 838 1
842 842 2.5
842 851 -0.75
842 879 1
842 880 -0.25
842 888 -1
842 889 -0.25
842 1135 1
842 1144 -1
843 843 1
843 847 1
843 851 1
843 860 -1
843 897 -1
843 1153 -1
844 844 1.25
844 848 1
844 849 1
844 851 -0.25
844 858 -1
844 860 -0.25
844 898 -0.75
844 1154 -1
845 845 1.25
845 846 1
845 847 -0.25
845 850 1
845 859 -1
845 899 -0.75
845 1152 -1
845 1153 -0.25
846 539 -1
846 540 -1
846 544 -1
846 553 1
846 593 1
846 845 1
846 846 2
846 850 1
846 859 -1
846 899 -1
846 1152 -1
847 537 -1
847 539 -0.25
847 541 -0.75
847 545 -1
847 554 1
847 591 1
847 593 -0.25
847 843 1
847 845 -0.25
847 847 2.5
847 851 1
847 860 -1
847 897 -1
847 899 -0.25
847 1153 -0.75
848 538 -1
848 542 -0.75
848 543 -1
848 544 -0.25
848 552 1
848 553 -0.25
848 592 1
848 844 1
848 848 2.5
848 849 1
848 850 -0.25
848 858 -1
848 859 -0.25
848 898 -1
848 1154 -0.75
849 835 -1
849 839 -1
849 840 -1
849 844 1
849 848 1
849 849 2
849 858 -1
849 889 1
849 898 -1
849 1145 1
849 1154 -1
850 836 -1
850 837 -1
850 839 -0.25
850 841 -0.75
850 845 1
850 846 1
850 848 -0.25
850 850 2.5
850 859 -0.75
850 890 1
850 899 -1
850 1143 1
850 1145 -0.25
850 1152 -1
850 1154 -0.25
851 834 -1
851 835 -0.25
851 838 -1
851 842 -0.75
851 843 1
851 844 -0.25
851 847 1
851 851 2.5
851 860 -0.75
851 888 1
851 889 -0.25
851 897 -1
851 898 -0.25
851 1144 1
851 1153 -1
852 852 1
852 856 1
852 860 1
852 906 -1
852 1162 -1
853 853 1.25
853 857 1
853 858 1
853 860 -0.25
853 907 -0.75
853 1163 -1
854 854 1.25
854 855 1
854 856 -0.25
854 859 1
854 908 -0.75
854 1161 -1
854 1162 -0.25
855 548 -1
855 549 -1
855 553 -1
855 602 1
855 854 1
855 855 2
855 859 1
855 908 -1
855 1161 -1
856 546 -1
856 548 -0.25
856 550 -0.75
856 554 -1
856 600 1
856 602 -0.25
856 852 1
856 854 -0.25
856 856 2.5
856 860 1
856 906 -1
856 908 -0.25
856 1162 -0.75
857 547 -1
857 551 -0.75
857 552 -1
857 553 -0.25
857 601 1
857 853 1
857 857 2.5
857 858 1
857 859 -0.25
857 907 -1
857 1163 -0.75
858 844 -1
858 848 -1
858 849 -1
858 853 1
858 857 1
858 858 2
858 898 1
858 907 -1
858 1154 1
858 1163 -1
859 845 -1
859 846 -1
859 848 -0.25
859 850 -0.75
859 854 1
859 855 1
859 857 -0.25
859 859 2.5
859 899 1
859 908 -1
859 1152 1
859 1154 -0.25
859 1161 -1
859 1163 -0.25
860 843 -1
860 844 -0.25
860 847 -1
860 851 -0.75
860 852 1
860 853 -0.25
860 856 1
860 860 2.5
860 897 1
860 898 -0.25
860 906 -1
860 907 -0.25
860 1153 1
860 1162 -1
861 555 -1
861 560 -1
861 568 1
861 611 1
861 861 2
861 866 1
861 874 -1
861 917 -1
861 1167 -1
862 556 -0.75
862 558 -1
862 560 -0.25
862 569 1
862 609 1
862 611 -0.25
862 862 2.5
862 864 1
862 866 -0.25
862 875 -1
862 915 -1
862 917 -0.25
862 1168 -0.75
863 557 -0.75
863 559 -1
863 567 1
863 568 -0.25
863 610 1
863 863 2.5
863 865 1
863 873 -1
863 874 -0.25
863 916 -1
863 1169 -0.75
864 810 -1
864 814 -1
864 824 1
864 862 1
864 864 2
864 875 -1
864 915 -1
864 1120 1
864 1168 -1
865 811 -0.75
865 815 -1
865 822 1
865 824 -0.25
865 863 1
865 865 2.5
865 873 -1
865 875 -0.25
865 916 -0.75
865 1121 1
865 1169 -1
866 812 -0.75
866 813 -1
866 814 -0.25
866 823 1
866 861 1
866 862 -0.25
866 866 2.5
866 874 -1
866 917 -0.75
866 1119 1
866 1120 -0.25
866 1167 -1
866 1168 -0.25
867 561 -1
867 566 -1
867 568 -1
867 577 1
867 617 1
867 867 2
867 872 1
867 874 1
867 883 -1
867 923 -1
867 1173 -1
868 562 -0.75
868 564 -1
868 566 -0.25
868 569 -1
868 578 1
868 615 1
868 617 -0.25
868 868 2.5
868 870 1
868 872 -0.25
868 875 1
868 884 -1
868 921 -1
868 923 -0.25
868 1174 -0.75
869 563 -0.75
869 565 -1
869 567 -1
869 568 -0.25
869 576 1
869 577 -0.25
869 616 1
869 869 2.5
869 871 1
869 873 1
869 874 -0.25
869 882 -1
869 883 -0.25
869 922 -1
869 1175 -0.75
870 816 -1
870 820 -1
870 824 -1
870 833 1
870 868 1
870 870 2
870 875 1
870 884 -1
870 921 -1
870 1126 1
870 1174 -1
871 817 -0.75
871 821 -1
871 822 -1
871 824 -0.25
871 831 1
871 833 -0.25
871 869 1
871 871 2.5
871 873 1
871 875 -0.25
871 882 -1
871 884 -0.25
871 922 -0.75
871 1127 1
871 1175 -1
872 818 -0.75
872 819 -1
872 820 -0.25
872 823 -1
872 832 1
872 867 1
872 868 -0.25
872 872 2.5
872 874 1
872 883 -1
872 923 -0.75
872 1125 1
872 1126 -0.25
872 1173 -1
872 1174 -0.25
873 863 -1
873 865 -1
873 869 1
873 871 1
873 873 2
873 882 -1
873 916 1
873 922 -1
873 1169 1
873 1175 -1
874 861 -1
874 863 -0.25
874 866 -1
874 867 1
874 869 -0.25
874 872 1
874 874 2.5
874 883 -0.75
874 917 1
874 923 -1
874 1167 1
874 1169 -0.25
874 1173 -1
874 1175 -0.25
875 862 -1
875 864 -1
875 865 -0.25
875 868 1
875 870 1
875 871 -0.25
875 875 2.5
875 884 -0.75
875 915 1
875 916 -0.25
875 921 -1
875 922 -0.25
875 1168 1
875 1174 -1
876 570 -1
876 575 -1
876 577 -1
876 586 1
876 626 1
876 876 2
876 881 1
876 883 1
876 892 -1
876 932 -1
876 1182 -1
877 571 -0.75
877 573 -1
877 575 -0.25
877 578 -1
877 587 1
877 624 1
877 626 -0.25
877 877 2.5
877 879 1
877 881 -0.25
877 884 1
877 893 -1
877 930 -1
877 932 -0.25
877 1183 -0.75
878 572 -0.75
878 574 -1
878 576 -1
878 577 -0.25
878 585 1
878 586 -0.25
878 625 1
878 878 2.5
878 880 1
878 882 1
878 883 -0.25
878 891 -1
878 892 -0.25
878 931 -1
878 1184 -0.75
879 825 -1
879 829 -1
879 833 -1
879 842 1
879 877 1
879 879 2
879 884 1
879 893 -1
879 930 -1
879 1135 1
879 1183 -1
880 826 -0.75
880 830 -1
880 831 -1
880 833 -0.25
880 840 1
880 842 -0.25
880 878 1
880 880 2.5
880 882 1
880 884 -0.25
880 891 -1
880 893 -0.25
880 931 -0.75
880 1136 1
880 1184 -1
881 827 -0.75
881 828 -1
881 829 -0.25
881 832 -1
881 841 1
881 876 1
881 877 -0.25
881 881 2.5
881 883 1
881 892 -1
881 932 -0.75
881 1134 1
881 1135 -0.25
881 1182 -1
881 1183 -0.25
882 869 -1
882 871 -1
882 873 -1
882 878 1
882 880 1
882 882 2
882 891 -1
882 922 1
882 931 -1
882 1175 1
882 1184 -1
883 867 -1
883 869 -0.25
883 872 -1
883 874 -0.75
883 876 1
883 878 -0.25
883 881 1
883 883 2.5
883 892 -0.75
883 923 1
883 932 -1
883 1173 1
883 1175 -0.25
883 1182 -1
883 1184 -0.25
884 868 -1
884 870 -1
884 871 -0.25
884 875 -0.75
884 877 1
884 879 1
884 880 -0.25
884 884 2.5
884 893 -0.75
884 921 1
884 922 -0.25
884 930 -1
884 931 -0.25
884 1174 1
884 1183 -1
885 579 -1
885 584 -1
885 586 -1
885 595 1
885 635 1
885 885 2
885 890 1
885 892 1
885 901 -1
885 941 -1
885 1191 -1
886 580 -0.75
886 582 -1
886 584 -0.25
886 587 -1
886 596 1
886 633 1
886 635 -0.25
886 886 2.5
886 888 1
886 890 -0.25
886 893 1
886 902 -1
886 939 -1
886 941 -0.25
886 1192 -0.75
887 581 -0.75
887 583 -1
887 585 -1
887 586 -0.25
887 594 1
887 595 -0.25
887 634 1
887 887 2.5
887 889 1
887 891 1
887 892 -0.25
887 900 -1
887 901 -0.25
887 940 -1
887 1193 -0.75
888 834 -1
888 838 -1
888 842 -1
888 851 1
888 886 1
888 888 2
888 893 1
888 902 -1
888 939 -1
888 1144 1
888 1192 -1
889 835 -0.75
889 839 -1
889 840 -1
889 842 -0.25
889 849 1
889 851 -0.25
889 887 1
889 889 2.5
889 891 1
889 893 -0.25
889 900 -1
889 902 -0.25
889 940 -0.75
889 1145 1
889 1193 -1
890 836 -0.75
890 837 -1
890 838 -0.25
890 841 -1
890 850 1
890 885 1
890 886 -0.25
890 890 2.5
890 892 1
890 901 -1
890 941 -0.75
890 1143 1
890 1144 -0.25
890 1191 -1
890 1192 -0.25
891 878 -1
891 880 -1
891 882 -1
891 887 1
891 889 1
891 891 2
891 900 -1
891 931 1
891 940 -1
891 1184 1
891 1193 -1
892 876 -1
892 878 -0.25
892 881 -1
892 883 -0.75
892 885 1
892 887 -0.25
892 890 1
892 892 2.5
892 901 -0.75
892 932 1
892 941 -1
892 1182 1
892 1184 -0.25
892 1191 -1
892 1193 -0.25
893 877 -1
893 879 -1
893 880 -0.25
893 884 -0.75
893 886 1
893 888 1
893 889 -0.25
893 893 2.5
893 902 -0.75
893 930 1
893 931 -0.25
893 939 -1
893 940 -0.25
893 1183 1
893 1192 -1
894 588 -1
894 593 -1
894 595 -1
894 604 1
894 644 1
894 894 2
894 899 1
894 901 1
894 910 -1
894 950 -1
894 1200 -1
895 589 -0.75
895 591 -1
895 593 -0.25
895 596 -1
895 605 1
895 642 1
895 644 -0.25
895 895 2.5
895 897 1
895 899 -0.25
895 902 1
895 911 -1
895 948 -1
895 950 -0.25
895 1201 -0.75
896 590 -0.75
896 592 -1
896 594 -1
896 595 -0.25
896 603 1
896 604 -0.25
896 643 1
896 896 2.5
896 898 1
896 900 1
896 901 -0.25
896 909 -1
896 910 -0.25
896 949 -1
896 1202 -0.75
897 843 -1
897 847 -1
897 851 -1
897 860 1
897 895 1
897 897 2
897 902 1
897 911 -1
897 948 -1
897 1153 1
897 1201 -1
898 844 -0.75
898 848 -1
898 849 -1
898 851 -0.25
898 858 1
898 860 -0.25
898 896 1
898 898 2.5
898 900 1
898 902 -0.25
898 909 -1
898 911 -0.25
898 949 -0.75
898 1154 1
898 1202 -1
899 845 -0.75
899 846 -1
899 847 -0.25
899 850 -1
899 859 1
899 894 1
899 895 -0.25
899 899 2.5
899 901 1
899 910 -1
899 950 -0.75
899 1152 1
899 1153 -0.25
899 1200 -1
899 1201 -0.25
900 887 -1
900 889 -1
900 891 -1
900 896 1
900 898 1
900 900 2
900 909 -1
900 940 1
900 949 -1
900 1193 1
900 1202 -1
901 885 -1
901 887 -0.25
901 890 -1
901 892 -0.75
901 894 1
901 896 -0.25
901 899 1
901 901 2.5
901 910 -0.75
901 941 1
901 950 -1
901 1191 1
901 1193 -0.25
901 1200 -1
901 1202 -0.25
902 886 -1
902 888 -1
902 889 -0.25
902 893 -0.75
902 895 1
902 897 1
902 898 -0.25
902 902 2.5
902 911 -0.75
902 939 1
902 940 -0.25
902 948 -1
902 949 -0.25
902 1192 1
902 1201 -1
903 597 -1
903 602 -1
903 604 -1
903 653 1
903 903 2
903 908 1
903 910 1
903 959 -1
903 1209 -1
904 598 -0.75
904 600 -1
904 602 -0.25
904 605 -1
904 651 1
904 653 -0.25
904 904 2.5
904 906 1
904 908 -0.25
904 911 1
904 957 -1
904 959 -0.25
904 1210 -0.75
905 599 -0.75
905 601 -1
905 603 -1
905 604 -0.25
905 652 1
905 905 2.5
905 907 1
905 909 1
905 910 -0.25
905 958 -1
905 1211 -0.75
906 852 -1
906 856 -1
906 860 -1
906 904 1
906 906 2
906 911 1
906 957 -1
906 1162 1
906 1210 -1
907 853 -0.75
907 857 -1
907 858 -1
907 860 -0.25
907 905 1
907 907 2.5
907 909 1
907 911 -0.25
907 958 -0.75
907 1163 1
907 1211 -1
908 854 -0.75
908 855 -1
908 856 -0.25
908 859 -1
908 903 1
908 904 -0.25
908 908 2.5
908 910 1
908 959 -0.75
908 1161 1
908 1162 -0.25
908 1209 -1
908 1210 -0.25
909 896 -1
909 898 -1
909 900 -1
909 905 1
909 907 1
909 909 2
909 949 1
909 958 -1
909 1202 1
909 1211 -1
910 894 -1
910 896 -0.25
910 899 -1
910 901 -0.75
910 903 1
910 905 -0.25
910 908 1
910 910 2.5
910 950 1
910 959 -1
910 1200 1
910 1202 -0.25
910 1209 -1
910 1211 -0.25
911 895 -1
911 897 -1
911 898 -0.25
911 902 -0.75
911 904 1
911 906 1
911 907 -0.25
911 911 2.5
911 948 1
911 949 -0.25
911 957 -1
911 958 -0.25
911 1201 1
911 1210 -1
912 606 -1
912 611 -1
912 619 1
912 662 1
912 912 2
912 917 1
912 925 -1
912 968 -1
912 1218 -1
913 607 -0.75
913 609 -1
913 611 -0.25
913 620 1
913 660 1
913 662 -0.25
913 913 2.5
913 915 1
913 917 -0.25
913 926 -1
913 966 -1
913 968 -0.25
913 1219 -0.75
914 608 -0.75
914 610 -1
914 618 1
914 619 -0.25
914 661 1
914 914 2.5
914 916 1
914 924 -1
914 925 -0.25
914 967 -1
914 1220 -0.75
915 862 -1
915 864 -1
915 875 1
915 913 1
915 915 2
915 926 -1
915 966 -1
915 1168 1
915 1219 -1
916 863 -1
916 865 -0.75
916 873 1
916 875 -0.25
916 914 1
916 916 2.5
916 924 -1
916 926 -0.25
916 967 -0.75
916 1169 1
916 1220 -1
917 861 -1
917 862 -0.25
917 866 -0.75
917 874 1
917 912 1
917 913 -0.25
917 917 2.5
917 925 -1
917 968 -0.75
917 1167 1
917 1168 -0.25
917 1218 -1
917 1219 -0.25
918 612 -1
918 617 -1
918 619 -1
918 628 1
918 668 1
918 918 2
918 923 1
918 925 1
918 934 -1
918 974 -1
918 1224 -1
919 613 -0.75
919 615 -1
919 617 -0.25
919 620 -1
919 629 1
919 666 1
919 668 -0.25
919 919 2.5
919 921 1
919 923 -0.25
919 926 1
919 935 -1
919 972 -1
919 974 -0.25
919 1225 -0.75
920 614 -0.75
920 616 -1
920 618 -1
920 619 -0.25
920 627 1
920 628 -0.25
920 667 1
920 920 2.5
920 922 1
920 924 1
920 925 -0.25
920 933 -1
920 934 -0.25
920 973 -1
920 1226 -0.75
921 868 -1
921 870 -1
921 875 -1
921 884 1
921 919 1
921 921 2
921 926 1
921 935 -1
921 972 -1
921 1174 1
921 1225 -1
922 869 -1
922 871 -0.75
922 873 -1
922 875 -0.25
922 882 1
922 884 -0.25
922 920 1
922 922 2.5
922 924 1
922 926 -0.25
922 933 -1
922 935 -0.25
922 973 -0.75
922 1175 1
922 1226 -1
923 867 -1
923 868 -0.25
923 872 -0.75
923 874 -1
923 883 1
923 918 1
923 919 -0.25
923 923 2.5
923 925 1
923 934 -1
923 974 -0.75
923 1173 1
923 1174 -0.25
923 1224 -1
923 1225 -0.25
924 914 -1
924 916 -1
924 920 1
924 922 1
924 924 2
924 933 -1
924 967 1
924 973 -1
924 1220 1
924 1226 -1
925 912 -1
925 914 -0.25
925 917 -1
925 918 1
925 920 -0.25
925 923 1
925 925 2.5
925 934 -0.75
925 968 1
925 974 -1
925 1218 1
925 1220 -0.25
925 1224 -1
925 1226 -0.25
926 913 -1
926 915 -1
926 916 -0.25
926 919 1
926 921 1
926 922 -0.25
926 926 2.5
926 935 -0.75
926 966 1
926 967 -0.25
926 972 -1
926 973 -0.25
926 1219 1
926 1225 -1
927 621 -1
927 626 -1
927 628 -1
927 637 1
927 677 1
927 927 2
927 932 1
927 934 1
927 943 -1
927 983 -1
927 1233 -1
928 622 -0.75
928 624 -1
928 626 -0.25
928 629 -1
928 638 1
928 675 1
928 677 -0.25
928 928 2.5
928 930 1
928 932 -0.25
928 935 1
928 944 -1
928 981 -1
928 983 -0.25
928 1234 -0.75
929 623 -0.75
929 625 -1
929 627 -1
929 628 -0.25
929 636 1
929 637 -0.25
929 676 1
929 929 2.5
929 931 1
929 933 1
929 934 -0.25
929 942 -1
929 943 -0.25
929 982 -1
929 1235 -0.75
930 877 -1
930 879 -1
930 884 -1
930 893 1
930 928 1
930 930 2
930 935 1
930 944 -1
930 981 -1
930 1183 1
930 1234 -1
931 878 -1
931 880 -0.75
931 882 -1
931 884 -0.25
931 891 1
931 893 -0.25
931 929 1
931 931 2.5
931 933 1
931 935 -0.25
931 942 -1
931 944 -0.25
931 982 -0.75
931 1184 1
931 1235 -1
932 876 -1
932 877 -0.25
932 881 -0.75
932 883 -1
932 892 1
932 927 1
932 928 -0.25
932 932 2.5
932 934 1
932 943 -1
932 983 -0.75
932 1182 1
932 1183 -0.25
932 1233 -1
932 1234 -0.25
933 920 -1
933 922 -1
933 924 -1
933 929 1
933 931 1
933 933 2
933 942 -1
933 973 1
933 982 -1
933 1226 1
933 1235 -1
934 918 -1
934 920 -0.25
934 923 -1
934 925 -0.75
934 927 1
934 929 -0.25
934 932 1
934 934 2.5
934 943 -0.75
934 974 1
934 983 -1
934 1224 1
934 1226 -0.25
934 1233 -1
934 1235 -0.25
935 919 -1
935 921 -1
935 922 -0.25
935 926 -0.75
935 928 1
935 930 1
935 931 -0.25
935 935 2.5
935 944 -0.75
935 972 1
935 973 -0.25
935 981 -1
935 982 -0.25
935 1225 1
935 1234 -1
936 630 -1
936 635 -1
936 637 -1
936 646 1
936 686 1
936 936 2
936 941 1
936 943 1
936 952 -1
936 992 -1
936 1242 -1
937 631 -0.75
937 633 -1
937 635 -0.25
937 638 -1
937 647 1
937 684 1
937 686 -0.25
937 937 2.5
937 939 1
937 941 -0.25
937 944 1
937 953 -1
937 990 -1
937 992 -0.25
937 1243 -0.75
938 632 -0.75
938 634 -1
938 636 -1
938 637 -0.25
938 645 1
938 646 -0.25
938 685 1
938 938 2.5
938 940 1
938 942 1
938 943 -0.25
938 951 -1
938 952 -0.25
938 991 -1
938 1244 -0.75
939 886 -1
939 888 -1
939 893 -1
939 902 1
939 937 1
939 939 2
939 944 1
939 953 -1
939 990 -1
939 1192 1
939 1243 -1
940 887 -1
940 889 -0.75
940 891 -1
940 893 -0.25
940 900 1
940 902 -0.25
940 938 1
940 940 2.5
940 942 1
940 944 -0.25
940 951 -1
940 953 -0.25
940 991 -0.75
940 1193 1
940 1244 -1
941 885 -1
941 886 -0.25
941 890 -0.75
941 892 -1
941 901 1
941 936 1
941 937 -0.25
941 941 2.5
941 943 1
941 952 -1
941 992 -0.75
941 1191 1
941 1192 -0.25
941 1242 -1
941 1243 -0.25
942 929 -1
942 931 -1
942 933 -1
942 938 1
942 940 1
942 942 2
942 951 -1
942 982 1
942 991 -1
942 1235 1
942 1244 -1
943 927 -1
943 929 -0.25
943 932 -1
943 934 -0.75
943 936 1
943 938 -0.25
943 941 1
943 943 2.5
943 952 -0.75
943 983 1
943 992 -1
943 1233 1
943 1235 -0.25
943 1242 -1
943 1244 -0.25
944 928 -1
944 930 -1
944 931 -0.25
944 935 -0.75
944 937 1
944 939 1
944 940 -0.25
944 944 2.5
944 953 -0.75
944 981 1
944 982 -0.25
944 990 -1
944 991 -0.25
944 1234 1
944 1243 -1
945 639 -1
945 644 -1
945 646 -1
945 655 1
945 695 1
945 945 2
945 950 1
945 952 1
945 961 -1
945 1001 -1
945 1251 -1
946 640 -0.75
946 642 -1
946 644 -0.25
946 647 -1
946 656 1
946 693 1
946 695 -0.25
946 946 2.5
946 948 1
946 950 -0.25
946 953 1
946 962 -1
946 999 -1
946 1001 -0.25
946 1252 -0.75
947 641 -0.75
947 643 -1
947 645 -1
947 646 -0.25
947 654 1
947 655 -0.25
947 694 1
947 947 2.5
947 949 1
947 951 1
947 952 -0.25
947 960 -1
947 961 -0.25
947 1000 -1
947 1253 -0.75
948 895 -1
948 897 -1
948 902 -1
948 911 1
948 946 1
948 948 2
948 953 1
948 962 -1
948 999 -1
948 1201 1
948 1252 -1
949 896 -1
949 898 -0.75
949 900 -1
949 902 -0.25
949 909 1
949 911 -0.25
949 947 1
949 949 2.5
949 951 1
949 953 -0.25
949 960 -1
949 962 -0.25
949 1000 -0.75
949 1202 1
949 1253 -1
950 894 -1
950 895 -0.25
950 899 -0.75
950 901 -1
950 910 1
950 945 1
950 946 -0.25
950 950 2.5
950 952 1
950 961 -1
950 1001 -0.75
950 1200 1
950 1201 -0.25
950 1251 -1
950 1252 -0.25
951 938 -1
951 940 -1
951 942 -1
951 947 1
951 949 1
951 951 2
951 960 -1
951 991 1
951 1000 -1
951 1244 1
951 1253 -1
952 936 -1
952 938 -0.25
952 941 -1
952 943 -0.75
952 945 1
952 947 -0.25
952 950 1
952 952 2.5
952 961 -0.75
952 992 1
952 1001 -1
952 1242 1
952 1244 -0.25
952 1251 -1
952 1253 -0.25
953 937 -1
953 939 -1
953 940 -0.25
953 944 -0.75
953 946 1
953 948 1
953 949 -0.25
953 953 2.5
953 962 -0.75
953 990 1
953 991 -0.25
953 999 -1
953 1000 -0.25
953 1243 1
953 1252 -1
954 648 -1
954 653 -1
954 655 -1
954 704 1
954 954 2
954 959 1
954 961 1
954 1010 -1
954 1260 -1
955 649 -0.75
955 651 -1
955 653 -0.25
955 656 -1
955 702 1
955 704 -0.25
955 955 2.5
955 957 1
955 959 -0.25
955 962 1
955 1008 -1
955 1010 -0.25
955 1261 -0.75
956 650 -0.75
956 652 -1
956 654 -1
956 655 -0.25
956 703 1
956 956 2.5
956 958 1
956 960 1
956 961 -0.25
956 1009 -1
956 1262 -0.75
957 904 -1
957 906 -1
957 911 -1
957 955 1
957 957 2
957 962 1
957 1008 -1
957 1210 1
957 1261 -1
958 905 -1
958 907 -0.75
958 909 -1
958 911 -0.25
958 956 1
958 958 2.5
958 960 1
958 962 -0.25
958 1009 -0.75
958 1211 1
958 1262 -1
959 903 -1
959 904 -0.25
959 908 -0.75
959 910 -1
959 954 1
959 955 -0.25
959 959 2.5
959 961 1
959 1010 -0.75
959 1209 1
959 1210 -0.25
959 1260 -1
959 1261 -0.25
960 947 -1
960 949 -1
960 951 -1
960 956 1
960 958 1
960 960 2
960 1000 1
960 1009 -1
960 1253 1
960 1262 -1
961 945 -1
961 947 -0.25
961 950 -1
961 952 -0.75
961 954 1
961 956 -0.25
961 959 1
961 961 2.5
961 1001 1
961 1010 -1
961 1251 1
961 1253 -0.25
961 1260 -1
961 1262 -0.25
962 946 -1
962 948 -1
962 949 -0.25
962 953 -0.75
962 955 1
962 957 1
962 958 -0.25
962 962 2.5
962 999 1
962 1000 -0.25
962 1008 -1
962 1009 -0.25
962 1252 1
962 1261 -1
963 657 -1
963 662 -1
963 670 1
963 713 1
963 963 2
963 968 1
963 976 -1
963 1019 -1
963 1269 -1
964 658 -0.75
964 660 -1
964 662 -0.25
964 671 1
964 711 1
964 713 -0.25
964 964 2.5
964 966 1
964 968 -0.25
964 977 -1
964 1017 -1
964 1019 -0.25
964 1270 -0.75
965 659 -0.75
965 661 -1
965 669 1
965 670 -0.25
965 712 1
965 965 2.5
965 967 1
965 975 -1
965 976 -0.25
965 1018 -1
965 1271 -0.75
966 913 -1
966 915 -1
966 926 1
966 964 1
966 966 2
966 977 -1
966 1017 -1
966 1219 1
966 1270 -1
967 914 -1
967 916 -0.75
967 924 1
967 926 -0.25
967 965 1
967 967 2.5
967 975 -1
967 977 -0.25
967 1018 -0.75
967 1220 1
967 1271 -1
968 912 -1
968 913 -0.25
968 917 -0.75
968 925 1
968 963 1
968 964 -0.25
968 968 2.5
968 976 -1
968 1019 -0.75
968 1218 1
968 1219 -0.25
968 1269 -1
968 1270 -0.25
969 663 -1
969 668 -1
969 670 -1
969 679 1
969 719 1
969 969 2
969 974 1
969 976 1
969 985 -1
969 1025 -1
969 1275 -1
970 664 -0.75
970 666 -1
970 668 -0.25
970 671 -1
970 680 1
970 717 1
970 719 -0.25
970 970 2.5
970 972 1
970 974 -0.25
970 977 1
970 986 -1
970 1023 -1
970 1025 -0.25
970 1276 -0.75
971 665 -0.75
971 667 -1
971 669 -1
971 670 -0.25
971 678 1
971 679 -0.25
971 718 1
971 971 2.5
971 973 1
971 975 1
971 976 -0.25
971 984 -1
971 985 -0.25
971 1024 -1
971 1277 -0.75
972 919 -1
972 921 -1
972 926 -1
972 935 1
972 970 1
972 972 2
972 977 1
972 986 -1
972 1023 -1
972 1225 1
972 1276 -1
973 920 -1
973 922 -0.75
973 924 -1
973 926 -0.25
973 933 1
973 935 -0.25
973 971 1
973 973 2.5
973 975 1
973 977 -0.25
973 984 -1
973 986 -0.25
973 1024 -0.75
973 1226 1
973 1277 -1
974 918 -1
974 919 -0.25
974 923 -0.75
974 925 -1
974 934 1
974 969 1
974 970 -0.25
974 974 2.5
974 976 1
974 985 -1
974 1025 -0.75
974 1224 1
974 1225 -0.25
974 1275 -1
974 1276 -0.25
975 965 -1
975 967 -1
975 971 1
975 973 1
975 975 2
975 984 -1
975 1018 1
975 1024 -1
975 1271 1
975 1277 -1
976 963 -1
976 965 -0.25
976 968 -1
976 969 1
976 971 -0.25
976 974 1
976 976 2.5
976 985 -0.75
976 1019 1
976 1025 -1
976 1269 1
976 1271 -0.25
976 1275 -1
976 1277 -0.25
977 964 -1
977 966 -1
977 967 -0.25
977 970 1
977 972 1
977 973 -0.25
977 977 2.5
977 986 -0.75
977 1017 1
977 1018 -0.25
977 1023 -1
977 1024 -0.25
977 1270 1
977 1276 -1
978 672 -1
978 677 -1
978 679 -1
978 688 1
978 728 1
978 978 2
978 983 1
978 985 1
978 994 -1
978 1034 -1
978 1284 -1
979 673 -0.75
979 675 -1
979 677 -0.25
979 680 -1
979 689 1
979 726 1
979 728 -0.25
979 979 2.5
979 981 1
979 983 -0.25
979 986 1
979 995 -1
979 1032 -1
979 1034 -0.25
979 1285 -0.75
980 674 -0.75
980 676 -1
980 678 -1
980 679 -0.25
980 687 1
980 688 -0.25
980 727 1
980 980 2.5
980 982 1
980 984 1
980 985 -0.25
980 993 -1
980 994 -0.25
980 1033 -1
980 1286 -0.75
981 928 -1
981 930 -1
981 935 -1
981 944 1
981 979 1
981 981 2
981 986 1
981 995 -1
981 1032 -1
981 1234 1
981 1285 -1
982 929 -1
982 931 -0.75
982 933 -1
982 935 -0.25
982 942 1
982 944 -0.25
982 980 1
982 982 2.5
982 984 1
982 986 -0.25
982 993 -1
982 995 -0.25
982 1033 -0.75
982 1235 1
982 1286 -1
983 927 -1
983 928 -0.25
983 932 -0.75
983 934 -1
983 943 1
983 978 1
983 979 -0.25
983 983 2.5
983 985 1
983 994 -1
983 1034 -0.75
983 1233 1
983 1234 -0.25
983 1284 -1
983 1285 -0.25
984 971 -1
984 973 -1
984 975 -1
984 980 1
984 982 1
984 984 2
984 993 -1
984 1024 1
984 1033 -1
984 1277 1
984 1286 -1
985 969 -1
985 971 -0.25
985 974 -1
985 976 -0.75
985 978 1
985 980 -0.25
985 983 1
985 985 2.5
985 994 -0.75
985 1025 1
985 1034 -1
985 1275 1
985 1277 -0.25
985 1284 -1
985 1286 -0.25
986 970 -1
986 972 -1
986 973 -0.25
986 977 -0.75
986 979 1
986 981 1
986 982 -0.25
986 986 2.5
986 995 -0.75
986 1023 1
986 1024 -0.25
986 1032 -1
986 1033 -0.25
986 1276 1
986 1285 -1
987 681 -1
987 686 -1
987 688 -1
987 697 1
987 737 1
987 987 2
987 992 1
987 994 1
987 1003 -1
987 1043 -1
987 1293 -1
988 682 -0.75
988 684 -1
988 686 -0.25
988 689 -1
988 698 1
988 735 1
988 737 -0.25
988 988 2.5
988 990 1
988 992 -0.25
988 995 1
988 1004 -1
988 1041 -1
988 1043 -0.25
988 1294 -0.75
989 683 -0.75
989 685 -1
989 687 -1
989 688 -0.25
989 696 1
989 697 -0.25
989 736 1
989 989 2.5
989 991 1
989 993 1
989 994 -0.25
989 1002 -1
989 1003 -0.25
989 1042 -1
989 1295 -0.75
990 937 -1
990 939 -1
990 944 -1
990 953 1
990 988 1
990 990 2
990 995 1
990 1004 -1
990 1041 -1
990 1243 1
990 1294 -1
991 938 -1
991 940 -0.75
991 942 -1
991 944 -0.25
991 951 1
991 953 -0.25
991 989 1
991 991 2.5
991 993 1
991 995 -0.25
991 1002 -1
991 1004 -0.25
991 1042 -0.75
991 1244 1
991 1295 -1
992 936 -1
992 937 -0.25
992 941 -0.75
992 943 -1
992 952 1
992 987 1
992 988 -0.25
992 992 2.5
992 994 1
992 1003 -1
992 1043 -0.75
992 1242 1
992 1243 -0.25
992 1293 -1
992 1294 -0.25
993 980 -1
993 982 -1
993 984 -1
993 989 1
993 991 1
993 993 2
993 1002 -1
993 1033 1
993 1042 -1
993 1286 1
993 1295 -1
994 978 -1
994 980 -0.25
994 983 -1
994 985 -0.75
994 987 1
994 989 -0.25
994 992 1
994 994 2.5
994 1003 -0.75
994 1034 1
994 1043 -1
994 1284 1
994 1286 -0.25
994 1293 -1
994 1295 -0.25
995 979 -1
995 981 -1
995 982 -0.25
995 986 -0.75
995 988 1
995 990 1
995 991 -0.25
995 995 2.5
995 1004 -0.75
995 1032 1
995 1033 -0.25
995 1041 -1
995 1042 -0.25
995 1285 1
995 1294 -1
996 690 -1
996 695 -1
996 697 -1
996 706 1
996 746 1
996 996 2
996 1001 1
996 1003 1
996 1012 -1
996 1052 -1
996 1302 -1
997 691 -0.75
997 693 -1
997 695 -0.25
997 698 -1
997 707 1
997 744 1
997 746 -0.25
997 997 2.5
997 999 1
997 1001 -0.25
997 1004 1
997 1013 -1
997 1050 -1
997 1052 -0.25
997 1303 -0.75
998 692 -0.75
998 694 -1
998 696 -1
998 697 -0.25
998 705 1
998 706 -0.25
998 745 1
998 998 2.5
998 1000 1
998 1002 1
998 1003 -0.25
998 1011 -1
998 1012 -0.25
998 1051 -1
998 1304 -0.75
999 946 -1
999 948 -1
999 953 -1
999 962 1
999 997 1
999 999 2
999 1004 1
999 1013 -1
999 1050 -1
999 1252 1
999 1303 -1
1000 947 -1
1000 949 -0.75
1000 951 -1
1000 953 -0.25
1000 960 1
1000 962 -0.25
1000 998 1
1000 1000 2.5
1000 1002 1
1000 1004 -0.25
1000 1011 -1
1000 1013 -0.25
1000 1051 -0.75
1000 1253 1
1000 1304 -1
1001 945 -1
1001 946 -0.25
1001 950 -0.75
1001 952 -1
1001 961 1
1001 996 1
1001 997 -0.25
1001 1001 2.5
1001 1003 1
1001 1012 -1
1001 1052 -0.75
1001 1251 1
1001 1252 -0.25
1001 1302 -1
1001 1303 -0.25
1002 989 -1
1002 991 -1
1002 993 -1
1002 998 1
1002 1000 1
1002 1002 2
1002 1011 -1
1002 1042 1
1002 1051 -1
1002 1295 1
1002 1304 -1
1003 987 -1
1003 989 -0.25
1003 992 -1
1003 994 -0.75
1003 996 1
1003 998 -0.25
1003 1001 1
1003 1003 2.5
1003 1012 -0.75
1003 1043 1
1003 1052 -1
1003 1293 1
1003 1295 -0.25
1003 1302 -1
1003 1304 -0.25
1004 988 -1
1004 990 -1
1004 991 -0.25
1004 995 -0.75
1004 997 1
1004 999 1
1004 1000 -0.25
1004 1004 2.5
1004 1013 -0.75
1004 1041 1
1004 1042 -0.25
1004 1050 -1
1004 1051 -0.25
1004 1294 1
1004 1303 -1
1005 699 -1
1005 704 -1
1005 706 -1
1005 755 1
1005 1005 2
1005 1010 1
1005 1012 1
1005 1061 -1
1005 1311 -1
1006 700 -0.75
1006 702 -1
1006 704 -0.25
1006 707 -1
1006 753 1
1006 755 -0.25
1006 1006 2.5
1006 1008 1
1006 1010 -0.25
1006 1013 1
1006 1059 -1
1006 1061 -0.25
1006 1312 -0.75
1007 701 -0.75
1007 703 -1
1007 705 -1
1007 706 -0.25
1007 754 1
1007 1007 2.5
1007 1009 1
1007 1011 1
1007 1012 -0.25
1007 1060 -1
1007 1313 -0.75
1008 955 -1
1008 957 -1
1008 962 -1
1008 1006 1
1008 1008 2
1008 1013 1
1008 1059 -1
1008 1261 1
1008 1312 -1
1009 956 -1
1009 958 -0.75
1009 960 -1
1009 962 -0.25
1009 1007 1
1009 1009 2.5
1009 1011 1
1009 1013 -0.25
1009 1060 -0.75
1009 1262 1
1009 1313 -1
1010 954 -1
1010 955 -0.25
1010 959 -0.75
1010 961 -1
1010 1005 1
1010 1006 -0.25
1010 1010 2.5
1010 1012 1
1010 1061 -0.75
1010 1260 1
1010 1261 -0.25
1010 1311 -1
1010 1312 -0.25
1011 998 -1
1011 1000 -1
1011 1002 -1
1011 1007 1
1011 1009 1
1011 1011 2
1011 1051 1
1011 1060 -1
1011 1304 1
1011 1313 -1
1012 996 -1
1012 998 -0.25
1012 1001 -1
1012 1003 -0.75
1012 1005 1
1012 1007 -0.25
1012 1010 1
1012 1012 2.5
1012 1052 1
1012 1061 -1
1012 1302 1
1012 1304 -0.25
1012 1311 -1
1012 1313 -0.25
1013 997 -1
1013 999 -1
1013 1000 -0.25
1013 1004 -0.75
1013 1006 1
1013 1008 1
1013 1009 -0.25
1013 1013 2.5
1013 1050 1
1013 1051 -0.25
1013 1059 -1
1013 1060 -0.25
1013 1303 1
1013 1312 -1
1014 708 -1
1014 713 -1
1014 721 1
1014 764 1
1014 1014 2
1014 1019 1
1014 1027 -1
1014 1070 -1
1014 1320 -1
1015 709 -0.75
1015 711 -1
1015 713 -0.250000000000001
1015 722 1
1015 762 1
1015 764 -0.25
1015 1015 2.5
1015 1017 1
1015 1019 -0.250000000000001
1015 1028 -1
1015 1068 -1
1015 1070 -0.25
1015 1321 -0.75
1016 710 -0.75
1016 712 -1
1016 720 1
1016 721 -0.25
1016 763 1
1016 1016 2.5
1016 1018 1
1016 1026 -1
1016 1027 -0.25
1016 1069 -1
1016 1322 -0.75
1017 964 -1
1017 966 -1
1017 977 1
1017 1015 1
1017 1017 2
1017 1028 -1
1017 1068 -1
1017 1270 1
1017 1321 -1
1018 965 -1
1018 967 -0.75
1018 975 1
1018 977 -0.25
1018 1016 1
1018 1018 2.5
1018 1026 -1
1018 1028 -0.250000000000001
1018 1069 -0.75
1018 1271 1
1018 1322 -1
1019 963 -1
1019 964 -0.25
1019 968 -0.75
1019 976 1
1019 1014 1
1019 1015 -0.250000000000001
1019 1019 2.5
1019 1027 -1
1019 1070 -0.75
1019 1269 1
1019 1270 -0.25
1019 1320 -1
1019 1321 -0.250000000000001
1020 714 -1
1020 719 -1
1020 721 -1
1020 730 1
1020 770 1
1020 1020 2
1020 1025 1
1020 1027 1
1020 1036 -1
1020 1076 -1
1020 1326 -1
1021 715 -0.75
1021 717 -1
1021 719 -0.250000000000001
1021 722 -1
1021 731 1
1021 768 1
1021 770 -0.25
1021 1021 2.5
1021 1023 1
1021 1025 -0.250000000000001
1021 1028 1
1021 1037 -1
1021 1074 -1
1021 1076 -0.25
1021 1327 -0.75
1022 716 -0.75
1022 718 -1
1022 720 -1
1022 721 -0.25
1022 729 1
1022 730 -0.25
1022 769 1
1022 1022 2.5
1022 1024 1
1022 1026 1
1022 1027 -0.25
1022 1035 -1
1022 1036 -0.25
1022 1075 -1
1022 1328 -0.75
1023 970 -1
1023 972 -1
1023 977 -1
1023 986 1
1023 1021 1
1023 1023 2
1023 1028 1
1023 1037 -1
1023 1074 -1
1023 1276 1
1023 1327 -1
1024 971 -1
1024 973 -0.75
1024 975 -1
1024 977 -0.25
1024 984 1
1024 986 -0.25
1024 1022 1
1024 1024 2.5
1024 1026 1
1024 1028 -0.250000000000001
1024 1035 -1
1024 1037 -0.250000000000001
1024 1075 -0.75
1024 1277 1
1024 1328 -1
1025 969 -1
1025 970 -0.25
1025 974 -0.75
1025 976 -1
1025 985 1
1025 1020 1
1025 1021 -0.250000000000001
1025 1025 2.5
1025 1027 1
1025 1036 -1
1025 1076 -0.75
1025 1275 1
1025 1276 -0.25
1025 1326 -1
1025 1327 -0.250000000000001
1026 1016 -1
1026 1018 -1
1026 1022 1
1026 1024 1
1026 1026 2
1026 1035 -1
1026 1069 1
1026 1075 -1
1026 1322 1
1026 1328 -1
1027 1014 -1
1027 1016 -0.25
1027 1019 -1
1027 1020 1
1027 1022 -0.25
1027 1025 1
1027 1027 2.5
1027 1036 -0.75
1027 1070 1
1027 1076 -1
1027 1320 1
1027 1322 -0.25
1027 1326 -1
1027 1328 -0.25
1028 1015 -1
1028 1017 -1
1028 1018 -0.250000000000001
1028 1021 1
1028 1023 1
1028 1024 -0.250000000000001
1028 1028 2.5
1028 1037 -0.75
1028 1068 1
1028 1069 -0.25
1028 1074 -1
1028 1075 -0.25
1028 1321 1
1028 1327 -1
1029 723 -1
1029 728 -1
1029 730 -1
1029 739 1
1029 779 1
1029 1029 2
1029 1034 1
1029 1036 1
1029 1045 -1
1029 1085 -1
1029 1335 -1
1030 724 -0.75
1030 726 -1
1030 728 -0.250000000000001
1030 731 -1
1030 740 1
1030 777 1
1030 779 -0.25
1030 1030 2.5
1030 1032 1
1030 1034 -0.250000000000001
1030 1037 1
1030 1046 -1
1030 1083 -1
1030 1085 -0.25
1030 1336 -0.75
1031 725 -0.75
1031 727 -1
1031 729 -1
1031 730 -0.25
1031 738 1
1031 739 -0.25
1031 778 1
1031 1031 2.5
1031 1033 1
1031 1035 1
1031 1036 -0.25
1031 1044 -1
1031 1045 -0.25
1031 1084 -1
1031 1337 -0.75
1032 979 -1
1032 981 -1
1032 986 -1
1032 995 1
1032 1030 1
1032 1032 2
1032 1037 1
1032 1046 -1
1032 1083 -1
1032 1285 1
1032 1336 -1
1033 980 -1
1033 982 -0.75
1033 984 -1
1033 986 -0.25
1033 993 1
1033 995 -0.25
1033 1031 1
1033 1033 2.5
1033 1035 1
1033 1037 -0.250000000000001
1033 1044 -1
1033 1046 -0.250000000000001
1033 1084 -0.75
1033 1286 1
1033 1337 -1
1034 978 -1
1034 979 -0.25
1034 983 -0.75
1034 985 -1
1034 994 1
1034 1029 1
1034 1030 -0.250000000000001
1034 1034 2.5
1034 1036 1
1034 1045 -1
1034 1085 -0.75
1034 1284 1
1034 1285 -0.25
1034 1335 -1
1034 1336 -0.250000000000001
1035 1022 -1
1035 1024 -1
1035 1026 -1
1035 1031 1
1035 1033 1
1035 1035 2
1035 1044 -1
1035 1075 1
1035 1084 -1
1035 1328 1
1035 1337 -1
1036 1020 -1
1036 1022 -0.25
1036 1025 -1
1036 1027 -0.75
1036 1029 1
1036 1031 -0.25
1036 1034 1
1036 1036 2.5
1036 1045 -0.75
1036 1076 1
1036 1085 -1
1036 1326 1
1036 1328 -0.25
1036 1335 -1
1036 1337 -0.25
1037 1021 -1
1037 1023 -1
1037 1024 -0.250000000000001
1037 1028 -0.75
1037 1030 1
1037 1032 1
1037 1033 -0.250000000000001
1037 1037 2.5
1037 1046 -0.75
1037 1074 1
1037 1075 -0.25
1037 1083 -1
1037 1084 -0.25
1037 1327 1
1037 1336 -1
1038 732 -1
1038 737 -1
1038 739 -1
1038 748 1
1038 788 1
1038 1038 2
1038 1043 1
1038 1045 1
1038 1054 -1
1038 1094 -1
1038 1344 -1
1039 733 -0.75
1039 735 -1
1039 737 -0.250000000000001
1039 740 -1
1039 749 1
1039 786 1
1039 788 -0.25
1039 1039 2.5
1039 1041 1
1039 1043 -0.250000000000001
1039 1046 1
1039 1055 -1
1039 1092 -1
1039 1094 -0.25
1039 1345 -0.75
1040 734 -0.75
1040 736 -1
1040 738 -1
1040 739 -0.25
1040 747 1
1040 748 -0.25
1040 787 1
1040 1040 2.5
1040 1042 1
1040 1044 1
1040 1045 -0.25
1040 1053 -1
1040 1054 -0.25
1040 1093 -1
1040 1346 -0.75
1041 988 -1
1041 990 -1
1041 995 -1
1041 1004 1
1041 1039 1
1041 1041 2
1041 1046 1
1041 1055 -1
1041 1092 -1
1041 1294 1
1041 1345 -1
1042 989 -1
1042 991 -0.75
1042 993 -1
1042 995 -0.25
1042 1002 1
1042 1004 -0.25
1042 1040 1
1042 1042 2.5
1042 1044 1
1042 1046 -0.250000000000001
1042 1053 -1
1042 1055 -0.250000000000001
1042 1093 -0.75
1042 1295 1
1042 1346 -1
1043 987 -1
1043 988 -0.25
1043 992 -0.75
1043 994 -1
1043 1003 1
1043 1038 1
1043 1039 -0.250000000000001
1043 1043 2.5
1043 1045 1
1043 1054 -1
1043 1094 -0.75
1043 1293 1
1043 1294 -0.25
1043 1344 -1
1043 1345 -0.250000000000001
1044 1031 -1
1044 1033 -1
1044 1035 -1
1044 1040 1
1044 1042 1
1044 1044 2
1044 1053 -1
1044 1084 1
1044 1093 -1
1044 1337 1
1044 1346 -1
1045 1029 -1
1045 1031 -0.25
1045 1034 -1
1045 1036 -0.75
1045 1038 1
1045 1040 -0.25
1045 1043 1
1045 1045 2.5
1045 1054 -0.75
1045 1085 1
1045 1094 -1
1045 1335 1
1045 1337 -0.25
1045 1344 -1
1045 1346 -0.25
1046 1030 -1
1046 1032 -1
1046 1033 -0.250000000000001
1046 1037 -0.75
1046 1039 1
1046 1041 1
1046 1042 -0.250000000000001
1046 1046 2.5
1046 1055 -0.75
1046 1083 1
1046 1084 -0.25
1046 1092 -1
1046 1093 -0.25
1046 1336 1
1046 1345 -1
1047 741 -1
1047 746 -1
1047 748 -1
1047 757 1
1047 797 1
1047 1047 2
1047 1052 1
1047 1054 1
1047 1063 -1
1047 1103 -1
1047 1353 -1
1048 742 -0.75
1048 744 -1
1048 746 -0.250000000000001
1048 749 -1
1048 758 1
1048 795 1
1048 797 -0.25
1048 1048 2.5
1048 1050 1
1048 1052 -0.250000000000001
1048 1055 1
1048 1064 -1
1048 1101 -1
1048 1103 -0.25
1048 1354 -0.75
1049 743 -0.75
1049 745 -1
1049 747 -1
1049 748 -0.25
1049 756 1
1049 757 -0.25
1049 796 1
1049 1049 2.5
1049 1051 1
1049 1053 1
1049 1054 -0.25
1049 1062 -1
1049 1063 -0.25
1049 1102 -1
1049 1355 -0.75
1050 997 -1
1050 999 -1
1050 1004 -1
1050 1013 1
1050 1048 1
1050 1050 2
1050 1055 1
1050 1064 -1
1050 1101 -1
1050 1303 1
1050 1354 -1
1051 998 -1
1051 1000 -0.75
1051 1002 -1
1051 1004 -0.25
1051 1011 1
1051 1013 -0.25
1051 1049 1
1051 1051 2.5
1051 1053 1
1051 1055 -0.250000000000001
1051 1062 -1
1051 1064 -0.250000000000001
1051 1102 -0.75
1051 1304 1
1051 1355 -1
1052 996 -1
1052 997 -0.25
1052 1001 -0.75
1052 1003 -1
1052 1012 1
1052 1047 1
1052 1048 -0.250000000000001
1052 1052 2.5
1052 1054 1
1052 1063 -1
1052 1103 -0.75
1052 1302 1
1052 1303 -0.25
1052 1353 -1
1052 1354 -0.250000000000001
1053 1040 -1
1053 1042 -1
1053 1044 -1
1053 1049 1
1053 1051 1
1053 1053 2
1053 1062 -1
1053 1093 1
1053 1102 -1
1053 1346 1
1053 1355 -1
1054 1038 -1
1054 1040 -0.25
1054 1043 -1
1054 1045 -0.75
1054 1047 1
1054 1049 -0.25
1054 1052 1
1054 1054 2.5
1054 1063 -0.75
1054 1094 1
1054 1103 -1
1054 1344 1
1054 1346 -0.25
1054 1353 -1
1054 1355 -0.25
1055 1039 -1
1055 1041 -1
1055 1042 -0.250000000000001
1055 1046 -0.75
1055 1048 1
1055 1050 1
1055 1051 -0.250000000000001
1055 1055 2.5
1055 1064 -0.75
1055 1092 1
1055 1093 -0.25
1055 1101 -1
1055 1102 -0.25
1055 1345 1
1055 1354 -1
1056 750 -1
1056 755 -1
1056 757 -1
1056 806 1
1056 1056 2
1056 1061 1
1056 1063 1
1056 1112 -1
1056 1362 -1
1057 751 -0.75
1057 753 -1
1057 755 -0.250000000000001
1057 758 -1
1057 804 1
1057 806 -0.25
1057 1057 2.5
1057 1059 1
1057 1061 -0.250000000000001
1057 1064 1
1057 1110 -1
1057 1112 -0.25
1057 1363 -0.75
1058 752 -0.75
1058 754 -1
1058 756 -1
1058 757 -0.25
1058 805 1
1058 1058 2.5
1058 1060 1
1058 1062 1
1058 1063 -0.25
1058 1111 -1
1058 1364 -0.75
1059 1006 -1
1059 1008 -1
1059 1013 -1
1059 1057 1
1059 1059 2
1059 1064 1
1059 1110 -1
1059 1312 1
1059 1363 -1
1060 1007 -1
1060 1009 -0.75
1060 1011 -1
1060 1013 -0.25
1060 1058 1
1060 1060 2.5
1060 1062 1
1060 1064 -0.250000000000001
1060 1111 -0.75
1060 1313 1
1060 1364 -1
1061 1005 -1
1061 1006 -0.25
1061 1010 -0.75
1061 1012 -1
1061 1056 1
1061 1057 -0.250000000000001
1061 1061 2.5
1061 1063 1
1061 1112 -0.75
1061 1311 1
1061 1312 -0.25
1061 1362 -1
1061 1363 -0.250000000000001
1062 1049 -1
1062 1051 -1
1062 1053 -1
1062 1058 1
1062 1060 1
1062 1062 2
1062 1102 1
1062 1111 -1
1062 1355 1
1062 1364 -1
1063 1047 -1
1063 1049 -0.25
1063 1052 -1
1063 1054 -0.75
1063 1056 1
1063 1058 -0.25
1063 1061 1
1063 1063 2.5
1063 1103 1
1063 1112 -1
1063 1353 1
1063 1355 -0.25
1063 1362 -1
1063 1364 -0.25
1064 1048 -1
1064 1050 -1
1064 1051 -0.250000000000001
1064 1055 -0.75
1064 1057 1
1064 1059 1
1064 1060 -0.250000000000001
1064 1064 2.5
1064 1101 1
1064 1102 -0.25
1064 1110 -1
1064 1111 -0.25
1064 1354 1
1064 1363 -1
1065 759 -1
1065 764 -1
1065 772 1
1065 1065 2
1065 1070 1
1065 1078 -1
1065 1371 -1
1066 760 -0.75
1066 762 -1
1066 764 -0.25
1066 773 1
1066 1066 2.5
1066 1068 1
1066 1070 -0.25
1066 1079 -1
1066 1372 -0.75
1067 761 -0.75
1067 763 -1
1067 771 1
1067 772 -0.25
1067 1067 2.5
1067 1069 1
1067 1077 -1
1067 1078 -0.25
1067 1373 -0.75
1068 1015 -1
1068 1017 -1
1068 1028 1
1068 1066 1
1068 1068 2
1068 1079 -1
1068 1321 1
1068 1372 -1
1069 1016 -1
1069 1018 -0.75
1069 1026 1
1069 1028 -0.25
1069 1067 1
1069 1069 2.5
1069 1077 -1
1069 1079 -0.25
1069 1322 1
1069 1373 -1
1070 1014 -1
1070 1015 -0.25
1070 1019 -0.75
1070 1027 1
1070 1065 1
1070 1066 -0.25
1070 1070 2.5
1070 1078 -1
1070 1320 1
1070 1321 -0.25
1070 1371 -1
1070 1372 -0.25
1071 765 -1
1071 770 -1
1071 772 -1
1071 781 1
1071 1071 2
1071 1076 1
1071 1078 1
1071 1087 -1
1071 1377 -1
1072 766 -0.75
1072 768 -1
1072 770 -0.25
1072 773 -1
1072 782 1
1072 1072 2.5
1072 1074 1
1072 1076 -0.25
1072 1079 1
1072 1088 -1
1072 1378 -0.75
1073 767 -0.75
1073 769 -1
1073 771 -1
1073 772 -0.25
1073 780 1
1073 781 -0.25
1073 1073 2.5
1073 1075 1
1073 1077 1
1073 1078 -0.25
1073 1086 -1
1073 1087 -0.25
1073 1379 -0.75
1074 1021 -1
1074 1023 -1
1074 1028 -1
1074 1037 1
1074 1072 1
1074 1074 2
1074 1079 1
1074 1088 -1
1074 1327 1
1074 1378 -1
1075 1022 -1
1075 1024 -0.75
1075 1026 -1
1075 1028 -0.25
1075 1035 1
1075 1037 -0.25
1075 1073 1
1075 1075 2.5
1075 1077 1
1075 1079 -0.25
1075 1086 -1
1075 1088 -0.25
1075 1328 1
1075 1379 -1
1076 1020 -1
1076 1021 -0.25
1076 1025 -0.75
1076 1027 -1
1076 1036 1
1076 1071 1
1076 1072 -0.25
1076 1076 2.5
1076 1078 1
1076 1087 -1
1076 1326 1
1076 1327 -0.25
1076 1377 -1
1076 1378 -0.25
1077 1067 -1
1077 1069 -1
1077 1073 1
1077 1075 1
1077 1077 2
1077 1086 -1
1077 1373 1
1077 1379 -1
1078 1065 -1
1078 1067 -0.25
1078 1070 -1
1078 1071 1
1078 1073 -0.25
1078 1076 1
1078 1078 2.5
1078 1087 -0.75
1078 1371 1
1078 1373 -0.25
1078 1377 -1
1078 1379 -0.25
1079 1066 -1
1079 1068 -1
1079 1069 -0.25
1079 1072 1
1079 1074 1
1079 1075 -0.25
1079 1079 2.5
1079 1088 -0.75
1079 1372 1
1079 1378 -1
1080 774 -1
1080 779 -1
1080 781 -1
1080 790 1
1080 1080 2
1080 1085 1
1080 1087 1
1080 1096 -1
1080 1386 -1
1081 775 -0.75
1081 777 -1
1081 779 -0.25
1081 782 -1
1081 791 1
1081 1081 2.5
1081 1083 1
1081 1085 -0.25
1081 1088 1
1081 1097 -1
1081 1387 -0.75
1082 776 -0.75
1082 778 -1
1082 780 -1
1082 781 -0.25
1082 789 1
1082 790 -0.25
1082 1082 2.5
1082 1084 1
1082 1086 1
1082 1087 -0.25
1082 1095 -1
1082 1096 -0.25
1082 1388 -0.75
1083 1030 -1
1083 1032 -1
1083 1037 -1
1083 1046 1
1083 1081 1
1083 1083 2
1083 1088 1
1083 1097 -1
1083 1336 1
1083 1387 -1
1084 1031 -1
1084 1033 -0.75
1084 1035 -1
1084 1037 -0.25
1084 1044 1
1084 1046 -0.25
1084 1082 1
1084 1084 2.5
1084 1086 1
1084 1088 -0.25
1084 1095 -1
1084 1097 -0.25
1084 1337 1
1084 1388 -1
1085 1029 -1
1085 1030 -0.25
1085 1034 -0.75
1085 1036 -1
1085 1045 1
1085 1080 1
1085 1081 -0.25
1085 1085 2.5
1085 1087 1
1085 1096 -1
1085 1335 1
1085 1336 -0.25
1085 1386 -1
1085 1387 -0.25
1086 1073 -1
1086 1075 -1
1086 1077 -1
1086 1082 1
1086 1084 1
1086 1086 2
1086 1095 -1
1086 1379 1
1086 1388 -1
1087 1071 -1
1087 1073 -0.25
1087 1076 -1
1087 1078 -0.75
1087 1080 1
1087 1082 -0.25
1087 1085 1
1087 1087 2.5
1087 1096 -0.75
1087 1377 1
1087 1379 -0.25
1087 1386 -1
1087 1388 -0.25
1088 1072 -1
1088 1074 -1
1088 1075 -0.25
1088 1079 -0.75
1088 1081 1
1088 1083 1
1088 1084 -0.25
1088 1088 2.5
1088 1097 -0.75
1088 1378 1
1088 1387 -1
1089 783 -1
1089 788 -1
1089 790 -1
1089 799 1
1089 1089 2
1089 1094 1
1089 1096 1
1089 1105 -1
1089 1395 -1
1090 784 -0.75
1090 786 -1
1090 788 -0.25
1090 791 -1
1090 800 1
1090 1090 2.5
1090 1092 1
1090 1094 -0.25
1090 1097 1
1090 1106 -1
1090 1396 -0.75
1091 785 -0.75
1091 787 -1
1091 789 -1
1091 790 -0.25
1091 798 1
1091 799 -0.25
1091 1091 2.5
1091 1093 1
1091 1095 1
1091 1096 -0.25
1091 1104 -1
1091 1105 -0.25
1091 1397 -0.75
1092 1039 -1
1092 1041 -1
1092 1046 -1
1092 1055 1
1092 1090 1
1092 1092 2
1092 1097 1
1092 1106 -1
1092 1345 1
1092 1396 -1
1093 1040 -1
1093 1042 -0.75
1093 1044 -1
1093 1046 -0.25
1093 1053 1
1093 1055 -0.25
1093 1091 1
1093 1093 2.5
1093 1095 1
1093 1097 -0.25
1093 1104 -1
1093 1106 -0.25
1093 1346 1
1093 1397 -1
1094 1038 -1
1094 1039 -0.25
1094 1043 -0.75
1094 1045 -1
1094 1054 1
1094 1089 1
1094 1090 -0.25
1094 1094 2.5
1094 1096 1
1094 1105 -1
1094 1344 1
1094 1345 -0.25
1094 1395 -1
1094 1396 -0.25
1095 1082 -1
1095 1084 -1
1095 1086 -1
1095 1091 1
1095 1093 1
1095 1095 2
1095 1104 -1
1095 1388 1
1095 1397 -1
1096 1080 -1
1096 1082 -0.25
1096 1085 -1
1096 1087 -0.75
1096 1089 1
1096 1091 -0.25
1096 1094 1
1096 1096 2.5
1096 1105 -0.75
1096 1386 1
1096 1388 -0.25
1096 1395 -1
1096 1397 -0.25
1097 1081 -1
1097 1083 -1
1097 1084 -0.25
1097 1088 -0.75
1097 1090 1
1097 1092 1
1097 1093 -0.25
1097 1097 2.5
1097 1106 -0.75
1097 1387 1
1097 1396 -1
1098 792 -1
1098 797 -1
1098 799 -1
1098 808 1
1098 1098 2
1098 1103 1
1098 1105 1
1098 1114 -1
1098 1404 -1
1099 793 -0.75
1099 795 -1
1099 797 -0.25
1099 800 -1
1099 809 1
1099 1099 2.5
1099 1101 1
1099 1103 -0.25
1099 1106 1
1099 1115 -1
1099 1405 -0.75
1100 794 -0.75
1100 796 -1
1100 798 -1
1100 799 -0.25
1100 807 1
1100 808 -0.25
1100 1100 2.5
1100 1102 1
1100 1104 1
1100 1105 -0.25
1100 1113 -1
1100 1114 -0.25
1100 1406 -0.75
1101 1048 -1
1101 1050 -1
1101 1055 -1
1101 1064 1
1101 1099 1
1101 1101 2
1101 1106 1
1101 1115 -1
1101 1354 1
1101 1405 -1
1102 1049 -1
1102 1051 -0.75
1102 1053 -1
1102 1055 -0.25
1102 1062 1
1102 1064 -0.25
1102 1100 1
1102 1102 2.5
1102 1104 1
1102 1106 -0.25
1102 1113 -1
1102 1115 -0.25
1102 1355 1
1102 1406 -1
1103 1047 -1
1103 1048 -0.25
1103 1052 -0.75
1103 1054 -1
1103 1063 1
1103 1098 1
1103 1099 -0.25
1103 1103 2.5
1103 1105 1
1103 1114 -1
1103 1353 1
1103 1354 -0.25
1103 1404 -1
1103 1405 -0.25
1104 1091 -1
1104 1093 -1
1104 1095 -1
1104 1100 1
1104 1102 1
1104 1104 2
1104 1113 -1
1104 1397 1
1104 1406 -1
1105 1089 -1
1105 1091 -0.25
1105 1094 -1
1105 1096 -0.75
1105 1098 1
1105 1100 -0.25
1105 1103 1
1105 1105 2.5
1105 1114 -0.75
1105 1395 1
1105 1397 -0.25
1105 1404 -1
1105 1406 -0.25
1106 1090 -1
1106 1092 -1
1106 1093 -0.25
1106 1097 -0.75
1106 1099 1
1106 1101 1
1106 1102 -0.25
1106 1106 2.5
1106 1115 -0.75
1106 1396 1
1106 1405 -1
1107 801 -1
1107 806 -1
1107 808 -1
1107 1107 2
1107 1112 1
1107 1114 1
1107 1413 -1
1108 802 -0.75
1108 804 -1
1108 806 -0.25
1108 809 -1
1108 1108 2.5
1108 1110 1
1108 1112 -0.25
1108 1115 1
1108 1414 -0.75
1109 803 -0.75
1109 805 -1
1109 807 -1
1109 808 -0.25
1109 1109 2.5
1109 1111 1
1109 1113 1
1109 1114 -0.25
1109 1415 -0.75
1110 1057 -1
1110 1059 -1
1110 1064 -1
1110 1108 1
1110 1110 2
1110 1115 1
1110 1363 1
1110 1414 -1
1111 1058 -1
1111 1060 -0.75
1111 1062 -1
1111 1064 -0.25
1111 1109 1
1111 1111 2.5
1111 1113 1
1111 1115 -0.25
1111 1364 1
1111 1415 -1
1112 1056 -1
1112 1057 -0.25
1112 1061 -0.75
1112 1063 -1
1112 1107 1
1112 1108 -0.25
1112 1112 2.5
1112 1114 1
1112 1362 1
1112 1363 -0.25
1112 1413 -1
1112 1414 -0.25
1113 1100 -1
1113 1102 -1
1113 1104 -1
1113 1109 1
1113 1111 1
1113 1113 2
1113 1406 1
1113 1415 -1
1114 1098 -1
1114 1100 -0.25
1114 1103 -1
1114 1105 -0.75
1114 1107 1
1114 1109 -0.25
1114 1112 1
1114 1114 2.5
1114 1404 1
1114 1406 -0.25
1114 1413 -1
1114 1415 -0.25
1115 1099 -1
1115 1101 -1
1115 1102 -0.25
1115 1106 -0.75
1115 1108 1
1115 1110 1
1115 1111 -0.25
1115 1115 2.5
1115 1405 1
1115 1414 -1
1116 1116 1
1116 1120 1
1116 1130 -1
1116 1170 -1
1116 1426 -1
1117 1117 1.25
1117 1121 1
1117 1128 -1
1117 1130 -0.25
1117 1171 -0.75
1117 1427 -1
1118 1118 1.25
1118 1119 1
1118 1120 -0.25
1118 1129 -1
1118 1172 -0.75
1118 1425 -1
1118 1426 -0.25
1119 812 -1
1119 813 -1
1119 823 1
1119 866 1
1119 1118 1
1119 1119 2
1119 1129 -1
1119 1172 -1
1119 1425 -1
1120 810 -1
1120 812 -0.25
1120 814 -0.75
1120 824 1
1120 864 1
1120 866 -0.25
1120 1116 1
1120 1118 -0.25
1120 1120 2.5
1120 1130 -1
1120 1170 -1
1120 1172 -0.25
1120 1426 -0.75
1121 811 -1
1121 815 -0.75
1121 822 1
1121 823 -0.25
1121 865 1
1121 1117 1
1121 1121 2.5
1121 1128 -1
1121 1129 -0.25
1121 1171 -1
1121 1427 -0.75
1122 1122 1
1122 1126 1
1122 1130 1
1122 1139 -1
1122 1176 -1
1122 1432 -1
1123 1123 1.25
1123 1127 1
1123 1128 1
1123 1130 -0.25
1123 1137 -1
1123 1139 -0.25
1123 1177 -0.75
1123 1433 -1
1124 1124 1.25
1124 1125 1
1124 1126 -0.25
1124 1129 1
1124 1138 -1
1124 1178 -0.75
1124 1431 -1
1124 1432 -0.25
1125 818 -1
1125 819 -1
1125 823 -1
1125 832 1
1125 872 1
1125 1124 1
1125 1125 2
1125 1129 1
1125 1138 -1
1125 1178 -1
1125 1431 -1
1126 816 -1
1126 818 -0.25
1126 820 -0.75
1126 824 -1
1126 833 1
1126 870 1
1126 872 -0.25
1126 1122 1
1126 1124 -0.25
1126 1126 2.5
1126 1130 1
1126 1139 -1
1126 1176 -1
1126 1178 -0.25
1126 1432 -0.75
1127 817 -1
1127 821 -0.75
1127 822 -1
1127 823 -0.25
1127 831 1
1127 832 -0.25
1127 871 1
1127 1123 1
1127 1127 2.5
1127 1128 1
1127 1129 -0.25
1127 1137 -1
1127 1138 -0.25
1127 1177 -1
1127 1433 -0.75
1128 1117 -1
1128 1121 -1
1128 1123 1
1128 1127 1
1128 1128 2
1128 1137 -1
1128 1171 1
1128 1177 -1
1128 1427 1
1128 1433 -1
1129 1118 -1
1129 1119 -1
1129 1121 -0.25
1129 1124 1
1129 1125 1
1129 1127 -0.25
1129 1129 2.5
1129 1138 -0.75
1129 1172 1
1129 1178 -1
1129 1425 1
1129 1427 -0.25
1129 1431 -1
1129 1433 -0.25
1130 1116 -1
1130 1117 -0.25
1130 1120 -1
1130 1122 1
1130 1123 -0.25
1130 1126 1
1130 1130 2.5
1130 1139 -0.75
1130 1170 1
1130 1171 -0.25
1130 1176 -1
1130 1177 -0.25
1130 1426 1
1130 1432 -1
1131 1131 1
1131 1135 1
1131 1139 1
1131 1148 -1
1131 1185 -1
1131 1441 -1
1132 1132 1.25
1132 1136 1
1132 1137 1
1132 1139 -0.25
1132 1146 -1
1132 1148 -0.25
1132 1186 -0.75
1132 1442 -1
1133 1133 1.25
1133 1134 1
1133 1135 -0.25
1133 1138 1
1133 1147 -1
1133 1187 -0.75
1133 1440 -1
1133 1441 -0.25
1134 827 -1
1134 828 -1
1134 832 -1
1134 841 1
1134 881 1
1134 1133 1
1134 1134 2
1134 1138 1
1134 1147 -1
1134 1187 -1
1134 1440 -1
1135 825 -1
1135 827 -0.25
1135 829 -0.75
1135 833 -1
1135 842 1
1135 879 1
1135 881 -0.25
1135 1131 1
1135 1133 -0.25
1135 1135 2.5
1135 1139 1
1135 1148 -1
1135 1185 -1
1135 1187 -0.25
1135 1441 -0.75
1136 826 -1
1136 830 -0.75
1136 831 -1
1136 832 -0.25
1136 840 1
1136 841 -0.25
1136 880 1
1136 1132 1
1136 1136 2.5
1136 1137 1
1136 1138 -0.25
1136 1146 -1
1136 1147 -0.25
1136 1186 -1
1136 1442 -0.75
1137 1123 -1
1137 1127 -1
1137 1128 -1
1137 1132 1
1137 1136 1
1137 1137 2
1137 1146 -1
1137 1177 1
1137 1186 -1
1137 1433 1
1137 1442 -1
1138 1124 -1
1138 1125 -1
1138 1127 -0.25
1138 1129 -0.75
1138 1133 1
1138 1134 1
1138 1136 -0.25
1138 1138 2.5
1138 1147 -0.75
1138 1178 1
1138 1187 -1
1138 1431 1
1138 1433 -0.25
1138 1440 -1
1138 1442 -0.25
1139 1122 -1
1139 1123 -0.25
1139 1126 -1
1139 1130 -0.75
1139 1131 1
1139 1132 -0.25
1139 1135 1
1139 1139 2.5
1139 1148 -0.75
1139 1176 1
1139 1177 -0.25
1139 1185 -1
1139 1186 -0.25
1139 1432 1
1139 1441 -1
1140 1140 1
1140 1144 1
1140 1148 1
1140 1157 -1
1140 1194 -1
1140 1450 -1
1141 1141 1.25
1141 1145 1
1141 1146 1
1141 1148 -0.25
1141 1155 -1
1141 1157 -0.25
1141 1195 -0.75
1141 1451 -1
1142 1142 1.25
1142 1143 1
1142 1144 -0.25
1142 1147 1
1142 1156 -1
1142 1196 -0.75
1142 1449 -1
1142 1450 -0.25
1143 836 -1
1143 837 -1
1143 841 -1
1143 850 1
1143 890 1
1143 1142 1
1143 1143 2
1143 1147 1
1143 1156 -1
1143 1196 -1
1143 1449 -1
1144 834 -1
1144 836 -0.25
1144 838 -0.75
1144 842 -1
1144 851 1
1144 888 1
1144 890 -0.25
1144 1140 1
1144 1142 -0.25
1144 1144 2.5
1144 1148 1
1144 1157 -1
1144 1194 -1
1144 1196 -0.25
1144 1450 -0.75
1145 835 -1
1145 839 -0.75
1145 840 -1
1145 841 -0.25
1145 849 1
1145 850 -0.25
1145 889 1
1145 1141 1
1145 1145 2.5
1145 1146 1
1145 1147 -0.25
1145 1155 -1
1145 1156 -0.25
1145 1195 -1
1145 1451 -0.75
1146 1132 -1
1146 1136 -1
1146 1137 -1
1146 1141 1
1146 1145 1
1146 1146 2
1146 1155 -1
1146 1186 1
1146 1195 -1
1146 1442 1
1146 1451 -1
1147 1133 -1
1147 1134 -1
1147 1136 -0.25
1147 1138 -0.75
1147 1142 1
1147 1143 1
1147 1145 -0.25
1147 1147 2.5
1147 1156 -0.75
1147 1187 1
1147 1196 -1
1147 1440 1
1147 1442 -0.25
1147 1449 -1
1147 1451 -0.25
1148 1131 -1
1148 1132 -0.25
1148 1135 -1
1148 1139 -0.75
1148 1140 1
1148 1141 -0.25
1148 1144 1
1148 1148 2.5
1148 1157 -0.75
1148 1185 1
1148 1186 -0.25
1148 1194 -1
1148 1195 -0.25
1148 1441 1
1148 1450 -1
1149 1149 1
1149 1153 1
1149 1157 1
1149 1166 -1
1149 1203 -1
1149 1459 -1
1150 1150 1.25
1150 1154 1
1150 1155 1
1150 1157 -0.25
1150 1164 -1
1150 1166 -0.25
1150 1204 -0.75
1150 1460 -1
1151 1151 1.25
1151 1152 1
1151 1153 -0.25
1151 1156 1
1151 1165 -1
1151 1205 -0.75
1151 1458 -1
1151 1459 -0.25
1152 845 -1
1152 846 -1
1152 850 -1
1152 859 1
1152 899 1
1152 1151 1
1152 1152 2
1152 1156 1
1152 1165 -1
1152 1205 -1
1152 1458 -1
1153 843 -1
1153 845 -0.25
1153 847 -0.75
1153 851 -1
1153 860 1
1153 897 1
1153 899 -0.25
1153 1149 1
1153 1151 -0.25
1153 1153 2.5
1153 1157 1
1153 1166 -1
1153 1203 -1
1153 1205 -0.25
1153 1459 -0.75
1154 844 -1
1154 848 -0.75
1154 849 -1
1154 850 -0.25
1154 858 1
1154 859 -0.25
1154 898 1
1154 1150 1
1154 1154 2.5
1154 1155 1
1154 1156 -0.25
1154 1164 -1
1154 1165 -0.25
1154 1204 -1
1154 1460 -0.75
1155 1141 -1
1155 1145 -1
1155 1146 -1
1155 1150 1
1155 1154 1
1155 1155 2
1155 1164 -1
1155 1195 1
1155 1204 -1
1155 1451 1
1155 1460 -1
1156 1142 -1
1156 1143 -1
1156 1145 -0.25
1156 1147 -0.75
1156 1151 1
1156 1152 1
1156 1154 -0.25
1156 1156 2.5
1156 1165 -0.75
1156 1196 1
1156 1205 -1
1156 1449 1
1156 1451 -0.25
1156 1458 -1
1156 1460 -0.25
1157 1140 -1
1157 1141 -0.25
1157 1144 -1
1157 1148 -0.75
1157 1149 1
1157 1150 -0.25
1157 1153 1
1157 1157 2.5
1157 1166 -0.75
1157 1194 1
1157 1195 -0.25
1157 1203 -1
1157 1204 -0.25
1157 1450 1
1157 1459 -1
1158 1158 1
1158 1162 1
1158 1166 1
1158 1212 -1
1158 1468 -1
1159 1159 1.25
1159 1163 1
1159 1164 1
1159 1166 -0.25
1159 1213 -0.75
1159 1469 -1
1160 1160 1.25
1160 1161 1
1160 1162 -0.25
1160 1165 1
1160 1214 -0.75
1160 1467 -1
1160 1468 -0.25
1161 854 -1
1161 855 -1
1161 859 -1
1161 908 1
1161 1160 1
1161 1161 2
1161 1165 1
1161 1214 -1
1161 1467 -1
1162 852 -1
1162 854 -0.25
1162 856 -0.75
1162 860 -1
1162 906 1
1162 908 -0.25
1162 1158 1
1162 1160 -0.25
1162 1162 2.5
1162 1166 1
1162 1212 -1
1162 1214 -0.25
1162 1468 -0.75
1163 853 -1
1163 857 -0.75
1163 858 -1
1163 859 -0.25
1163 907 1
1163 1159 1
1163 1163 2.5
1163 1164 1
1163 1165 -0.25
1163 1213 -1
1163 1469 -0.75
1164 1150 -1
1164 1154 -1
1164 1155 -1
1164 1159 1
1164 1163 1
1164 1164 2
1164 1204 1
1164 1213 -1
1164 1460 1
1164 1469 -1
1165 1151 -1
1165 1152 -1
1165 1154 -0.25
1165 1156 -0.75
1165 1160 1
1165 1161 1
1165 1163 -0.25
1165 1165 2.5
1165 1205 1
1165 1214 -1
1165 1458 1
1165 1460 -0.25
1165 1467 -1
1165 1469 -0.25
1166 1149 -1
1166 1150 -0.25
1166 1153 -1
1166 1157 -0.75
1166 1158 1
1166 1159 -0.25
1166 1162 1
1166 1166 2.5
1166 1203 1
1166 1204 -0.25
1166 1212 -1
1166 1213 -0.25
1166 1459 1
1166 1468 -1
1167 861 -1
1167 866 -1
1167 874 1
1167 917 1
1167 1167 2
1167 1172 1
1167 1180 -1
1167 1223 -1
1167 1473 -1
1168 862 -0.75
1168 864 -1
1168 866 -0.25
1168 875 1
1168 915 1
1168 917 -0.25
1168 1168 2.5
1168 1170 1
1168 1172 -0.25
1168 1181 -1
1168 1221 -1
1168 1223 -0.25
1168 1474 -0.75
1169 863 -0.75
1169 865 -1
1169 873 1
1169 874 -0.25
1169 916 1
1169 1169 2.5
1169 1171 1
1169 1179 -1
1169 1180 -0.25
1169 1222 -1
1169 1475 -0.75
1170 1116 -1
1170 1120 -1
1170 1130 1
1170 1168 1
1170 1170 2
1170 1181 -1
1170 1221 -1
1170 1426 1
1170 1474 -1
1171 1117 -0.75
1171 1121 -1
1171 1128 1
1171 1130 -0.25
1171 1169 1
1171 1171 2.5
1171 1179 -1
1171 1181 -0.25
1171 1222 -0.75
1171 1427 1
1171 1475 -1
1172 1118 -0.75
1172 1119 -1
1172 1120 -0.25
1172 1129 1
1172 1167 1
1172 1168 -0.25
1172 1172 2.5
1172 1180 -1
1172 1223 -0.75
1172 1425 1
1172 1426 -0.25
1172 1473 -1
1172 1474 -0.25
1173 867 -1
1173 872 -1
1173 874 -1
1173 883 1
1173 923 1
1173 1173 2
1173 1178 1
1173 1180 1
1173 1189 -1
1173 1229 -1
1173 1479 -1
1174 868 -0.75
1174 870 -1
1174 872 -0.25
1174 875 -1
1174 884 1
1174 921 1
1174 923 -0.25
1174 1174 2.5
1174 1176 1
1174 1178 -0.25
1174 1181 1
1174 1190 -1
1174 1227 -1
1174 1229 -0.25
1174 1480 -0.75
1175 869 -0.75
1175 871 -1
1175 873 -1
1175 874 -0.25
1175 882 1
1175 883 -0.25
1175 922 1
1175 1175 2.5
1175 1177 1
1175 1179 1
1175 1180 -0.25
1175 1188 -1
1175 1189 -0.25
1175 1228 -1
1175 1481 -0.75
1176 1122 -1
1176 1126 -1
1176 1130 -1
1176 1139 1
1176 1174 1
1176 1176 2
1176 1181 1
1176 1190 -1
1176 1227 -1
1176 1432 1
1176 1480 -1
1177 1123 -0.75
1177 1127 -1
1177 1128 -1
1177 1130 -0.25
1177 1137 1
1177 1139 -0.25
1177 1175 1
1177 1177 2.5
1177 1179 1
1177 1181 -0.25
1177 1188 -1
1177 1190 -0.25
1177 1228 -0.75
1177 1433 1
1177 1481 -1
1178 1124 -0.75
1178 1125 -1
1178 1126 -0.25
1178 1129 -1
1178 1138 1
1178 1173 1
1178 1174 -0.25
1178 1178 2.5
1178 1180 1
1178 1189 -1
1178 1229 -0.75
1178 1431 1
1178 1432 -0.25
1178 1479 -1
1178 1480 -0.25
1179 1169 -1
1179 1171 -1
1179 1175 1
1179 1177 1
1179 1179 2
1179 1188 -1
1179 1222 1
1179 1228 -1
1179 1475 1
1179 1481 -1
1180 1167 -1
1180 1169 -0.25
1180 1172 -1
1180 1173 1
1180 1175 -0.25
1180 1178 1
1180 1180 2.5
1180 1189 -0.75
1180 1223 1
1180 1229 -1
1180 1473 1
1180 1475 -0.25
1180 1479 -1
1180 1481 -0.25
1181 1168 -1
1181 1170 -1
1181 1171 -0.25
1181 1174 1
1181 1176 1
1181 1177 -0.25
1181 1181 2.5
1181 1190 -0.75
1181 1221 1
1181 1222 -0.25
1181 1227 -1
1181 1228 -0.25
1181 1474 1
1181 1480 -1
1182 876 -1
1182 881 -1
1182 883 -1
1182 892 1
1182 932 1
1182 1182 2
1182 1187 1
1182 1189 1
1182 1198 -1
1182 1238 -1
1182 1488 -1
1183 877 -0.75
1183 879 -1
1183 881 -0.25
1183 884 -1
1183 893 1
1183 930 1
1183 932 -0.25
1183 1183 2.5
1183 1185 1
1183 1187 -0.25
1183 1190 1
1183 1199 -1
1183 1236 -1
1183 1238 -0.25
1183 1489 -0.75
1184 878 -0.75
1184 880 -1
1184 882 -1
1184 883 -0.25
1184 891 1
1184 892 -0.25
1184 931 1
1184 1184 2.5
1184 1186 1
1184 1188 1
1184 1189 -0.25
1184 1197 -1
1184 1198 -0.25
1184 1237 -1
1184 1490 -0.75
1185 1131 -1
1185 1135 -1
1185 1139 -1
1185 1148 1
1185 1183 1
1185 1185 2
1185 1190 1
1185 1199 -1
1185 1236 -1
1185 1441 1
1185 1489 -1
1186 1132 -0.75
1186 1136 -1
1186 1137 -1
1186 1139 -0.25
1186 1146 1
1186 1148 -0.25
1186 1184 1
1186 1186 2.5
1186 1188 1
1186 1190 -0.25
1186 1197 -1
1186 1199 -0.25
1186 1237 -0.75
1186 1442 1
1186 1490 -1
1187 1133 -0.75
1187 1134 -1
1187 1135 -0.25
1187 1138 -1
1187 1147 1
1187 1182 1
1187 1183 -0.25
1187 1187 2.5
1187 1189 1
1187 1198 -1
1187 1238 -0.75
1187 1440 1
1187 1441 -0.25
1187 1488 -1
1187 1489 -0.25
1188 1175 -1
1188 1177 -1
1188 1179 -1
1188 1184 1
1188 1186 1
1188 1188 2
1188 1197 -1
1188 1228 1
1188 1237 -1
1188 1481 1
1188 1490 -1
1189 1173 -1
1189 1175 -0.25
1189 1178 -1
1189 1180 -0.75
1189 1182 1
1189 1184 -0.25
1189 1187 1
1189 1189 2.5
1189 1198 -0.75
1189 1229 1
1189 1238 -1
1189 1479 1
1189 1481 -0.25
1189 1488 -1
1189 1490 -0.25
1190 1174 -1
1190 1176 -1
1190 1177 -0.25
1190 1181 -0.75
1190 1183 1
1190 1185 1
1190 1186 -0.25
1190 1190 2.5
1190 1199 -0.75
1190 1227 1
1190 1228 -0.25
1190 1236 -1
1190 1237 -0.25
1190 1480 1
1190 1489 -1
1191 885 -1
1191 890 -1
1191 892 -1
1191 901 1
1191 941 1
1191 1191 2
1191 1196 1
1191 1198 1
1191 1207 -1
1191 1247 -1
1191 1497 -1
1192 886 -0.75
1192 888 -1
1192 890 -0.25
1192 893 -1
1192 902 1
1192 939 1
1192 941 -0.25
1192 1192 2.5
1192 1194 1
1192 1196 -0.25
1192 1199 1
1192 1208 -1
1192 1245 -1
1192 1247 -0.25
1192 1498 -0.75
1193 887 -0.75
1193 889 -1
1193 891 -1
1193 892 -0.25
1193 900 1
1193 901 -0.25
1193 940 1
1193 1193 2.5
1193 1195 1
1193 1197 1
1193 1198 -0.25
1193 1206 -1
1193 1207 -0.25
1193 1246 -1
1193 1499 -0.75
1194 1140 -1
1194 1144 -1
1194 1148 -1
1194 1157 1
1194 1192 1
1194 1194 2
1194 1199 1
1194 1208 -1
1194 1245 -1
1194 1450 1
1194 1498 -1
1195 1141 -0.75
1195 1145 -1
1195 1146 -1
1195 1148 -0.25
1195 1155 1
1195 1157 -0.25
1195 1193 1
1195 1195 2.5
1195 1197 1
1195 1199 -0.25
1195 1206 -1
1195 1208 -0.25
1195 1246 -0.75
1195 1451 1
1195 1499 -1
1196 1142 -0.75
1196 1143 -1
1196 1144 -0.25
1196 1147 -1
1196 1156 1
1196 1191 1
1196 1192 -0.25
1196 1196 2.5
1196 1198 1
1196 1207 -1
1196 1247 -0.75
1196 1449 1
1196 1450 -0.25
1196 1497 -1
1196 1498 -0.25
1197 1184 -1
1197 1186 -1
1197 1188 -1
1197 1193 1
1197 1195 1
1197 1197 2
1197 1206 -1
1197 1237 1
1197 1246 -1
1197 1490 1
1197 1499 -1
1198 1182 -1
1198 1184 -0.25
1198 1187 -1
1198 1189 -0.75
1198 1191 1
1198 1193 -0.25
1198 1196 1
1198 1198 2.5
1198 1207 -0.75
1198 1238 1
1198 1247 -1
1198 1488 1
1198 1490 -0.25
1198 1497 -1
1198 1499 -0.25
1199 1183 -1
1199 1185 -1
1199 1186 -0.25
1199 1190 -0.75
1199 1192 1
1199 1194 1
1199 1195 -0.25
1199 1199 2.5
1199 1208 -0.75
1199 1236 1
1199 1237 -0.25
1199 1245 -1
1199 1246 -0.25
1199 1489 1
1199 1498 -1
1200 894 -1
1200 899 -1
1200 901 -1
1200 910 1
1200 950 1
1200 1200 2
1200 1205 1
1200 1207 1
1200 1216 -1
1200 1256 -1
1200 1506 -1
1201 895 -0.75
1201 897 -1
1201 899 -0.25
1201 902 -1
1201 911 1
1201 948 1
1201 950 -0.25
1201 1201 2.5
1201 1203 1
1201 1205 -0.25
1201 1208 1
1201 1217 -1
1201 1254 -1
1201 1256 -0.25
1201 1507 -0.75
1202 896 -0.75
1202 898 -1
1202 900 -1
1202 901 -0.25
1202 909 1
1202 910 -0.25
1202 949 1
1202 1202 2.5
1202 1204 1
1202 1206 1
1202 1207 -0.25
1202 1215 -1
1202 1216 -0.25
1202 1255 -1
1202 1508 -0.75
1203 1149 -1
1203 1153 -1
1203 1157 -1
1203 1166 1
1203 1201 1
1203 1203 2
1203 1208 1
1203 1217 -1
1203 1254 -1
1203 1459 1
1203 1507 -1
1204 1150 -0.75
1204 1154 -1
1204 1155 -1
1204 1157 -0.25
1204 1164 1
1204 1166 -0.25
1204 1202 1
1204 1204 2.5
1204 1206 1
1204 1208 -0.25
1204 1215 -1
1204 1217 -0.25
1204 1255 -0.75
1204 1460 1
1204 1508 -1
1205 1151 -0.75
1205 1152 -1
1205 1153 -0.25
1205 1156 -1
1205 1165 1
1205 1200 1
1205 1201 -0.25
1205 1205 2.5
1205 1207 1
1205 1216 -1
1205 1256 -0.75
1205 1458 1
1205 1459 -0.25
1205 1506 -1
1205 1507 -0.25
1206 1193 -1
1206 1195 -1
1206 1197 -1
1206 1202 1
1206 1204 1
1206 1206 2
1206 1215 -1
1206 1246 1
1206 1255 -1
1206 1499 1
1206 1508 -1
1207 1191 -1
1207 1193 -0.25
1207 1196 -1
1207 1198 -0.75
1207 1200 1
1207 1202 -0.25
1207 1205 1
1207 1207 2.5
1207 1216 -0.75
1207 1247 1
1207 1256 -1
1207 1497 1
1207 1499 -0.25
1207 1506 -1
1207 1508 -0.25
1208 1192 -1
1208 1194 -1
1208 1195 -0.25
1208 1199 -0.75
1208 1201 1
1208 1203 1
1208 1204 -0.25
1208 1208 2.5
1208 1217 -0.75
1208 1245 1
1208 1246 -0.25
1208 1254 -1
1208 1255 -0.25
1208 1498 1
1208 1507 -1
1209 903 -1
1209 908 -1
1209 910 -1
1209 959 1
1209 1209 2
1209 1214 1
1209 1216 1
1209 1265 -1
1209 1515 -1
1210 904 -0.75
1210 906 -1
1210 908 -0.25
1210 911 -1
1210 957 1
1210 959 -0.25
1210 1210 2.5
1210 1212 1
1210 1214 -0.25
1210 1217 1
1210 1263 -1
1210 1265 -0.25
1210 1516 -0.75
1211 905 -0.75
1211 907 -1
1211 909 -1
1211 910 -0.25
1211 958 1
1211 1211 2.5
1211 1213 1
1211 1215 1
1211 1216 -0.25
1211 1264 -1
1211 1517 -0.75
1212 1158 -1
1212 1162 -1
1212 1166 -1
1212 1210 1
1212 1212 2
1212 1217 1
1212 1263 -1
1212 1468 1
1212 1516 -1
1213 1159 -0.75
1213 1163 -1
1213 1164 -1
1213 1166 -0.25
1213 1211 1
1213 1213 2.5
1213 1215 1
1213 1217 -0.25
1213 1264 -0.75
1213 1469 1
1213 1517 -1
1214 1160 -0.75
1214 1161 -1
1214 1162 -0.25
1214 1165 -1
1214 1209 1
1214 1210 -0.25
1214 1214 2.5
1214 1216 1
1214 1265 -0.75
1214 1467 1
1214 1468 -0.25
1214 1515 -1
1214 1516 -0.25
1215 1202 -1
1215 1204 -1
1215 1206 -1
1215 1211 1
1215 1213 1
1215 1215 2
1215 1255 1
1215 1264 -1
1215 1508 1
1215 1517 -1
1216 1200 -1
1216 1202 -0.25
1216 1205 -1
1216 1207 -0.75
1216 1209 1
1216 1211 -0.25
1216 1214 1
1216 1216 2.5
1216 1256 1
1216 1265 -1
1216 1506 1
1216 1508 -0.25
1216 1515 -1
1216 1517 -0.25
1217 1201 -1
1217 1203 -1
1217 1204 -0.25
1217 1208 -0.75
1217 1210 1
1217 1212 1
1217 1213 -0.25
1217 1217 2.5
1217 1254 1
1217 1255 -0.25
1217 1263 -1
1217 1264 -0.25
1217 1507 1
1217 1516 -1
1218 912 -1
1218 917 -1
1218 925 1
1218 968 1
1218 1218 2
1218 1223 1
1218 1231 -1
1218 1274 -1
1218 1524 -1
1219 913 -0.75
1219 915 -1
1219 917 -0.25
1219 926 1
1219 966 1
1219 968 -0.25
1219 1219 2.5
1219 1221 1
1219 1223 -0.25
1219 1232 -1
1219 1272 -1
1219 1274 -0.25
1219 1525 -0.75
1220 914 -0.75
1220 916 -1
1220 924 1
1220 925 -0.25
1220 967 1
1220 1220 2.5
1220 1222 1
1220 1230 -1
1220 1231 -0.25
1220 1273 -1
1220 1526 -0.75
1221 1168 -1
1221 1170 -1
1221 1181 1
1221 1219 1
1221 1221 2
1221 1232 -1
1221 1272 -1
1221 1474 1
1221 1525 -1
1222 1169 -1
1222 1171 -0.75
1222 1179 1
1222 1181 -0.25
1222 1220 1
1222 1222 2.5
1222 1230 -1
1222 1232 -0.25
1222 1273 -0.75
1222 1475 1
1222 1526 -1
1223 1167 -1
1223 1168 -0.25
1223 1172 -0.75
1223 1180 1
1223 1218 1
1223 1219 -0.25
1223 1223 2.5
1223 1231 -1
1223 1274 -0.75
1223 1473 1
1223 1474 -0.25
1223 1524 -1
1223 1525 -0.25
1224 918 -1
1224 923 -1
1224 925 -1
1224 934 1
1224 974 1
1224 1224 2
1224 1229 1
1224 1231 1
1224 1240 -1
1224 1280 -1
1224 1530 -1
1225 919 -0.75
1225 921 -1
1225 923 -0.25
1225 926 -1
1225 935 1
1225 972 1
1225 974 -0.25
1225 1225 2.5
1225 1227 1
1225 1229 -0.25
1225 1232 1
1225 1241 -1
1225 1278 -1
1225 1280 -0.25
1225 1531 -0.75
1226 920 -0.75
1226 922 -1
1226 924 -1
1226 925 -0.25
1226 933 1
1226 934 -0.25
1226 973 1
1226 1226 2.5
1226 1228 1
1226 1230 1
1226 1231 -0.25
1226 1239 -1
1226 1240 -0.25
1226 1279 -1
1226 1532 -0.75
1227 1174 -1
1227 1176 -1
1227 1181 -1
1227 1190 1
1227 1225 1
1227 1227 2
1227 1232 1
1227 1241 -1
1227 1278 -1
1227 1480 1
1227 1531 -1
1228 1175 -1
1228 1177 -0.75
1228 1179 -1
1228 1181 -0.25
1228 1188 1
1228 1190 -0.25
1228 1226 1
1228 1228 2.5
1228 1230 1
1228 1232 -0.25
1228 1239 -1
1228 1241 -0.25
1228 1279 -0.75
1228 1481 1
1228 1532 -1
1229 1173 -1
1229 1174 -0.25
1229 1178 -0.75
1229 1180 -1
1229 1189 1
1229 1224 1
1229 1225 -0.25
1229 1229 2.5
1229 1231 1
1229 1240 -1
1229 1280 -0.75
1229 1479 1
1229 1480 -0.25
1229 1530 -1
1229 1531 -0.25
1230 1220 -1
1230 1222 -1
1230 1226 1
1230 1228 1
1230 1230 2
1230 1239 -1
1230 1273 1
1230 1279 -1
1230 1526 1
1230 1532 -1
1231 1218 -1
1231 1220 -0.25
1231 1223 -1
1231 1224 1
1231 1226 -0.25
1231 1229 1
1231 1231 2.5
1231 1240 -0.75
1231 1274 1
1231 1280 -1
1231 1524 1
1231 1526 -0.25
1231 1530 -1
1231 1532 -0.25
1232 1219 -1
1232 1221 -1
1232 1222 -0.25
1232 1225 1
1232 1227 1
1232 1228 -0.25
1232 1232 2.5
1232 1241 -0.75
1232 1272 1
1232 1273 -0.25
1232 1278 -1
1232 1279 -0.25
1232 1525 1
1232 1531 -1
1233 927 -1
1233 932 -1
1233 934 -1
1233 943 1
1233 983 1
1233 1233 2
1233 1238 1
1233 1240 1
1233 1249 -1
1233 1289 -1
1233 1539 -1
1234 928 -0.75
1234 930 -1
1234 932 -0.25
1234 935 -1
1234 944 1
1234 981 1
1234 983 -0.25
1234 1234 2.5
1234 1236 1
1234 1238 -0.25
1234 1241 1
1234 1250 -1
1234 1287 -1
1234 1289 -0.25
1234 1540 -0.75
1235 929 -0.75
1235 931 -1
1235 933 -1
1235 934 -0.25
1235 942 1
1235 943 -0.25
1235 982 1
1235 1235 2.5
1235 1237 1
1235 1239 1
1235 1240 -0.25
1235 1248 -1
1235 1249 -0.25
1235 1288 -1
1235 1541 -0.75
1236 1183 -1
1236 1185 -1
1236 1190 -1
1236 1199 1
1236 1234 1
1236 1236 2
1236 1241 1
1236 1250 -1
1236 1287 -1
1236 1489 1
1236 1540 -1
1237 1184 -1
1237 1186 -0.75
1237 1188 -1
1237 1190 -0.25
1237 1197 1
1237 1199 -0.25
1237 1235 1
1237 1237 2.5
1237 1239 1
1237 1241 -0.25
1237 1248 -1
1237 1250 -0.25
1237 1288 -0.75
1237 1490 1
1237 1541 -1
1238 1182 -1
1238 1183 -0.25
1238 1187 -0.75
1238 1189 -1
1238 1198 1
1238 1233 1
1238 1234 -0.25
1238 1238 2.5
1238 1240 1
1238 1249 -1
1238 1289 -0.75
1238 1488 1
1238 1489 -0.25
1238 1539 -1
1238 1540 -0.25
1239 1226 -1
1239 1228 -1
1239 1230 -1
1239 1235 1
1239 1237 1
1239 1239 2
1239 1248 -1
1239 1279 1
1239 1288 -1
1239 1532 1
1239 1541 -1
1240 1224 -1
1240 1226 -0.25
1240 1229 -1
1240 1231 -0.75
1240 1233 1
1240 1235 -0.25
1240 1238 1
1240 1240 2.5
1240 1249 -0.75
1240 1280 1
1240 1289 -1
1240 1530 1
1240 1532 -0.25
1240 1539 -1
1240 1541 -0.25
1241 1225 -1
1241 1227 -1
1241 1228 -0.25
1241 1232 -0.75
1241 1234 1
1241 1236 1
1241 1237 -0.25
1241 1241 2.5
1241 1250 -0.75
1241 1278 1
1241 1279 -0.25
1241 1287 -1
1241 1288 -0.25
1241 1531 1
1241 1540 -1
1242 936 -1
1242 941 -1
1242 943 -1
1242 952 1
1242 992 1
1242 1242 2
1242 1247 1
1242 1249 1
1242 1258 -1
1242 1298 -1
1242 1548 -1
1243 937 -0.75
1243 939 -1
1243 941 -0.25
1243 944 -1
1243 953 1
1243 990 1
1243 992 -0.25
1243 1243 2.5
1243 1245 1
1243 1247 -0.25
1243 1250 1
1243 1259 -1
1243 1296 -1
1243 1298 -0.25
1243 1549 -0.75
1244 938 -0.75
1244 940 -1
1244 942 -1
1244 943 -0.25
1244 951 1
1244 952 -0.25
1244 991 1
1244 1244 2.5
1244 1246 1
1244 1248 1
1244 1249 -0.25
1244 1257 -1
1244 1258 -0.25
1244 1297 -1
1244 1550 -0.75
1245 1192 -1
1245 1194 -1
1245 1199 -1
1245 1208 1
1245 1243 1
1245 1245 2
1245 1250 1
1245 1259 -1
1245 1296 -1
1245 1498 1
1245 1549 -1
1246 1193 -1
1246 1195 -0.75
1246 1197 -1
1246 1199 -0.25
1246 1206 1
1246 1208 -0.25
1246 1244 1
1246 1246 2.5
1246 1248 1
1246 1250 -0.25
1246 1257 -1
1246 1259 -0.25
1246 1297 -0.75
1246 1499 1
1246 1550 -1
1247 1191 -1
1247 1192 -0.25
1247 1196 -0.75
1247 1198 -1
1247 1207 1
1247 1242 1
1247 1243 -0.25
1247 1247 2.5
1247 1249 1
1247 1258 -1
1247 1298 -0.75
1247 1497 1
1247 1498 -0.25
1247 1548 -1
1247 1549 -0.25
1248 1235 -1
1248 1237 -1
1248 1239 -1
1248 1244 1
1248 1246 1
1248 1248 2
1248 1257 -1
1248 1288 1
1248 1297 -1
1248 1541 1
1248 1550 -1
1249 1233 -1
1249 1235 -0.25
1249 1238 -1
1249 1240 -0.75
1249 1242 1
1249 1244 -0.25
1249 1247 1
1249 1249 2.5
1249 1258 -0.75
1249 1289 1
1249 1298 -1
1249 1539 1
1249 1541 -0.25
1249 1548 -1
1249 1550 -0.25
1250 1234 -1
1250 1236 -1
1250 1237 -0.25
1250 1241 -0.75
1250 1243 1
1250 1245 1
1250 1246 -0.25
1250 1250 2.5
1250 1259 -0.75
1250 1287 1
1250 1288 -0.25
1250 1296 -1
1250 1297 -0.25
1250 1540 1
1250 1549 -1
1251 945 -1
1251 950 -1
1251 952 -1
1251 961 1
1251 1001 1
1251 1251 2
1251 1256 1
1251 1258 1
1251 1267 -1
1251 1307 -1
1251 1557 -1
1252 946 -0.75
1252 948 -1
1252 950 -0.25
1252 953 -1
1252 962 1
1252 999 1
1252 1001 -0.25
1252 1252 2.5
1252 1254 1
1252 1256 -0.25
1252 1259 1
1252 1268 -1
1252 1305 -1
1252 1307 -0.25
1252 1558 -0.75
1253 947 -0.75
1253 949 -1
1253 951 -1
1253 952 -0.25
1253 960 1
1253 961 -0.25
1253 1000 1
1253 1253 2.5
1253 1255 1
1253 1257 1
1253 1258 -0.25
1253 1266 -1
1253 1267 -0.25
1253 1306 -1
1253 1559 -0.75
1254 1201 -1
1254 1203 -1
1254 1208 -1
1254 1217 1
1254 1252 1
1254 1254 2
1254 1259 1
1254 1268 -1
1254 1305 -1
1254 1507 1
1254 1558 -1
1255 1202 -1
1255 1204 -0.75
1255 1206 -1
1255 1208 -0.25
1255 1215 1
1255 1217 -0.25
1255 1253 1
1255 1255 2.5
1255 1257 1
1255 1259 -0.25
1255 1266 -1
1255 1268 -0.25
1255 1306 -0.75
1255 1508 1
1255 1559 -1
1256 1200 -1
1256 1201 -0.25
1256 1205 -0.75
1256 1207 -1
1256 1216 1
1256 1251 1
1256 1252 -0.25
1256 1256 2.5
1256 1258 1
1256 1267 -1
1256 1307 -0.75
1256 1506 1
1256 1507 -0.25
1256 1557 -1
1256 1558 -0.25
1257 1244 -1
1257 1246 -1
1257 1248 -1
1257 1253 1
1257 1255 1
1257 1257 2
1257 1266 -1
1257 1297 1
1257 1306 -1
1257 1550 1
1257 1559 -1
1258 1242 -1
1258 1244 -0.25
1258 1247 -1
1258 1249 -0.75
1258 1251 1
1258 1253 -0.25
1258 1256 1
1258 1258 2.5
1258 1267 -0.75
1258 1298 1
1258 1307 -1
1258 1548 1
1258 1550 -0.25
1258 1557 -1
1258 1559 -0.25
1259 1243 -1
1259 1245 -1
1259 1246 -0.25
1259 1250 -0.75
1259 1252 1
1259 1254 1
1259 1255 -0.25
1259 1259 2.5
1259 1268 -0.75
1259 1296 1
1259 1297 -0.25
1259 1305 -1
1259 1306 -0.25
1259 1549 1
1259 1558 -1
1260 954 -1
1260 959 -1
1260 961 -1
1260 1010 1
1260 1260 2
1260 1265 1
1260 1267 1
1260 1316 -1
1260 1566 -1
1261 955 -0.75
1261 957 -1
1261 959 -0.25
1261 962 -1
1261 1008 1
1261 1010 -0.25
1261 1261 2.5
1261 1263 1
1261 1265 -0.25
1261 1268 1
1261 1314 -1
1261 1316 -0.25
1261 1567 -0.75
1262 956 -0.75
1262 958 -1
1262 960 -1
1262 961 -0.25
1262 1009 1
1262 1262 2.5
1262 1264 1
1262 1266 1
1262 1267 -0.25
1262 1315 -1
1262 1568 -0.75
1263 1210 -1
1263 1212 -1
1263 1217 -1
1263 1261 1
1263 1263 2
1263 1268 1
1263 1314 -1
1263 1516 1
1263 1567 -1
1264 1211 -1
1264 1213 -0.75
1264 1215 -1
1264 1217 -0.25
1264 1262 1
1264 1264 2.5
1264 1266 1
1264 1268 -0.25
1264 1315 -0.75
1264 1517 1
1264 1568 -1
1265 1209 -1
1265 1210 -0.25
1265 1214 -0.75
1265 1216 -1
1265 1260 1
1265 1261 -0.25
1265 1265 2.5
1265 1267 1
1265 1316 -0.75
1265 1515 1
1265 1516 -0.25
1265 1566 -1
1265 1567 -0.25
1266 1253 -1
1266 1255 -1
1266 1257 -1
1266 1262 1
1266 1264 1
1266 1266 2
1266 1306 1
1266 1315 -1
1266 1559 1
1266 1568 -1
1267 1251 -1
1267 1253 -0.25
1267 1256 -1
1267 1258 -0.75
1267 1260 1
1267 1262 -0.25
1267 1265 1
1267 1267 2.5
1267 1307 1
1267 1316 -1
1267 1557 1
1267 1559 -0.25
1267 1566 -1
1267 1568 -0.25
1268 1252 -1
1268 1254 -1
1268 1255 -0.25
1268 1259 -0.75
1268 1261 1
1268 1263 1
1268 1264 -0.25
1268 1268 2.5
1268 1305 1
1268 1306 -0.25
1268 1314 -1
1268 1315 -0.25
1268 1558 1
1268 1567 -1
1269 963 -1
1269 968 -1
1269 976 1
1269 1019 1
1269 1269 2
1269 1274 1
1269 1282 -1
1269 1325 -1
1269 1575 -1
1270 964 -0.75
1270 966 -1
1270 968 -0.25
1270 977 1
1270 1017 1
1270 1019 -0.25
1270 1270 2.5
1270 1272 1
1270 1274 -0.25
1270 1283 -1
1270 1323 -1
1270 1325 -0.25
1270 1576 -0.75
1271 965 -0.75
1271 967 -1
1271 975 1
1271 976 -0.25
1271 1018 1
1271 1271 2.5
1271 1273 1
1271 1281 -1
1271 1282 -0.25
1271 1324 -1
1271 1577 -0.75
1272 1219 -1
1272 1221 -1
1272 1232 1
1272 1270 1
1272 1272 2
1272 1283 -1
1272 1323 -1
1272 1525 1
1272 1576 -1
1273 1220 -1
1273 1222 -0.75
1273 1230 1
1273 1232 -0.25
1273 1271 1
1273 1273 2.5
1273 1281 -1
1273 1283 -0.25
1273 1324 -0.75
1273 1526 1
1273 1577 -1
1274 1218 -1
1274 1219 -0.25
1274 1223 -0.75
1274 1231 1
1274 1269 1
1274 1270 -0.25
1274 1274 2.5
1274 1282 -1
1274 1325 -0.75
1274 1524 1
1274 1525 -0.25
1274 1575 -1
1274 1576 -0.25
1275 969 -1
1275 974 -1
1275 976 -1
1275 985 1
1275 1025 1
1275 1275 2
1275 1280 1
1275 1282 1
1275 1291 -1
1275 1331 -1
1275 1581 -1
1276 970 -0.75
1276 972 -1
1276 974 -0.25
1276 977 -1
1276 986 1
1276 1023 1
1276 1025 -0.25
1276 1276 2.5
1276 1278 1
1276 1280 -0.25
1276 1283 1
1276 1292 -1
1276 1329 -1
1276 1331 -0.25
1276 1582 -0.75
1277 971 -0.75
1277 973 -1
1277 975 -1
1277 976 -0.25
1277 984 1
1277 985 -0.25
1277 1024 1
1277 1277 2.5
1277 1279 1
1277 1281 1
1277 1282 -0.25
1277 1290 -1
1277 1291 -0.25
1277 1330 -1
1277 1583 -0.75
1278 1225 -1
1278 1227 -1
1278 1232 -1
1278 1241 1
1278 1276 1
1278 1278 2
1278 1283 1
1278 1292 -1
1278 1329 -1
1278 1531 1
1278 1582 -1
1279 1226 -1
1279 1228 -0.75
1279 1230 -1
1279 1232 -0.25
1279 1239 1
1279 1241 -0.25
1279 1277 1
1279 1279 2.5
1279 1281 1
1279 1283 -0.25
1279 1290 -1
1279 1292 -0.25
1279 1330 -0.75
1279 1532 1
1279 1583 -1
1280 1224 -1
1280 1225 -0.25
1280 1229 -0.75
1280 1231 -1
1280 1240 1
1280 1275 1
1280 1276 -0.25
1280 1280 2.5
1280 1282 1
1280 1291 -1
1280 1331 -0.75
1280 1530 1
1280 1531 -0.25
1280 1581 -1
1280 1582 -0.25
1281 1271 -1
1281 1273 -1
1281 1277 1
1281 1279 1
1281 1281 2
1281 1290 -1
1281 1324 1
1281 1330 -1
1281 1577 1
1281 1583 -1
1282 1269 -1
1282 1271 -0.25
1282 1274 -1
1282 1275 1
1282 1277 -0.25
1282 1280 1
1282 1282 2.5
1282 1291 -0.75
1282 1325 1
1282 1331 -1
1282 1575 1
1282 1577 -0.25
1282 1581 -1
1282 1583 -0.25
1283 1270 -1
1283 1272 -1
1283 1273 -0.25
1283 1276 1
1283 1278 1
1283 1279 -0.25
1283 1283 2.5
1283 1292 -0.75
1283 1323 1
1283 1324 -0.25
1283 1329 -1
1283 1330 -0.25
1283 1576 1
1283 1582 -1
1284 978 -1
1284 983 -1
1284 985 -1
1284 994 1
1284 1034 1
1284 1284 2
1284 1289 1
1284 1291 1
1284 1300 -1
1284 1340 -1
1284 1590 -1
1285 979 -0.75
1285 981 -1
1285 983 -0.25
1285 986 -1
1285 995 1
1285 1032 1
1285 1034 -0.25
1285 1285 2.5
1285 1287 1
1285 1289 -0.25
1285 1292 1
1285 1301 -1
1285 1338 -1
1285 1340 -0.25
1285 1591 -0.75
1286 980 -0.75
1286 982 -1
1286 984 -1
1286 985 -0.25
1286 993 1
1286 994 -0.25
1286 1033 1
1286 1286 2.5
1286 1288 1
1286 1290 1
1286 1291 -0.25
1286 1299 -1
1286 1300 -0.25
1286 1339 -1
1286 1592 -0.75
1287 1234 -1
1287 1236 -1
1287 1241 -1
1287 1250 1
1287 1285 1
1287 1287 2
1287 1292 1
1287 1301 -1
1287 1338 -1
1287 1540 1
1287 1591 -1
1288 1235 -1
1288 1237 -0.75
1288 1239 -1
1288 1241 -0.25
1288 1248 1
1288 1250 -0.25
1288 1286 1
1288 1288 2.5
1288 1290 1
1288 1292 -0.25
1288 1299 -1
1288 1301 -0.25
1288 1339 -0.75
1288 1541 1
1288 1592 -1
1289 1233 -1
1289 1234 -0.25
1289 1238 -0.75
1289 1240 -1
1289 1249 1
1289 1284 1
1289 1285 -0.25
1289 1289 2.5
1289 1291 1
1289 1300 -1
1289 1340 -0.75
1289 1539 1
1289 1540 -0.25
1289 1590 -1
1289 1591 -0.25
1290 1277 -1
1290 1279 -1
1290 1281 -1
1290 1286 1
1290 1288 1
1290 1290 2
1290 1299 -1
1290 1330 1
1290 1339 -1
1290 1583 1
1290 1592 -1
1291 1275 -1
1291 1277 -0.25
1291 1280 -1
1291 1282 -0.75
1291 1284 1
1291 1286 -0.25
1291 1289 1
1291 1291 2.5
1291 1300 -0.75
1291 1331 1
1291 1340 -1
1291 1581 1
1291 1583 -0.25
1291 1590 -1
1291 1592 -0.25
1292 1276 -1
1292 1278 -1
1292 1279 -0.25
1292 1283 -0.75
1292 1285 1
1292 1287 1
1292 1288 -0.25
1292 1292 2.5
1292 1301 -0.75
1292 1329 1
1292 1330 -0.25
1292 1338 -1
1292 1339 -0.25
1292 1582 1
1292 1591 -1
1293 987 -1
1293 992 -1
1293 994 -1
1293 1003 1
1293 1043 1
1293 1293 2
1293 1298 1
1293 1300 1
1293 1309 -1
1293 1349 -1
1293 1599 -1
1294 988 -0.75
1294 990 -1
1294 992 -0.25
1294 995 -1
1294 1004 1
1294 1041 1
1294 1043 -0.25
1294 1294 2.5
1294 1296 1
1294 1298 -0.25
1294 1301 1
1294 1310 -1
1294 1347 -1
1294 1349 -0.25
1294 1600 -0.75
1295 989 -0.75
1295 991 -1
1295 993 -1
1295 994 -0.25
1295 1002 1
1295 1003 -0.25
1295 1042 1
1295 1295 2.5
1295 1297 1
1295 1299 1
1295 1300 -0.25
1295 1308 -1
1295 1309 -0.25
1295 1348 -1
1295 1601 -0.75
1296 1243 -1
1296 1245 -1
1296 1250 -1
1296 1259 1
1296 1294 1
1296 1296 2
1296 1301 1
1296 1310 -1
1296 1347 -1
1296 1549 1
1296 1600 -1
1297 1244 -1
1297 1246 -0.75
1297 1248 -1
1297 1250 -0.25
1297 1257 1
1297 1259 -0.25
1297 1295 1
1297 1297 2.5
1297 1299 1
1297 1301 -0.25
1297 1308 -1
1297 1310 -0.25
1297 1348 -0.75
1297 1550 1
1297 1601 -1
1298 1242 -1
1298 1243 -0.25
1298 1247 -0.75
1298 1249 -1
1298 1258 1
1298 1293 1
1298 1294 -0.25
1298 1298 2.5
1298 1300 1
1298 1309 -1
1298 1349 -0.75
1298 1548 1
1298 1549 -0.25
1298 1599 -1
1298 1600 -0.25
1299 1286 -1
1299 1288 -1
1299 1290 -1
1299 1295 1
1299 1297 1
1299 1299 2
1299 1308 -1
1299 1339 1
1299 1348 -1
1299 1592 1
1299 1601 -1
1300 1284 -1
1300 1286 -0.25
1300 1289 -1
1300 1291 -0.75
1300 1293 1
1300 1295 -0.25
1300 1298 1
1300 1300 2.5
1300 1309 -0.75
1300 1340 1
1300 1349 -1
1300 1590 1
1300 1592 -0.25
1300 1599 -1
1300 1601 -0.25
1301 1285 -1
1301 1287 -1
1301 1288 -0.25
1301 1292 -0.75
1301 1294 1
1301 1296 1
1301 1297 -0.25
1301 1301 2.5
1301 1310 -0.75
1301 1338 1
1301 1339 -0.25
1301 1347 -1
1301 1348 -0.25
1301 1591 1
1301 1600 -1
1302 996 -1
1302 1001 -1
1302 1003 -1
1302 1012 1
1302 1052 1
1302 1302 2
1302 1307 1
1302 1309 1
1302 1318 -1
1302 1358 -1
1302 1608 -1
1303 997 -0.75
1303 999 -1
1303 1001 -0.25
1303 1004 -1
1303 1013 1
1303 1050 1
1303 1052 -0.25
1303 1303 2.5
1303 1305 1
1303 1307 -0.25
1303 1310 1
1303 1319 -1
1303 1356 -1
1303 1358 -0.25
1303 1609 -0.75
1304 998 -0.75
1304 1000 -1
1304 1002 -1
1304 1003 -0.25
1304 1011 1
1304 1012 -0.25
1304 1051 1
1304 1304 2.5
1304 1306 1
1304 1308 1
1304 1309 -0.25
1304 1317 -1
1304 1318 -0.25
1304 1357 -1
1304 1610 -0.75
1305 1252 -1
1305 1254 -1
1305 1259 -1
1305 1268 1
1305 1303 1
1305 1305 2
1305 1310 1
1305 1319 -1
1305 1356 -1
1305 1558 1
1305 1609 -1
1306 1253 -1
1306 1255 -0.75
1306 1257 -1
1306 1259 -0.25
1306 1266 1
1306 1268 -0.25
1306 1304 1
1306 1306 2.5
1306 1308 1
1306 1310 -0.25
1306 1317 -1
1306 1319 -0.25
1306 1357 -0.75
1306 1559 1
1306 1610 -1
1307 1251 -1
1307 1252 -0.25
1307 1256 -0.75
1307 1258 -1
1307 1267 1
1307 1302 1
1307 1303 -0.25
1307 1307 2.5
1307 1309 1
1307 1318 -1
1307 1358 -0.75
1307 1557 1
1307 1558 -0.25
1307 1608 -1
1307 1609 -0.25
1308 1295 -1
1308 1297 -1
1308 1299 -1
1308 1304 1
1308 1306 1
1308 1308 2
1308 1317 -1
1308 1348 1
1308 1357 -1
1308 1601 1
1308 1610 -1
1309 1293 -1
1309 1295 -0.25
1309 1298 -1
1309 1300 -0.75
1309 1302 1
1309 1304 -0.25
1309 1307 1
1309 1309 2.5
1309 1318 -0.75
1309 1349 1
1309 1358 -1
1309 1599 1
1309 1601 -0.25
1309 1608 -1
1309 1610 -0.25
1310 1294 -1
1310 1296 -1
1310 1297 -0.25
1310 1301 -0.75
1310 1303 1
1310 1305 1
1310 1306 -0.25
1310 1310 2.5
1310 1319 -0.75
1310 1347 1
1310 1348 -0.25
1310 1356 -1
1310 1357 -0.25
1310 1600 1
1310 1609 -1
1311 1005 -1
1311 1010 -1
1311 1012 -1
1311 1061 1
1311 1311 2
1311 1316 1
1311 1318 1
1311 1367 -1
1311 1617 -1
1312 1006 -0.75
1312 1008 -1
1312 1010 -0.25
1312 1013 -1
1312 1059 1
1312 1061 -0.25
1312 1312 2.5
1312 1314 1
1312 1316 -0.25
1312 1319 1
1312 1365 -1
1312 1367 -0.25
1312 1618 -0.75
1313 1007 -0.75
1313 1009 -1
1313 1011 -1
1313 1012 -0.25
1313 1060 1
1313 1313 2.5
1313 1315 1
1313 1317 1
1313 1318 -0.25
1313 1366 -1
1313 1619 -0.75
1314 1261 -1
1314 1263 -1
1314 1268 -1
1314 1312 1
1314 1314 2
1314 1319 1
1314 1365 -1
1314 1567 1
1314 1618 -1
1315 1262 -1
1315 1264 -0.75
1315 1266 -1
1315 1268 -0.25
1315 1313 1
1315 1315 2.5
1315 1317 1
1315 1319 -0.25
1315 1366 -0.75
1315 1568 1
1315 1619 -1
1316 1260 -1
1316 1261 -0.25
1316 1265 -0.75
1316 1267 -1
1316 1311 1
1316 1312 -0.25
1316 1316 2.5
1316 1318 1
1316 1367 -0.75
1316 1566 1
1316 1567 -0.25
1316 1617 -1
1316 1618 -0.25
1317 1304 -1
1317 1306 -1
1317 1308 -1
1317 1313 1
1317 1315 1
1317 1317 2
1317 1357 1
1317 1366 -1
1317 1610 1
1317 1619 -1
1318 1302 -1
1318 1304 -0.25
1318 1307 -1
1318 1309 -0.75
1318 1311 1
1318 1313 -0.25
1318 1316 1
1318 1318 2.5
1318 1358 1
1318 1367 -1
1318 1608 1
1318 1610 -0.25
1318 1617 -1
1318 1619 -0.25
1319 1303 -1
1319 1305 -1
1319 1306 -0.25
1319 1310 -0.75
1319 1312 1
1319 1314 1
1319 1315 -0.25
1319 1319 2.5
1319 1356 1
1319 1357 -0.25
1319 1365 -1
1319 1366 -0.25
1319 1609 1
1319 1618 -1
1320 1014 -1
1320 1019 -1
1320 1027 1
1320 1070 1
1320 1320 2
1320 1325 1
1320 1333 -1
1320 1376 -1
1320 1626 -1
1321 1015 -0.75
1321 1017 -1
1321 1019 -0.250000000000001
1321 1028 1
1321 1068 1
1321 1070 -0.25
1321 1321 2.5
1321 1323 1
1321 1325 -0.250000000000001
1321 1334 -1
1321 1374 -1
1321 1376 -0.25
1321 1627 -0.75
1322 1016 -0.75
1322 1018 -1
1322 1026 1
1322 1027 -0.25
1322 1069 1
1322 1322 2.5
1322 1324 1
1322 1332 -1
1322 1333 -0.25
1322 1375 -1
1322 1628 -0.75
1323 1270 -1
1323 1272 -1
1323 1283 1
1323 1321 1
1323 1323 2
1323 1334 -1
1323 1374 -1
1323 1576 1
1323 1627 -1
1324 1271 -1
1324 1273 -0.75
1324 1281 1
1324 1283 -0.25
1324 1322 1
1324 1324 2.5
1324 1332 -1
1324 1334 -0.250000000000001
1324 1375 -0.75
1324 1577 1
1324 1628 -1
1325 1269 -1
1325 1270 -0.25
1325 1274 -0.75
1325 1282 1
1325 1320 1
1325 1321 -0.250000000000001
1325 1325 2.5
1325 1333 -1
1325 1376 -0.75
1325 1575 1
1325 1576 -0.25
1325 1626 -1
1325 1627 -0.250000000000001
1326 1020 -1
1326 1025 -1
1326 1027 -1
1326 1036 1
1326 1076 1
1326 1326 2
1326 1331 1
1326 1333 1
1326 1342 -1
1326 1382 -1
1326 1632 -1
1327 1021 -0.75
1327 1023 -1
1327 1025 -0.250000000000001
1327 1028 -1
1327 1037 1
1327 1074 1
1327 1076 -0.25
1327 1327 2.5
1327 1329 1
1327 1331 -0.250000000000001
1327 1334 1
1327 1343 -1
1327 1380 -1
1327 1382 -0.25
1327 1633 -0.75
1328 1022 -0.75
1328 1024 -1
1328 1026 -1
1328 1027 -0.25
1328 1035 1
1328 1036 -0.25
1328 1075 1
1328 1328 2.5
1328 1330 1
1328 1332 1
1328 1333 -0.25
1328 1341 -1
1328 1342 -0.25
1328 1381 -1
1328 1634 -0.75
1329 1276 -1
1329 1278 -1
1329 1283 -1
1329 1292 1
1329 1327 1
1329 1329 2
1329 1334 1
1329 1343 -1
1329 1380 -1
1329 1582 1
1329 1633 -1
1330 1277 -1
1330 1279 -0.75
1330 1281 -1
1330 1283 -0.25
1330 1290 1
1330 1292 -0.25
1330 1328 1
1330 1330 2.5
1330 1332 1
1330 1334 -0.250000000000001
1330 1341 -1
1330 1343 -0.250000000000001
1330 1381 -0.75
1330 1583 1
1330 1634 -1
1331 1275 -1
1331 1276 -0.25
1331 1280 -0.75
1331 1282 -1
1331 1291 1
1331 1326 1
1331 1327 -0.250000000000001
1331 1331 2.5
1331 1333 1
1331 1342 -1
1331 1382 -0.75
1331 1581 1
1331 1582 -0.25
1331 1632 -1
1331 1633 -0.250000000000001
1332 1322 -1
1332 1324 -1
1332 1328 1
1332 1330 1
1332 1332 2
1332 1341 -1
1332 1375 1
1332 1381 -1
1332 1628 1
1332 1634 -1
1333 1320 -1
1333 1322 -0.25
1333 1325 -1
1333 1326 1
1333 1328 -0.25
1333 1331 1
1333 1333 2.5
1333 1342 -0.75
1333 1376 1
1333 1382 -1
1333 1626 1
1333 1628 -0.25
1333 1632 -1
1333 1634 -0.25
1334 1321 -1
1334 1323 -1
1334 1324 -0.250000000000001
1334 1327 1
1334 1329 1
1334 1330 -0.250000000000001
1334 1334 2.5
1334 1343 -0.75
1334 1374 1
1334 1375 -0.25
1334 1380 -1
1334 1381 -0.25
1334 1627 1
1334 1633 -1
1335 1029 -1
1335 1034 -1
1335 1036 -1
1335 1045 1
1335 1085 1
1335 1335 2
1335 1340 1
1335 1342 1
1335 1351 -1
1335 1391 -1
1335 1641 -1
1336 1030 -0.75
1336 1032 -1
1336 1034 -0.250000000000001
1336 1037 -1
1336 1046 1
1336 1083 1
1336 1085 -0.25
1336 1336 2.5
1336 1338 1
1336 1340 -0.250000000000001
1336 1343 1
1336 1352 -1
1336 1389 -1
1336 1391 -0.25
1336 1642 -0.75
1337 1031 -0.75
1337 1033 -1
1337 1035 -1
1337 1036 -0.25
1337 1044 1
1337 1045 -0.25
1337 1084 1
1337 1337 2.5
1337 1339 1
1337 1341 1
1337 1342 -0.25
1337 1350 -1
1337 1351 -0.25
1337 1390 -1
1337 1643 -0.75
1338 1285 -1
1338 1287 -1
1338 1292 -1
1338 1301 1
1338 1336 1
1338 1338 2
1338 1343 1
1338 1352 -1
1338 1389 -1
1338 1591 1
1338 1642 -1
1339 1286 -1
1339 1288 -0.75
1339 1290 -1
1339 1292 -0.25
1339 1299 1
1339 1301 -0.25
1339 1337 1
1339 1339 2.5
1339 1341 1
1339 1343 -0.250000000000001
1339 1350 -1
1339 1352 -0.250000000000001
1339 1390 -0.75
1339 1592 1
1339 1643 -1
1340 1284 -1
1340 1285 -0.25
1340 1289 -0.75
1340 1291 -1
1340 1300 1
1340 1335 1
1340 1336 -0.250000000000001
1340 1340 2.5
1340 1342 1
1340 1351 -1
1340 1391 -0.75
1340 1590 1
1340 1591 -0.25
1340 1641 -1
1340 1642 -0.250000000000001
1341 1328 -1
1341 1330 -1
1341 1332 -1
1341 1337 1
1341 1339 1
1341 1341 2
1341 1350 -1
1341 1381 1
1341 1390 -1
1341 1634 1
1341 1643 -1
1342 1326 -1
1342 1328 -0.25
1342 1331 -1
1342 1333 -0.75
1342 1335 1
1342 1337 -0.25
1342 1340 1
1342 1342 2.5
1342 1351 -0.75
1342 1382 1
1342 1391 -1
1342 1632 1
1342 1634 -0.25
1342 1641 -1
1342 1643 -0.25
1343 1327 -1
1343 1329 -1
1343 1330 -0.250000000000001
1343 1334 -0.75
1343 1336 1
1343 1338 1
1343 1339 -0.250000000000001
1343 1343 2.5
1343 1352 -0.75
1343 1380 1
1343 1381 -0.25
1343 1389 -1
1343 1390 -0.25
1343 1633 1
1343 1642 -1
1344 1038 -1
1344 1043 -1
1344 1045 -1
1344 1054 1
1344 1094 1
1344 1344 2
1344 1349 1
1344 1351 1
1344 1360 -1
1344 1400 -1
1344 1650 -1
1345 1039 -0.75
1345 1041 -1
1345 1043 -0.250000000000001
1345 1046 -1
1345 1055 1
1345 1092 1
1345 1094 -0.25
1345 1345 2.5
1345 1347 1
1345 1349 -0.250000000000001
1345 1352 1
1345 1361 -1
1345 1398 -1
1345 1400 -0.25
1345 1651 -0.75
1346 1040 -0.75
1346 1042 -1
1346 1044 -1
1346 1045 -0.25
1346 1053 1
1346 1054 -0.25
1346 1093 1
1346 1346 2.5
1346 1348 1
1346 1350 1
1346 1351 -0.25
1346 1359 -1
1346 1360 -0.25
1346 1399 -1
1346 1652 -0.75
1347 1294 -1
1347 1296 -1
1347 1301 -1
1347 1310 1
1347 1345 1
1347 1347 2
1347 1352 1
1347 1361 -1
1347 1398 -1
1347 1600 1
1347 1651 -1
1348 1295 -1
1348 1297 -0.75
1348 1299 -1
1348 1301 -0.25
1348 1308 1
1348 1310 -0.25
1348 1346 1
1348 1348 2.5
1348 1350 1
1348 1352 -0.250000000000001
1348 1359 -1
1348 1361 -0.250000000000001
1348 1399 -0.75
1348 1601 1
1348 1652 -1
1349 1293 -1
1349 1294 -0.25
1349 1298 -0.75
1349 1300 -1
1349 1309 1
1349 1344 1
1349 1345 -0.250000000000001
1349 1349 2.5
1349 1351 1
1349 1360 -1
1349 1400 -0.75
1349 1599 1
1349 1600 -0.25
1349 1650 -1
1349 1651 -0.250000000000001
1350 1337 -1
1350 1339 -1
1350 1341 -1
1350 1346 1
1350 1348 1
1350 1350 2
1350 1359 -1
1350 1390 1
1350 1399 -1
1350 1643 1
1350 1652 -1
1351 1335 -1
1351 1337 -0.25
1351 1340 -1
1351 1342 -0.75
1351 1344 1
1351 1346 -0.25
1351 1349 1
1351 1351 2.5
1351 1360 -0.75
1351 1391 1
1351 1400 -1
1351 1641 1
1351 1643 -0.25
1351 1650 -1
1351 1652 -0.25
1352 1336 -1
1352 1338 -1
1352 1339 -0.250000000000001
1352 1343 -0.75
1352 1345 1
1352 1347 1
1352 1348 -0.250000000000001
1352 1352 2.5
1352 1361 -0.75
1352 1389 1
1352 1390 -0.25
1352 1398 -1
1352 1399 -0.25
1352 1642 1
1352 1651 -1
1353 1047 -1
1353 1052 -1
1353 1054 -1
1353 1063 1
1353 1103 1
1353 1353 2
1353 1358 1
1353 1360 1
1353 1369 -1
1353 1409 -1
1353 1659 -1
1354 1048 -0.75
1354 1050 -1
1354 1052 -0.250000000000001
1354 1055 -1
1354 1064 1
1354 1101 1
1354 1103 -0.25
1354 1354 2.5
1354 1356 1
1354 1358 -0.250000000000001
1354 1361 1
1354 1370 -1
1354 1407 -1
1354 1409 -0.25
1354 1660 -0.75
1355 1049 -0.75
1355 1051 -1
1355 1053 -1
1355 1054 -0.25
1355 1062 1
1355 1063 -0.25
1355 1102 1
1355 1355 2.5
1355 1357 1
1355 1359 1
1355 1360 -0.25
1355 1368 -1
1355 1369 -0.25
1355 1408 -1
1355 1661 -0.75
1356 1303 -1
1356 1305 -1
1356 1310 -1
1356 1319 1
1356 1354 1
1356 1356 2
1356 1361 1
1356 1370 -1
1356 1407 -1
1356 1609 1
1356 1660 -1
1357 1304 -1
1357 1306 -0.75
1357 1308 -1
1357 1310 -0.25
1357 1317 1
1357 1319 -0.25
1357 1355 1
1357 1357 2.5
1357 1359 1
1357 1361 -0.250000000000001
1357 1368 -1
1357 1370 -0.250000000000001
1357 1408 -0.75
1357 1610 1
1357 1661 -1
1358 1302 -1
1358 1303 -0.25
1358 1307 -0.75
1358 1309 -1
1358 1318 1
1358 1353 1
1358 1354 -0.250000000000001
1358 1358 2.5
1358 1360 1
1358 1369 -1
1358 1409 -0.75
1358 1608 1
1358 1609 -0.25
1358 1659 -1
1358 1660 -0.250000000000001
1359 1346 -1
1359 1348 -1
1359 1350 -1
1359 1355 1
1359 1357 1
1359 1359 2
1359 1368 -1
1359 1399 1
1359 1408 -1
1359 1652 1
1359 1661 -1
1360 1344 -1
1360 1346 -0.25
1360 1349 -1
1360 1351 -0.75
1360 1353 1
1360 1355 -0.25
1360 1358 1
1360 1360 2.5
1360 1369 -0.75
1360 1400 1
1360 1409 -1
1360 1650 1
1360 1652 -0.25
1360 1659 -1
1360 1661 -0.25
1361 1345 -1
1361 1347 -1
1361 1348 -0.250000000000001
1361 1352 -0.75
1361 1354 1
1361 1356 1
1361 1357 -0.250000000000001
1361 1361 2.5
1361 1370 -0.75
1361 1398 1
1361 1399 -0.25
1361 1407 -1
1361 1408 -0.25
1361 1651 1
1361 1660 -1
1362 1056 -1
1362 1061 -1
1362 1063 -1
1362 1112 1
1362 1362 2
1362 1367 1
1362 1369 1
1362 1418 -1
1362 1668 -1
1363 1057 -0.75
1363 1059 -1
1363 1061 -0.250000000000001
1363 1064 -1
1363 1110 1
1363 1112 -0.25
1363 1363 2.5
1363 1365 1
1363 1367 -0.250000000000001
1363 1370 1
1363 1416 -1
1363 1418 -0.25
1363 1669 -0.75
1364 1058 -0.75
1364 1060 -1
1364 1062 -1
1364 1063 -0.25
1364 1111 1
1364 1364 2.5
1364 1366 1
1364 1368 1
1364 1369 -0.25
1364 1417 -1
1364 1670 -0.75
1365 1312 -1
1365 1314 -1
1365 1319 -1
1365 1363 1
1365 1365 2
1365 1370 1
1365 1416 -1
1365 1618 1
1365 1669 -1
1366 1313 -1
1366 1315 -0.75
1366 1317 -1
1366 1319 -0.25
1366 1364 1
1366 1366 2.5
1366 1368 1
1366 1370 -0.250000000000001
1366 1417 -0.75
1366 1619 1
1366 1670 -1
1367 1311 -1
1367 1312 -0.25
1367 1316 -0.75
1367 1318 -1
1367 1362 1
1367 1363 -0.250000000000001
1367 1367 2.5
1367 1369 1
1367 1418 -0.75
1367 1617 1
1367 1618 -0.25
1367 1668 -1
1367 1669 -0.250000000000001
1368 1355 -1
1368 1357 -1
1368 1359 -1
1368 1364 1
1368 1366 1
1368 1368 2
1368 1408 1
1368 1417 -1
1368 1661 1
1368 1670 -1
1369 1353 -1
1369 1355 -0.25
1369 1358 -1
1369 1360 -0.75
1369 1362 1
1369 1364 -0.25
1369 1367 1
1369 1369 2.5
1369 1409 1
1369 1418 -1
1369 1659 1
1369 1661 -0.25
1369 1668 -1
1369 1670 -0.25
1370 1354 -1
1370 1356 -1
1370 1357 -0.250000000000001
1370 1361 -0.75
1370 1363 1
1370 1365 1
1370 1366 -0.250000000000001
1370 1370 2.5
1370 1407 1
1370 1408 -0.25
1370 1416 -1
1370 1417 -0.25
1370 1660 1
1370 1669 -1
1371 1065 -1
1371 1070 -1
1371 1078 1
1371 1371 2
1371 1376 1
1371 1384 -1
1371 1677 -1
1372 1066 -0.75
1372 1068 -1
1372 1070 -0.25
1372 1079 1
1372 1372 2.5
1372 1374 1
1372 1376 -0.25
1372 1385 -1
1372 1678 -0.75
1373 1067 -0.75
1373 1069 -1
1373 1077 1
1373 1078 -0.25
1373 1373 2.5
1373 1375 1
1373 1383 -1
1373 1384 -0.25
1373 1679 -0.75
1374 1321 -1
1374 1323 -1
1374 1334 1
1374 1372 1
1374 1374 2
1374 1385 -1
1374 1627 1
1374 1678 -1
1375 1322 -1
1375 1324 -0.75
1375 1332 1
1375 1334 -0.25
1375 1373 1
1375 1375 2.5
1375 1383 -1
1375 1385 -0.25
1375 1628 1
1375 1679 -1
1376 1320 -1
1376 1321 -0.25
1376 1325 -0.75
1376 1333 1
1376 1371 1
1376 1372 -0.25
1376 1376 2.5
1376 1384 -1
1376 1626 1
1376 1627 -0.25
1376 1677 -1
1376 1678 -0.25
1377 1071 -1
1377 1076 -1
1377 1078 -1
1377 1087 1
1377 1377 2
1377 1382 1
1377 1384 1
1377 1393 -1
1377 1683 -1
1378 1072 -0.75
1378 1074 -1
1378 1076 -0.25
1378 1079 -1
1378 1088 1
1378 1378 2.5
1378 1380 1
1378 1382 -0.25
1378 1385 1
1378 1394 -1
1378 1684 -0.75
1379 1073 -0.75
1379 1075 -1
1379 1077 -1
1379 1078 -0.25
1379 1086 1
1379 1087 -0.25
1379 1379 2.5
1379 1381 1
1379 1383 1
1379 1384 -0.25
1379 1392 -1
1379 1393 -0.25
1379 1685 -0.75
1380 1327 -1
1380 1329 -1
1380 1334 -1
1380 1343 1
1380 1378 1
1380 1380 2
1380 1385 1
1380 1394 -1
1380 1633 1
1380 1684 -1
1381 1328 -1
1381 1330 -0.75
1381 1332 -1
1381 1334 -0.25
1381 1341 1
1381 1343 -0.25
1381 1379 1
1381 1381 2.5
1381 1383 1
1381 1385 -0.25
1381 1392 -1
1381 1394 -0.25
1381 1634 1
1381 1685 -1
1382 1326 -1
1382 1327 -0.25
1382 1331 -0.75
1382 1333 -1
1382 1342 1
1382 1377 1
1382 1378 -0.25
1382 1382 2.5
1382 1384 1
1382 1393 -1
1382 1632 1
1382 1633 -0.25
1382 1683 -1
1382 1684 -0.25
1383 1373 -1
1383 1375 -1
1383 1379 1
1383 1381 1
1383 1383 2
1383 1392 -1
1383 1679 1
1383 1685 -1
1384 1371 -1
1384 1373 -0.25
1384 1376 -1
1384 1377 1
1384 1379 -0.25
1384 1382 1
1384 1384 2.5
1384 1393 -0.75
1384 1677 1
1384 1679 -0.25
1384 1683 -1
1384 1685 -0.25
1385 1372 -1
1385 1374 -1
1385 1375 -0.25
1385 1378 1
1385 1380 1
1385 1381 -0.25
1385 1385 2.5
1385 1394 -0.75
1385 1678 1
1385 1684 -1
1386 1080 -1
1386 1085 -1
1386 1087 -1
1386 1096 1
1386 1386 2
1386 1391 1
1386 1393 1
1386 1402 -1
1386 1692 -1
1387 1081 -0.75
1387 1083 -1
1387 1085 -0.25
1387 1088 -1
1387 1097 1
1387 1387 2.5
1387 1389 1
1387 1391 -0.25
1387 1394 1
1387 1403 -1
1387 1693 -0.75
1388 1082 -0.75
1388 1084 -1
1388 1086 -1
1388 1087 -0.25
1388 1095 1
1388 1096 -0.25
1388 1388 2.5
1388 1390 1
1388 1392 1
1388 1393 -0.25
1388 1401 -1
1388 1402 -0.25
1388 1694 -0.75
1389 1336 -1
1389 1338 -1
1389 1343 -1
1389 1352 1
1389 1387 1
1389 1389 2
1389 1394 1
1389 1403 -1
1389 1642 1
1389 1693 -1
1390 1337 -1
1390 1339 -0.75
1390 1341 -1
1390 1343 -0.25
1390 1350 1
1390 1352 -0.25
1390 1388 1
1390 1390 2.5
1390 1392 1
1390 1394 -0.25
1390 1401 -1
1390 1403 -0.25
1390 1643 1
1390 1694 -1
1391 1335 -1
1391 1336 -0.25
1391 1340 -0.75
1391 1342 -1
1391 1351 1
1391 1386 1
1391 1387 -0.25
1391 1391 2.5
1391 1393 1
1391 1402 -1
1391 1641 1
1391 1642 -0.25
1391 1692 -1
1391 1693 -0.25
1392 1379 -1
1392 1381 -1
1392 1383 -1
1392 1388 1
1392 1390 1
1392 1392 2
1392 1401 -1
1392 1685 1
1392 1694 -1
1393 1377 -1
1393 1379 -0.25
1393 1382 -1
1393 1384 -0.75
1393 1386 1
1393 1388 -0.25
1393 1391 1
1393 1393 2.5
1393 1402 -0.75
1393 1683 1
1393 1685 -0.25
1393 1692 -1
1393 1694 -0.25
1394 1378 -1
1394 1380 -1
1394 1381 -0.25
1394 1385 -0.75
1394 1387 1
1394 1389 1
1394 1390 -0.25
1394 1394 2.5
1394 1403 -0.75
1394 1684 1
1394 1693 -1
1395 1089 -1
1395 1094 -1
1395 1096 -1
1395 1105 1
1395 1395 2
1395 1400 1
1395 1402 1
1395 1411 -1
1395 1701 -1
1396 1090 -0.75
1396 1092 -1
1396 1094 -0.25
1396 1097 -1
1396 1106 1
1396 1396 2.5
1396 1398 1
1396 1400 -0.25
1396 1403 1
1396 1412 -1
1396 1702 -0.75
1397 1091 -0.75
1397 1093 -1
1397 1095 -1
1397 1096 -0.25
1397 1104 1
1397 1105 -0.25
1397 1397 2.5
1397 1399 1
1397 1401 1
1397 1402 -0.25
1397 1410 -1
1397 1411 -0.25
1397 1703 -0.75
1398 1345 -1
1398 1347 -1
1398 1352 -1
1398 1361 1
1398 1396 1
1398 1398 2
1398 1403 1
1398 1412 -1
1398 1651 1
1398 1702 -1
1399 1346 -1
1399 1348 -0.75
1399 1350 -1
1399 1352 -0.25
1399 1359 1
1399 1361 -0.25
1399 1397 1
1399 1399 2.5
1399 1401 1
1399 1403 -0.25
1399 1410 -1
1399 1412 -0.25
1399 1652 1
1399 1703 -1
1400 1344 -1
1400 1345 -0.25
1400 1349 -0.75
1400 1351 -1
1400 1360 1
1400 1395 1
1400 1396 -0.25
1400 1400 2.5
1400 1402 1
1400 1411 -1
1400 1650 1
1400 1651 -0.25
1400 1701 -1
1400 1702 -0.25
1401 1388 -1
1401 1390 -1
1401 1392 -1
1401 1397 1
1401 1399 1
1401 1401 2
1401 1410 -1
1401 1694 1
1401 1703 -1
1402 1386 -1
1402 1388 -0.25
1402 1391 -1
1402 1393 -0.75
1402 1395 1
1402 1397 -0.25
1402 1400 1
1402 1402 2.5
1402 1411 -0.75
1402 1692 1
1402 1694 -0.25
1402 1701 -1
1402 1703 -0.25
1403 1387 -1
1403 1389 -1
1403 1390 -0.25
1403 1394 -0.75
1403 1396 1
1403 1398 1
1403 1399 -0.25
1403 1403 2.5
1403 1412 -0.75
1403 1693 1
1403 1702 -1
1404 1098 -1
1404 1103 -1
1404 1105 -1
1404 1114 1
1404 1404 2
1404 1409 1
1404 1411 1
1404 1420 -1
1404 1710 -1
1405 1099 -0.75
1405 1101 -1
1405 1103 -0.25
1405 1106 -1
1405 1115 1
1405 1405 2.5
1405 1407 1
1405 1409 -0.25
1405 1412 1
1405 1421 -1
1405 1711 -0.75
1406 1100 -0.75
1406 1102 -1
1406 1104 -1
1406 1105 -0.25
1406 1113 1
1406 1114 -0.25
1406 1406 2.5
1406 1408 1
1406 1410 1
1406 1411 -0.25
1406 1419 -1
1406 1420 -0.25
1406 1712 -0.75
1407 1354 -1
1407 1356 -1
1407 1361 -1
1407 1370 1
1407 1405 1
1407 1407 2
1407 1412 1
1407 1421 -1
1407 1660 1
1407 1711 -1
1408 1355 -1
1408 1357 -0.75
1408 1359 -1
1408 1361 -0.25
1408 1368 1
1408 1370 -0.25
1408 1406 1
1408 1408 2.5
1408 1410 1
1408 1412 -0.25
1408 1419 -1
1408 1421 -0.25
1408 1661 1
1408 1712 -1
1409 1353 -1
1409 1354 -0.25
1409 1358 -0.75
1409 1360 -1
1409 1369 1
1409 1404 1
1409 1405 -0.25
1409 1409 2.5
1409 1411 1
1409 1420 -1
1409 1659 1
1409 1660 -0.25
1409 1710 -1
1409 1711 -0.25
1410 1397 -1
1410 1399 -1
1410 1401 -1
1410 1406 1
1410 1408 1
1410 1410 2
1410 1419 -1
1410 1703 1
1410 1712 -1
1411 1395 -1
1411 1397 -0.25
1411 1400 -1
1411 1402 -0.75
1411 1404 1
1411 1406 -0.25
1411 1409 1
1411 1411 2.5
1411 1420 -0.75
1411 1701 1
1411 1703 -0.25
1411 1710 -1
1411 1712 -0.25
1412 1396 -1
1412 1398 -1
1412 1399 -0.25
1412 1403 -0.75
1412 1405 1
1412 1407 1
1412 1408 -0.25
1412 1412 2.5
1412 1421 -0.75
1412 1702 1
1412 1711 -1
1413 1107 -1
1413 1112 -1
1413 1114 -1
1413 1413 2
1413 1418 1
1413 1420 1
1413 1719 -1
1414 1108 -0.75
1414 1110 -1
1414 1112 -0.25
1414 1115 -1
1414 1414 2.5
1414 1416 1
1414 1418 -0.25
1414 1421 1
1414 1720 -0.75
1415 1109 -0.75
1415 1111 -1
1415 1113 -1
1415 1114 -0.25
1415 1415 2.5
1415 1417 1
1415 1419 1
1415 1420 -0.25
1415 1721 -0.75
1416 1363 -1
1416 1365 -1
1416 1370 -1
1416 1414 1
1416 1416 2
1416 1421 1
1416 1669 1
1416 1720 -1
1417 1364 -1
1417 1366 -0.75
1417 1368 -1
1417 1370 -0.25
1417 1415 1
1417 1417 2.5
1417 1419 1
1417 1421 -0.25
1417 1670 1
1417 1721 -1
1418 1362 -1
1418 1363 -0.25
1418 1367 -0.75
1418 1369 -1
1418 1413 1
1418 1414 -0.25
1418 1418 2.5
1418 1420 1
1418 1668 1
1418 1669 -0.25
1418 1719 -1
1418 1720 -0.25
1419 1406 -1
1419 1408 -1
1419 1410 -1
1419 1415 1
1419 1417 1
1419 1419 2
1419 1712 1
1419 1721 -1
1420 1404 -1
1420 1406 -0.25
1420 1409 -1
1420 1411 -0.75
1420 1413 1
1420 1415 -0.25
1420 1418 1
1420 1420 2.5
1420 1710 1
1420 1712 -0.25
1420 1719 -1
1420 1721 -0.25
1421 1405 -1
1421 1407 -1
1421 1408 -0.25
1421 1412 -0.75
1421 1414 1
1421 1416 1
1421 1417 -0.25
1421 1421 2.5
1421 1711 1
1421 1720 -1
1422 1422 1
1422 1426 1
1422 1436 -1
1422 1476 -1
1423 1423 1.25
1423 1427 1
1423 1434 -1
1423 1436 -0.25
1423 1477 -0.75
1424 1424 1.25
1424 1425 1
1424 1426 -0.25
1424 1435 -1
1424 1478 -0.75
1425 1118 -1
1425 1119 -1
1425 1129 1
1425 1172 1
1425 1424 1
1425 1425 2
1425 1435 -1
1425 1478 -1
1426 1116 -1
1426 1118 -0.25
1426 1120 -0.75
1426 1130 1
1426 1170 1
1426 1172 -0.25
1426 1422 1
1426 1424 -0.25
1426 1426 2.5
1426 1436 -1
1426 1476 -1
1426 1478 -0.25
1427 1117 -1
1427 1121 -0.75
1427 1128 1
1427 1129 -0.25
1427 1171 1
1427 1423 1
1427 1427 2.5
1427 1434 -1
1427 1435 -0.25
1427 1477 -1
1428 1428 1
1428 1432 1
1428 1436 1
1428 1445 -1
1428 1482 -1
1429 1429 1.25
1429 1433 1
1429 1434 1
1429 1436 -0.25
1429 1443 -1
1429 1445 -0.25
1429 1483 -0.75
1430 1430 1.25
1430 1431 1
1430 1432 -0.25
1430 1435 1
1430 1444 -1
1430 1484 -0.75
1431 1124 -1
1431 1125 -1
1431 1129 -1
1431 1138 1
1431 1178 1
1431 1430 1
1431 1431 2
1431 1435 1
1431 1444 -1
1431 1484 -1
1432 1122 -1
1432 1124 -0.25
1432 1126 -0.75
1432 1130 -1
1432 1139 1
1432 1176 1
1432 1178 -0.25
1432 1428 1
1432 1430 -0.25
1432 1432 2.5
1432 1436 1
1432 1445 -1
1432 1482 -1
1432 1484 -0.25
1433 1123 -1
1433 1127 -0.75
1433 1128 -1
1433 1129 -0.25
1433 1137 1
1433 1138 -0.25
1433 1177 1
1433 1429 1
1433 1433 2.5
1433 1434 1
1433 1435 -0.25
1433 1443 -1
1433 1444 -0.25
1433 1483 -1
1434 1423 -1
1434 1427 -1
1434 1429 1
1434 1433 1
1434 1434 2
1434 1443 -1
1434 1477 1
1434 1483 -1
1435 1424 -1
1435 1425 -1
1435 1427 -0.25
1435 1430 1
1435 1431 1
1435 1433 -0.25
1435 1435 2.5
1435 1444 -0.75
1435 1478 1
1435 1484 -1
1436 1422 -1
1436 1423 -0.25
1436 1426 -1
1436 1428 1
1436 1429 -0.25
1436 1432 1
1436 1436 2.5
1436 1445 -0.75
1436 1476 1
1436 1477 -0.25
1436 1482 -1
1436 1483 -0.25
1437 1437 1
1437 1441 1
1437 1445 1
1437 1454 -1
1437 1491 -1
1438 1438 1.25
1438 1442 1
1438 1443 1
1438 1445 -0.25
1438 1452 -1
1438 1454 -0.25
1438 1492 -0.75
1439 1439 1.25
1439 1440 1
1439 1441 -0.25
1439 1444 1
1439 1453 -1
1439 1493 -0.75
1440 1133 -1
1440 1134 -1
1440 1138 -1
1440 1147 1
1440 1187 1
1440 1439 1
1440 1440 2
1440 1444 1
1440 1453 -1
1440 1493 -1
1441 1131 -1
1441 1133 -0.25
1441 1135 -0.75
1441 1139 -1
1441 1148 1
1441 1185 1
1441 1187 -0.25
1441 1437 1
1441 1439 -0.25
1441 1441 2.5
1441 1445 1
1441 1454 -1
1441 1491 -1
1441 1493 -0.25
1442 1132 -1
1442 1136 -0.75
1442 1137 -1
1442 1138 -0.25
1442 1146 1
1442 1147 -0.25
1442 1186 1
1442 1438 1
1442 1442 2.5
1442 1443 1
1442 1444 -0.25
1442 1452 -1
1442 1453 -0.25
1442 1492 -1
1443 1429 -1
1443 1433 -1
1443 1434 -1
1443 1438 1
1443 1442 1
1443 1443 2
1443 1452 -1
1443 1483 1
1443 1492 -1
1444 1430 -1
1444 1431 -1
1444 1433 -0.25
1444 1435 -0.75
1444 1439 1
1444 1440 1
1444 1442 -0.25
1444 1444 2.5
1444 1453 -0.75
1444 1484 1
1444 1493 -1
1445 1428 -1
1445 1429 -0.25
1445 1432 -1
1445 1436 -0.75
1445 1437 1
1445 1438 -0.25
1445 1441 1
1445 1445 2.5
1445 1454 -0.75
1445 1482 1
1445 1483 -0.25
1445 1491 -1
1445 1492 -0.25
1446 1446 1
1446 1450 1
1446 1454 1
1446 1463 -1
1446 1500 -1
1447 1447 1.25
1447 1451 1
1447 1452 1
1447 1454 -0.25
1447 1461 -1
1447 1463 -0.25
1447 1501 -0.75
1448 1448 1.25
1448 1449 1
1448 1450 -0.25
1448 1453 1
1448 1462 -1
1448 1502 -0.75
1449 1142 -1
1449 1143 -1
1449 1147 -1
1449 1156 1
1449 1196 1
1449 1448 1
1449 1449 2
1449 1453 1
1449 1462 -1
1449 1502 -1
1450 1140 -1
1450 1142 -0.25
1450 1144 -0.75
1450 1148 -1
1450 1157 1
1450 1194 1
1450 1196 -0.25
1450 1446 1
1450 1448 -0.25
1450 1450 2.5
1450 1454 1
1450 1463 -1
1450 1500 -1
1450 1502 -0.25
1451 1141 -1
1451 1145 -0.75
1451 1146 -1
1451 1147 -0.25
1451 1155 1
1451 1156 -0.25
1451 1195 1
1451 1447 1
1451 1451 2.5
1451 1452 1
1451 1453 -0.25
1451 1461 -1
1451 1462 -0.25
1451 1501 -1
1452 1438 -1
1452 1442 -1
1452 1443 -1
1452 1447 1
1452 1451 1
1452 1452 2
1452 1461 -1
1452 1492 1
1452 1501 -1
1453 1439 -1
1453 1440 -1
1453 1442 -0.25
1453 1444 -0.75
1453 1448 1
1453 1449 1
1453 1451 -0.25
1453 1453 2.5
1453 1462 -0.75
1453 1493 1
1453 1502 -1
1454 1437 -1
1454 1438 -0.25
1454 1441 -1
1454 1445 -0.75
1454 1446 1
1454 1447 -0.25
1454 1450 1
1454 1454 2.5
1454 1463 -0.75
1454 1491 1
1454 1492 -0.25
1454 1500 -1
1454 1501 -0.25
1455 1455 1
1455 1459 1
1455 1463 1
1455 1472 -1
1455 1509 -1
1456 1456 1.25
1456 1460 1
1456 1461 1
1456 1463 -0.25
1456 1470 -1
1456 1472 -0.25
1456 1510 -0.75
1457 1457 1.25
1457 1458 1
1457 1459 -0.25
1457 1462 1
1457 1471 -1
1457 1511 -0.75
1458 1151 -1
1458 1152 -1
1458 1156 -1
1458 1165 1
1458 1205 1
1458 1457 1
1458 1458 2
1458 1462 1
1458 1471 -1
1458 1511 -1
1459 1149 -1
1459 1151 -0.25
1459 1153 -0.75
1459 1157 -1
1459 1166 1
1459 1203 1
1459 1205 -0.25
1459 1455 1
1459 1457 -0.25
1459 1459 2.5
1459 1463 1
1459 1472 -1
1459 1509 -1
1459 1511 -0.25
1460 1150 -1
1460 1154 -0.75
1460 1155 -1
1460 1156 -0.25
1460 1164 1
1460 1165 -0.25
1460 1204 1
1460 1456 1
1460 1460 2.5
1460 1461 1
1460 1462 -0.25
1460 1470 -1
1460 1471 -0.25
1460 1510 -1
1461 1447 -1
1461 1451 -1
1461 1452 -1
1461 1456 1
1461 1460 1
1461 1461 2
1461 1470 -1
1461 1501 1
1461 1510 -1
1462 1448 -1
1462 1449 -1
1462 1451 -0.25
1462 1453 -0.75
1462 1457 1
1462 1458 1
1462 1460 -0.25
1462 1462 2.5
1462 1471 -0.75
1462 1502 1
1462 1511 -1
1463 1446 -1
1463 1447 -0.25
1463 1450 -1
1463 1454 -0.75
1463 1455 1
1463 1456 -0.25
1463 1459 1
1463 1463 2.5
1463 1472 -0.75
1463 1500 1
1463 1501 -0.25
1463 1509 -1
1463 1510 -0.25
1464 1464 1
1464 1468 1
1464 1472 1
1464 1518 -1
1465 1465 1.25
1465 1469 1
1465 1470 1
1465 1472 -0.25
1465 1519 -0.75
1466 1466 1.25
1466 1467 1
1466 1468 -0.25
1466 1471 1
1466 1520 -0.75
1467 1160 -1
1467 1161 -1
1467 1165 -1
1467 1214 1
1467 1466 1
1467 1467 2
1467 1471 1
1467 1520 -1
1468 1158 -1
1468 1160 -0.25
1468 1162 -0.75
1468 1166 -1
1468 1212 1
1468 1214 -0.25
1468 1464 1
1468 1466 -0.25
1468 1468 2.5
1468 1472 1
1468 1518 -1
1468 1520 -0.25
1469 1159 -1
1469 1163 -0.75
1469 1164 -1
1469 1165 -0.25
1469 1213 1
1469 1465 1
1469 1469 2.5
1469 1470 1
1469 1471 -0.25
1469 1519 -1
1470 1456 -1
1470 1460 -1
1470 1461 -1
1470 1465 1
1470 1469 1
1470 1470 2
1470 1510 1
1470 1519 -1
1471 1457 -1
1471 1458 -1
1471 1460 -0.25
1471 1462 -0.75
1471 1466 1
1471 1467 1
1471 1469 -0.25
1471 1471 2.5
1471 1511 1
1471 1520 -1
1472 1455 -1
1472 1456 -0.25
1472 1459 -1
1472 1463 -0.75
1472 1464 1
1472 1465 -0.25
1472 1468 1
1472 1472 2.5
1472 1509 1
1472 1510 -0.25
1472 1518 -1
1472 1519 -0.25
1473 1167 -1
1473 1172 -1
1473 1180 1
1473 1223 1
1473 1473 2
1473 1478 1
1473 1486 -1
1473 1529 -1
1474 1168 -0.75
1474 1170 -1
1474 1172 -0.25
1474 1181 1
1474 1221 1
1474 1223 -0.25
1474 1474 2.5
1474 1476 1
1474 1478 -0.25
1474 1487 -1
1474 1527 -1
1474 1529 -0.25
1475 1169 -0.75
1475 1171 -1
1475 1179 1
1475 1180 -0.25
1475 1222 1
1475 1475 2.5
1475 1477 1
1475 1485 -1
1475 1486 -0.25
1475 1528 -1
1476 1422 -1
1476 1426 -1
1476 1436 1
1476 1474 1
1476 1476 2
1476 1487 -1
1476 1527 -1
1477 1423 -0.75
1477 1427 -1
1477 1434 1
1477 1436 -0.25
1477 1475 1
1477 1477 2.5
1477 1485 -1
1477 1487 -0.25
1477 1528 -0.75
1478 1424 -0.75
1478 1425 -1
1478 1426 -0.25
1478 1435 1
1478 1473 1
1478 1474 -0.25
1478 1478 2.5
1478 1486 -1
1478 1529 -0.75
1479 1173 -1
1479 1178 -1
1479 1180 -1
1479 1189 1
1479 1229 1
1479 1479 2
1479 1484 1
1479 1486 1
1479 1495 -1
1479 1535 -1
1480 1174 -0.75
1480 1176 -1
1480 1178 -0.25
1480 1181 -1
1480 1190 1
1480 1227 1
1480 1229 -0.25
1480 1480 2.5
1480 1482 1
1480 1484 -0.25
1480 1487 1
1480 1496 -1
1480 1533 -1
1480 1535 -0.25
1481 1175 -0.75
1481 1177 -1
1481 1179 -1
1481 1180 -0.25
1481 1188 1
1481 1189 -0.25
1481 1228 1
1481 1481 2.5
1481 1483 1
1481 1485 1
1481 1486 -0.25
1481 1494 -1
1481 1495 -0.25
1481 1534 -1
1482 1428 -1
1482 1432 -1
1482 1436 -1
1482 1445 1
1482 1480 1
1482 1482 2
1482 1487 1
1482 1496 -1
1482 1533 -1
1483 1429 -0.75
1483 1433 -1
1483 1434 -1
1483 1436 -0.25
1483 1443 1
1483 1445 -0.25
1483 1481 1
1483 1483 2.5
1483 1485 1
1483 1487 -0.25
1483 1494 -1
1483 1496 -0.25
1483 1534 -0.75
1484 1430 -0.75
1484 1431 -1
1484 1432 -0.25
1484 1435 -1
1484 1444 1
1484 1479 1
1484 1480 -0.25
1484 1484 2.5
1484 1486 1
1484 1495 -1
1484 1535 -0.75
1485 1475 -1
1485 1477 -1
1485 1481 1
1485 1483 1
1485 1485 2
1485 1494 -1
1485 1528 1
1485 1534 -1
1486 1473 -1
1486 1475 -0.25
1486 1478 -1
1486 1479 1
1486 1481 -0.25
1486 1484 1
1486 1486 2.5
1486 1495 -0.75
1486 1529 1
1486 1535 -1
1487 1474 -1
1487 1476 -1
1487 1477 -0.25
1487 1480 1
1487 1482 1
1487 1483 -0.25
1487 1487 2.5
1487 1496 -0.75
1487 1527 1
1487 1528 -0.25
1487 1533 -1
1487 1534 -0.25
1488 1182 -1
1488 1187 -1
1488 1189 -1
1488 1198 1
1488 1238 1
1488 1488 2
1488 1493 1
1488 1495 1
1488 1504 -1
1488 1544 -1
1489 1183 -0.75
1489 1185 -1
1489 1187 -0.25
1489 1190 -1
1489 1199 1
1489 1236 1
1489 1238 -0.25
1489 1489 2.5
1489 1491 1
1489 1493 -0.25
1489 1496 1
1489 1505 -1
1489 1542 -1
1489 1544 -0.25
1490 1184 -0.75
1490 1186 -1
1490 1188 -1
1490 1189 -0.25
1490 1197 1
1490 1198 -0.25
1490 1237 1
1490 1490 2.5
1490 1492 1
1490 1494 1
1490 1495 -0.25
1490 1503 -1
1490 1504 -0.25
1490 1543 -1
1491 1437 -1
1491 1441 -1
1491 1445 -1
1491 1454 1
1491 1489 1
1491 1491 2
1491 1496 1
1491 1505 -1
1491 1542 -1
1492 1438 -0.75
1492 1442 -1
1492 1443 -1
1492 1445 -0.25
1492 1452 1
1492 1454 -0.25
1492 1490 1
1492 1492 2.5
1492 1494 1
1492 1496 -0.25
1492 1503 -1
1492 1505 -0.25
1492 1543 -0.75
1493 1439 -0.75
1493 1440 -1
1493 1441 -0.25
1493 1444 -1
1493 1453 1
1493 1488 1
1493 1489 -0.25
1493 1493 2.5
1493 1495 1
1493 1504 -1
1493 1544 -0.75
1494 1481 -1
1494 1483 -1
1494 1485 -1
1494 1490 1
1494 1492 1
1494 1494 2
1494 1503 -1
1494 1534 1
1494 1543 -1
1495 1479 -1
1495 1481 -0.25
1495 1484 -1
1495 1486 -0.75
1495 1488 1
1495 1490 -0.25
1495 1493 1
1495 1495 2.5
1495 1504 -0.75
1495 1535 1
1495 1544 -1
1496 1480 -1
1496 1482 -1
1496 1483 -0.25
1496 1487 -0.75
1496 1489 1
1496 1491 1
1496 1492 -0.25
1496 1496 2.5
1496 1505 -0.75
1496 1533 1
1496 1534 -0.25
1496 1542 -1
1496 1543 -0.25
1497 1191 -1
1497 1196 -1
1497 1198 -1
1497 1207 1
1497 1247 1
1497 1497 2
1497 1502 1
1497 1504 1
1497 1513 -1
1497 1553 -1
1498 1192 -0.75
1498 1194 -1
1498 1196 -0.25
1498 1199 -1
1498 1208 1
1498 1245 1
1498 1247 -0.25
1498 1498 2.5
1498 1500 1
1498 1502 -0.25
1498 1505 1
1498 1514 -1
1498 1551 -1
1498 1553 -0.25
1499 1193 -0.75
1499 1195 -1
1499 1197 -1
1499 1198 -0.25
1499 1206 1
1499 1207 -0.25
1499 1246 1
1499 1499 2.5
1499 1501 1
1499 1503 1
1499 1504 -0.25
1499 1512 -1
1499 1513 -0.25
1499 1552 -1
1500 1446 -1
1500 1450 -1
1500 1454 -1
1500 1463 1
1500 1498 1
1500 1500 2
1500 1505 1
1500 1514 -1
1500 1551 -1
1501 1447 -0.75
1501 1451 -1
1501 1452 -1
1501 1454 -0.25
1501 1461 1
1501 1463 -0.25
1501 1499 1
1501 1501 2.5
1501 1503 1
1501 1505 -0.25
1501 1512 -1
1501 1514 -0.25
1501 1552 -0.75
1502 1448 -0.75
1502 1449 -1
1502 1450 -0.25
1502 1453 -1
1502 1462 1
1502 1497 1
1502 1498 -0.25
1502 1502 2.5
1502 1504 1
1502 1513 -1
1502 1553 -0.75
1503 1490 -1
1503 1492 -1
1503 1494 -1
1503 1499 1
1503 1501 1
1503 1503 2
1503 1512 -1
1503 1543 1
1503 1552 -1
1504 1488 -1
1504 1490 -0.25
1504 1493 -1
1504 1495 -0.75
1504 1497 1
1504 1499 -0.25
1504 1502 1
1504 1504 2.5
1504 1513 -0.75
1504 1544 1
1504 1553 -1
1505 1489 -1
1505 1491 -1
1505 1492 -0.25
1505 1496 -0.75
1505 1498 1
1505 1500 1
1505 1501 -0.25
1505 1505 2.5
1505 1514 -0.75
1505 1542 1
1505 1543 -0.25
1505 1551 -1
1505 1552 -0.25
1506 1200 -1
1506 1205 -1
1506 1207 -1
1506 1216 1
1506 1256 1
1506 1506 2
1506 1511 1
1506 1513 1
1506 1522 -1
1506 1562 -1
1507 1201 -0.75
1507 1203 -1
1507 1205 -0.25
1507 1208 -1
1507 1217 1
1507 1254 1
1507 1256 -0.25
1507 1507 2.5
1507 1509 1
1507 1511 -0.25
1507 1514 1
1507 1523 -1
1507 1560 -1
1507 1562 -0.25
1508 1202 -0.75
1508 1204 -1
1508 1206 -1
1508 1207 -0.25
1508 1215 1
1508 1216 -0.25
1508 1255 1
1508 1508 2.5
1508 1510 1
1508 1512 1
1508 1513 -0.25
1508 1521 -1
1508 1522 -0.25
1508 1561 -1
1509 1455 -1
1509 1459 -1
1509 1463 -1
1509 1472 1
1509 1507 1
1509 1509 2
1509 1514 1
1509 1523 -1
1509 1560 -1
1510 1456 -0.75
1510 1460 -1
1510 1461 -1
1510 1463 -0.25
1510 1470 1
1510 1472 -0.25
1510 1508 1
1510 1510 2.5
1510 1512 1
1510 1514 -0.25
1510 1521 -1
1510 1523 -0.25
1510 1561 -0.75
1511 1457 -0.75
1511 1458 -1
1511 1459 -0.25
1511 1462 -1
1511 1471 1
1511 1506 1
1511 1507 -0.25
1511 1511 2.5
1511 1513 1
1511 1522 -1
1511 1562 -0.75
1512 1499 -1
1512 1501 -1
1512 1503 -1
1512 1508 1
1512 1510 1
1512 1512 2
1512 1521 -1
1512 1552 1
1512 1561 -1
1513 1497 -1
1513 1499 -0.25
1513 1502 -1
1513 1504 -0.75
1513 1506 1
1513 1508 -0.25
1513 1511 1
1513 1513 2.5
1513 1522 -0.75
1513 1553 1
1513 1562 -1
1514 1498 -1
1514 1500 -1
1514 1501 -0.25
1514 1505 -0.75
1514 1507 1
1514 1509 1
1514 1510 -0.25
1514 1514 2.5
1514 1523 -0.75
1514 1551 1
1514 1552 -0.25
1514 1560 -1
1514 1561 -0.25
1515 1209 -1
1515 1214 -1
1515 1216 -1
1515 1265 1
1515 1515 2
1515 1520 1
1515 1522 1
1515 1571 -1
1516 1210 -0.75
1516 1212 -1
1516 1214 -0.25
1516 1217 -1
1516 1263 1
1516 1265 -0.25
1516 1516 2.5
1516 1518 1
1516 1520 -0.25
1516 1523 1
1516 1569 -1
1516 1571 -0.25
1517 1211 -0.75
1517 1213 -1
1517 1215 -1
1517 1216 -0.25
1517 1264 1
1517 1517 2.5
1517 1519 1
1517 1521 1
1517 1522 -0.25
1517 1570 -1
1518 1464 -1
1518 1468 -1
1518 1472 -1
1518 1516 1
1518 1518 2
1518 1523 1
1518 1569 -1
1519 1465 -0.75
1519 1469 -1
1519 1470 -1
1519 1472 -0.25
1519 1517 1
1519 1519 2.5
1519 1521 1
1519 1523 -0.25
1519 1570 -0.75
1520 1466 -0.75
1520 1467 -1
1520 1468 -0.25
1520 1471 -1
1520 1515 1
1520 1516 -0.25
1520 1520 2.5
1520 1522 1
1520 1571 -0.75
1521 1508 -1
1521 1510 -1
1521 1512 -1
1521 1517 1
1521 1519 1
1521 1521 2
1521 1561 1
1521 1570 -1
1522 1506 -1
1522 1508 -0.25
1522 1511 -1
1522 1513 -0.75
1522 1515 1
1522 1517 -0.25
1522 1520 1
1522 1522 2.5
1522 1562 1
1522 1571 -1
1523 1507 -1
1523 1509 -1
1523 1510 -0.25
1523 1514 -0.75
1523 1516 1
1523 1518 1
1523 1519 -0.25
1523 1523 2.5
1523 1560 1
1523 1561 -0.25
1523 1569 -1
1523 1570 -0.25
1524 1218 -1
1524 1223 -1
1524 1231 1
1524 1274 1
1524 1524 2
1524 1529 1
1524 1537 -1
1524 1580 -1
1525 1219 -0.75
1525 1221 -1
1525 1223 -0.25
1525 1232 1
1525 1272 1
1525 1274 -0.25
1525 1525 2.5
1525 1527 1
1525 1529 -0.25
1525 1538 -1
1525 1578 -1
1525 1580 -0.25
1526 1220 -0.75
1526 1222 -1
1526 1230 1
1526 1231 -0.25
1526 1273 1
1526 1526 2.5
1526 1528 1
1526 1536 -1
1526 1537 -0.25
1526 1579 -1
1527 1474 -1
1527 1476 -1
1527 1487 1
1527 1525 1
1527 1527 2
1527 1538 -1
1527 1578 -1
1528 1475 -1
1528 1477 -0.75
1528 1485 1
1528 1487 -0.25
1528 1526 1
1528 1528 2.5
1528 1536 -1
1528 1538 -0.25
1528 1579 -0.75
1529 1473 -1
1529 1474 -0.25
1529 1478 -0.75
1529 1486 1
1529 1524 1
1529 1525 -0.25
1529 1529 2.5
1529 1537 -1
1529 1580 -0.75
1530 1224 -1
1530 1229 -1
1530 1231 -1
1530 1240 1
1530 1280 1
1530 1530 2
1530 1535 1
1530 1537 1
1530 1546 -1
1530 1586 -1
1531 1225 -0.75
1531 1227 -1
1531 1229 -0.25
1531 1232 -1
1531 1241 1
1531 1278 1
1531 1280 -0.25
1531 1531 2.5
1531 1533 1
1531 1535 -0.25
1531 1538 1
1531 1547 -1
1531 1584 -1
1531 1586 -0.25
1532 1226 -0.75
1532 1228 -1
1532 1230 -1
1532 1231 -0.25
1532 1239 1
1532 1240 -0.25
1532 1279 1
1532 1532 2.5
1532 1534 1
1532 1536 1
1532 1537 -0.25
1532 1545 -1
1532 1546 -0.25
1532 1585 -1
1533 1480 -1
1533 1482 -1
1533 1487 -1
1533 1496 1
1533 1531 1
1533 1533 2
1533 1538 1
1533 1547 -1
1533 1584 -1
1534 1481 -1
1534 1483 -0.75
1534 1485 -1
1534 1487 -0.25
1534 1494 1
1534 1496 -0.25
1534 1532 1
1534 1534 2.5
1534 1536 1
1534 1538 -0.25
1534 1545 -1
1534 1547 -0.25
1534 1585 -0.75
1535 1479 -1
1535 1480 -0.25
1535 1484 -0.75
1535 1486 -1
1535 1495 1
1535 1530 1
1535 1531 -0.25
1535 1535 2.5
1535 1537 1
1535 1546 -1
1535 1586 -0.75
1536 1526 -1
1536 1528 -1
1536 1532 1
1536 1534 1
1536 1536 2
1536 1545 -1
1536 1579 1
1536 1585 -1
1537 1524 -1
1537 1526 -0.25
1537 1529 -1
1537 1530 1
1537 1532 -0.25
1537 1535 1
1537 1537 2.5
1537 1546 -0.75
1537 1580 1
1537 1586 -1
1538 1525 -1
1538 1527 -1
1538 1528 -0.25
1538 1531 1
1538 1533 1
1538 1534 -0.25
1538 1538 2.5
1538 1547 -0.75
1538 1578 1
1538 1579 -0.25
1538 1584 -1
1538 1585 -0.25
1539 1233 -1
1539 1238 -1
1539 1240 -1
1539 1249 1
1539 1289 1
1539 1539 2
1539 1544 1
1539 1546 1
1539 1555 -1
1539 1595 -1
1540 1234 -0.75
1540 1236 -1
1540 1238 -0.25
1540 1241 -1
1540 1250 1
1540 1287 1
1540 1289 -0.25
1540 1540 2.5
1540 1542 1
1540 1544 -0.25
1540 1547 1
1540 1556 -1
1540 1593 -1
1540 1595 -0.25
1541 1235 -0.75
1541 1237 -1
1541 1239 -1
1541 1240 -0.25
1541 1248 1
1541 1249 -0.25
1541 1288 1
1541 1541 2.5
1541 1543 1
1541 1545 1
1541 1546 -0.25
1541 1554 -1
1541 1555 -0.25
1541 1594 -1
1542 1489 -1
1542 1491 -1
1542 1496 -1
1542 1505 1
1542 1540 1
1542 1542 2
1542 1547 1
1542 1556 -1
1542 1593 -1
1543 1490 -1
1543 1492 -0.75
1543 1494 -1
1543 1496 -0.25
1543 1503 1
1543 1505 -0.25
1543 1541 1
1543 1543 2.5
1543 1545 1
1543 1547 -0.25
1543 1554 -1
1543 1556 -0.25
1543 1594 -0.75
1544 1488 -1
1544 1489 -0.25
1544 1493 -0.75
1544 1495 -1
1544 1504 1
1544 1539 1
1544 1540 -0.25
1544 1544 2.5
1544 1546 1
1544 1555 -1
1544 1595 -0.75
1545 1532 -1
1545 1534 -1
1545 1536 -1
1545 1541 1
1545 1543 1
1545 1545 2
1545 1554 -1
1545 1585 1
1545 1594 -1
1546 1530 -1
1546 1532 -0.25
1546 1535 -1
1546 1537 -0.75
1546 1539 1
1546 1541 -0.25
1546 1544 1
1546 1546 2.5
1546 1555 -0.75
1546 1586 1
1546 1595 -1
1547 1531 -1
1547 1533 -1
1547 1534 -0.25
1547 1538 -0.75
1547 1540 1
1547 1542 1
1547 1543 -0.25
1547 1547 2.5
1547 1556 -0.75
1547 1584 1
1547 1585 -0.25
1547 1593 -1
1547 1594 -0.25
1548 1242 -1
1548 1247 -1
1548 1249 -1
1548 1258 1
1548 1298 1
1548 1548 2
1548 1553 1
1548 1555 1
1548 1564 -1
1548 1604 -1
1549 1243 -0.75
1549 1245 -1
1549 1247 -0.25
1549 1250 -1
1549 1259 1
1549 1296 1
1549 1298 -0.25
1549 1549 2.5
1549 1551 1
1549 1553 -0.25
1549 1556 1
1549 1565 -1
1549 1602 -1
1549 1604 -0.25
1550 1244 -0.75
1550 1246 -1
1550 1248 -1
1550 1249 -0.25
1550 1257 1
1550 1258 -0.25
1550 1297 1
1550 1550 2.5
1550 1552 1
1550 1554 1
1550 1555 -0.25
1550 1563 -1
1550 1564 -0.25
1550 1603 -1
1551 1498 -1
1551 1500 -1
1551 1505 -1
1551 1514 1
1551 1549 1
1551 1551 2
1551 1556 1
1551 1565 -1
1551 1602 -1
1552 1499 -1
1552 1501 -0.75
1552 1503 -1
1552 1505 -0.25
1552 1512 1
1552 1514 -0.25
1552 1550 1
1552 1552 2.5
1552 1554 1
1552 1556 -0.25
1552 1563 -1
1552 1565 -0.25
1552 1603 -0.75
1553 1497 -1
1553 1498 -0.25
1553 1502 -0.75
1553 1504 -1
1553 1513 1
1553 1548 1
1553 1549 -0.25
1553 1553 2.5
1553 1555 1
1553 1564 -1
1553 1604 -0.75
1554 1541 -1
1554 1543 -1
1554 1545 -1
1554 1550 1
1554 1552 1
1554 1554 2
1554 1563 -1
1554 1594 1
1554 1603 -1
1555 1539 -1
1555 1541 -0.25
1555 1544 -1
1555 1546 -0.75
1555 1548 1
1555 1550 -0.25
1555 1553 1
1555 1555 2.5
1555 1564 -0.75
1555 1595 1
1555 1604 -1
1556 1540 -1
1556 1542 -1
1556 1543 -0.25
1556 1547 -0.75
1556 1549 1
1556 1551 1
1556 1552 -0.25
1556 1556 2.5
1556 1565 -0.75
1556 1593 1
1556 1594 -0.25
1556 1602 -1
1556 1603 -0.25
1557 1251 -1
1557 1256 -1
1557 1258 -1
1557 1267 1
1557 1307 1
1557 1557 2
1557 1562 1
1557 1564 1
1557 1573 -1
1557 1613 -1
1558 1252 -0.75
1558 1254 -1
1558 1256 -0.25
1558 1259 -1
1558 1268 1
1558 1305 1
1558 1307 -0.25
1558 1558 2.5
1558 1560 1
1558 1562 -0.25
1558 1565 1
1558 1574 -1
1558 1611 -1
1558 1613 -0.25
1559 1253 -0.75
1559 1255 -1
1559 1257 -1
1559 1258 -0.25
1559 1266 1
1559 1267 -0.25
1559 1306 1
1559 1559 2.5
1559 1561 1
1559 1563 1
1559 1564 -0.25
1559 1572 -1
1559 1573 -0.25
1559 1612 -1
1560 1507 -1
1560 1509 -1
1560 1514 -1
1560 1523 1
1560 1558 1
1560 1560 2
1560 1565 1
1560 1574 -1
1560 1611 -1
1561 1508 -1
1561 1510 -0.75
1561 1512 -1
1561 1514 -0.25
1561 1521 1
1561 1523 -0.25
1561 1559 1
1561 1561 2.5
1561 1563 1
1561 1565 -0.25
1561 1572 -1
1561 1574 -0.25
1561 1612 -0.75
1562 1506 -1
1562 1507 -0.25
1562 1511 -0.75
1562 1513 -1
1562 1522 1
1562 1557 1
1562 1558 -0.25
1562 1562 2.5
1562 1564 1
1562 1573 -1
1562 1613 -0.75
1563 1550 -1
1563 1552 -1
1563 1554 -1
1563 1559 1
1563 1561 1
1563 1563 2
1563 1572 -1
1563 1603 1
1563 1612 -1
1564 1548 -1
1564 1550 -0.25
1564 1553 -1
1564 1555 -0.75
1564 1557 1
1564 1559 -0.25
1564 1562 1
1564 1564 2.5
1564 1573 -0.75
1564 1604 1
1564 1613 -1
1565 1549 -1
1565 1551 -1
1565 1552 -0.25
1565 1556 -0.75
1565 1558 1
1565 1560 1
1565 1561 -0.25
1565 1565 2.5
1565 1574 -0.75
1565 1602 1
1565 1603 -0.25
1565 1611 -1
1565 1612 -0.25
1566 1260 -1
1566 1265 -1
1566 1267 -1
1566 1316 1
1566 1566 2
1566 1571 1
1566 1573 1
1566 1622 -1
1567 1261 -0.75
1567 1263 -1
1567 1265 -0.25
1567 1268 -1
1567 1314 1
1567 1316 -0.25
1567 1567 2.5
1567 1569 1
1567 1571 -0.25
1567 1574 1
1567 1620 -1
1567 1622 -0.25
1568 1262 -0.75
1568 1264 -1
1568 1266 -1
1568 1267 -0.25
1568 1315 1
1568 1568 2.5
1568 1570 1
1568 1572 1
1568 1573 -0.25
1568 1621 -1
1569 1516 -1
1569 1518 -1
1569 1523 -1
1569 1567 1
1569 1569 2
1569 1574 1
1569 1620 -1
1570 1517 -1
1570 1519 -0.75
1570 1521 -1
1570 1523 -0.25
1570 1568 1
1570 1570 2.5
1570 1572 1
1570 1574 -0.25
1570 1621 -0.75
1571 1515 -1
1571 1516 -0.25
1571 1520 -0.75
1571 1522 -1
1571 1566 1
1571 1567 -0.25
1571 1571 2.5
1571 1573 1
1571 1622 -0.75
1572 1559 -1
1572 1561 -1
1572 1563 -1
1572 1568 1
1572 1570 1
1572 1572 2
1572 1612 1
1572 1621 -1
1573 1557 -1
1573 1559 -0.25
1573 1562 -1
1573 1564 -0.75
1573 1566 1
1573 1568 -0.25
1573 1571 1
1573 1573 2.5
1573 1613 1
1573 1622 -1
1574 1558 -1
1574 1560 -1
1574 1561 -0.25
1574 1565 -0.75
1574 1567 1
1574 1569 1
1574 1570 -0.25
1574 1574 2.5
1574 1611 1
1574 1612 -0.25
1574 1620 -1
1574 1621 -0.25
1575 1269 -1
1575 1274 -1
1575 1282 1
1575 1325 1
1575 1575 2
1575 1580 1
1575 1588 -1
1575 1631 -1
1576 1270 -0.75
1576 1272 -1
1576 1274 -0.25
1576 1283 1
1576 1323 1
1576 1325 -0.25
1576 1576 2.5
1576 1578 1
1576 1580 -0.25
1576 1589 -1
1576 1629 -1
1576 1631 -0.25
1577 1271 -0.75
1577 1273 -1
1577 1281 1
1577 1282 -0.25
1577 1324 1
1577 1577 2.5
1577 1579 1
1577 1587 -1
1577 1588 -0.25
1577 1630 -1
1578 1525 -1
1578 1527 -1
1578 1538 1
1578 1576 1
1578 1578 2
1578 1589 -1
1578 1629 -1
1579 1526 -1
1579 1528 -0.75
1579 1536 1
1579 1538 -0.25
1579 1577 1
1579 1579 2.5
1579 1587 -1
1579 1589 -0.25
1579 1630 -0.75
1580 1524 -1
1580 1525 -0.25
1580 1529 -0.75
1580 1537 1
1580 1575 1
1580 1576 -0.25
1580 1580 2.5
1580 1588 -1
1580 1631 -0.75
1581 1275 -1
1581 1280 -1
1581 1282 -1
1581 1291 1
1581 1331 1
1581 1581 2
1581 1586 1
1581 1588 1
1581 1597 -1
1581 1637 -1
1582 1276 -0.75
1582 1278 -1
1582 1280 -0.25
1582 1283 -1
1582 1292 1
1582 1329 1
1582 1331 -0.25
1582 1582 2.5
1582 1584 1
1582 1586 -0.25
1582 1589 1
1582 1598 -1
1582 1635 -1
1582 1637 -0.25
1583 1277 -0.75
1583 1279 -1
1583 1281 -1
1583 1282 -0.25
1583 1290 1
1583 1291 -0.25
1583 1330 1
1583 1583 2.5
1583 1585 1
1583 1587 1
1583 1588 -0.25
1583 1596 -1
1583 1597 -0.25
1583 1636 -1
1584 1531 -1
1584 1533 -1
1584 1538 -1
1584 1547 1
1584 1582 1
1584 1584 2
1584 1589 1
1584 1598 -1
1584 1635 -1
1585 1532 -1
1585 1534 -0.75
1585 1536 -1
1585 1538 -0.25
1585 1545 1
1585 1547 -0.25
1585 1583 1
1585 1585 2.5
1585 1587 1
1585 1589 -0.25
1585 1596 -1
1585 1598 -0.25
1585 1636 -0.75
1586 1530 -1
1586 1531 -0.25
1586 1535 -0.75
1586 1537 -1
1586 1546 1
1586 1581 1
1586 1582 -0.25
1586 1586 2.5
1586 1588 1
1586 1597 -1
1586 1637 -0.75
1587 1577 -1
1587 1579 -1
1587 1583 1
1587 1585 1
1587 1587 2
1587 1596 -1
1587 1630 1
1587 1636 -1
1588 1575 -1
1588 1577 -0.25
1588 1580 -1
1588 1581 1
1588 1583 -0.25
1588 1586 1
1588 1588 2.5
1588 1597 -0.75
1588 1631 1
1588 1637 -1
1589 1576 -1
1589 1578 -1
1589 1579 -0.25
1589 1582 1
1589 1584 1
1589 1585 -0.25
1589 1589 2.5
1589 1598 -0.75
1589 1629 1
1589 1630 -0.25
1589 1635 -1
1589 1636 -0.25
1590 1284 -1
1590 1289 -1
1590 1291 -1
1590 1300 1
1590 1340 1
1590 1590 2
1590 1595 1
1590 1597 1
1590 1606 -1
1590 1646 -1
1591 1285 -0.75
1591 1287 -1
1591 1289 -0.25
1591 1292 -1
1591 1301 1
1591 1338 1
1591 1340 -0.25
1591 1591 2.5
1591 1593 1
1591 1595 -0.25
1591 1598 1
1591 1607 -1
1591 1644 -1
1591 1646 -0.25
1592 1286 -0.75
1592 1288 -1
1592 1290 -1
1592 1291 -0.25
1592 1299 1
1592 1300 -0.25
1592 1339 1
1592 1592 2.5
1592 1594 1
1592 1596 1
1592 1597 -0.25
1592 1605 -1
1592 1606 -0.25
1592 1645 -1
1593 1540 -1
1593 1542 -1
1593 1547 -1
1593 1556 1
1593 1591 1
1593 1593 2
1593 1598 1
1593 1607 -1
1593 1644 -1
1594 1541 -1
1594 1543 -0.75
1594 1545 -1
1594 1547 -0.25
1594 1554 1
1594 1556 -0.25
1594 1592 1
1594 1594 2.5
1594 1596 1
1594 1598 -0.25
1594 1605 -1
1594 1607 -0.25
1594 1645 -0.75
1595 1539 -1
1595 1540 -0.25
1595 1544 -0.75
1595 1546 -1
1595 1555 1
1595 1590 1
1595 1591 -0.25
1595 1595 2.5
1595 1597 1
1595 1606 -1
1595 1646 -0.75
1596 1583 -1
1596 1585 -1
1596 1587 -1
1596 1592 1
1596 1594 1
1596 1596 2
1596 1605 -1
1596 1636 1
1596 1645 -1
1597 1581 -1
1597 1583 -0.25
1597 1586 -1
1597 1588 -0.75
1597 1590 1
1597 1592 -0.25
1597 1595 1
1597 1597 2.5
1597 1606 -0.75
1597 1637 1
1597 1646 -1
1598 1582 -1
1598 1584 -1
1598 1585 -0.25
1598 1589 -0.75
1598 1591 1
1598 1593 1
1598 1594 -0.25
1598 1598 2.5
1598 1607 -0.75
1598 1635 1
1598 1636 -0.25
1598 1644 -1
1598 1645 -0.25
1599 1293 -1
1599 1298 -1
1599 1300 -1
1599 1309 1
1599 1349 1
1599 1599 2
1599 1604 1
1599 1606 1
1599 1615 -1
1599 1655 -1
1600 1294 -0.75
1600 1296 -1
1600 1298 -0.25
1600 1301 -1
1600 1310 1
1600 1347 1
1600 1349 -0.25
1600 1600 2.5
1600 1602 1
1600 1604 -0.25
1600 1607 1
1600 1616 -1
1600 1653 -1
1600 1655 -0.25
1601 1295 -0.75
1601 1297 -1
1601 1299 -1
1601 1300 -0.25
1601 1308 1
1601 1309 -0.25
1601 1348 1
1601 1601 2.5
1601 1603 1
1601 1605 1
1601 1606 -0.25
1601 1614 -1
1601 1615 -0.25
1601 1654 -1
1602 1549 -1
1602 1551 -1
1602 1556 -1
1602 1565 1
1602 1600 1
1602 1602 2
1602 1607 1
1602 1616 -1
1602 1653 -1
1603 1550 -1
1603 1552 -0.75
1603 1554 -1
1603 1556 -0.25
1603 1563 1
1603 1565 -0.25
1603 1601 1
1603 1603 2.5
1603 1605 1
1603 1607 -0.25
1603 1614 -1
1603 1616 -0.25
1603 1654 -0.75
1604 1548 -1
1604 1549 -0.25
1604 1553 -0.75
1604 1555 -1
1604 1564 1
1604 1599 1
1604 1600 -0.25
1604 1604 2.5
1604 1606 1
1604 1615 -1
1604 1655 -0.75
1605 1592 -1
1605 1594 -1
1605 1596 -1
1605 1601 1
1605 1603 1
1605 1605 2
1605 1614 -1
1605 1645 1
1605 1654 -1
1606 1590 -1
1606 1592 -0.25
1606 1595 -1
1606 1597 -0.75
1606 1599 1
1606 1601 -0.25
1606 1604 1
1606 1606 2.5
1606 1615 -0.75
1606 1646 1
1606 1655 -1
1607 1591 -1
1607 1593 -1
1607 1594 -0.25
1607 1598 -0.75
1607 1600 1
1607 1602 1
1607 1603 -0.25
1607 1607 2.5
1607 1616 -0.75
1607 1644 1
1607 1645 -0.25
1607 1653 -1
1607 1654 -0.25
1608 1302 -1
1608 1307 -1
1608 1309 -1
1608 1318 1
1608 1358 1
1608 1608 2
1608 1613 1
1608 1615 1
1608 1624 -1
1608 1664 -1
1609 1303 -0.75
1609 1305 -1
1609 1307 -0.25
1609 1310 -1
1609 1319 1
1609 1356 1
1609 1358 -0.25
1609 1609 2.5
1609 1611 1
1609 1613 -0.25
1609 1616 1
1609 1625 -1
1609 1662 -1
1609 1664 -0.25
1610 1304 -0.75
1610 1306 -1
1610 1308 -1
1610 1309 -0.25
1610 1317 1
1610 1318 -0.25
1610 1357 1
1610 1610 2.5
1610 1612 1
1610 1614 1
1610 1615 -0.25
1610 1623 -1
1610 1624 -0.25
1610 1663 -1
1611 1558 -1
1611 1560 -1
1611 1565 -1
1611 1574 1
1611 1609 1
1611 1611 2
1611 1616 1
1611 1625 -1
1611 1662 -1
1612 1559 -1
1612 1561 -0.75
1612 1563 -1
1612 1565 -0.25
1612 1572 1
1612 1574 -0.25
1612 1610 1
1612 1612 2.5
1612 1614 1
1612 1616 -0.25
1612 1623 -1
1612 1625 -0.25
1612 1663 -0.75
1613 1557 -1
1613 1558 -0.25
1613 1562 -0.75
1613 1564 -1
1613 1573 1
1613 1608 1
1613 1609 -0.25
1613 1613 2.5
1613 1615 1
1613 1624 -1
1613 1664 -0.75
1614 1601 -1
1614 1603 -1
1614 1605 -1
1614 1610 1
1614 1612 1
1614 1614 2
1614 1623 -1
1614 1654 1
1614 1663 -1
1615 1599 -1
1615 1601 -0.25
1615 1604 -1
1615 1606 -0.75
1615 1608 1
1615 1610 -0.25
1615 1613 1
1615 1615 2.5
1615 1624 -0.75
1615 1655 1
1615 1664 -1
1616 1600 -1
1616 1602 -1
1616 1603 -0.25
1616 1607 -0.75
1616 1609 1
1616 1611 1
1616 1612 -0.25
1616 1616 2.5
1616 1625 -0.75
1616 1653 1
1616 1654 -0.25
1616 1662 -1
1616 1663 -0.25
1617 1311 -1
1617 1316 -1
1617 1318 -1
1617 1367 1
1617 1617 2
1617 1622 1
1617 1624 1
1617 1673 -1
1618 1312 -0.75
1618 1314 -1
1618 1316 -0.25
1618 1319 -1
1618 1365 1
1618 1367 -0.25
1618 1618 2.5
1618 1620 1
1618 1622 -0.25
1618 1625 1
1618 1671 -1
1618 1673 -0.25
1619 1313 -0.75
1619 1315 -1
1619 1317 -1
1619 1318 -0.25
1619 1366 1
1619 1619 2.5
1619 1621 1
1619 1623 1
1619 1624 -0.25
1619 1672 -1
1620 1567 -1
1620 1569 -1
1620 1574 -1
1620 1618 1
1620 1620 2
1620 1625 1
1620 1671 -1
1621 1568 -1
1621 1570 -0.75
1621 1572 -1
1621 1574 -0.25
1621 1619 1
1621 1621 2.5
1621 1623 1
1621 1625 -0.25
1621 1672 -0.75
1622 1566 -1
1622 1567 -0.25
1622 1571 -0.75
1622 1573 -1
1622 1617 1
1622 1618 -0.25
1622 1622 2.5
1622 1624 1
1622 1673 -0.75
1623 1610 -1
1623 1612 -1
1623 1614 -1
1623 1619 1
1623 1621 1
1623 1623 2
1623 1663 1
1623 1672 -1
1624 1608 -1
1624 1610 -0.25
1624 1613 -1
1624 1615 -0.75
1624 1617 1
1624 1619 -0.25
1624 1622 1
1624 1624 2.5
1624 1664 1
1624 1673 -1
1625 1609 -1
1625 1611 -1
1625 1612 -0.25
1625 1616 -0.75
1625 1618 1
1625 1620 1
1625 1621 -0.25
1625 1625 2.5
1625 1662 1
1625 1663 -0.25
1625 1671 -1
1625 1672 -0.25
1626 1320 -1
1626 1325 -1
1626 1333 1
1626 1376 1
1626 1626 2
1626 1631 1
1626 1639 -1
1626 1682 -1
1627 1321 -0.75
1627 1323 -1
1627 1325 -0.250000000000001
1627 1334 1
1627 1374 1
1627 1376 -0.25
1627 1627 2.5
1627 1629 1
1627 1631 -0.250000000000001
1627 1640 -1
1627 1680 -1
1627 1682 -0.25
1628 1322 -0.75
1628 1324 -1
1628 1332 1
1628 1333 -0.25
1628 1375 1
1628 1628 2.5
1628 1630 1
1628 1638 -1
1628 1639 -0.25
1628 1681 -1
1629 1576 -1
1629 1578 -1
1629 1589 1
1629 1627 1
1629 1629 2
1629 1640 -1
1629 1680 -1
1630 1577 -1
1630 1579 -0.75
1630 1587 1
1630 1589 -0.25
1630 1628 1
1630 1630 2.5
1630 1638 -1
1630 1640 -0.250000000000001
1630 1681 -0.75
1631 1575 -1
1631 1576 -0.25
1631 1580 -0.75
1631 1588 1
1631 1626 1
1631 1627 -0.250000000000001
1631 1631 2.5
1631 1639 -1
1631 1682 -0.75
1632 1326 -1
1632 1331 -1
1632 1333 -1
1632 1342 1
1632 1382 1
1632 1632 2
1632 1637 1
1632 1639 1
1632 1648 -1
1632 1688 -1
1633 1327 -0.75
1633 1329 -1
1633 1331 -0.250000000000001
1633 1334 -1
1633 1343 1
1633 1380 1
1633 1382 -0.25
1633 1633 2.5
1633 1635 1
1633 1637 -0.250000000000001
1633 1640 1
1633 1649 -1
1633 1686 -1
1633 1688 -0.25
1634 1328 -0.75
1634 1330 -1
1634 1332 -1
1634 1333 -0.25
1634 1341 1
1634 1342 -0.25
1634 1381 1
1634 1634 2.5
1634 1636 1
1634 1638 1
1634 1639 -0.25
1634 1647 -1
1634 1648 -0.25
1634 1687 -1
1635 1582 -1
1635 1584 -1
1635 1589 -1
1635 1598 1
1635 1633 1
1635 1635 2
1635 1640 1
1635 1649 -1
1635 1686 -1
1636 1583 -1
1636 1585 -0.75
1636 1587 -1
1636 1589 -0.25
1636 1596 1
1636 1598 -0.25
1636 1634 1
1636 1636 2.5
1636 1638 1
1636 1640 -0.250000000000001
1636 1647 -1
1636 1649 -0.250000000000001
1636 1687 -0.75
1637 1581 -1
1637 1582 -0.25
1637 1586 -0.75
1637 1588 -1
1637 1597 1
1637 1632 1
1637 1633 -0.250000000000001
1637 1637 2.5
1637 1639 1
1637 1648 -1
1637 1688 -0.75
1638 1628 -1
1638 1630 -1
1638 1634 1
1638 1636 1
1638 1638 2
1638 1647 -1
1638 1681 1
1638 1687 -1
1639 1626 -1
1639 1628 -0.25
1639 1631 -1
1639 1632 1
1639 1634 -0.25
1639 1637 1
1639 1639 2.5
1639 1648 -0.75
1639 1682 1
1639 1688 -1
1640 1627 -1
1640 1629 -1
1640 1630 -0.250000000000001
1640 1633 1
1640 1635 1
1640 1636 -0.250000000000001
1640 1640 2.5
1640 1649 -0.75
1640 1680 1
1640 1681 -0.25
1640 1686 -1
1640 1687 -0.25
1641 1335 -1
1641 1340 -1
1641 1342 -1
1641 1351 1
1641 1391 1
1641 1641 2
1641 1646 1
1641 1648 1
1641 1657 -1
1641 1697 -1
1642 1336 -0.75
1642 1338 -1
1642 1340 -0.250000000000001
1642 1343 -1
1642 1352 1
1642 1389 1
1642 1391 -0.25
1642 1642 2.5
1642 1644 1
1642 1646 -0.250000000000001
1642 1649 1
1642 1658 -1
1642 1695 -1
1642 1697 -0.25
1643 1337 -0.75
1643 1339 -1
1643 1341 -1
1643 1342 -0.25
1643 1350 1
1643 1351 -0.25
1643 1390 1
1643 1643 2.5
1643 1645 1
1643 1647 1
1643 1648 -0.25
1643 1656 -1
1643 1657 -0.25
1643 1696 -1
1644 1591 -1
1644 1593 -1
1644 1598 -1
1644 1607 1
1644 1642 1
1644 1644 2
1644 1649 1
1644 1658 -1
1644 1695 -1
1645 1592 -1
1645 1594 -0.75
1645 1596 -1
1645 1598 -0.25
1645 1605 1
1645 1607 -0.25
1645 1643 1
1645 1645 2.5
1645 1647 1
1645 1649 -0.250000000000001
1645 1656 -1
1645 1658 -0.250000000000001
1645 1696 -0.75
1646 1590 -1
1646 1591 -0.25
1646 1595 -0.75
1646 1597 -1
1646 1606 1
1646 1641 1
1646 1642 -0.250000000000001
1646 1646 2.5
1646 1648 1
1646 1657 -1
1646 1697 -0.75
1647 1634 -1
1647 1636 -1
1647 1638 -1
1647 1643 1
1647 1645 1
1647 1647 2
1647 1656 -1
1647 1687 1
1647 1696 -1
1648 1632 -1
1648 1634 -0.25
1648 1637 -1
1648 1639 -0.75
1648 1641 1
1648 1643 -0.25
1648 1646 1
1648 1648 2.5
1648 1657 -0.75
1648 1688 1
1648 1697 -1
1649 1633 -1
1649 1635 -1
1649 1636 -0.250000000000001
1649 1640 -0.75
1649 1642 1
1649 1644 1
1649 1645 -0.250000000000001
1649 1649 2.5
1649 1658 -0.75
1649 1686 1
1649 1687 -0.25
1649 1695 -1
1649 1696 -0.25
1650 1344 -1
1650 1349 -1
1650 1351 -1
1650 1360 1
1650 1400 1
1650 1650 2
1650 1655 1
1650 1657 1
1650 1666 -1
1650 1706 -1
1651 1345 -0.75
1651 1347 -1
1651 1349 -0.250000000000001
1651 1352 -1
1651 1361 1
1651 1398 1
1651 1400 -0.25
1651 1651 2.5
1651 1653 1
1651 1655 -0.250000000000001
1651 1658 1
1651 1667 -1
1651 1704 -1
1651 1706 -0.25
1652 1346 -0.75
1652 1348 -1
1652 1350 -1
1652 1351 -0.25
1652 1359 1
1652 1360 -0.25
1652 1399 1
1652 1652 2.5
1652 1654 1
1652 1656 1
1652 1657 -0.25
1652 1665 -1
1652 1666 -0.25
1652 1705 -1
1653 1600 -1
1653 1602 -1
1653 1607 -1
1653 1616 1
1653 1651 1
1653 1653 2
1653 1658 1
1653 1667 -1
1653 1704 -1
1654 1601 -1
1654 1603 -0.75
1654 1605 -1
1654 1607 -0.25
1654 1614 1
1654 1616 -0.25
1654 1652 1
1654 1654 2.5
1654 1656 1
1654 1658 -0.250000000000001
1654 1665 -1
1654 1667 -0.250000000000001
1654 1705 -0.75
1655 1599 -1
1655 1600 -0.25
1655 1604 -0.75
1655 1606 -1
1655 1615 1
1655 1650 1
1655 1651 -0.250000000000001
1655 1655 2.5
1655 1657 1
1655 1666 -1
1655 1706 -0.75
1656 1643 -1
1656 1645 -1
1656 1647 -1
1656 1652 1
1656 1654 1
1656 1656 2
1656 1665 -1
1656 1696 1
1656 1705 -1
1657 1641 -1
1657 1643 -0.25
1657 1646 -1
1657 1648 -0.75
1657 1650 1
1657 1652 -0.25
1657 1655 1
1657 1657 2.5
1657 1666 -0.75
1657 1697 1
1657 1706 -1
1658 1642 -1
1658 1644 -1
1658 1645 -0.250000000000001
1658 1649 -0.75
1658 1651 1
1658 1653 1
1658 1654 -0.250000000000001
1658 1658 2.5
1658 1667 -0.75
1658 1695 1
1658 1696 -0.25
1658 1704 -1
1658 1705 -0.25
1659 1353 -1
1659 1358 -1
1659 1360 -1
1659 1369 1
1659 1409 1
1659 1659 2
1659 1664 1
1659 1666 1
1659 1675 -1
1659 1715 -1
1660 1354 -0.75
1660 1356 -1
1660 1358 -0.250000000000001
1660 1361 -1
1660 1370 1
1660 1407 1
1660 1409 -0.25
1660 1660 2.5
1660 1662 1
1660 1664 -0.250000000000001
1660 1667 1
1660 1676 -1
1660 1713 -1
1660 1715 -0.25
1661 1355 -0.75
1661 1357 -1
1661 1359 -1
1661 1360 -0.25
1661 1368 1
1661 1369 -0.25
1661 1408 1
1661 1661 2.5
1661 1663 1
1661 1665 1
1661 1666 -0.25
1661 1674 -1
1661 1675 -0.25
1661 1714 -1
1662 1609 -1
1662 1611 -1
1662 1616 -1
1662 1625 1
1662 1660 1
1662 1662 2
1662 1667 1
1662 1676 -1
1662 1713 -1
1663 1610 -1
1663 1612 -0.75
1663 1614 -1
1663 1616 -0.25
1663 1623 1
1663 1625 -0.25
1663 1661 1
1663 1663 2.5
1663 1665 1
1663 1667 -0.250000000000001
1663 1674 -1
1663 1676 -0.250000000000001
1663 1714 -0.75
1664 1608 -1
1664 1609 -0.25
1664 1613 -0.75
1664 1615 -1
1664 1624 1
1664 1659 1
1664 1660 -0.250000000000001
1664 1664 2.5
1664 1666 1
1664 1675 -1
1664 1715 -0.75
1665 1652 -1
1665 1654 -1
1665 1656 -1
1665 1661 1
1665 1663 1
1665 1665 2
1665 1674 -1
1665 1705 1
1665 1714 -1
1666 1650 -1
1666 1652 -0.25
1666 1655 -1
1666 1657 -0.75
1666 1659 1
1666 1661 -0.25
1666 1664 1
1666 1666 2.5
1666 1675 -0.75
1666 1706 1
1666 1715 -1
1667 1651 -1
1667 1653 -1
1667 1654 -0.250000000000001
1667 1658 -0.75
1667 1660 1
1667 1662 1
1667 1663 -0.250000000000001
1667 1667 2.5
1667 1676 -0.75
1667 1704 1
1667 1705 -0.25
1667 1713 -1
1667 1714 -0.25
1668 1362 -1
1668 1367 -1
1668 1369 -1
1668 1418 1
1668 1668 2
1668 1673 1
1668 1675 1
1668 1724 -1
1669 1363 -0.75
1669 1365 -1
1669 1367 -0.250000000000001
1669 1370 -1
1669 1416 1
1669 1418 -0.25
1669 1669 2.5
1669 1671 1
1669 1673 -0.250000000000001
1669 1676 1
1669 1722 -1
1669 1724 -0.25
1670 1364 -0.75
1670 1366 -1
1670 1368 -1
1670 1369 -0.25
1670 1417 1
1670 1670 2.5
1670 1672 1
1670 1674 1
1670 1675 -0.25
1670 1723 -1
1671 1618 -1
1671 1620 -1
1671 1625 -1
1671 1669 1
1671 1671 2
1671 1676 1
1671 1722 -1
1672 1619 -1
1672 1621 -0.75
1672 1623 -1
1672 1625 -0.25
1672 1670 1
1672 1672 2.5
1672 1674 1
1672 1676 -0.250000000000001
1672 1723 -0.75
1673 1617 -1
1673 1618 -0.25
1673 1622 -0.75
1673 1624 -1
1673 1668 1
1673 1669 -0.250000000000001
1673 1673 2.5
1673 1675 1
1673 1724 -0.75
1674 1661 -1
1674 1663 -1
1674 1665 -1
1674 1670 1
1674 1672 1
1674 1674 2
1674 1714 1
1674 1723 -1
1675 1659 -1
1675 1661 -0.25
1675 1664 -1
1675 1666 -0.75
1675 1668 1
1675 1670 -0.25
1675 1673 1
1675 1675 2.5
1675 1715 1
1675 1724 -1
1676 1660 -1
1676 1662 -1
1676 1663 -0.250000000000001
1676 1667 -0.75
1676 1669 1
1676 1671 1
1676 1672 -0.250000000000001
1676 1676 2.5
1676 1713 1
1676 1714 -0.25
1676 1722 -1
1676 1723 -0.25
1677 1371 -1
1677 1376 -1
1677 1384 1
1677 1677 2
1677 1682 1
1677 1690 -1
1678 1372 -0.75
1678 1374 -1
1678 1376 -0.25
1678 1385 1
1678 1678 2.5
1678 1680 1
1678 1682 -0.25
1678 1691 -1
1679 1373 -0.75
1679 1375 -1
1679 1383 1
1679 1384 -0.25
1679 1679 2.5
1679 1681 1
1679 1689 -1
1679 1690 -0.25
1680 1627 -1
1680 1629 -1
1680 1640 1
1680 1678 1
1680 1680 2
1680 1691 -1
1681 1628 -1
1681 1630 -0.75
1681 1638 1
1681 1640 -0.25
1681 1679 1
1681 1681 2.5
1681 1689 -1
1681 1691 -0.25
1682 1626 -1
1682 1627 -0.25
1682 1631 -0.75
1682 1639 1
1682 1677 1
1682 1678 -0.25
1682 1682 2.5
1682 1690 -1
1683 1377 -1
1683 1382 -1
1683 1384 -1
1683 1393 1
1683 1683 2
1683 1688 1
1683 1690 1
1683 1699 -1
1684 1378 -0.75
1684 1380 -1
1684 1382 -0.25
1684 1385 -1
1684 1394 1
1684 1684 2.5
1684 1686 1
1684 1688 -0.25
1684 1691 1
1684 1700 -1
1685 1379 -0.75
1685 1381 -1
1685 1383 -1
1685 1384 -0.25
1685 1392 1
1685 1393 -0.25
1685 1685 2.5
1685 1687 1
1685 1689 1
1685 1690 -0.25
1685 1698 -1
1685 1699 -0.25
1686 1633 -1
1686 1635 -1
1686 1640 -1
1686 1649 1
1686 1684 1
1686 1686 2
1686 1691 1
1686 1700 -1
1687 1634 -1
1687 1636 -0.75
1687 1638 -1
1687 1640 -0.25
1687 1647 1
1687 1649 -0.25
1687 1685 1
1687 1687 2.5
1687 1689 1
1687 1691 -0.25
1687 1698 -1
1687 1700 -0.25
1688 1632 -1
1688 1633 -0.25
1688 1637 -0.75
1688 1639 -1
1688 1648 1
1688 1683 1
1688 1684 -0.25
1688 1688 2.5
1688 1690 1
1688 1699 -1
1689 1679 -1
1689 1681 -1
1689 1685 1
1689 1687 1
1689 1689 2
1689 1698 -1
1690 1677 -1
1690 1679 -0.25
1690 1682 -1
1690 1683 1
1690 1685 -0.25
1690 1688 1
1690 1690 2.5
1690 1699 -0.75
1691 1678 -1
1691 1680 -1
1691 1681 -0.25
1691 1684 1
1691 1686 1
1691 1687 -0.25
1691 1691 2.5
1691 1700 -0.75
1692 1386 -1
1692 1391 -1
1692 1393 -1
1692 1402 1
1692 1692 2
1692 1697 1
1692 1699 1
1692 1708 -1
1693 1387 -0.75
1693 1389 -1
1693 1391 -0.25
1693 1394 -1
1693 1403 1
1693 1693 2.5
1693 1695 1
1693 1697 -0.25
1693 1700 1
1693 1709 -1
1694 1388 -0.75
1694 1390 -1
1694 1392 -1
1694 1393 -0.25
1694 1401 1
1694 1402 -0.25
1694 1694 2.5
1694 1696 1
1694 1698 1
1694 1699 -0.25
1694 1707 -1
1694 1708 -0.25
1695 1642 -1
1695 1644 -1
1695 1649 -1
1695 1658 1
1695 1693 1
1695 1695 2
1695 1700 1
1695 1709 -1
1696 1643 -1
1696 1645 -0.75
1696 1647 -1
1696 1649 -0.25
1696 1656 1
1696 1658 -0.25
1696 1694 1
1696 1696 2.5
1696 1698 1
1696 1700 -0.25
1696 1707 -1
1696 1709 -0.25
1697 1641 -1
1697 1642 -0.25
1697 1646 -0.75
1697 1648 -1
1697 1657 1
1697 1692 1
1697 1693 -0.25
1697 1697 2.5
1697 1699 1
1697 1708 -1
1698 1685 -1
1698 1687 -1
1698 1689 -1
1698 1694 1
1698 1696 1
1698 1698 2
1698 1707 -1
1699 1683 -1
1699 1685 -0.25
1699 1688 -1
1699 1690 -0.75
1699 1692 1
1699 1694 -0.25
1699 1697 1
1699 1699 2.5
1699 1708 -0.75
1700 1684 -1
1700 1686 -1
1700 1687 -0.25
1700 1691 -0.75
1700 1693 1
1700 1695 1
1700 1696 -0.25
1700 1700 2.5
1700 1709 -0.75
1701 1395 -1
1701 1400 -1
1701 1402 -1
1701 1411 1
1701 1701 2
1701 1706 1
1701 1708 1
1701 1717 -1
1702 1396 -0.75
1702 1398 -1
1702 1400 -0.25
1702 1403 -1
1702 1412 1
1702 1702 2.5
1702 1704 1
1702 1706 -0.25
1702 1709 1
1702 1718 -1
1703 1397 -0.75
1703 1399 -1
1703 1401 -1
1703 1402 -0.25
1703 1410 1
1703 1411 -0.25
1703 1703 2.5
1703 1705 1
1703 1707 1
1703 1708 -0.25
1703 1716 -1
1703 1717 -0.25
1704 1651 -1
1704 1653 -1
1704 1658 -1
1704 1667 1
1704 1702 1
1704 1704 2
1704 1709 1
1704 1718 -1
1705 1652 -1
1705 1654 -0.75
1705 1656 -1
1705 1658 -0.25
1705 1665 1
1705 1667 -0.25
1705 1703 1
1705 1705 2.5
1705 1707 1
1705 1709 -0.25
1705 1716 -1
1705 1718 -0.25
1706 1650 -1
1706 1651 -0.25
1706 1655 -0.75
1706 1657 -1
1706 1666 1
1706 1701 1
1706 1702 -0.25
1706 1706 2.5
1706 1708 1
1706 1717 -1
1707 1694 -1
1707 1696 -1
1707 1698 -1
1707 1703 1
1707 1705 1
1707 1707 2
1707 1716 -1
1708 1692 -1
1708 1694 -0.25
1708 1697 -1
1708 1699 -0.75
1708 1701 1
1708 1703 -0.25
1708 1706 1
1708 1708 2.5
1708 1717 -0.75
1709 1693 -1
1709 1695 -1
1709 1696 -0.25
1709 1700 -0.75
1709 1702 1
1709 1704 1
1709 1705 -0.25
1709 1709 2.5
1709 1718 -0.75
1710 1404 -1
1710 1409 -1
1710 1411 -1
1710 1420 1
1710 1710 2
1710 1715 1
1710 1717 1
1710 1726 -1
1711 1405 -0.75
1711 1407 -1
1711 1409 -0.25
1711 1412 -1
1711 1421 1
1711 1711 2.5
1711 1713 1
1711 1715 -0.25
1711 1718 1
1711 1727 -1
1712 1406 -0.75
1712 1408 -1
1712 1410 -1
1712 1411 -0.25
1712 1419 1
1712 1420 -0.25
1712 1712 2.5
1712 1714 1
1712 1716 1
1712 1717 -0.25
1712 1725 -1
1712 1726 -0.25
1713 1660 -1
1713 1662 -1
1713 1667 -1
1713 1676 1
1713 1711 1
1713 1713 2
1713 1718 1
1713 1727 -1
1714 1661 -1
1714 1663 -0.75
1714 1665 -1
1714 1667 -0.25
1714 1674 1
1714 1676 -0.25
1714 1712 1
1714 1714 2.5
1714 1716 1
1714 1718 -0.25
1714 1725 -1
1714 1727 -0.25
1715 1659 -1
1715 1660 -0.25
1715 1664 -0.75
1715 1666 -1
1715 1675 1
1715 1710 1
1715 1711 -0.25
1715 1715 2.5
1715 1717 1
1715 1726 -1
1716 1703 -1
1716 1705 -1
1716 1707 -1
1716 1712 1
1716 1714 1
1716 1716 2
1716 1725 -1
1717 1701 -1
1717 1703 -0.25
1717 1706 -1
1717 1708 -0.75
1717 1710 1
1717 1712 -0.25
1717 1715 1
1717 1717 2.5
1717 1726 -0.75
1718 1702 -1
1718 1704 -1
1718 1705 -0.25
1718 1709 -0.75
1718 1711 1
1718 1713 1
1718 1714 -0.25
1718 1718 2.5
1718 1727 -0.75
1719 1413 -1
1719 1418 -1
1719 1420 -1
1719 1719 2
1719 1724 1
1719 1726 1
1720 1414 -0.75
1720 1416 -1
1720 1418 -0.25
1720 1421 -1
1720 1720 2.5
1720 1722 1
1720 1724 -0.25
1720 1727 1
1721 1415 -0.75
1721 1417 -1
1721 1419 -1
1721 1420 -0.25
1721 1721 2.5
1721 1723 1
1721 1725 1
1721 1726 -0.25
1722 1669 -1
1722 1671 -1
1722 1676 -1
1722 1720 1
1722 1722 2
1722 1727 1
1723 1670 -1
1723 1672 -0.75
1723 1674 -1
1723 1676 -0.25
1723 1721 1
1723 1723 2.5
1723 1725 1
1723 1727 -0.25
1724 1668 -1
1724 1669 -0.25
1724 1673 -0.75
1724 1675 -1
1724 1719 1
1724 1720 -0.25
1724 1724 2.5
1724 1726 1
1725 1712 -1
1725 1714 -1
1725 1716 -1
1725 1721 1
1725 1723 1
1725 1725 2
1726 1710 -1
1726 1712 -0.25
1726 1715 -1
1726 1717 -0.75
1726 1719 1
1726 1721 -0.25
1726 1724 1
1726 1726 2.5
1727 1711 -1
1727 1713 -1
1727 1714 -0.25
1727 1718 -0.75
1727 1720 1
1727 1722 1
1727 1723 -0.25
1727 1727 2.5
| IDL | 0 | ricortiz/OpenTissue | demos/data/dlm/1728/A.dlm | [
"Zlib"
] |
cron:
- description: "daily github stats tracking job"
url: /daily
schedule: every 24 hours
| YAML | 3 | mpminardi/grpc | tools/gcp/github_stats_tracking/cron.yaml | [
"Apache-2.0"
] |
<$_ var entityName = e.name _$>
<$_ var lEntityName = v.decapitalize(e.name) _$>
export class Db<$= entityName $>Service {
constructor(
@InjectRepository(<$= entityName $>)
private readonly <$= lEntityName $>Repository: Repository<<$= entityName $>>,
) { }
/**
* Find all <$= lEntityName $>s by query
* @param query The query object (optional)
* @throws ServerErrorException Server Error Exception
*/
async find(query?: any): Promise<<$= entityName $>[]> {
let <$= lEntityName $>s: <$= entityName $>[];
try {
<$= lEntityName $>s = await this.<$= lEntityName $>Repository.find(query);
} catch {
throw new ServerErrorException();
}
return <$= lEntityName $>s;
}
/**
* Save a <$= lEntityName $> into the database
* @param <$= lEntityName $> <$= entityName $> object
* @throws ServerErrorException Server Error Exception
*/
async save(<$= lEntityName $>: <$= entityName $>): Promise<<$= entityName $>> {
try {
<$= lEntityName $> = await this.<$= lEntityName $>Repository.save(<$= lEntityName $>);
} catch {
throw new ServerErrorException();
}
return <$= lEntityName $>;
}
}
| MTML | 5 | belgac/mtml | examples/db-service.template.mtml | [
"MIT"
] |
; ModuleID = 'intrinsics.go'
source_filename = "intrinsics.go"
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32--wasi"
declare noalias nonnull i8* @runtime.alloc(i32, i8*, i8*)
define hidden void @main.init(i8* %context, i8* %parentHandle) unnamed_addr {
entry:
ret void
}
define hidden double @main.mySqrt(double %x, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = call double @llvm.sqrt.f64(double %x)
ret double %0
}
; Function Attrs: nounwind readnone speculatable willreturn
declare double @llvm.sqrt.f64(double) #0
define hidden double @main.myTrunc(double %x, i8* %context, i8* %parentHandle) unnamed_addr {
entry:
%0 = call double @llvm.trunc.f64(double %x)
ret double %0
}
; Function Attrs: nounwind readnone speculatable willreturn
declare double @llvm.trunc.f64(double) #0
attributes #0 = { nounwind readnone speculatable willreturn }
| LLVM | 4 | JAicewizard/tinygo | compiler/testdata/intrinsics-wasm.ll | [
"Apache-2.0"
] |
/*
* vu1Triangle.vcl
*
* Copyright (C) 2004 Jesper Svennevid, Daniel Collin
*
* Licensed under the AFL v2.0. See the file LICENSE included with this
* distribution for licensing terms.
*
*/
.syntax new
.name vu1Triangle
.vu
.init_vf_all
.init_vi_all
--enter
--endenter
lq worldToScreenRow0, 0(vi00)
lq worldToScreenRow1, 1(vi00)
lq worldToScreenRow2, 2(vi00)
lq worldToScreenRow3, 3(vi00)
iaddiu vertexData, vi00, 6
iaddiu destAdress, vi00, 20
iaddiu kickAdress, vi00, 20
lq gifTag, 4(vi00)
sqi gifTag, (destAdress++)
lq color, 5(vi00)
sqi color, (destAdress++)
iaddiu vertexCounter, vi00, 3
vertexLoop:
lqi vertex, (vertexData++)
mul acc, worldToScreenRow0, vertex[x]
madd acc, worldToScreenRow1, vertex[y]
madd acc, worldToScreenRow2, vertex[z]
madd vertex, worldToScreenRow3, vertex[w]
div q, vf00[w], vertex[w]
mul.xyz vertex, vertex, q
ftoi4 vertex, vertex
sqi vertex, (destAdress++)
iaddi vertexCounter, vertexCounter, -1
ibne vertexCounter, vi00, vertexLoop
xgkick kickAdress
--exit
--endexit
| VCL | 3 | jsvennevid/openvcl | examples/triangle/vu1Triangle.vcl | [
"AFL-2.0"
] |
/* 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_PROFILER_CONVERT_OP_STACK_H_
#define TENSORFLOW_CORE_PROFILER_CONVERT_OP_STACK_H_
#include <memory>
#include <utility>
#include <vector>
#include "tensorflow/core/platform/types.h"
namespace tensorflow {
namespace profiler {
template <typename OpInfo>
class OpStack {
public:
// Pushes an Op onto the stack.
void Push(uint32 op_id, std::unique_ptr<OpInfo> op_info) {
stack_.emplace_back(op_id, std::move(op_info));
}
// Pops the Op with the given op_id from the stack.
std::unique_ptr<OpInfo> Pop(uint32 op_id) {
// Pop until match or stack_ is empty.
std::unique_ptr<OpInfo> result;
while (!stack_.empty()) {
auto back = std::move(stack_.back());
stack_.pop_back();
if (op_id == back.first) {
result = std::move(back.second);
break;
}
}
return result;
}
// Returns the Op at the top of the stack.
OpInfo* Top() const {
return stack_.empty() ? nullptr : stack_.back().second.get();
}
// Returns true if the stack is empty.
bool Empty() const { return stack_.empty(); }
// Clears the stack.
void Clear() { stack_.clear(); }
private:
std::vector<std::pair<uint32 /*op_id*/, std::unique_ptr<OpInfo>>> stack_;
};
} // namespace profiler
} // namespace tensorflow
#endif // TENSORFLOW_CORE_PROFILER_CONVERT_OP_STACK_H_
| C | 4 | yage99/tensorflow | tensorflow/core/profiler/convert/op_stack.h | [
"Apache-2.0"
] |
--TEST--
Check that reference detection works properly
--FILE--
<?php
$v00 = $v01 = $v32 = $v33 = 0;
test(p32: $v32, p33: $v33, p00: $v00, p01: $v01);
echo "$v00 $v01 $v32 $v33\n";
$v = [0 => 0, 1 => 0, 32 => 0, 33 => 0];
test(p32: $v[32], p33: $v[33], p00: $v[0], p01: $v[1]);
echo "$v[0] $v[1] $v[32] $v[33]\n";
function test(
&$p00 = null, $p01 = null, &$p02 = null, $p03 = null, &$p04 = null, $p05 = null,
&$p06 = null, $p07 = null, &$p08 = null, $p09 = null, &$p10 = null, $p11 = null,
&$p12 = null, $p13 = null, &$p14 = null, $p15 = null, &$p16 = null, $p17 = null,
&$p18 = null, $p19 = null, &$p20 = null, $p21 = null, &$p22 = null, $p23 = null,
&$p24 = null, $p25 = null, &$p26 = null, $p27 = null, &$p28 = null, $p29 = null,
&$p30 = null, $p31 = null, &$p32 = null, $p33 = null, &$p34 = null, $p35 = null
) {
$p00++;
$p32++;
}
$v00 = $v01 = $v32 = $v33 = 0;
test(p32: $v32, p33: $v33, p00: $v00, p01: $v01);
echo "$v00 $v01 $v32 $v33\n";
$v = [0 => 0, 1 => 0, 32 => 0, 33 => 0];
test(p32: $v[32], p33: $v[33], p00: $v[0], p01: $v[1]);
echo "$v[0] $v[1] $v[32] $v[33]\n";
?>
--EXPECT--
1 0 1 0
1 0 1 0
1 0 1 0
1 0 1 0
| PHP | 3 | NathanFreeman/php-src | Zend/tests/named_params/references.phpt | [
"PHP-3.01"
] |
<div>
<h1>hello world</h1>
<a [routerLink]="['lazy']">lazy</a>
<router-outlet></router-outlet>
</div>
| HTML | 3 | KRAHUL121/AngularCliExp | tests/e2e/assets/webpack/test-server-app-ng5/app/app.component.html | [
"MIT"
] |
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SRC_URI = " \
file://server-connection-check;subdir=${PN}-${PV} \
file://LICENSE;subdir=${PN}-${PV} \
"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
inherit mender-state-scripts
ALLOW_EMPTY_${PN} = "1"
do_compile() {
cp server-connection-check ${MENDER_STATE_SCRIPTS_DIR}/Sync_Enter_01_server-connection-check
}
| BitBake | 3 | tjwebb/community | tutorials/cloud-iot-mender-ota/image/meta-gcp-iot/recipes-mender/mender-gcp-delay-server-connection/mender-gcp-delay-server-connection_1.0.bb | [
"Apache-2.0",
"CC-BY-4.0"
] |
#!/usr/bin/env perl6
use v6;
my $string = 'I look like a # comment!';
if $string eq 'foo' {
say 'hello';
}
regex http-verb {
'GET'
| 'POST'
| 'PUT'
| 'DELETE'
| 'TRACE'
| 'OPTIONS'
| 'HEAD'
}
# a sample comment
say 'Hello from Perl 6!'
#`{
multi-line comment!
}
say 'here';
#`(
multi-line comment!
)
say 'here';
#`{{{
I'm a special comment!
}}}
say 'there';
#`{{
I'm { even } specialer!
}}
say 'there';
#`{{
does {{nesting}} work?
}}
#`«<
trying mixed delimiters
»
my $string = qq<Hooray, arbitrary delimiter!>;
my $string = qq«Hooray, arbitrary delimiter!»;
my $string = q <now with whitespace!>;
my $string = qq<<more strings>>;
my %hash := Hash.new;
=begin pod
Here's some POD! Wooo
=end pod
=for Testing
This is POD (see? role isn't highlighted)
say('this is not!');
say 'Moar code!';
my $don't = 16;
sub don't($x) {
!$x
}
say don't 'foo';
my %hash = (
:foo(1),
);
say %hash<foo>;
say %hash<<foo>>;
say %hash«foo»;
say %*hash<foo>;
say %*hash<<foo>>;
say %*hash«foo»;
say $<todo>;
say $<todo>;
for (@A Z @B) -> $a, $b {
say $a + $b;
}
Q:PIR {
.loadlib "somelib"
}
my $longstring = q/
lots
of
text
/;
my $heredoc = q:to/END_SQL/;
SELECT * FROM Users
WHERE first_name = 'Rob'
END_SQL
my $hello;
# Fun with regexen
if 'food' ~~ /foo/ {
say 'match!'
}
my $re = /foo/;
my $re2 = m/ foo /;
my $re3 = m:i/ FOO /;
call-a-sub(/ foo /);
call-a-sub(/ foo \/ bar /);
my $re4 = rx/something | something-else/;
my $result = ms/regexy stuff/;
my $sub0 = s/regexy stuff/more stuff/;
my $sub = ss/regexy stuff/more stuff/;
my $trans = tr/regexy stuff/more stuff/;
my @values = <a b c d>;
call-sub(<a b c d>);
call-sub <a b c d>;
my $result = $a < $b;
for <a b c d> -> $letter {
say $letter;
}
sub test-sub {
say @_;
say $!;
say $/;
say $0;
say $1;
say @*ARGS;
say $*ARGFILES;
say &?BLOCK;
say ::?CLASS;
say $?CLASS;
say @=COMMENT;
say %?CONFIG;
say $*CWD;
say $=data;
say %?DEEPMAGIC;
say $?DISTRO;
say $*DISTRO;
say $*EGID;
say %*ENV;
say $*ERR;
say $*EUID;
say $*EXECUTABLE_NAME;
say $?FILE;
say $?GRAMMAR;
say $*GID;
say $*IN;
say @*INC;
say %?LANG;
say $*LANG;
say $?LINE;
say %*META-ARGS;
say $?MODULE;
say %*OPTS;
say %*OPT;
say $?KERNEL;
say $*KERNEL;
say $*OUT;
say $?PACKAGE;
say $?PERL;
say $*PERL;
say $*PID;
say %=pod;
say $*PROGRAM_NAME;
say %*PROTOCOLS;
say ::?ROLE;
say $?ROLE;
say &?ROUTINE;
say $?SCOPE;
say $*TZ;
say $*UID;
say $?USAGE;
say $?VM;
say $?XVM;
}
say <a b c>;
my $perl5_re = m:P5/ fo{2} /;
my $re5 = rx«something | something-else»;
my $M := %*COMPILING<%?OPTIONS><M>;
say $M;
sub regex-name { ... }
my $pair = role-name => 'foo';
$pair = rolesque => 'foo';
my sub something(Str:D $value) { ... }
my $s = q«<
some
string
stuff
»;
my $regex = m«< some chars »;
# after
say $/<foo><bar>;
roleq;
| Perl6 | 4 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/Perl 6/test.p6 | [
"MIT"
] |
#!/usr/bin/perl -wT
use strict;
print "Content-Type: application/x-blink-test-plugin\n";
print "Content-Security-Policy: object-src 'none'\n";
print "\n";
print "This is a mock plugin. It does pretty much nothing.";
| Perl | 2 | zealoussnow/chromium | third_party/blink/web_tests/http/tests/plugins/resources/mock-plugin-with-csp.pl | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
theory Escrow
imports
Dispatcher
begin
(*
pragma solidity ^0.4.0;
contract Escrow {
address buyer;
address seller;
address arbiter;
uint256 amount;
function Escrow(address _buyer, address _seller, uint256 _amount) public {
require (amount > 0 && _buyer != 0 && _seller != 0);
buyer = _buyer;
seller = _seller;
arbiter = msg.sender;
amount = _amount;
}
function addfund() payable public {
require (amount > 0 && msg.value == amount && msg.sender == buyer);
amount = 0;
}
function refund() public {
require (amount == 0 && msg.sender == arbiter);
selfdestruct(buyer);
}
function pay() public {
require (amount == 0 && msg.sender == arbiter);
selfdestruct(seller);
}
}
Compiled with:
solc --optimize --overwrite -o escrow --bin-runtime --asm --hashes escrow.sol
8f9595d4: addfund()
1b9265b8: pay()
590e1ae3: refund()
*)
value"(parse_bytecode ''6060604052600436106100565763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416631b9265b8811461005b578063590e1ae3146100705780638f9595d414610083575b600080fd5b341561006657600080fd5b61006e61008b565b005b341561007b57600080fd5b61006e6100dc565b61006e61012d565b6003541580156100b657506002543373ffffffffffffffffffffffffffffffffffffffff9081169116145b15156100c157600080fd5b60015473ffffffffffffffffffffffffffffffffffffffff16ff5b60035415801561010757506002543373ffffffffffffffffffffffffffffffffffffffff9081169116145b151561011257600080fd5b60005473ffffffffffffffffffffffffffffffffffffffff16ff5b6000600354118015610140575060035434145b801561016757506000543373ffffffffffffffffffffffffffffffffffffffff9081169116145b151561017257600080fd5b60006003555600a165627a7a72305820f807170f7f69a6fbdf43f87babe291e9f5d38101a3b65713ccfdbe30975599d30029'')"
definition insts_ex where
"insts_ex == [Stack (PUSH_N [0x60]), Stack (PUSH_N [0x40]), Memory MSTORE, Stack (PUSH_N [4]),
Info CALLDATASIZE, Arith inst_LT, Stack (PUSH_N [0, 0x56]), Pc JUMPI,
Stack (PUSH_N [0xFF, 0xFF, 0xFF, 0xFF]),
Stack
(PUSH_N
[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]),
Stack (PUSH_N [0]), Stack CALLDATALOAD, Arith DIV, Bits inst_AND,
Stack (PUSH_N [0x1B, 0x92, 0x65, 0xB8]), Dup 1, Arith inst_EQ, Stack (PUSH_N [0, 0x5B]),
Pc JUMPI, Dup 0, Stack (PUSH_N [0x59, 0xE, 0x1A, 0xE3]), Arith inst_EQ,
Stack (PUSH_N [0, 0x70]), Pc JUMPI, Dup 0, Stack (PUSH_N [0x8F, 0x95, 0x95, 0xD4]),
Arith inst_EQ, Stack (PUSH_N [0, 0x83]), Pc JUMPI, Pc JUMPDEST, Stack (PUSH_N [0]), Dup 0,
Unknown 0xFD, Pc JUMPDEST, Info CALLVALUE, Arith ISZERO, Stack (PUSH_N [0, 0x66]), Pc JUMPI,
Stack (PUSH_N [0]), Dup 0, Unknown 0xFD, Pc JUMPDEST, Stack (PUSH_N [0, 0x6E]),
Stack (PUSH_N [0, 0x8B]), Pc JUMP, Pc JUMPDEST, Misc STOP, Pc JUMPDEST, Info CALLVALUE,
Arith ISZERO, Stack (PUSH_N [0, 0x7B]), Pc JUMPI, Stack (PUSH_N [0]), Dup 0, Unknown 0xFD,
Pc JUMPDEST, Stack (PUSH_N [0, 0x6E]), Stack (PUSH_N [0, 0xDC]), Pc JUMP, Pc JUMPDEST,
Stack (PUSH_N [0, 0x6E]), Stack (PUSH_N [1, 0x2D]), Pc JUMP, Pc JUMPDEST,
Stack (PUSH_N [3]), Storage SLOAD, Arith ISZERO, Dup 0, Arith ISZERO,
Stack (PUSH_N [0, 0xB6]), Pc JUMPI, Stack POP, Stack (PUSH_N [2]), Storage SLOAD,
Info CALLER,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]),
Swap 0, Dup 1, Bits inst_AND, Swap 1, Bits inst_AND, Arith inst_EQ, Pc JUMPDEST,
Arith ISZERO, Arith ISZERO, Stack (PUSH_N [0, 0xC1]), Pc JUMPI, Stack (PUSH_N [0]), Dup 0,
Unknown 0xFD, Pc JUMPDEST, Stack (PUSH_N [1]), Storage SLOAD,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]),
Bits inst_AND, Misc SUICIDE, Pc JUMPDEST, Stack (PUSH_N [3]), Storage SLOAD, Arith ISZERO,
Dup 0, Arith ISZERO, Stack (PUSH_N [1, 7]), Pc JUMPI, Stack POP, Stack (PUSH_N [2]),
Storage SLOAD, Info CALLER,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]),
Swap 0, Dup 1, Bits inst_AND, Swap 1, Bits inst_AND, Arith inst_EQ, Pc JUMPDEST,
Arith ISZERO, Arith ISZERO, Stack (PUSH_N [1, 0x12]), Pc JUMPI, Stack (PUSH_N [0]), Dup 0,
Unknown 0xFD, Pc JUMPDEST, Stack (PUSH_N [0]), Storage SLOAD,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]),
Bits inst_AND, Misc SUICIDE, Pc JUMPDEST, Stack (PUSH_N [0]), Stack (PUSH_N [3]),
Storage SLOAD, Arith inst_GT, Dup 0, Arith ISZERO, Stack (PUSH_N [1, 0x40]), Pc JUMPI,
Stack POP, Stack (PUSH_N [3]), Storage SLOAD, Info CALLVALUE, Arith inst_EQ, Pc JUMPDEST,
Dup 0, Arith ISZERO, Stack (PUSH_N [1, 0x67]), Pc JUMPI, Stack POP, Stack (PUSH_N [0]),
Storage SLOAD, Info CALLER,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]),
Swap 0, Dup 1, Bits inst_AND, Swap 1, Bits inst_AND, Arith inst_EQ, Pc JUMPDEST,
Arith ISZERO, Arith ISZERO, Stack (PUSH_N [1, 0x72]), Pc JUMPI, Stack (PUSH_N [0]), Dup 0,
Unknown 0xFD, Pc JUMPDEST, Stack (PUSH_N [0]), Stack (PUSH_N [3]), Storage SSTORE, Pc JUMP,
Misc STOP, Log LOG1, Stack (PUSH_N [0x62, 0x7A, 0x7A, 0x72, 0x30, 0x58]), Arith SHA3,
Unknown 0xF8, Sarith SMOD, Bits inst_OR, Unknown 0xF,
Stack
(PUSH_N
[0x69, 0xA6, 0xFB, 0xDF, 0x43, 0xF8, 0x7B, 0xAB, 0xE2, 0x91, 0xE9, 0xF5, 0xD3, 0x81, 1,
0xA3, 0xB6, 0x57, 0x13, 0xCC, 0xFD, 0xBE, 0x30, 0x97, 0x55, 0x99, 0xD3, 0, 0x29])]"
value "length insts_ex"
(* 191 instructions *)
lemma
"parse_bytecode ''6060604052600436106100565763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416631b9265b8811461005b578063590e1ae3146100705780638f9595d414610083575b600080fd5b341561006657600080fd5b61006e61008b565b005b341561007b57600080fd5b61006e6100dc565b61006e61012d565b6003541580156100b657506002543373ffffffffffffffffffffffffffffffffffffffff9081169116145b15156100c157600080fd5b60015473ffffffffffffffffffffffffffffffffffffffff16ff5b60035415801561010757506002543373ffffffffffffffffffffffffffffffffffffffff9081169116145b151561011257600080fd5b60005473ffffffffffffffffffffffffffffffffffffffff16ff5b6000600354118015610140575060035434145b801561016757506000543373ffffffffffffffffffffffffffffffffffffffff9081169116145b151561017257600080fd5b60006003555600a165627a7a72305820f807170f7f69a6fbdf43f87babe291e9f5d38101a3b65713ccfdbe30975599d30029'' = insts_ex"
unfolding insts_ex_def
by eval
definition "blocks_escrow == build_blocks insts_ex"
value "blocks_escrow"
lemma blocks_escrow_simp:
"blocks_escrow = [(0, [(0, Stack (PUSH_N [0x60])), (2, Stack (PUSH_N [0x40])), (4, Memory MSTORE),
(5, Stack (PUSH_N [4])), (7, Info CALLDATASIZE), (8, Arith inst_LT),
(9, Stack (PUSH_N [0, 0x56]))],
Jumpi),
(13, [(13, Stack (PUSH_N [0xFF, 0xFF, 0xFF, 0xFF])),
(18, Stack
(PUSH_N
[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0])),
(48, Stack (PUSH_N [0])), (50, Stack CALLDATALOAD), (51, Arith DIV),
(52, Bits inst_AND), (53, Stack (PUSH_N [0x1B, 0x92, 0x65, 0xB8])), (58, Dup 1),
(59, Arith inst_EQ), (60, Stack (PUSH_N [0, 0x5B]))],
Jumpi),
(64, [(64, Dup 0), (65, Stack (PUSH_N [0x59, 0xE, 0x1A, 0xE3])), (70, Arith inst_EQ),
(71, Stack (PUSH_N [0, 0x70]))],
Jumpi),
(75, [(75, Dup 0), (76, Stack (PUSH_N [0x8F, 0x95, 0x95, 0xD4])), (81, Arith inst_EQ),
(82, Stack (PUSH_N [0, 0x83]))],
Jumpi),
(86, [(86, Pc JUMPDEST), (87, Stack (PUSH_N [0])), (89, Dup 0), (90, Unknown 0xFD)],
Terminal),
(91, [(91, Pc JUMPDEST), (92, Info CALLVALUE), (93, Arith ISZERO),
(94, Stack (PUSH_N [0, 0x66]))],
Jumpi),
(98, [(98, Stack (PUSH_N [0])), (100, Dup 0), (101, Unknown 0xFD)], Terminal),
(102,
[(102, Pc JUMPDEST), (103, Stack (PUSH_N [0, 0x6E])), (106, Stack (PUSH_N [0, 0x8B]))],
Jump),
(110, [(110, Pc JUMPDEST), (111, Misc STOP)], Terminal),
(112,
[(112, Pc JUMPDEST), (113, Info CALLVALUE), (114, Arith ISZERO),
(115, Stack (PUSH_N [0, 0x7B]))],
Jumpi),
(119, [(119, Stack (PUSH_N [0])), (121, Dup 0), (122, Unknown 0xFD)], Terminal),
(123,
[(123, Pc JUMPDEST), (124, Stack (PUSH_N [0, 0x6E])), (127, Stack (PUSH_N [0, 0xDC]))],
Jump),
(131,
[(131, Pc JUMPDEST), (132, Stack (PUSH_N [0, 0x6E])), (135, Stack (PUSH_N [1, 0x2D]))],
Jump),
(139,
[(139, Pc JUMPDEST), (140, Stack (PUSH_N [3])), (142, Storage SLOAD), (143, Arith ISZERO),
(144, Dup 0), (145, Arith ISZERO), (146, Stack (PUSH_N [0, 0xB6]))],
Jumpi),
(150,
[(150, Stack POP), (151, Stack (PUSH_N [2])), (153, Storage SLOAD), (154, Info CALLER),
(155,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])),
(176, Swap 0), (177, Dup 1), (178, Bits inst_AND), (179, Swap 1), (180, Bits inst_AND),
(181, Arith inst_EQ)],
Next),
(182,
[(182, Pc JUMPDEST), (183, Arith ISZERO), (184, Arith ISZERO),
(185, Stack (PUSH_N [0, 0xC1]))],
Jumpi),
(189, [(189, Stack (PUSH_N [0])), (191, Dup 0), (192, Unknown 0xFD)], Terminal),
(193,
[(193, Pc JUMPDEST), (194, Stack (PUSH_N [1])), (196, Storage SLOAD),
(197,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])),
(218, Bits inst_AND), (219, Misc SUICIDE)],
Terminal),
(220,
[(220, Pc JUMPDEST), (221, Stack (PUSH_N [3])), (223, Storage SLOAD), (224, Arith ISZERO),
(225, Dup 0), (226, Arith ISZERO), (227, Stack (PUSH_N [1, 7]))],
Jumpi),
(231,
[(231, Stack POP), (232, Stack (PUSH_N [2])), (234, Storage SLOAD), (235, Info CALLER),
(236,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])),
(257, Swap 0), (258, Dup 1), (259, Bits inst_AND), (260, Swap 1), (261, Bits inst_AND),
(262, Arith inst_EQ)],
Next),
(263,
[(263, Pc JUMPDEST), (264, Arith ISZERO), (265, Arith ISZERO),
(266, Stack (PUSH_N [1, 0x12]))],
Jumpi),
(270, [(270, Stack (PUSH_N [0])), (272, Dup 0), (273, Unknown 0xFD)], Terminal),
(274,
[(274, Pc JUMPDEST), (275, Stack (PUSH_N [0])), (277, Storage SLOAD),
(278,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])),
(299, Bits inst_AND), (300, Misc SUICIDE)],
Terminal),
(301,
[(301, Pc JUMPDEST), (302, Stack (PUSH_N [0])), (304, Stack (PUSH_N [3])),
(306, Storage SLOAD), (307, Arith inst_GT), (308, Dup 0), (309, Arith ISZERO),
(310, Stack (PUSH_N [1, 0x40]))],
Jumpi),
(314,
[(314, Stack POP), (315, Stack (PUSH_N [3])), (317, Storage SLOAD), (318, Info CALLVALUE),
(319, Arith inst_EQ)],
Next),
(320,
[(320, Pc JUMPDEST), (321, Dup 0), (322, Arith ISZERO), (323, Stack (PUSH_N [1, 0x67]))],
Jumpi),
(327,
[(327, Stack POP), (328, Stack (PUSH_N [0])), (330, Storage SLOAD), (331, Info CALLER),
(332,
Stack
(PUSH_N
[0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])),
(353, Swap 0), (354, Dup 1), (355, Bits inst_AND), (356, Swap 1), (357, Bits inst_AND),
(358, Arith inst_EQ)],
Next),
(359,
[(359, Pc JUMPDEST), (360, Arith ISZERO), (361, Arith ISZERO),
(362, Stack (PUSH_N [1, 0x72]))],
Jumpi),
(366, [(366, Stack (PUSH_N [0])), (368, Dup 0), (369, Unknown 0xFD)], Terminal),
(370,
[(370, Pc JUMPDEST), (371, Stack (PUSH_N [0])), (373, Stack (PUSH_N [3])),
(375, Storage SSTORE)],
Jump),
(377, [(377, Misc STOP)], Terminal),
(378,
[(378, Log LOG1), (379, Stack (PUSH_N [0x62, 0x7A, 0x7A, 0x72, 0x30, 0x58])),
(386, Arith SHA3), (387, Unknown 0xF8)],
Terminal),
(388, [(388, Sarith SMOD), (389, Bits inst_OR), (390, Unknown 0xF)], Terminal),
(391,
[(391,
Stack
(PUSH_N
[0x69, 0xA6, 0xFB, 0xDF, 0x43, 0xF8, 0x7B, 0xAB, 0xE2, 0x91, 0xE9, 0xF5, 0xD3, 0x81,
1, 0xA3, 0xB6, 0x57, 0x13, 0xCC, 0xFD, 0xBE, 0x30, 0x97, 0x55, 0x99, 0xD3, 0,
0x29]))],
Next)]"
by eval
definition addfund_hash :: "32 word" where
"addfund_hash = 0x8f9595d4"
definition pay_hash :: "32 word" where
"pay_hash = 0x1b9265b8"
definition refund_hash :: "32 word" where
"refund_hash = 0x590e1ae3"
definition return_action ::"address \<Rightarrow> address \<Rightarrow> address \<Rightarrow> address \<Rightarrow> w256 \<Rightarrow> 32 word \<Rightarrow> w256 \<Rightarrow> contract_action" where
"return_action sender buyer seller arbiter amount hash v =
(if hash = addfund_hash \<and> sender = buyer \<and> v = amount \<and> amount > 0 then
ContractReturn []
else if hash = refund_hash \<and> sender = arbiter \<and> v = 0 \<and> amount = 0 then
ContractSuicide buyer
else if hash = pay_hash \<and> sender = arbiter \<and> v = 0 \<and> amount = 0 then
ContractSuicide seller
else
ContractFail [ShouldNotHappen])"
definition return_amount ::"address \<Rightarrow> address \<Rightarrow> address \<Rightarrow> w256 \<Rightarrow> 32 word \<Rightarrow> w256 \<Rightarrow> w256" where
"return_amount sender buyer seller amount hash v =
(if hash = addfund_hash \<and> sender = buyer \<and> v = amount \<and> amount > 0 then 0 else amount)"
context
notes
words_simps[simp add]
calldataload_simps[simp add]
M_def[simp add]
Cmem_def[simp add]
memory_range.simps[simp del]
if_split[ split del ] sep_fun_simps[simp del]
gas_value_simps[simp add] gas_simps[simp] pure_emp_simps[simp add]
evm_fun_simps[simp add] sep_lc[simp del] sep_conj_first[simp add]
pure_false_simps[simp add] iszero_stack_def[simp add]
word256FromNat_def[simp add]
begin
abbreviation "blk_num \<equiv> block_number_pred"
lemma address_mask:
"0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF = mask 160"
by (simp add: mask_def)
lemma address_mask_ucast:
"ucast (0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF && (ucast (w::address))::w256) = w"
apply (simp add: ucast_ucast_mask address_mask ucast_mask_drop word_bool_alg.conj.commute)
apply (simp add: mask_def)
done
lemma ucast_and_w256_drop:
"((ucast (w::address))::w256) && 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF = ucast w"
by word_bitwise
definition
bytestr_to_w256 :: "byte list \<Rightarrow> w256" where
"bytestr_to_w256 \<equiv> word_rcat"
lemma hash_diff:
"ucast (hash::32 word) = (0x1B9265B8::w256) \<Longrightarrow> hash = 0x1B9265B8 "
"ucast (hash::32 word) = (0x590E1AE3::w256) \<Longrightarrow> hash = 0x590E1AE3 "
"ucast (hash::32 word) = (0x8f9595d4::w256) \<Longrightarrow> hash = 0x8f9595d4 "
by word_bitwise+
lemma ucast_160_upto_256_eq:
" ((ucast (x::160 word))::w256) = ucast y \<Longrightarrow> x = y"
by (drule ucast_up_inj; simp)
method sep_imp_solve2 uses simp =
solves \<open>rule conjI; rule refl\<close>
| solves \<open>simp\<close>
| solves \<open>(clarsimp?, ((((sep_cancel, clarsimp?)+)|simp add:simp|rule conjI)+)[1])\<close>
| solves \<open>(clarsimp?, ((((sep_cancel, clarsimp?)+)|(clarsimp split:if_split simp: simp)|rule conjI)+)[1])\<close>
| solves \<open>(clarsimp split:if_splits simp:word_rcat_simps) ; sep_imp_solve2 \<close>
method split_conds =
(split if_split_asm; clarsimp simp add: word_rcat_simps)?
method block_vcg2=
split_conds,
((blocks_rule_vcg; (rule refl)?), triple_seq_vcg),
(sep_imp_solve2)+,
(solves \<open>split_conds\<close>)?
theorem verify_escrow_return:
notes
bit_mask_rev[simp add]
address_mask_ucast[simp] address_mask_ucast[simplified word_bool_alg.conj.commute, simp]
ucast_and_w256_drop[simp]
addfund_hash_def[simp] refund_hash_def[simp] pay_hash_def[simp]
word_bool_alg.conj.commute[simp]
length_word_rsplit_4[simp]
ucast_160_upto_256_eq[simp]
hash_diff[simp]
eval_bit_mask[simp]
assumes blk_num: "bn > 2463000"
and net: "at_least_eip150 net"
shows
"\<exists>r. triple net
(program_counter 0 ** stack_height 0 ** (sent_data (word_rsplit hash::byte list))
** sent_value v ** caller sender ** blk_num bn **
memory_usage 0 ** continuing ** gas_pred 40000
** storage 0 (ucast buyer)
** storage 1 (ucast seller)
** storage 2 (ucast arbiter)
** storage 3 amount
** account_existence buyer buyer_ex
** account_existence seller seller_ex
** memory (word_rcat [64::byte]) (bytestr_to_w256 [x]) **
memory (word_rcat [96::byte]) (bytestr_to_w256 [y]))
blocks_escrow (action (return_action sender buyer seller arbiter amount hash v)
** storage 0 (ucast buyer)
** storage 1 (ucast seller)
** storage 2 (ucast arbiter)
** storage 3 (return_amount sender buyer seller amount hash v)** r)"
apply (insert blk_num[simplified word_less_nat_alt] net)
apply (simp add:blocks_escrow_simp)
apply(simp add: return_action_def return_amount_def blocks_simps triple_def )
apply(split if_split, rule conjI)+
apply((rule impI)+, ((erule conjE)+)?, rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
(* 1*)
apply (clarsimp)+
apply(split if_split, rule conjI)+
apply(safe; clarsimp)
apply( clarsimp)
apply(rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (clarsimp split: if_split_asm simp: word_rcat_simps)
apply (clarsimp)+
apply(split if_split, rule conjI)+
apply(safe; clarsimp)
apply( clarsimp)
apply(rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (clarsimp)
apply (rule conjI)
apply (clarsimp simp: word_rcat_simps)
(* write simp rules to put stack in first pos *)
apply (sep_select 6)
apply (sep_cancel)+
apply (clarsimp split: if_split simp: word_rcat_simps)
apply (split_conds)
apply (sep_cancel)+
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
(*1*)
apply (clarsimp split: if_split )
apply (rule conjI; clarsimp)
apply (case_tac " hash = pay_hash"; clarsimp)
apply (case_tac "v \<noteq> 0")
apply (rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply (case_tac "amount \<noteq> 0"; clarsimp)
apply(rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply(rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
(*1*)
apply (case_tac " hash = refund_hash"; clarsimp)
apply (case_tac "v \<noteq> 0")
apply (rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply (case_tac "amount \<noteq> 0"; clarsimp)
apply(rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply(rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
(*1*)
apply (case_tac "hash = addfund_hash"; clarsimp)
apply (case_tac "amount > 0")
apply (case_tac "amount \<noteq> v")
apply (case_tac "sender \<noteq> buyer")
apply (rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply (rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply (rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply (rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply (split_conds)
apply (rule exI)
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
apply ((block_vcg2)[1])
done
end
| Isabelle | 5 | pirapira/eth-isabelle | example/Escrow.thy | [
"Apache-2.0"
] |
// run-pass
// aux-build:static-function-pointer-aux.rs
extern crate static_function_pointer_aux as aux;
fn f(x: isize) -> isize { x }
pub fn main() {
assert_eq!(aux::F(42), -42);
unsafe {
assert_eq!(aux::MutF(42), -42);
aux::MutF = f;
assert_eq!(aux::MutF(42), 42);
aux::MutF = aux::f;
assert_eq!(aux::MutF(42), -42);
}
}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/statics/static-function-pointer-xc.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
class Generic {
var x;
}
var inst = new borrowed Generic(10);
writeln(inst.type < Generic);
writeln(inst.type > Generic);
writeln(inst.type < borrowed Generic);
writeln(inst.type > borrowed Generic);
| Chapel | 3 | jhh67/chapel | test/types/typeFunctions/isSubtype-12130.chpl | [
"ECL-2.0",
"Apache-2.0"
] |
vcl 4.0;
backend default {
.host = "localhost";
.port = "8080";
}
acl purger {
"localhost";
"203.0.113.100";
"2001:DB8:0000:0000:0000:1234";
}
sub vcl_recv {
if (client.ip != "127.0.0.1" && req.http.host ~ "example-over-https.com") {
set req.http.x-redir = "https://www.example-over-https.com" + req.url;
return(synth(850, ""));
}
if (req.method == "PURGE") {
if (!client.ip ~ purger) {
return(synth(405, "This IP is not allowed to send PURGE requests."));
}
return (purge);
}
if (req.restarts == 0) {
if (req.http.X-Forwarded-For) {
set req.http.X-Forwarded-For = client.ip;
}
}
if (req.http.Authorization || req.method == "POST") {
return (pass);
}
if (req.url ~ "/feed") {
return (pass);
}
if (req.url ~ "wp-admin|wp-login") {
return (pass);
}
set req.http.cookie = regsuball(req.http.cookie, "wp-settings-\d+=[^;]+(; )?", "");
set req.http.cookie = regsuball(req.http.cookie, "wp-settings-time-\d+=[^;]+(; )?", "");
if (req.http.cookie == "") {
unset req.http.cookie;
}
}
sub vcl_synth {
if (resp.status == 850) {
set resp.http.Location = req.http.x-redir;
set resp.status = 302;
return (deliver);
}
}
sub vcl_purge {
set req.method = "GET";
set req.http.X-Purger = "Purged";
return (restart);
}
sub vcl_backend_response {
set beresp.ttl = 24h;
set beresp.grace = 1h;
if (bereq.url !~ "wp-admin|wp-login|product|cart|checkout|my-account|/?remove_item=") {
unset beresp.http.set-cookie;
}
}
sub vcl_deliver {
if (req.http.X-Purger) {
set resp.http.X-Purger = req.http.X-Purger;
}
} | VCL | 4 | bakatz/docs | docs/assets/custom.vcl | [
"CC-BY-4.0"
] |
# $NetBSD: majors.arc,v 1.13 2003/12/10 02:04:00 jmc Exp $
#
# Device majors for arc
#
device-major cons char 0
device-major swap char 1 block 1
device-major ctty char 2
device-major mem char 3
device-major pts char 4 pty
device-major ptc char 5 pty
device-major log char 6
device-major filedesc char 7
device-major cd char 8 block 3 cd
device-major sd char 9 block 0 sd
device-major st char 10 block 5 st
device-major vnd char 11 block 2 vnd
device-major bpf char 12 bpfilter
device-major fd char 13 block 7 fdc
device-major pc char 14 pc
device-major opms char 15 opms
device-major lpt char 16 lpt
device-major com char 17 com
device-major wd char 18 block 4 wd
device-major scsibus char 19 scsibus
device-major md char 22 block 8 md
device-major ccd char 23 block 6 ccd
device-major raid char 24 block 9 raid
device-major tun char 25 tun
device-major joy char 26 joy
device-major wsdisplay char 27 wsdisplay
device-major wsmux char 28 wsmux
device-major wskbd char 29 wskbd
device-major wsmouse char 30 wsmouse
device-major ipl char 31 ipfilter
device-major uk char 32 uk
device-major rnd char 33 rnd
device-major ss char 34 ss
device-major ses char 35 ses
device-major ch char 36 ch
device-major isdn char 37 isdn
device-major isdnctl char 38 isdnctl
device-major isdnbchan char 39 isdnbchan
device-major isdntrc char 40 isdntrc
device-major isdntel char 41 isdntel
device-major lkm char 51 lkm
device-major clockctl char 52 clockctl
device-major systrace char 53 systrace
device-major cgd char 54 block 10 cgd
device-major ksyms char 55 ksyms
device-major wsfont char 56 wsfont
# Majors up to 143 are reserved for machine-dependant drivers.
# New machine-independant driver majors are assigned in
# sys/conf/majors.
| Arc | 2 | MarginC/kame | netbsd/sys/arch/arc/conf/majors.arc | [
"BSD-3-Clause"
] |
import io.vertx.ceylon.platform {
Verticle,
Container
}
import io.vertx.ceylon.core {
Vertx
}
import io.vertx.ceylon.core.net {
NetSocket
}
import io.vertx.ceylon.core.stream {
Pump
}
shared class EchoServer() extends Verticle() {
shared actual void start(Vertx vertx, Container container) {
vertx.createNetServer().connectHandler(void(NetSocket sock) {
Pump(sock.readStream, sock.writeStream).start();
}).listen(1234);
}
}
| Ceylon | 4 | vietj/vertx-examples | src/raw/ceylon/echo/EchoServer.ceylon | [
"Apache-2.0"
] |
exec("swigtest.start", -1);
try
e = new_Engine();
catch
swigtesterror();
end
try
a = new_A();
catch
swigtesterror();
end
// TODO: test write method
exec("swigtest.quit", -1);
| Scilab | 2 | kyletanyag/LL-Smartcard | cacreader/swig-4.0.2/Examples/test-suite/scilab/abstract_typedef_runme.sci | [
"BSD-3-Clause"
] |
---
title: "Introduction to STL Forecasting"
output: html_notebook
---
In this notebook we present a [decomposition model](https://fabletools.tidyverts.org/reference/decomposition_model.html) that combines STL (Seasonal and Trend decomposition using Loess) and ETS/ARIMA with [tidyverts](https://tidyverts.org/). From the documentation:
> This function allows you to specify a decomposition combination model using any additive decomposition. It works by first decomposing the data using the decomposition method provided to dcmp_fn with the given formula. Secondary models are used to fit each of the components from the resulting decomposition.
For more details see Forecasting: [Principles and Practice, Section 3.6 STL Decomposition](https://otexts.com/fpp3/stl.html).
```{r}
library(readr)
library(dplyr)
library(lubridate)
library(ggplot2)
library(fable)
library(feasts)
library(stringr)
options(dplyr.summarise.inform=F)
```
# Read Data
We will use the Basel temperature data set.
```{r}
raw_df <- read_csv('../../data/basel_weather.csv')
```
# EDA
```{r}
data_df <- raw_df %>%
rename(temperature = `Basel Temperature [2 m elevation corrected]`,
precipitation = `Basel Precipitation Total`,
wind_speed = `Basel Wind Speed [10 m]`,
wind_direction = `Basel Wind Direction [10 m]`) %>%
mutate(date = date(timestamp),
year = year(timestamp),
month = month(timestamp),
day = day(timestamp),
dayofyear = yday(timestamp),
hour = hour(timestamp))
daily_data_df <- data_df %>%
group_by(date, year, month, day, dayofyear) %>%
summarise(temperature = mean(temperature)) %>%
as_tsibble(index=date)
daily_data_df %>% head()
```
```{r}
autoplot(daily_data_df, temperature) +
labs(title='Basel Temperature (Daily)', y=expression(degree*C))
```
The time series contains a strong seasonal component.
```{r}
daily_data_df %>% gg_season(temperature)
```
We check the decomposition of the time series using STL.
```{r}
daily_data_df %>%
model(STL(temperature ~ season(period = 365, window = Inf))) %>%
components() %>%
autoplot()
```
# Train-Test Split
```{r}
train_test_cut_date <- as_date('2019-01-01')
df_train <- daily_data_df %>% filter(date < train_test_cut_date)
df_test <- daily_data_df %>% filter(date >= train_test_cut_date)
daily_data_df %>%
mutate(data_set = if_else(date < train_test_cut_date, 'train', 'test')) %>%
ggplot(aes(x=date, y=temperature, color=data_set)) +
geom_line() +
labs(title='Basel Temperature (Daily)', y=expression(degree*C)) +
geom_vline(xintercept = train_test_cut_date, linetype = "longdash")
```
# Model Fit
We fit an exponential smoothing and an ARIMA model to the seasonal adjusted time series.
```{r}
fit <- df_train %>%
model(
stl_arima = decomposition_model(
STL(temperature ~ season(period = 365, window = Inf)),
ARIMA(season_adjust ~ 0 + pdq(2, 1, 1) + PDQ(0, 0, 0))
),
stl_ets = decomposition_model(
STL(temperature ~ season(period = 365, window = Inf)),
ETS(season_adjust ~ season("N"))
)
)
```
# Generate Forecast
```{r}
fc <- fit %>%
forecast(h = nrow(df_test))
```
```{r}
error <- fc %>% accuracy(df_test)
rmse_arima <- error %>% filter(.model=="stl_arima") %>% pull(RMSE)
rmse_ets <- error %>% filter(.model=="stl_ets") %>% pull(RMSE)
```
```{r}
fc %>% autoplot(df_test, level=c()) +
labs(title='Basel Temperature (Daily)', y=expression(degree*C)) +
scale_color_discrete(labels = c(stl_arima = str_interp("STL+ARIMA rmse = $[.2f]{rmse_arima}"),
stl_ets = str_interp("STL+ETS rmse = $[.2f]{rmse_ets}")))
```
| RMarkdown | 4 | datenzauberai/btsa | R/intro_forecasting/basel_stl_forecasting.rmd | [
"MIT"
] |
#!/usr/bin/env wisp
(console.log "Hello from Wisp!")
(console.log process.argv)
(console.log "Express library present?" (if (require "express") "express exists" "express missing"))
| wisp | 3 | namsral/piku | examples/nodejs-wisp/hello.wisp | [
"MIT"
] |
public class FromHeaderBinding : System.Web.Http.Controllers.HttpParameterBinding
{
private readonly string _name;
public FromHeaderBinding(System.Web.Http.Controllers.HttpParameterDescriptor parameter, string headerName)
: base(parameter)
{
if (string.IsNullOrEmpty(headerName)) throw new System.ArgumentNullException("headerName");
_name = headerName;
}
public override System.Threading.Tasks.Task ExecuteBindingAsync(System.Web.Http.Metadata.ModelMetadataProvider metadataProvider, System.Web.Http.Controllers.HttpActionContext actionContext, System.Threading.CancellationToken cancellationToken)
{
System.Collections.Generic.IEnumerable<string> values;
var isBound = false;
if (actionContext.Request.Headers.TryGetValues(_name, out values))
{
string tempVal = null;
foreach (var value in values)
{
if (value != null)
{
tempVal = value;
break;
}
}
if (tempVal != null)
{
var actionValue = System.Convert.ChangeType(tempVal, Descriptor.ParameterType);
actionContext.ActionArguments[Descriptor.ParameterName] = actionValue;
isBound = true;
}
}
if (!isBound && Descriptor.IsOptional)
{
actionContext.ActionArguments[Descriptor.ParameterName] = Descriptor.DefaultValue;
}
var taskSource = new System.Threading.Tasks.TaskCompletionSource<object>();
taskSource.SetResult(null);
return taskSource.Task;
}
} | Liquid | 4 | SeanMollet/NSwag | src/NSwag.CodeGeneration.CSharp/Templates/Controller.AspNet.FromHeaderBinding.liquid | [
"MIT"
] |
Rem
bbdoc: MaxGUI Drivers/CocoaMaxGUI
about:
This Module provides a Cocoa based #MaxGUI driver For MacOS.
See version.txt for history
End Rem
Module MaxGUI.CocoaMaxGUI
Strict
ModuleInfo "Version: 1.56"
ModuleInfo "Author: Simon Armstrong, Seb Hollington"
ModuleInfo "License: zlib/libpng"
?MacOs
Import "cocoagui.bmx"
?
| BlitzMax | 2 | jabdoa2/blitzmax | mod/maxgui.mod/cocoamaxgui.mod/cocoamaxgui.bmx | [
"Zlib"
] |
// Declaration file daikon-output/DataStructures/QueueAr.decls rewritten by ComparablePairsDescFileReader
// Wed Jun 04 20:58:04 EDT 2003
VarComparability
implicit
// Declarations for DataStructures/QueueAr.java
// Written Wed Jun 4 20:57:04 2003
ListImplementors
java.util.List
DECLARE
DataStructures.QueueAr.QueueAr():::ENTER
DECLARE
DataStructures.QueueAr.QueueAr():::EXIT30
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.QueueAr(int):::ENTER
capacity
int # isParam=true
int
0
DECLARE
DataStructures.QueueAr.QueueAr(int):::EXIT39
capacity
int # isParam=true
int
0
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.isEmpty():::ENTER
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.isEmpty():::EXIT47
return
boolean
boolean
0
this
DataStructures.QueueAr # isParam=true
hashcode
3
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
2[1]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
1
this.front
int
int
1
this.back
int
int
1
DECLARE
DataStructures.QueueAr.isFull():::ENTER
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.isFull():::EXIT56
return
boolean
boolean
0
this
DataStructures.QueueAr # isParam=true
hashcode
3
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
2[1]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
1
this.front
int
int
1
this.back
int
int
1
DECLARE
DataStructures.QueueAr.makeEmpty():::ENTER
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.makeEmpty():::EXIT67
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.getFront():::ENTER
this
DataStructures.QueueAr # isParam=true
hashcode
-2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
-2[-2]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
-2
this.front
int
int
-2
this.back
int
int
-2
DECLARE
DataStructures.QueueAr.getFront():::EXIT77
return
java.lang.Object
hashcode
-2
return.class
java.lang.Class
java.lang.String
-1
this
DataStructures.QueueAr # isParam=true
hashcode
-2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
-2[-2]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
-2
this.front
int
int
-2
this.back
int
int
-2
DECLARE
DataStructures.QueueAr.getFront():::EXIT78
return
java.lang.Object
hashcode
-2
return.class
java.lang.Class
java.lang.String
-1
this
DataStructures.QueueAr # isParam=true
hashcode
-2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
-2[-2]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
-2
this.front
int
int
-2
this.back
int
int
-2
DECLARE
DataStructures.QueueAr.dequeue():::ENTER
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.dequeue():::EXIT88
return
java.lang.Object
hashcode
-2
return.class
java.lang.Class
java.lang.String
-1
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.dequeue():::EXIT94
return
java.lang.Object
hashcode
0
return.class
java.lang.Class
java.lang.String
-1
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
0[1]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
1
this.front
int
int
1
this.back
int
int
1
DECLARE
DataStructures.QueueAr.enqueue(java.lang.Object):::ENTER
x
java.lang.Object # isParam=true
hashcode
1
x.class
java.lang.Class
java.lang.String
-1
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.enqueue(java.lang.Object):::EXIT109
x
java.lang.Object # isParam=true
hashcode
1
x.class
java.lang.Class
java.lang.String
-1
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.increment(int):::ENTER
x
int # isParam=true
int
0
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
DECLARE
DataStructures.QueueAr.increment(int):::EXIT120
x
int # isParam=true
int
1
return
int
int
1
this
DataStructures.QueueAr # isParam=true
hashcode
0
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
2[1]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
1
this.front
int
int
1
this.back
int
int
1
DECLARE
DataStructures.QueueAr.main(java.lang.String[]):::ENTER
args
java.lang.String[] # isParam=true
hashcode
1
args.class
java.lang.Class
java.lang.String
-1
args[]
java.lang.String[]
java.lang.String[]
0[1]
args[].toString
java.lang.String[]
java.lang.String[]
-1
DECLARE
DataStructures.QueueAr.main(java.lang.String[]):::EXIT201
args
java.lang.String[] # isParam=true
hashcode
1
args.class
java.lang.Class
java.lang.String
-1
args[]
java.lang.String[]
java.lang.String[]
0[1]
args[].toString
java.lang.String[]
java.lang.String[]
-1
DECLARE
DataStructures.QueueAr:::OBJECT
this
DataStructures.QueueAr # isParam=true
hashcode
2
this.theArray
java.lang.Object[]
hashcode
-2
this.theArray.class
java.lang.Class
java.lang.String
-1
this.theArray[]
java.lang.Object[]
hashcode[]
1[0]
this.theArray[].class
java.lang.Class[]
java.lang.String[]
-1
this.currentSize
int
int
0
this.front
int
int
0
this.back
int
int
0
| BlitzBasic | 2 | eurecom-s3/invscov | daikon/java/daikon/test/split/targets/QueueAr.decls | [
"Apache-2.0"
] |
{#
# Copyright (c) 2019 Deciso B.V.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
# OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#}
<p><strong>{{ lang._('Are you sure you want to power off the system?') }}</strong></p>
<button id="do-halt" class="btn btn-primary">{{ lang._('Yes') }}</button>
<a href="/" class="btn btn-default">{{ lang._('No') }}</a>
<script>
'use strict';
$(document).ready(function() {
$('#do-halt').on('click', function() {
BootstrapDialog.show({
type:BootstrapDialog.TYPE_INFO,
title: '{{ lang._('Your device is powering off') }}',
closable: false,
onshow: function(dialogRef){
dialogRef.getModalBody().html('{{ lang._('The system is powering off now.') }}');
ajaxCall('/api/core/system/halt');
},
});
});
});
</script>
| Volt | 4 | Kipjr/core | src/opnsense/mvc/app/views/OPNsense/Core/halt.volt | [
"BSD-2-Clause"
] |
>~:"$"-#v_$ v
^ < > v
> :"i"-|
> > v_v#:$ < <
|-"e":< < >$:"e"-| >v
|-"i":$< >$:"c"-|
|-"c":$< v^ <
v <
>"eurt" v
> "eslaf",>,,,,@
# 09/10/2018
| Befunge | 0 | tlgs/dailyprogrammer | Befunge/easy/e363.befunge | [
"Unlicense"
] |
@aws
runtime nodejs14.x
timeout 14
# concurrency 1
# memory 1152
| Arc | 1 | actsone8/sandbox | test/mock/normal/src/http/get-nodejs14_x/config.arc | [
"Apache-2.0"
] |
// @declaration: true
// @target: es6
export default class C {
} | TypeScript | 2 | nilamjadhav/TypeScript | tests/cases/compiler/declarationEmitDefaultExport1.ts | [
"Apache-2.0"
] |
// script-trianglewave.click
// A Script element is used to control a RatedSource element's rate
// according to a triangle wave. Watch the result by running
// click -p9999 script-trianglewave.click && clicky -p9999
// See also the other script-*wave.click scripts.
s :: RatedSource(RATE 1000)
-> c :: Counter
-> d :: Discard;
Script(TYPE ACTIVE,
init x 1000,
init delta -5,
wait 0.005s,
set x $(add $x $delta),
write s.rate $x,
goto l1 $(in $x 0 1000),
loop,
label l1,
set delta $(if $(eq $x 0) 5 -5),
loop);
ClickyInfo(STYLE #c { decorations: activity } activity { decay: 0 });
| Click | 4 | MacWR/Click-changed-for-ParaGraph | conf/script-trianglewave.click | [
"Apache-2.0"
] |
<!-- #docregion say-hello -->
<p>{{ message }}</p>
<!-- #enddocregion say-hello -->
| HTML | 2 | John-Cassidy/angular | aio/content/examples/what-is-angular/src/app/hello-world-interpolation/hello-world-interpolation.component.html | [
"MIT"
] |
import angular from 'angular';
import controller from './{{dashCase name}}.controller.js'
export const {{camelCase name}} = {
templateUrl: './{{dashCase name}}.html',
controller,
};
angular.module('portainer.{{module}}').component('{{camelCase name}}', {{camelCase name}})
| Handlebars | 4 | WaysonWei/portainer | plop-templates/component.js.hbs | [
"Zlib"
] |
#include "gtest/gtest.h"
#include "reliability/barrier_helper.h"
using namespace ray::streaming;
using namespace ray;
class StreamingBarrierHelperTest : public ::testing::Test {
public:
void SetUp() { barrier_helper_.reset(new StreamingBarrierHelper()); }
void TearDown() { barrier_helper_.release(); }
protected:
std::unique_ptr<StreamingBarrierHelper> barrier_helper_;
const ObjectID random_id = ray::ObjectID::FromRandom();
const ObjectID another_random_id = ray::ObjectID::FromRandom();
};
TEST_F(StreamingBarrierHelperTest, MsgIdByBarrierId) {
ASSERT_EQ(barrier_helper_->GetBarrierMapSize(), 0);
uint64_t msg_id = 0;
uint64_t init_msg_id = 10;
ASSERT_EQ(StreamingStatus::NoSuchItem,
barrier_helper_->GetMsgIdByBarrierId(random_id, 1, msg_id));
barrier_helper_->SetMsgIdByBarrierId(random_id, 1, init_msg_id);
ASSERT_EQ(StreamingStatus::QueueIdNotFound,
barrier_helper_->GetMsgIdByBarrierId(another_random_id, 1, msg_id));
ASSERT_EQ(StreamingStatus::OK,
barrier_helper_->GetMsgIdByBarrierId(random_id, 1, msg_id));
ASSERT_EQ(init_msg_id, msg_id);
barrier_helper_->SetMsgIdByBarrierId(random_id, 2, init_msg_id + 1);
ASSERT_EQ(StreamingStatus::OK,
barrier_helper_->GetMsgIdByBarrierId(random_id, 2, msg_id));
ASSERT_EQ(init_msg_id + 1, msg_id);
ASSERT_EQ(barrier_helper_->GetBarrierMapSize(), 2);
barrier_helper_->ReleaseBarrierMapById(1);
ASSERT_EQ(barrier_helper_->GetBarrierMapSize(), 1);
barrier_helper_->ReleaseAllBarrierMap();
ASSERT_EQ(barrier_helper_->GetBarrierMapSize(), 0);
}
TEST_F(StreamingBarrierHelperTest, BarrierIdByLastMessageId) {
uint64_t barrier_id = 0;
ASSERT_EQ(StreamingStatus::NoSuchItem,
barrier_helper_->GetBarrierIdByLastMessageId(random_id, 1, barrier_id));
barrier_helper_->SetBarrierIdByLastMessageId(random_id, 1, 10);
ASSERT_EQ(
StreamingStatus::QueueIdNotFound,
barrier_helper_->GetBarrierIdByLastMessageId(another_random_id, 1, barrier_id));
ASSERT_EQ(StreamingStatus::OK,
barrier_helper_->GetBarrierIdByLastMessageId(random_id, 1, barrier_id));
ASSERT_EQ(barrier_id, 10);
barrier_helper_->SetBarrierIdByLastMessageId(random_id, 1, 11);
ASSERT_EQ(StreamingStatus::OK,
barrier_helper_->GetBarrierIdByLastMessageId(random_id, 1, barrier_id, true));
ASSERT_EQ(barrier_id, 10);
ASSERT_EQ(StreamingStatus::OK,
barrier_helper_->GetBarrierIdByLastMessageId(random_id, 1, barrier_id, true));
ASSERT_EQ(barrier_id, 11);
ASSERT_EQ(StreamingStatus::NoSuchItem,
barrier_helper_->GetBarrierIdByLastMessageId(random_id, 1, barrier_id, true));
}
TEST_F(StreamingBarrierHelperTest, CheckpointId) {
uint64_t checkpoint_id = static_cast<uint64_t>(-1);
barrier_helper_->GetCurrentMaxCheckpointIdInQueue(random_id, checkpoint_id);
ASSERT_EQ(checkpoint_id, 0);
barrier_helper_->SetCurrentMaxCheckpointIdInQueue(random_id, 2);
barrier_helper_->GetCurrentMaxCheckpointIdInQueue(random_id, checkpoint_id);
ASSERT_EQ(checkpoint_id, 2);
barrier_helper_->SetCurrentMaxCheckpointIdInQueue(random_id, 3);
barrier_helper_->GetCurrentMaxCheckpointIdInQueue(random_id, checkpoint_id);
ASSERT_EQ(checkpoint_id, 3);
}
TEST(BarrierHelper, barrier_map_get_set) {
StreamingBarrierHelper barrier_helper;
ray::ObjectID channel_id = ray::ObjectID::FromRandom();
uint64_t msg_id;
auto status = barrier_helper.GetMsgIdByBarrierId(channel_id, 0, msg_id);
EXPECT_TRUE(status == StreamingStatus::NoSuchItem);
EXPECT_TRUE(barrier_helper.GetBarrierMapSize() == 0);
msg_id = 1;
barrier_helper.SetMsgIdByBarrierId(channel_id, 0, msg_id);
uint64_t fetched_msg_id;
status = barrier_helper.GetMsgIdByBarrierId(channel_id, 0, fetched_msg_id);
EXPECT_TRUE(status == StreamingStatus::OK);
EXPECT_TRUE(fetched_msg_id == msg_id);
EXPECT_TRUE(barrier_helper.GetBarrierMapSize() == 1);
uint64_t fetched_no_barrier_id;
status = barrier_helper.GetMsgIdByBarrierId(channel_id, 1, fetched_no_barrier_id);
EXPECT_TRUE(status == StreamingStatus::NoSuchItem);
ray::ObjectID other_channel_id = ray::ObjectID::FromRandom();
status = barrier_helper.GetMsgIdByBarrierId(other_channel_id, 0, fetched_msg_id);
EXPECT_TRUE(status == StreamingStatus::QueueIdNotFound);
EXPECT_TRUE(barrier_helper.Contains(0));
EXPECT_TRUE(!barrier_helper.Contains(1));
msg_id = 10;
barrier_helper.SetMsgIdByBarrierId(channel_id, 1, msg_id);
EXPECT_TRUE(barrier_helper.Contains(1));
EXPECT_TRUE(barrier_helper.GetBarrierMapSize() == 2);
barrier_helper.ReleaseBarrierMapById(0);
EXPECT_TRUE(!barrier_helper.Contains(0));
EXPECT_TRUE(barrier_helper.GetBarrierMapSize() == 1);
msg_id = 20;
barrier_helper.SetMsgIdByBarrierId(channel_id, 2, msg_id);
std::vector<uint64_t> barrier_id_vec;
barrier_helper.GetAllBarrier(barrier_id_vec);
EXPECT_TRUE(barrier_id_vec.size() == 2);
barrier_helper.ReleaseAllBarrierMap();
EXPECT_TRUE(barrier_helper.GetBarrierMapSize() == 0);
}
TEST(BarrierHelper, barrier_checkpoint_mapping) {
StreamingBarrierHelper barrier_helper;
ray::ObjectID channel_id = ray::ObjectID::FromRandom();
uint64_t msg_id = 1;
uint64_t barrier_id = 0;
barrier_helper.SetMsgIdByBarrierId(channel_id, barrier_id, msg_id);
uint64_t checkpoint_id = 100;
barrier_helper.MapBarrierToCheckpoint(barrier_id, checkpoint_id);
uint64_t fetched_checkpoint_id;
barrier_helper.GetCheckpointIdByBarrierId(barrier_id, fetched_checkpoint_id);
EXPECT_TRUE(fetched_checkpoint_id == checkpoint_id);
barrier_id = 2;
barrier_helper.MapBarrierToCheckpoint(barrier_id, checkpoint_id);
barrier_helper.GetCheckpointIdByBarrierId(barrier_id, fetched_checkpoint_id);
EXPECT_TRUE(fetched_checkpoint_id == checkpoint_id);
barrier_helper.ReleaseBarrierMapCheckpointByBarrierId(barrier_id);
auto status1 = barrier_helper.GetCheckpointIdByBarrierId(0, fetched_checkpoint_id);
auto status2 = barrier_helper.GetCheckpointIdByBarrierId(2, fetched_checkpoint_id);
EXPECT_TRUE(status1 == status2 && status1 == StreamingStatus::NoSuchItem);
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| C++ | 4 | firebolt55439/ray | streaming/src/test/barrier_helper_tests.cc | [
"Apache-2.0"
] |
$! File: stage_curl_install.com
$!
$! $Id$
$!
$! This updates or removes the GNV$CURL.EXE and related files for the
$! new_gnu:[*...] directory tree for running the self tests.
$!
$! The files installed/removed are:
$! [usr.bin]gnv$curl.exe
$! [usr.bin]curl-config.
$! [usr.lib]gnv$libcurl.exe
$! [usr.bin]curl. hard link for [usr.bin]gnv$curl.exe
$! [usr.include.curl]curl.h
$! [usr.include.curl]curlver.h
$! [usr.include.curl]easy.h
$! [usr.include.curl]mprintf.h
$! [usr.include.curl]multi.h
$! [usr.include.curl]stdcheaders.h
$! [usr.include.curl]typecheck-gcc.h
$! [usr.lib.pkgconfig]libcurl.pc
$! [usr.share.man.man1]curl-config.1
$! [usr.share.man.man1]curl.1
$! [usr.share.man.man3]curl*.3
$! [usr.share.man.man3]libcurl*.3
$! Future: A symbolic link to the release notes?
$!
$! Copyright 2012 - 2020, John Malmberg
$!
$! Permission to use, copy, modify, and/or distribute this software for any
$! purpose with or without fee is hereby granted, provided that the above
$! copyright notice and this permission notice appear in all copies.
$!
$! THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
$! WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
$! MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
$! ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
$! WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
$! ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
$! OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
$!
$!
$! 20-Aug-2012 J. Malmberg
$!
$!===========================================================================
$!
$ arch_type = f$getsyi("ARCH_NAME")
$ arch_code = f$extract(0, 1, arch_type)
$!
$ if arch_code .nes. "V"
$ then
$ set proc/parse=extended
$ endif
$!
$!
$! If the first parameter begins with "r" or "R" then this is to
$! remove the files instead of installing them.
$ remove_filesq = f$edit(p1, "upcase,trim")
$ remove_filesq = f$extract(0, 1, remove_filesq)
$ remove_files = 0
$ if remove_filesq .eqs. "R" then remove_files = 1
$!
$!
$! If we are staging files, make sure that the libcurl.pc and curl-config
$! files are present.
$ if remove_files .eq. 0
$ then
$ if f$search("[--]libcurl.pc") .eqs. ""
$ then
$ @build_libcurl_pc.com
$ endif
$ if f$search("[--]curl-config") .eqs. ""
$ then
$ @build_curl-config_script.com
$ endif
$ endif
$!
$!
$! Dest dirs
$!------------------
$ dest_dirs1 = "[usr],[usr.bin],[usr.include],[usr.include.curl]"
$ dest_dirs2 = ",[usr.bin],[usr.lib.pkgconfig],[usr.share]"
$ dest_dirs3 = ",[usr.share.man],[usr.share.man.man1],[usr.share.man.man3]"
$ dest_dirs = dest_dirs1 + dest_dirs2 + dest_dirs3
$!
$!
$! Alias links needed.
$!-------------------------
$ source_curl = "gnv$curl.exe"
$ dest_curl = "[bin]gnv$curl.exe"
$ curl_links = "[bin]curl."
$ new_gnu = "new_gnu:"
$!
$!
$! Create the directories if they do not exist
$!---------------------------------------------
$ i = 0
$curl_dir_loop:
$ this_dir = f$element(i, ",", dest_dirs)
$ i = i + 1
$ if this_dir .eqs. "" then goto curl_dir_loop
$ if this_dir .eqs. "," then goto curl_dir_loop_end
$! Just create the directories, do not delete them.
$! --------------------------------------------------
$ if remove_files .eq. 0
$ then
$ create/dir 'new_gnu''this_dir'/prot=(o:rwed)
$ endif
$ goto curl_dir_loop
$curl_dir_loop_end:
$!
$!
$! Need to add in the executable file
$!-----------------------------------
$ if remove_files .eq. 0
$ then
$ copy [--.src]curl.exe 'new_gnu'[usr.bin]gnv$curl.exe/prot=w:re
$ copy [--]curl-config. 'new_gnu'[usr.bin]curl-config./prot=w:re
$ copy sys$disk:[]gnv$libcurl.exe 'new_gnu'[usr.lib]gnv$libcurl.exe/prot=w:re
$ endif
$!
$ if remove_files .eq. 0
$ then
$ set file/enter='new_gnu'[bin]curl. 'new_gnu'[usr.bin]gnv$curl.exe
$ else
$ file = "''new_gnu'[bin]curl."
$ if f$search(file) .nes. "" then set file/remove 'file';*
$ endif
$!
$!
$ if remove_files .eq. 0
$ then
$ copy [--.include.curl]curl.h 'new_gnu'[usr.include.curl]curl.h
$ copy [--.include.curl]system.h -
'new_gnu'[usr.include.curl]system.h
$ copy [--.include.curl]curlver.h -
'new_gnu'[usr.include.curl]curlver.h
$ copy [--.include.curl]easy.h -
'new_gnu'[usr.include.curl]easy.h
$ copy [--.include.curl]mprintf.h -
'new_gnu'[usr.include.curl]mprintf.h
$ copy [--.include.curl]multi.h -
'new_gnu'[usr.include.curl]multi.h
$ copy [--.include.curl]stdcheaders.h -
'new_gnu'[usr.include.curl]stdcheaders.h
$ copy [--.include.curl]typecheck-gcc.h -
'new_gnu'[usr.include.curl]typecheck-gcc.h
$ copy [--]libcurl.pc 'new_gnu'[usr.lib.pkgconfig]libcurl.pc
$!
$ copy [--.docs]curl-config.1 'new_gnu'[usr.share.man.man1]curl-config.1
$ copy [--.docs]curl.1 'new_gnu'[usr.share.man.man1]curl.1
$!
$ copy [--.docs.libcurl]*.3 -
'new_gnu'[usr.share.man.man3]*.3
$!
$ else
$ file = "''new_gnu'[usr.bin]curl-config."
$ if f$search(file) .nes. "" then delete 'file';*
$ file = "''new_gnu'[usr.bin]gnv$curl.exe"
$ if f$search(file) .nes. "" then delete 'file';*
$ file = "''new_gnu'[usr.lib]gnv$libcurl.exe"
$ if f$search(file) .nes. "" then delete 'file';*
$ file = "''new_gnu'[usr.include.curl]*.h"
$ if f$search(file) .nes. "" then delete 'file';*
$ file = "''new_gnu'[usr.share.man.man1]curl-config.1"
$ if f$search(file) .nes. "" then delete 'file';*
$ file = "''new_gnu'[usr.share.man.man1]curl.1"
$ if f$search(file) .nes. "" then delete 'file';*
$ file = "''new_gnu'[usr.share.man.man3]curl*.3"
$ if f$search(file) .nes. "" then delete 'file';*
$ file = "''new_gnu'[usr.share.man.man3]libcurl*.3"
$ if f$search(file) .nes. "" then delete 'file';*
$ endif
$!
| DIGITAL Command Language | 4 | jjatria/curl | packages/vms/stage_curl_install.com | [
"curl"
] |
a { color: #AABBCCEF } | CSS | 1 | mengxy/swc | crates/swc_css_parser/tests/fixture/esbuild/misc/R6OYU1g_sB_euLV8Yzjw6w/input.css | [
"Apache-2.0"
] |
// +-------------------------+
// ¦ 34 ¦ 21 ¦ 32 ¦ 41 ¦ 25 ¦
// +----+----+----+----+-----¦
// ¦ 14 ¦ 42 ¦ 43 ¦ 14 ¦ 31 ¦
// +----+----+----+----+-----¦
// ¦ 54 ¦ 45 ¦ 52 ¦ 42 ¦ 23 ¦
// +----+----+----+----+-----¦
// ¦ 33 ¦ 15 ¦ 51 ¦ 31 ¦ 35 ¦
// +----+----+----+----+-----¦
// ¦ 21 ¦ 52 ¦ 33 ¦ 13 ¦ 23 ¦
// +-------------------------+
var map := list [ list [34, 21, 32, 41, 25],
list [14, 42, 43, 14, 31],
list [54, 45, 52, 42, 23],
list [33, 15, 51, 31, 35],
list [21, 52, 33, 13, 23] ]
method calculateFirstDigit(num) {
(num / 10).truncated
}
method calculateSecondDigit(num) {
num % 10
}
method followTreasure(treasureMap, start) {
var current := start
var first := calculateFirstDigit(start)
var second := calculateFirstDigit(start)
var keepGoing := true
while {keepGoing} do {
print("Checking treasure map at " ++ current)
var new := treasureMap.at(first).at(second)
if(new == current) then {
keepGoing := false
print("Found treasure at " ++ current)
}
else {
print("Next clue is at " ++ new)
first := calculateFirstDigit(new)
second := calculateFirstDigit(new)
current := new
}
}
}
followTreasure(map, 11) | Grace | 4 | smola/language-dataset | data/github.com/kfrye/cs161/3b544c811350b48261b0d7a6d6ff3b5ed1a8fdca/treasureHunt.grace | [
"MIT"
] |
#include <iostream>
#include <memory>
#include "caffe2/core/module.h"
#include "caffe2/core/operator.h"
#include <gtest/gtest.h>
#include "caffe2/core/logging.h"
// An explicitly defined module, testing correctness when we statically link a
// module
CAFFE2_MODULE(caffe2_module_test_static, "Static module for testing.");
namespace caffe2 {
class Caffe2ModuleTestStaticDummyOp : public OperatorBase {
public:
using OperatorBase::OperatorBase;
bool Run(int /* unused */ /*stream_id*/) override {
return true;
}
virtual string type() {
return "base";
}
};
REGISTER_CPU_OPERATOR(
Caffe2ModuleTestStaticDummy, Caffe2ModuleTestStaticDummyOp);
OPERATOR_SCHEMA(Caffe2ModuleTestStaticDummy);
TEST(ModuleTest, StaticModule) {
const string name = "caffe2_module_test_static";
const auto& modules = CurrentModules();
EXPECT_EQ(modules.count(name), 1);
EXPECT_TRUE(HasModule(name));
// LoadModule should not raise an error, since the module is already present.
LoadModule(name);
// Even a non-existing path should not cause error.
LoadModule(name, "/does/not/exist.so");
EXPECT_EQ(modules.count(name), 1);
EXPECT_TRUE(HasModule(name));
// The module will then introduce the Caffe2ModuleTestStaticDummyOp.
OperatorDef op_def;
Workspace ws;
op_def.set_type("Caffe2ModuleTestStaticDummy");
unique_ptr<OperatorBase> op = CreateOperator(op_def, &ws);
EXPECT_NE(nullptr, op.get());
}
#ifdef CAFFE2_BUILD_SHARED_LIBS
TEST(ModuleTest, DynamicModule) {
const string name = "caffe2_module_test_dynamic";
const auto& modules = CurrentModules();
EXPECT_EQ(modules.count(name), 0);
EXPECT_FALSE(HasModule(name));
// Before loading, we should not be able to create the op.
OperatorDef op_def;
Workspace ws;
op_def.set_type("Caffe2ModuleTestDynamicDummy");
// NOLINTNEXTLINE(cppcoreguidelines-avoid-goto,hicpp-avoid-goto)
EXPECT_THROW(
CreateOperator(op_def, &ws),
EnforceNotMet);
// LoadModule should load the proper module.
LoadModule(name);
EXPECT_EQ(modules.count(name), 1);
EXPECT_TRUE(HasModule(name));
// The module will then introduce the Caffe2ModuleTestDynamicDummyOp.
unique_ptr<OperatorBase> op_after_load = CreateOperator(op_def, &ws);
EXPECT_NE(nullptr, op_after_load.get());
}
#endif
} // namespace caffe2
| C++ | 5 | Hacky-DH/pytorch | caffe2/core/module_test.cc | [
"Intel"
] |
/*
* Copyright 2012-2020 the original author or 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.boot.cli.compiler;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
/**
* Tests for {@link ExtendedGroovyClassLoader}.
*
* @author Phillip Webb
*/
class ExtendedGroovyClassLoaderTests {
private final ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
private final ExtendedGroovyClassLoader defaultScopeGroovyClassLoader = new ExtendedGroovyClassLoader(
GroovyCompilerScope.DEFAULT);
@Test
void loadsGroovyFromSameClassLoader() throws Exception {
Class<?> c1 = Class.forName("groovy.lang.Script", false, this.contextClassLoader);
Class<?> c2 = Class.forName("groovy.lang.Script", false, this.defaultScopeGroovyClassLoader);
assertThat(c1.getClassLoader()).isSameAs(c2.getClassLoader());
}
@Test
void filtersNonGroovy() throws Exception {
Class.forName("org.springframework.util.StringUtils", false, this.contextClassLoader);
assertThatExceptionOfType(ClassNotFoundException.class).isThrownBy(
() -> Class.forName("org.springframework.util.StringUtils", false, this.defaultScopeGroovyClassLoader));
}
@Test
void loadsJavaTypes() throws Exception {
Class.forName("java.lang.Boolean", false, this.defaultScopeGroovyClassLoader);
}
@Test
void loadsSqlTypes() throws Exception {
Class.forName("java.sql.SQLException", false, this.contextClassLoader);
Class.forName("java.sql.SQLException", false, this.defaultScopeGroovyClassLoader);
}
}
| Java | 4 | dreamwy9/spring-boot | spring-boot-project/spring-boot-cli/src/test/java/org/springframework/boot/cli/compiler/ExtendedGroovyClassLoaderTests.java | [
"Apache-2.0"
] |
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import QtQuick 2.11
import QGroundControl 1.0
import QGroundControl.SettingsManager 1.0
Item {
id: root
anchors.fill: parent
property var showText: obstacleDistance._showText
function paintObstacleOverlay(ctx) {
const vehiclePoint = _root.fromCoordinate(_activeVehicleCoordinate, false)
const centerX = vehiclePoint.x
const centerY = vehiclePoint.y
const maxRadiusPixels = 0.9 * root.height / 2 // Max pixels to center
const minRadiusPixels = maxRadiusPixels * 0.2
const metersPerPixelInCycle = (maxRadiusPixels - minRadiusPixels) / obstacleDistance._maxRadiusMeters
const leftCoord = mapControl.toCoordinate(Qt.point(0, root.y), false)
const rightCoord = mapControl.toCoordinate(Qt.point(100, root.y), false)
const metersIn100Pixels = leftCoord.distanceTo(rightCoord)
const metersPerPixel = 100.0 / metersIn100Pixels
var minGradPixels = minRadiusPixels
var maxGradPixels = maxRadiusPixels
var metersToPixels = metersPerPixelInCycle
if (metersIn100Pixels < 4) {
minGradPixels = 0
maxGradPixels = obstacleDistance._maxRadiusMeters * metersPerPixel
metersToPixels = metersPerPixel
}
var grad = ctx.createRadialGradient(centerX, centerY, minGradPixels, centerX, centerY, maxGradPixels)
grad.addColorStop(0, Qt.rgba(1, 0, 0, 1))
grad.addColorStop(0.1, Qt.rgba(1, 0, 0, 0.7))
grad.addColorStop(0.5, Qt.rgba(1, 0.64, 0, 0.7))
grad.addColorStop(0.65, Qt.rgba(1, 0.64, 0, 0.3))
grad.addColorStop(0.95, Qt.rgba(0, 1, 0, 0.3))
grad.addColorStop(1, Qt.rgba(0, 1, 0, 0))
var points = []
const height = minRadiusPixels / 8
for (var i = 0; i < obstacleDistance._rangesLen; ++i) {
const deg = i * obstacleDistance._incrementDeg
const rad = deg * Math.PI / 180.0
const m = obstacleDistance._ranges[obstacleDistance._degToRangeIdx(deg, true)] / 100.0
const pixels = minGradPixels + m * metersToPixels
const outerX = centerX + pixels * Math.cos(rad)
const outerY = centerY + pixels * Math.sin(rad)
const innerX = centerX + (pixels - height) * Math.cos(rad)
const innerY = centerY + (pixels - height) * Math.sin(rad)
points.push({'outer_x': outerX, 'outer_y': outerY, 'inner_x': innerX, 'inner_y': innerY, 'range': m})
}
ctx.strokeStyle = Qt.rgba(0, 0, 0, 0.8)
ctx.font = "bold 22px sans-serif"
ctx.lineWidth = 2;
var mPrev = -1
for (var i = 0; i < points.length; i += 3) {
const i3 = (i + 3) % points.length // catch the line from the last to the first point
ctx.beginPath()
ctx.fillStyle = grad
ctx.moveTo(points[i].inner_x, points[i].inner_y)
ctx.lineTo(points[i].outer_x, points[i].outer_y)
ctx.bezierCurveTo(
points[i + 1].outer_x, points[i + 1].outer_y,
points[i + 2].outer_x, points[i + 2].outer_y,
points[i3].outer_x, points[i3].outer_y)
ctx.lineTo(points[i3].inner_x, points[i3].inner_y)
ctx.bezierCurveTo(
points[i3].inner_x, points[i3].inner_y,
points[i + 2].inner_x, points[i + 2].inner_y,
points[i + 1].inner_x, points[i + 1].inner_y)
ctx.fill()
if (showText) {
var iMin = i
for (var k = iMin + 1; k < iMin + 2; ++k) {
const idx = k % points.length
if (points[idx].range < points[iMin].range)
iMin = idx
}
var m = points[iMin].range
if (m < obstacleDistance._maxRadiusMeters && Math.abs(m - mPrev) > 2.0) {
const textX = points[iMin].inner_x
const textY = points[iMin].inner_y
ctx.fillStyle = Qt.rgba(1, 1, 1, 0.9)
const text = obstacleDistance._rangeToShow(m)
ctx.strokeText(text, textX, textY)
ctx.fillText(text, textX, textY)
mPrev = m
}
}
}
}
ObstacleDistanceOverlay {
id: obstacleDistance
}
}
| QML | 4 | dlech/qgroundcontrol | src/FlightDisplay/ObstacleDistanceOverlayMap.qml | [
"Apache-2.0"
] |
sub Main()
font = createObject("roSGNode", "Font")
print "font node type:" type(font)
print "font node subtype:" font.subtype()
print "font node uri:" font.uri
print "font node size:" font.size
print "font node fallbackGlyph:" font.fallbackGlyph
parent = createObject("roSGNode", "ComponentsAsChildren")
fontAsChild = parent.findNode("font")
print "font as child size:" fontAsChild.size
print "font as child uri:" fontAsChild.uri
end sub
| Brightscript | 3 | lkipke/brs | test/e2e/resources/components/Font.brs | [
"MIT"
] |
var $i i32 align(4) = 987
type $SS1 <struct {
@f1 i32 volatile const,
@f2 i32 align(8),
@f3 i32 const } >
var $iconst1 <[4] [4] i32> const = [ [1007, 707, -273, 75], [0113, 0x4b, 75u, 75l], [75ul, 75lu, 31425926, 60223], [60223, 1619, 30, 314159]]
var $fconst1 <[4] [4] f64 > volatile = [ [1007.0, 707.0, -273.0, 75.0], [113.1, 4.0, 75.0, 75.1], [75.0, 75.1, 3.1425926, 6.02e23], [6.02e+23, 1.6e-19, 3.0, 3.14159]]
func &printf const static varargs (var %p1 <* i8 > volatile const, var %p2 <* i32> volatile)void
func &noarg varargs ( ... ) void
func $main static ( ) i32 {
var %jj i32 volatile align(16)
call &printf (addrof a32 $fconst1)
return (constval i32 0) }
# EXEC: %irbuild Main.mpl
# EXEC: %irbuild Main.irb.mpl
# EXEC: %cmp Main.irb.mpl Main.irb.irb.mpl
| Maple | 2 | harmonyos-mirror/OpenArkCompiler-test | test/testsuite/irbuild_test/I0007-mapleall-irbuild-edge-attributes/Main.mpl | [
"MulanPSL-1.0"
] |
signature dpd_pop3_server {
ip-proto == tcp
payload /^\+OK/
requires-reverse-signature dpd_pop3_client
enable "pop3"
tcp-state responder
}
signature dpd_pop3_client {
ip-proto == tcp
payload /(|.*[\r\n])[[:space:]]*([uU][sS][eE][rR][[:space:]]|[aA][pP][oO][pP][[:space:]]|[cC][aA][pP][aA]|[aA][uU][tT][hH])/
tcp-state originator
}
| Standard ML | 4 | yaplej/bro | scripts/base/protocols/pop3/dpd.sig | [
"Apache-2.0"
] |
// MIR for `try_identity` after SimplifyBranchSame
fn try_identity(_1: Result<u32, i32>) -> Result<u32, i32> {
debug x => _1; // in scope 0 at $DIR/simplify_try.rs:20:17: 20:18
let mut _0: std::result::Result<u32, i32>; // return place in scope 0 at $DIR/simplify_try.rs:20:41: 20:57
let _2: u32; // in scope 0 at $DIR/simplify_try.rs:21:9: 21:10
let mut _3: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:21:19: 21:33
let mut _4: std::result::Result<u32, i32>; // in scope 0 at $DIR/simplify_try.rs:21:31: 21:32
let mut _5: isize; // in scope 0 at $DIR/simplify_try.rs:22:9: 22:15
let _6: i32; // in scope 0 at $DIR/simplify_try.rs:22:13: 22:14
let mut _7: !; // in scope 0 at $DIR/simplify_try.rs:22:19: 22:51
let mut _8: i32; // in scope 0 at $DIR/simplify_try.rs:22:37: 22:50
let mut _9: i32; // in scope 0 at $DIR/simplify_try.rs:22:48: 22:49
let _10: u32; // in scope 0 at $DIR/simplify_try.rs:23:12: 23:13
let mut _11: u32; // in scope 0 at $DIR/simplify_try.rs:25:8: 25:9
scope 1 {
debug y => ((_0 as Ok).0: u32); // in scope 1 at $DIR/simplify_try.rs:21:9: 21:10
}
scope 2 {
debug e => ((_0 as Err).0: i32); // in scope 2 at $DIR/simplify_try.rs:22:13: 22:14
scope 5 (inlined <i32 as From<i32>>::from) { // at $DIR/simplify_try.rs:22:37: 22:50
debug t => ((_0 as Err).0: i32); // in scope 5 at $DIR/simplify_try.rs:22:37: 22:50
}
scope 6 (inlined from_error::<u32, i32>) { // at $DIR/simplify_try.rs:22:26: 22:51
debug e => ((_0 as Err).0: i32); // in scope 6 at $DIR/simplify_try.rs:22:26: 22:51
}
}
scope 3 {
debug v => ((_0 as Ok).0: u32); // in scope 3 at $DIR/simplify_try.rs:23:12: 23:13
}
scope 4 (inlined into_result::<u32, i32>) { // at $DIR/simplify_try.rs:21:19: 21:33
debug r => _4; // in scope 4 at $DIR/simplify_try.rs:21:19: 21:33
}
bb0: {
StorageLive(_2); // scope 0 at $DIR/simplify_try.rs:21:9: 21:10
StorageLive(_3); // scope 0 at $DIR/simplify_try.rs:21:19: 21:33
StorageLive(_4); // scope 0 at $DIR/simplify_try.rs:21:31: 21:32
_4 = _1; // scope 0 at $DIR/simplify_try.rs:21:31: 21:32
_3 = move _4; // scope 4 at $DIR/simplify_try.rs:21:19: 21:33
StorageDead(_4); // scope 0 at $DIR/simplify_try.rs:21:32: 21:33
_5 = discriminant(_3); // scope 0 at $DIR/simplify_try.rs:21:19: 21:33
goto -> bb1; // scope 0 at $DIR/simplify_try.rs:21:13: 21:33
}
bb1: {
_0 = move _3; // scope 1 at $DIR/simplify_try.rs:25:5: 25:10
StorageDead(_3); // scope 0 at $DIR/simplify_try.rs:24:6: 24:7
StorageDead(_2); // scope 0 at $DIR/simplify_try.rs:26:1: 26:2
return; // scope 0 at $DIR/simplify_try.rs:26:2: 26:2
}
}
| Mirah | 3 | mbc-git/rust | src/test/mir-opt/simplify_try.try_identity.SimplifyBranchSame.after.mir | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
CREATE TABLE `tb_upzbnfzylo` (
`col_dppomywdgn` tinyblob,
`col_hybjpvnihc` mediumblob,
`col_nvqsfunmve` set('enum_or_set_0','enum_or_set_1','enum_or_set_2') CHARACTER SET utf8 DEFAULT 'enum_or_set_0',
`col_rvwyvmeidf` enum('enum_or_set_0','enum_or_set_1','enum_or_set_2') CHARACTER SET utf8 NOT NULL DEFAULT 'enum_or_set_0',
CONSTRAINT PRIMARY KEY (`col_rvwyvmeidf`)
) DEFAULT CHARSET=utf8;
CREATE TABLE `tb_tfimbaoajc` LIKE `tb_upzbnfzylo`;
CREATE TABLE `tb_hovvshypke` (
`col_psutzipcit` integer(29) zerofill,
UNIQUE INDEX `col_psutzipcit` (`col_psutzipcit`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
RENAME TABLE `tb_hovvshypke` TO `tb_zixkylluol`, `tb_tfimbaoajc` TO `tb_rmmpcdzkft`;
ALTER TABLE `tb_zixkylluol` ADD COLUMN `col_iwtkwazsiv` time NULL DEFAULT '00:00:00' AFTER `col_psutzipcit`;
ALTER TABLE `tb_zixkylluol` ADD COLUMN `col_cqbtbuqstu` smallint unsigned;
ALTER TABLE `tb_zixkylluol` DEFAULT CHARACTER SET utf8mb4;
ALTER TABLE `tb_zixkylluol` ALTER COLUMN `col_psutzipcit` DROP DEFAULT;
ALTER TABLE `tb_zixkylluol` ALTER `col_psutzipcit` DROP DEFAULT;
ALTER TABLE `tb_zixkylluol` DROP `col_cqbtbuqstu`, DROP `col_iwtkwazsiv`;
ALTER TABLE `tb_zixkylluol` DROP KEY `col_psutzipcit`;
| SQL | 3 | yuanweikang2020/canal | parse/src/test/resources/ddl/alter/test_73.sql | [
"Apache-2.0"
] |
{%- macro related_bar(related_links) -%}
<ul>
{%- for link in related_links -%}
<li><a href="{{ url(link.url) }}" title="{{ link.title|striptags }}">{{ link.text }}</a></li>
{%- endfor -%}
</ul>
{%- endmacro -%}
{{- related_bar(links) -}}
| Volt | 4 | tidytrax/cphalcon | tests/_data/fixtures/views/macro/related_links.volt | [
"BSD-3-Clause"
] |
================================================================================================
projection on wide table
================================================================================================
OpenJDK 64-Bit Server VM 1.8.0_282-b08 on Linux 5.4.0-1043-azure
Intel(R) Xeon(R) CPU E5-2673 v4 @ 2.30GHz
projection on wide table: Best Time(ms) Avg Time(ms) Stdev(ms) Rate(M/s) Per Row(ns) Relative
------------------------------------------------------------------------------------------------------------------------
split threshold 10 1897 1937 46 0.6 1809.2 1.0X
split threshold 100 1461 1493 29 0.7 1393.2 1.3X
split threshold 1024 1106 1126 14 0.9 1054.3 1.7X
split threshold 2048 1064 1104 62 1.0 1014.4 1.8X
split threshold 4096 1370 1401 49 0.8 1306.9 1.4X
split threshold 8192 1887 1966 56 0.6 1799.4 1.0X
split threshold 65536 20021 20148 133 0.1 19093.4 0.1X
| Text | 0 | akhalymon-cv/spark | sql/core/benchmarks/WideTableBenchmark-results.txt | [
"Apache-2.0"
] |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// - A couple helper functions for serializing/deserializing a KeyMapping
// to/from json.
//
// Author(s):
// - Mike Griese - May 2019
#include "pch.h"
#include "ActionMap.h"
#include "ActionAndArgs.h"
#include "KeyChordSerialization.h"
#include "JsonUtils.h"
#include "Command.h"
using namespace winrt::Microsoft::Terminal::Control;
using namespace winrt::Microsoft::Terminal::Settings::Model;
namespace winrt::Microsoft::Terminal::Settings::Model::implementation
{
com_ptr<ActionMap> ActionMap::FromJson(const Json::Value& json)
{
auto result = make_self<ActionMap>();
result->LayerJson(json);
return result;
}
// Method Description:
// - Deserialize an ActionMap from the array `json`. The json array should contain
// an array of serialized `Command` objects.
// - These actions are added to the `ActionMap`, where we automatically handle
// overwriting and unbinding actions.
// Arguments:
// - json: an array of Json::Value's to deserialize into our ActionMap.
// Return value:
// - a list of warnings encountered while deserializing the json
std::vector<SettingsLoadWarnings> ActionMap::LayerJson(const Json::Value& json)
{
// It's possible that the user provided keybindings have some warnings in
// them - problems that we should alert the user to, but we can recover
// from. Most of these warnings cannot be detected later in the Validate
// settings phase, so we'll collect them now.
std::vector<SettingsLoadWarnings> warnings;
for (const auto& cmdJson : json)
{
if (!cmdJson.isObject())
{
continue;
}
AddAction(*Command::FromJson(cmdJson, warnings));
}
return warnings;
}
Json::Value ActionMap::ToJson() const
{
Json::Value actionList{ Json::ValueType::arrayValue };
// Command serializes to an array of JSON objects.
// This is because a Command may have multiple key chords associated with it.
// The name and icon are only serialized in the first object.
// Example:
// { "name": "Custom Copy", "command": "copy", "keys": "ctrl+c" }
// { "command": "copy", "keys": "ctrl+shift+c" }
// { "command": "copy", "keys": "ctrl+ins" }
auto toJson = [&actionList](const Model::Command& cmd) {
const auto cmdImpl{ winrt::get_self<implementation::Command>(cmd) };
const auto& cmdJsonArray{ cmdImpl->ToJson() };
for (const auto& cmdJson : cmdJsonArray)
{
actionList.append(cmdJson);
}
};
// Serialize all standard Command objects in the current layer
for (const auto& [_, cmd] : _ActionMap)
{
toJson(cmd);
}
// Serialize all nested Command objects added in the current layer
for (const auto& [_, cmd] : _NestedCommands)
{
toJson(cmd);
}
// Serialize all iterable Command objects added in the current layer
for (const auto& cmd : _IterableCommands)
{
toJson(cmd);
}
return actionList;
}
}
| C++ | 4 | rasc0l/terminal | src/cascadia/TerminalSettingsModel/ActionMapSerialization.cpp | [
"MIT"
] |
using Uno;
using Uno.UX;
using Fuse; | Uno | 0 | mortend/fuse-studio | Source/Simulator/Tests/UXFeaturesTestApp/UXCascade/UXCascade.uno | [
"MIT"
] |
Scriptname _DE_ShelterDetectSensorScript extends ObjectReference
ObjectReference property _DE_ShelterDetectOrigin auto
Spell property _DE_ShelterDetectBeam auto
GlobalVariable property _DE_fShelterTime auto
GlobalVariable property _DE_fLastShelterTime auto
Event OnHit(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
if akSource == _DE_ShelterDetectBeam
;debug.trace("[Frostfall] SHELTER UPDATE HIT!")
GoToState("GotHit")
_DE_fShelterTime.SetValue(Game.GetRealHoursPassed())
utility.Wait(1.0)
GoToState("")
endif
endEvent
State GotHit
Event OnHit(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
;do nothing
endEvent
endState | Papyrus | 4 | chesko256/Campfire | Scripts/Source/_DE_ShelterDetectSensorScript.psc | [
"MIT"
] |
################################################################
## Title: Data Science For Database Professionals
## Description: Building the Telco Churn Model
## Author: Microsoft
################################################################
####################################################################################################
##Compute context
####################################################################################################
connection_string <- "Driver=SQL Server;Server=.;Database=telcoedw2;Trusted_Connection=yes;"
sql <- RxInSqlServer(connectionString = connection_string, autoCleanup = FALSE, consoleOutput = TRUE)
local <- RxLocalParallel()
rxOptions(reportProgress = 0)
####################################################################################################
##Connect to the data
####################################################################################################
rxSetComputeContext(local)
##SQL data source
trainDataTb <- RxSqlServerData(
connectionString = connection_string,
table = "edw_cdr_train",
colInfo = col_info)
testDataTb <- RxSqlServerData(
connectionString = connection_string,
table = "edw_cdr_test",
colInfo = col_info)
rxGetInfo(trainDataTb, getVarInfo = T, numRows = 3)
rxGetInfo(testDataTb, getVarInfo = T, numRows = 3)
rxSummary( ~ churn, data = trainDataTb)
rxSummary( ~ churn, data = testDataTb)
##Data frame
trainData <- rxDataStep(trainDataTb, overwrite = TRUE)
testData <- rxDataStep(testDataTb, overwrite = TRUE)
str(trainData)
str(testData)
####################################################################################################
## Random forest modeling with randomForest on the data frame
####################################################################################################
library(randomForest)
##Train Model
system.time(
forest_model <- randomForest(churn ~ .,
data = trainData,
ntree = 8,
mtry = 2,
maxdepth = 32,
replace = TRUE))
print(forest_model)
#visualize error evolution
plot(forest_model)
#view importance of each predictor
importance(forest_model)
#visualize importance of each predictor
plot(importance(forest_model), lty = 2, pch = 16)
lines(importance(forest_model))
##Score Model
system.time(predictions.class <- predict(forest_model, newdata = testData, type = "response"))
system.time(predictions.prob <- predict(forest_model, newdata = testData, type = "prob"))
testPredData <- cbind(testData, predictions.class, predictions.prob[, 2])
names(testPredData)[names(testPredData) == "predictions.class"] <- "randomForest_Prediction"
names(testPredData)[names(testPredData) == "predictions.prob[, 2]"] <- "randomForest_Probability"
head(testPredData)
##Evaluate Model
forest_metrics <- evaluate_model(data = testPredData,
observed = "churn",
predicted = "randomForest_Prediction")
forest_metrics
threshold = 0.5
S = testPredData$randomForest_Probability
Y = testPredData$churn
roc.curve(s = threshold)
ROC.curve = Vectorize(roc.curve)
M.ROC.randomForest = ROC.curve(s = seq(0, 1, by = .01))
library(AUC)
library(pROC)
randomForest.auc <- auc(randomForest_Prediction, churn)
plot(M.ROC.randomForest[1,], M.ROC.randomForest[2,], main = "ROC Curves for Random Forest", col = "blue", lwd = 4, type = "l", xlab = "False Positive Rate", ylab = "True Positive Rate")
text(0.2, 0, paste("AUC=", round(randomForest.auc, 2)))
####################################################################################################
## Extreme gradient boost modeling with xgboost on the data frame
####################################################################################################
library(Matrix)
library(xgboost)
##Train Model
ntrainData <- apply(trainData[, -27], 2, as.numeric)
ntestData <- apply(testData[, -27], 2, as.numeric)
dtrainData <- list()
dtestData <- list()
dtrainData$data <- Matrix(ntrainData, sparse = TRUE)
dtrainData$label <- as.numeric(trainData$churn) - 1
dtestData$data <- Matrix(ntestData, sparse = TRUE)
dtestData$label <- as.numeric(testData$churn) - 1
str(dtrainData)
str(dtestData)
system.time(
xgboost_model <- xgboost(data = dtrainData$data, label = dtrainData$label, max.depth = 32, eta = 1, nthread = 2, nround = 2, objective = "binary:logistic")
)
importance <- xgb.importance(feature_names = dtrainData$data@Dimnames[[2]], model = xgboost_model)
print(importance)
library(Ckmeans.1d.dp)
xgb.plot.importance(importance)
##Score Model
predictions <- predict(xgboost_model, dtestData$data)
threshold <- 0.5
xgboost_Probability <- predictions
xgboost_Prediction <- ifelse(xgboost_Probability > threshold, 1, 0)
testPredData <- cbind(testData[, -27], dtestData$label, xgboost_Prediction, xgboost_Probability)
names(testPredData)[names(testPredData) == "dtestData$label"] <- "churn"
head(testPredData)
##Evaluate Model
xgboost_metrics <- evaluate_model(data = testPredData,
observed = "churn",
predicted = "xgboost_Prediction")
xgboost_metrics
threshold = 0.5
S = testPredData$xgboost_Probability
Y = testPredData$churn
roc.curve(s = threshold)
ROC.curve = Vectorize(roc.curve)
M.ROC.xgboost = ROC.curve(s = seq(0, 1, by = .01))
library(AUC)
library(pROC)
xgboost.auc <- auc(testPredData$xgboost_Prediction,testPredData$churn)
plot(M.ROC.xgboost[1,], M.ROC.xgboost[2,], main = "ROC Curves for Xgboost", col = "blue", lwd = 4, type = "l", xlab = "False Positive Rate", ylab = "True Positive Rate")
text(0.5, 0, paste("AUC=", round(xgboost.auc, 2)))
####################################################################################################
## Decision forest modeling with rxDForest on SQL data source
####################################################################################################
##Train Model
rxSetComputeContext(sql)
train_vars <- rxGetVarNames(trainDataTb)
train_vars <- train_vars[!train_vars %in% c("churn")]
temp <- paste(c("churn", paste(train_vars, collapse = "+")), collapse = "~")
formula <- as.formula(temp)
system.time(
rx_forest_model <- rxDForest(formula = formula,
data = trainDataTb,
nTree = 8,
maxDepth = 32,
mTry = 2,
minBucket = 1,
replace = TRUE,
importance = TRUE,
seed = 8,
parms = list(loss = c(0, 4, 1, 0))))
rx_forest_model
plot(rx_forest_model)
rxVarImpPlot(rx_forest_model)
##Score Model
rxSetComputeContext(local)
system.time(
predictions <- rxPredict(modelObject = rx_forest_model,
data = testData,
type = "prob",
overwrite = TRUE))
threshold <- 0.5
predictions$X0_prob <- NULL
predictions$churn_Pred <- NULL
names(predictions) <- c("Forest_Probability")
predictions$Forest_Prediction <- ifelse(predictions$Forest_Probability > threshold, 1, 0)
predictions$Forest_Prediction <- factor(predictions$Forest_Prediction, levels = c(1, 0))
testPredData <- cbind(testData, predictions)
head(testPredData)
##Evaluate Model
rx_forest_metrics <- evaluate_model(data = testPredData,
observed = "churn",
predicted = "Forest_Prediction")
rx_forest_metrics
roc_curve(data = testPredData,
observed = "churn",
predicted = "Forest_Probability")
####################################################################################################
## Boosted tree modeling with rxBTrees on SQL data source
####################################################################################################
##Train Model
rxSetComputeContext(sql)
system.time(
rx_boosted_model <- rxBTrees(formula = formula,
data = trainDataTb,
minSplit = 10,
minBucket = 10,
learningRate = 0.2,
nTree = 100,
mTry = 2,
maxDepth = 10,
useSurrogate = 0,
replace = TRUE,
importance = TRUE,
lossFunction = "bernoulli"))
rx_boosted_model
plot(rx_boosted_model, by.class = TRUE)
rxVarImpPlot(rx_boosted_model)
##Score Model
rxSetComputeContext(local)
system.time(
predictions <- rxPredict(modelObject = rx_boosted_model,
data = testData,
type = "prob",
overwrite = TRUE))
threshold <- 0.5
names(predictions) <- c("Boosted_Probability")
predictions$Boosted_Prediction <- ifelse(predictions$Boosted_Probability > threshold, 1, 0)
predictions$Boosted_Prediction <- factor(predictions$Boosted_Prediction, levels = c(1, 0))
testPredData <- cbind(testData, predictions)
head(testPredData)
##Evaluate Model
rx_boosted_metrics <- evaluate_model(data = testPredData,
observed = "churn",
predicted = "Boosted_Prediction")
rx_boosted_metrics
roc_curve(data = testPredData,
observed = "churn",
predicted = "Boosted_Probability")
| R | 4 | manikanth/sql-server-samples | samples/features/r-services/telco-customer-churn/R/TelcoChurn-ModelBuilding.r | [
"MIT"
] |
---
is-it-tasty: Yes
---
{{ is-it-tasty }} | Liquid | 0 | binyamin/eleventy | test/stubs/global-dash-variable.liquid | [
"MIT"
] |
GalaxyID,x,y,e1,e2
Galaxy1,3193.45,2863.41,0.066359,-0.031167
Galaxy2,4139.59,168.15,-0.065912,-0.013500
Galaxy3,4139.48,804.80,0.098457,0.112897
Galaxy4,3216.20,1198.34,-0.169122,0.263604
Galaxy5,2664.60,2733.89,0.061180,-0.064954
Galaxy6,848.61,2854.12,0.025839,0.223937
Galaxy7,990.50,1951.80,0.007696,0.262677
Galaxy8,2738.01,566.48,-0.119624,0.181844
Galaxy9,2029.48,2947.22,0.128906,0.077988
Galaxy10,3159.39,3455.91,-0.133882,0.149383
Galaxy11,1383.60,319.45,-0.332047,0.169121
Galaxy12,4032.63,4157.49,0.271497,-0.245179
Galaxy13,295.72,3422.55,-0.519160,-0.033224
Galaxy14,2809.72,2027.95,-0.072628,0.574369
Galaxy15,783.62,3090.90,0.292942,-0.221603
Galaxy16,4179.90,3124.48,0.186274,0.332847
Galaxy17,2336.48,3295.05,0.267367,0.013813
Galaxy18,2572.21,3429.13,0.143731,-0.150498
Galaxy19,2952.87,362.10,-0.049348,-0.004691
Galaxy20,1740.81,3918.79,0.103884,-0.117354
Galaxy21,3207.72,3077.14,0.058098,0.244430
Galaxy22,1037.17,2743.11,0.372775,-0.182650
Galaxy23,306.56,2902.33,-0.198307,0.124885
Galaxy24,1159.27,190.47,0.125623,-0.062300
Galaxy25,373.42,225.24,0.047405,0.112453
Galaxy26,3193.26,2519.44,-0.093461,0.317657
Galaxy27,3066.15,3710.29,-0.235357,-0.003996
Galaxy28,558.22,1373.91,0.216766,-0.186718
Galaxy29,1711.05,429.69,0.176511,0.212924
Galaxy30,698.41,64.25,-0.307837,0.147828
Galaxy31,929.21,2941.06,0.110322,-0.038756
Galaxy32,3258.42,2302.05,0.045471,0.100495
Galaxy33,2548.90,2789.08,-0.205271,0.274494
Galaxy34,2337.35,46.37,0.071727,-0.214388
Galaxy35,4008.48,3225.26,0.236945,0.190653
Galaxy36,2694.35,1969.40,0.078729,0.381852
Galaxy37,3425.18,3612.62,-0.396840,0.004709
Galaxy38,568.77,3224.61,0.405543,0.212206
Galaxy39,3253.77,1912.73,-0.122301,0.009329
Galaxy40,476.86,402.71,-0.177668,0.113680
Galaxy41,3506.08,3313.83,0.051199,-0.096417
Galaxy42,1757.64,367.45,0.076734,0.158429
Galaxy43,3160.40,3802.12,-0.145135,0.048657
Galaxy44,506.64,2234.81,0.196256,0.002420
Galaxy45,2605.66,3670.10,0.341626,0.147115
Galaxy46,4153.87,1506.00,0.220807,0.117941
Galaxy47,1648.52,1588.92,-0.082974,-0.327663
Galaxy48,2353.12,4156.97,-0.173716,-0.259584
Galaxy49,141.59,3676.11,-0.000327,0.181127
Galaxy50,442.33,2963.63,0.127387,0.383625
Galaxy51,1889.19,4035.64,0.429345,0.105557
Galaxy52,990.78,1512.65,-0.005409,0.090341
Galaxy53,550.67,3673.90,0.117560,0.158775
Galaxy54,5.68,4019.97,0.177266,0.025852
Galaxy55,3173.69,3780.90,-0.148961,0.014982
Galaxy56,3434.68,3574.90,0.083817,0.301317
Galaxy57,4023.25,230.83,-0.073018,0.067193
Galaxy58,515.97,2915.15,0.428374,0.065155
Galaxy59,2287.95,1453.55,-0.207559,0.214703
Galaxy60,3712.00,2824.58,-0.208741,0.041292
Galaxy61,2099.95,2239.79,-0.372592,-0.206933
Galaxy62,4181.63,541.06,-0.043876,0.025335
Galaxy63,3044.85,2109.72,-0.083797,0.161299
Galaxy64,2329.99,538.32,0.092580,0.131989
Galaxy65,2993.50,574.41,0.016809,0.234650
Galaxy66,3454.98,4000.83,-0.144940,-0.019095
Galaxy67,528.93,891.30,-0.095725,-0.103495
Galaxy68,195.86,1944.48,0.038380,0.240609
Galaxy69,2326.13,2380.81,-0.116748,0.097507
Galaxy70,1003.34,1894.51,-0.073220,-0.226620
Galaxy71,1876.32,1003.01,-0.159712,0.234794
Galaxy72,783.70,2668.72,0.137117,-0.106335
Galaxy73,1600.85,2571.68,0.041033,-0.164421
Galaxy74,109.01,3131.65,0.043353,0.028880
Galaxy75,2308.41,286.89,-0.113422,0.123579
Galaxy76,864.29,3119.93,-0.019546,-0.326768
Galaxy77,1954.70,1926.63,-0.174304,0.350922
Galaxy78,3165.36,4029.30,0.109440,-0.116726
Galaxy79,1936.87,2835.63,0.100187,-0.150564
Galaxy80,3573.78,2905.01,-0.016440,-0.062452
Galaxy81,1121.16,1789.09,-0.186742,0.175669
Galaxy82,2927.55,1864.14,-0.146261,-0.020827
Galaxy83,1641.72,2613.68,-0.053925,-0.235913
Galaxy84,4172.23,2218.49,0.247339,-0.563415
Galaxy85,293.20,3103.24,0.266400,0.105402
Galaxy86,2413.92,1940.57,0.175471,0.211520
Galaxy87,3592.26,1517.83,-0.168438,-0.196580
Galaxy88,62.03,496.29,-0.134647,-0.064027
Galaxy89,2994.22,3922.04,-0.220780,-0.064400
Galaxy90,3718.08,2947.48,-0.334447,0.291497
Galaxy91,745.19,2540.85,-0.185463,-0.222804
Galaxy92,35.99,2770.84,0.074217,0.324104
Galaxy93,3626.66,2119.50,0.087578,0.045607
Galaxy94,3002.35,744.37,-0.050052,0.134617
Galaxy95,4007.96,670.03,0.270382,0.431064
Galaxy96,1663.70,3328.33,-0.285841,-0.072629
Galaxy97,2721.70,2058.29,0.042009,-0.025769
Galaxy98,354.01,3177.14,0.180861,-0.262244
Galaxy99,3321.53,2890.82,-0.004445,-0.097704
Galaxy100,3212.68,2416.28,0.342677,-0.107750
Galaxy101,2385.18,552.78,-0.180127,-0.114934
Galaxy102,135.08,3332.86,0.172671,-0.024504
Galaxy103,1940.98,1084.99,0.304849,-0.259514
Galaxy104,2705.27,1137.38,0.132376,0.071736
Galaxy105,208.99,1874.41,0.130573,-0.073980
Galaxy106,2059.15,449.35,0.268623,0.135658
Galaxy107,2884.01,3548.15,0.085620,-0.063465
Galaxy108,2671.29,1841.90,0.270153,0.227386
Galaxy109,1107.23,1571.68,0.070717,-0.150240
Galaxy110,3421.28,1100.30,-0.100306,0.087647
Galaxy111,974.84,3930.51,-0.071950,-0.110754
Galaxy112,1066.99,2865.29,0.302413,-0.009909
Galaxy113,2320.45,1100.78,-0.262693,-0.032589
Galaxy114,517.39,3445.61,-0.145106,0.073707
Galaxy115,2712.88,1030.01,0.145643,-0.077832
Galaxy116,1434.44,733.48,0.028071,0.174010
Galaxy117,1207.78,1606.47,-0.108274,0.187182
Galaxy118,1543.68,2749.65,0.034757,0.205886
Galaxy119,894.80,1526.69,-0.031450,0.042088
Galaxy120,2532.79,1431.95,0.005774,-0.202490
Galaxy121,3833.71,2353.33,-0.098229,0.253073
Galaxy122,4080.64,819.01,0.179053,-0.026267
Galaxy123,1958.38,1697.63,-0.156659,0.025675
Galaxy124,1023.54,3892.10,-0.020640,-0.011116
Galaxy125,873.38,2108.12,0.069091,-0.103817
Galaxy126,3156.22,1438.92,-0.132270,0.051069
Galaxy127,1268.96,254.73,0.074837,-0.245732
Galaxy128,592.46,1951.28,0.193192,0.097233
Galaxy129,2589.65,986.88,0.399253,-0.238567
Galaxy130,4060.69,590.02,-0.124713,-0.125612
Galaxy131,10.61,3934.79,-0.489204,-0.059407
Galaxy132,4046.93,3991.82,0.274975,0.053515
Galaxy133,2188.42,1047.42,-0.039372,-0.377470
Galaxy134,2540.52,2318.24,0.117542,0.077952
Galaxy135,2075.00,271.09,-0.224730,0.252109
Galaxy136,3738.24,603.13,0.431364,-0.181136
Galaxy137,3475.07,647.13,-0.171237,0.280056
Galaxy138,657.39,1910.06,0.213841,-0.253189
Galaxy139,966.30,1207.28,-0.051866,0.300551
Galaxy140,430.46,509.94,0.374861,-0.038587
Galaxy141,3059.37,2054.75,0.206601,0.055023
Galaxy142,2284.30,1987.01,0.054954,0.267794
Galaxy143,1548.64,3659.51,0.106660,-0.285824
Galaxy144,2095.10,3246.04,-0.099455,0.085378
Galaxy145,1438.02,2756.64,0.219327,-0.349539
Galaxy146,3495.81,3660.29,0.070732,-0.326802
Galaxy147,134.32,1883.85,-0.276688,0.154677
Galaxy148,1275.75,1249.44,-0.065260,0.316754
Galaxy149,2234.97,2704.92,-0.080507,0.206000
Galaxy150,2984.56,4077.28,0.117089,-0.079178
Galaxy151,1182.06,2464.29,0.075383,0.422770
Galaxy152,1077.90,3044.95,-0.217100,0.114643
Galaxy153,2138.18,2756.82,-0.237166,-0.232922
Galaxy154,1903.47,480.99,0.056437,-0.071190
Galaxy155,2428.15,3730.17,-0.003256,0.077104
Galaxy156,1174.13,1775.55,-0.172167,0.025885
Galaxy157,3089.45,226.53,-0.113934,-0.041049
Galaxy158,2628.44,2920.93,0.318601,-0.044122
Galaxy159,2428.21,1044.65,-0.170425,-0.207437
Galaxy160,150.88,535.15,0.444855,0.005118
Galaxy161,3085.30,431.82,-0.069448,0.318594
Galaxy162,2796.74,15.55,0.002616,-0.051951
Galaxy163,3938.70,1211.73,0.138693,0.132683
Galaxy164,730.08,1461.17,0.088898,0.163583
Galaxy165,986.86,3400.54,-0.055098,0.070935
Galaxy166,2151.43,2676.37,-0.209466,-0.292479
Galaxy167,3502.99,2819.38,-0.339620,0.460354
Galaxy168,774.03,2819.98,0.347209,-0.164128
Galaxy169,1883.44,840.26,0.358125,-0.442503
Galaxy170,2734.92,856.47,-0.085554,-0.060508
Galaxy171,1064.32,454.96,-0.114147,0.043047
Galaxy172,970.49,3580.83,-0.011469,0.045479
Galaxy173,1176.69,1057.40,0.186553,0.207743
Galaxy174,1937.52,2360.69,-0.009649,-0.046898
Galaxy175,3916.48,2420.20,-0.271076,-0.335516
Galaxy176,3343.64,2164.37,0.008694,-0.416726
Galaxy177,1611.77,1363.14,-0.296706,-0.109997
Galaxy178,975.12,1599.72,0.096952,-0.004340
Galaxy179,926.71,491.87,-0.004917,0.351538
Galaxy180,1604.18,755.07,0.234188,0.110505
Galaxy181,3462.91,3865.83,-0.233568,0.056622
Galaxy182,2654.89,35.18,-0.158022,-0.088151
Galaxy183,3715.01,3200.30,0.261196,0.078625
Galaxy184,3779.04,2651.91,-0.047558,-0.134122
Galaxy185,1841.18,3705.72,0.198815,-0.314514
Galaxy186,3329.00,1305.78,-0.005199,-0.101430
Galaxy187,926.08,2669.39,0.097248,-0.057681
Galaxy188,3493.90,455.06,0.336831,0.245447
Galaxy189,1166.06,946.36,0.099227,0.051709
Galaxy190,2642.11,1088.77,-0.149227,0.053215
Galaxy191,3236.05,1130.19,-0.056169,0.298227
Galaxy192,3750.07,3009.48,0.190290,-0.233411
Galaxy193,2431.60,50.52,0.285184,-0.150096
Galaxy194,610.11,2816.97,0.102706,0.051984
Galaxy195,2241.24,118.53,-0.267993,0.032124
Galaxy196,1113.89,3147.59,0.238181,0.243401
Galaxy197,4044.99,1258.17,0.263073,0.249105
Galaxy198,1831.94,85.43,-0.098754,-0.029469
Galaxy199,2590.04,2794.06,-0.184098,-0.022706
Galaxy200,846.15,3965.98,-0.036042,-0.233500
Galaxy201,271.04,3494.15,-0.008206,-0.253605
Galaxy202,4040.05,1976.01,-0.202926,0.072605
Galaxy203,1358.85,3055.44,0.185112,-0.074620
Galaxy204,3348.53,2709.87,0.077648,0.209778
Galaxy205,3869.21,1029.70,-0.157668,0.311963
Galaxy206,1681.67,1344.14,-0.317499,0.076338
Galaxy207,1774.15,389.93,-0.115176,0.140461
Galaxy208,2940.31,3208.64,-0.153883,0.014837
Galaxy209,1836.97,1369.59,-0.110320,-0.054956
Galaxy210,792.30,640.19,-0.043783,0.297524
Galaxy211,1255.94,2543.82,0.174235,0.269207
Galaxy212,4088.73,1234.27,-0.033938,0.193264
Galaxy213,3566.84,1580.99,0.154397,0.240733
Galaxy214,1263.88,2019.41,-0.089322,-0.101386
Galaxy215,4139.77,2676.55,0.039358,-0.197722
Galaxy216,2078.41,1166.54,-0.208785,-0.235720
Galaxy217,1342.05,3047.66,-0.141158,-0.205485
Galaxy218,3223.29,2867.06,-0.176195,-0.157511
Galaxy219,2968.81,175.14,0.272873,-0.485189
Galaxy220,2266.26,3350.91,-0.411460,-0.168477
Galaxy221,1214.24,3224.72,0.311082,0.093784
Galaxy222,1479.15,1127.97,0.255948,-0.166603
Galaxy223,2978.53,685.93,-0.160644,-0.164019
Galaxy224,336.46,2652.68,0.366928,-0.056659
Galaxy225,2196.15,1925.72,0.205752,-0.077483
Galaxy226,3867.19,4030.13,0.282213,-0.005327
Galaxy227,3787.29,937.35,0.073962,-0.021070
Galaxy228,1858.35,3817.26,0.053125,-0.384165
Galaxy229,2422.45,1267.09,-0.059951,0.019146
Galaxy230,2702.73,1670.01,-0.130706,0.348596
Galaxy231,2736.01,619.48,-0.342684,0.144434
Galaxy232,346.08,1915.60,0.158578,0.575390
Galaxy233,1310.42,476.16,-0.251934,-0.146833
Galaxy234,3811.02,469.08,-0.178396,0.081473
Galaxy235,3287.88,113.94,-0.123222,-0.332219
Galaxy236,61.87,3679.29,0.020304,-0.080980
Galaxy237,576.79,2306.41,0.129937,-0.192017
Galaxy238,1169.54,1767.22,-0.002813,-0.298863
Galaxy239,272.34,2546.06,0.034641,0.186752
Galaxy240,2454.18,1859.52,0.122615,0.116111
Galaxy241,2277.03,2386.17,-0.149337,-0.157435
Galaxy242,2198.12,4105.70,-0.096101,-0.343140
Galaxy243,3078.70,3266.94,0.279585,0.240883
Galaxy244,3579.08,2193.45,0.099224,0.230120
Galaxy245,1054.32,3592.28,0.022117,-0.309126
Galaxy246,144.77,2212.60,0.017534,-0.028603
Galaxy247,1756.21,252.28,-0.189196,-0.120568
Galaxy248,1191.68,3106.26,-0.013605,0.002022
Galaxy249,1832.20,3579.47,0.133236,0.343605
Galaxy250,703.02,250.67,0.267807,-0.153948
Galaxy251,2512.85,2560.88,-0.459849,0.129357
Galaxy252,2938.44,745.05,-0.284103,-0.213000
Galaxy253,979.55,606.25,-0.014597,0.458109
Galaxy254,1550.43,482.36,-0.403766,0.067896
Galaxy255,293.09,4015.20,0.183094,0.119499
Galaxy256,3438.31,1858.21,-0.097960,0.058374
Galaxy257,2638.59,1530.33,-0.166133,-0.126441
Galaxy258,2076.82,1086.37,-0.049631,0.021112
Galaxy259,638.82,602.57,0.180523,-0.160955
Galaxy260,3128.97,2342.70,-0.038035,0.123018
Galaxy261,248.71,3307.05,0.120371,-0.229751
Galaxy262,2228.33,1481.37,0.199741,0.160443
Galaxy263,3554.62,716.34,0.249417,0.394998
Galaxy264,3376.44,1686.94,0.080627,-0.156400
Galaxy265,1521.79,2419.67,-0.034281,-0.323696
Galaxy266,2768.11,417.49,-0.131547,-0.067385
Galaxy267,3860.63,1046.23,0.235200,-0.094057
Galaxy268,538.51,4003.49,0.050604,-0.355993
Galaxy269,3706.65,1835.16,0.143843,-0.394152
Galaxy270,206.49,2382.09,0.086950,0.200743
Galaxy271,3711.49,604.88,-0.046242,0.115432
Galaxy272,1443.02,760.81,-0.194732,-0.089602
Galaxy273,4190.70,471.11,-0.281768,-0.203362
Galaxy274,3045.04,662.38,0.080509,-0.078641
Galaxy275,1197.56,3088.51,-0.030493,-0.178472
Galaxy276,3548.47,7.59,0.081265,-0.011170
Galaxy277,3555.80,1040.14,0.091737,-0.027507
Galaxy278,3828.58,1946.07,-0.013655,-0.453704
Galaxy279,3651.78,3192.25,-0.321380,0.046834
Galaxy280,3085.90,316.19,0.199180,-0.348083
Galaxy281,390.37,2175.48,0.237410,0.134928
Galaxy282,1887.71,1717.46,-0.088427,-0.106078
Galaxy283,422.04,1834.05,0.287659,-0.135494
Galaxy284,2632.30,3133.54,-0.007940,0.497126
Galaxy285,69.39,617.21,-0.032579,-0.077056
Galaxy286,2980.20,1267.24,0.221525,0.227640
Galaxy287,3389.03,3315.45,0.205070,-0.016927
Galaxy288,2872.48,3423.97,-0.195054,-0.110064
Galaxy289,392.24,4094.73,0.125165,-0.093822
Galaxy290,3551.10,2906.63,-0.171147,0.004274
Galaxy291,3334.75,604.78,0.226433,0.089651
Galaxy292,118.85,3118.37,-0.022912,-0.169795
Galaxy293,3006.87,823.11,0.150936,-0.193998
Galaxy294,2340.52,3377.82,0.013482,0.152756
Galaxy295,701.63,508.47,-0.069652,0.156065
Galaxy296,3476.37,3014.21,-0.003117,-0.450880
Galaxy297,4014.95,1887.71,-0.290257,0.125335
Galaxy298,1361.47,599.40,-0.022418,0.130064
Galaxy299,4164.64,1989.41,-0.124011,-0.003955
Galaxy300,2656.16,2137.17,0.361766,-0.165745
Galaxy301,845.17,1847.47,-0.133104,0.370609
Galaxy302,3985.90,191.73,-0.315255,-0.215601
Galaxy303,4185.82,910.85,-0.200803,-0.126614
Galaxy304,1072.13,1186.28,0.052165,0.420195
Galaxy305,949.95,1904.71,0.286960,-0.062734
Galaxy306,554.44,1892.90,0.061140,0.398221
Galaxy307,1086.92,2026.72,0.029205,-0.350410
Galaxy308,1887.22,2311.28,-0.231305,0.219217
Galaxy309,2849.96,2331.64,-0.133091,0.429891
Galaxy310,3757.58,234.84,-0.097355,-0.728809
Galaxy311,2650.86,3761.41,0.203998,0.173020
Galaxy312,3718.21,3647.44,0.118255,-0.053364
Galaxy313,3804.69,3111.39,0.044531,-0.042215
Galaxy314,1463.92,668.36,0.412410,0.266900
Galaxy315,984.41,688.16,0.249969,-0.086352
Galaxy316,3473.08,2584.88,0.004955,0.093228
Galaxy317,667.46,1546.26,-0.364419,-0.098369
Galaxy318,1406.18,1371.04,0.205999,0.271872
Galaxy319,255.90,163.72,-0.030613,-0.073172
Galaxy320,2024.18,1255.50,-0.134749,-0.169622
Galaxy321,3405.83,1668.34,-0.367713,0.041427
Galaxy322,1349.48,78.24,-0.058862,-0.041408
Galaxy323,449.14,1673.24,-0.074322,-0.145896
Galaxy324,1877.47,4112.48,0.150628,0.161395
Galaxy325,1389.02,2848.10,-0.196527,-0.073229
Galaxy326,940.64,2472.94,-0.026735,-0.495085
Galaxy327,2791.93,3302.91,-0.241871,0.117432
Galaxy328,1376.18,2437.31,0.049339,-0.067092
Galaxy329,493.45,2152.75,-0.086544,0.281205
Galaxy330,802.28,2953.76,0.361640,-0.121635
Galaxy331,4126.63,1561.50,-0.082406,-0.002953
Galaxy332,4183.44,2773.68,0.077404,0.088717
Galaxy333,59.42,1254.29,-0.056217,-0.159925
Galaxy334,4170.36,2911.90,0.100526,-0.355087
Galaxy335,1136.90,757.89,0.365318,0.190718
Galaxy336,2625.13,1148.63,-0.268864,-0.102372
Galaxy337,124.23,3239.25,-0.304332,0.131022
Galaxy338,1477.62,2429.65,-0.091555,-0.480985
Galaxy339,850.03,439.02,-0.234204,-0.108565
Galaxy340,3420.62,3202.12,0.278763,-0.156746
Galaxy341,2493.40,2136.99,0.260356,-0.109009
Galaxy342,264.19,481.76,-0.030144,-0.005983
Galaxy343,3298.03,1494.75,-0.029692,-0.099787
Galaxy344,3097.77,1542.23,-0.272038,0.046648
Galaxy345,2253.38,3315.85,0.089253,0.082434
Galaxy346,1096.77,1807.59,0.266284,-0.346937
Galaxy347,2300.32,793.92,0.037259,-0.030260
Galaxy348,2973.55,2565.02,0.209226,0.063943
Galaxy349,2643.55,1689.05,0.161141,-0.054099
Galaxy350,3966.82,0.21,-0.218454,0.297769
Galaxy351,1858.43,3996.69,0.017401,-0.050799
Galaxy352,3448.15,1403.75,-0.172868,0.197954
Galaxy353,454.14,3478.92,0.496486,0.209291
Galaxy354,616.32,3620.93,-0.235721,-0.117901
Galaxy355,2929.14,3709.78,0.356133,-0.585258
Galaxy356,1710.39,3557.85,0.279755,-0.005630
Galaxy357,2929.02,2178.36,0.093655,-0.036615
Galaxy358,2869.42,1983.53,0.177463,-0.132774
Galaxy359,3638.31,2207.70,-0.257943,0.110037
Galaxy360,3474.49,3792.48,-0.159423,0.201977
Galaxy361,3085.64,2464.60,-0.018581,-0.242022
Galaxy362,1600.06,1654.61,-0.026158,0.081780
Galaxy363,3863.25,1521.45,-0.203045,-0.101374
Galaxy364,2708.78,3635.65,0.185333,-0.044925
Galaxy365,2769.80,3088.88,-0.007218,-0.235970
Galaxy366,3091.03,4116.73,0.133341,0.199559
Galaxy367,1038.15,774.18,0.021980,-0.141373
Galaxy368,2278.23,4000.73,0.058263,0.231075
Galaxy369,3446.08,972.98,-0.304012,0.008528
Galaxy370,3793.90,3562.95,0.127696,-0.176405
Galaxy371,1552.81,2192.93,0.144672,-0.097420
Galaxy372,3303.24,842.83,-0.054803,-0.110152
Galaxy373,1238.58,3429.28,0.116861,0.030722
Galaxy374,3920.83,919.23,-0.015426,0.219146
Galaxy375,1616.94,3012.17,-0.142151,-0.131724
Galaxy376,3306.51,3762.49,0.018346,-0.112584
Galaxy377,3527.00,300.62,0.255346,-0.293217
Galaxy378,2515.20,2129.88,-0.169038,-0.067631
Galaxy379,944.42,2920.44,-0.028538,0.036955
Galaxy380,295.35,656.69,0.011890,0.039366
Galaxy381,1506.16,3517.99,0.083910,-0.124688
Galaxy382,980.45,2377.83,-0.122834,-0.229280
Galaxy383,1191.34,2514.91,0.307761,-0.173731
Galaxy384,3121.96,3573.35,-0.055629,-0.054989
Galaxy385,2924.95,3285.24,-0.317055,-0.181383
Galaxy386,1132.72,2249.41,0.332268,-0.174532
Galaxy387,2270.28,402.56,-0.250045,-0.122277
Galaxy388,3516.52,235.09,-0.053966,-0.116659
Galaxy389,3129.08,2763.22,-0.335890,-0.236127
Galaxy390,3596.92,1982.59,-0.046979,0.241404
Galaxy391,3538.34,3687.76,0.095401,0.014238
Galaxy392,1901.44,2821.73,0.352052,0.151291
Galaxy393,717.04,2180.85,-0.309673,0.025803
Galaxy394,2761.97,3503.36,0.307889,-0.126070
Galaxy395,3518.24,3294.28,-0.095477,0.389521
Galaxy396,1603.26,805.84,-0.488355,-0.090119
Galaxy397,725.90,728.11,0.122569,0.200064
Galaxy398,834.64,2952.41,-0.103225,-0.114828
Galaxy399,648.40,2954.58,-0.112146,-0.031320
Galaxy400,3863.18,1936.49,0.281942,0.455032
Galaxy401,457.64,2140.79,0.463577,0.108037
Galaxy402,2761.45,1882.38,0.461793,0.080822
Galaxy403,2721.77,2826.78,-0.108380,-0.212968
Galaxy404,1932.26,405.25,-0.188909,0.069383
Galaxy405,3409.06,2597.38,0.283659,-0.516303
Galaxy406,2375.07,315.36,-0.014336,0.204219
Galaxy407,1871.86,2561.18,-0.001196,0.239990
Galaxy408,1206.23,3097.15,-0.291174,-0.176421
Galaxy409,3875.16,4116.31,-0.195297,-0.243812
Galaxy410,2114.65,848.31,-0.296685,0.242105
Galaxy411,109.44,2614.90,0.577912,0.100009
Galaxy412,320.60,139.58,0.391225,-0.054720
Galaxy413,226.22,892.28,-0.373023,0.076878
Galaxy414,828.79,1347.87,-0.056972,0.309802
Galaxy415,1005.11,395.66,0.219502,-0.305563
Galaxy416,3828.68,3345.22,-0.247307,0.203115
Galaxy417,1472.51,1670.21,0.279052,-0.129160
Galaxy418,1950.51,3482.18,-0.040819,0.073086
Galaxy419,346.10,26.99,-0.036471,-0.660462
Galaxy420,1585.07,3320.72,-0.091805,-0.521425
Galaxy421,3012.86,3459.15,-0.015814,-0.100113
Galaxy422,1835.68,846.00,0.099541,-0.229800
Galaxy423,2585.62,3402.29,0.203699,-0.331834
Galaxy424,4131.54,1826.31,0.200696,-0.120555
Galaxy425,2956.68,3440.84,0.371316,-0.101930
Galaxy426,1170.74,2531.26,-0.135106,0.000696
Galaxy427,2300.09,200.65,0.533519,0.020103
Galaxy428,3734.52,1427.75,-0.491288,0.045809
Galaxy429,2643.06,3886.89,0.118693,0.067045
Galaxy430,2252.36,1557.12,-0.247280,-0.348679
Galaxy431,3965.33,2628.64,-0.103191,-0.008657
Galaxy432,2133.19,3164.41,-0.070271,0.009484
Galaxy433,3006.86,2193.05,-0.200654,-0.179673
Galaxy434,2181.69,3419.74,0.014920,0.256930
Galaxy435,1365.74,1011.65,-0.320476,-0.371412
Galaxy436,2681.22,3242.58,-0.240089,-0.155373
Galaxy437,3180.18,2685.72,0.037202,0.207160
Galaxy438,3854.71,1458.28,0.085125,-0.059133
Galaxy439,393.29,2580.05,-0.175762,0.105975
Galaxy440,2912.26,670.42,-0.237297,-0.371467
Galaxy441,1612.04,2540.99,0.025477,0.169903
Galaxy442,2260.20,973.63,0.223842,-0.319210
Galaxy443,3596.62,1640.17,-0.274898,0.102090
Galaxy444,4178.58,3849.93,0.022120,0.000222
Galaxy445,561.74,3723.04,0.272168,-0.046079
Galaxy446,362.98,778.01,-0.057624,-0.157463
Galaxy447,3857.64,1607.62,-0.184238,0.073008
Galaxy448,4175.89,845.43,-0.261410,-0.233973
Galaxy449,2215.17,684.46,0.088950,-0.176121
Galaxy450,3.75,2341.02,-0.101537,0.021145
Galaxy451,3673.96,1584.77,0.026824,0.487351
Galaxy452,511.72,3175.51,-0.234409,0.516399
Galaxy453,1366.79,3669.09,-0.012241,0.125941
Galaxy454,1317.31,3681.98,0.019078,0.134372
Galaxy455,530.23,51.79,0.692750,-0.220530
Galaxy456,1779.68,1206.74,-0.163075,-0.079247
Galaxy457,4148.38,3263.98,-0.283839,-0.130296
Galaxy458,3987.94,1463.85,-0.023049,-0.145019
Galaxy459,665.81,2147.16,0.034718,0.006830
Galaxy460,2248.70,2468.51,0.313203,-0.124547
Galaxy461,2858.72,1935.08,0.081067,0.159442
Galaxy462,3103.23,3185.12,0.275431,-0.056236
Galaxy463,2621.45,3462.05,0.037509,-0.008774
Galaxy464,2960.72,761.63,-0.104860,-0.236871
Galaxy465,4160.78,2265.56,-0.067482,0.056518
Galaxy466,577.67,439.97,0.226243,-0.142153
Galaxy467,761.88,4114.29,0.038825,-0.054678
Galaxy468,4110.59,1383.60,0.283564,0.290806
Galaxy469,204.28,232.02,-0.459660,0.135652
Galaxy470,648.78,509.48,0.260954,-0.034179
Galaxy471,4029.26,3725.04,-0.204281,0.196400
Galaxy472,1843.38,414.78,-0.031546,-0.349820
Galaxy473,3989.09,1071.38,0.028840,0.084262
Galaxy474,2619.22,2283.86,-0.077174,0.117065
Galaxy475,1332.55,915.65,0.136228,-0.257587
Galaxy476,2186.53,413.64,-0.077635,-0.041232
Galaxy477,1267.81,936.70,0.007247,0.030298
Galaxy478,3975.20,893.48,0.088375,-0.146196
Galaxy479,2661.49,524.16,0.224591,0.074862
Galaxy480,266.68,3876.67,-0.289470,0.146377
Galaxy481,1450.66,338.37,0.285296,0.502691
Galaxy482,505.03,469.20,0.070102,-0.277892
Galaxy483,3630.89,4127.40,0.303725,-0.041353
Galaxy484,1453.64,3275.67,0.096465,-0.182276
Galaxy485,1991.37,2863.96,0.253120,-0.227864
Galaxy486,1841.05,1501.78,0.010744,0.326602
Galaxy487,1000.90,793.65,-0.409944,0.162731
Galaxy488,1674.66,2940.34,-0.315741,0.344296
Galaxy489,2250.95,2860.21,-0.283165,0.057282
Galaxy490,1388.68,3442.59,0.184338,-0.158157
Galaxy491,1915.00,3018.04,-0.122285,0.063639
Galaxy492,204.75,2833.59,0.118561,-0.080447
Galaxy493,4100.66,200.90,-0.173339,0.326137
Galaxy494,164.85,1870.20,-0.014976,0.113336
Galaxy495,3829.16,512.68,0.341100,0.247112
Galaxy496,3683.96,2636.57,0.183230,-0.157102
Galaxy497,2100.71,1319.78,-0.241662,0.239889
Galaxy498,3922.63,2473.15,-0.019867,0.067029
Galaxy499,1480.52,3120.18,0.023611,-0.364871
Galaxy500,4005.16,2223.56,-0.137181,0.210960
Galaxy501,3220.15,1241.16,-0.072690,-0.178097
Galaxy502,1378.43,3116.86,0.251056,-0.184590
Galaxy503,2550.63,932.70,0.026845,-0.253122
Galaxy504,588.26,252.53,0.093726,0.374971
Galaxy505,2408.75,4170.92,-0.010882,-0.013381
Galaxy506,220.24,3573.67,0.340401,-0.262284
Galaxy507,1560.67,3457.58,-0.220868,-0.080883
Galaxy508,587.42,1339.38,0.097296,-0.270185
Galaxy509,1999.00,2944.74,0.171680,0.159810
Galaxy510,253.21,1604.37,-0.140506,0.062472
Galaxy511,2593.73,2460.38,-0.087951,-0.035767
Galaxy512,3507.01,2781.83,0.298740,0.105807
Galaxy513,2239.68,105.26,-0.093917,-0.032449
Galaxy514,910.72,2315.18,-0.000676,-0.180544
Galaxy515,2223.54,283.29,0.001215,0.120615
Galaxy516,1696.36,1419.43,0.208182,0.004104
Galaxy517,3575.36,3391.91,-0.324118,-0.067442
Galaxy518,2651.58,2656.93,-0.087248,-0.280865
Galaxy519,1643.77,1711.90,-0.020059,0.402770
Galaxy520,58.58,1400.78,-0.563424,-0.198346
Galaxy521,2935.16,3608.74,-0.115557,0.172548
Galaxy522,791.43,3112.67,-0.013832,0.284027
Galaxy523,2025.99,2008.01,-0.040910,-0.500514
Galaxy524,3452.09,2249.32,0.096122,0.174957
Galaxy525,2587.30,3992.77,-0.002169,-0.150325
Galaxy526,586.26,981.55,0.359087,-0.176731
Galaxy527,2897.40,2829.54,-0.076114,0.413313
Galaxy528,3660.64,4000.46,0.169754,0.263448
Galaxy529,580.09,3261.31,0.160265,0.012120
Galaxy530,3093.89,2118.39,-0.047075,0.114447
Galaxy531,4093.62,1462.10,-0.255389,0.141786
Galaxy532,169.65,2023.24,-0.237907,0.258668
Galaxy533,810.35,4087.58,0.091391,0.140763
Galaxy534,1822.85,2110.99,-0.005974,0.074525
Galaxy535,2993.56,785.64,-0.049240,0.099833
Galaxy536,1722.92,1849.21,-0.020274,0.052267
Galaxy537,292.40,2664.81,0.194628,-0.012214
Galaxy538,4187.24,1776.95,0.274744,-0.089098
Galaxy539,911.12,3639.97,0.033716,0.350115
Galaxy540,1571.55,144.39,-0.155632,0.197645
Galaxy541,287.71,2713.77,0.035590,0.480762
Galaxy542,998.11,577.72,-0.155360,0.083647
Galaxy543,3007.21,1817.78,-0.087443,0.207457
Galaxy544,1346.68,2263.51,-0.229846,0.041733
Galaxy545,2847.02,1310.46,0.333251,0.189403
Galaxy546,1126.91,904.50,0.174895,0.434967
Galaxy547,1534.21,1092.55,0.058704,0.713597
Galaxy548,2465.83,3061.50,-0.110543,0.162637
Galaxy549,487.56,2110.13,0.110588,-0.086723
Galaxy550,2334.74,448.88,-0.232888,0.319627
Galaxy551,1676.94,1338.73,0.267463,-0.078423
Galaxy552,4016.05,2688.25,0.347872,-0.590406
Galaxy553,2775.65,222.22,0.108900,0.105764
Galaxy554,1107.13,231.38,0.081451,-0.049589
Galaxy555,2689.99,1360.58,-0.036216,-0.003611
Galaxy556,2922.61,3440.14,-0.153957,-0.041208
Galaxy557,3379.71,3530.02,-0.366666,0.099542
Galaxy558,3852.75,2750.24,-0.114084,0.006222
Galaxy559,806.96,2441.48,-0.208304,-0.010922
Galaxy560,3606.68,1134.79,-0.217296,-0.163173
Galaxy561,487.51,4089.08,0.174114,-0.282763
Galaxy562,4049.09,2795.74,-0.230383,0.350654
Galaxy563,1074.19,3412.23,-0.057155,-0.172237
Galaxy564,1926.78,2079.36,0.204164,-0.051717
Galaxy565,3927.60,3944.07,-0.428784,0.193823
Galaxy566,3367.78,3687.53,-0.102290,0.165650
Galaxy567,1118.26,1783.64,0.022219,-0.080817
Galaxy568,2962.64,2036.84,0.047643,-0.034611
Galaxy569,1219.06,787.22,-0.088076,0.209633
Galaxy570,205.49,3898.98,-0.003340,-0.187599
Galaxy571,171.15,2803.19,0.028011,0.092955
Galaxy572,1967.21,1805.83,-0.164883,-0.090731
Galaxy573,1857.37,499.48,-0.288640,0.044875
Galaxy574,3976.54,785.66,-0.334715,0.119600
Galaxy575,2254.78,512.65,-0.110557,0.450200
Galaxy576,3642.01,1637.85,0.099084,0.002227
Galaxy577,1585.38,548.08,0.254489,0.286379
Galaxy578,2936.42,858.60,-0.066427,-0.243211
Galaxy579,668.07,1629.01,-0.239851,0.336795
Galaxy580,3425.84,171.05,-0.072301,0.059330
Galaxy581,3686.02,2302.45,0.131042,-0.132554
Galaxy582,3922.65,285.20,0.042229,0.244474
Galaxy583,2296.22,3293.83,-0.090971,-0.230596
Galaxy584,55.57,3236.52,0.366279,-0.305801
Galaxy585,2192.69,828.16,0.203716,-0.069363
Galaxy586,1476.76,711.29,-0.031415,-0.090670
Galaxy587,2811.28,2284.33,-0.024857,0.243688
Galaxy588,2689.47,2032.53,-0.029879,-0.138722
Galaxy589,1834.95,2303.56,-0.209406,-0.133139
Galaxy590,3140.53,711.52,-0.013260,0.080478
Galaxy591,307.71,2742.39,-0.072156,0.018582
Galaxy592,1358.49,3250.91,0.384258,-0.043669
Galaxy593,2817.66,3948.79,-0.174451,-0.009764
Galaxy594,2037.35,1430.19,-0.120067,0.270020
Galaxy595,2291.70,3413.45,-0.009284,0.062883
Galaxy596,2596.15,3984.02,0.257856,0.005977
Galaxy597,383.18,905.87,0.556037,-0.110805
Galaxy598,1259.26,242.38,0.075829,0.302337
Galaxy599,2354.86,1223.78,-0.407544,0.173860
Galaxy600,1065.87,3290.65,-0.051022,-0.275641
Galaxy601,2202.13,1946.56,-0.306987,-0.199606
Galaxy602,734.98,3531.69,0.146529,0.096890
Galaxy603,1045.32,941.08,0.196842,-0.237778
Galaxy604,2594.37,2163.36,0.149706,-0.041936
Galaxy605,1344.89,1290.43,0.451018,0.142451
Galaxy606,2641.60,1282.42,-0.701291,0.079790
Galaxy607,3072.36,2332.54,0.248591,0.082587
Galaxy608,3370.42,3228.28,0.134130,0.040714
Galaxy609,858.81,3559.99,0.015245,-0.326690
Galaxy610,1415.99,2710.23,-0.218626,0.411259
Galaxy611,1663.97,546.75,-0.177789,0.082043
Galaxy612,2662.85,2034.25,-0.104315,0.027731
Galaxy613,3337.50,2698.43,0.243159,0.076683
Galaxy614,245.53,539.04,-0.167561,-0.242078
Galaxy615,3395.10,741.79,-0.071600,0.183303
Galaxy616,3112.15,1591.09,-0.067204,-0.225049
Galaxy617,3905.67,3599.32,-0.292719,-0.232807
Galaxy618,1549.16,28.58,-0.113422,0.313744
Galaxy619,3809.74,1451.12,-0.329562,-0.279943
Galaxy620,238.99,3665.48,-0.349898,0.248700
Galaxy621,3991.82,1431.65,0.040075,-0.106846
Galaxy622,680.69,2819.23,0.098272,0.234737
Galaxy623,1290.00,3881.17,-0.181376,0.068856
Galaxy624,2293.39,1109.41,-0.137514,0.162345
Galaxy625,2912.66,3199.31,0.295145,-0.161718
Galaxy626,364.61,1045.33,-0.005680,-0.150354
Galaxy627,2388.81,2222.56,-0.452437,-0.237717
Galaxy628,3309.70,604.54,0.278749,-0.402769
Galaxy629,2311.12,2570.33,0.165881,-0.109319
Galaxy630,2500.03,3346.46,-0.064781,0.222452
Galaxy631,3106.35,1254.09,-0.411654,0.117848
Galaxy632,3034.86,3579.07,0.096667,0.352847
Galaxy633,3203.93,3713.80,-0.147021,-0.342165
Galaxy634,3461.32,2657.14,-0.228971,-0.233638
Galaxy635,3314.91,3737.31,0.016706,-0.195905
Galaxy636,1895.97,4179.05,0.171386,0.037143
Galaxy637,2897.81,3265.45,-0.268616,-0.129032
Galaxy638,1517.57,472.57,-0.144005,0.048774
Galaxy639,1657.10,2357.61,0.343663,-0.193688
Galaxy640,2569.84,1390.27,-0.369231,-0.253982
Galaxy641,3527.98,3058.69,0.103847,0.398263
Galaxy642,1223.60,2915.89,-0.200099,-0.004591
Galaxy643,501.13,3589.10,0.491868,0.253002
Galaxy644,3430.97,1070.65,-0.282381,0.074751
Galaxy645,3980.34,1140.77,0.083372,0.288641
Galaxy646,2271.23,1108.77,0.175728,0.237902
Galaxy647,847.86,1960.56,0.191901,-0.092308
Galaxy648,791.42,1116.85,-0.044387,0.104748
Galaxy649,4040.34,2678.49,-0.182042,0.284702
Galaxy650,1611.19,3684.60,0.303731,0.076096
Galaxy651,2535.42,2260.37,0.209711,0.300141
Galaxy652,1657.80,1879.18,-0.352732,-0.273380
Galaxy653,2112.58,882.24,0.062580,0.079615
Galaxy654,888.37,3595.06,0.317257,-0.039092
Galaxy655,3725.80,886.64,-0.546672,-0.058246
Galaxy656,3730.10,3382.78,-0.345432,-0.079177
Galaxy657,3427.45,1117.24,0.340916,-0.066014
Galaxy658,2899.83,336.03,-0.092567,-0.033039
Galaxy659,2005.94,2860.76,-0.136513,-0.368727
Galaxy660,3757.12,1946.94,-0.201562,-0.274380
Galaxy661,3329.11,3801.17,-0.164948,-0.173298
Galaxy662,3114.04,1949.35,0.096742,-0.086950
Galaxy663,406.16,2443.47,0.259062,0.222677
| CSV | 2 | jColeChanged/Probabilistic-Programming-and-Bayesian-Methods-for-Hackers | Chapter5_LossFunctions/data/Train_Skies/Train_Skies/Training_Sky78.csv | [
"MIT"
] |
# Tests that Spack detects target when it is the second of two targets
rule cc
command = true
build test check: cc
| Ninja | 2 | kkauder/spack | lib/spack/spack/test/data/ninja/affirmative/test_check/build.ninja | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- generated with COPASI 4.22 (Build 170) (http://www.copasi.org) at 2018-04-17 16:29:10 UTC -->
<?oxygen RNGSchema="http://www.copasi.org/static/schema/CopasiML.rng" type="xml"?>
<COPASI xmlns="http://www.copasi.org/static/schema" versionMajor="4" versionMinor="22" versionDevel="170" copasiSourcesModified="0">
<ListOfFunctions>
<Function key="Function_6" name="Constant flux (irreversible)" type="PreDefined" reversible="false">
<Expression>
v
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_49" name="v" order="0" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<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_81" name="k1" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_79" name="substrate" order="1" role="substrate"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_40" name="Rate Law for Cln3 Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_n3*Dn3*V/(Jn3+Dn3*V)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_254" name="Dn3" order="0" role="constant"/>
<ParameterDescription key="FunctionParameter_266" name="Jn3" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_258" name="V" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_264" name="ks_n3" order="3" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_41" name="Sigmoid" type="UserDefined" reversible="unspecified">
<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="#Function_41">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:05:38Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
total/(1+exp(-sigma)^wfunction)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_267" name="total" order="0" role="variable"/>
<ParameterDescription key="FunctionParameter_246" name="sigma" order="1" role="variable"/>
<ParameterDescription key="FunctionParameter_268" name="wfunction" order="2" role="variable"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_42" name="Rate Law for SBFdeP Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(SBFT,sig,kdp_bf-kp_bf_b2*CLB2)-SBFdeP)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_277" name="CLB2" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_265" name="SBFT" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_279" name="SBFdeP" order="2" role="product"/>
<ParameterDescription key="FunctionParameter_269" name="gamma" order="3" role="constant"/>
<ParameterDescription key="FunctionParameter_273" name="kdp_bf" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_275" name="kp_bf_b2" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_271" name="sig" order="6" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_43" name="Rate Law for Growth_1" type="UserDefined" reversible="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="#Function_43">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-09T15:10:38Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
mu*V
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_276" name="V" order="0" role="product"/>
<ParameterDescription key="FunctionParameter_280" name="mu" order="1" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_44" name="Rate Law for WHI5deP Synth_1" type="UserDefined" reversible="true">
<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="#Function_44">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-09T15:10:40Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
gamma*(Sigmoid(WHI5T,sig,kdp_i5+kdp_i5_14*CDC14-kp_i5-kp_i5_n3*CLN3-kp_i5_k2*BCK2-kp_i5_n2*CLN2-kp_i5_b5*CLB5)-WHI5deP)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_296" name="BCK2" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_286" name="CDC14" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_304" name="CLB5" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_300" name="CLN2" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_292" name="CLN3" order="4" role="modifier"/>
<ParameterDescription key="FunctionParameter_272" name="WHI5T" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_306" name="WHI5deP" order="6" role="product"/>
<ParameterDescription key="FunctionParameter_274" name="gamma" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_282" name="kdp_i5" order="8" role="constant"/>
<ParameterDescription key="FunctionParameter_284" name="kdp_i5_14" order="9" role="constant"/>
<ParameterDescription key="FunctionParameter_288" name="kp_i5" order="10" role="constant"/>
<ParameterDescription key="FunctionParameter_302" name="kp_i5_b5" order="11" role="constant"/>
<ParameterDescription key="FunctionParameter_294" name="kp_i5_k2" order="12" role="constant"/>
<ParameterDescription key="FunctionParameter_298" name="kp_i5_n2" order="13" role="constant"/>
<ParameterDescription key="FunctionParameter_290" name="kp_i5_n3" order="14" role="constant"/>
<ParameterDescription key="FunctionParameter_262" name="sig" order="15" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_45" name="Rate Law for CDC20T Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_20+ks_20_m1*MCM1
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_299" name="MCM1" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_307" name="ks_20" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_303" name="ks_20_m1" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_46" name="Rate Law for TEM1 Synth_1" type="UserDefined" reversible="true">
<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="#Function_46">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-09T15:10:39Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
gammatem*(Sigmoid(TEM1T,sig,ka_tem+ka_tem_lo*POLOA+ka_tem_p1*ESP1-ki_tem-ki_tem_px*PPX)-TEM1)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_309" name="ESP1" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_281" name="POLOA" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_315" name="PPX" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_317" name="TEM1" order="3" role="product"/>
<ParameterDescription key="FunctionParameter_305" name="TEM1T" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_297" name="gammatem" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_289" name="ka_tem" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_285" name="ka_tem_lo" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_278" name="ka_tem_p1" order="8" role="constant"/>
<ParameterDescription key="FunctionParameter_311" name="ki_tem" order="9" role="constant"/>
<ParameterDescription key="FunctionParameter_313" name="ki_tem_px" order="10" role="constant"/>
<ParameterDescription key="FunctionParameter_293" name="sig" order="11" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_47" name="Rate Law for APCP Synth_1" type="UserDefined" reversible="true">
<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="#Function_47">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-09T15:10:38Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
gammacp*(Sigmoid(APCPT,sig,ka_cp_b2*CLB2-ki_cp)-APCP)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_319" name="APCP" order="0" role="product"/>
<ParameterDescription key="FunctionParameter_314" name="APCPT" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_287" name="CLB2" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_318" name="gammacp" order="3" role="constant"/>
<ParameterDescription key="FunctionParameter_270" name="ka_cp_b2" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_295" name="ki_cp" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_310" name="sig" order="6" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_48" name="Rate Law for Cln2 Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_n2+ks_n2_bf*SBF
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_308" name="SBF" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_320" name="ks_n2" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_291" name="ks_n2_bf" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_49" name="Heav" type="UserDefined" reversible="unspecified">
<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="#Function_49">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:04:05Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
if(x lt 0,0,1)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_312" name="x" order="0" role="variable"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_50" name="Rate Law for CKIT Synth_1" type="UserDefined" reversible="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="#Function_50">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-09T15:10:36Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
ks_ki+ks_ki_swi5*SWI5A
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_322" name="SWI5A" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_283" name="ks_ki" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_316" name="ks_ki_swi5" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_51" name="Rate Law for Bck2 Synth_1" type="UserDefined" reversible="false">
<Expression>
V*ks_k2
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_323" name="V" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_301" name="ks_k2" order="1" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_52" name="Rate Law for CDC20A_APCP Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(CDC20A_APCP_T,sig,ka_20-ki_20_ori*Heav(ORI-1)*(1-Heav(SPN-1)))-CDC20A)-kd_20*CDC20A
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_337" name="CDC20A" order="0" role="product"/>
<ParameterDescription key="FunctionParameter_325" name="CDC20A_APCP_T" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_333" name="ORI" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_335" name="SPN" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_324" name="gamma" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_329" name="ka_20" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_339" name="kd_20" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_331" name="ki_20_ori" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_327" name="sig" order="8" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_53" name="Rate Law for CKIP Synth_1" type="UserDefined" reversible="true">
<Expression>
gammaki*(Sigmoid(CKIT,sig,kp_ki_e*(e_ki_n3*CLN3+e_ki_k2*BCK2+e_ki_n2*CLN2+e_ki_b5*CLB5+e_ki_b2*CLB2)-kdp_ki-kdp_ki_14*CDC14)-CKIP)-kd_kip*CKIP
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_346" name="BCK2" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_364" name="CDC14" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_366" name="CKIP" order="2" role="product"/>
<ParameterDescription key="FunctionParameter_336" name="CKIT" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_358" name="CLB2" order="4" role="modifier"/>
<ParameterDescription key="FunctionParameter_354" name="CLB5" order="5" role="modifier"/>
<ParameterDescription key="FunctionParameter_350" name="CLN2" order="6" role="modifier"/>
<ParameterDescription key="FunctionParameter_342" name="CLN3" order="7" role="modifier"/>
<ParameterDescription key="FunctionParameter_356" name="e_ki_b2" order="8" role="constant"/>
<ParameterDescription key="FunctionParameter_352" name="e_ki_b5" order="9" role="constant"/>
<ParameterDescription key="FunctionParameter_344" name="e_ki_k2" order="10" role="constant"/>
<ParameterDescription key="FunctionParameter_348" name="e_ki_n2" order="11" role="constant"/>
<ParameterDescription key="FunctionParameter_321" name="e_ki_n3" order="12" role="constant"/>
<ParameterDescription key="FunctionParameter_340" name="gammaki" order="13" role="constant"/>
<ParameterDescription key="FunctionParameter_368" name="kd_kip" order="14" role="constant"/>
<ParameterDescription key="FunctionParameter_360" name="kdp_ki" order="15" role="constant"/>
<ParameterDescription key="FunctionParameter_362" name="kdp_ki_14" order="16" role="constant"/>
<ParameterDescription key="FunctionParameter_328" name="kp_ki_e" order="17" role="constant"/>
<ParameterDescription key="FunctionParameter_332" name="sig" order="18" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_54" name="Rate Law for CKIT Degr_1" type="UserDefined" reversible="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="#Function_54">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T15:59:19Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
kd_ki*(CKIT-CKIP)+kd_kip*CKIP
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_361" name="CKIP" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_365" name="CKIT" order="1" role="substrate"/>
<ParameterDescription key="FunctionParameter_369" name="kd_ki" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_357" name="kd_kip" order="3" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_55" name="Rate Law for Clb2T Degr_1" type="UserDefined" reversible="false">
<Expression>
(kd_b2+kd_b2_20*CDC20A+kd_b2_20_i*CDC20A_APC+kd_b2_h1*CDH1A)*CLB2T
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_353" name="CDC20A" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_345" name="CDC20A_APC" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_330" name="CDH1A" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_338" name="CLB2T" order="3" role="substrate"/>
<ParameterDescription key="FunctionParameter_355" name="kd_b2" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_363" name="kd_b2_20" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_349" name="kd_b2_20_i" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_341" name="kd_b2_h1" order="7" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_56" name="Rate Law for Clb5T Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_b5+ks_b5_bf*SBF
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_347" name="SBF" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_370" name="ks_b5" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_326" name="ks_b5_bf" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_57" name="Rate Law for Clb2T Synth_1" type="UserDefined" reversible="false">
<Expression>
(ks_b2+ks_b2_m1*MCM1)*V
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_359" name="MCM1" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_372" name="V" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_351" name="ks_b2" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_334" name="ks_b2_m1" order="3" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_58" name="Rate Law for SWI5T Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_swi5+ks_swi5_m1*MCM1
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_374" name="MCM1" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_373" name="ks_swi5" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_367" name="ks_swi5_m1" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_59" name="Rate Law for POLOA Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(POLOT,sig,ka_lo+ka_lo_b2*CLB2-ki_lo)-POLOA)-(kd_lo+kd_lo_h1*CDH1A)*POLOA
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_393" name="CDH1A" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_383" name="CLB2" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_387" name="POLOA" order="2" role="product"/>
<ParameterDescription key="FunctionParameter_371" name="POLOT" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_375" name="gamma" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_379" name="ka_lo" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_381" name="ka_lo_b2" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_389" name="kd_lo" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_391" name="kd_lo_h1" order="8" role="constant"/>
<ParameterDescription key="FunctionParameter_385" name="ki_lo" order="9" role="constant"/>
<ParameterDescription key="FunctionParameter_377" name="sig" order="10" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_60" name="Rate Law for ORI Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_ori_e*(e_ori_b5*CLB5+e_ori_b2*CLB2)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_378" name="CLB2" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_386" name="CLB5" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_382" name="e_ori_b2" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_390" name="e_ori_b5" order="3" role="constant"/>
<ParameterDescription key="FunctionParameter_394" name="ks_ori_e" order="4" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_61" name="Rate Law for CDH1A Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(CDH1T,sig,ka_h1+ka_h1_14*CDC14-ki_h1-ki_h1_e*(e_h1_n3*CLN3+e_h1_n2*CLN2+e_h1_b5*CLB5+e_h1_b2*CLB2))-CDH1A)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_399" name="CDC14" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_421" name="CDH1A" order="1" role="product"/>
<ParameterDescription key="FunctionParameter_384" name="CDH1T" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_419" name="CLB2" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_415" name="CLB5" order="4" role="modifier"/>
<ParameterDescription key="FunctionParameter_411" name="CLN2" order="5" role="modifier"/>
<ParameterDescription key="FunctionParameter_407" name="CLN3" order="6" role="modifier"/>
<ParameterDescription key="FunctionParameter_417" name="e_h1_b2" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_413" name="e_h1_b5" order="8" role="constant"/>
<ParameterDescription key="FunctionParameter_409" name="e_h1_n2" order="9" role="constant"/>
<ParameterDescription key="FunctionParameter_405" name="e_h1_n3" order="10" role="constant"/>
<ParameterDescription key="FunctionParameter_376" name="gamma" order="11" role="constant"/>
<ParameterDescription key="FunctionParameter_395" name="ka_h1" order="12" role="constant"/>
<ParameterDescription key="FunctionParameter_397" name="ka_h1_14" order="13" role="constant"/>
<ParameterDescription key="FunctionParameter_401" name="ki_h1" order="14" role="constant"/>
<ParameterDescription key="FunctionParameter_403" name="ki_h1_e" order="15" role="constant"/>
<ParameterDescription key="FunctionParameter_392" name="sig" order="16" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_62" name="Rate Law for Clb5T Degr_1" type="UserDefined" reversible="false">
<Expression>
(kd_b5+kd_b5_20*CDC20A+kd_b5_20_i*CDC20A_APC)*CLB5T
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_414" name="CDC20A" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_406" name="CDC20A_APC" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_402" name="CLB5T" order="2" role="substrate"/>
<ParameterDescription key="FunctionParameter_422" name="kd_b5" order="3" role="constant"/>
<ParameterDescription key="FunctionParameter_418" name="kd_b5_20" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_410" name="kd_b5_20_i" order="5" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_63" name="Rate Law for BUD Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_bud_e*(e_bud_n3*CLN3+e_bud_n2*CLN2+e_bud_b5*CLB5+e_bud_b2*CLB2)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_428" name="CLB2" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_424" name="CLB5" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_343" name="CLN2" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_416" name="CLN3" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_426" name="e_bud_b2" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_380" name="e_bud_b5" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_398" name="e_bud_n2" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_408" name="e_bud_n3" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_400" name="ks_bud_e" order="8" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_64" name="Rate Law for SPN Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_spn*Heav(CLB2-Jspn)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_425" name="CLB2" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_388" name="Jspn" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_429" name="ks_spn" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_65" name="Rate Law for POLOT Synth_1" type="UserDefined" reversible="false">
<Expression>
ks_lo+ks_lo_m1*MCM1
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_412" name="MCM1" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_396" name="ks_lo" order="1" role="constant"/>
<ParameterDescription key="FunctionParameter_427" name="ks_lo_m1" order="2" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_66" name="Rate Law for PPX Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(PPXT,sig,ka_px-ki_px-ki_px_p1*ESP1)-PPX)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_439" name="ESP1" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_441" name="PPX" order="1" role="product"/>
<ParameterDescription key="FunctionParameter_423" name="PPXT" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_404" name="gamma" order="3" role="constant"/>
<ParameterDescription key="FunctionParameter_433" name="ka_px" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_435" name="ki_px" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_437" name="ki_px_p1" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_431" name="sig" order="7" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_67" name="Rate Law for NET1deP Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(NET1T,signet,kdp_net+kdp_net_14*CDC14+kdp_net_px*PPX-kp_net-kp_net_b2*CLB2-kp_net_en*MEN-kp_net_15*CDC15)-NET1deP)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_445" name="CDC14" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_463" name="CDC15" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_455" name="CLB2" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_459" name="MEN" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_438" name="NET1T" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_465" name="NET1deP" order="5" role="product"/>
<ParameterDescription key="FunctionParameter_449" name="PPX" order="6" role="modifier"/>
<ParameterDescription key="FunctionParameter_442" name="gamma" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_430" name="kdp_net" order="8" role="constant"/>
<ParameterDescription key="FunctionParameter_443" name="kdp_net_14" order="9" role="constant"/>
<ParameterDescription key="FunctionParameter_447" name="kdp_net_px" order="10" role="constant"/>
<ParameterDescription key="FunctionParameter_451" name="kp_net" order="11" role="constant"/>
<ParameterDescription key="FunctionParameter_461" name="kp_net_15" order="12" role="constant"/>
<ParameterDescription key="FunctionParameter_453" name="kp_net_b2" order="13" role="constant"/>
<ParameterDescription key="FunctionParameter_457" name="kp_net_en" order="14" role="constant"/>
<ParameterDescription key="FunctionParameter_434" name="signet" order="15" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_68" name="Rate Law for CDC20A_APC Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(CDC20A_APC_T,sig,ka_20-ki_20_ori*Heav(ORI-1)*(1-Heav(SPN-1)))-CDC20A_APC)-kd_20*CDC20A_APC
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_436" name="CDC20A_APC" order="0" role="product"/>
<ParameterDescription key="FunctionParameter_462" name="CDC20A_APC_T" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_446" name="ORI" order="2" role="modifier"/>
<ParameterDescription key="FunctionParameter_420" name="SPN" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_466" name="gamma" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_454" name="ka_20" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_467" name="kd_20" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_450" name="ki_20_ori" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_458" name="sig" order="8" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_69" name="Rate Law for PDS1T Degr_1" type="UserDefined" reversible="false">
<Expression>
(kd_pds+ks_pds_20*CDC20A+kd_pds_20_i*CDC20A_APC)*PDS1T
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_448" name="CDC20A" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_464" name="CDC20A_APC" order="1" role="modifier"/>
<ParameterDescription key="FunctionParameter_470" name="PDS1T" order="2" role="substrate"/>
<ParameterDescription key="FunctionParameter_468" name="kd_pds" order="3" role="constant"/>
<ParameterDescription key="FunctionParameter_456" name="kd_pds_20_i" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_432" name="ks_pds_20" order="5" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_70" name="Rate Law for CDC15 Synth_1" type="UserDefined" reversible="true">
<Expression>
gamma*(Sigmoid(CDC15T,sig,ka_15+ka_15_14*CDC14-ki_15-ki_15_b2*CLB2)-CDC15)
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_476" name="CDC14" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_484" name="CDC15" order="1" role="product"/>
<ParameterDescription key="FunctionParameter_460" name="CDC15T" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_482" name="CLB2" order="3" role="modifier"/>
<ParameterDescription key="FunctionParameter_471" name="gamma" order="4" role="constant"/>
<ParameterDescription key="FunctionParameter_472" name="ka_15" order="5" role="constant"/>
<ParameterDescription key="FunctionParameter_474" name="ka_15_14" order="6" role="constant"/>
<ParameterDescription key="FunctionParameter_478" name="ki_15" order="7" role="constant"/>
<ParameterDescription key="FunctionParameter_480" name="ki_15_b2" order="8" role="constant"/>
<ParameterDescription key="FunctionParameter_444" name="sig" order="9" role="constant"/>
</ListOfParameterDescriptions>
</Function>
<Function key="Function_71" name="Rate Law for POLOT Degr_1" type="UserDefined" reversible="false">
<Expression>
(kd_lo+kd_lo_h1*CDH1A)*POLOT
</Expression>
<ListOfParameterDescriptions>
<ParameterDescription key="FunctionParameter_477" name="CDH1A" order="0" role="modifier"/>
<ParameterDescription key="FunctionParameter_473" name="POLOT" order="1" role="substrate"/>
<ParameterDescription key="FunctionParameter_485" name="kd_lo" order="2" role="constant"/>
<ParameterDescription key="FunctionParameter_481" name="kd_lo_h1" order="3" role="constant"/>
</ListOfParameterDescriptions>
</Function>
</ListOfFunctions>
<Model key="Model_0" name="Yeast Cell Cycle_1_1" simulationType="time" timeUnit="min" volumeUnit="l" areaUnit="m²" lengthUnit="m" quantityUnit="mol" type="deterministic" avogadroConstant="6.0221408570000002e+23">
<MiriamAnnotation>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:vCard="http://www.w3.org/2001/vcard-rdf/3.0#">
<rdf:Description rdf:about="#Model_0">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:04:54Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
<dcterms:creator>
<rdf:Bag>
<rdf:li>
<rdf:Description>
<vCard:N>
<rdf:Description>
<vCard:Family>Mitra</vCard:Family>
<vCard:Given>Eshan</vCard:Given>
</rdf:Description>
</vCard:N>
<vCard:ORG>
<rdf:Description>
<vCard:Orgname>Los Alamos National Lab</vCard:Orgname>
</rdf:Description>
</vCard:ORG>
</rdf:Description>
</rdf:li>
</rdf:Bag>
</dcterms:creator>
<dcterms:modified>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:04:54Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:modified>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Comment>
<body xmlns="http://www.w3.org/1999/xhtml">
<pre>Model of the yeast cell cycle originally described in Oguz et al (2013) "Optimization and model reduction in the high dimensional parameter space of a budding yeast cell cycle model" BMC Syst. Biol.
Adapted to SBML format and used as an example problem in Mitra et al (2018) "Using both qualitative and quantitative data to imporve parameter identification for systems biology models".</pre>
</body>
</Comment>
<ListOfCompartments>
<Compartment key="Compartment_0" name="cell" simulationType="fixed" dimensionality="3">
</Compartment>
</ListOfCompartments>
<ListOfMetabolites>
<Metabolite key="Metabolite_0" name="V" simulationType="reactions" compartment="Compartment_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="#Metabolite_0">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:10:10Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_1" name="BCK2" simulationType="reactions" compartment="Compartment_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="#Metabolite_1">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:13:02Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_2" name="CLN3" simulationType="reactions" compartment="Compartment_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="#Metabolite_2">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:04:23Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_3" name="WHI5deP" simulationType="reactions" compartment="Compartment_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="#Metabolite_3">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:53Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_4" name="SBFdeP" simulationType="reactions" compartment="Compartment_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="#Metabolite_4">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_5" name="CLN2" simulationType="reactions" compartment="Compartment_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="#Metabolite_5">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:18:34Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_6" name="CKIT" simulationType="reactions" compartment="Compartment_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="#Metabolite_6">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_7" name="CKIP" simulationType="reactions" compartment="Compartment_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="#Metabolite_7">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_8" name="CLB5T" simulationType="reactions" compartment="Compartment_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="#Metabolite_8">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:17:21Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_9" name="CLB2T" simulationType="reactions" compartment="Compartment_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="#Metabolite_9">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:49Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_10" name="BUD" simulationType="reactions" compartment="Compartment_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="#Metabolite_10">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_11" name="ORI" simulationType="reactions" compartment="Compartment_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="#Metabolite_11">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_12" name="SPN" simulationType="reactions" compartment="Compartment_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="#Metabolite_12">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:53Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_13" name="SWI5T" simulationType="reactions" compartment="Compartment_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="#Metabolite_13">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:17:13Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_14" name="CDC20T" simulationType="reactions" compartment="Compartment_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="#Metabolite_14">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:49Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_15" name="CDC20A_APCP" simulationType="reactions" compartment="Compartment_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="#Metabolite_15">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_16" name="APCP" simulationType="reactions" compartment="Compartment_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="#Metabolite_16">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_17" name="CDH1A" simulationType="reactions" compartment="Compartment_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="#Metabolite_17">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:18:34Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_18" name="NET1deP" simulationType="reactions" compartment="Compartment_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="#Metabolite_18">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:17:18Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_19" name="PPX" simulationType="reactions" compartment="Compartment_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="#Metabolite_19">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:49Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_20" name="PDS1T" simulationType="reactions" compartment="Compartment_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="#Metabolite_20">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:53Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_21" name="CDC15" simulationType="reactions" compartment="Compartment_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="#Metabolite_21">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:17:10Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_22" name="TEM1" simulationType="reactions" compartment="Compartment_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="#Metabolite_22">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:26:49Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_23" name="POLOT" simulationType="reactions" compartment="Compartment_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="#Metabolite_23">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:35:48Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</Metabolite>
<Metabolite key="Metabolite_24" name="POLOA" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_25" name="CDC20A_APC" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_26" name="FuncSafety" simulationType="assignment" compartment="Compartment_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="#Metabolite_26">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:04:57Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
Heav(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[APCP],Reference=Concentration>)+Sigmoid(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[APCPT],Reference=Value>,1,1)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_27" name="CLB5" simulationType="assignment" compartment="Compartment_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="#Metabolite_27">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:19:30Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>*(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT],Reference=Concentration>)/(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>+0.001)*Heav(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_28" name="CLB2" simulationType="assignment" compartment="Compartment_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="#Metabolite_28">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:22:49Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>*(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT],Reference=Concentration>)/(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>+0.001)*Heav(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_29" name="SBF" simulationType="assignment" compartment="Compartment_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="#Metabolite_29">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:24:49Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SBFdeP],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[WHI5deP],Reference=Concentration>)*Heav(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SBFdeP],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[WHI5deP],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_30" name="CDC14" simulationType="assignment" compartment="Compartment_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="#Metabolite_30">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:27:43Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[CDC14T],Reference=Value>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kas_net],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[NET1deP],Reference=Concentration>)*Heav(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[CDC14T],Reference=Value>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kas_net],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[NET1deP],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_31" name="ESP1" simulationType="assignment" compartment="Compartment_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="#Metabolite_31">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:29:17Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ESP1T],Reference=Value>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PDS1T],Reference=Concentration>)*Heav(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ESP1T],Reference=Value>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PDS1T],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_32" name="MEN" simulationType="assignment" compartment="Compartment_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="#Metabolite_32">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:31:23Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
if(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[TEM1],Reference=Concentration> lt <CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC15],Reference=Concentration>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[TEM1],Reference=Concentration>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC15],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_33" name="MCM1" simulationType="assignment" compartment="Compartment_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="#Metabolite_33">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:32:58Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
Sigmoid(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[MCM1T],Reference=Value>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=Value>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_m1_b2],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_m1],Reference=Value>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_34" name="SWI5A" simulationType="assignment" compartment="Compartment_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="#Metabolite_34">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T12:36:03Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
Sigmoid(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5T],Reference=Concentration>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=Value>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_swi5_14],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC14],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_swi5_b2],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_35" name="CDC20A_APCP_T" simulationType="assignment" compartment="Compartment_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="#Metabolite_35">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:15:07Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
if(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T],Reference=Concentration> lt <CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[APCP],Reference=Concentration>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T],Reference=Concentration>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[APCP],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_36" name="CDC20A_APC_T" simulationType="assignment" compartment="Compartment_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="#Metabolite_36">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:46:04Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
if(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APCP_T],Reference=Concentration> lt <CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[APCPT],Reference=Value>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[APCP],Reference=Concentration>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APCP_T],Reference=Concentration>,<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[APCPT],Reference=Value>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[APCP],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_37" name="DIV_COUNT" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_38" name="FLAG_BUD" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_39" name="FLAG_UDNA" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_40" name="FLAG_SPC" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_41" name="CLB2CLB5" simulationType="assignment" compartment="Compartment_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="#Metabolite_41">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-10T15:15:13Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_42" name="dCLN3" simulationType="assignment" compartment="Compartment_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="#Metabolite_42">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T16:23:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n3],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Dn3],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[V],Reference=Concentration>/(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Jn3],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Dn3],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[V],Reference=Concentration>)-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_n3],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN3],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_43" name="dBCK2" simulationType="assignment" compartment="Compartment_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="#Metabolite_43">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T16:32:16Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[V],Reference=Concentration>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_k2],Reference=Value>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_k2],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[BCK2],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_44" name="dCLN2" simulationType="assignment" compartment="Compartment_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="#Metabolite_44">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T16:33:22Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n2],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n2_bf],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SBF],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_n2],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN2],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_45" name="dCKIT" simulationType="assignment" compartment="Compartment_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="#Metabolite_45">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T16:35:15Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ki],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ki_swi5],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5A],Reference=Concentration>-(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_ki],Reference=Value>*(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIP],Reference=Concentration>)+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_kip],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIP],Reference=Concentration>)
</Expression>
</Metabolite>
<Metabolite key="Metabolite_46" name="dCLB5T" simulationType="assignment" compartment="Compartment_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="#Metabolite_46">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T16:42:21Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b5],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b5_bf],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SBF],Reference=Concentration>-(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5_20],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APCP],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5_20_i],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APC],Reference=Concentration>)*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_47" name="dCLB2T" simulationType="assignment" compartment="Compartment_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="#Metabolite_47">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T16:52:10Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b2],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b2_m1],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[MCM1],Reference=Concentration>)*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[V],Reference=Concentration>-(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_20],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APCP],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5_20_i],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APC],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_h1],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDH1A],Reference=Concentration>)*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_48" name="dSWI5T" simulationType="assignment" compartment="Compartment_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="#Metabolite_48">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:10:28Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_swi5],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_swi5_m1],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[MCM1],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_swi5],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5T],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_49" name="dCDC20T" simulationType="assignment" compartment="Compartment_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="#Metabolite_49">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:13:02Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_20],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_20_m1],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[MCM1],Reference=Concentration>-<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_20],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_50" name="dPDS1T" simulationType="assignment" compartment="Compartment_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="#Metabolite_50">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:14:29Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_pds],Reference=Value>-(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds_20],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APCP],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds_20_i],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APC],Reference=Concentration>)*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PDS1T],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_51" name="dPOLOT" simulationType="assignment" compartment="Compartment_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="#Metabolite_51">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:16:54Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_lo],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_lo_m1],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[MCM1],Reference=Concentration>-(<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo],Reference=Value>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo_h1],Reference=Value>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDH1A],Reference=Concentration>)*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[POLOT],Reference=Concentration>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_52" name="CLN3_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_53" name="BCK2_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_54" name="CLN2_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_55" name="CKIT_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_56" name="CLB5T_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_57" name="CLB2T_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_58" name="SWI5T_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_59" name="CDC20T_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_60" name="PDS1T_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_61" name="POLOT_peaks" simulationType="reactions" compartment="Compartment_0">
</Metabolite>
<Metabolite key="Metabolite_62" name="dCLN3c" simulationType="assignment" compartment="Compartment_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="#Metabolite_62">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:25:24Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN3],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_63" name="dBCK2c" simulationType="assignment" compartment="Compartment_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="#Metabolite_63">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:25:41Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[BCK2],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_64" name="dCLN2c" simulationType="assignment" compartment="Compartment_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="#Metabolite_64">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:26:45Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN2],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_65" name="dCKITc" simulationType="assignment" compartment="Compartment_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="#Metabolite_65">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:26:07Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_66" name="dCLB5Tc" simulationType="assignment" compartment="Compartment_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="#Metabolite_66">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:26:32Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_67" name="dCLB2Tc" simulationType="assignment" compartment="Compartment_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="#Metabolite_67">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:26:18Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_68" name="dSWI5Tc" simulationType="assignment" compartment="Compartment_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="#Metabolite_68">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:28:02Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5T],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_69" name="dCDC20Tc" simulationType="assignment" compartment="Compartment_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="#Metabolite_69">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:25:53Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_70" name="dPDS1Tc" simulationType="assignment" compartment="Compartment_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="#Metabolite_70">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:27:15Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PDS1T],Reference=Rate>
</Expression>
</Metabolite>
<Metabolite key="Metabolite_71" name="dPOLOTc" simulationType="assignment" compartment="Compartment_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="#Metabolite_71">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:27:34Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[POLOT],Reference=Rate>
</Expression>
</Metabolite>
</ListOfMetabolites>
<ListOfModelValues>
<ModelValue key="ModelValue_0" name="mdt" simulationType="fixed">
<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_0">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:20:41Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</ModelValue>
<ModelValue key="ModelValue_1" name="mu" simulationType="assignment">
<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="#ModelValue_1">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:19:44Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
<CopasiMT:unknown rdf:resource="#" />
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<Expression>
log(2)/<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[mdt],Reference=Value>
</Expression>
</ModelValue>
<ModelValue key="ModelValue_2" name="ks_n3" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_3" name="Dn3" simulationType="fixed">
<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_3">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:59:45Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</ModelValue>
<ModelValue key="ModelValue_4" name="Jn3" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_5" name="kd_n3" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_6" name="gamma" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_7" name="gammaki" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_8" name="gammacp" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_9" name="gammatem" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_10" name="sig" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_11" name="signet" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_12" name="ks_k2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_13" name="kd_k2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_14" name="kdp_i5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_15" name="kdp_i5_14" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_16" name="kp_i5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_17" name="kp_i5_n3" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_18" name="kp_i5_k2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_19" name="kp_i5_n2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_20" name="kp_i5_b5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_21" name="kdp_bf" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_22" name="kp_bf_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_23" name="ks_n2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_24" name="ks_n2_bf" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_25" name="kd_n2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_26" name="ks_ki" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_27" name="ks_ki_swi5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_28" name="kd_ki" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_29" name="kd_kip" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_30" name="kp_ki_e" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_31" name="e_ki_n3" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_32" name="e_ki_k2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_33" name="e_ki_n2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_34" name="e_ki_b5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_35" name="e_ki_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_36" name="kdp_ki" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_37" name="kdp_ki_14" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_38" name="ks_b5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_39" name="ks_b5_bf" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_40" name="kd_b5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_41" name="kd_b5_20" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_42" name="ks_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_43" name="ks_b2_m1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_44" name="kd_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_45" name="kd_b2_20" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_46" name="kd_b2_h1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_47" name="ks_bud_e" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_48" name="e_bud_n3" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_49" name="e_bud_n2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_50" name="e_bud_b5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_51" name="e_bud_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_52" name="kd_bud" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_53" name="ks_spn" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_54" name="kd_spn" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_55" name="Jspn" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_56" name="ks_ori_e" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_57" name="e_ori_b5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_58" name="e_ori_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_59" name="kd_ori" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_60" name="ks_swi5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_61" name="ks_swi5_m1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_62" name="kd_swi5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_63" name="ka_swi5_14" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_64" name="ki_swi5_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_65" name="ka_m1_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_66" name="ki_m1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_67" name="ks_20" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_68" name="ks_20_m1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_69" name="kd_20" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_70" name="ka_20" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_71" name="kd_b5_20_i" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_72" name="kd_b2_20_i" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_73" name="ki_20_ori" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_74" name="ka_cp_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_75" name="ki_cp" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_76" name="ka_h1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_77" name="ka_h1_14" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_78" name="ki_h1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_79" name="ki_h1_e" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_80" name="e_h1_n3" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_81" name="e_h1_n2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_82" name="e_h1_b5" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_83" name="e_h1_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_84" name="kdp_net" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_85" name="kdp_net_14" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_86" name="kdp_net_px" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_87" name="kp_net" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_88" name="kp_net_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_89" name="kp_net_en" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_90" name="kp_net_15" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_91" name="ka_px" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_92" name="ki_px" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_93" name="ki_px_p1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_94" name="ks_pds" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_95" name="kd_pds" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_96" name="kd_pds_20" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_97" name="ka_15" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_98" name="ka_15_14" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_99" name="ki_15" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_100" name="ki_15_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_101" name="ka_tem" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_102" name="ka_tem_lo" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_103" name="ka_tem_p1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_104" name="ki_tem" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_105" name="ki_tem_px" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_106" name="ks_lo" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_107" name="ks_lo_m1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_108" name="kd_lo" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_109" name="kd_lo_h1" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_110" name="ka_lo" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_111" name="ka_lo_b2" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_112" name="ki_lo" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_113" name="kas_net" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_114" name="WHI5T" simulationType="fixed">
<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_114">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T11:01:00Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
</ModelValue>
<ModelValue key="ModelValue_115" name="SBFT" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_116" name="MCM1T" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_117" name="APCPT" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_118" name="CDH1T" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_119" name="NET1T" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_120" name="CDC14T" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_121" name="PPXT" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_122" name="ESP1T" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_123" name="CDC15T" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_124" name="TEM1T" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_125" name="kd_pds_20_i" simulationType="fixed">
</ModelValue>
<ModelValue key="ModelValue_126" name="f" simulationType="fixed">
</ModelValue>
</ListOfModelValues>
<ListOfReactions>
<Reaction key="Reaction_0" name="Growth" reversible="false" fast="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="#Reaction_0">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T09:14:28Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_0" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_4989" name="mu" value="0.00693147"/>
</ListOfConstants>
<KineticLaw function="Function_43" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_276">
<SourceParameter reference="Metabolite_0"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_280">
<SourceParameter reference="ModelValue_1"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_1" name="Cln3 Synth" reversible="false" fast="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="#Reaction_1">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:01:18Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_2" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_0" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4990" name="Dn3" value="0.732"/>
<Constant key="Parameter_4991" name="Jn3" value="4.27"/>
<Constant key="Parameter_4992" name="ks_n3" value="1.11"/>
</ListOfConstants>
<KineticLaw function="Function_40" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_254">
<SourceParameter reference="ModelValue_3"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_266">
<SourceParameter reference="ModelValue_4"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_258">
<SourceParameter reference="Metabolite_0"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_264">
<SourceParameter reference="ModelValue_2"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_2" name="Cln3 Degr" reversible="false" fast="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="#Reaction_2">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T10:10:33Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_2" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_4993" name="k1" value="0.794"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_5"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_2"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_3" name="Bck2 Synth" reversible="false" fast="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="#Reaction_3">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T11:00:07Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_1" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_0" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4994" name="ks_k2" value="0.0553"/>
</ListOfConstants>
<KineticLaw function="Function_51" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_323">
<SourceParameter reference="Metabolite_0"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_301">
<SourceParameter reference="ModelValue_12"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_4" name="Bck2 Degr" reversible="false" fast="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="#Reaction_4">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T11:02:40Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_1" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_4995" name="k1" value="3.01"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_13"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_1"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_5" name="WHI5deP Synth" reversible="true" fast="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="#Reaction_5">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T11:11:35Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_3" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_30" stoichiometry="1"/>
<Modifier metabolite="Metabolite_2" stoichiometry="1"/>
<Modifier metabolite="Metabolite_1" stoichiometry="1"/>
<Modifier metabolite="Metabolite_5" stoichiometry="1"/>
<Modifier metabolite="Metabolite_27" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4996" name="WHI5T" value="2.1"/>
<Constant key="Parameter_4984" name="gamma" value="2.22"/>
<Constant key="Parameter_4985" name="kdp_i5" value="1.22"/>
<Constant key="Parameter_4986" name="kdp_i5_14" value="0.195"/>
<Constant key="Parameter_4987" name="kp_i5" value="0.0275"/>
<Constant key="Parameter_4988" name="kp_i5_b5" value="0.0422"/>
<Constant key="Parameter_4958" name="kp_i5_k2" value="23.7"/>
<Constant key="Parameter_4959" name="kp_i5_n2" value="2.97"/>
<Constant key="Parameter_4960" name="kp_i5_n3" value="6.1"/>
<Constant key="Parameter_4961" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_44" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_296">
<SourceParameter reference="Metabolite_1"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_286">
<SourceParameter reference="Metabolite_30"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_304">
<SourceParameter reference="Metabolite_27"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_300">
<SourceParameter reference="Metabolite_5"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_292">
<SourceParameter reference="Metabolite_2"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_272">
<SourceParameter reference="ModelValue_114"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_306">
<SourceParameter reference="Metabolite_3"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_274">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_282">
<SourceParameter reference="ModelValue_14"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_284">
<SourceParameter reference="ModelValue_15"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_288">
<SourceParameter reference="ModelValue_16"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_302">
<SourceParameter reference="ModelValue_20"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_294">
<SourceParameter reference="ModelValue_18"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_298">
<SourceParameter reference="ModelValue_19"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_290">
<SourceParameter reference="ModelValue_17"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_262">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_6" name="SBFdeP Synth" reversible="true" fast="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="#Reaction_6">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:24:23Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_4" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4962" name="SBFT" value="0.468"/>
<Constant key="Parameter_4963" name="gamma" value="2.22"/>
<Constant key="Parameter_4964" name="kdp_bf" value="2.93"/>
<Constant key="Parameter_4965" name="kp_bf_b2" value="9.36"/>
<Constant key="Parameter_4966" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_42" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_277">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_265">
<SourceParameter reference="ModelValue_115"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_279">
<SourceParameter reference="Metabolite_4"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_269">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_273">
<SourceParameter reference="ModelValue_21"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_275">
<SourceParameter reference="ModelValue_22"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_271">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_7" name="Cln2 Synth" reversible="false" fast="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="#Reaction_7">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:31:46Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_5" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_29" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4967" name="ks_n2" value="1e-08"/>
<Constant key="Parameter_4968" name="ks_n2_bf" value="0.996"/>
</ListOfConstants>
<KineticLaw function="Function_48" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_308">
<SourceParameter reference="Metabolite_29"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_320">
<SourceParameter reference="ModelValue_23"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_291">
<SourceParameter reference="ModelValue_24"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_8" name="Cln2 Degr" reversible="false" fast="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="#Reaction_8">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:32:56Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_5" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_4969" name="k1" value="0.032"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_25"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_5"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_9" name="CKIT Synth" reversible="false" fast="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="#Reaction_9">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:35:10Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_6" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_34" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4970" name="ks_ki" value="0.00663"/>
<Constant key="Parameter_4971" name="ks_ki_swi5" value="0.089"/>
</ListOfConstants>
<KineticLaw function="Function_50" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_322">
<SourceParameter reference="Metabolite_34"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_283">
<SourceParameter reference="ModelValue_26"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_316">
<SourceParameter reference="ModelValue_27"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_10" name="CKIT Degr" reversible="false" fast="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="#Reaction_10">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:42:23Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_6" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfModifiers>
<Modifier metabolite="Metabolite_7" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4972" name="kd_ki" value="0.0524"/>
<Constant key="Parameter_4973" name="kd_kip" value="0.899"/>
</ListOfConstants>
<KineticLaw function="Function_54" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_361">
<SourceParameter reference="Metabolite_7"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_365">
<SourceParameter reference="Metabolite_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_369">
<SourceParameter reference="ModelValue_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_357">
<SourceParameter reference="ModelValue_29"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_11" name="CKIP Synth" reversible="true" fast="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="#Reaction_11">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:44:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_7" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_6" stoichiometry="1"/>
<Modifier metabolite="Metabolite_2" stoichiometry="1"/>
<Modifier metabolite="Metabolite_1" stoichiometry="1"/>
<Modifier metabolite="Metabolite_5" stoichiometry="1"/>
<Modifier metabolite="Metabolite_27" stoichiometry="1"/>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
<Modifier metabolite="Metabolite_30" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4974" name="e_ki_b2" value="3.12"/>
<Constant key="Parameter_4975" name="e_ki_b5" value="2.39"/>
<Constant key="Parameter_4976" name="e_ki_k2" value="0.397"/>
<Constant key="Parameter_4977" name="e_ki_n2" value="19.5"/>
<Constant key="Parameter_4978" name="e_ki_n3" value="1.05"/>
<Constant key="Parameter_4979" name="gammaki" value="12.9"/>
<Constant key="Parameter_4980" name="kd_kip" value="0.899"/>
<Constant key="Parameter_4981" name="kdp_ki" value="0.836"/>
<Constant key="Parameter_4982" name="kdp_ki_14" value="1.11"/>
<Constant key="Parameter_4983" name="kp_ki_e" value="0.65"/>
<Constant key="Parameter_4997" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_53" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_346">
<SourceParameter reference="Metabolite_1"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_364">
<SourceParameter reference="Metabolite_30"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_366">
<SourceParameter reference="Metabolite_7"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_336">
<SourceParameter reference="Metabolite_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_358">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_354">
<SourceParameter reference="Metabolite_27"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_350">
<SourceParameter reference="Metabolite_5"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_342">
<SourceParameter reference="Metabolite_2"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_356">
<SourceParameter reference="ModelValue_35"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_352">
<SourceParameter reference="ModelValue_34"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_344">
<SourceParameter reference="ModelValue_32"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_348">
<SourceParameter reference="ModelValue_33"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_321">
<SourceParameter reference="ModelValue_31"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_340">
<SourceParameter reference="ModelValue_7"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_368">
<SourceParameter reference="ModelValue_29"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_360">
<SourceParameter reference="ModelValue_36"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_362">
<SourceParameter reference="ModelValue_37"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_328">
<SourceParameter reference="ModelValue_30"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_332">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_12" name="Clb5T Synth" reversible="false" fast="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="#Reaction_12">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:50:59Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_8" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_29" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4998" name="ks_b5" value="0.000538"/>
<Constant key="Parameter_4999" name="ks_b5_bf" value="0.0178"/>
</ListOfConstants>
<KineticLaw function="Function_56" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_347">
<SourceParameter reference="Metabolite_29"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_370">
<SourceParameter reference="ModelValue_38"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_326">
<SourceParameter reference="ModelValue_39"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_13" name="Clb5T Degr" reversible="false" fast="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="#Reaction_13">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T13:52:13Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_8" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfModifiers>
<Modifier metabolite="Metabolite_15" stoichiometry="1"/>
<Modifier metabolite="Metabolite_25" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5000" name="kd_b5" value="0.0556"/>
<Constant key="Parameter_5001" name="kd_b5_20" value="0.0445"/>
<Constant key="Parameter_5002" name="kd_b5_20_i" value="0.00498"/>
</ListOfConstants>
<KineticLaw function="Function_62" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_414">
<SourceParameter reference="Metabolite_15"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_406">
<SourceParameter reference="Metabolite_25"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_402">
<SourceParameter reference="Metabolite_8"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_422">
<SourceParameter reference="ModelValue_40"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_418">
<SourceParameter reference="ModelValue_41"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_410">
<SourceParameter reference="ModelValue_71"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_14" name="Clb2T Synth" reversible="false" fast="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="#Reaction_14">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:00:34Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_9" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_33" stoichiometry="1"/>
<Modifier metabolite="Metabolite_0" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5003" name="ks_b2" value="0.00762"/>
<Constant key="Parameter_5004" name="ks_b2_m1" value="0.031"/>
</ListOfConstants>
<KineticLaw function="Function_57" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_359">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_372">
<SourceParameter reference="Metabolite_0"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_351">
<SourceParameter reference="ModelValue_42"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_334">
<SourceParameter reference="ModelValue_43"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_15" name="Clb2T Degr" reversible="false" fast="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="#Reaction_15">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:01:37Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_9" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfModifiers>
<Modifier metabolite="Metabolite_15" stoichiometry="1"/>
<Modifier metabolite="Metabolite_25" stoichiometry="1"/>
<Modifier metabolite="Metabolite_17" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5005" name="kd_b2" value="0.00298"/>
<Constant key="Parameter_5006" name="kd_b2_20" value="0.136"/>
<Constant key="Parameter_5007" name="kd_b2_20_i" value="0.0374"/>
<Constant key="Parameter_5008" name="kd_b2_h1" value="0.662"/>
</ListOfConstants>
<KineticLaw function="Function_55" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_353">
<SourceParameter reference="Metabolite_15"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_345">
<SourceParameter reference="Metabolite_25"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_330">
<SourceParameter reference="Metabolite_17"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_338">
<SourceParameter reference="Metabolite_9"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_355">
<SourceParameter reference="ModelValue_44"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_363">
<SourceParameter reference="ModelValue_45"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_349">
<SourceParameter reference="ModelValue_72"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_341">
<SourceParameter reference="ModelValue_46"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_16" name="BUD Synth" reversible="false" fast="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="#Reaction_16">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:05:26Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_10" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_2" stoichiometry="1"/>
<Modifier metabolite="Metabolite_5" stoichiometry="1"/>
<Modifier metabolite="Metabolite_27" stoichiometry="1"/>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5009" name="e_bud_b2" value="1.89"/>
<Constant key="Parameter_5010" name="e_bud_b5" value="3"/>
<Constant key="Parameter_5011" name="e_bud_n2" value="1.12"/>
<Constant key="Parameter_5012" name="e_bud_n3" value="0.0078"/>
<Constant key="Parameter_5013" name="ks_bud_e" value="0.287"/>
</ListOfConstants>
<KineticLaw function="Function_63" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_428">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_424">
<SourceParameter reference="Metabolite_27"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_343">
<SourceParameter reference="Metabolite_5"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_416">
<SourceParameter reference="Metabolite_2"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_426">
<SourceParameter reference="ModelValue_51"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_380">
<SourceParameter reference="ModelValue_50"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_398">
<SourceParameter reference="ModelValue_49"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_408">
<SourceParameter reference="ModelValue_48"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_400">
<SourceParameter reference="ModelValue_47"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_17" name="BUD Degr" reversible="false" fast="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="#Reaction_17">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:06:23Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_10" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_5014" name="k1" value="0.059"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_52"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_18" name="ORI Synth" reversible="false" fast="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="#Reaction_18">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:08:50Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_11" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_27" stoichiometry="1"/>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5015" name="e_ori_b2" value="0.124"/>
<Constant key="Parameter_5016" name="e_ori_b5" value="5.04"/>
<Constant key="Parameter_5017" name="ks_ori_e" value="1.9"/>
</ListOfConstants>
<KineticLaw function="Function_60" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_378">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_386">
<SourceParameter reference="Metabolite_27"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_382">
<SourceParameter reference="ModelValue_58"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_390">
<SourceParameter reference="ModelValue_57"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_394">
<SourceParameter reference="ModelValue_56"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_19" name="ORI Degr" reversible="false" fast="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="#Reaction_19">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:09:26Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_11" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_5018" name="k1" value="0.0817"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_59"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_11"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_20" name="SPN Synth" reversible="false" fast="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="#Reaction_20">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:09:51Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_12" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5019" name="Jspn" value="0.809"/>
<Constant key="Parameter_5020" name="ks_spn" value="0.0743"/>
</ListOfConstants>
<KineticLaw function="Function_64" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_425">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_388">
<SourceParameter reference="ModelValue_55"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_429">
<SourceParameter reference="ModelValue_53"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_21" name="SPN Degr" reversible="false" fast="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="#Reaction_21">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:10:24Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_12" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_5021" name="k1" value="0.0384"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_54"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_12"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_22" name="SWI5T Synth" reversible="false" fast="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="#Reaction_22">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:11:54Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_13" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_33" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5022" name="ks_swi5" value="0.00558"/>
<Constant key="Parameter_5023" name="ks_swi5_m1" value="0.0389"/>
</ListOfConstants>
<KineticLaw function="Function_58" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_374">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_373">
<SourceParameter reference="ModelValue_60"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_367">
<SourceParameter reference="ModelValue_61"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_23" name="SWI5T Degr" reversible="false" fast="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="#Reaction_23">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:13:43Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_13" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_5024" name="k1" value="0.042"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_62"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_13"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_24" name="CDC20T Synth" reversible="false" fast="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="#Reaction_24">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:11:31Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_14" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_33" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5025" name="ks_20" value="0.0221"/>
<Constant key="Parameter_5026" name="ks_20_m1" value="0.354"/>
</ListOfConstants>
<KineticLaw function="Function_45" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_299">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_307">
<SourceParameter reference="ModelValue_67"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_303">
<SourceParameter reference="ModelValue_68"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_25" name="CDC20T Degr" reversible="false" fast="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="#Reaction_25">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:14:33Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_14" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfConstants>
<Constant key="Parameter_5027" name="k1" value="0.124"/>
</ListOfConstants>
<KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_81">
<SourceParameter reference="ModelValue_69"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_79">
<SourceParameter reference="Metabolite_14"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_26" name="CDC20A_APCP Synth" reversible="true" fast="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="#Reaction_26">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:17:25Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_15" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_35" stoichiometry="1"/>
<Modifier metabolite="Metabolite_11" stoichiometry="1"/>
<Modifier metabolite="Metabolite_12" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5028" name="gamma" value="2.22"/>
<Constant key="Parameter_5029" name="ka_20" value="0.0104"/>
<Constant key="Parameter_5035" name="kd_20" value="0.124"/>
<Constant key="Parameter_5034" name="ki_20_ori" value="5.04"/>
<Constant key="Parameter_5033" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_52" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_337">
<SourceParameter reference="Metabolite_15"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_325">
<SourceParameter reference="Metabolite_35"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_333">
<SourceParameter reference="Metabolite_11"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_335">
<SourceParameter reference="Metabolite_12"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_324">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_329">
<SourceParameter reference="ModelValue_70"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_339">
<SourceParameter reference="ModelValue_69"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_331">
<SourceParameter reference="ModelValue_73"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_327">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_27" name="APCP Synth" reversible="true" fast="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="#Reaction_27">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:21:13Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_16" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5030" name="APCPT" value="45.7"/>
<Constant key="Parameter_5031" name="gammacp" value="1.34"/>
<Constant key="Parameter_5032" name="ka_cp_b2" value="0.334"/>
<Constant key="Parameter_5036" name="ki_cp" value="0.21"/>
<Constant key="Parameter_5037" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_47" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_319">
<SourceParameter reference="Metabolite_16"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_314">
<SourceParameter reference="ModelValue_117"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_287">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_318">
<SourceParameter reference="ModelValue_8"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_270">
<SourceParameter reference="ModelValue_74"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_295">
<SourceParameter reference="ModelValue_75"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_310">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_28" name="CDH1A Synth" reversible="true" fast="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="#Reaction_28">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:22:42Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_17" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_30" stoichiometry="1"/>
<Modifier metabolite="Metabolite_2" stoichiometry="1"/>
<Modifier metabolite="Metabolite_5" stoichiometry="1"/>
<Modifier metabolite="Metabolite_27" stoichiometry="1"/>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5040" name="CDH1T" value="0.808"/>
<Constant key="Parameter_5039" name="e_h1_b2" value="2.35"/>
<Constant key="Parameter_5038" name="e_h1_b5" value="9.73"/>
<Constant key="Parameter_5041" name="e_h1_n2" value="1.56"/>
<Constant key="Parameter_5042" name="e_h1_n3" value="3.75"/>
<Constant key="Parameter_5043" name="gamma" value="2.22"/>
<Constant key="Parameter_5044" name="ka_h1" value="0.241"/>
<Constant key="Parameter_5045" name="ka_h1_14" value="32.2"/>
<Constant key="Parameter_5046" name="ki_h1" value="0.144"/>
<Constant key="Parameter_5047" name="ki_h1_e" value="0.215"/>
<Constant key="Parameter_5048" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_61" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_399">
<SourceParameter reference="Metabolite_30"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_421">
<SourceParameter reference="Metabolite_17"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_384">
<SourceParameter reference="ModelValue_118"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_419">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_415">
<SourceParameter reference="Metabolite_27"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_411">
<SourceParameter reference="Metabolite_5"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_407">
<SourceParameter reference="Metabolite_2"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_417">
<SourceParameter reference="ModelValue_83"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_413">
<SourceParameter reference="ModelValue_82"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_409">
<SourceParameter reference="ModelValue_81"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_405">
<SourceParameter reference="ModelValue_80"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_376">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_395">
<SourceParameter reference="ModelValue_76"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_397">
<SourceParameter reference="ModelValue_77"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_401">
<SourceParameter reference="ModelValue_78"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_403">
<SourceParameter reference="ModelValue_79"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_392">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_29" name="NET1deP Synth" reversible="true" fast="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="#Reaction_29">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:26:49Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_18" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_30" stoichiometry="1"/>
<Modifier metabolite="Metabolite_19" stoichiometry="1"/>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
<Modifier metabolite="Metabolite_32" stoichiometry="1"/>
<Modifier metabolite="Metabolite_21" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5049" name="NET1T" value="6.4"/>
<Constant key="Parameter_5050" name="gamma" value="2.22"/>
<Constant key="Parameter_5051" name="kdp_net" value="0.106"/>
<Constant key="Parameter_5052" name="kdp_net_14" value="0.00663"/>
<Constant key="Parameter_5053" name="kdp_net_px" value="83.3"/>
<Constant key="Parameter_5054" name="kp_net" value="0.556"/>
<Constant key="Parameter_5055" name="kp_net_15" value="0.00881"/>
<Constant key="Parameter_5056" name="kp_net_b2" value="1.5"/>
<Constant key="Parameter_5057" name="kp_net_en" value="6.88"/>
<Constant key="Parameter_5058" name="signet" value="1.52"/>
</ListOfConstants>
<KineticLaw function="Function_67" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_445">
<SourceParameter reference="Metabolite_30"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_463">
<SourceParameter reference="Metabolite_21"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_455">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_459">
<SourceParameter reference="Metabolite_32"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_438">
<SourceParameter reference="ModelValue_119"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_465">
<SourceParameter reference="Metabolite_18"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_449">
<SourceParameter reference="Metabolite_19"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_442">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_430">
<SourceParameter reference="ModelValue_84"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_443">
<SourceParameter reference="ModelValue_85"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_447">
<SourceParameter reference="ModelValue_86"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_451">
<SourceParameter reference="ModelValue_87"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_461">
<SourceParameter reference="ModelValue_90"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_453">
<SourceParameter reference="ModelValue_88"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_457">
<SourceParameter reference="ModelValue_89"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_434">
<SourceParameter reference="ModelValue_11"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_30" name="PPX Synth" reversible="true" fast="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="#Reaction_30">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:29:21Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_19" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_31" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5059" name="PPXT" value="0.866"/>
<Constant key="Parameter_5072" name="gamma" value="2.22"/>
<Constant key="Parameter_5073" name="ka_px" value="0.055"/>
<Constant key="Parameter_5074" name="ki_px" value="0.119"/>
<Constant key="Parameter_5075" name="ki_px_p1" value="6.69"/>
<Constant key="Parameter_5076" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_66" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_439">
<SourceParameter reference="Metabolite_31"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_441">
<SourceParameter reference="Metabolite_19"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_423">
<SourceParameter reference="ModelValue_121"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_404">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_433">
<SourceParameter reference="ModelValue_91"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_435">
<SourceParameter reference="ModelValue_92"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_437">
<SourceParameter reference="ModelValue_93"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_431">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_31" name="PDS1T Synth" reversible="false" fast="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="#Reaction_31">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:30:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_20" stoichiometry="1"/>
</ListOfProducts>
<ListOfConstants>
<Constant key="Parameter_5077" name="v" value="0.0467"/>
</ListOfConstants>
<KineticLaw function="Function_6" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_49">
<SourceParameter reference="ModelValue_94"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_32" name="PDS1T Degr" reversible="false" fast="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="#Reaction_32">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:31:06Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_20" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfModifiers>
<Modifier metabolite="Metabolite_15" stoichiometry="1"/>
<Modifier metabolite="Metabolite_25" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5078" name="kd_pds" value="0.0144"/>
<Constant key="Parameter_5079" name="kd_pds_20_i" value="0.125"/>
<Constant key="Parameter_5080" name="ks_pds_20" value="3.04"/>
</ListOfConstants>
<KineticLaw function="Function_69" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_448">
<SourceParameter reference="Metabolite_15"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_464">
<SourceParameter reference="Metabolite_25"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_470">
<SourceParameter reference="Metabolite_20"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_468">
<SourceParameter reference="ModelValue_95"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_456">
<SourceParameter reference="ModelValue_125"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_432">
<SourceParameter reference="ModelValue_96"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_33" name="CDC15 Synth" reversible="true" fast="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="#Reaction_33">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:33:11Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_21" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_30" stoichiometry="1"/>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5081" name="CDC15T" value="1.02"/>
<Constant key="Parameter_5082" name="gamma" value="2.22"/>
<Constant key="Parameter_5083" name="ka_15" value="0.709"/>
<Constant key="Parameter_5084" name="ka_15_14" value="7.38"/>
<Constant key="Parameter_5085" name="ki_15" value="0.894"/>
<Constant key="Parameter_4944" name="ki_15_b2" value="2.16"/>
<Constant key="Parameter_4945" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_70" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_476">
<SourceParameter reference="Metabolite_30"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_484">
<SourceParameter reference="Metabolite_21"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_460">
<SourceParameter reference="ModelValue_123"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_482">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_471">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_472">
<SourceParameter reference="ModelValue_97"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_474">
<SourceParameter reference="ModelValue_98"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_478">
<SourceParameter reference="ModelValue_99"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_480">
<SourceParameter reference="ModelValue_100"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_444">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_34" name="TEM1 Synth" reversible="true" fast="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="#Reaction_34">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:34:57Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_22" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_24" stoichiometry="1"/>
<Modifier metabolite="Metabolite_31" stoichiometry="1"/>
<Modifier metabolite="Metabolite_19" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4946" name="TEM1T" value="1.29"/>
<Constant key="Parameter_4947" name="gammatem" value="0.369"/>
<Constant key="Parameter_4948" name="ka_tem" value="0.0848"/>
<Constant key="Parameter_4949" name="ka_tem_lo" value="3.84"/>
<Constant key="Parameter_4950" name="ka_tem_p1" value="0.0638"/>
<Constant key="Parameter_4951" name="ki_tem" value="0.323"/>
<Constant key="Parameter_4952" name="ki_tem_px" value="1.92"/>
<Constant key="Parameter_4953" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_46" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_309">
<SourceParameter reference="Metabolite_31"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_281">
<SourceParameter reference="Metabolite_24"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_315">
<SourceParameter reference="Metabolite_19"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_317">
<SourceParameter reference="Metabolite_22"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_305">
<SourceParameter reference="ModelValue_124"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_297">
<SourceParameter reference="ModelValue_9"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_289">
<SourceParameter reference="ModelValue_101"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_285">
<SourceParameter reference="ModelValue_102"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_278">
<SourceParameter reference="ModelValue_103"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_311">
<SourceParameter reference="ModelValue_104"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_313">
<SourceParameter reference="ModelValue_105"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_293">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_35" name="POLOT Synth" reversible="false" fast="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="#Reaction_35">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:37:58Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_23" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_33" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4954" name="ks_lo" value="0.045"/>
<Constant key="Parameter_4955" name="ks_lo_m1" value="0.0113"/>
</ListOfConstants>
<KineticLaw function="Function_65" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_412">
<SourceParameter reference="Metabolite_33"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_396">
<SourceParameter reference="ModelValue_106"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_427">
<SourceParameter reference="ModelValue_107"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_36" name="POLOT Degr" reversible="false" fast="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="#Reaction_36">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:38:40Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfSubstrates>
<Substrate metabolite="Metabolite_23" stoichiometry="1"/>
</ListOfSubstrates>
<ListOfModifiers>
<Modifier metabolite="Metabolite_17" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4956" name="kd_lo" value="0.00483"/>
<Constant key="Parameter_5086" name="kd_lo_h1" value="0.139"/>
</ListOfConstants>
<KineticLaw function="Function_71" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_477">
<SourceParameter reference="Metabolite_17"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_473">
<SourceParameter reference="Metabolite_23"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_485">
<SourceParameter reference="ModelValue_108"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_481">
<SourceParameter reference="ModelValue_109"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_37" name="POLOA Synth" reversible="true" fast="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="#Reaction_37">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:39:37Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_24" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_23" stoichiometry="1"/>
<Modifier metabolite="Metabolite_28" stoichiometry="1"/>
<Modifier metabolite="Metabolite_17" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_5087" name="gamma" value="2.22"/>
<Constant key="Parameter_4811" name="ka_lo" value="0.0232"/>
<Constant key="Parameter_4810" name="ka_lo_b2" value="1.11"/>
<Constant key="Parameter_4809" name="kd_lo" value="0.00483"/>
<Constant key="Parameter_4808" name="kd_lo_h1" value="0.139"/>
<Constant key="Parameter_4807" name="ki_lo" value="0.965"/>
<Constant key="Parameter_4806" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_59" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_393">
<SourceParameter reference="Metabolite_17"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_383">
<SourceParameter reference="Metabolite_28"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_387">
<SourceParameter reference="Metabolite_24"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_371">
<SourceParameter reference="Metabolite_23"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_375">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_379">
<SourceParameter reference="ModelValue_110"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_381">
<SourceParameter reference="ModelValue_111"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_389">
<SourceParameter reference="ModelValue_108"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_391">
<SourceParameter reference="ModelValue_109"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_385">
<SourceParameter reference="ModelValue_112"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_377">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
<Reaction key="Reaction_38" name="CDC20A_APC Synth" reversible="true" fast="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="#Reaction_38">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-01-06T14:45:13Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<ListOfProducts>
<Product metabolite="Metabolite_25" stoichiometry="1"/>
</ListOfProducts>
<ListOfModifiers>
<Modifier metabolite="Metabolite_36" stoichiometry="1"/>
<Modifier metabolite="Metabolite_11" stoichiometry="1"/>
<Modifier metabolite="Metabolite_12" stoichiometry="1"/>
</ListOfModifiers>
<ListOfConstants>
<Constant key="Parameter_4805" name="gamma" value="2.22"/>
<Constant key="Parameter_4804" name="ka_20" value="0.0104"/>
<Constant key="Parameter_4803" name="kd_20" value="0.124"/>
<Constant key="Parameter_4802" name="ki_20_ori" value="5.04"/>
<Constant key="Parameter_4801" name="sig" value="9.63"/>
</ListOfConstants>
<KineticLaw function="Function_68" unitType="Default" scalingCompartment="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]">
<ListOfCallParameters>
<CallParameter functionParameter="FunctionParameter_436">
<SourceParameter reference="Metabolite_25"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_462">
<SourceParameter reference="Metabolite_36"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_446">
<SourceParameter reference="Metabolite_11"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_420">
<SourceParameter reference="Metabolite_12"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_466">
<SourceParameter reference="ModelValue_6"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_454">
<SourceParameter reference="ModelValue_70"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_467">
<SourceParameter reference="ModelValue_69"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_450">
<SourceParameter reference="ModelValue_73"/>
</CallParameter>
<CallParameter functionParameter="FunctionParameter_458">
<SourceParameter reference="ModelValue_10"/>
</CallParameter>
</ListOfCallParameters>
</KineticLaw>
</Reaction>
</ListOfReactions>
<ListOfEvents>
<Event key="Event_0" name="Cell division" delayAssignment="true" fireAtInitialTime="0" persistentTrigger="1">
<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>2018-04-17T10:19:41Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2],Reference=Concentration> lt 0.20000000000000001
</TriggerExpression>
<DelayExpression>
0
</DelayExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_0">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[V],Reference=Concentration>*<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[f],Reference=Value>
</Expression>
</Assignment>
<Assignment targetKey="Metabolite_10">
<Expression>
0
</Expression>
</Assignment>
<Assignment targetKey="Metabolite_37">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[DIV_COUNT],Reference=Concentration>+1
</Expression>
</Assignment>
<Assignment targetKey="Metabolite_38">
<Expression>
0
</Expression>
</Assignment>
<Assignment targetKey="Metabolite_40">
<Expression>
0
</Expression>
</Assignment>
<Assignment targetKey="Metabolite_39">
<Expression>
0
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_1" name="Origin relicensing" delayAssignment="true" fireAtInitialTime="0" persistentTrigger="1">
<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_1">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:19:37Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2],Reference=Concentration>+<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5],Reference=Concentration> lt 0.20000000000000001
</TriggerExpression>
<DelayExpression>
0
</DelayExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_11">
<Expression>
0
</Expression>
</Assignment>
<Assignment targetKey="Metabolite_12">
<Expression>
0
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_2" name="Bud emergence" delayAssignment="true" fireAtInitialTime="0" persistentTrigger="1">
<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_2">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:19:42Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[BUD],Reference=Concentration> ge 1
</TriggerExpression>
<DelayExpression>
0
</DelayExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_38">
<Expression>
1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_3" name="ORI activation" delayAssignment="true" fireAtInitialTime="0" persistentTrigger="1">
<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>2018-04-17T10:19:37Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[ORI],Reference=Concentration> ge 1
</TriggerExpression>
<DelayExpression>
0
</DelayExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_39">
<Expression>
1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_4" name="SPN completion" delayAssignment="true" fireAtInitialTime="0" persistentTrigger="1">
<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_4">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T10:19:38Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SPN],Reference=Concentration> ge 1
</TriggerExpression>
<DelayExpression>
0
</DelayExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_40">
<Expression>
1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_5" name="Cln3 peak" 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_5">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-16T16:26:32Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLN3],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_52">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN3_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_6" name="Bck2 peak" 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_6">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:23:46Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dBCK2],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_53">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[BCK2_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_7" name="Cln2 peak" 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_7">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:23:52Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLN2],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_54">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN2_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_8" name="CKIT peak" 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_8">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:25:15Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCKIT],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_55">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_9" name="Clb5T peak" 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_9">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:27:12Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLB5T],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_56">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_10" name="Clb2T peak" 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_10">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:26:04Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLB2T],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_57">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_11" name="Swi5T peak" 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_11">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:32:33Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dPOLOT],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_58">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5T_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_12" name="CDC20T peak" 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_12">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:24:37Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCDC20T],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_59">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_13" name="PDS1T peak" 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_13">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:29:01Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dPDS1T],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_60">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PDS1T_peaks],Reference=Concentration>+1
</Expression>
</Assignment>
</ListOfAssignments>
</Event>
<Event key="Event_14" name="POLOT peak" 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_14">
<dcterms:created>
<rdf:Description>
<dcterms:W3CDTF>2018-04-17T09:30:03Z</dcterms:W3CDTF>
</rdf:Description>
</dcterms:created>
</rdf:Description>
</rdf:RDF>
</MiriamAnnotation>
<TriggerExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dPOLOT],Reference=Concentration> lt 0
</TriggerExpression>
<ListOfAssignments>
<Assignment targetKey="Metabolite_61">
<Expression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[POLOT_peaks],Reference=Concentration>+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=Yeast Cell Cycle_1_1" value="0" type="Model" simulationType="time"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Initial Compartment Sizes" type="Group">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell]" value="1" type="Compartment" simulationType="fixed"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Initial Species Values" type="Group">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[V]" value="2.7701847942200001e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[BCK2]" value="1.2586274391129999e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN3]" value="4.3660521213250001e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[WHI5deP]" value="1.065918931689e+24" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SBFdeP]" value="4.0830115010460004e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN2]" value="3.7698601764820001e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT]" value="3.3483103164919997e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIP]" value="2.1077492999500002e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T]" value="3.1254911047830002e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T]" value="8.9127684683600002e+21" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[BUD]" value="1.4453138056800002e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[ORI]" value="3.9565465430489997e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SPN]" value="8.9729898769300001e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5T]" value="7.3470118455400001e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T]" value="4.8357791081710003e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APCP]" value="1.56575662282e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[APCP]" value="8.9127684683599997e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDH1A]" value="1.6560887356750001e+24" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[NET1deP]" value="1.4874687916790001e+24" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PPX]" value="1.9451514968110002e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PDS1T]" value="1.4212252422519999e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC15]" value="3.8903029936220005e+23" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[TEM1]" value="4.293786431041e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[POLOT]" value="5.5825245744390006e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[POLOA]" value="6.0040744344289997e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APC]" value="3.2218453584950002e+22" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[FuncSafety]" value="2.0721811535692416e+25" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5]" value="5.1245127419632697e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2]" value="1.4613254061860575e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SBF]" value="0" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC14]" value="0" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[ESP1]" value="1.6861994399600015e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[MEN]" value="4.293786431041e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[MCM1]" value="1257024356.8376269" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5A]" value="3.6723041258761773e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APCP_T]" value="4.8357791081710003e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20A_APC_T]" value="0" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[DIV_COUNT]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[FLAG_BUD]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[FLAG_UDNA]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[FLAG_SPC]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2CLB5]" value="6.5858381481493272e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLN3]" value="-2.9780481722159167e+23" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dBCK2]" value="-2.2565564005264694e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLN2]" value="-1.2063492343333831e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCKIT]" value="-1.2337690118997716e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLB5T]" value="-1.7837284429266144e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLB2T]" value="-1.4458904355433668e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dSWI5T]" value="2.7460962307924899e+20" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCDC20T]" value="7.3125651998384062e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dPDS1T]" value="-8.720725407500697e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dPOLOT]" value="5.4907977337615281e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN3_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[BCK2_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLN2_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CKIT_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB5T_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CLB2T_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[SWI5T_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[CDC20T_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[PDS1T_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[POLOT_peaks]" value="0" type="Species" simulationType="reactions"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLN3c]" value="-2.978048172215917e+23" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dBCK2c]" value="-2.2565564005264694e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLN2c]" value="-1.2063492343333831e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCKITc]" value="-1.2337690118997716e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLB5Tc]" value="-1.7837284429266147e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCLB2Tc]" value="-1.4474363284958988e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dSWI5Tc]" value="2.7460962307924928e+20" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dCDC20Tc]" value="7.3125651998384073e+21" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dPDS1Tc]" value="-8.7207254075006987e+22" type="Species" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Compartments[cell],Vector=Metabolites[dPOLOTc]" value="5.4907977337615292e+21" type="Species" simulationType="assignment"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Initial Global Quantities" type="Group">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[mdt]" value="100" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[mu]" value="0.0069314718055994533" type="ModelValue" simulationType="assignment"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n3]" value="1.1100000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Dn3]" value="0.73199999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Jn3]" value="4.2699999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_n3]" value="0.79400000000000004" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma]" value="2.2200000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gammaki]" value="12.9" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gammacp]" value="1.3400000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gammatem]" value="0.36899999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig]" value="9.6300000000000008" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[signet]" value="1.52" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_k2]" value="0.055300000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_k2]" value="3.0099999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_i5]" value="1.22" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_i5_14]" value="0.19500000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5]" value="0.0275" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_n3]" value="6.0999999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_k2]" value="23.699999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_n2]" value="2.9700000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_b5]" value="0.042200000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_bf]" value="2.9300000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_bf_b2]" value="9.3599999999999994" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n2]" value="1e-08" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n2_bf]" value="0.996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_n2]" value="0.032000000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ki]" value="0.0066299999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ki_swi5]" value="0.088999999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_ki]" value="0.052400000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_kip]" value="0.89900000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_ki_e]" value="0.65000000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_n3]" value="1.05" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_k2]" value="0.39700000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_n2]" value="19.5" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_b5]" value="2.3900000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_b2]" value="3.1200000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_ki]" value="0.83599999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_ki_14]" value="1.1100000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b5]" value="0.00053799999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b5_bf]" value="0.0178" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5]" value="0.055599999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5_20]" value="0.044499999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b2]" value="0.00762" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b2_m1]" value="0.031" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2]" value="0.00298" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_20]" value="0.13600000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_h1]" value="0.66200000000000003" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_bud_e]" value="0.28699999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_n3]" value="0.0077999999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_n2]" value="1.1200000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_b5]" value="3" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_b2]" value="1.8899999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_bud]" value="0.058999999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_spn]" value="0.074300000000000005" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_spn]" value="0.038399999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Jspn]" value="0.80900000000000005" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ori_e]" value="1.8999999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ori_b5]" value="5.04" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ori_b2]" value="0.124" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_ori]" value="0.081699999999999995" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_swi5]" value="0.0055799999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_swi5_m1]" value="0.038899999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_swi5]" value="0.042000000000000003" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_swi5_14]" value="1.4099999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_swi5_b2]" value="0.028000000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_m1_b2]" value="4.6500000000000004" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_m1]" value="3.3900000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_20]" value="0.022100000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_20_m1]" value="0.35399999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_20]" value="0.124" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_20]" value="0.0104" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5_20_i]" value="0.0049800000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_20_i]" value="0.037400000000000003" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_20_ori]" value="5.04" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_cp_b2]" value="0.33400000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_cp]" value="0.20999999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_h1]" value="0.24099999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_h1_14]" value="32.200000000000003" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_h1]" value="0.14399999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_h1_e]" value="0.215" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_n3]" value="3.75" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_n2]" value="1.5600000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_b5]" value="9.7300000000000004" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_b2]" value="2.3500000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_net]" value="0.106" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_net_14]" value="0.0066299999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_net_px]" value="83.299999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net]" value="0.55600000000000005" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net_b2]" value="1.5" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net_en]" value="6.8799999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net_15]" value="0.0088100000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_px]" value="0.055" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_px]" value="0.11899999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_px_p1]" value="6.6900000000000004" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_pds]" value="0.046699999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds]" value="0.0144" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds_20]" value="3.04" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_15]" value="0.70899999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_15_14]" value="7.3799999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_15]" value="0.89400000000000002" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_15_b2]" value="2.1600000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_tem]" value="0.0848" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_tem_lo]" value="3.8399999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_tem_p1]" value="0.063799999999999996" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_tem]" value="0.32300000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_tem_px]" value="1.9199999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_lo]" value="0.044999999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_lo_m1]" value="0.011299999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo]" value="0.0048300000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo_h1]" value="0.13900000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_lo]" value="0.023199999999999998" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_lo_b2]" value="1.1100000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_lo]" value="0.96499999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kas_net]" value="5.6100000000000003" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[WHI5T]" value="2.1000000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[SBFT]" value="0.46800000000000003" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[MCM1T]" value="0.28199999999999997" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[APCPT]" value="45.700000000000003" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[CDH1T]" value="0.80800000000000005" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[NET1T]" value="6.4000000000000004" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[CDC14T]" value="6.2300000000000004" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[PPXT]" value="0.86599999999999999" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ESP1T]" value="0.26400000000000001" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[CDC15T]" value="1.02" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[TEM1T]" value="1.29" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds_20_i]" value="0.125" type="ModelValue" simulationType="fixed"/>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[f]" value="0.40000000000000002" type="ModelValue" simulationType="fixed"/>
</ModelParameterGroup>
<ModelParameterGroup cn="String=Kinetic Parameters" type="Group">
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Growth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Growth],ParameterGroup=Parameters,Parameter=mu" value="0.0069314718055994533" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[mu],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln3 Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln3 Synth],ParameterGroup=Parameters,Parameter=Dn3" value="0.73199999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Dn3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln3 Synth],ParameterGroup=Parameters,Parameter=Jn3" value="4.2699999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Jn3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln3 Synth],ParameterGroup=Parameters,Parameter=ks_n3" value="1.1100000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln3 Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln3 Degr],ParameterGroup=Parameters,Parameter=k1" value="0.79400000000000004" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_n3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Bck2 Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Bck2 Synth],ParameterGroup=Parameters,Parameter=ks_k2" value="0.055300000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_k2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Bck2 Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Bck2 Degr],ParameterGroup=Parameters,Parameter=k1" value="3.0099999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_k2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=WHI5T" value="2.1000000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[WHI5T],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=kdp_i5" value="1.22" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_i5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=kdp_i5_14" value="0.19500000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_i5_14],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=kp_i5" value="0.0275" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=kp_i5_b5" value="0.042200000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_b5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=kp_i5_k2" value="23.699999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_k2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=kp_i5_n2" value="2.9700000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_n2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=kp_i5_n3" value="6.0999999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_i5_n3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[WHI5deP Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SBFdeP Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SBFdeP Synth],ParameterGroup=Parameters,Parameter=SBFT" value="0.46800000000000003" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[SBFT],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SBFdeP Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SBFdeP Synth],ParameterGroup=Parameters,Parameter=kdp_bf" value="2.9300000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_bf],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SBFdeP Synth],ParameterGroup=Parameters,Parameter=kp_bf_b2" value="9.3599999999999994" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_bf_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SBFdeP Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln2 Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln2 Synth],ParameterGroup=Parameters,Parameter=ks_n2" value="1e-08" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln2 Synth],ParameterGroup=Parameters,Parameter=ks_n2_bf" value="0.996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_n2_bf],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln2 Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Cln2 Degr],ParameterGroup=Parameters,Parameter=k1" value="0.032000000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_n2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIT Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIT Synth],ParameterGroup=Parameters,Parameter=ks_ki" value="0.0066299999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ki],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIT Synth],ParameterGroup=Parameters,Parameter=ks_ki_swi5" value="0.088999999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ki_swi5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIT Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIT Degr],ParameterGroup=Parameters,Parameter=kd_ki" value="0.052400000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_ki],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIT Degr],ParameterGroup=Parameters,Parameter=kd_kip" value="0.89900000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_kip],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=e_ki_b2" value="3.1200000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=e_ki_b5" value="2.3900000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_b5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=e_ki_k2" value="0.39700000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_k2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=e_ki_n2" value="19.5" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_n2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=e_ki_n3" value="1.05" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ki_n3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=gammaki" value="12.9" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gammaki],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=kd_kip" value="0.89900000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_kip],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=kdp_ki" value="0.83599999999999997" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_ki],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=kdp_ki_14" value="1.1100000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_ki_14],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=kp_ki_e" value="0.65000000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_ki_e],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CKIP Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb5T Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb5T Synth],ParameterGroup=Parameters,Parameter=ks_b5" value="0.00053799999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb5T Synth],ParameterGroup=Parameters,Parameter=ks_b5_bf" value="0.0178" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b5_bf],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb5T Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb5T Degr],ParameterGroup=Parameters,Parameter=kd_b5" value="0.055599999999999997" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb5T Degr],ParameterGroup=Parameters,Parameter=kd_b5_20" value="0.044499999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb5T Degr],ParameterGroup=Parameters,Parameter=kd_b5_20_i" value="0.0049800000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b5_20_i],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Synth],ParameterGroup=Parameters,Parameter=ks_b2" value="0.00762" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Synth],ParameterGroup=Parameters,Parameter=ks_b2_m1" value="0.031" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_b2_m1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Degr],ParameterGroup=Parameters,Parameter=kd_b2" value="0.00298" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Degr],ParameterGroup=Parameters,Parameter=kd_b2_20" value="0.13600000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Degr],ParameterGroup=Parameters,Parameter=kd_b2_20_i" value="0.037400000000000003" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_20_i],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[Clb2T Degr],ParameterGroup=Parameters,Parameter=kd_b2_h1" value="0.66200000000000003" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_b2_h1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Synth],ParameterGroup=Parameters,Parameter=e_bud_b2" value="1.8899999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Synth],ParameterGroup=Parameters,Parameter=e_bud_b5" value="3" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_b5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Synth],ParameterGroup=Parameters,Parameter=e_bud_n2" value="1.1200000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_n2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Synth],ParameterGroup=Parameters,Parameter=e_bud_n3" value="0.0077999999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_bud_n3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Synth],ParameterGroup=Parameters,Parameter=ks_bud_e" value="0.28699999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_bud_e],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[BUD Degr],ParameterGroup=Parameters,Parameter=k1" value="0.058999999999999997" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_bud],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[ORI Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[ORI Synth],ParameterGroup=Parameters,Parameter=e_ori_b2" value="0.124" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ori_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[ORI Synth],ParameterGroup=Parameters,Parameter=e_ori_b5" value="5.04" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_ori_b5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[ORI Synth],ParameterGroup=Parameters,Parameter=ks_ori_e" value="1.8999999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_ori_e],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[ORI Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[ORI Degr],ParameterGroup=Parameters,Parameter=k1" value="0.081699999999999995" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_ori],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SPN Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SPN Synth],ParameterGroup=Parameters,Parameter=Jspn" value="0.80900000000000005" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[Jspn],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SPN Synth],ParameterGroup=Parameters,Parameter=ks_spn" value="0.074300000000000005" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_spn],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SPN Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SPN Degr],ParameterGroup=Parameters,Parameter=k1" value="0.038399999999999997" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_spn],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SWI5T Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SWI5T Synth],ParameterGroup=Parameters,Parameter=ks_swi5" value="0.0055799999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_swi5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SWI5T Synth],ParameterGroup=Parameters,Parameter=ks_swi5_m1" value="0.038899999999999997" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_swi5_m1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SWI5T Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[SWI5T Degr],ParameterGroup=Parameters,Parameter=k1" value="0.042000000000000003" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_swi5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20T Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20T Synth],ParameterGroup=Parameters,Parameter=ks_20" value="0.022100000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20T Synth],ParameterGroup=Parameters,Parameter=ks_20_m1" value="0.35399999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_20_m1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20T Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20T Degr],ParameterGroup=Parameters,Parameter=k1" value="0.124" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APCP Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APCP Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APCP Synth],ParameterGroup=Parameters,Parameter=ka_20" value="0.0104" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APCP Synth],ParameterGroup=Parameters,Parameter=kd_20" value="0.124" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APCP Synth],ParameterGroup=Parameters,Parameter=ki_20_ori" value="5.04" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_20_ori],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APCP Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[APCP Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[APCP Synth],ParameterGroup=Parameters,Parameter=APCPT" value="45.700000000000003" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[APCPT],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[APCP Synth],ParameterGroup=Parameters,Parameter=gammacp" value="1.3400000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gammacp],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[APCP Synth],ParameterGroup=Parameters,Parameter=ka_cp_b2" value="0.33400000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_cp_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[APCP Synth],ParameterGroup=Parameters,Parameter=ki_cp" value="0.20999999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_cp],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[APCP Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=CDH1T" value="0.80800000000000005" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[CDH1T],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=e_h1_b2" value="2.3500000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=e_h1_b5" value="9.7300000000000004" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_b5],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=e_h1_n2" value="1.5600000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_n2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=e_h1_n3" value="3.75" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[e_h1_n3],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=ka_h1" value="0.24099999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_h1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=ka_h1_14" value="32.200000000000003" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_h1_14],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=ki_h1" value="0.14399999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_h1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=ki_h1_e" value="0.215" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_h1_e],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDH1A Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=NET1T" value="6.4000000000000004" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[NET1T],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=kdp_net" value="0.106" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_net],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=kdp_net_14" value="0.0066299999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_net_14],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=kdp_net_px" value="83.299999999999997" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kdp_net_px],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=kp_net" value="0.55600000000000005" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=kp_net_15" value="0.0088100000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net_15],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=kp_net_b2" value="1.5" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=kp_net_en" value="6.8799999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kp_net_en],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[NET1deP Synth],ParameterGroup=Parameters,Parameter=signet" value="1.52" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[signet],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PPX Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PPX Synth],ParameterGroup=Parameters,Parameter=PPXT" value="0.86599999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[PPXT],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PPX Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PPX Synth],ParameterGroup=Parameters,Parameter=ka_px" value="0.055" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_px],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PPX Synth],ParameterGroup=Parameters,Parameter=ki_px" value="0.11899999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_px],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PPX Synth],ParameterGroup=Parameters,Parameter=ki_px_p1" value="6.6900000000000004" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_px_p1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PPX Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PDS1T Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PDS1T Synth],ParameterGroup=Parameters,Parameter=v" value="0.046699999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_pds],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PDS1T Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PDS1T Degr],ParameterGroup=Parameters,Parameter=kd_pds" value="0.0144" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PDS1T Degr],ParameterGroup=Parameters,Parameter=kd_pds_20_i" value="0.125" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds_20_i],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[PDS1T Degr],ParameterGroup=Parameters,Parameter=ks_pds_20" value="3.04" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_pds_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth],ParameterGroup=Parameters,Parameter=CDC15T" value="1.02" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[CDC15T],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth],ParameterGroup=Parameters,Parameter=ka_15" value="0.70899999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_15],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth],ParameterGroup=Parameters,Parameter=ka_15_14" value="7.3799999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_15_14],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth],ParameterGroup=Parameters,Parameter=ki_15" value="0.89400000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_15],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth],ParameterGroup=Parameters,Parameter=ki_15_b2" value="2.1600000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_15_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC15 Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=TEM1T" value="1.29" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[TEM1T],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=gammatem" value="0.36899999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gammatem],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=ka_tem" value="0.0848" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_tem],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=ka_tem_lo" value="3.8399999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_tem_lo],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=ka_tem_p1" value="0.063799999999999996" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_tem_p1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=ki_tem" value="0.32300000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_tem],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=ki_tem_px" value="1.9199999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_tem_px],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[TEM1 Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOT Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOT Synth],ParameterGroup=Parameters,Parameter=ks_lo" value="0.044999999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_lo],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOT Synth],ParameterGroup=Parameters,Parameter=ks_lo_m1" value="0.011299999999999999" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ks_lo_m1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOT Degr]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOT Degr],ParameterGroup=Parameters,Parameter=kd_lo" value="0.0048300000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOT Degr],ParameterGroup=Parameters,Parameter=kd_lo_h1" value="0.13900000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo_h1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth],ParameterGroup=Parameters,Parameter=ka_lo" value="0.023199999999999998" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_lo],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth],ParameterGroup=Parameters,Parameter=ka_lo_b2" value="1.1100000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_lo_b2],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth],ParameterGroup=Parameters,Parameter=kd_lo" value="0.0048300000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth],ParameterGroup=Parameters,Parameter=kd_lo_h1" value="0.13900000000000001" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_lo_h1],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth],ParameterGroup=Parameters,Parameter=ki_lo" value="0.96499999999999997" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_lo],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[POLOA Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
<ModelParameterGroup cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APC Synth]" type="Reaction">
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APC Synth],ParameterGroup=Parameters,Parameter=gamma" value="2.2200000000000002" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[gamma],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APC Synth],ParameterGroup=Parameters,Parameter=ka_20" value="0.0104" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ka_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APC Synth],ParameterGroup=Parameters,Parameter=kd_20" value="0.124" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[kd_20],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APC Synth],ParameterGroup=Parameters,Parameter=ki_20_ori" value="5.04" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[ki_20_ori],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
<ModelParameter cn="CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Reactions[CDC20A_APC Synth],ParameterGroup=Parameters,Parameter=sig" value="9.6300000000000008" type="ReactionParameter" simulationType="assignment">
<InitialExpression>
<CN=Root,Model=Yeast Cell Cycle_1_1,Vector=Values[sig],Reference=InitialValue>
</InitialExpression>
</ModelParameter>
</ModelParameterGroup>
</ModelParameterGroup>
</ModelParameterSet>
</ListOfModelParameterSets>
<StateTemplate>
<StateTemplateVariable objectReference="Model_0"/>
<StateTemplateVariable objectReference="Metabolite_1"/>
<StateTemplateVariable objectReference="Metabolite_2"/>
<StateTemplateVariable objectReference="Metabolite_5"/>
<StateTemplateVariable objectReference="Metabolite_6"/>
<StateTemplateVariable objectReference="Metabolite_8"/>
<StateTemplateVariable objectReference="Metabolite_9"/>
<StateTemplateVariable objectReference="Metabolite_10"/>
<StateTemplateVariable objectReference="Metabolite_11"/>
<StateTemplateVariable objectReference="Metabolite_12"/>
<StateTemplateVariable objectReference="Metabolite_13"/>
<StateTemplateVariable objectReference="Metabolite_14"/>
<StateTemplateVariable objectReference="Metabolite_20"/>
<StateTemplateVariable objectReference="Metabolite_23"/>
<StateTemplateVariable objectReference="Metabolite_0"/>
<StateTemplateVariable objectReference="Metabolite_3"/>
<StateTemplateVariable objectReference="Metabolite_15"/>
<StateTemplateVariable objectReference="Metabolite_16"/>
<StateTemplateVariable objectReference="Metabolite_17"/>
<StateTemplateVariable objectReference="Metabolite_18"/>
<StateTemplateVariable objectReference="Metabolite_19"/>
<StateTemplateVariable objectReference="Metabolite_7"/>
<StateTemplateVariable objectReference="Metabolite_21"/>
<StateTemplateVariable objectReference="Metabolite_22"/>
<StateTemplateVariable objectReference="Metabolite_4"/>
<StateTemplateVariable objectReference="Metabolite_24"/>
<StateTemplateVariable objectReference="Metabolite_25"/>
<StateTemplateVariable objectReference="Metabolite_26"/>
<StateTemplateVariable objectReference="Metabolite_27"/>
<StateTemplateVariable objectReference="Metabolite_28"/>
<StateTemplateVariable objectReference="Metabolite_29"/>
<StateTemplateVariable objectReference="Metabolite_30"/>
<StateTemplateVariable objectReference="Metabolite_31"/>
<StateTemplateVariable objectReference="Metabolite_32"/>
<StateTemplateVariable objectReference="Metabolite_33"/>
<StateTemplateVariable objectReference="Metabolite_34"/>
<StateTemplateVariable objectReference="Metabolite_35"/>
<StateTemplateVariable objectReference="Metabolite_36"/>
<StateTemplateVariable objectReference="Metabolite_41"/>
<StateTemplateVariable objectReference="Metabolite_42"/>
<StateTemplateVariable objectReference="Metabolite_43"/>
<StateTemplateVariable objectReference="Metabolite_44"/>
<StateTemplateVariable objectReference="Metabolite_45"/>
<StateTemplateVariable objectReference="Metabolite_46"/>
<StateTemplateVariable objectReference="Metabolite_47"/>
<StateTemplateVariable objectReference="Metabolite_48"/>
<StateTemplateVariable objectReference="Metabolite_49"/>
<StateTemplateVariable objectReference="Metabolite_50"/>
<StateTemplateVariable objectReference="Metabolite_51"/>
<StateTemplateVariable objectReference="Metabolite_62"/>
<StateTemplateVariable objectReference="Metabolite_63"/>
<StateTemplateVariable objectReference="Metabolite_64"/>
<StateTemplateVariable objectReference="Metabolite_65"/>
<StateTemplateVariable objectReference="Metabolite_66"/>
<StateTemplateVariable objectReference="Metabolite_67"/>
<StateTemplateVariable objectReference="Metabolite_68"/>
<StateTemplateVariable objectReference="Metabolite_69"/>
<StateTemplateVariable objectReference="Metabolite_70"/>
<StateTemplateVariable objectReference="Metabolite_71"/>
<StateTemplateVariable objectReference="ModelValue_1"/>
<StateTemplateVariable objectReference="Metabolite_37"/>
<StateTemplateVariable objectReference="Metabolite_38"/>
<StateTemplateVariable objectReference="Metabolite_39"/>
<StateTemplateVariable objectReference="Metabolite_40"/>
<StateTemplateVariable objectReference="Metabolite_52"/>
<StateTemplateVariable objectReference="Metabolite_53"/>
<StateTemplateVariable objectReference="Metabolite_54"/>
<StateTemplateVariable objectReference="Metabolite_55"/>
<StateTemplateVariable objectReference="Metabolite_56"/>
<StateTemplateVariable objectReference="Metabolite_57"/>
<StateTemplateVariable objectReference="Metabolite_58"/>
<StateTemplateVariable objectReference="Metabolite_59"/>
<StateTemplateVariable objectReference="Metabolite_60"/>
<StateTemplateVariable objectReference="Metabolite_61"/>
<StateTemplateVariable objectReference="Compartment_0"/>
<StateTemplateVariable objectReference="ModelValue_0"/>
<StateTemplateVariable objectReference="ModelValue_2"/>
<StateTemplateVariable objectReference="ModelValue_3"/>
<StateTemplateVariable objectReference="ModelValue_4"/>
<StateTemplateVariable objectReference="ModelValue_5"/>
<StateTemplateVariable objectReference="ModelValue_6"/>
<StateTemplateVariable objectReference="ModelValue_7"/>
<StateTemplateVariable objectReference="ModelValue_8"/>
<StateTemplateVariable objectReference="ModelValue_9"/>
<StateTemplateVariable objectReference="ModelValue_10"/>
<StateTemplateVariable objectReference="ModelValue_11"/>
<StateTemplateVariable objectReference="ModelValue_12"/>
<StateTemplateVariable objectReference="ModelValue_13"/>
<StateTemplateVariable objectReference="ModelValue_14"/>
<StateTemplateVariable objectReference="ModelValue_15"/>
<StateTemplateVariable objectReference="ModelValue_16"/>
<StateTemplateVariable objectReference="ModelValue_17"/>
<StateTemplateVariable objectReference="ModelValue_18"/>
<StateTemplateVariable objectReference="ModelValue_19"/>
<StateTemplateVariable objectReference="ModelValue_20"/>
<StateTemplateVariable objectReference="ModelValue_21"/>
<StateTemplateVariable objectReference="ModelValue_22"/>
<StateTemplateVariable objectReference="ModelValue_23"/>
<StateTemplateVariable objectReference="ModelValue_24"/>
<StateTemplateVariable objectReference="ModelValue_25"/>
<StateTemplateVariable objectReference="ModelValue_26"/>
<StateTemplateVariable objectReference="ModelValue_27"/>
<StateTemplateVariable objectReference="ModelValue_28"/>
<StateTemplateVariable objectReference="ModelValue_29"/>
<StateTemplateVariable objectReference="ModelValue_30"/>
<StateTemplateVariable objectReference="ModelValue_31"/>
<StateTemplateVariable objectReference="ModelValue_32"/>
<StateTemplateVariable objectReference="ModelValue_33"/>
<StateTemplateVariable objectReference="ModelValue_34"/>
<StateTemplateVariable objectReference="ModelValue_35"/>
<StateTemplateVariable objectReference="ModelValue_36"/>
<StateTemplateVariable objectReference="ModelValue_37"/>
<StateTemplateVariable objectReference="ModelValue_38"/>
<StateTemplateVariable objectReference="ModelValue_39"/>
<StateTemplateVariable objectReference="ModelValue_40"/>
<StateTemplateVariable objectReference="ModelValue_41"/>
<StateTemplateVariable objectReference="ModelValue_42"/>
<StateTemplateVariable objectReference="ModelValue_43"/>
<StateTemplateVariable objectReference="ModelValue_44"/>
<StateTemplateVariable objectReference="ModelValue_45"/>
<StateTemplateVariable objectReference="ModelValue_46"/>
<StateTemplateVariable objectReference="ModelValue_47"/>
<StateTemplateVariable objectReference="ModelValue_48"/>
<StateTemplateVariable objectReference="ModelValue_49"/>
<StateTemplateVariable objectReference="ModelValue_50"/>
<StateTemplateVariable objectReference="ModelValue_51"/>
<StateTemplateVariable objectReference="ModelValue_52"/>
<StateTemplateVariable objectReference="ModelValue_53"/>
<StateTemplateVariable objectReference="ModelValue_54"/>
<StateTemplateVariable objectReference="ModelValue_55"/>
<StateTemplateVariable objectReference="ModelValue_56"/>
<StateTemplateVariable objectReference="ModelValue_57"/>
<StateTemplateVariable objectReference="ModelValue_58"/>
<StateTemplateVariable objectReference="ModelValue_59"/>
<StateTemplateVariable objectReference="ModelValue_60"/>
<StateTemplateVariable objectReference="ModelValue_61"/>
<StateTemplateVariable objectReference="ModelValue_62"/>
<StateTemplateVariable objectReference="ModelValue_63"/>
<StateTemplateVariable objectReference="ModelValue_64"/>
<StateTemplateVariable objectReference="ModelValue_65"/>
<StateTemplateVariable objectReference="ModelValue_66"/>
<StateTemplateVariable objectReference="ModelValue_67"/>
<StateTemplateVariable objectReference="ModelValue_68"/>
<StateTemplateVariable objectReference="ModelValue_69"/>
<StateTemplateVariable objectReference="ModelValue_70"/>
<StateTemplateVariable objectReference="ModelValue_71"/>
<StateTemplateVariable objectReference="ModelValue_72"/>
<StateTemplateVariable objectReference="ModelValue_73"/>
<StateTemplateVariable objectReference="ModelValue_74"/>
<StateTemplateVariable objectReference="ModelValue_75"/>
<StateTemplateVariable objectReference="ModelValue_76"/>
<StateTemplateVariable objectReference="ModelValue_77"/>
<StateTemplateVariable objectReference="ModelValue_78"/>
<StateTemplateVariable objectReference="ModelValue_79"/>
<StateTemplateVariable objectReference="ModelValue_80"/>
<StateTemplateVariable objectReference="ModelValue_81"/>
<StateTemplateVariable objectReference="ModelValue_82"/>
<StateTemplateVariable objectReference="ModelValue_83"/>
<StateTemplateVariable objectReference="ModelValue_84"/>
<StateTemplateVariable objectReference="ModelValue_85"/>
<StateTemplateVariable objectReference="ModelValue_86"/>
<StateTemplateVariable objectReference="ModelValue_87"/>
<StateTemplateVariable objectReference="ModelValue_88"/>
<StateTemplateVariable objectReference="ModelValue_89"/>
<StateTemplateVariable objectReference="ModelValue_90"/>
<StateTemplateVariable objectReference="ModelValue_91"/>
<StateTemplateVariable objectReference="ModelValue_92"/>
<StateTemplateVariable objectReference="ModelValue_93"/>
<StateTemplateVariable objectReference="ModelValue_94"/>
<StateTemplateVariable objectReference="ModelValue_95"/>
<StateTemplateVariable objectReference="ModelValue_96"/>
<StateTemplateVariable objectReference="ModelValue_97"/>
<StateTemplateVariable objectReference="ModelValue_98"/>
<StateTemplateVariable objectReference="ModelValue_99"/>
<StateTemplateVariable objectReference="ModelValue_100"/>
<StateTemplateVariable objectReference="ModelValue_101"/>
<StateTemplateVariable objectReference="ModelValue_102"/>
<StateTemplateVariable objectReference="ModelValue_103"/>
<StateTemplateVariable objectReference="ModelValue_104"/>
<StateTemplateVariable objectReference="ModelValue_105"/>
<StateTemplateVariable objectReference="ModelValue_106"/>
<StateTemplateVariable objectReference="ModelValue_107"/>
<StateTemplateVariable objectReference="ModelValue_108"/>
<StateTemplateVariable objectReference="ModelValue_109"/>
<StateTemplateVariable objectReference="ModelValue_110"/>
<StateTemplateVariable objectReference="ModelValue_111"/>
<StateTemplateVariable objectReference="ModelValue_112"/>
<StateTemplateVariable objectReference="ModelValue_113"/>
<StateTemplateVariable objectReference="ModelValue_114"/>
<StateTemplateVariable objectReference="ModelValue_115"/>
<StateTemplateVariable objectReference="ModelValue_116"/>
<StateTemplateVariable objectReference="ModelValue_117"/>
<StateTemplateVariable objectReference="ModelValue_118"/>
<StateTemplateVariable objectReference="ModelValue_119"/>
<StateTemplateVariable objectReference="ModelValue_120"/>
<StateTemplateVariable objectReference="ModelValue_121"/>
<StateTemplateVariable objectReference="ModelValue_122"/>
<StateTemplateVariable objectReference="ModelValue_123"/>
<StateTemplateVariable objectReference="ModelValue_124"/>
<StateTemplateVariable objectReference="ModelValue_125"/>
<StateTemplateVariable objectReference="ModelValue_126"/>
</StateTemplate>
<InitialState type="initialState">
0 1.2586274391129999e+22 4.3660521213250001e+23 3.7698601764820001e+22 3.3483103164919997e+22 3.1254911047830002e+22 8.9127684683600002e+21 1.4453138056800002e+22 3.9565465430489997e+22 8.9729898769300001e+22 7.3470118455400001e+22 4.8357791081710003e+22 1.4212252422519999e+23 5.5825245744390006e+22 2.7701847942200001e+23 1.065918931689e+24 1.56575662282e+23 8.9127684683599997e+23 1.6560887356750001e+24 1.4874687916790001e+24 1.9451514968110002e+23 2.1077492999500002e+22 3.8903029936220005e+23 4.293786431041e+22 4.0830115010460004e+23 6.0040744344289997e+22 3.2218453584950002e+22 2.0721811535692416e+25 5.1245127419632697e+21 1.4613254061860575e+21 0 0 1.6861994399600015e+22 4.293786431041e+22 1257024356.8376269 3.6723041258761773e+22 4.8357791081710003e+22 0 6.5858381481493272e+21 -2.9780481722159167e+23 -2.2565564005264694e+22 -1.2063492343333831e+21 -1.2337690118997716e+22 -1.7837284429266144e+21 -1.4458904355433668e+22 2.7460962307924899e+20 7.3125651998384062e+21 -8.720725407500697e+22 5.4907977337615281e+21 -2.978048172215917e+23 -2.2565564005264694e+22 -1.2063492343333831e+21 -1.2337690118997716e+22 -1.7837284429266147e+21 -1.4474363284958988e+22 2.7460962307924928e+20 7.3125651998384073e+21 -8.7207254075006987e+22 5.4907977337615292e+21 0.0069314718055994533 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 100 1.1100000000000001 0.73199999999999998 4.2699999999999996 0.79400000000000004 2.2200000000000002 12.9 1.3400000000000001 0.36899999999999999 9.6300000000000008 1.52 0.055300000000000002 3.0099999999999998 1.22 0.19500000000000001 0.0275 6.0999999999999996 23.699999999999999 2.9700000000000002 0.042200000000000001 2.9300000000000002 9.3599999999999994 1e-08 0.996 0.032000000000000001 0.0066299999999999996 0.088999999999999996 0.052400000000000002 0.89900000000000002 0.65000000000000002 1.05 0.39700000000000002 19.5 2.3900000000000001 3.1200000000000001 0.83599999999999997 1.1100000000000001 0.00053799999999999996 0.0178 0.055599999999999997 0.044499999999999998 0.00762 0.031 0.00298 0.13600000000000001 0.66200000000000003 0.28699999999999998 0.0077999999999999996 1.1200000000000001 3 1.8899999999999999 0.058999999999999997 0.074300000000000005 0.038399999999999997 0.80900000000000005 1.8999999999999999 5.04 0.124 0.081699999999999995 0.0055799999999999999 0.038899999999999997 0.042000000000000003 1.4099999999999999 0.028000000000000001 4.6500000000000004 3.3900000000000001 0.022100000000000002 0.35399999999999998 0.124 0.0104 0.0049800000000000001 0.037400000000000003 5.04 0.33400000000000002 0.20999999999999999 0.24099999999999999 32.200000000000003 0.14399999999999999 0.215 3.75 1.5600000000000001 9.7300000000000004 2.3500000000000001 0.106 0.0066299999999999996 83.299999999999997 0.55600000000000005 1.5 6.8799999999999999 0.0088100000000000001 0.055 0.11899999999999999 6.6900000000000004 0.046699999999999998 0.0144 3.04 0.70899999999999996 7.3799999999999999 0.89400000000000002 2.1600000000000001 0.0848 3.8399999999999999 0.063799999999999996 0.32300000000000001 1.9199999999999999 0.044999999999999998 0.011299999999999999 0.0048300000000000001 0.13900000000000001 0.023199999999999998 1.1100000000000001 0.96499999999999997 5.6100000000000003 2.1000000000000001 0.46800000000000003 0.28199999999999997 45.700000000000003 0.80800000000000005 6.4000000000000004 6.2300000000000004 0.86599999999999999 0.26400000000000001 1.02 1.29 0.125 0.40000000000000002
</InitialState>
</Model>
<ListOfTasks>
<Task key="Task_12" name="Steady-State" type="steadyState" scheduled="false" updateModel="false">
<Report reference="Report_8" 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="0"/>
<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="false" updateModel="false">
<Problem>
<Parameter name="AutomaticStepSize" type="bool" value="0"/>
<Parameter name="StepNumber" type="unsignedInteger" value="1000"/>
<Parameter name="StepSize" type="float" value="1"/>
<Parameter name="Duration" type="float" value="1000"/>
<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"/>
</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_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_7" 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_6" target="" append="1" confirmOverwrite="1"/>
<Problem>
<Parameter name="Subtask" type="cn" value="CN=Root,Vector=TaskList[Steady-State]"/>
<ParameterText name="ObjectiveExpression" type="expression">
</ParameterText>
<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>
</Problem>
<Method name="Random Search" type="RandomSearch">
<Parameter name="Number of Iterations" type="unsignedInteger" value="100000"/>
<Parameter name="Random Number Generator" type="unsignedInteger" value="1"/>
<Parameter name="Seed" type="unsignedInteger" value="0"/>
</Method>
</Task>
<Task key="Task_7" name="Parameter Estimation" type="parameterFitting" scheduled="false" updateModel="false">
<Report reference="Report_5" 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="Threshold" type="unsignedInteger" value="5"/>
<Parameter name="Weight" type="unsignedFloat" value="1"/>
</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"/>
</Method>
</Task>
<Task key="Task_6" name="Metabolic Control Analysis" type="metabolicControlAnalysis" scheduled="false" updateModel="false">
<Report reference="Report_4" 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_3" 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_2" 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="0.0001"/>
</Method>
</Task>
<Task key="Task_3" name="Sensitivities" type="sensitivities" scheduled="false" updateModel="false">
<Report reference="Report_1" 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="7"/>
</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=""/>
</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_0" 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_8" 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_7" 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_6" 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_5" 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_4" 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_3" 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_2" 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_1" 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_0" 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>
</ListOfReports>
<GUI>
</GUI>
<SBMLReference file="yeast.xml">
<SBMLMap SBMLid="APCP" COPASIkey="Metabolite_16"/>
<SBMLMap SBMLid="APCPT" COPASIkey="ModelValue_117"/>
<SBMLMap SBMLid="APCP_Synth" COPASIkey="Reaction_27"/>
<SBMLMap SBMLid="BCK2" COPASIkey="Metabolite_1"/>
<SBMLMap SBMLid="BUD" COPASIkey="Metabolite_10"/>
<SBMLMap SBMLid="BUD_Degr" COPASIkey="Reaction_17"/>
<SBMLMap SBMLid="BUD_Synth" COPASIkey="Reaction_16"/>
<SBMLMap SBMLid="Bck2_Degr" COPASIkey="Reaction_4"/>
<SBMLMap SBMLid="Bck2_Synth" COPASIkey="Reaction_3"/>
<SBMLMap SBMLid="CDC14" COPASIkey="Metabolite_30"/>
<SBMLMap SBMLid="CDC14T" COPASIkey="ModelValue_120"/>
<SBMLMap SBMLid="CDC15" COPASIkey="Metabolite_21"/>
<SBMLMap SBMLid="CDC15T" COPASIkey="ModelValue_123"/>
<SBMLMap SBMLid="CDC15_Synth" COPASIkey="Reaction_33"/>
<SBMLMap SBMLid="CDC20A" COPASIkey="Metabolite_15"/>
<SBMLMap SBMLid="CDC20A_APC" COPASIkey="Metabolite_25"/>
<SBMLMap SBMLid="CDC20A_APCP_T" COPASIkey="Metabolite_35"/>
<SBMLMap SBMLid="CDC20A_APC_Synth" COPASIkey="Reaction_38"/>
<SBMLMap SBMLid="CDC20A_APC_T" COPASIkey="Metabolite_36"/>
<SBMLMap SBMLid="CDC20A_Synth" COPASIkey="Reaction_26"/>
<SBMLMap SBMLid="CDC20T" COPASIkey="Metabolite_14"/>
<SBMLMap SBMLid="CDC20T_Degr" COPASIkey="Reaction_25"/>
<SBMLMap SBMLid="CDC20T_Synth" COPASIkey="Reaction_24"/>
<SBMLMap SBMLid="CDH1A" COPASIkey="Metabolite_17"/>
<SBMLMap SBMLid="CDH1A_Synth" COPASIkey="Reaction_28"/>
<SBMLMap SBMLid="CDH1T" COPASIkey="ModelValue_118"/>
<SBMLMap SBMLid="CKIP" COPASIkey="Metabolite_7"/>
<SBMLMap SBMLid="CKIP_Synth" COPASIkey="Reaction_11"/>
<SBMLMap SBMLid="CKIT" COPASIkey="Metabolite_6"/>
<SBMLMap SBMLid="CKIT_Degr" COPASIkey="Reaction_10"/>
<SBMLMap SBMLid="CKIT_Synth" COPASIkey="Reaction_9"/>
<SBMLMap SBMLid="CLB2" COPASIkey="Metabolite_28"/>
<SBMLMap SBMLid="CLB2CLB5" COPASIkey="Metabolite_41"/>
<SBMLMap SBMLid="CLB2T" COPASIkey="Metabolite_9"/>
<SBMLMap SBMLid="CLB5" COPASIkey="Metabolite_27"/>
<SBMLMap SBMLid="CLB5T" COPASIkey="Metabolite_8"/>
<SBMLMap SBMLid="CLN2" COPASIkey="Metabolite_5"/>
<SBMLMap SBMLid="CLN3" COPASIkey="Metabolite_2"/>
<SBMLMap SBMLid="Clb2T_Degr" COPASIkey="Reaction_15"/>
<SBMLMap SBMLid="Clb2T_Synth" COPASIkey="Reaction_14"/>
<SBMLMap SBMLid="Clb5T_Degr" COPASIkey="Reaction_13"/>
<SBMLMap SBMLid="Clb5T_Synth" COPASIkey="Reaction_12"/>
<SBMLMap SBMLid="Cln2_Degr" COPASIkey="Reaction_8"/>
<SBMLMap SBMLid="Cln2_Synth" COPASIkey="Reaction_7"/>
<SBMLMap SBMLid="Cln3_Degr" COPASIkey="Reaction_2"/>
<SBMLMap SBMLid="Cln3_Synth" COPASIkey="Reaction_1"/>
<SBMLMap SBMLid="DIV_COUNT" COPASIkey="Metabolite_37"/>
<SBMLMap SBMLid="Dn3" COPASIkey="ModelValue_3"/>
<SBMLMap SBMLid="ESP1" COPASIkey="Metabolite_31"/>
<SBMLMap SBMLid="ESP1T" COPASIkey="ModelValue_122"/>
<SBMLMap SBMLid="FLAG_BUD" COPASIkey="Metabolite_38"/>
<SBMLMap SBMLid="FLAG_SPC" COPASIkey="Metabolite_40"/>
<SBMLMap SBMLid="FLAG_UDNA" COPASIkey="Metabolite_39"/>
<SBMLMap SBMLid="FuncSafety" COPASIkey="Metabolite_26"/>
<SBMLMap SBMLid="Growth" COPASIkey="Reaction_0"/>
<SBMLMap SBMLid="Jn3" COPASIkey="ModelValue_4"/>
<SBMLMap SBMLid="Jspn" COPASIkey="ModelValue_55"/>
<SBMLMap SBMLid="MCM1" COPASIkey="Metabolite_33"/>
<SBMLMap SBMLid="MCM1T" COPASIkey="ModelValue_116"/>
<SBMLMap SBMLid="MEN" COPASIkey="Metabolite_32"/>
<SBMLMap SBMLid="NET1T" COPASIkey="ModelValue_119"/>
<SBMLMap SBMLid="NET1deP" COPASIkey="Metabolite_18"/>
<SBMLMap SBMLid="NET1deP_Synth" COPASIkey="Reaction_29"/>
<SBMLMap SBMLid="ORI" COPASIkey="Metabolite_11"/>
<SBMLMap SBMLid="ORI_Degr" COPASIkey="Reaction_19"/>
<SBMLMap SBMLid="ORI_Synth" COPASIkey="Reaction_18"/>
<SBMLMap SBMLid="PDS1T" COPASIkey="Metabolite_20"/>
<SBMLMap SBMLid="PDS1T_Degr" COPASIkey="Reaction_32"/>
<SBMLMap SBMLid="PDS1T_Synth" COPASIkey="Reaction_31"/>
<SBMLMap SBMLid="POLOA" COPASIkey="Metabolite_24"/>
<SBMLMap SBMLid="POLOA_Synth" COPASIkey="Reaction_37"/>
<SBMLMap SBMLid="POLOT" COPASIkey="Metabolite_23"/>
<SBMLMap SBMLid="POLOT_Degr" COPASIkey="Reaction_36"/>
<SBMLMap SBMLid="POLOT_Synth" COPASIkey="Reaction_35"/>
<SBMLMap SBMLid="PPX" COPASIkey="Metabolite_19"/>
<SBMLMap SBMLid="PPXT" COPASIkey="ModelValue_121"/>
<SBMLMap SBMLid="PPX_Synth" COPASIkey="Reaction_30"/>
<SBMLMap SBMLid="SBF" COPASIkey="Metabolite_29"/>
<SBMLMap SBMLid="SBFT" COPASIkey="ModelValue_115"/>
<SBMLMap SBMLid="SBFdeP" COPASIkey="Metabolite_4"/>
<SBMLMap SBMLid="SBFdeP_Synth" COPASIkey="Reaction_6"/>
<SBMLMap SBMLid="SPN" COPASIkey="Metabolite_12"/>
<SBMLMap SBMLid="SPN_Degr" COPASIkey="Reaction_21"/>
<SBMLMap SBMLid="SPN_Synth" COPASIkey="Reaction_20"/>
<SBMLMap SBMLid="SWI5A" COPASIkey="Metabolite_34"/>
<SBMLMap SBMLid="SWI5T" COPASIkey="Metabolite_13"/>
<SBMLMap SBMLid="SWI5T_Degr" COPASIkey="Reaction_23"/>
<SBMLMap SBMLid="SWI5T_Synth" COPASIkey="Reaction_22"/>
<SBMLMap SBMLid="TEM1" COPASIkey="Metabolite_22"/>
<SBMLMap SBMLid="TEM1T" COPASIkey="ModelValue_124"/>
<SBMLMap SBMLid="TEM1_Synth" COPASIkey="Reaction_34"/>
<SBMLMap SBMLid="V" COPASIkey="Metabolite_0"/>
<SBMLMap SBMLid="WHI5T" COPASIkey="ModelValue_114"/>
<SBMLMap SBMLid="WHI5deP" COPASIkey="Metabolite_3"/>
<SBMLMap SBMLid="WHI5deP_Synth" COPASIkey="Reaction_5"/>
<SBMLMap SBMLid="cell" COPASIkey="Compartment_0"/>
<SBMLMap SBMLid="e_bud_b2" COPASIkey="ModelValue_51"/>
<SBMLMap SBMLid="e_bud_b5" COPASIkey="ModelValue_50"/>
<SBMLMap SBMLid="e_bud_n2" COPASIkey="ModelValue_49"/>
<SBMLMap SBMLid="e_bud_n3" COPASIkey="ModelValue_48"/>
<SBMLMap SBMLid="e_h1_b2" COPASIkey="ModelValue_83"/>
<SBMLMap SBMLid="e_h1_b5" COPASIkey="ModelValue_82"/>
<SBMLMap SBMLid="e_h1_n2" COPASIkey="ModelValue_81"/>
<SBMLMap SBMLid="e_h1_n3" COPASIkey="ModelValue_80"/>
<SBMLMap SBMLid="e_ki_b2" COPASIkey="ModelValue_35"/>
<SBMLMap SBMLid="e_ki_b5" COPASIkey="ModelValue_34"/>
<SBMLMap SBMLid="e_ki_k2" COPASIkey="ModelValue_32"/>
<SBMLMap SBMLid="e_ki_n2" COPASIkey="ModelValue_33"/>
<SBMLMap SBMLid="e_ki_n3" COPASIkey="ModelValue_31"/>
<SBMLMap SBMLid="e_ori_b2" COPASIkey="ModelValue_58"/>
<SBMLMap SBMLid="e_ori_b5" COPASIkey="ModelValue_57"/>
<SBMLMap SBMLid="f" COPASIkey="ModelValue_126"/>
<SBMLMap SBMLid="gamma" COPASIkey="ModelValue_6"/>
<SBMLMap SBMLid="gammacp" COPASIkey="ModelValue_8"/>
<SBMLMap SBMLid="gammaki" COPASIkey="ModelValue_7"/>
<SBMLMap SBMLid="gammatem" COPASIkey="ModelValue_9"/>
<SBMLMap SBMLid="ka_15" COPASIkey="ModelValue_97"/>
<SBMLMap SBMLid="ka_15_14" COPASIkey="ModelValue_98"/>
<SBMLMap SBMLid="ka_20" COPASIkey="ModelValue_70"/>
<SBMLMap SBMLid="ka_cp_b2" COPASIkey="ModelValue_74"/>
<SBMLMap SBMLid="ka_h1" COPASIkey="ModelValue_76"/>
<SBMLMap SBMLid="ka_h1_14" COPASIkey="ModelValue_77"/>
<SBMLMap SBMLid="ka_lo" COPASIkey="ModelValue_110"/>
<SBMLMap SBMLid="ka_lo_b2" COPASIkey="ModelValue_111"/>
<SBMLMap SBMLid="ka_m1_b2" COPASIkey="ModelValue_65"/>
<SBMLMap SBMLid="ka_px" COPASIkey="ModelValue_91"/>
<SBMLMap SBMLid="ka_swi5_14" COPASIkey="ModelValue_63"/>
<SBMLMap SBMLid="ka_tem" COPASIkey="ModelValue_101"/>
<SBMLMap SBMLid="ka_tem_lo" COPASIkey="ModelValue_102"/>
<SBMLMap SBMLid="ka_tem_p1" COPASIkey="ModelValue_103"/>
<SBMLMap SBMLid="kas_net" COPASIkey="ModelValue_113"/>
<SBMLMap SBMLid="kd_20" COPASIkey="ModelValue_69"/>
<SBMLMap SBMLid="kd_b2" COPASIkey="ModelValue_44"/>
<SBMLMap SBMLid="kd_b2_20" COPASIkey="ModelValue_45"/>
<SBMLMap SBMLid="kd_b2_20_i" COPASIkey="ModelValue_72"/>
<SBMLMap SBMLid="kd_b2_h1" COPASIkey="ModelValue_46"/>
<SBMLMap SBMLid="kd_b5" COPASIkey="ModelValue_40"/>
<SBMLMap SBMLid="kd_b5_20" COPASIkey="ModelValue_41"/>
<SBMLMap SBMLid="kd_b5_20_i" COPASIkey="ModelValue_71"/>
<SBMLMap SBMLid="kd_bud" COPASIkey="ModelValue_52"/>
<SBMLMap SBMLid="kd_k2" COPASIkey="ModelValue_13"/>
<SBMLMap SBMLid="kd_ki" COPASIkey="ModelValue_28"/>
<SBMLMap SBMLid="kd_kip" COPASIkey="ModelValue_29"/>
<SBMLMap SBMLid="kd_lo" COPASIkey="ModelValue_108"/>
<SBMLMap SBMLid="kd_lo_h1" COPASIkey="ModelValue_109"/>
<SBMLMap SBMLid="kd_n2" COPASIkey="ModelValue_25"/>
<SBMLMap SBMLid="kd_n3" COPASIkey="ModelValue_5"/>
<SBMLMap SBMLid="kd_ori" COPASIkey="ModelValue_59"/>
<SBMLMap SBMLid="kd_pds" COPASIkey="ModelValue_95"/>
<SBMLMap SBMLid="kd_pds_20_i" COPASIkey="ModelValue_125"/>
<SBMLMap SBMLid="kd_spn" COPASIkey="ModelValue_54"/>
<SBMLMap SBMLid="kd_swi5" COPASIkey="ModelValue_62"/>
<SBMLMap SBMLid="kdp_bf" COPASIkey="ModelValue_21"/>
<SBMLMap SBMLid="kdp_i5" COPASIkey="ModelValue_14"/>
<SBMLMap SBMLid="kdp_i5_14" COPASIkey="ModelValue_15"/>
<SBMLMap SBMLid="kdp_ki" COPASIkey="ModelValue_36"/>
<SBMLMap SBMLid="kdp_ki_14" COPASIkey="ModelValue_37"/>
<SBMLMap SBMLid="kdp_net" COPASIkey="ModelValue_84"/>
<SBMLMap SBMLid="kdp_net_14" COPASIkey="ModelValue_85"/>
<SBMLMap SBMLid="kdp_net_px" COPASIkey="ModelValue_86"/>
<SBMLMap SBMLid="ki_15" COPASIkey="ModelValue_99"/>
<SBMLMap SBMLid="ki_15_b2" COPASIkey="ModelValue_100"/>
<SBMLMap SBMLid="ki_20_ori" COPASIkey="ModelValue_73"/>
<SBMLMap SBMLid="ki_cp" COPASIkey="ModelValue_75"/>
<SBMLMap SBMLid="ki_h1" COPASIkey="ModelValue_78"/>
<SBMLMap SBMLid="ki_h1_e" COPASIkey="ModelValue_79"/>
<SBMLMap SBMLid="ki_lo" COPASIkey="ModelValue_112"/>
<SBMLMap SBMLid="ki_m1" COPASIkey="ModelValue_66"/>
<SBMLMap SBMLid="ki_px" COPASIkey="ModelValue_92"/>
<SBMLMap SBMLid="ki_px_p1" COPASIkey="ModelValue_93"/>
<SBMLMap SBMLid="ki_swi5_b2" COPASIkey="ModelValue_64"/>
<SBMLMap SBMLid="ki_tem" COPASIkey="ModelValue_104"/>
<SBMLMap SBMLid="ki_tem_px" COPASIkey="ModelValue_105"/>
<SBMLMap SBMLid="kp_bf_b2" COPASIkey="ModelValue_22"/>
<SBMLMap SBMLid="kp_i5" COPASIkey="ModelValue_16"/>
<SBMLMap SBMLid="kp_i5_b5" COPASIkey="ModelValue_20"/>
<SBMLMap SBMLid="kp_i5_k2" COPASIkey="ModelValue_18"/>
<SBMLMap SBMLid="kp_i5_n2" COPASIkey="ModelValue_19"/>
<SBMLMap SBMLid="kp_i5_n3" COPASIkey="ModelValue_17"/>
<SBMLMap SBMLid="kp_ki_e" COPASIkey="ModelValue_30"/>
<SBMLMap SBMLid="kp_net" COPASIkey="ModelValue_87"/>
<SBMLMap SBMLid="kp_net_15" COPASIkey="ModelValue_90"/>
<SBMLMap SBMLid="kp_net_b2" COPASIkey="ModelValue_88"/>
<SBMLMap SBMLid="kp_net_en" COPASIkey="ModelValue_89"/>
<SBMLMap SBMLid="ks_20" COPASIkey="ModelValue_67"/>
<SBMLMap SBMLid="ks_20_m1" COPASIkey="ModelValue_68"/>
<SBMLMap SBMLid="ks_b2" COPASIkey="ModelValue_42"/>
<SBMLMap SBMLid="ks_b2_m1" COPASIkey="ModelValue_43"/>
<SBMLMap SBMLid="ks_b5" COPASIkey="ModelValue_38"/>
<SBMLMap SBMLid="ks_b5_bf" COPASIkey="ModelValue_39"/>
<SBMLMap SBMLid="ks_bud_e" COPASIkey="ModelValue_47"/>
<SBMLMap SBMLid="ks_k2" COPASIkey="ModelValue_12"/>
<SBMLMap SBMLid="ks_ki" COPASIkey="ModelValue_26"/>
<SBMLMap SBMLid="ks_ki_swi5" COPASIkey="ModelValue_27"/>
<SBMLMap SBMLid="ks_lo" COPASIkey="ModelValue_106"/>
<SBMLMap SBMLid="ks_lo_m1" COPASIkey="ModelValue_107"/>
<SBMLMap SBMLid="ks_n2" COPASIkey="ModelValue_23"/>
<SBMLMap SBMLid="ks_n2_bf" COPASIkey="ModelValue_24"/>
<SBMLMap SBMLid="ks_n3" COPASIkey="ModelValue_2"/>
<SBMLMap SBMLid="ks_ori_e" COPASIkey="ModelValue_56"/>
<SBMLMap SBMLid="ks_pds" COPASIkey="ModelValue_94"/>
<SBMLMap SBMLid="ks_pds_20" COPASIkey="ModelValue_96"/>
<SBMLMap SBMLid="ks_spn" COPASIkey="ModelValue_53"/>
<SBMLMap SBMLid="ks_swi5" COPASIkey="ModelValue_60"/>
<SBMLMap SBMLid="ks_swi5_m1" COPASIkey="ModelValue_61"/>
<SBMLMap SBMLid="mdt" COPASIkey="ModelValue_0"/>
<SBMLMap SBMLid="mu" COPASIkey="ModelValue_1"/>
<SBMLMap SBMLid="sig" COPASIkey="ModelValue_10"/>
<SBMLMap SBMLid="signet" COPASIkey="ModelValue_11"/>
</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>
</ListOfUnitDefinitions>
</COPASI>
| Component Pascal | 5 | arakkkkk/PyBNF | examples/yeast_cell_cycle/yeast_manual_peaks.cps | [
"BSD-3-Clause"
] |
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>Feeds from RSSAnt [https://rss.anyant.com]</title>
</head>
<body>
% for feed in feeds:
<outline ${ feed['attrs'] }/>
% endfor
</body>
</opml> | Mako | 3 | zuzhi/rssant | rssant_api/resources/opml.mako | [
"BSD-3-Clause"
] |
package universe_test
import "testing"
option now = () => 2030-01-01T00:00:00Z
inData =
"
#datatype,string,long,dateTime:RFC3339,long,string,string
#group,false,false,false,false,true,true
#default,_result,,,,,
,result,table,_time,_value,_field,_measurement
,,0,2018-05-22T19:53:26Z,49,load1,system
,,0,2018-05-22T19:53:36Z,50,load1,system
,,0,2018-05-22T19:53:46Z,51,load1,system
"
outData =
"
#datatype,string,long,string
#group,false,false,false
#default,_result,,
,result,table,out
,,0,Y
,,0,N
,,0,N
"
f = (r) => r._value < 50
// test that map can call polymorphic functions
t_map = (table=<-) =>
table
|> range(start: 2018-05-22T19:53:16Z)
|> map(fn: (r) => ({out: if f(r: r) then "Y" else "N"}))
test _map = () => ({input: testing.loadStorage(csv: inData), want: testing.loadMem(csv: outData), fn: t_map})
| FLUX | 4 | geropl/flux | stdlib/universe/map_polymorphism_test.flux | [
"MIT"
] |
Mozilla/5.0 (Linux; Android 5.1; SM-J7008 Build/LMY47O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36 OPR/42.8.2246.118317
Mozilla/5.0 (Linux; U; Android 5.1; zh-CN; SM-J7008 Build/LMY47O) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.0.0.818 U3/0.8.0 Mobile Safari/534.30
| Text | 0 | 5tr1x/SecLists | Fuzzing/User-Agents/operating-platform/samsung-sm-j7008.txt | [
"MIT"
] |
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct Uniforms {
half4 colorGreen;
half4 colorRed;
};
struct Inputs {
};
struct Outputs {
half4 sk_FragColor [[color(0)]];
};
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
Outputs _out;
(void)_out;
float f = float(_uniforms.colorGreen.y);
int i = int(_uniforms.colorGreen.y);
bool b = bool(_uniforms.colorGreen.y);
float f1 = f;
float f2 = float(i);
float f3 = float(b);
int i1 = int(f);
int i2 = i;
int i3 = int(b);
bool b1 = bool(f);
bool b2 = bool(i);
bool b3 = b;
_out.sk_FragColor = (((((((half(f1) + half(f2)) + half(f3)) + half(i1)) + half(i2)) + half(i3)) + half(b1)) + half(b2)) + half(b3) == 9.0h ? _uniforms.colorGreen : _uniforms.colorRed;
return _out;
}
| Metal | 3 | fourgrad/skia | tests/sksl/shared/ScalarConversionConstructorsES2.metal | [
"BSD-3-Clause"
] |
static const uint32_t in_linear_val[1000] = {
0x3f7ab1e7, 0x3db82c98, 0x3d692bda, 0x3e09703c,
0xbe14ec98, 0xba96fdce, 0xbcea338e, 0x3e549a83,
0x3e1c0c38, 0xbbaa9180, 0x3f80d5db, 0xbaf1d75d,
0x3d017be5, 0x3dc65433, 0x3d9f8e7f, 0x3dcf12ff,
0xbba39036, 0xbe2311a3, 0xbe074df2, 0x3cfc9bd6,
0x3cf2324c, 0xbd3bddaf, 0x3dc22e04, 0xbc5d57c2,
0x3d22dfd2, 0x3da633b4, 0xbd46b16e, 0x3d26147b,
0x3deef629, 0x3e30cfaa, 0xbc94e319, 0x3dcce02e,
0x3d5d97d0, 0x3c920bda, 0x3c6074a1, 0x3d4ea5b3,
0x3c3f32a8, 0xbb89aac9, 0xbe06d1e8, 0x3d5d4f4f,
0x3d9da728, 0xbb43055d, 0x3d7b5dbe, 0x3b027a79,
0x3e0bbe25, 0x3d002f1d, 0xbdd0fd42, 0xbcbe1b44,
0xbd567887, 0x3d0bd7ea, 0x3f5a23e5, 0x3e18a452,
0xbe0e9e7a, 0xbc5774e7, 0x3d48a821, 0x3d2f4b36,
0x3d083f34, 0xbe6e5a2c, 0xbcf5adcc, 0x3cb70d5e,
0xbd9ac841, 0xbe20e053, 0x3d79e903, 0xbdecef92,
0xbd47fd05, 0xbc5dd844, 0xbd1b332c, 0xbc80ee96,
0xbcf7c2d2, 0xbe15f166, 0x3f829045, 0x3e09ae16,
0xbaa54a4b, 0x3d9f2b1b, 0x3bbc82a4, 0x3da02b2f,
0x3d4d381a, 0xbe19cce4, 0xbc21d34c, 0xbe3a6268,
0x3f8c2953, 0xbd82c8c9, 0x3d70a878, 0xbe12a3e3,
0x3d17c851, 0xbc9bf586, 0xbd318ea9, 0x3d260c48,
0x3d3af0a4, 0x3d459f65, 0x3dc17661, 0xbe00e6b7,
0x3cc2588d, 0xbce84ee3, 0xbdf5ec94, 0xbd52097f,
0x3b8e1c4a, 0x3d55c015, 0x3dd76ce2, 0x3dfa5ff1,
0xbe285a71, 0xbd265512, 0x3ce13485, 0x3c3fb05f,
0xbd3a614c, 0xbe0c2d33, 0xbd7b2f6f, 0xbdbbc310,
0x3d37cc3f, 0xbcdc5ca8, 0xbcb89779, 0xbdfd6715,
0x3da3bf14, 0x3b3ba32f, 0x3d7e95a8, 0x3d2d12f8,
0x3dfc465f, 0x3d4f7c84, 0x3b5059e7, 0xbd762c06,
0x3d3a8ee2, 0x3d162a0f, 0xbc029338, 0xbe316f16,
0x3df3bdce, 0xbd378d42, 0xbd9b71b0, 0xbe19290d,
0x3e0ef6ed, 0xbd326d37, 0x3f69c0b0, 0x39efa72e,
0x3e2b9598, 0x3dbea493, 0x3d79280b, 0x3d06315f,
0x3d42f5c7, 0xbe2e5b21, 0xbc10acad, 0x3dc9536d,
0xbde1f5b0, 0xbdac7b17, 0x3e0da6ea, 0x3e06b5d7,
0x3da05772, 0xbde8e4f0, 0xba99d123, 0xbb6e0ddd,
0xbd838063, 0xbd0a3cad, 0x3f82cfab, 0x3d3854cb,
0x3d1fd867, 0x3da0b327, 0x3dc4caba, 0xbdab3b7b,
0xbcaf5584, 0xbc9ffdec, 0x3da57daa, 0x3da61d2a,
0xbdcba62a, 0xbc5f1fef, 0xbe19e840, 0x3d5f16cb,
0xbd737df2, 0xbc614690, 0x3dc996d8, 0x3d2c62bc,
0xbc8f7710, 0xbdeed11d, 0xbc4c187f, 0xbdb6ccb0,
0xbd660d18, 0xbdb7ee05, 0xbb8aa158, 0x3e58502b,
0x3d6f9e2a, 0xbd186045, 0x3de984b2, 0x3d50780f,
0x3f88c742, 0x3e339768, 0xbd9be3c8, 0xbd8d9835,
0x3d37518f, 0x3db2efd3, 0x3dad0658, 0x3d30c289,
0xbd0d62c5, 0xbbf7e38d, 0x3f808801, 0x3d0ca539,
0xbcb25f7c, 0xbd9b3b96, 0x3c074881, 0x3dbb49ad,
0x3ca5ffa2, 0x3dd70357, 0x3d3af636, 0xbdd475fb,
0x3f81af7f, 0x3e1b174e, 0x3e039746, 0xbe3c12c6,
0xbc2cc7f3, 0x3d912e7d, 0x3da50f9d, 0x3cd2390d,
0xbd4c22bc, 0xbd7b2172, 0x3f6b9366, 0xbce0f2ce,
0x3b84eb52, 0xbda6d911, 0x3dbdda2a, 0xbc62183c,
0x3d82b030, 0x3d8d1ca3, 0x3dcd694e, 0xbd33daed,
0x3f8133f0, 0x3d919191, 0xbe3dfb9a, 0xbc85d239,
0xbe3f8355, 0x3d715756, 0x3dfe7072, 0x3b3921df,
0x3b89a3ca, 0xbc7fb403, 0x3e3da0d0, 0xbcfe40d7,
0x3dfc319a, 0x3d384342, 0x3ca697b1, 0x3e14b86e,
0xbcba9280, 0x3de5a706, 0x3d90c545, 0x3925864c,
0x3bd526ab, 0xbae273e9, 0x3d2b1638, 0xbdc0c966,
0xbe48a5e9, 0x3d1ec0ca, 0xbd1e0e23, 0xbd8679ca,
0x3e22886f, 0xbd961d34, 0x3f78e924, 0x3c4ffe1b,
0x3d65b01b, 0xbdbb863f, 0xbb895ad3, 0x3dba60c5,
0xbc60bbb8, 0x3c825d63, 0xbc8be772, 0xbe34ffcd,
0x3f878d24, 0xbd7fb739, 0xbc0f73b8, 0x3d8b60ab,
0xbd7f8055, 0xbc21dd06, 0xbc73f3fc, 0xbd827230,
0x3db5e87b, 0xbd370918, 0x3f7ac63d, 0x3d258ee8,
0xbc8a3e7a, 0x3c344468, 0x3c9c64be, 0x3dcf7fb2,
0xbd100e0d, 0x3e099aa6, 0x3d365154, 0xbdf9fc11,
0x3f8a6ab2, 0xbd710f37, 0xbc8f2f5f, 0xbd9cf69e,
0x3c3dd130, 0x3e58ad67, 0xbc07efea, 0xbe0929a0,
0x3a2a40bf, 0xbb2d0f5c, 0xbd738a3e, 0xbdc60d4c,
0x3d4922a7, 0xbcb173b7, 0x3c4397f9, 0xbda3eb2e,
0x3d98f191, 0xbd052c17, 0x3cb0b381, 0x3c87146e,
0x3f6dce94, 0xbb84bf27, 0x3db20254, 0x3bae0c13,
0xbd879844, 0x3dbcd2a9, 0xbd258419, 0xbd87ea1e,
0x3da851f6, 0x3da1636d, 0xbdb4601b, 0xbda265a1,
0x3d1dee5d, 0x3d55c58e, 0xbdb2647b, 0x3ddf2255,
0xbc2d52b5, 0xbd98687f, 0x3dd7073c, 0x3e3d2426,
0x3f8e6c9d, 0xbae4f618, 0x3cbd82fd, 0xbd6b4af1,
0x3c8bff09, 0x3dddb4c8, 0xb98b6c5d, 0xbdd77bb8,
0xbc82c4ae, 0xbdca94e4, 0x3f5bb46e, 0xbdb1564c,
0xbc47b5d1, 0x3c251e18, 0x3daea3b9, 0x3d1b2c74,
0x3c1b592e, 0x3d68a4e7, 0x3dde1d28, 0x3c9dc689,
0xbd546c7f, 0x3d000bb9, 0x3e1e4100, 0x3d5b13e6,
0x3d2b2200, 0x3c59e26a, 0xbcec0257, 0x3da97206,
0x3e02ade2, 0xbd31f69d, 0x3f830706, 0x3c5651bf,
0x3d8c7628, 0x3d139f47, 0xbd61f00b, 0xbd23edd5,
0x3e2b9f5f, 0x3df25396, 0xbdada674, 0xbbbb36a4,
0x3f785dbc, 0x3c7994fa, 0x3d9d7549, 0xbdf07c14,
0xbdc64486, 0x3c22fd62, 0xbc402a79, 0x3d87a805,
0x3dfc392b, 0xbddb2641, 0x3f82c37a, 0xbddfcc55,
0xbc85a522, 0xbdebcfc0, 0x3de5dabf, 0xbd03713c,
0x3d77c2bf, 0xbde669eb, 0x3dd43c5b, 0x3db27a45,
0x3d173c7f, 0xbe320a52, 0xbc825a86, 0x3dac466a,
0x3dad571b, 0x3dc61409, 0x3cf1bb12, 0xbdb0e8c3,
0xbdabdc7a, 0xbbecf605, 0x3d974679, 0xbd9b55a6,
0x3afab916, 0xbdca83eb, 0xbc264ff1, 0xbded9f90,
0x3d9bce6e, 0xbe01cbd5, 0x3d886ae8, 0xbcf78321,
0x3dcc191e, 0x3df33b66, 0x3e0f2d22, 0xbd8b07fd,
0xbda6a504, 0xbd91ecaa, 0xbce0357d, 0x3bef74d5,
0x3e3fd5ce, 0xbd9b5c72, 0xbce3ae5b, 0x3d85d71f,
0xbdf231ae, 0xbd01fe12, 0xbda54137, 0x3ddf2316,
0x3c0c6cdb, 0xbe12359d, 0xbd2e3d99, 0x3d8f542d,
0x3f73a7b0, 0x3dca9fdd, 0xbe1250bd, 0xbd8dcdc0,
0x3dd078cc, 0x3c6f11df, 0xbd957f16, 0x3deae565,
0xbd14b9bb, 0xbdd0db15, 0x3f720e38, 0x3d6fc24d,
0x3d966ee9, 0x3d5edd4c, 0xbe52fe53, 0xbd23a380,
0x3d1746e0, 0xbde12bc8, 0xbdd91094, 0x3dd6e5f5,
0x3f8441f4, 0xbdda8ed8, 0xbdc7bb5b, 0x3db90477,
0xbd922149, 0xbde46515, 0xbdbf8d39, 0x3deb54c2,
0x3c890449, 0x3cd5582e, 0x3f965c4e, 0x3dc4cb19,
0xbdb0e532, 0x3d48cf56, 0x3b5f756f, 0x3e37361b,
0xbdf2278f, 0xbdf3dff4, 0x3d06c77e, 0xbd4c6fcf,
0xbdd524ce, 0xbdbf3ea0, 0xbce209e0, 0x3bc1c942,
0x3d6dce3f, 0xbccc47ad, 0xbd765cc4, 0xbdf374d3,
0xbd681582, 0x3dae1fe3, 0xbc1528d9, 0xbca6775c,
0xbda0ce95, 0x3ddaee87, 0x3e0c2738, 0x3d83fc5b,
0x3d13ff76, 0x3d17ec35, 0xbcde029e, 0x3e65acdc,
0x3f808318, 0x3c5b870e, 0xbdcde8fa, 0xbcb049dc,
0x3d29e99a, 0x3d876d9a, 0x3d6c3707, 0x3dc2c65a,
0x3d1e339a, 0xbde37af9, 0xbd25b41a, 0xbbb15403,
0xbcfd493a, 0x3de67547, 0x3d07fe89, 0xbb4ebe1c,
0xbbe25173, 0x3d02abe4, 0x3dc8072a, 0x3e5b2d91,
0x3d65a288, 0xbe02972f, 0x3c0c9b51, 0xbc8d9a05,
0xbdbdb6e9, 0xbc31a78b, 0xbd886df4, 0x3d887d76,
0xbdb64e46, 0xbd04a085, 0x3f7873c8, 0xbcc4e14b,
0x3cf76770, 0xbc93ee15, 0xbd62d846, 0x3dbc0d31,
0x3ca2e141, 0xbdd4f609, 0x3e03a407, 0x3c362300,
0x3f8fe429, 0x3dd4a7d3, 0x3e592437, 0x3d2b3615,
0xbac2fd36, 0xbb85e8e9, 0xbc888d55, 0xbc9eb972,
0x3d92d0f3, 0x3e366038, 0x3f8872ba, 0xbbe8a10c,
0xbdedfdc2, 0xba44f625, 0xbc410e6f, 0xbe07ddcc,
0xbc24cf76, 0x3cf77454, 0xbd80be59, 0xbd87e21b,
0x3d63c273, 0xbd929c33, 0xbdb6b626, 0x3d8ea650,
0xbc0f7e36, 0xbd0290b8, 0x39a2683f, 0xbd91b034,
0x3df1e9fc, 0x3b9b71b6, 0x3f6ffa1e, 0xbd2425b6,
0x3dd2aa05, 0xbd6dd98f, 0xbc333054, 0xbde90d98,
0xbd0b3d83, 0xbe793311, 0x3d337d41, 0x3d735d5f,
0x3d57d7c3, 0x3d569cb4, 0xbdbed5c1, 0xbdaeab1d,
0x3de9a596, 0xbbf057d8, 0xbd909c09, 0xbc180f8b,
0x3c671bf4, 0xbcc8c46a, 0xbdec8de6, 0xbe4f05a1,
0x3db730a5, 0xbe0faf18, 0xbdc8c0e3, 0xbd485c88,
0x3db5a0c0, 0xbc872598, 0x3d5aa7ee, 0x3d333df5,
0x3c562988, 0xbd1c09ca, 0x3cb59764, 0x3d7b4aab,
0xbd3e24b5, 0xbe1fb269, 0xbe1f7cbd, 0x3dbdd118,
0x3d8ace2b, 0x3c79d46e, 0x3f8006f2, 0xbe1102dd,
0xbdaa0f9e, 0x3e20e9ba, 0x3dd0cade, 0x3de6b2e9,
0xbd91de74, 0xbcb50dc4, 0x3dbed074, 0xbd23268b,
0xbc1532cd, 0x3c0e76e4, 0x3d9ba3c6, 0xbe12cf1b,
0xbdd54683, 0x3d5333c7, 0x3bee08b2, 0x3cff5985,
0xbcf16753, 0xbc836961, 0x3f7fcf72, 0xbc6d61de,
0x3e231900, 0x3dc37b40, 0x3d404dcd, 0xbd801853,
0x3d120170, 0xbd689298, 0x3e30af3b, 0x3de91786,
0x3f7e7a47, 0xbd69ebff, 0xbde9e337, 0x3da92254,
0xbc626e2a, 0x3c06ae84, 0x3d22e951, 0x3a0f12b2,
0x3c74406f, 0x3e2d4ad5, 0x3d788521, 0x3de4af04,
0xbbea8b45, 0x3d8eb535, 0xbda55060, 0xbc23ca1b,
0xbbbd2b0c, 0x3df4deaa, 0xbd991461, 0x3d5ff2a5,
0x3c99c845, 0x3bc8ab85, 0x3ccae567, 0xbd4c0ef3,
0x3e1bb7d6, 0xbd2f8130, 0x3dd0b289, 0x3d909d0c,
0xbb922e2c, 0xbd2f1e90, 0x3f863fd6, 0xbd305f3a,
0x3d89b723, 0xbd860f1a, 0xbcf7b03b, 0x3e405e89,
0x3cd03088, 0xbdbf453b, 0xbbca66b3, 0x3cbfc03f,
0x3f769a54, 0x3d5fa9f1, 0xbd8d02be, 0xbb1e188d,
0xbd636e77, 0xbd706518, 0x3e331246, 0x3c46a022,
0xbd1db0be, 0x3ce0c6b5, 0x3f679fc4, 0x39ab2213,
0xbdba81be, 0x39ec7756, 0x3c2d9d22, 0x3c3db0ed,
0x3e054f43, 0xb93b28ab, 0xbc5f36ee, 0x3dd14923,
0xbe0e0688, 0x39faeb91, 0x3e09fb31, 0x3c8ee669,
0xba12ac5f, 0x3e2c36e1, 0x3df7fcec, 0x3da96f45,
0x3e20c657, 0xbe534c23, 0x3d78b0a3, 0xbd614454,
0xbc9aefd6, 0xbd95e06c, 0xbc9b0e08, 0xbdc74791,
0xbcc8fddc, 0x3d050381, 0xbd834a28, 0xbc59a310,
0xbe081289, 0xbd7146ca, 0xbcc87af7, 0x3c8fae46,
0xbd04cdb2, 0x3d530680, 0xbdec33d8, 0x3d8b167a,
0x3da2d6e7, 0xbd3a96ac, 0x3f743a8c, 0xbbe58efa,
0x3ad08ee7, 0xbdaac84b, 0xbd4c5911, 0x3d26e26e,
0xbc47aa51, 0xbc9a0cd2, 0x3c6e1a9f, 0x3cdbabf2,
0x3d121b0a, 0x3cbe5d5f, 0xbd4d811f, 0x3e062544,
0xbcb656a0, 0xbd873a0b, 0x3e19f793, 0x3d27c4f2,
0xbe15f066, 0xbbd423c9, 0x3c8c5926, 0x3d6b576e,
0xbd9b8efe, 0xbdb13d14, 0x3e32d051, 0xbc857766,
0xbd55bc4b, 0x3cdfd907, 0xbd0bf0f5, 0x3b97b2d6,
0x3d564459, 0x3d10cc61, 0x3b56e5d4, 0xbe2461e4,
0x3d1f1f80, 0xbda45d2c, 0x3d08c87e, 0xbbedd83f,
0x3e403867, 0xbd37d6f2, 0xbc4a843d, 0x3d7204b3,
0x3c7c56b7, 0xbd63292f, 0x3dc956a5, 0x3ddd579e,
0xbbbcf3c6, 0x3dd4d03d, 0x3e0886c9, 0x3cab68f1,
0x3e072258, 0x3daa43f5, 0x3c606b67, 0xbd92759b,
0xbbc57dda, 0x3d2c88ac, 0xbd1e7b41, 0x3c9c4ab5,
0x3da65a83, 0x3dfd3faa, 0x3f883545, 0x3c17d86d,
0x3d1ab7ed, 0xbdc6b83c, 0xbd6227c1, 0xbe0b7247,
0xbe4bdc58, 0x3d33d083, 0xbc888ec9, 0x3d834f5a,
0x3da04397, 0x3df694c9, 0xbc420105, 0xbd2db230,
0x3db951fd, 0x3e6fea16, 0xbd33c463, 0x3bbb0e1f,
0x3da174f1, 0x3e2cb6c7, 0x3cf2a8ac, 0x3da6a4c8,
0x3e036be8, 0x3da4e632, 0xbe07afc1, 0x3d397919,
0xbc3a78d1, 0x3e1b53c9, 0x3dce96a8, 0xbd85d90b,
0x3f8a41ba, 0x3c9b8230, 0xbe013bd0, 0xbde37f99,
0xbde77bc8, 0x3deee0a0, 0x3d4ef438, 0xbdd1980a,
0xbca80524, 0x3d32f978, 0x3f6af179, 0x3d8d5bae,
0x3e311f92, 0xbd01ee52, 0x3d237daf, 0xbce9fea8,
0xbe5972a3, 0xb9bf4c2b, 0xbd84bfbf, 0x3dbc62ac,
0x3f7f8da2, 0x3de29a2d, 0x3d501d3a, 0xbd11eece,
0xbbc0fcb5, 0xbc8a5095, 0xbd15dc60, 0x3cc7a9e3,
0x3d032112, 0x3d60a8b6, 0xbd35fbe3, 0x3d3f6c99,
0x3ca5ece1, 0xbc1ba09f, 0x3e3d919d, 0x3de5ef72,
0x3cdec3a7, 0x3e092e9e, 0x3d4f7477, 0xbc6850f9,
0xbd916377, 0xbe2c2702, 0xbd21569a, 0x3d718bc7,
0x3d0a3935, 0xbc992505, 0xbd5130b3, 0x3c96e1fc,
0xbdccd633, 0xbdff84e4, 0x3e0cac6e, 0xbdbe5a7c,
0x3dc018e1, 0xbdc16e5d, 0xbd79a614, 0xbc4ba74e,
0xbc1133b9, 0xbc3d4e0a, 0x3e3f2fc4, 0xbca5f5e7,
0x3d168532, 0xbdd98354, 0xbdd10031, 0xbc7f85f9,
0xbd9b8a37, 0xbdece74d, 0xbde692d6, 0x3e0b4e70,
0x3d8f14d5, 0xbd8dec15, 0xbda596a9, 0x3d953e99,
0x3d0b7633, 0x3e2e42e3, 0xbd8e4b38, 0xbe20c23f,
0x3e4defed, 0x3e00cbab, 0x3dadb119, 0xbdcc4375,
0x3f93e856, 0xbe4534fa, 0xbd84aab9, 0xbd5284e5,
0x3dcc0ffb, 0xbd95c6cd, 0xbe1b2beb, 0xbbd14c4f,
0x3cedaa08, 0x3d6a7944, 0x3f8cdefb, 0x3db8728b,
0xbd7b7750, 0x3d981242, 0x3ce3310e, 0x3c89c759,
0x3db6b4dd, 0x3cf9fc01, 0x3cc248b9, 0x3c10f150,
0x3f7cb2dc, 0xbd1ccf92, 0x3d770a16, 0xbdc31bdf,
0x3d0b1b75, 0x3cb73c7b, 0x3d95d476, 0xbb6c2a0c,
0x3da886ff, 0x3d172264, 0x3f82f99e, 0x3d02facb,
0xbd3c6ded, 0x3d85818f, 0xbe96e4d1, 0x3d50b503,
0x3da2ff67, 0xbdb1cc82, 0x3b969254, 0xbd542897,
0xba62bd0d, 0x3e38bd92, 0x3cd2c4b7, 0xbe1e1334,
0x3cce5a85, 0x3d2bdbb3, 0x3c937ce9, 0x3e00d7a5,
0xbd993133, 0x3d54093d, 0x3f95dd6f, 0x3d2fff5f,
0x3cfe6646, 0x3d77481e, 0x3db2caa4, 0xbd3cb692,
0xbceb3b62, 0x3db17035, 0x3cae9b70, 0xbdd057f1,
0x3f751efd, 0xbcb228a8, 0x3cd33068, 0xbe090a39,
0xbdc901e8, 0x3e36c38d, 0x3d179076, 0x3c83183d,
0xbd5a97fb, 0x3d69142e, 0x3f6d7b07, 0xbdb49d58,
0xbe563492, 0xbdb37d76, 0x3dd15421, 0x3d36580c,
0x3b8aea5e, 0xbd4facd4, 0x3e0a664d, 0xbcf32b1a,
0x3f61cd17, 0xbcc49324, 0x3d8ca3c2, 0x3d9ec15e,
0x3d4ad1c4, 0xbdcbfbff, 0xbd97b981, 0xbd869ab2,
0xbe2883d2, 0x3dc9f507, 0x3f76c620, 0xbc22892e,
0xbd1dc2c4, 0x3d4dad87, 0xbe3444ad, 0x3df1c9b5,
0xbcfccf48, 0xbce9ef09, 0xbdb68c82, 0xbd695e12,
0xbda0e6ba, 0xbd594e4f, 0xbbf4e935, 0xbac0ae57,
0x3d8a6e53, 0xbe1ca076, 0x3dba3872, 0x3d66094d,
0x3c924c32, 0x3de556e9, 0x3f9e1113, 0x3db08f60,
0xbc4191fa, 0x3ca3ee18, 0x3d5ae763, 0xbcc98679,
0x3cca2fb0, 0xbd480f5f, 0xbcdae11e, 0x3df1dd20
};
static const uint32_t in_linear_param[45] = {
0x3d8fea8d, 0xbd7293d8, 0x3ccc7821, 0xbccd1526,
0xbd4f75bd, 0xbd8e8ae4, 0xbca805ee, 0xbd8a7fa3,
0x3cf804fe, 0x3dda4986, 0xbc0b1bae, 0xbdcd1ec5,
0x3b919149, 0xbd9098b4, 0xbb8b9964, 0x3d039ad1,
0xbca68bae, 0x390d40ec, 0xbd039db0, 0x3d234f8f,
0x3f817dc7, 0xbc13fde7, 0x3d07e43b, 0xbd3968e9,
0xbc9b3319, 0xbd347e72, 0x3ce52697, 0xbcf9252c,
0xbbae10ce, 0x3d86177a, 0x3f810bed, 0xbce75ce8,
0xbd5ca8c8, 0xbd8985cb, 0x3cf8c183, 0x3cf19f47,
0xbde1a7ff, 0x3da009e9, 0x3b4c91ee, 0x3d9c8a98,
0xbf800000, 0xbf7bdf92, 0x3f800000, 0x3f7bdf92,
0xbf7935f0
};
static const uint16_t in_linear_dims[6] = {
0x0001, 0x0000, 0x0001, 0x0064, 0x000A, 0x0004
};
static const uint32_t ref_linear[100] = {
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000001, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000001, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000001, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000000, 0x00000000, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000000, 0x00000001,
0x00000000, 0x00000001, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000001, 0x00000001,
0x00000000, 0x00000000, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000001, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0x00000000, 0x00000001, 0x00000001, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000001
};
static const uint32_t in_polynomial_val[1000] = {
0x3f9a08b1, 0x3d0d2308, 0xbca4a5da, 0xbcee0e74,
0x3e05a417, 0xbce4cbbb, 0x3cac44c7, 0x3bb615d6,
0x3d851b07, 0xbd2935fe, 0xbe115a3a, 0xbdb7d34d,
0x3ded8c42, 0x3e3c6f60, 0x3d5e388f, 0x3c623dfd,
0x3d925963, 0x3daf1697, 0xbd49fe01, 0x3de3ece0,
0x3f754961, 0x3dce6806, 0x3c9c089e, 0xbe1d6394,
0x3d4c550b, 0xbd9cc0cd, 0xbd7b42ac, 0xbe5e4665,
0xbd7597d3, 0xbd849664, 0xbe2a7525, 0x3dcd22d9,
0xbe5f18ee, 0x3d2c8322, 0x3d3b329b, 0xbcd922af,
0xbceb9219, 0x3e445331, 0xbd6975d9, 0x3d76289d,
0x3f539ad8, 0x3e229f63, 0x3e2454ee, 0xbd726184,
0x3d879109, 0x3d94e948, 0xbcf82316, 0x3d19b9d3,
0x3ddad0ce, 0x3d42818b, 0x3f8ff9bc, 0x3d11efbe,
0x3e0cc6f3, 0xbe6ae872, 0x3e1019ee, 0xbda207f5,
0x3cd297e7, 0xbc0dc715, 0x3dcc953e, 0x3d4c54b5,
0xbe0f2f1a, 0xbd1080f8, 0x3e00e69e, 0xbb29ef4f,
0x3c87c373, 0x3dab6881, 0xbcf5d1ee, 0xbd97a01f,
0x3e3d1591, 0x3d65e353, 0x3f8ad76c, 0x3da84c05,
0xbd3bd52f, 0xbd746121, 0x3d84a686, 0xbd9c9efc,
0xbbf7bf1a, 0x3d5d9432, 0x3e324a8e, 0x3dd01025,
0x3f82994d, 0xbc90b125, 0x3d9ec6b2, 0x3d304656,
0xbd3046c1, 0xbc64318a, 0xbcb2aa2d, 0x3d9d5f33,
0x3c8a91db, 0x3ab38c17, 0x3f7d3526, 0xbcab9ef1,
0x3cf23640, 0x3d8db533, 0xbc2fce30, 0xbd759a9f,
0xbdb46c76, 0x3da2075c, 0x3da20b73, 0xbe05316e,
0x3f87e2df, 0x3cdb7e3e, 0xbdbb6962, 0x3d2f50a5,
0x3c5e35e1, 0x3dff9359, 0x3d76f4a8, 0xbd082d51,
0x3d7ce98a, 0x3e05fe77, 0x3f594bdc, 0x3cf447b3,
0x3d4c8522, 0xbdc436b7, 0xbe103a31, 0x3c79375e,
0xbc5acf3e, 0x3da4a089, 0xbe03bdeb, 0x3d48365a,
0x3f7acfe3, 0x3db03163, 0xbd9a9720, 0xbd0a5ffd,
0xbcbf6a15, 0x3c97ede2, 0xba3c46b2, 0x3dad275a,
0x3dc55275, 0xbc90c22a, 0x3f688c0e, 0xbcc6daf9,
0xbd58343d, 0x3cdfc8e9, 0x3da6aaf1, 0xbd94a4a4,
0x3c827065, 0x3d254faf, 0xbcda03bb, 0x3c61c65c,
0xbe078525, 0xbc1db3d1, 0x3d9e9dda, 0x3d44e17b,
0x3c297f01, 0xbd8c5be5, 0x3d6576b5, 0x3e5f5745,
0xbb4447a9, 0x3e00ad07, 0x3d9810e7, 0x3d810108,
0x3d8a5a37, 0x3dcc5153, 0xbde1becf, 0xbda5c74e,
0xbd5d15ca, 0x3d7e1f1e, 0xbd8e11a5, 0xbd279c58,
0x3f89a557, 0x3b88e63b, 0x3d9336db, 0xbdb7e567,
0xbc9514d8, 0x3da88ceb, 0xbcae2afb, 0x3d9e62cb,
0x3cc03544, 0xbcb1dee4, 0xbe10530a, 0x3d20cd89,
0x3d542a4b, 0x3d874937, 0x3e4b0d2c, 0x3dd1d274,
0x3bbc155e, 0x3de38060, 0x3bdd9b25, 0x3d543cb0,
0x3e0fb644, 0x3daccfdc, 0xbcca6014, 0x3d92374e,
0xbe38f6bd, 0x3d4b95d2, 0xbcb75213, 0x3c1dbb38,
0x3dccc2de, 0xbdc93740, 0xbe1650c0, 0x3e2b3678,
0xbcf9bd2d, 0xbe55ff14, 0x3b75de44, 0xbddad839,
0x3ca7f4b7, 0xbd8773e0, 0xba92e8b1, 0x3d088e86,
0x3f92e28a, 0x3db5b180, 0x3dbd7abe, 0xbdbd220f,
0xbd24f7e6, 0x3da90aaf, 0x3d9aff6e, 0x3d93aea6,
0xbd9c378a, 0xbd71580a, 0x3f8e03eb, 0x3bbf2e40,
0xbd5cea12, 0x3e00ca9a, 0x3e2ad8cd, 0xbb73eda4,
0xbb9d7e75, 0xbdf3e9cf, 0xbce90f8a, 0xbd50b7e0,
0xbda0a562, 0xbd4a70a2, 0x3cacae35, 0x3b1a7474,
0x3d39e65a, 0xbbb87ae5, 0x3e02b5c7, 0x3db839dd,
0x3db56e0f, 0xbdcaf3fd, 0xba9ad439, 0x3dc3c551,
0xbd4fff6f, 0x3dc44aea, 0xbe4a0d9a, 0xbdae4634,
0x3d4fec57, 0xbdc5bce3, 0xbd272b02, 0x3ca90342,
0x3f790d8d, 0x3c91e671, 0xbd958c1e, 0x3d8b5710,
0x3b89f1d1, 0xbd33bef6, 0x3d87f867, 0x3dca86a5,
0xbdeec1e3, 0x3a13e5f4, 0x3dcf5f41, 0xbd888091,
0x3da66e55, 0xbe84e9e8, 0xbca3908a, 0x3d8c41f9,
0xbc7db67d, 0x3c6815b1, 0x3b7109b0, 0xbe336c7d,
0x3f8fe532, 0xbbd4a1e7, 0xbd58297c, 0x3c68120e,
0x3cf49265, 0xbcd654d0, 0xbd489b47, 0xbe0e9dc5,
0xbd134472, 0x3dc623d8, 0x3f7a5f62, 0x3cb0ed31,
0x3d36b71b, 0xbd0e505b, 0x3a08621e, 0x3a319e95,
0x3d08802c, 0xbc56bb49, 0xbd3f6941, 0x3d90501e,
0x3f73174e, 0xbdf1b3df, 0xbcd16447, 0xbe43a263,
0xbd83e0d9, 0x3df74a3d, 0x3c5ebbde, 0xbb1a2c32,
0x3dc5c8a1, 0xbd912aa0, 0x3f7be98b, 0xbc08e95e,
0xbe315523, 0xbc0deaca, 0x3dd58e45, 0xbd3335c4,
0x3d3dbb84, 0x3d00b69d, 0xbc370a22, 0x3dc47c26,
0x3f80e14e, 0xbd4ff267, 0x3b0abc4e, 0xbca55e46,
0x3c43b270, 0xbd903d75, 0x3d62b219, 0x3df93168,
0xbdbbb05e, 0xbda6f749, 0x3f904f13, 0x3d330f98,
0x3c1563a7, 0xbccbb9ef, 0xbdf84b5e, 0xbe212b99,
0xbda24673, 0x3d639762, 0x3df50987, 0x3e37768d,
0x3f76000e, 0xbe5d40d4, 0x3cc38281, 0xbb815c41,
0xbcea2d66, 0xbc370d5c, 0x3c1c3c48, 0xbc04ff91,
0x3e1302d4, 0x3e49d8a6, 0x3f80ec1d, 0x3dd58b80,
0xbdebe804, 0x3d6f9dba, 0xbd5174b4, 0x3d9efa88,
0x3d897950, 0xbe023750, 0x3db7fee0, 0x3d940265,
0xbe1eb65b, 0x3c383be6, 0x3de2498e, 0x3bfeacf0,
0xbcbd1ea3, 0x3b9b361b, 0xbe078f8e, 0xbda63456,
0xbc3e6d26, 0xbdadb9cd, 0xbe0f641a, 0x3d870b94,
0xbda5f007, 0xbdc8bd81, 0xbc89bb74, 0x3af9c67e,
0x3ac4e7bc, 0x3e85af82, 0xbce4f4d0, 0xbdaf83db,
0x3f740ec7, 0xbe39b735, 0x3b6c219d, 0xbd3e0c2a,
0xbd460c36, 0x3de3a00a, 0xbc4199c3, 0xbd3ec6c1,
0x3d53ac38, 0x3e01f3f9, 0x3f74404f, 0x3d9a9688,
0xbe122bdf, 0xbc8aff74, 0x3caf806c, 0xbdc23364,
0xbcd661df, 0xbdbedaec, 0x3e2a8725, 0xbe5b750b,
0xbd448d2e, 0xbda9f209, 0xbdcd44e9, 0xbd83159f,
0xbcccccbb, 0xbe33a5e1, 0x3d46f0c8, 0xbd5f9a02,
0xbd03dc7f, 0xbe1e1147, 0xbd7394fb, 0x3d8e25aa,
0x3cc232d3, 0x3e46e323, 0xbd92c964, 0xbda40a70,
0xbddb296c, 0x3c5a138b, 0x3c643eab, 0xbc6b6756,
0x3f8fc5a6, 0xbe2fc7dd, 0x3cafca26, 0x3d8351dc,
0x3e2d88b4, 0xbba5fd48, 0x3d40d1f7, 0xbcc54de9,
0x3d221fb9, 0xbdc72f7f, 0x3f8cde89, 0x3d9925e3,
0xbd51208f, 0xbd51a8c2, 0xbd502859, 0xbe22be39,
0xbd97f24f, 0x3d63979b, 0xbcbe7241, 0x3ce8b8c6,
0x3da30555, 0x3d60cd3c, 0x3d6cba24, 0xbcd59ee6,
0x3d1c66a1, 0xbcab2687, 0xbd305511, 0x3d536473,
0x3d52d810, 0x3d906595, 0x3f7fda63, 0x3c1e1e88,
0x3ca44e36, 0x3d845ae1, 0x3ca7a30b, 0xbd30afe9,
0x3d8b4bc8, 0xbd4a9a14, 0xbe17b59d, 0x3cff461f,
0xbd5c86e8, 0x3d3d91d3, 0xbd40df11, 0xbd928b3f,
0x3dc609e3, 0x3deeb4e2, 0x3c89128f, 0x3bc21791,
0xbe2d8211, 0xbd5854b2, 0xbcabc7f3, 0xbdb87bfa,
0x3cea0bed, 0xbe1de1f7, 0x3e524ffa, 0xbc135eff,
0x3dbca1d3, 0x3d1a5bd5, 0xbdfbfa1d, 0xbdb1322e,
0xbd8f65fc, 0xbca74b7f, 0xbdf1d212, 0x3e011e9a,
0xbcedb549, 0x3daf437a, 0xbdd9d1ef, 0x3c191522,
0x3dbc1eae, 0xbbb10d9e, 0x3f82243c, 0x3d95b59a,
0xbd87ff82, 0x3cef473c, 0xbd905dac, 0xbdfe1d37,
0x3b8d28bb, 0x3d7204bc, 0x3d612567, 0x3dc42107,
0x3f81a56e, 0xbc2967b2, 0xbd76c710, 0x3e16ba1c,
0x3d920911, 0x3ce3fa6a, 0xbd89efdb, 0xbe0e307d,
0xbcaa7d31, 0xbc05884f, 0xbbc5b5d4, 0xbda577bc,
0x3db1b4b2, 0xbd246ef9, 0xbdf75d7f, 0x3ac233ca,
0x3d7243d3, 0x3cf45b5e, 0xbb737373, 0xbca5956d,
0xbcfb8b47, 0xbd8a30b4, 0x3e0be4c4, 0x3de014cf,
0xbc905f18, 0x3d271325, 0x3cfd3a9c, 0xbc8a6f85,
0xbe2db9ee, 0xbdc536ca, 0x3f7da09e, 0xbc06bf17,
0xbc25734f, 0xbd19b3ff, 0x3d322214, 0xbd378be3,
0xbcf70f27, 0xbd7b93fa, 0x3d615dd6, 0xbd6cdcf8,
0x3e07402b, 0x3e005afc, 0xbd758a44, 0x3e184599,
0x3d386db3, 0xbdb24f4f, 0x3de6fdab, 0x3b1aa440,
0x3dc3a5f0, 0x3d70b9ea, 0x3f834f00, 0x3cfbbc77,
0xbcc71615, 0x3d32b394, 0x3c95501b, 0x3e38a530,
0xbd63bea0, 0x3d509c7b, 0xbd8d9a1e, 0xbc6ad559,
0x3f8359a1, 0xbd6520e7, 0xbd074678, 0x3cd3053c,
0x3af21f53, 0xbd8eca4d, 0xbe163ffa, 0x3da82437,
0x3d3ccac1, 0x3b2a8255, 0x3f86234a, 0x3d93a689,
0xbd63b7e3, 0x3e6b9d79, 0xbde67051, 0x3d194ab0,
0x3b90e0aa, 0xbcda260f, 0xbdb364c5, 0x3dabf819,
0xbd573c37, 0xbd98ac8c, 0x3c2aebeb, 0x3d899abd,
0xbc881fd9, 0x3d15088d, 0xbd07acce, 0x3cc4df87,
0x3c100320, 0xbde856a6, 0x3f6f4983, 0xbd06005b,
0xbd8ac0d6, 0x3ddf914a, 0x3da1f01c, 0x3d1818ae,
0x3d3584a2, 0xbb52230e, 0xbdbda1aa, 0xbdeb84c5,
0xbdf30e16, 0x3c9a1b52, 0xbe25acad, 0xbcd9dd26,
0xbdd44d17, 0xbc429105, 0xbc5d2ad4, 0x3cc432ea,
0x3d190677, 0x3d644ac1, 0xbe083814, 0x3d342f3a,
0x3cd043dc, 0xbc223a61, 0x3c08a57e, 0xbd8dd8fa,
0xbdbd8fcc, 0x3d277463, 0x3da81494, 0x3d5e6c5a,
0x3f6f4574, 0xbdea1ddf, 0xbd8192e7, 0x3d7a5cd7,
0x3e0d3f14, 0xbc9619ce, 0xbc799bcc, 0xbbfd1dbc,
0x3d170e15, 0x3d34d9cb, 0x3f99cae4, 0x3c0e0fe9,
0x3ddfd735, 0xbcdc81b6, 0x3d1c5cae, 0x3d7c5612,
0x3da1b697, 0xbd86a5f1, 0xbdac2a09, 0xbdf156b2,
0x3dddfd71, 0x3d64c93f, 0x3dd9240c, 0xbe1fc193,
0x3d5666c5, 0xbd82bc99, 0xbd4f3807, 0xbd89ec5f,
0x3daa439a, 0xbd0c47c3, 0x3e145a62, 0x3d2c6eec,
0xbd3b17ff, 0x3d7c3210, 0x3d8ebf91, 0x3deb1636,
0x3d5e94ad, 0x3b8286db, 0xbbf090e0, 0x3e0ec39c,
0x3f655f98, 0xbd5517ba, 0xbe081b71, 0x3d5cca1b,
0x3d1a3f30, 0x3d8adf6f, 0xbc19c1e2, 0x3d749590,
0x3dd8821b, 0xbb12071a, 0x3f826b35, 0xbb82330f,
0x3d8eaae2, 0x3ba81a99, 0x3cd59926, 0xbd513754,
0xbe3d3888, 0x3b829401, 0xbb659eb1, 0x3e17d69c,
0x3d080db3, 0x3dcdb258, 0x3e0c5399, 0x3e01764b,
0x3e0f7e92, 0x3e2d3e17, 0x3e12df10, 0xbc9761e5,
0x3dac6d90, 0x3c2820b3, 0x3d57cb6e, 0x3df01a6e,
0xbc02c85e, 0xbd78b4c6, 0x3da7ec27, 0x3cd4099f,
0x3e18a484, 0x3c32e34e, 0x3cbd53e4, 0x3d8a26a3,
0x3f87192e, 0xbc89917a, 0xbcd1ddf8, 0x3d1e934b,
0xbe552fbb, 0xbda8ce66, 0x3e23b575, 0x3dc3c1f7,
0xbdf77057, 0x3dc75b09, 0x3f7090ca, 0x3a334129,
0xbcaa4f33, 0x3d4c26b1, 0x3da61984, 0x3d93ca7b,
0xbda0f398, 0xbe040324, 0xbdbbda4a, 0xbcc6d4f7,
0x3d558ee1, 0xbe17f08f, 0xbce32319, 0xbe1dc66b,
0x3c59bc1f, 0xbd8708b9, 0x3db7f97e, 0xbcfef488,
0x3dfa814f, 0x3e32df96, 0x3f8895c8, 0xbcf449e8,
0x3d80a4ab, 0x3dc7ef29, 0x3dccc70b, 0xbd7a89a8,
0x3dc39d1f, 0xbc94b541, 0x3dbb7e81, 0x3de420d9,
0x3f712cdc, 0xbcb6b9c5, 0x3db958e4, 0x3c2e7940,
0x3e0b6a53, 0x3c0612cf, 0x3e3b55c8, 0xbd433a3c,
0x3e2a1eda, 0xbd91464a, 0x3f89f2bf, 0x3db9b007,
0xbc2775d0, 0x3d029887, 0x3e0e0b26, 0xbd84ee23,
0xbd0aaa9d, 0xbe0ce4ab, 0x3daa4b01, 0x3dc869b4,
0xbc8413e6, 0xbb2d2459, 0x3dc456a0, 0x3d9fe53f,
0x3cc86d03, 0xbd124311, 0x3bdd6b4d, 0xbd4a4a92,
0x3b8123c7, 0xbc9dcc78, 0x3f8ed3cb, 0xbd8e4bea,
0x3ca52137, 0xbd95dd61, 0xbb530d21, 0xbcd0a2c0,
0xbb18f5f4, 0x3baf5e57, 0x3d9bee20, 0xbd2d9e2a,
0x3d3ed56c, 0xbdc0555a, 0xbdd20a61, 0xbb707cf9,
0xbd6b6f52, 0x3c768b7b, 0xbe6c52d6, 0x3c88aabe,
0x3d1e32c3, 0xbe10cdff, 0xbd88cd0a, 0xbe155c54,
0xbd520656, 0x3c170bfc, 0xbd3df826, 0xbd410b39,
0xbdb72025, 0xbd3c62d7, 0x3db247ea, 0xbdcc3b04,
0x3f781c1a, 0x3dd72294, 0xbcc20d03, 0xbe3178b9,
0xbd9d6a85, 0x3d86848c, 0x3d18ae2b, 0x3dc3e4c2,
0xbd19f271, 0xbd5cc464, 0xbd6adc1f, 0x3e011d1b,
0x3dc5f777, 0x3e00e39c, 0x3d84a09a, 0x3e08844b,
0x3dc8c43b, 0xbdc4152b, 0xbd951d65, 0x3e251e89,
0xbe2b3ef7, 0xbe08dda1, 0x3c9be893, 0xbbe48b6e,
0xbe138b7e, 0x3ddc43c7, 0x3c7874ae, 0x3d8e3b26,
0x3c889389, 0xbcc1c645, 0x3f8ea921, 0xbdf708ef,
0xbce9b627, 0xbbb11358, 0x3e7050fe, 0xbd221056,
0xbc4549c4, 0x3d3b0d00, 0xbd592f38, 0xbd80c10e,
0xbcc90684, 0x3d96c6ca, 0x3da67e6f, 0xbc9e61b9,
0xbd031d2f, 0xbe27b34e, 0x3cfc0b9f, 0x3c5a6678,
0x3e21127f, 0x3d868d7e, 0x3f821fff, 0x3b909b2f,
0xbd7ad2ec, 0x3d03829d, 0xbc5dadf3, 0x3d07e577,
0x38a9a3f4, 0x3db78e3d, 0xbd3950bc, 0x3e1343b0,
0x3d31ebcc, 0xbd951307, 0xbde2d0e7, 0x3d6cbe8a,
0x3bea3b24, 0x3c27b532, 0xbd8f2ce3, 0x3db43169,
0xbd4e104e, 0xbcdbe100, 0xbd15b235, 0xbdbe11e3,
0x3da259de, 0x3ca6c92f, 0x3ba2ac68, 0xbce6bde9,
0xbdffa126, 0x3d5329ea, 0xbd1e5acf, 0x3da3581f,
0x3e02531f, 0xbd6395fb, 0xbcec450c, 0x3d270d2f,
0xbcd20eda, 0x3dc10568, 0xbddb8538, 0x3d181b79,
0x3d061483, 0x3e09dd98, 0x3d384461, 0xbd604501,
0x3da9abcc, 0x3bc92592, 0xbddf8e87, 0xbd31186b,
0x3c65e091, 0x3cb48a98, 0x3dba1cba, 0x3a2e4ad2,
0x3f760e89, 0xbd896662, 0xbd070b36, 0xbd8127e8,
0xbd95018c, 0xbd3b5ab8, 0xbe0eec06, 0xbc207a0a,
0xbb41ea5f, 0x3d7e88de, 0xbde3ab08, 0x3cf79d4c,
0x3d5ab81e, 0xbd31c6ae, 0x3dd67e46, 0x3ddae3ee,
0x3d3f8728, 0x3de56064, 0xbd47f767, 0x3d6d0542,
0xbc7c4ca5, 0xbda0adc0, 0x3d937e18, 0xbe52102f,
0xbd2f737a, 0x3d7db96b, 0x3ac1f706, 0xbdc2891b,
0xbd42dd34, 0x3cd92485, 0x3bbaf8a4, 0x3d047e0c,
0x3dd10fa6, 0xbe0342d9, 0x3d262d39, 0x3d24dc45,
0xbe1261b5, 0x3da0431a, 0xbd6cf660, 0x3ddc54e1,
0x3f5d8c74, 0xbe82c551, 0x3b5146fd, 0x3c69327b,
0x3d33b853, 0x3dfa088e, 0x3db2da2e, 0xbd2de22e,
0xbabff8f1, 0x3beb3759, 0x3cc4472f, 0xbe075b14,
0x3c572ba4, 0x3c5fd31f, 0xbdb51669, 0xbd80243e,
0xbccec656, 0x3d9bf3af, 0xbce68c49, 0xbdfffc26,
0xbc80e92a, 0x3e0622a4, 0x3cbd5b77, 0x3d7fc9da,
0x3d32ce2a, 0xbced417e, 0xbcae9380, 0x3d117b07,
0xbccba378, 0xbd33e2a7, 0x3f83e8c8, 0xbd641850,
0xbdf56600, 0x3d7b3702, 0xbd262566, 0xbd37d33a,
0xbdacf06a, 0x3cde1d2e, 0xbd7ddd28, 0xbc8dcf30,
0x3f854374, 0xbdbd0ef2, 0x3dff893d, 0xbd395857,
0xbd9b84cb, 0x3cb95393, 0xbd0379d1, 0xbbaa4226,
0xbdd49bc4, 0x3d979ffe, 0x3df65362, 0xbd2f7afd,
0xbd4ea3a8, 0xbc944593, 0x3d91d445, 0x3ce06608,
0x3d8e51ee, 0xbd0352bf, 0xbdf6584d, 0x3d886571,
0xbd9d9c73, 0x3d028a4e, 0xbdcdc029, 0xbd1cf689,
0xbd48ef9c, 0xbab70ca4, 0x3bc6fcbe, 0x3d14a189,
0x3d88f65c, 0xbd9bd2a9, 0x3f7fbaa5, 0xbc159742,
0x3d986c53, 0xbc2c1a7f, 0xbd98a17f, 0xbd50bc45,
0x3cc8d69b, 0x3da277e9, 0xbc2b1a8b, 0xbe0e7e19
};
static const uint32_t in_polynomial_param[113] = {
0x3d8fea8d, 0xbd7293d8, 0x3ccc7821, 0xbccd1526,
0xbd4f75bd, 0xbd8e8ae4, 0xbca805ee, 0xbd8a7fa3,
0x3cf804fe, 0x3dda4986, 0xbd549f60, 0xbdf9899e,
0xbcc58231, 0xbd349f4e, 0xbda92053, 0x3d15e0ef,
0xbd6623f9, 0xbd039854, 0x3e04ad67, 0xbd80bbcd,
0xbdb9a753, 0x3c13b9c1, 0xbd224968, 0x3d887823,
0xbd92eb55, 0x3d946446, 0xbc7578bc, 0xbd388dd5,
0xbc53df51, 0x3cd2a6bc, 0xbd3ce336, 0x3d808393,
0xbd8ffe48, 0xbd0a7467, 0x3c8bec27, 0x3be481fa,
0xbd8bdb7e, 0xbcb301ff, 0x3d0c4e17, 0x3d2de2f4,
0xbc0b1bae, 0xbdcd1ec5, 0x3b919149, 0xbd9098b4,
0xbb8b9964, 0x3d039ad1, 0xbca68bae, 0x390d40ec,
0xbd039db0, 0x3d234f8f, 0x3f85d3c3, 0x3b35d345,
0x3dbbb795, 0xbd059c12, 0xbd2a7d57, 0x3c5a946e,
0xbc8f9212, 0x3d2a1eb8, 0xbc48ff2f, 0x3c600513,
0x3f8485be, 0x3ae8fd26, 0xbc3ea0ba, 0xbb934c00,
0xbc8cb8b7, 0x3df1233e, 0x3de12082, 0xbd3fcd40,
0xbcb01407, 0xbce3c7bb, 0x3f817dc7, 0xbc13fde7,
0x3d07e43b, 0xbd3968e9, 0xbc9b3319, 0xbd347e72,
0x3ce52697, 0xbcf9252c, 0xbbae10ce, 0x3d86177a,
0x3f810bed, 0xbce75ce8, 0xbd5ca8c8, 0xbd8985cb,
0x3cf8c183, 0x3cf19f47, 0xbde1a7ff, 0x3da009e9,
0x3b4c91ee, 0x3d9c8a98, 0x3f8230bb, 0x3ccef42c,
0xbcf2cce9, 0x3cb9bbea, 0xbd168449, 0xbda93852,
0xbd14d9ff, 0x3d6b6429, 0xbdc89f5e, 0xbda356bc,
0xbf800000, 0xbf800000, 0xbe91b956, 0xbf800000,
0xbf800000, 0x3e91b956, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0xbf59c288, 0x3f8ccccd,
0x3dcccccd
};
static const uint16_t in_polynomial_dims[7] = {
0x0002, 0x0000, 0x0001, 0x0064, 0x000A, 0x000A, 0x0003
};
static const uint32_t ref_polynomial[100] = {
0x00000001, 0x00000000, 0x00000001, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000001,
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000000, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000000, 0x00000001,
0x00000001, 0x00000000, 0x00000000, 0x00000001,
0x00000000, 0x00000001, 0x00000001, 0x00000001,
0x00000000, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000001, 0x00000000, 0x00000000, 0x00000000,
0x00000001, 0x00000000, 0x00000000, 0x00000001,
0x00000001, 0x00000000, 0x00000000, 0x00000001
};
static const uint32_t in_rbf_val[1000] = {
0x3f8b4b4c, 0xbdac95d2, 0xbd068e6f, 0xbbbc1b76,
0xbc192d22, 0xbdd6319c, 0xbc189471, 0xbd2e722e,
0x3dd6a6e6, 0xbe00e004, 0x3f8f1752, 0xbc6e8d2c,
0x3a92985a, 0x3b6fe6d6, 0xbdfefeff, 0xbbeb3824,
0xbd82f572, 0xbd492ad1, 0x3bf9e3a8, 0xbdc752dd,
0x3f88df6d, 0x3dd6b552, 0x3d444a4f, 0x3de4bcac,
0xbaa16331, 0x3c1fac5d, 0xbdb9942b, 0x3dc9d2d5,
0xbdafa521, 0xbdada28c, 0x3f82e8be, 0x3d3d7c60,
0x3dad99c5, 0x3d1a0fc9, 0x3adf3d47, 0xbd94bccd,
0x3dd2a10f, 0x3c4424fd, 0x3de37b89, 0xbe06afb4,
0xbdc579dc, 0x3de7198d, 0x3cbeb1a6, 0x3d29eb3f,
0x3de9e9b7, 0x3e005b97, 0x3d8fdf46, 0xbd9fc964,
0xbd2d9114, 0x3dc3f061, 0x3debe70d, 0xbb1d567c,
0xbd87fe58, 0x3d8381ad, 0x3ae21532, 0xbcc8b4fe,
0x3de5b958, 0xbdb36c1c, 0xbd8115ba, 0xbd0a849c,
0x3f801019, 0x3d969575, 0x3dd17e9d, 0x3d87deb1,
0xbda89638, 0xbc3b7f2f, 0xbb01e658, 0x3db0d750,
0x3d8b5e15, 0xbbd94aae, 0xbda7511c, 0x3d72a9ec,
0xbdd4e020, 0x3b11c188, 0x3c31a618, 0x3da621e3,
0x3d5ed9ba, 0xbe10a079, 0xbdc16d17, 0x3cd7119c,
0xbb6230d5, 0x3d8e5de9, 0x3db28389, 0xbd17d15e,
0xbd2a0b2c, 0xbcca872b, 0x3d809b8a, 0x3cfe14e1,
0xbd5a45d0, 0xbc706e20, 0x3f680f4d, 0xbc1f97a3,
0xbd1bbf15, 0x3cd80935, 0x3d8c0dfa, 0x3d4bf57a,
0xbd1a22e8, 0x3df9508c, 0x3d42c0ad, 0xbdf19ef2,
0x3d87d01d, 0x3b576429, 0xbcc76614, 0x3d28dfd8,
0xbb5a5c2c, 0x3dda9c2e, 0x3dc2774e, 0xbd3c61d4,
0xbb86b37b, 0xbccec677, 0xbd9ece68, 0x3e39b9ae,
0xbe3519af, 0x3e0b9dbf, 0x3d1ec9b6, 0xbd9ba2fb,
0x3db82a8d, 0xbd875916, 0xbce9fef7, 0xbd1cd171,
0x3f56ed19, 0x3d7054e9, 0xbd855944, 0xbd475714,
0xbd7f0d19, 0xbbee0d58, 0xbe127eb6, 0x3e4f464e,
0x3dc9b7b2, 0xbd42cccd, 0x3f5f771f, 0xbd2f7feb,
0x3c74ccf0, 0xbca24cb1, 0xbe07c49c, 0xbc38d8f3,
0x3c1c8d14, 0xbd98ddb9, 0x3d14e0f2, 0x3d1dad2e,
0x3f8216c2, 0xbcb3f779, 0x3ce435ab, 0xbe0f617f,
0x3d9b70fa, 0x3dc4f6d4, 0xbdccdf84, 0x3b9a1a78,
0x3bde35cf, 0xbcd03c64, 0x3f91cac6, 0xbe00f6bd,
0x3d8052b1, 0x3d046593, 0xbd6f7e51, 0x3dae60e7,
0xbe2d7c6d, 0x3c086474, 0xbdf5969e, 0x3c670972,
0x3b2ab08a, 0x3d2009ca, 0x3d84ebe1, 0xbe1182de,
0xbe1e6a2a, 0xbcfec542, 0x3be1a565, 0xbb177635,
0xbe12f832, 0xbd959322, 0x3f938261, 0xbd2e28dc,
0xbcd849f2, 0x3d966a31, 0xbd826558, 0x3d2db03f,
0x3ccda21c, 0x3c8f7230, 0xbd6d1dc4, 0xbde242af,
0x3ddb19bd, 0x3c67d788, 0x3d0d7015, 0xbc43a115,
0xbd316148, 0xbc92713c, 0x3d6394c2, 0x3cdebb1a,
0x3d56f9ca, 0xbd2a881a, 0xbe20ed2b, 0x3d678267,
0x3cfc182a, 0x3d925f8a, 0x3d4d08ad, 0x3d37ab73,
0x3c2ca9da, 0xbd9b3ce6, 0x3d4130da, 0xbd481c6b,
0x3dd65b11, 0xbdfccda1, 0x3d8532ae, 0x3e7efd55,
0x3dd8d14f, 0x3e01bf94, 0xbdf032b0, 0x3d3a8734,
0x3d3a4481, 0xbd49d2c1, 0xbd17cbb9, 0xbd58a137,
0xbcc456c4, 0xbd97dcd6, 0xbd0b8b23, 0xbd78809f,
0xbd60b95f, 0xbe272b97, 0xbdc13d8b, 0x3de7d54f,
0x3bddd960, 0xbc6a45d7, 0x3c96ede5, 0xbde48445,
0x3d9e721d, 0xbda27a9f, 0x3d80ca95, 0xbbf885e7,
0xbdb3ac8f, 0x3bd89ebc, 0x3c23827b, 0x3dfba169,
0x3d0961e0, 0x3e08c026, 0xbd9c9e36, 0xbcf2ab79,
0xbe009d45, 0x3cc5ec21, 0xbd764e2c, 0x3e611c98,
0xbe0cdd1e, 0xbe74db71, 0x3dc2baa9, 0x3d978852,
0x3d85e1ef, 0x3d08de71, 0xbe3003b5, 0x3c31df01,
0xbd2f9c9b, 0x3d944108, 0x3f782e06, 0xbd32c131,
0xbd8f733c, 0x3dcd3bde, 0x3dcae702, 0x3c993200,
0x3d153ea9, 0xbd5f7947, 0x3c4ddc3f, 0x3d9f4bf4,
0x3f84085e, 0x3c6f1311, 0x3dcba507, 0xbe2ffcbc,
0x3d8862ca, 0x3d56b546, 0x3d6f93c8, 0x3b8552dd,
0xbd254c4f, 0xbdbd5387, 0x3da1cac0, 0x3dba4fd0,
0x3d869fea, 0xbcbcd8c0, 0xbc69cc78, 0xbdc4897e,
0xbdb76c77, 0xbd12c81b, 0x3cbe797b, 0x3d10167b,
0x3da2669e, 0x3d8e8fc5, 0xbdf358db, 0xbd87417b,
0xbd7cdcf8, 0xbd713f16, 0x3c52aca1, 0x3dd68748,
0x3d94419e, 0x3e03f9f2, 0x3f6cb2cb, 0xbdc73a17,
0x3e63ef10, 0x3d9096a8, 0x3d1de9af, 0xb934d1ef,
0xbe581043, 0x3deffefe, 0x3cab55d9, 0x3d90c9e3,
0x3dbc8b1b, 0xbd4ec1ed, 0x3e259d53, 0x3ccb3011,
0x3e314275, 0x3ba59177, 0x3d89b9e1, 0x3e6125f0,
0x3c74b31d, 0x3bd529ff, 0x3f89a93d, 0x3e03e616,
0x3d2a8582, 0xbd9e466a, 0xbc4a1ad8, 0xbd8e99e0,
0xbe5a16ca, 0x3cd7a806, 0xbe00cc54, 0x3df83a78,
0x3f813aaa, 0xbe1525d8, 0xbde0c5cb, 0xbe667e38,
0x3d14e307, 0x3c5aad9d, 0x3d6e5944, 0xbd49ac70,
0x3cc60086, 0x3c8caf8c, 0xbd894e67, 0x3bda1944,
0x3d70da4c, 0x3dd6b325, 0xbc6da554, 0x3d56829d,
0x3d4daeff, 0x3db2311f, 0x3d87f4f0, 0x3db192c7,
0x3f74d37d, 0x3e482c4d, 0xbc9a27e8, 0x3d6bde4a,
0x3e01eb42, 0xbdeec6b0, 0xbd2af68e, 0xbd9e118b,
0x3bcd5af7, 0xbdf3a909, 0x3c5dd8bc, 0x3d1000e1,
0xbcc0a553, 0x3da74f1c, 0x3d478a63, 0x39a27d1e,
0xbd3da4c2, 0x3e029503, 0x3e61a7b9, 0x3d70cb04,
0x3d9a56a4, 0x3ca8411a, 0xbceb0cb3, 0x3af7f44c,
0x3d8190b3, 0xbca7910c, 0x3d68e327, 0xbdc46dd4,
0xbcec890e, 0xbd4e2a25, 0x3f6bb7ce, 0x3d98f9ea,
0x3d91b57b, 0x3be46df7, 0xbe07881e, 0x3dabf483,
0x3c666a93, 0x3dca3780, 0xbe1f26d0, 0x3a5a1eea,
0xbdb0a251, 0x3db9c619, 0x3dccf592, 0xbc93835a,
0x3c9e2348, 0x3cc18326, 0x3db74499, 0xbd622087,
0xbd7d9cd0, 0x3bc68891, 0x3f855c09, 0x3bd0d975,
0x3d8bf13a, 0x3dcfbe29, 0xbdb98639, 0xbb460445,
0xbd988d05, 0x3d02af3c, 0x3d1016ba, 0x3e1da5d1,
0x3e15b68d, 0xbdd103a8, 0xbe1ee3ce, 0x3dc980ed,
0x3ccd65d2, 0xbc1ded1d, 0xbe0d5705, 0xbd2dfbb5,
0x3d3fc496, 0xbd132d31, 0x3f8503e8, 0x3d095d42,
0xbdf11b20, 0xbcb99625, 0x3cfc6720, 0xbb6baa9c,
0x3e465df4, 0xbe2c8632, 0x3d98e899, 0x3e0527f8,
0x3f8e5af3, 0xba96eec1, 0xbce3522f, 0x3c2664fa,
0x3deee0a8, 0xbddc1429, 0x3db5e015, 0xbdde257b,
0xbbc836e5, 0x3c9c5670, 0xbe255627, 0x3d8ee7f7,
0xbbe9bdc3, 0x3dc4735a, 0x3dbe39d2, 0x3d80ba5c,
0xbde0eca8, 0xbdbda156, 0x3e16f4a5, 0xbcaaa76e,
0x3f7146d9, 0xbcb731ea, 0xbce82f88, 0xbd8bc8ec,
0x3d909f36, 0x3c847229, 0x3dd0f423, 0xbc3291b7,
0xbe20543a, 0x3c9b4a12, 0x3f8ba15b, 0xbddb3fb8,
0x3b21b437, 0xbd299baf, 0x3cd65cb5, 0xbe1899ea,
0x3bc55169, 0x3de310cd, 0x3cbfc4e5, 0xbe1a3d51,
0x3f7ec5bc, 0x3da28689, 0xbd33ee00, 0x3dcefa46,
0xbb659c39, 0x3ce859cb, 0xbbb1c601, 0x3e1985bd,
0xbd9f83d5, 0x3c054fca, 0x3db2ec9c, 0xbd4f17fe,
0x3c9f8c8f, 0x3d5ea340, 0x3dd03645, 0x3b8b5ce5,
0xbd2ed87c, 0xbe248538, 0xbd8f9534, 0x3e1b2099,
0x3f7ad62a, 0xbd591083, 0x3da9186d, 0xbd05cfe7,
0xbd2f2165, 0x3d28171f, 0xbdef5770, 0xbc9bbbf9,
0x3d4a41b7, 0x3c1c0252, 0x3d5024f1, 0xbddf7ae0,
0xbb924c0a, 0xbe85b2c3, 0xbcd3677c, 0xbc29f260,
0xbdbb8918, 0x3d659758, 0xbda53a19, 0xbc5bfa1d,
0x3f3d4be8, 0x3d10d44e, 0xbe0ff450, 0x3daa3e90,
0x3d2a51e3, 0x3d3cb050, 0x3db8c810, 0x3b963f01,
0x3e3931cc, 0x3d7517fb, 0xbdaa29cc, 0xbcb9ba09,
0x3d71bfb7, 0x3d838009, 0x3e444a02, 0xbd8f1fdd,
0x3b780659, 0xbda19635, 0x3dcf4310, 0x3d3dda55,
0xbd97e182, 0xbc1165d9, 0x3e17db1e, 0xbc995f63,
0x3cfe8f41, 0x3de4da4c, 0x3d552be9, 0x3cc66f7d,
0x3d6e69fd, 0x3ce67060, 0x3f823326, 0xbd1f205d,
0xbb6cf916, 0x3cbc5edc, 0x3d2e5414, 0xbd691613,
0x3d1c0699, 0x3ce3555a, 0x3e1fb28e, 0xbdeca527,
0x3f9f9406, 0x3d56fd4a, 0x3db8b71a, 0xbd0fe5eb,
0xbdc6df50, 0xbcc5e268, 0xbd19e047, 0xbd821db0,
0xbdb0960d, 0xbd712d31, 0xbde5c40e, 0x3d5725ae,
0x3d43513a, 0x3e09f671, 0xbbe2c834, 0xbd75b5f8,
0x3e051fe4, 0xbc1f74ca, 0x3b34e73d, 0x3db11929,
0x3f6adcb6, 0xbd83711e, 0x3d1f7b96, 0xbdc947ca,
0xbd1e96e6, 0x3dc39dee, 0x3d7dd154, 0x3d688a07,
0xb8f9cd2e, 0xbd5fb0c0, 0x3f87e8d6, 0xbd0c0c9f,
0xbc534fb9, 0x3e103cee, 0x3e10295f, 0xbb936509,
0xbe0ea379, 0xbd83218f, 0xbd23a624, 0xbdc6c12a,
0xbd3b125a, 0xbd9af37b, 0x3d24d9ed, 0x3d7f81a2,
0xbe047991, 0x3c5c2e1e, 0x3ceb9d31, 0xbdbe14a3,
0x3e188e97, 0xbd2376fb, 0x3d255b6f, 0xbd4eb3eb,
0xbc32190c, 0x3ac28c4c, 0x3d503bc6, 0xbbd0af83,
0xbdc3a55e, 0xbcfea382, 0x3cc61456, 0xbe33e562,
0x3f7d667b, 0x3d35ea34, 0xbd2c8481, 0xbdcdf285,
0xbd903320, 0xbd8eeea4, 0x3e00215e, 0x3d5f5abc,
0xb9998c68, 0xbe2976ff, 0xbd1aee09, 0xbd75293d,
0xbdadc63c, 0xbd900f8d, 0x3dd85b51, 0x3d2f6057,
0x3db882ae, 0xbe261dbe, 0xbd88bfe6, 0xbda770f1,
0x3d718209, 0xbe1f9cfe, 0x3d10513c, 0xbe1981a8,
0xbdcd8e9a, 0x3d72e9cb, 0xbd987676, 0xbdba16db,
0xbdbf647a, 0x3dd4a7e3, 0x3f4bb76d, 0x3cbe0280,
0x3e1d1f65, 0xbe28dbe6, 0x3d28b324, 0xbd350967,
0xbce5588d, 0x3d8c521f, 0xbd8294be, 0xbd1fcb60,
0xbd896490, 0xbc258036, 0xbde43346, 0xbc34eb79,
0xbd5b8137, 0xbdd54e65, 0x3d9c7984, 0x3d809c28,
0x3e13e82a, 0x3e25e9bd, 0x3da9027b, 0x3e22019f,
0xbd42a7cb, 0x3dae2b2b, 0xbdae68f1, 0xbd9ef1a0,
0x3da43576, 0xbcb9fb81, 0x3da8aa03, 0xbd5e324a,
0x3d03e1f8, 0x3df334d5, 0xbccde303, 0x3d83877d,
0xbd2db262, 0x3e828357, 0x3dc43a53, 0xbdceae06,
0xbd843fa4, 0x3da6ce93, 0x3f7cd64f, 0xbdcfa0b1,
0x3cc54906, 0xbdaef09d, 0x3e0ab083, 0x3dccac4b,
0x3c5c56ae, 0x3b99c7ba, 0xbdda4291, 0xbca21dc6,
0x3c9fced5, 0xbe18fd1f, 0xbd59b15b, 0xbdb4b241,
0x3aa75357, 0x3d20980a, 0x3cfe4d77, 0xbc4f8ece,
0xbcca7637, 0xbdb6e44f, 0x3f8229d7, 0xbd92dafd,
0xbd844522, 0x3e2910c3, 0x3d400524, 0xbd2105e4,
0xbb5e76f5, 0xbb6c05f4, 0xbb5fdea3, 0x3d8fd832,
0x3f61c812, 0xbd5e22b2, 0xbaa3948d, 0x3e5d473e,
0x3c89c9d5, 0x3c753a5d, 0xbd581b92, 0xbd93d36c,
0x3de7639e, 0x3d23cfd3, 0x3f7b013b, 0xbd61f345,
0x3c768205, 0x3b84be96, 0x3d237401, 0x3d990d56,
0x3e12a4ea, 0x3ca777cf, 0xbd2d866a, 0xbc351509,
0xbcf5194e, 0xbd0cfc36, 0x3bbab72d, 0x3db38b8d,
0x3d275e73, 0xbd8aca20, 0x3c8f6daf, 0xbdf56e72,
0xbdd5d04f, 0x3ca486db, 0x3f8f5a0c, 0xbd39076e,
0x3de53c38, 0x3df2b2b1, 0x3bcd3620, 0x3d7a244f,
0xbd98c2e4, 0x3d8e65e6, 0x3e1d2d13, 0x3d204af1,
0xbdb96cf2, 0xbe02c796, 0xbe16af91, 0xbc9da8cc,
0x3e197615, 0xbe17e14a, 0x3d194659, 0x3c6c3c3d,
0x3ceb6428, 0x3d936644, 0x3f808464, 0x3e12872e,
0xbdbfd380, 0xbd52ad86, 0xbc4af807, 0xba2b6d5f,
0x3e47e550, 0x3cfa73dc, 0xbd072100, 0xbba8e292,
0x3f796b8d, 0xbd468eab, 0x3cd1fbb9, 0x3d2b9bda,
0xbc6be4c0, 0x3dbe7adb, 0xbd8691a9, 0xbd857db3,
0xbe0203a1, 0x3ca5a274, 0xbb6b9cf7, 0x3cc3e213,
0x3d1e0164, 0x3e315d41, 0xbb07dcb5, 0x3d506a94,
0xbd290c11, 0xbc46d89e, 0xbe028b60, 0x3c870e95,
0x3f6bc061, 0xbdc5bbe8, 0xbd98fdba, 0xbe0f22ed,
0xbc31dcc7, 0x3d5d44cb, 0x3dbec4ac, 0x3dce00bd,
0x3c027841, 0x3da39871, 0x3f6d4769, 0xbdb43a9d,
0xbcf85a75, 0xbcf3a3f8, 0xba0876d8, 0xbcf5ede6,
0x3d41551b, 0xbe19734d, 0xbd22da32, 0xbde42f01,
0xbd9c74d1, 0xbd45d4cd, 0xbd4b15ed, 0xba752019,
0x3cc655fb, 0x3d585dcc, 0x3b0f7a35, 0x3e2dc752,
0xbcba4949, 0xbe0bf1da, 0x3f7e4981, 0x3e1c3477,
0x3c44869c, 0xbda126d2, 0x3d2109de, 0xbc8d1ae7,
0x3e3e296d, 0x3dd41be4, 0xbdb2f9b0, 0x3d28da1a,
0x3c6c162c, 0xbd842cf1, 0xbde135b0, 0x3df2b333,
0x3d774f31, 0x3dfd961c, 0xbcc702f5, 0xbde74a09,
0x3e178ecc, 0x3d1986c5, 0xbdc68b26, 0xbd43913f,
0x3c0059f2, 0x3d06ec9b, 0xbd45023a, 0xbd8fcbb1,
0x3db73340, 0x3c87b53d, 0x3ca55ad8, 0x3cb3fc18,
0x3f874e08, 0x3def5ff1, 0x3d6c8c5a, 0xbc825600,
0x3dcad1aa, 0x3d016d9e, 0xbd066e20, 0xbc62d17e,
0xbe07f062, 0xbd794192, 0x3d824944, 0x3e875016,
0xbd84c10c, 0x3d47fef3, 0xbd5ca000, 0x3da6203c,
0xbcbf1de1, 0x3cb27c2f, 0xbda2bbce, 0x3de7fb04,
0x3e199334, 0xbc607e02, 0x3da660ad, 0xbdb4c988,
0xbc3cd505, 0x3d2419fa, 0x3c7fc368, 0x3d32fcbd,
0x3d59b0d3, 0xbddce413, 0x3f7913af, 0x3dad3f33,
0xbddfffe6, 0xbded18ba, 0xbd096e92, 0x3db3052a,
0xbd9f6a8a, 0x3e34d763, 0x3e3fbf77, 0xb9182774,
0x3d84f1ae, 0x3d5552f9, 0xbd99a7ee, 0xbc29d7c9,
0xbd8e9984, 0x3dd95e6b, 0xbcb94320, 0xbdb5ee90,
0xbd938623, 0xbd5a209b, 0x3d95bd5c, 0xbd98f8fc,
0x3e002745, 0x3cbec548, 0xbd25a898, 0x3dc424ae,
0x3cc27a41, 0xbcf3f806, 0x3cb664c7, 0x3d8b95cb,
0x3f622bc9, 0xbd71363e, 0x3c51265d, 0x3df88cc2,
0x3d98649e, 0x3c87471d, 0xbdb97786, 0xbaae41a9,
0xbda13df6, 0x3d05f5a9, 0x3f63698e, 0x3d3652ab,
0x3d9dc56d, 0x3cbb34f2, 0x3cd08f23, 0xbdbdfe16,
0xbb830a72, 0x3de08df5, 0x3d8a1354, 0xbe18c3b0,
0x3f8873ce, 0x3dd0e542, 0xbd43096f, 0xbd61a3cf,
0x3b2a1fad, 0x3dffe21e, 0xbdd70a7d, 0xbd858b84,
0x3da9c28a, 0xbe0212f0, 0xbe10db60, 0xbd4149e6,
0x3d5e57aa, 0xbc37c36e, 0xbdee33f6, 0x3c93d386,
0x3dcee6f9, 0x3d6241a1, 0xbd52b2c5, 0xbc45171b,
0x3f88febe, 0xbd1b93c1, 0x3d487b4e, 0xbd30be0f,
0x3c0d5fb2, 0xbd871b87, 0xbd52cbad, 0x3dd0a87f,
0xbd25e06d, 0xbddfb435, 0x3d919d1b, 0x3dd5df93,
0xbcbf5279, 0xbd4ee8ab, 0x3c51ebb9, 0xbc91aa99,
0x3dd34684, 0x3d5f65ae, 0x3e0e3ddf, 0xbc4b1f22,
0x3c29a873, 0x3e06b117, 0x3c9b1f1f, 0x3d874aaa,
0x3d84c6d9, 0xbdc1ccfd, 0x3d0195d1, 0x3e4066db,
0xbd58df86, 0xbde509e5, 0xbd708545, 0xbd4e7db5,
0xbd572e03, 0xbb19332f, 0x3d912369, 0x3dd47784,
0xbd95c7ac, 0x3e212d9b, 0x3c9d1246, 0x3e46675d,
0xbd16676b, 0x3c7977b0, 0x3b01fe8d, 0x3d819691,
0xbdec78b2, 0xbdf17528, 0xbcf0248c, 0xbe2c174d,
0xbc380bed, 0x3dcf89c4, 0xbd895288, 0x3cb93df5,
0x3e15b7f3, 0xbcb2fdbb, 0xbc710ba3, 0xbce1d477,
0x3cf5d42d, 0xbb936401, 0x3d1832fe, 0xbc9e0365
};
static const uint32_t in_rbf_param[112] = {
0x3d8fea8d, 0xbd7293d8, 0x3ccc7821, 0xbccd1526,
0xbd4f75bd, 0xbd8e8ae4, 0xbca805ee, 0xbd8a7fa3,
0x3cf804fe, 0x3dda4986, 0xbd549f60, 0xbdf9899e,
0xbcc58231, 0xbd349f4e, 0xbda92053, 0x3d15e0ef,
0xbd6623f9, 0xbd039854, 0x3e04ad67, 0xbd80bbcd,
0xbdb9a753, 0x3c13b9c1, 0xbd224968, 0x3d887823,
0xbd92eb55, 0x3d946446, 0xbc7578bc, 0xbd388dd5,
0xbc53df51, 0x3cd2a6bc, 0xbd3ce336, 0x3d808393,
0xbd8ffe48, 0xbd0a7467, 0x3c8bec27, 0x3be481fa,
0xbd8bdb7e, 0xbcb301ff, 0x3d0c4e17, 0x3d2de2f4,
0xbc0b1bae, 0xbdcd1ec5, 0x3b919149, 0xbd9098b4,
0xbb8b9964, 0x3d039ad1, 0xbca68bae, 0x390d40ec,
0xbd039db0, 0x3d234f8f, 0x3f85d3c3, 0x3b35d345,
0x3dbbb795, 0xbd059c12, 0xbd2a7d57, 0x3c5a946e,
0xbc8f9212, 0x3d2a1eb8, 0xbc48ff2f, 0x3c600513,
0x3f8485be, 0x3ae8fd26, 0xbc3ea0ba, 0xbb934c00,
0xbc8cb8b7, 0x3df1233e, 0x3de12082, 0xbd3fcd40,
0xbcb01407, 0xbce3c7bb, 0x3f817dc7, 0xbc13fde7,
0x3d07e43b, 0xbd3968e9, 0xbc9b3319, 0xbd347e72,
0x3ce52697, 0xbcf9252c, 0xbbae10ce, 0x3d86177a,
0x3f810bed, 0xbce75ce8, 0xbd5ca8c8, 0xbd8985cb,
0x3cf8c183, 0x3cf19f47, 0xbde1a7ff, 0x3da009e9,
0x3b4c91ee, 0x3d9c8a98, 0x3f8230bb, 0x3ccef42c,
0xbcf2cce9, 0x3cb9bbea, 0xbd168449, 0xbda93852,
0xbd14d9ff, 0x3d6b6429, 0xbdc89f5e, 0xbda356bc,
0xbf800000, 0xbf800000, 0xbf800000, 0xbf800000,
0xbf800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0x3c93fb50, 0x3dcccccd
};
static const uint16_t in_rbf_dims[6] = {
0x0003, 0x0000, 0x0001, 0x0064, 0x000A, 0x000A
};
static const uint32_t ref_rbf[100] = {
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0x00000000, 0x00000000, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0x00000000, 0x00000001, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000001, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000001, 0x00000001, 0x00000000,
0x00000001, 0x00000001, 0x00000001, 0x00000000,
0x00000001, 0x00000000, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000001, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000000, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000000, 0x00000001,
0x00000000, 0x00000001, 0x00000001, 0x00000001,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000001,
0x00000000, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000000, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000
};
static const uint32_t in_sigmoid_val[1000] = {
0xbbccb4ea, 0xbd744dd1, 0x3d935ad8, 0xbd90f070,
0xbdc5b6e9, 0xbcc4bc10, 0xbdd58a0c, 0xbd9d7e02,
0xbbea8a00, 0x3d96bc58, 0x3f73903b, 0x3d93012d,
0xbdf4352d, 0xbdfd21b4, 0x3d8ad2ab, 0xbbece38b,
0x3c8c168e, 0x3dd9afb3, 0x3db03745, 0xbd34bc39,
0x3dbfdfe2, 0xbcf936c0, 0xbd7aeb47, 0x3d9e158b,
0x3d86cd17, 0xbd587bc8, 0xbd96378c, 0x3e35c182,
0x3df682aa, 0x3e09a2ff, 0x3c80fc86, 0x3d082085,
0x3e6e14e1, 0x3dfb1be6, 0xbd294339, 0xbe0bc7c0,
0x3d56af12, 0xbd61a9c5, 0x3c7d727f, 0x3db03d2b,
0x3f83f3a4, 0x3d8f338d, 0x3e5da502, 0x3de64801,
0x3db9d6c1, 0x3dfd8744, 0xbda13f82, 0xbd0ddfa2,
0xbdda39dd, 0xbdcf17ee, 0x3f81d485, 0x3df942f6,
0xbcb2ded1, 0xbd6191b8, 0x3bb0a8e1, 0x3e128790,
0xbcf2afc2, 0x3d61b996, 0x3dfc558b, 0x3cd7f872,
0x3de3299d, 0xbe0d8d03, 0x3d2d059d, 0xbd716d1b,
0x3c20a1fd, 0x3d97e3c0, 0x3e583d68, 0xbc6b118c,
0x3e226149, 0x3d85f580, 0x3b2bb162, 0xbd39f165,
0x3d0f1d31, 0xbd1e28f9, 0x3a5aa4c6, 0xbdecd6fc,
0x3b313d87, 0xbcd5ad56, 0xbda4fa12, 0xbe255476,
0x3d43c1da, 0x3e0b192d, 0x3dd6c6dd, 0xbd90d760,
0xbe0ed7e9, 0x3db29487, 0xbcf21475, 0x3cad28cc,
0x3d766615, 0x3d4d638c, 0x3daf71c1, 0xbe115123,
0xbddae6ea, 0x3c1f52b8, 0xbe0f0548, 0x3d956780,
0xbd4926d8, 0xbd92541b, 0xbd23736d, 0x3d46c3a5,
0x3cf28f7e, 0x3d8e894b, 0x3d1b8bf6, 0x3bae9091,
0x3c8ac54b, 0xbd40f485, 0x3cd7534b, 0x3d9757e9,
0x3d0a0218, 0xbd6ec361, 0xbe03623e, 0xbd6673e5,
0x3d71d19d, 0x3d8a7bd1, 0x3e03c75f, 0x3e12d729,
0x3bc74e8d, 0x3c2d7ba0, 0xbe0b8573, 0x3df0a64a,
0xbc8b7296, 0xbe4660db, 0xbbd59a16, 0xbda5a82f,
0x3cf5c7ce, 0x3e42e23a, 0x3c8e04a4, 0x3e1aca07,
0x3d6afc54, 0xbe21c568, 0x3f8263a8, 0xbdbe26b2,
0x3e05324b, 0x38922cc6, 0x3e69d50f, 0x3de81714,
0x3d8cb4c1, 0xbdb41be6, 0xbcc23942, 0xbd9d9d48,
0x3ca1282b, 0xbd47a65b, 0x3e0e7f9b, 0xbe158bdc,
0x3d7d4695, 0x3cc60fec, 0xbdb9f65c, 0xbde649ee,
0x3d436857, 0x3e005808, 0x3f7e78c2, 0x3d577286,
0x3d479427, 0xbe018370, 0x3ca7d7bc, 0x3bffe48a,
0xbd3a7f6c, 0xbd9f2b7e, 0x3d2035c3, 0x3ba0db62,
0x3b8ad0c7, 0xbdf93d1f, 0xbc8e996a, 0xbd93ee0b,
0x3c6e698e, 0x3bb69976, 0xbd968665, 0xbdbb35fc,
0xbe0615a3, 0x3bd14252, 0x3b347944, 0xbd0c2e8f,
0x3c8b8d61, 0xbd060d4f, 0x3d0dc253, 0xbc185d5a,
0xbbf679ca, 0x3d10f404, 0xbdc06a99, 0xbcc4481f,
0x3f6ddab4, 0xbd35785e, 0x3c9fa6d5, 0xbd9b4e70,
0xbd574f38, 0xbd82fdd7, 0xbe303a47, 0x3d1663d0,
0x3d943a64, 0x3d325471, 0xbb9cdfcd, 0x3ce57f6c,
0xbdc91f0b, 0xbca279bf, 0xbc1a41cd, 0xbda83f75,
0x3c17d932, 0xbd010ec7, 0xbe0c8828, 0xba1162b8,
0x3f5bd7bd, 0x3dde78b0, 0x3dd89c18, 0x3e1701c7,
0x3d6782ba, 0x3e2eaf9d, 0x3d51e572, 0x3d20c042,
0x3c0ca3bc, 0xbdbb2711, 0x3f8a2594, 0xbc5e78bc,
0xbc7b4fe2, 0x3d7b981e, 0x3da8fcfd, 0xbda01ba2,
0xbd835289, 0xbde07816, 0x3cf8f675, 0xbdca57d0,
0x3f57244c, 0xbd15dbd2, 0x3c502b33, 0x3c123078,
0xbcc7cad8, 0x3c3b1a57, 0x3d3d3b5a, 0xbb13358f,
0x3e0408a7, 0x3d9f506e, 0x3f765635, 0xbe0aaa42,
0xbd5822a7, 0x3de15f49, 0xbdabafd4, 0x3d26fa00,
0x3c146018, 0x3d4c5093, 0x3d1b7235, 0x3e2541ae,
0xbdaca500, 0xbd281043, 0x3c9adb0e, 0xbe1e96dc,
0x3daab40b, 0xbc4d522e, 0x3c7af8bc, 0xbc92cef0,
0xbbfe8d91, 0xbc857819, 0xbcfc09e7, 0xbc938149,
0xbdf5b8fc, 0xbe13c8c8, 0x3e09cea0, 0xbca19b01,
0xbdafbe75, 0xbd842830, 0xbda5b717, 0x3e17d6e3,
0x3f8529f1, 0xbdf49246, 0xbcb87227, 0x3dd21002,
0xbe13d75c, 0xbc8e1e97, 0x3c15d2db, 0x3d2e3614,
0x3e0641cb, 0xbd72d7a4, 0x3f6daa2c, 0xbdcf0811,
0xbd4a3072, 0xbd6728d2, 0xba8be937, 0x3cd117e4,
0xbbc53d26, 0xbe37aa42, 0xbd7616e4, 0x3deec302,
0x3f8fbda1, 0xbb25fb2a, 0x3d3c17a3, 0xbc5fca76,
0xbc8ed4d9, 0xbd1903a9, 0xbd1931fc, 0xbd96f17e,
0xbc0dbcfa, 0x3d89a5a1, 0xbe184b88, 0x3d8d8778,
0xbc8cb01e, 0x3ccb115c, 0x3db306c3, 0xbd822a52,
0xbc9ed3d4, 0xbad93302, 0xbcfb8df2, 0xbccf010c,
0x3f7e1a89, 0xbd830825, 0xb9bf6c86, 0x3dfb3c26,
0xbbba2e84, 0xbd3462a3, 0xbe4678cf, 0x3d0f1cff,
0x3da89530, 0xbd3b7dd0, 0x3c765c5c, 0xbd5ad917,
0x3c9d5745, 0x3e056ff2, 0xbc8d87f1, 0x3d60a7db,
0x3d83b888, 0xbde2d4d0, 0xbc218110, 0xbd47a100,
0xbd0032e3, 0x3d7329e4, 0x3cb5dc8a, 0x3cf3d396,
0xbd039b41, 0xbd0a3a45, 0x3d3bcfa1, 0xbde3aa52,
0x3d26ed6b, 0xbe07228e, 0xbc5f2c06, 0x3d494db8,
0x3ce6135d, 0xbe5f2752, 0xbdd5b5ae, 0x3c217618,
0x3c90365a, 0xbdd91cc1, 0xbda38f00, 0x3e31a75b,
0xbbc58df5, 0x3d01ce8e, 0x3e37db1b, 0xbc4f4353,
0x3c179a20, 0x3c856ec1, 0x3d650d39, 0x3db61cf5,
0x3d91b466, 0xbd621d2d, 0x3f830835, 0x3dabe0a6,
0x3de4c33d, 0x3d295383, 0x3d235dce, 0xbd2c9101,
0x3c8f6118, 0xbe4a7f28, 0xbdc7ce5d, 0x3d053fc1,
0x3f685040, 0xbda91661, 0x3c96e961, 0xbd2749c7,
0x3c8c98d0, 0xbd52613d, 0xbcdba62f, 0xbd6ba194,
0x3d8a7740, 0xbd962ebc, 0xbcc0a6e3, 0x3c909204,
0x3dce8203, 0xbd884ba0, 0x3d861078, 0x3d25bf91,
0x3c80dfaa, 0xbd78021d, 0xbdb2008b, 0x3d3c549b,
0x3f6f4528, 0xbd8122b8, 0xbde56bb0, 0xbdb1b787,
0x3c8f6e48, 0x3c9acb85, 0x3d02448f, 0xbdf07a41,
0xbd06866f, 0xbd3e31d6, 0x3f8243df, 0x3c8d6a69,
0xbcfee947, 0x3cf12c1f, 0x3da51cea, 0xbe449a8e,
0x3d243a5e, 0x3cf3d46f, 0xbd88297e, 0x3d65ea53,
0x3fa30fdb, 0x3e3d8a55, 0xbe4a1939, 0xbcca41b1,
0xbddbbc28, 0x3d498879, 0xbcf5a5c0, 0xbc42ba20,
0xbd7c2034, 0xbd2eb411, 0xbd62ea87, 0x3e0756c0,
0x3d90d1a6, 0x3bcb06f1, 0xbd44041a, 0x3caa9fff,
0x3e8b027d, 0xbc3b92ba, 0x3d934043, 0xbd352cf7,
0x3f8a8355, 0x3dbdf498, 0x3d3cb157, 0x3d091bb1,
0x3c8e334c, 0x3c4c64dd, 0xbdbc6191, 0x3db81bd8,
0x3c28e162, 0x3b54c928, 0x3f70b048, 0xbd1d41d5,
0x3cdc9b82, 0xbb78c8d6, 0xbca11a26, 0x3d29380e,
0xbdf270e2, 0x3e2bc8f7, 0x3dc3d5f3, 0xbd9dc78c,
0xbd4ae4ce, 0xbe01d4fb, 0x3d8527f6, 0xbd398acd,
0xbde75470, 0x3d297955, 0x3d76a623, 0xbdc22e87,
0x3c984180, 0xbd67d69f, 0x3f58e26f, 0xbd5902e8,
0x3dbf5077, 0xbd1ee02c, 0x3d289495, 0x3c578637,
0xbd304272, 0x3d742568, 0xbcb5abf8, 0x3e5b583e,
0x3975b3cc, 0xbd6a1833, 0x3de63a60, 0x3d50d5ee,
0x3d39ca39, 0x3cce6679, 0xbd497ae0, 0xbc510939,
0xbdae959e, 0xbd0898e4, 0xbd3497b5, 0x3d445c89,
0xbc9ff8a8, 0x3d49a76d, 0x3c36ee32, 0xbe66a168,
0xbc22b32f, 0xbc601611, 0xbdd8a39e, 0xbd730c41,
0x3d60d2ef, 0xbd8f4167, 0xbc6ca638, 0x3e2cdb2a,
0xbe1f8ae5, 0x3d7adf3c, 0x3d933f50, 0xbcd8bd18,
0x3da23fdc, 0x3d25d808, 0x3e2664ab, 0xbd0dcd75,
0xbdd5351c, 0xbe5a481f, 0x3c842fdf, 0xbdf28aeb,
0xbdd9c38c, 0xbe00b8fd, 0xbcc619f9, 0x3d9155d8,
0x3f7fc138, 0x3ccfab9a, 0x3e6aafe5, 0x3dc9d491,
0xbdbe7719, 0x3c9ae78f, 0x3d197076, 0xbd8ea72a,
0xbd41a51a, 0xbc9fd376, 0x3dce4e45, 0x3d856d28,
0xbc2e5e58, 0x3d28503c, 0xbb7a3cbb, 0xbd4dfaeb,
0x3d02600f, 0x3d238dcb, 0xb994e7f1, 0xbc9a7fc8,
0x3f7e504b, 0x3da4b6a0, 0xbd959528, 0x3ba07c09,
0xbcc3d710, 0xbd616662, 0xbce785bc, 0x3a6d16de,
0xbe1da9bd, 0x3d136a90, 0x3f803607, 0xbd80041a,
0xbe08f15a, 0x3e59aa68, 0xbba7e697, 0xbdb09271,
0x3c3a5428, 0x3e8905da, 0xbd0726ca, 0x3e0c70d4,
0x3d872a44, 0xbdc613a4, 0xbd13c2e3, 0xbdde6009,
0xbd723a59, 0xbe0a4b2c, 0x3e117d13, 0xbd324243,
0x3d652573, 0x3da8a45c, 0xbd49629b, 0xbc1fecf8,
0xbdebd1a6, 0x3d8295b9, 0xbcc72fe0, 0xbd8539bc,
0x3e0859ca, 0xbe492aef, 0x3d2e8c49, 0x3e0bcc51,
0x3f7e494e, 0x3d6e6397, 0xbd49d40b, 0x3e2f7b64,
0x3c28a0c3, 0x3d82eb08, 0xbe0a48d7, 0x3e5baee2,
0xbda6777c, 0xbe432b82, 0x3f80f2ec, 0xbd003332,
0xbe2fd45d, 0xbca67afe, 0xbdafa3ca, 0x390157a5,
0xbe05ab21, 0x3c874526, 0x3da6cc03, 0xbdbabbcb,
0x3f79ee79, 0x3e11e088, 0x3de788e1, 0x3e20bbbf,
0x3d5ed3d3, 0x3d3e7612, 0x3d19d3e5, 0x3c1d51f7,
0x3d2791b9, 0x3d1b31b4, 0xb9fbbd81, 0x3d092f5e,
0xbe0c5066, 0x3e149d79, 0xbc761660, 0xbd9a322a,
0xbdfc53f7, 0xbd678b7d, 0xbc956055, 0xbd267f4b,
0x3ceeffbb, 0x3d2b2ae7, 0x3d51cdaa, 0xbc842af8,
0xbd9af005, 0x3d40fbba, 0x3c595b32, 0xbde39de0,
0xbcd8576b, 0x3e3750a8, 0x3f63c9b8, 0xbdbc15ab,
0xbada1dfb, 0x3d74d834, 0xbd9eb33f, 0xbdb1954a,
0xbe616783, 0xbc90226a, 0xbda95b4b, 0xbbe18d78,
0x3a086601, 0x3da0a4d4, 0x3ca206e1, 0x3d3f521f,
0x3d48f36d, 0x3c9993dd, 0xbd83b65a, 0xbe3ff70b,
0xbd45560c, 0xbd37bb21, 0x3f807547, 0x3c92417a,
0xbe5c3484, 0xbd946d7f, 0x3dd8d8dd, 0xbc00b9f8,
0xbe20fd49, 0xbdaf4e0b, 0x3ab0fa53, 0x3d581f92,
0xbce64ab2, 0xbbb986f0, 0x3d885428, 0x3da3a8a2,
0x3d8a9d18, 0x3ded99d9, 0x3df5d1f9, 0x3d7692c4,
0x3cffa090, 0xbc367a9c, 0x3f4c0505, 0x3d65f5ed,
0x3debd6e2, 0x3dc9806c, 0xbdbf4182, 0x3e3ce511,
0xbdaad2e4, 0xbc813466, 0x3d0ad9f1, 0xbc2dfedb,
0xbd199bbe, 0xbc67f215, 0x3d4b9c14, 0xbd2ddaa4,
0xbd15edea, 0x3ca0578e, 0x3d10cba1, 0x3d075e0c,
0xbd88b279, 0x3dda36b4, 0x3f79a548, 0xbc7ec0ac,
0x3ce2be66, 0x3bbd2f50, 0xbe14c38a, 0x3d9fec12,
0x3dbfb385, 0xbca49e82, 0x3d3ee14f, 0x3d02dfcb,
0x3f8406fe, 0x3d46e69a, 0x3d43d78e, 0x3c986f92,
0xbd0d4fa6, 0xbd211b03, 0x3e335604, 0x3cd1c729,
0x3d8bf80b, 0x3e397dbc, 0xbcd1b05b, 0x3e336fb6,
0xbd98797d, 0xbcd2521d, 0xbd058c74, 0x3e1ea6e5,
0xbde64f52, 0x3cdd739a, 0x3d2b08b7, 0xbe90aede,
0x3f681236, 0x3dc423fc, 0xbd6fbd50, 0x3dfc74aa,
0xb9403fc1, 0x3d0bc095, 0x3cf58fe7, 0x3d085a53,
0xbb95b3c7, 0xbe47e52b, 0x3f7bcfef, 0x3d8bb145,
0xbdfe5c53, 0x3c7ef166, 0x3ac27877, 0x3d3c403c,
0xbd6565ca, 0xbe0690cd, 0x3d40e158, 0xbb230c90,
0x3f6b84ef, 0xbd24343d, 0x3d66158a, 0xbe2dbf54,
0xbdfea269, 0xbd0c69f3, 0xbd892fdf, 0x3d64eb82,
0x3d2ab588, 0x3c962f72, 0x3cb8ef0d, 0xbd336290,
0xbdde5786, 0x3cadb662, 0x3cd994f0, 0x3d3ef9a4,
0x3cb87f5f, 0xbd461f65, 0xbcee7fc3, 0xbe36db7a,
0x3f8d4499, 0x3e00ff6e, 0x3dc00d50, 0xbe0682aa,
0xbc8270e1, 0xbcb67340, 0xbce5dc1e, 0xbe0f7b74,
0x3d9b8125, 0xbdba3457, 0x3f9a53d6, 0x3d236b8e,
0x3d135d1f, 0x3dedd2b8, 0x3d67003e, 0x3e0428cf,
0xbca79c8e, 0x3c8b6824, 0xbc54619d, 0x3d1c3f41,
0x3ce78153, 0xbe08a6b8, 0xbd070bd5, 0x3d5e0078,
0xbd4e72a6, 0x3c25d5fa, 0xbce3471c, 0x3e385310,
0xbd520f35, 0x3dd255b3, 0xbe73d916, 0x3c4645e6,
0x3da18510, 0xbda0a271, 0x3d862f3a, 0x3d270800,
0xbc43d454, 0x3e17b7e6, 0x3dd4a9f5, 0x3d025c01,
0x3d59ef3f, 0x3c1714c4, 0xbd9d6ee7, 0xbd2dcb81,
0x3dc9dec6, 0xbd31c26b, 0x3d710c7b, 0x3d1a6595,
0x3e17887f, 0xbbb53043, 0x3ce5493d, 0x3dbdf472,
0xbe09f867, 0x3c3bed0e, 0x3bf9a4fe, 0xbc9de2bb,
0x3e020590, 0x3e370ce5, 0xbe022a7f, 0x3d4904b3,
0xbd1e14bf, 0x3d2248e3, 0x3d6816ba, 0xbde728b9,
0x3d42d273, 0xbcc455a9, 0xbbc42380, 0xba777920,
0x3d93dc7b, 0x3d059c61, 0x3f5e8e6d, 0xbd896945,
0xbb7dfcbc, 0xbde73e52, 0xbe53be9a, 0xbd90c771,
0xbd29d748, 0xbd9e1903, 0x3bd35f16, 0xbbf71a54,
0x3f79661f, 0xbc947a19, 0x3d240344, 0xbbe91d0c,
0x3e057c8a, 0xbc97686c, 0xbbe7e47c, 0x3da2b9f1,
0x3e13bf61, 0xbda1c5ab, 0x3f89810b, 0x3c503dad,
0xbca9b300, 0x3d42b856, 0xbdce1d2d, 0x3c722943,
0xbcb69996, 0xbd09409f, 0x3d9fc5d2, 0xbd319036,
0x3f6659a0, 0x3bb352d5, 0xbdbecec2, 0x3d94008c,
0x3d3eeb92, 0xbe13ed3f, 0x3d7ee98f, 0x3d057736,
0xbdff46a8, 0xbd4622ca, 0x3f46e562, 0x3d403eea,
0x398a5fa4, 0x3decef09, 0xbdeacc04, 0x3cc0d107,
0xbd33ba1e, 0xbe574afa, 0x3e07001a, 0x3d10a6f7,
0xbc4b609e, 0x3ca834dd, 0x3d7547f1, 0x3bf84db7,
0xbd9dc27a, 0x3c99f9b5, 0x3dabe762, 0x3d0b8c98,
0xbdd35214, 0x3c9d8b77, 0x3f8613d1, 0xbc093d69,
0xb9fbb474, 0x3dd832b3, 0x3cfe47ad, 0xbcf648a4,
0xbb8b96b7, 0xbd9684ba, 0xbe368361, 0x3dee605d,
0x3d1c59bd, 0x3db193ec, 0x3cf190ae, 0x3d4871e4,
0xbd3c62a5, 0xbc9c7d04, 0x3cf9c2bb, 0x3d08f20f,
0x3e280dfe, 0x3d025780, 0x3de86fa1, 0x3d7c285e,
0xbdc729a2, 0x3d2fea47, 0x3d942311, 0x3bbd06f3,
0x3d8565df, 0xbd981a39, 0xbd86b7ab, 0xbda1d9fd,
0x3f8b4861, 0x3dcb00fc, 0xbd817582, 0xbcf05045,
0xbd18f179, 0xbce5904a, 0xbd969a51, 0x3e2891bb,
0x3d91f27a, 0x3d991f8f, 0x3f50ba06, 0xbddf7ef4,
0xbd47c94c, 0xbd2059d2, 0x3b9778e4, 0xbcfe377b,
0xbd844994, 0x3c5ef7fd, 0xbe11af58, 0x3e3968cd,
0x3f91bae4, 0xbc8f3cb9, 0xbd98e455, 0x3bf1e5c9,
0x3d4d3f31, 0xbdbebb94, 0x3e0a9526, 0x3d0b01b5,
0xbbff35fc, 0x3c8a2d99, 0xbd445efc, 0x3d808c9a,
0x3c9f544c, 0xbdec18e5, 0x3cf2eada, 0x3d2628a4,
0x3ce0d9bd, 0x3d8d3d83, 0x3d915ab7, 0xbe0fc15e,
0x3de5a6ce, 0x3cf8081e, 0xbcfa8673, 0xbc632b83,
0xbd895fa4, 0xbd8881fa, 0xbd43f8d9, 0xbe00ddf4,
0xbd957ea2, 0x3e39c9da, 0x3f88171d, 0x3c994734,
0xbc89700c, 0xbd1d021e, 0x3dd981c9, 0x3d37d31f,
0x3b9e806b, 0xbd609923, 0xbd9b8326, 0xbc44d73b,
0xbd29888d, 0x3ca1ede8, 0x3ccd6950, 0x3d7d88a9,
0x3ccc8e48, 0xbce13dc2, 0xbbc6928b, 0xbd4e5d56,
0x3e16df0b, 0x3bbb32b5, 0x3f5df4cb, 0xbcb2a370,
0x3d31a258, 0x3e228e69, 0x3cc38dbd, 0x3d8beac6,
0xbe281bd1, 0xbaf2dcfb, 0xbd3466ee, 0xbd579dc0,
0xbda1b5f5, 0xbd846a25, 0x3d1d2de1, 0xbda4756e,
0x3db55054, 0xbd460e6a, 0xbd951887, 0x3d937bde,
0xbd94413f, 0xbe019438, 0xbd361340, 0x3b8dcfc7,
0x3c8cdd33, 0xbd9ff528, 0xbc853e50, 0xbd8c1dfc,
0xbc1fc04b, 0xbe06bb4b, 0xbdcbd5c0, 0x3d2f301d
};
static const uint32_t in_sigmoid_param[113] = {
0x3d8fea8d, 0xbd7293d8, 0x3ccc7821, 0xbccd1526,
0xbd4f75bd, 0xbd8e8ae4, 0xbca805ee, 0xbd8a7fa3,
0x3cf804fe, 0x3dda4986, 0xbd549f60, 0xbdf9899e,
0xbcc58231, 0xbd349f4e, 0xbda92053, 0x3d15e0ef,
0xbd6623f9, 0xbd039854, 0x3e04ad67, 0xbd80bbcd,
0xbdb9a753, 0x3c13b9c1, 0xbd224968, 0x3d887823,
0xbd92eb55, 0x3d946446, 0xbc7578bc, 0xbd388dd5,
0xbc53df51, 0x3cd2a6bc, 0xbd3ce336, 0x3d808393,
0xbd8ffe48, 0xbd0a7467, 0x3c8bec27, 0x3be481fa,
0xbd8bdb7e, 0xbcb301ff, 0x3d0c4e17, 0x3d2de2f4,
0xbc0b1bae, 0xbdcd1ec5, 0x3b919149, 0xbd9098b4,
0xbb8b9964, 0x3d039ad1, 0xbca68bae, 0x390d40ec,
0xbd039db0, 0x3d234f8f, 0x3f85d3c3, 0x3b35d345,
0x3dbbb795, 0xbd059c12, 0xbd2a7d57, 0x3c5a946e,
0xbc8f9212, 0x3d2a1eb8, 0xbc48ff2f, 0x3c600513,
0x3f8485be, 0x3ae8fd26, 0xbc3ea0ba, 0xbb934c00,
0xbc8cb8b7, 0x3df1233e, 0x3de12082, 0xbd3fcd40,
0xbcb01407, 0xbce3c7bb, 0x3f817dc7, 0xbc13fde7,
0x3d07e43b, 0xbd3968e9, 0xbc9b3319, 0xbd347e72,
0x3ce52697, 0xbcf9252c, 0xbbae10ce, 0x3d86177a,
0x3f810bed, 0xbce75ce8, 0xbd5ca8c8, 0xbd8985cb,
0x3cf8c183, 0x3cf19f47, 0xbde1a7ff, 0x3da009e9,
0x3b4c91ee, 0x3d9c8a98, 0x3f8230bb, 0x3ccef42c,
0xbcf2cce9, 0x3cb9bbea, 0xbd168449, 0xbda93852,
0xbd14d9ff, 0x3d6b6429, 0xbdc89f5e, 0xbda356bc,
0xbf800000, 0xbf800000, 0xbf800000, 0xbf800000,
0xbf800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0xbe7ed4f7, 0x0,
0x3dcccccd
};
static const uint16_t in_sigmoid_dims[6] = {
0x0004, 0x0000, 0x0001, 0x0064, 0x000A, 0x000A
};
static const uint32_t ref_sigmoid[100] = {
0x00000000, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000001, 0x00000000,
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0x00000000, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000001,
0x00000000, 0x00000001, 0x00000000, 0x00000000,
0x00000000, 0x00000000, 0x00000001, 0x00000000,
0x00000001, 0x00000001, 0x00000000, 0x00000000,
0x00000001, 0x00000001, 0x00000001, 0x00000000,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000001, 0x00000000, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000000, 0x00000001, 0x00000001,
0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0x00000001, 0x00000001, 0x00000001,
0x00000001, 0x00000001, 0x00000000, 0x00000001,
0x00000000, 0x00000000, 0x00000001, 0x00000001,
0x00000001, 0x00000000, 0x00000000, 0x00000001,
0x00000000, 0x00000001, 0x00000000, 0x00000000
};
static const uint32_t in_oneclass_val[1000] = {
0x3f797e2e, 0x3d3a65c7, 0xbce3b99b, 0xbd62321a,
0x3e3c20ee, 0xbe0be88e, 0x3e0dcf92, 0xbe0c78bc,
0xbdb865b7, 0xbce0e1f6, 0x3f758656, 0x3b7d1079,
0xbdbd5f1e, 0xbd85fc8f, 0xbcd72aa0, 0xbd1a4148,
0x3cbfee67, 0xbc793e4b, 0x3cbdfea5, 0xbdaddc9e,
0xbd0d9035, 0x3cd4f93d, 0x3bce9555, 0xbcc4bce5,
0x3dc7ce85, 0x3d81199f, 0x3da176d6, 0x3db05413,
0x3db10090, 0x3d7cf1e6, 0xbe0062ce, 0x3e24052b,
0xbe6ebb8a, 0x3ce0ede6, 0x3e10d755, 0x3d89ca46,
0x3d518c0f, 0xbc7a0902, 0x3ccf2b63, 0xbdc10e72,
0x3f89ffa7, 0xbc909e85, 0xbd34f739, 0x3cf5cb59,
0xbe206052, 0xbdfe3da7, 0x3e2d28af, 0x3d6fbf2f,
0xbd8fd9f1, 0x3d1f5883, 0x3f7f82f3, 0xbc9657e3,
0xbd3c78ea, 0xbd66b5cf, 0x3dd33d52, 0x3de5a62f,
0xbd7918e1, 0x3db74a4a, 0xbcf94b59, 0xbcf10488,
0x3aa1ab70, 0xb8ff8e3e, 0x3b6d4dee, 0x3d8d720f,
0xbc0aa35d, 0x3daede5c, 0x3dd9a88e, 0x3d99e9be,
0x3d64ef05, 0x3c7c92b8, 0x3f859313, 0xbcdc0d8d,
0xbda55f7a, 0x3d981c59, 0x3cd411e6, 0xbd1eb2b1,
0xbd4d64d6, 0x3d4838b8, 0xbcd99bd1, 0xbdf0b9f0,
0x3f8242e3, 0x3d747031, 0xbceaabb4, 0x3d7898c0,
0x3d29f215, 0xbe2844dc, 0x3ca88f5c, 0x3d9b684f,
0xbdb9e50c, 0xbe73779a, 0xbdaec598, 0x3e084095,
0x3e1f741e, 0x3df2d52d, 0x3ddb3e43, 0x3d24c36e,
0xbd4ed23e, 0xbe2bde5d, 0x3d58e382, 0x3dc14916,
0xbe22a8bd, 0xbd91b22e, 0x3bf80441, 0x3e2c5021,
0xbdad6641, 0x3d39eb54, 0x3d1249ce, 0x3cfa61af,
0x3dd49bff, 0xbdc8b37b, 0x3f5150b3, 0x3ca2a77a,
0x3e37a812, 0xbd954875, 0xbe81db85, 0xbe1faca4,
0x3cc15023, 0x3d81f716, 0x3e39cbc3, 0x3c80263c,
0x3f739956, 0x3cecc873, 0x3e11cc5d, 0x3d0d4c2d,
0xbd9580e6, 0xbc7ed53a, 0xbd10c5a7, 0x3d237ce8,
0xbd8f44a8, 0x3d26b287, 0xbd4bd922, 0x3d945ae1,
0x3cf54cc7, 0x3caee052, 0xbd080f9a, 0xbd9edc8d,
0x39830d0b, 0x3d712a44, 0x3db694d8, 0x3d95090f,
0x3f6b04cc, 0x3e3b732d, 0x3d7e0370, 0xbe2d0aec,
0xbd6010dd, 0x3ddf5700, 0xbdaf5afa, 0x3d6bcd10,
0x3d6ebf4e, 0xbd44c563, 0x3f5de50d, 0x3a5076fc,
0xbd1bdb58, 0xbdc1d136, 0x3dc527e9, 0x3e008156,
0x3a37a17b, 0x3e6a06fd, 0xbd16bf7b, 0xbe20a1e0,
0x3f807962, 0xbd550ca3, 0xbd384167, 0x3dafb27e,
0x3e358cb0, 0x3d7a2511, 0x3da7b355, 0x3e0ee941,
0xbd83f2bd, 0x3be0e2db, 0x3f75df48, 0xbadd80ab,
0x3cee1472, 0x3d427fb0, 0xbdc4baa0, 0x3dad25b4,
0x3d0e4ad6, 0x3dd23639, 0xbd7f5c43, 0x3db0b83e,
0x3d8459ad, 0xbcfdfd6f, 0x3e0e0029, 0x3d1c436a,
0x3d87bd48, 0xbe08197d, 0x3def6b4f, 0x3d3702b9,
0xbd163d51, 0xbd482748, 0x3f672318, 0x3dab1266,
0xbd68767a, 0xbdcb5d20, 0x3db7abc7, 0xbd3d8cc8,
0xbe074390, 0x3d5c19db, 0xbda374f0, 0xbd90aee6,
0x3f70b4a4, 0x3db72f44, 0x3c9e22f3, 0xbe172dda,
0xbc4a14fa, 0x3d5a8fee, 0xbd3683a7, 0xbdc2f11c,
0xbd6a7cb4, 0xbd74a9c6, 0x3f68c704, 0xbe3d9b0b,
0x3bb5b8e7, 0xbd975c4a, 0x3c078da9, 0x3cbb06d2,
0xbdb760d1, 0xbc92dc57, 0x3d7738fa, 0xbc754697,
0x3f89d39b, 0xbde50957, 0xbd8d0ddb, 0x3caaa448,
0xbd27f89f, 0x3d9a50c9, 0x3c7038b2, 0x3d4c54d0,
0xbd2f0158, 0x3c1a1e43, 0x3f8a530f, 0xbcf77aaf,
0xbb807cf4, 0x3d2bb0b7, 0x3d9409df, 0x3c3bb217,
0xbe19aa48, 0x3c47e9a3, 0x3dea83af, 0xbd49ee30,
0x3da0e1f6, 0xbcb41be8, 0xbd17c2fc, 0xbd063a4c,
0x3d8ee446, 0x3c34bcfb, 0xbc876156, 0xbdf374f6,
0x3d8c8dab, 0x3e06adb4, 0x3f6f66b0, 0x3aa3ee5f,
0xbd760381, 0x3d216634, 0xbcc3ad3f, 0xbc12e81a,
0x3d2c3a71, 0x3d94b9e1, 0x3d44f331, 0x3d5cc101,
0x3f9046cf, 0x3cfbf95f, 0xbd29ec82, 0xbe2dad8b,
0xbcc0fd61, 0x3d890a1d, 0x3c72e34a, 0xbc9abb43,
0x3e47c629, 0x3da0f4cd, 0x3f87cefc, 0x3dda0bb6,
0x3dadc25d, 0xbc9e652c, 0x3ddf3213, 0x3d5d7b7b,
0xba91ec83, 0xbd5d7801, 0x3dcc9f56, 0x3e401c7a,
0x3da70e2c, 0xbd1e5b4c, 0xbcbedcb1, 0xbdcb54dd,
0xbd55e7e0, 0xbe28e873, 0xbd01128c, 0x3e5b2f59,
0x3cfb92c9, 0x3c3c4551, 0x3b3b17dd, 0xbe3ae9b6,
0x3ddb8b3e, 0xbe02f0a3, 0xbd806cfa, 0x3c88e708,
0x3c2ca411, 0xbce94918, 0x3d8ec6ac, 0xbe0eaccc,
0xbd9f83e7, 0x3dfe25dc, 0x3d113fac, 0x3cdccb29,
0xbcb523ea, 0x3d603236, 0xbd4dbf93, 0xbd8c6ec3,
0xbe2e6f69, 0x3d9de44d, 0x3f7fa88f, 0x3c35df61,
0xbde855cb, 0xbd73d71a, 0x3d4a4f69, 0x3d01de63,
0xbbd106c9, 0xbd0c922a, 0x3d733b85, 0xbe150788,
0x3d67d1c1, 0xbe0f0aca, 0x3df8e0b2, 0xbd9974dd,
0x3dee1fad, 0xbda9d7f5, 0x3dc90ec8, 0xbd8a18ab,
0x3e27aa54, 0x3d36bae3, 0xbe1de50b, 0x3da84be6,
0xbe22b11d, 0xbe1e3577, 0x3de0b73c, 0xbd869da3,
0xbcfebcbc, 0x3da709da, 0x3c6cb15a, 0xbe300201,
0x3f7b2c09, 0x3cdd2c21, 0x3dd68e71, 0xbce7ca46,
0x3d78e0a4, 0x3d367e78, 0x3da14a51, 0xb98d865e,
0xbd2f0c03, 0xbd76ae16, 0x3f87d9c7, 0xbda16274,
0x3c621566, 0xbd77ca6a, 0x3d0c5881, 0x3b4a40dd,
0x3d017e2b, 0xbc4c8470, 0xbda1c757, 0x3de14d9a,
0xbcd9b715, 0xbda71791, 0x3d6413a3, 0xbd82c62f,
0x3dd4ed2d, 0xbd4fb04c, 0x3e0a91fb, 0x3d23fdbd,
0x3e008f87, 0x3d377137, 0x3f79a715, 0x3db0ab8a,
0xbdaff4a9, 0x3afafa5a, 0x3e1a3496, 0x3db5fdad,
0xbcff092e, 0xbd821185, 0xbda6af87, 0x3c25f231,
0x3f91e9de, 0x3dbce071, 0x3de4ee10, 0xbdd7297e,
0x3ddbca17, 0xbd808e9c, 0x3d1a1652, 0x3e638914,
0x3d44ccb0, 0x3d1a5e86, 0x3e0a5626, 0xbd1e09f6,
0xbc25fb4a, 0x3bfdd93e, 0xbc5479e7, 0xbce0ca70,
0x3dd6f299, 0x3dd61ae9, 0x3d49f178, 0x3c649169,
0x3f8345ec, 0x3d6ac323, 0x3e215060, 0xbdda263c,
0xbbad1aac, 0xbd583b5b, 0x3d46a6f5, 0xbd3469db,
0x3da5f91e, 0x3e8330cb, 0x3db69eca, 0xbd9abe07,
0xbda1e37a, 0xbda8ac4a, 0xbe1d17c7, 0x3d469526,
0xbda62d09, 0xbe379a65, 0xbd0b3798, 0x3dba22ed,
0xbd2ef1b0, 0x3cd11446, 0xbd66fdec, 0xbd961fdc,
0x3cc560f8, 0x3e602197, 0xbd19f06a, 0x3baea097,
0x3c50887c, 0x3d4245d5, 0xbd1570d9, 0xbc82f8ae,
0x3df34c72, 0xbe00a526, 0x3c9da84a, 0x3d7b92fd,
0x3c9b808b, 0xbd5a2b12, 0x3d8db701, 0xbd824323,
0xbbafc2ec, 0xbc04d4f0, 0xbb463eb8, 0x3d3f9642,
0xbcaac60e, 0xbdcacbd2, 0x3e2400ea, 0xbcd9d2a5,
0xbc8ecf3e, 0xbbaa7278, 0x3caa37a9, 0xbc0d331e,
0xbdd39837, 0x3ceaa074, 0x3b8fd99d, 0xbe109c54,
0xbdf80a68, 0xbd77653f, 0x3c9d6184, 0xbd530f5c,
0x3f5f9e0d, 0x3a5f34f0, 0xbd8e627b, 0xbdcdca81,
0xbe5c70f6, 0xbda578dd, 0xbdcecd6b, 0x3c98a8e1,
0xbd9f58f8, 0xbce92bca, 0x3b187dc8, 0xbd81c8e0,
0x3dc468db, 0x3e41e6e3, 0xbc018a89, 0xbd481a90,
0xbd8cc875, 0xbcc94ba4, 0xbc1f0153, 0x3e151457,
0x3f5920da, 0xbdce3b36, 0x3dfb924f, 0x3dffd54b,
0x3d474d72, 0x3ce17eb4, 0x3d4750fb, 0x3ccd631e,
0x3d92b0e3, 0x3cb312d8, 0x3f6ce8ba, 0xbde49175,
0xbd3251d1, 0x3af5ee66, 0xbe172823, 0x3dba7abf,
0xbd7ec1b5, 0x3d3bf697, 0x3d53e916, 0x3d45d6b3,
0x3f834081, 0xbd8adc14, 0xbd98a2ff, 0x3c49597c,
0xbdc5d85f, 0xbddef6cb, 0x3d28b8dc, 0x3d0cf6fd,
0xbd9b5e22, 0xbb91bf2b, 0x3f841db2, 0x3d58332a,
0x3d9f097d, 0x3e0b43e8, 0x3ddb8c58, 0xbd395027,
0xbdabad24, 0xbe262cea, 0x3da7202e, 0xbd8b3da9,
0x3f813f19, 0x3da69189, 0x3e167686, 0x3cf6f729,
0xbb8bde25, 0x3dcb7c85, 0x3e0912b4, 0x3dfa4fca,
0x3c841ced, 0xbe02f5f7, 0x3db4c516, 0xbe05243b,
0x3c8b1c3d, 0x3d090adc, 0xbe062c72, 0xbddd69a0,
0xbe2d59ef, 0xbdbecbe7, 0xbde18da4, 0xbdec6aa5,
0x3f84d04e, 0x3dd399c4, 0xbdc78635, 0xbc99d94a,
0x3d366451, 0x3bb2afe8, 0xbe80bd18, 0x3d4618cd,
0xbd0c2fd2, 0x3e15749c, 0x3f798e3e, 0xbe3f8f9c,
0x3d7e6670, 0x3c94343a, 0xbd3c034f, 0x3c1ee024,
0x3d6cd563, 0x3d832c1f, 0xbd93a3b3, 0x3c945258,
0xbd9b6210, 0xbdbfad26, 0x3bd762e4, 0x3e05b467,
0xbd8c85c7, 0x3d9f8e88, 0x3dd8bc4b, 0xbc8d3141,
0x3e227b78, 0xbc690998, 0x3f7dca7d, 0xbd98a6f6,
0x3e1a5a62, 0x3e06de7e, 0xbb200120, 0x3e0598cb,
0xbc40e756, 0x3dbbe67d, 0x3d676b30, 0xbcf5e473,
0xbd3c73dd, 0x3c307497, 0x3d779261, 0xbd382c66,
0x3cec2000, 0x3e11ca99, 0x3d71faf1, 0x3db119bd,
0xbe26ee05, 0xbe0d76ce, 0x3f5b31fb, 0x3ddb2905,
0xbdb58fa3, 0xbd0959d2, 0x3c9f1a6c, 0x3c55b328,
0xbd82e42d, 0xbd416102, 0x3da546f8, 0xbe2bdf6c,
0x3e1522ef, 0xbd9bd372, 0x3e1a72a1, 0x3c457db5,
0x3d1c37af, 0x3d76cbe6, 0xbd41589c, 0x3c59aca3,
0xbd040a73, 0x3de8292a, 0x3f803c51, 0x3d1308f9,
0xbd3278e5, 0xbe2bf68b, 0xbd77a07d, 0x3d70e786,
0x3d00cd29, 0xbe265408, 0x3e0b17cf, 0x3c5c689c,
0x3e2a3863, 0x3d3e8adc, 0xbde59e04, 0xbcb59f1d,
0xbdf1c8b8, 0x3cbd58db, 0xb9cb5f97, 0x3c81d34b,
0xbca69beb, 0x3dcd680e, 0xbcfc2abe, 0xbbc944d4,
0x3debf63e, 0x3d532182, 0x3d5bffab, 0x3d8ca759,
0x3cbd4557, 0xbc96e8d5, 0xbd97df6c, 0xbd748b44,
0x3e0a259a, 0x3db1f55e, 0xbde4da28, 0x3c4eb0ef,
0x3d7467fa, 0xbd9b1239, 0x3de95442, 0x3db8fe16,
0xbb151f8d, 0xbcd29241, 0x3f5e1038, 0xbdbfac0c,
0x3cad1b4f, 0x3d0034c1, 0xbb84adb9, 0xbc12adf7,
0x3da5026d, 0x3e2d6505, 0x3c61573d, 0xbdeb7b12,
0x3f84ee0b, 0x3dcd722c, 0xbcae858f, 0x3d34503a,
0x3dade3ba, 0xbdb345f5, 0x3c3013d5, 0xbd25414b,
0x3cbb08d5, 0x3d4c625d, 0x3f5e9c17, 0x3ca2c031,
0xbd74434b, 0x3cb48069, 0xbc85c76e, 0xbdbbd7db,
0x3e280c81, 0xbc82a991, 0xbccd5425, 0x3ce4cb84,
0x3f8a5a5d, 0x3de0ae64, 0x3d1e7c6a, 0xbd421934,
0xbd9cd848, 0x3d27a3fd, 0x3d6fb92a, 0x3dec37dc,
0xbd319c86, 0xbbf0856e, 0xbc967971, 0xbd8897c3,
0x3d22ab7c, 0x3c51f8b1, 0xbbaa1916, 0x3e2e8025,
0x3c69a4d1, 0x3d83f3cd, 0x3c1a3785, 0x3ddd8e31,
0x3f7f1e31, 0xbd44c3de, 0xbd50a413, 0x3d842972,
0xbdf4a55d, 0x3e0c9c0c, 0x3e058709, 0x3c375891,
0xbde18b2a, 0xbdb26c0b, 0x3bff2a6a, 0x3e13eb76,
0x3c6085a2, 0xbd81d7a9, 0x3e69634e, 0x3d761521,
0x3d2e827f, 0xbd59cba6, 0x3bb345be, 0x3e2ff81d,
0x3f64105c, 0x3dd3b2ac, 0x3dacc2e2, 0xbcef856d,
0x3de8b4fa, 0xbd491a7d, 0x3c63fa37, 0xbd052786,
0x3dc44b35, 0x3c4d36c1, 0x3f6d670a, 0x3d9cce07,
0xbdb6fdc8, 0xbdf3a0d2, 0xbd91634d, 0x3b849a80,
0x3dd825d0, 0x3caa0fc4, 0x3c4ef466, 0x3d16f3fb,
0x3f80f9cd, 0x3d3dd87b, 0xbdd5de44, 0x3d90bfb1,
0xbda1ec08, 0xbd5ebbd3, 0xbddb3abe, 0xbd9295c0,
0xbbdaf619, 0xbbf4e99d, 0x3f81171f, 0x3d8d5272,
0xbe0823ba, 0xbd08365f, 0xbddda3fd, 0x3cde5726,
0xbe01f3ab, 0x3d586269, 0x3d4b4837, 0xbdfc32d6,
0x3f69c28b, 0xbe162994, 0xbca69737, 0x3d8aa2eb,
0x3d25a90a, 0xbd69e95e, 0xbd95f67c, 0xbc7ebcbe,
0x3c3a8362, 0xbddfb4d1, 0x3c3e98db, 0x3d66c56b,
0xbdef0718, 0x3e080c22, 0x3d021ea4, 0xbca3a26b,
0xbd84f528, 0xbde0c679, 0x3dc62e43, 0x3d1851a4,
0x3cb60acb, 0xbde1c5eb, 0x3cc4960f, 0xbd5ae713,
0x3d42ddc0, 0xbd33b58c, 0xbd8bfb8b, 0xbe233b4e,
0x3d4860ec, 0x3d2a464c, 0x3f6020dc, 0x3db68fb8,
0x388edd9c, 0x3bf095a1, 0x3d46f676, 0x3d3d660a,
0x3c1e3991, 0x3e13a13d, 0x3cb878c3, 0xbe01c976,
0x3f726c09, 0x3d1398cf, 0x3e30eabe, 0xbc2ea460,
0xbe024bcb, 0x3cdff95f, 0x3da21305, 0xbda6809f,
0xbd10d1cf, 0xbd6d880e, 0x3f7f44ca, 0xbe0fbf06,
0xbdbbe64a, 0xbcc5eb75, 0x3d9c6655, 0xbdbcc38b,
0x3e0bea62, 0x3d6efa76, 0x3d1314c9, 0xbd754c3d,
0x3f72cc10, 0x3da0ac5f, 0x3d1f20da, 0xbdc9997d,
0x3d78e4dd, 0xbd225f92, 0xbd1c82ac, 0x3a80b0b8,
0x3d6c8fc2, 0x3e0129a3, 0x3f87dbe4, 0x3c76da30,
0xbd9271a9, 0x3d140654, 0x3d2d7575, 0x3dcc321c,
0x3ac0677d, 0xbc6cfd13, 0xbd06ff87, 0x3d6f37e4,
0x3d16ba8c, 0xbcf64af6, 0x3de5ee2e, 0x3cf7572d,
0x3d765b50, 0x3d0a3a1f, 0x3bebdb2e, 0xbd201345,
0xbda9a191, 0x3d95f1ed, 0x3f8da9f7, 0x3d888cdd,
0x3d5dc9b1, 0xbcc6c13f, 0xbdfac500, 0x3de02807,
0xb9f0b882, 0xbd9fa2ec, 0xbd398426, 0x3d4b0f5a,
0x3f90f7e2, 0xbcae36c4, 0xbdfb3128, 0xbdcd4293,
0xbd342285, 0xbdb2c433, 0x3d150591, 0xbd48b8dd,
0x3d9faa26, 0x3d6f9d89, 0x3f8767a7, 0xbc855f43,
0xbd9a45c0, 0x3d88dc52, 0x3cf9b1d6, 0x3e3159c9,
0xbcb5ee21, 0xbe1e8542, 0x3d4e24db, 0x3d1dfe82,
0x3f7ae8aa, 0x3da3178b, 0xbe429769, 0xbe0cde2c,
0x3d8b4fbd, 0xbe076a48, 0xbdbd70ad, 0xbd7f5743,
0xbd718ee1, 0x3d9adb32, 0x3f79cb11, 0x3d12f76d,
0x3e088869, 0x3da53262, 0x3e314439, 0x3d647a69,
0x3d90bd5f, 0xbd26c50e, 0x3d10a53c, 0xbdc2cffc,
0xbe10d629, 0xbe1e14b6, 0xbe245e69, 0x3d4266e7,
0x3ca78eac, 0xbe2375b8, 0x3cbecdd6, 0x3de8e685,
0xbcf26832, 0xbd6d99b6, 0x3f632daf, 0x3ce98fce,
0x3d88f06f, 0x3c6e2286, 0xbd95008b, 0xbdf72365,
0x3de7e2f8, 0xbe5e16a2, 0x39fad2ee, 0x3d8d7c70,
0xbda63756, 0xbbfe89fb, 0x3cf08902, 0x3cfca726,
0x3e346928, 0x3d3d6d6a, 0xbdf26c71, 0x3c747a3a,
0x3dd6dcb6, 0x3d321771, 0xbdde9059, 0xbd939adb,
0xbca453cb, 0xbbd9b77f, 0xbc7a2a1e, 0xbd005301,
0xbd995fd7, 0xbb8a2f92, 0x3c87791e, 0x3e008258,
0xbcf0b868, 0x3d69a0e3, 0x3dec8142, 0xbb1066eb,
0xbde42d37, 0xbd0777ec, 0xbcabadfd, 0xbc718083,
0x3d63d985, 0x3d7fed55, 0xbdcffaec, 0xbdbd4f3c,
0x3db29eb8, 0x3e2f01e7, 0x3de4d795, 0xbd810dde,
0x3b50e313, 0xbd0fb9f9, 0xbc8d7ca1, 0xbd01989d,
0x3d90e13c, 0xbba348b7, 0xbd418005, 0xbcfdaabd,
0x3dd94a98, 0xbca9e9eb, 0xbcfa33a5, 0x3d29a83b,
0xbd244e49, 0xbd86e37d, 0x3f8aaee8, 0xbd24ac6e,
0xbd5803d8, 0xbdfe68dc, 0xbcf2ecff, 0x3e05fa3b,
0x3af0e8cc, 0xbe3e1307, 0x3d2d57fc, 0x3d224482,
0x3f620545, 0x3c836232, 0x3dbeb317, 0x3c98a3dc,
0x3cdfec61, 0x3e078552, 0x3d821834, 0x3cbdd076,
0x3d2aac84, 0x3c4cf64b, 0xbd9c19d0, 0xbd9da2a3,
0xbd091a6d, 0x3da8fa9f, 0xbd9fa10e, 0x3d971871,
0x3d1ae8f9, 0xbd291c6a, 0xbc49d3fe, 0xbd74395d
};
static const uint32_t in_oneclass_param[68] = {
0x3d8fea8d, 0xbd7293d8, 0x3ccc7821, 0xbccd1526,
0xbd4f75bd, 0xbd8e8ae4, 0xbca805ee, 0xbd8a7fa3,
0x3cf804fe, 0x3dda4986, 0xbd549f60, 0xbdf9899e,
0xbcc58231, 0xbd349f4e, 0xbda92053, 0x3d15e0ef,
0xbd6623f9, 0xbd039854, 0x3e04ad67, 0xbd80bbcd,
0xbdb9a753, 0x3c13b9c1, 0xbd224968, 0x3d887823,
0xbd92eb55, 0x3d946446, 0xbc7578bc, 0xbd388dd5,
0xbc53df51, 0x3cd2a6bc, 0xbd3ce336, 0x3d808393,
0xbd8ffe48, 0xbd0a7467, 0x3c8bec27, 0x3be481fa,
0xbd8bdb7e, 0xbcb301ff, 0x3d0c4e17, 0x3d2de2f4,
0xbc0b1bae, 0xbdcd1ec5, 0x3b919149, 0xbd9098b4,
0xbb8b9964, 0x3d039ad1, 0xbca68bae, 0x390d40ec,
0xbd039db0, 0x3d234f8f, 0x3f8230bb, 0x3ccef42c,
0xbcf2cce9, 0x3cb9bbea, 0xbd168449, 0xbda93852,
0xbd14d9ff, 0x3d6b6429, 0xbdc89f5e, 0xbda356bc,
0x3f800000, 0x3f4d695f, 0x3f800000, 0x3f800000,
0x3f800000, 0x3e4a5a84, 0xbd76d2d6, 0x3feff294
};
static const uint16_t in_oneclass_dims[6] = {
0x0003, 0xFFFF, 0x0001, 0x0064, 0x000A, 0x0006
};
static const uint32_t ref_oneclass[100] = {
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0xFFFFFFFF,
0x00000001, 0x00000001, 0xFFFFFFFF, 0x00000001,
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000001,
0x00000001, 0xFFFFFFFF, 0x00000001, 0xFFFFFFFF,
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0xFFFFFFFF,
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0xFFFFFFFF, 0x00000001, 0x00000001, 0x00000001,
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000001,
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000001,
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0xFFFFFFFF,
0x00000001, 0x00000001, 0xFFFFFFFF, 0xFFFFFFFF,
0xFFFFFFFF, 0xFFFFFFFF, 0x00000001, 0xFFFFFFFF,
0xFFFFFFFF, 0x00000001, 0x00000001, 0x00000001,
0xFFFFFFFF, 0xFFFFFFFF, 0x00000001, 0x00000001,
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0x00000001,
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0xFFFFFFFF,
0xFFFFFFFF, 0xFFFFFFFF, 0x00000001, 0xFFFFFFFF,
0xFFFFFFFF, 0xFFFFFFFF, 0x00000001, 0xFFFFFFFF,
0xFFFFFFFF, 0x00000001, 0x00000001, 0x00000001,
0x00000001, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
0x00000001, 0x00000001, 0x00000001, 0x00000001,
0xFFFFFFFF, 0x00000001, 0x00000001, 0x00000001,
0x00000001, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000001,
0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF,
0xFFFFFFFF, 0x00000001, 0xFFFFFFFF, 0xFFFFFFFF
};
| Max | 1 | psychogenic/zephyr | tests/lib/cmsis_dsp/svm/src/f32.pat | [
"Apache-2.0"
] |
#version 330
// Input vertex attributes (from vertex shader)
in vec3 vertexPos;
in vec2 fragTexCoord;
in vec4 fragColor;
// Input uniform values
uniform sampler2D texture0;
uniform sampler2D texture1;
uniform vec4 colDiffuse;
uniform float divider = 0.5;
out vec4 finalColor;
void main()
{
// Texel color fetching from texture sampler
vec4 texelColor0 = texture(texture0, fragTexCoord);
vec4 texelColor1 = texture(texture1, fragTexCoord);
float x = fract(fragTexCoord.s);
float final = smoothstep(divider - 0.1, divider + 0.1, x);
finalColor = mix(texelColor0, texelColor1, final);
} | F# | 4 | chrisws/raylib | examples/shaders/resources/shaders/glsl330/color_mix.fs | [
"Zlib"
] |
package {
public class Test {}
}
// Constants
trace("Math.E =", Math.E);
trace("Math.LN10 =", Math.LN10);
trace("Math.LN2 =", Math.LN2);
trace("Math.LOG10E =", Math.LOG10E);
trace("Math.LOG2E =", Math.LOG2E);
trace("Math.PI =", Math.PI);
trace("Math.SQRT1_2 =", Math.SQRT1_2);
trace("Math.SQRT2 =", Math.SQRT2);
trace();
var obj = {valueOf: function():Number { return 10.1; }};
function runTest(name, func, val) {
trace(name + "(" + val + ") =");
trace(func(val));
}
function test(name, func) {
runTest(name, func, 0);
runTest(name, func, 1);
runTest(name, func, -1);
runTest(name, func, 1234.5);
runTest(name, func, -1234.5);
runTest(name, func, Infinity);
runTest(name, func, -Infinity);
runTest(name, func, NaN);
runTest(name, func, true);
runTest(name, func, false);
runTest(name, func, undefined);
runTest(name, func, null);
runTest(name, func, "55.5");
runTest(name, func, obj);
trace();
}
function runTest2(name, func, val1, val2) {
trace(name + "(" + val1 + ", " + val2 + ") =");
trace(func(val1, val2));
}
function test2(name, func) {
runTest2(name, func, 0, 0);
runTest2(name, func, 1, 2);
runTest2(name, func, 2, -4);
runTest2(name, func, 4, -2);
runTest2(name, func, -99, -100);
runTest2(name, func, Infinity, -Infinity);
runTest2(name, func, NaN, 100);
runTest2(name, func, 999, NaN);
runTest2(name, func, true, false);
runTest2(name, func, undefined, null);
runTest2(name, func, "55.5", "-1234");
runTest2(name, func, obj, obj);
trace();
}
test("Math.abs", Math.abs);
test("Math.acos", Math.acos);
test("Math.asin", Math.asin);
test("Math.atan", Math.atan);
test2("Math.atan2", Math.atan2);
test("Math.ceil", Math.ceil);
test("Math.cos", Math.cos);
test("Math.exp", Math.exp);
test("Math.floor", Math.floor);
test("Math.log", Math.log);
test2("Math.max", Math.max);
test2("Math.min", Math.min);
test2("Math.pow", Math.pow);
test("Math.round", Math.round);
test("Math.sin", Math.sin);
test("Math.sqrt", Math.sqrt);
test("Math.tan", Math.tan);
// Test varargs in min/max
trace("Math.min() =", Math.min());
trace("Math.min(0) =", Math.min(0));
trace("Math.min(1, 2, 3) =", Math.min(1, 2, 3));
trace("Math.min(-1.1, -2.2, -3.3) =", Math.min(-1.1, -2.2, -3.3));
trace("Math.min(9, NaN, false, true, Infinity, undefined) =", Math.min(9, NaN, false, true, Infinity, undefined));
trace();
trace("Math.max() =", Math.max());
trace("Math.max(0) =", Math.max(0));
trace("Math.max(1, 2, 3) =", Math.max(1, 2, 3));
trace("Math.max(-1.1, -2.2, -3.3) =", Math.max(-1.1, -2.2, -3.3));
trace("Math.max(9, NaN, false, true, Infinity, undefined) =", Math.max(9, NaN, false, true, Infinity, undefined));
trace();
| ActionScript | 4 | Sprak1/ruffle | tests/tests/swfs/avm2/math/Test.as | [
"Apache-2.0",
"Unlicense"
] |
mylogger dose loge with 'msg'
| Dogescript | 1 | erinkeith/dogescript | test/spec/dose/loge/user-declared-loge/source.djs | [
"MIT"
] |
$TTL 300
@ IN A 10.1.1.1
bar IN A 10.3.3.3
www.bar IN A 10.4.4.4
a.long.path.of.sub.domains IN A 10.25.25.25
www.a.long.path.of.sub.domains IN A 10.26.26.26
www IN A 10.2.2.2
| DNS Zone | 1 | hosting-de-labs/dnscontrol | pkg/js/parse_tests/029-dextendsub/foo.net.zone | [
"MIT"
] |
/// <reference path="fourslash.ts"/>
////interface IFoo { }
////
////class testClass<T extends IFoo, U, M extends IFoo> {
//// constructor(a:T, b:U, c:M){ }
////}
////
////// Constructor calls
////new testClass</*constructor1*/
////new testClass<IFoo, /*constructor2*/
////new testClass</*constructor3*/>(null, null, null)
////new testClass<,,/*constructor4*/>(null, null, null)
////new testClass<IFoo,/*constructor5*/IFoo,IFoo>(null, null, null)
verify.signatureHelp(
{
marker: "constructor1",
text: "testClass<T extends IFoo, U, M extends IFoo>(a: T, b: U, c: M): testClass<T, U, M>",
parameterName: "T",
parameterSpan: "T extends IFoo",
},
{
marker: "constructor2",
parameterName: "U",
parameterSpan: "U",
},
{ marker: "constructor3", parameterName: "T", parameterSpan: "T extends IFoo" },
{ marker: "constructor4", parameterName: "M", parameterSpan: "M extends IFoo" },
{ marker: "constructor5", parameterName: "U", parameterSpan: "U" },
);
| TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/fourslash/genericParameterHelpConstructorCalls.ts | [
"Apache-2.0"
] |
package jadx.tests.integration.invoke;
import org.junit.jupiter.api.Test;
import jadx.core.dex.nodes.ClassNode;
import jadx.tests.api.IntegrationTest;
import static jadx.tests.api.utils.JadxMatchers.containsOne;
import static org.hamcrest.MatcherAssert.assertThat;
public class TestInheritedStaticInvoke extends IntegrationTest {
public static class TestCls {
public static class A {
public static int a() {
return 1;
}
}
public static class B extends A {
}
public int test() {
return B.a(); // not A.a()
}
}
@Test
public void test() {
noDebugInfo();
ClassNode cls = getClassNode(TestCls.class);
String code = cls.getCode().toString();
assertThat(code, containsOne("return B.a();"));
}
}
| Java | 4 | DSYliangweihao/jadx | jadx-core/src/test/java/jadx/tests/integration/invoke/TestInheritedStaticInvoke.java | [
"Apache-2.0"
] |
"""
# Buffered Package
The Buffered package provides two classes, `Writer` and `Reader`, for
writing and reading messages using common encodings. These classes are
useful when dealing with things like network data and binary file
formats.
## Example program
```pony
use "buffered"
actor Main
new create(env: Env) =>
let reader = Reader
let writer = Writer
writer.u32_be(42)
writer.f32_be(3.14)
let b = recover iso Array[U8] end
for chunk in writer.done().values() do
b.append(chunk)
end
reader.append(consume b)
try
env.out.print(reader.u32_be()?.string()) // prints 42
env.out.print(reader.f32_be()?.string()) // prints 3.14
end
```
"""
| Pony | 5 | presidentbeef/ponyc | packages/buffered/buffered.pony | [
"BSD-2-Clause"
] |
/* $KAME: policy_parse.y,v 1.21 2003/12/12 08:01:26 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
#define INT32_MIN (-INT32_MAX-1)
#endif
#define ATOX(c) \
(isdigit(c) ? (c - '0') : (isupper(c) ? (c - 'A' + 10) : (c - 'a' + 10) ))
static u_int8_t *pbuf = NULL; /* sadb_x_policy buffer */ | Yacc | 3 | s4-2/scancode-toolkit | tests/cluecode/data/ics/ipsec-tools-src-libipsec/policy_parse.y | [
"Apache-2.0",
"CC-BY-4.0"
] |
@load-sigs ./dpd.sig
@load ./consts
@load ./main
| Bro | 0 | LaudateCorpus1/cs-bro | bro-scripts/dce-rpc/__load__.bro | [
"BSD-2-Clause"
] |
package com.baeldung.annotations;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertAll;
public class EmployeeApplicationUnitTest {
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner()
.withUserConfiguration(EmployeeApplication.class);
@Test
void whenApplicationContextRuns_thenContainAllDefinedBeans() {
contextRunner.run(context -> assertAll(
() -> assertTrue(context.containsBeanDefinition("employee")),
() -> assertTrue(context.containsBeanDefinition("seniorEmployee")),
() -> assertTrue(context.containsBeanDefinition("doctor")),
() -> assertTrue(context.containsBeanDefinition("hospital")),
() -> assertFalse(context.containsBeanDefinition("student")),
() -> assertTrue(context.containsBeanDefinition("teacher"))));
}
}
| Java | 4 | DBatOWL/tutorials | spring-boot-modules/spring-boot-annotations/src/test/java/com/baeldung/annotations/EmployeeApplicationUnitTest.java | [
"MIT"
] |
#pragma once
#include <keyboardmanager/common/Input.h>
#include <keyboardmanager/common/MappingConfiguration.h>
#include <KeyboardManagerState.h>
enum class KeyboardManagerEditorType
{
KeyEditor = 0,
ShortcutEditor,
};
class KeyboardManagerEditor
{
public:
KeyboardManagerEditor(HINSTANCE hInstance);
~KeyboardManagerEditor();
KeyboardManagerInput::Input& GetInputHandler() noexcept
{
return inputHandler;
}
bool StartLowLevelKeyboardHook();
void OpenEditorWindow(KeyboardManagerEditorType type);
// Function called by the hook procedure to handle the events. This is the starting point function for remapping
intptr_t HandleKeyboardHookEvent(LowlevelKeyboardEvent* data) noexcept;
private:
static LRESULT CALLBACK KeyHookProc(int nCode, WPARAM wParam, LPARAM lParam);
inline static HHOOK hook;
HINSTANCE hInstance;
KBMEditor::KeyboardManagerState keyboardManagerState;
MappingConfiguration mappingConfiguration;
// Object of class which implements InputInterface. Required for calling library functions while enabling testing
KeyboardManagerInput::Input inputHandler;
};
| C | 4 | szlatkow/PowerToys | src/modules/keyboardmanager/KeyboardManagerEditor/KeyboardManagerEditor.h | [
"MIT"
] |
{block title}Delete note {$note->name}{/block}
{block page_title}<span>Delete note {$note->name}</span>{/block}
{block body}
<form n:name="deleteNote-form">
<p>Are you sure you want to delete {$note->name}?</p>
<button n:name="confirm" class="button red">Yes, I want to delete this note</button>
<a n:href="detail, $note->id">Cancel</a>
</form>
| Latte | 4 | aleanza/notejam | nette/doctrine/notejam/app/Presenters/templates/Note/delete.latte | [
"MIT"
] |
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=CETWDlg
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "ETW.h"
ClassCount=3
Class1=CETWApp
Class2=CETWDlg
Class3=CAboutDlg
ResourceCount=5
Resource1=IDD_ABOUTBOX
Resource2=IDR_MAINFRAME
Resource3=IDD_ETW_DIALOG
Resource4=IDD_ABOUTBOX (English (U.S.))
Resource5=IDD_ETW_DIALOG (English (U.S.))
[CLS:CETWApp]
Type=0
HeaderFile=ETW.h
ImplementationFile=ETW.cpp
Filter=N
[CLS:CETWDlg]
Type=0
HeaderFile=ETWDlg.h
ImplementationFile=ETWDlg.cpp
Filter=D
BaseClass=CDialog
VirtualFilter=dWC
LastObject=IDC_LIST1
[CLS:CAboutDlg]
Type=0
HeaderFile=ETWDlg.h
ImplementationFile=ETWDlg.cpp
Filter=D
[DLG:IDD_ABOUTBOX]
Type=1
ControlCount=4
Control1=IDC_STATIC,static,1342177283
Control2=IDC_STATIC,static,1342308352
Control3=IDC_STATIC,static,1342308352
Control4=IDOK,button,1342373889
Class=CAboutDlg
[DLG:IDD_ETW_DIALOG]
Type=1
ControlCount=3
Control1=IDOK,button,1342242817
Control2=IDCANCEL,button,1342242816
Control3=IDC_STATIC,static,1342308352
Class=CETWDlg
[DLG:IDD_ABOUTBOX (English (U.S.))]
Type=1
Class=CAboutDlg
ControlCount=4
Control1=IDC_STATIC,static,1342177283
Control2=IDC_STATIC,static,1342308480
Control3=IDC_STATIC,static,1342308352
Control4=IDOK,button,1342373889
[DLG:IDD_ETW_DIALOG (English (U.S.))]
Type=1
Class=CETWDlg
ControlCount=4
Control1=ID_START_NKL,button,1342242817
Control2=IDCANCEL,button,1342242816
Control3=IDC_LIST1,listbox,1352728833
Control4=ID_STOP_NKL,button,1342242817
| Clarion | 2 | oudream/ccxx | test/dump/swdbgbk_src/chap16/ETW/ETW.clw | [
"MIT"
] |
xquery version "1.0";
let $message := "Hello World!"
return <results>
<message>{$message}</message>
</results>
| XQuery | 4 | websharks/ace-builds | demo/kitchen-sink/docs/xquery.xq | [
"BSD-3-Clause"
] |
private use List;
config const testIters = 8;
var lst1: list(int);
for i in 1..testIters do
lst1.append(i);
var lst2 = new list(lst1);
for (x, y) in zip(lst1, lst2) do
assert(x == y);
lst1.clear();
assert(!lst2.isEmpty());
| Chapel | 3 | jhh67/chapel | test/library/standard/List/init/listInitList.chpl | [
"ECL-2.0",
"Apache-2.0"
] |
#!/bin/bash
# Imports and signs dev keys fetched from Keybase, as asserted by the
# Metasploit-Framework development wiki. Requires bash version 3 or so for
# regular expression pattern match
COMMITTER_KEYS_URL='https://raw.githubusercontent.com/wiki/rapid7/metasploit-framework/Committer-Keys.md'
KEYBASE_KEY_URLS=$(
\curl -sSL $COMMITTER_KEYS_URL |
\awk '$4 ~/https:\/\/keybase.io\//' |
\sed 's#.*\(https://keybase.io/[^)]*\).*#\1/key.asc#'
)
for key in $KEYBASE_KEY_URLS; do
echo [*] Importing $key
THIS_KEY=$(
\curl -sSL $key |
\gpg --no-auto-check-trustdb --import - 2>&1 |
\head -1 | \cut -f 3 -d " " | \sed 's/://'
)
echo [*] Signing $THIS_KEY
\gpg --sign-key $THIS_KEY
echo [*] Sending $THIS_KEY
\gpg --keyserver sks-keyservers.net --send-key $THIS_KEY
done
| Shell | 3 | OsmanDere/metasploit-framework | tools/dev/sign-dev-keys.sh | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
= Documentation for Email Base Feature
The email base feature is automatically loaded when you use a Rodauth feature
that requires sending emails.
== Auth Value Methods
allow_raw_email_token? :: When +hmac_secret+ is used, this allows the use of the raw token. This should only be set to true temporarily during a transition period from using raw tokens to using HMACed tokens. After the transition period, this should not be set, as setting this to true removes the security that HMACed tokens add.
default_post_email_redirect :: Where to redirect after sending an email. This is the default redirect location for all redirects after an email is sent when the account is not logged in. Also includes cases where an email is not sent due to rate limiting.
email_from :: The from address to use for emails sent by Rodauth.
email_subject_prefix :: The prefix to use for email subjects
require_mail? :: Set to false to not require mail, useful if using a different library for sending email.
== Auth Methods
create_email(subject, body) :: Return a Mail::Message instance with the given subject and body.
email_to :: The email address to send emails to, by default the login of the current account.
send_email(email) :: Deliver a given Mail::Message instance.
| RDoc | 4 | monorkin/rodauth | doc/email_base.rdoc | [
"MIT"
] |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "ya9j9pyzkyBZ"
},
"source": [
"Copyright 2020 The \"What Can I do Here? A Theory of Affordances In Reinforcement Learning\" Authors. All rights reserved.\n",
"\n",
"Licensed under the Apache License, Version 2.0 (the \"License\");\n",
"you may not use this file except in compliance with the License.\n",
"You may obtain a copy of the License at\n",
"\n",
" https://www.apache.org/licenses/LICENSE-2.0\n",
"\n",
"Unless required by applicable law or agreed to in writing, software\n",
"distributed under the License is distributed on an \"AS IS\" BASIS,\n",
"WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n",
"See the License for the specific language governing permissions and\n",
"limitations under the License."
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 34
},
"colab_type": "code",
"id": "LbWb35G9UHLO",
"outputId": "280cac1e-76e0-4960-a271-24d351f249bc"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Populating the interactive namespace from numpy and matplotlib\n"
]
}
],
"source": [
"%tensorflow_version 2.x\n",
"%pylab inline\n",
"\n",
"# System imports\n",
"import copy\n",
"import dataclasses\n",
"import enum\n",
"import itertools\n",
"import numpy as np\n",
"import operator\n",
"import random\n",
"import time\n",
"from typing import Optional, List, Tuple, Any, Dict, Union, Callable\n",
"\n",
"\n",
"# Library imports.\n",
"from google.colab import files\n",
"from matplotlib import colors\n",
"import matplotlib.animation as animation\n",
"import matplotlib.pylab as plt\n",
"import tensorflow as tf\n",
"\n",
"import tensorflow_probability as tfp"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "UZV6OS_BUklD"
},
"source": [
"# Environment Specification"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "Mz4KtBOVUpOV"
},
"outputs": [],
"source": [
"#@title Point Class\n",
"@dataclasses.dataclass(order=True, frozen=True)\n",
"class Point:\n",
" \"\"\"A class representing a point in 2D space.\n",
"\n",
" Comes with some convenience functions.\n",
" \"\"\"\n",
" x: float\n",
" y: float\n",
"\n",
" def sum(self):\n",
" return self.x + self.y\n",
"\n",
" def l2norm(self):\n",
" \"\"\"Computes the L2 norm of the point.\"\"\"\n",
" return np.sqrt(self.x * self.x + self.y * self.y)\n",
"\n",
" def __add__(self, other: 'Point'):\n",
" return Point(self.x + other.x, self.y + other.y)\n",
"\n",
" def __sub__(self, other: 'Point'):\n",
" return Point(self.x - other.x, self.y - other.y)\n",
"\n",
" def normal_sample_around(self, scale: float):\n",
" \"\"\"Samples a point around the current point based on some noise.\"\"\"\n",
" new_coords = np.random.normal(dataclasses.astuple(self), scale)\n",
" new_coords = new_coords.astype(np.float32)\n",
" return Point(*new_coords)\n",
"\n",
" def is_close_to(self, other: 'Point', diff: float = 1e-4):\n",
" \"\"\"Determines if one point is close to another.\"\"\"\n",
" point_diff = self - other\n",
" if abs(point_diff.x) \u003c diff and abs(point_diff.y) \u003c diff:\n",
" return True\n",
" else:\n",
" return False\n",
"\n",
"# Test the points.\n",
"z1 = Point(0.4, 0.1)\n",
"assert z1.is_close_to(z1)\n",
"assert z1.is_close_to(Point(0.5, 0.0), 1.0)\n",
"assert not z1.is_close_to(Point(5.0, 0.0), 1.0)\n",
"z2 = Point(0.1, 0.1)\n",
"z3 = z1 - z2\n",
"assert isinstance(z3, Point)\n",
"assert z3.is_close_to(Point(0.3, 0.0))\n",
"assert isinstance(z3.normal_sample_around(0.1), Point)\n",
"\n",
"class Force(Point):\n",
" pass\n",
"\n",
"\n",
"# # Intersection code.\n",
"# See Sedgewick, Robert, and Kevin Wayne. Algorithms. , 2011.\n",
"# Chapter 6.1 on Geometric Primitives\n",
"# https://algs4.cs.princeton.edu/91primitives/\n",
"def _check_counter_clockwise(a: Point, b: Point, c: Point):\n",
" \"\"\"Checks if 3 points are counter clockwise to each other.\"\"\"\n",
" slope_AB_numerator = (b.y - a.y)\n",
" slope_AB_denominator = (b.x - a.x)\n",
" slope_AC_numerator = (c.y - a.y)\n",
" slope_AC_denominator = (c.x - a.x)\n",
" return (slope_AC_numerator * slope_AB_denominator \u003e= \\\n",
" slope_AB_numerator * slope_AC_denominator)\n",
"\n",
"def intersect(segment_1: Tuple[Point, Point], segment_2: Tuple[Point, Point]):\n",
" \"\"\"Checks if two line segments intersect.\"\"\"\n",
" a, b = segment_1\n",
" c, d = segment_2\n",
"\n",
" # Checking if there is an intersection is equivalent to:\n",
" # Exactly one counter clockwise path to D (from A or B) via C.\n",
" AC_ccw_CD = _check_counter_clockwise(a, c, d)\n",
" BC_ccw_CD = _check_counter_clockwise(b, c, d)\n",
" toD_via_C = AC_ccw_CD != BC_ccw_CD\n",
"\n",
" # AND\n",
" # Exactly one counterclockwise path from A (to C or D) via B.\n",
" AB_ccw_BC = _check_counter_clockwise(a, b, c)\n",
" AB_ccw_BD = _check_counter_clockwise(a, b, d)\n",
"\n",
" fromA_via_B = AB_ccw_BC != AB_ccw_BD\n",
"\n",
" return toD_via_C and fromA_via_B\n",
"\n",
"# Some simple tests to ensure everything is working.\n",
"assert not intersect((Point(1, 0), Point(1, 1)), (Point(0,0), Point(0, 1))), \\\n",
" 'Parallel lines detected as intersecting.'\n",
"assert not intersect((Point(0, 0), Point(1, 0)), (Point(0,1), Point(1, 1))), \\\n",
" 'Parallel lines detected as intersecting.'\n",
"assert intersect((Point(3, 5), Point(1, 1)), (Point(2, 2), Point(0, 1))), \\\n",
" 'Lines that intersect not detected.'\n",
"assert not intersect((Point(0, 0), Point(2, 2)), (Point(3, 3), Point(5, 1))), \\\n",
" 'Lines that do not intersect detected as intersecting'\n",
"assert intersect((Point(0, .5), Point(0, -.5)), (Point(.5, 0), Point(-.5, 0.))), \\\n",
" 'Lines that intersect not detected.'"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "IaC8khoBVZ2a"
},
"outputs": [],
"source": [
"#@title ContinuousWorld environment.\n",
"\n",
"class ContinuousWorld(object):\n",
" r\"\"\"The ContinuousWorld Environment.\n",
"\n",
" An agent can be anywhere in the grid. The agent provides Forces to move. When\n",
" the agent provides a force, it is applied and the final position is jittered.\n",
"\n",
" When the agent is reset, its location is drawn from a global start position\n",
" given by `drift_between`. This start position is non-stationary and drifts\n",
" toward the target start position as the environment resets with the speed\n",
" `drift_speed`.\n",
"\n",
" For example the start position is (0., 0.). After reseting once, the start\n",
" positon might drift toward (0.5, 0.5). After resetting again it may drift\n",
" again to (0., 0.). This happens smoothly according to the drifting speed.\n",
"\n",
" Walls can be specified in this environment. Detection works by checking if the\n",
" agents action forces it to go in a direction which collides with a wall.\n",
" \"\"\"\n",
"\n",
" def __init__(\n",
" self,\n",
" size: float,\n",
" wall_pairs: Optional[List[Tuple[Point, Point]]] = None,\n",
" drift_between: Optional[List[Tuple[Point, Point]]] = None,\n",
" movement_noise: float = 0.1,\n",
" seed: int = 1,\n",
" drift_speed: float = 0.5,\n",
" reset_noise: Optional[float] = None,\n",
" max_episode_length: int = 10,\n",
" max_action_force: float = 0.5,\n",
" verbose_reset: bool = False\n",
" ):\n",
" \"\"\"Initializes the Continuous World Environment.\n",
"\n",
" Args:\n",
" size: The size of the world.\n",
" wall_pairs: A list of tuple of points representing the start and end\n",
" positions of the wall.\n",
" drift_between: A list of tuple of points representing how the starting\n",
" distrubiton should change. If None, it will drift between the four\n",
" corners of the room.\n",
" movement_noise: The noise around each position after movement.\n",
" seed: The seed for the random number generator.\n",
" drift_speed: How quickly to move in the drift direction.\n",
" reset_noise: The noise around the reset position. Defaults to\n",
" movement_noise if not specified.\n",
" max_episode_length: The maximum length of the episode before resetting.\n",
" max_action_force: If using random_step() this will be the maximum random\n",
" force applied in the x and y direction.\n",
" verbose_reset: Prints out every time the global starting position is\n",
" reset.\n",
" \"\"\"\n",
" self._size = size\n",
" self._wall_pairs = wall_pairs or []\n",
" self._verbose_reset = verbose_reset\n",
"\n",
" # Points to drift the start position between.\n",
" if drift_between is None:\n",
" self._drift_between = (\n",
" Point((1/4) * size, (1/4) * size),\n",
" Point((1/4) * size, (3/4) * size),\n",
" Point((3/4) * size, (1/4) * size),\n",
" Point((3/4) * size, (3/4) * size),\n",
" )\n",
" else:\n",
" self._drift_between = drift_between\n",
"\n",
" self._noise = movement_noise\n",
" self._reset_noise = reset_noise or movement_noise\n",
" self._rng = np.random.RandomState(seed)\n",
" random.seed(seed)\n",
"\n",
" # The current and target starting positions.\n",
" # Internal to this class mu is used to refer to mean \"start position\".\n",
" # Therefore mu = current start position and end_mu is the target start\n",
" # position.\n",
" self._mu, self._end_mu = random.sample(self._drift_between, 2)\n",
" # The speed at which we will move toward the target position.\n",
" self._drift_speed = drift_speed\n",
" self.update_agent_position()\n",
" self._decide_new_target_mu()\n",
" self._max_episode_length = max_episode_length\n",
" self._current_episode_length = 0\n",
" self._terminated = True\n",
" self._max_action_force = max_action_force\n",
" self._recent_mu_updated = False\n",
"\n",
" def _decide_new_target_mu(self):\n",
" \"\"\"Decide a new target direction to move toward.\"\"\"\n",
" # The direction should be toward the \"target ending mu.\"\n",
" (new_end_mu,) = random.sample(self._drift_between, 1)\n",
" while new_end_mu == self._end_mu:\n",
" (new_end_mu,) = random.sample(self._drift_between, 1)\n",
"\n",
" self._end_mu = new_end_mu\n",
" self._decide_drift_direction()\n",
" if self._verbose_reset:\n",
" print(f'Target mu has been updated to: {self._end_mu}')\n",
" self._recent_mu_updated = True\n",
"\n",
" def _decide_drift_direction(self):\n",
" \"\"\"Decide the drifting direction to move in.\"\"\"\n",
" direction = self._end_mu - self._mu\n",
" l2 = direction.l2norm()\n",
" drift_direction = Point(direction.x / l2, direction.y / l2)\n",
" self._drift_direction = Point(\n",
" drift_direction.x * self._drift_speed,\n",
" drift_direction.y * self._drift_speed\n",
" )\n",
"\n",
" def _should_update_target_mu(self) -\u003e bool:\n",
" \"\"\"Decide if the drift direction should change.\"\"\"\n",
" # Condition 1: We are past the edge of the environment.\n",
" if self._past_edge(self._mu.x)[0] or self._past_edge(self._mu.y)[0]:\n",
" return True\n",
"\n",
" # Condition 2: Check if the current mu is close to the end mu.\n",
" return self._mu.is_close_to(self._end_mu, self._drift_speed)\n",
"\n",
" def update_current_start_position(self):\n",
" \"\"\"Update the current mu to drift toward mu_end. Change mu_end if needed.\"\"\"\n",
" if self._should_update_target_mu():\n",
" self._decide_new_target_mu()\n",
" self._decide_drift_direction()\n",
" proposed_mu = self._mu + self._drift_direction\n",
" self._mu = self._wrap_coordinate(proposed_mu)\n",
"\n",
" def _past_edge(self, x: float) -\u003e Tuple[bool, float]:\n",
" \"\"\"Checks if coordinate is beyond the edges.\"\"\"\n",
" if x \u003e= self._size:\n",
" return True, self._size\n",
" elif x \u003c= 0.0:\n",
" return True, 0.0\n",
" else:\n",
" return False, x\n",
"\n",
" def _wrap_coordinate(self, point: Point) -\u003e Point:\n",
" \"\"\"Wraps coordinates that are beyond edges.\"\"\"\n",
" wrapped_coordinates = map(self._past_edge, dataclasses.astuple(point))\n",
" return Point(*map(operator.itemgetter(1), wrapped_coordinates))\n",
"\n",
" def update_agent_position(self):\n",
" self._current_position = self._wrap_coordinate(\n",
" self._mu.normal_sample_around(self._noise))\n",
"\n",
" def set_agent_position(self, new_position: Point):\n",
" self._current_position = self._wrap_coordinate(new_position)\n",
"\n",
" def reset(self) -\u003e Tuple[float, float]:\n",
" \"\"\"Reset the current position of the agent and move the global mu.\"\"\"\n",
" self.update_current_start_position()\n",
" self.update_agent_position()\n",
" self._current_episode_length = 0\n",
" self._terminated = False\n",
" return self._current_position\n",
"\n",
" def get_random_force(self) -\u003e Force:\n",
" return Force(*self._rng.uniform(\n",
" -self._max_action_force, self._max_action_force, 2))\n",
"\n",
" def random_step(self):\n",
" random_action = self.get_random_force()\n",
" to_be_returned = self.step(random_action)\n",
" to_be_returned[-1]['action_taken'] = random_action\n",
" return to_be_returned\n",
"\n",
" @property\n",
" def agent_position(self):\n",
" return dataclasses.astuple(self._current_position)\n",
"\n",
" @property\n",
" def start_position(self):\n",
" return dataclasses.astuple(self._mu)\n",
"\n",
" @property\n",
" def size(self):\n",
" return self._size\n",
"\n",
" @property\n",
" def walls(self):\n",
" return self._wall_pairs\n",
"\n",
" def _check_goes_through_wall(self, start: Point, end: Point):\n",
" if not self._wall_pairs: return False\n",
"\n",
" for pair in self._wall_pairs:\n",
" if intersect((start, end), pair):\n",
" return True\n",
" return False\n",
"\n",
" def step(\n",
" self,\n",
" action: Force\n",
" ) -\u003e Tuple[Tuple[float, float], Optional[float], bool, Dict[str, Any]]:\n",
" \"\"\"Does a step in the environment using the action.\n",
"\n",
" Args:\n",
" action: Force applied by the agent.\n",
"\n",
" Returns:\n",
" Agent position: A tuple of two floats.\n",
" The reward.\n",
" An indicator if the episode terminated.\n",
" A dictionary containing any information about the step.\n",
" \"\"\"\n",
" if self._terminated:\n",
" raise ValueError('Episode is over. Please reset the environment.')\n",
" perturbed_action = action.normal_sample_around(self._noise)\n",
"\n",
" proposed_position = self._wrap_coordinate(\n",
" self._current_position + perturbed_action)\n",
"\n",
" goes_through_wall = self._check_goes_through_wall(\n",
" self._current_position, proposed_position)\n",
"\n",
" if not goes_through_wall:\n",
" self._current_position = proposed_position\n",
"\n",
" self._current_episode_length += 1\n",
"\n",
" if self._current_episode_length \u003e self._max_episode_length:\n",
" self._terminated = True\n",
"\n",
" recent_mu_updated = self._recent_mu_updated\n",
" self._recent_mu_updated = False\n",
" return (\n",
" self._current_position,\n",
" None,\n",
" self._terminated,\n",
" {\n",
" 'goes_through_wall': goes_through_wall,\n",
" 'proposed_position': proposed_position,\n",
" 'recent_start_position_updated': recent_mu_updated\n",
" }\n",
" )"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "O43gq5h_YS2I"
},
"outputs": [],
"source": [
"#@title Visualization suite.\n",
"\n",
"def visualize_environment(\n",
" world,\n",
" ax,\n",
" scaling=1.0,\n",
" agent_color='r',\n",
" agent_size=0.2,\n",
" start_color='g',\n",
" draw_agent=True,\n",
" draw_start_mu=True,\n",
" draw_target_mu=True,\n",
" draw_walls=True,\n",
" write_text=True):\n",
" \"\"\"Visualize the continuous grid world.\n",
"\n",
" The agent will be drawn as a circle. The start and target\n",
" locations will be drawn by a cross. Walls will be drawn in\n",
" black.\n",
"\n",
" Args:\n",
" world: The continuous gridworld to visualize.\n",
" ax: The matplotlib axes to draw the gridworld.\n",
" scaling: Scale the plot by this factor.\n",
" agent_color: Color of the agent.\n",
" agent_size: Size of the agent in the world.\n",
" start_color: Color of the start marker.\n",
" draw_agent: Boolean that controls drawing agent.\n",
" draw_start_mu: Boolean that controls drawing starting position.\n",
" draw_target_mu: Boolean that controls drawing ending position.\n",
" draw_walls: Boolean that controls drawing walls.\n",
" write_text: Boolean to write text for each component being drawn.\n",
" \"\"\"\n",
" scaled_size = scaling * world.size\n",
"\n",
" # Draw the outer walls.\n",
" ax.hlines(0, 0, scaled_size)\n",
" ax.hlines(scaled_size, 0, scaled_size)\n",
" ax.vlines(scaled_size, 0, scaled_size)\n",
" ax.vlines(0, 0, scaled_size)\n",
"\n",
" for wall_pair in world.walls:\n",
" ax.plot(\n",
" [p.x * scaling for p in wall_pair],\n",
" [p.y * scaling for p in wall_pair],\n",
" color='k')\n",
"\n",
" if draw_start_mu:\n",
" # Draw the position of the start dist.\n",
" x, y = [p * scaling for p in world.mu_start_position]\n",
" ax.scatter([x], [y], marker='x', c=start_color)\n",
" if write_text: ax.text(x, y, 'Starting position.')\n",
"\n",
" if draw_target_mu:\n",
" # Draw the target position.\n",
" x, y = [p * scaling for p in dataclasses.astuple(world._end_mu)]\n",
" ax.scatter([x], [y], marker='x', c='k')\n",
" if write_text: ax.text(x, y,'Target position.')\n",
"\n",
" if draw_agent:\n",
" # Draw the position of the agent as a circle.\n",
" x, y = [scaling * p for p in world.agent_position]\n",
" agent_circle = plt.Circle((x, y), agent_size, color=agent_color)\n",
" ax.add_artist(agent_circle)\n",
" if write_text: ax.text(x, y, 'Agent position.')\n",
"\n",
" return ax\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "eSfUwRtoY_aN"
},
"source": [
"# Affordance specification"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "IVTYi4YVZAfR"
},
"outputs": [],
"source": [
"#@title Intent detection and plotting code.\n",
"\n",
"IntentName = enum.IntEnum(\n",
" 'IntentName', 'delta_pos_x delta_neg_x delta_pos_y delta_neg_y')\n",
"\n",
"class IntentStatus(enum.IntEnum):\n",
" complete = 1\n",
" incomplete = 0\n",
"\n",
"@dataclasses.dataclass(eq=False)\n",
"class Intent:\n",
" name: 'IntentName'\n",
" status: 'IntentStatus'\n",
"\n",
"\n",
"PointOrFloatTuple = Union[Point, Tuple[float, float]]\n",
"\n",
"def _get_intent_completed(\n",
" s_t: PointOrFloatTuple,\n",
" a_t: Force,\n",
" s_tp1: PointOrFloatTuple,\n",
" intent_name: IntentName,\n",
" threshold: float = 0.0):\n",
" r\"\"\"Determines if the intent was completed in the transition.\n",
"\n",
" The available intents are based on significant movement on the x-y plane:\n",
"\n",
" Intent is 1 if:\n",
" `s_tp1.{{x,y}} - s_t.{{x,y}} {{\u003e,\u003c}} threshold`\n",
" else: 0.\n",
"\n",
" Args:\n",
" s_t: The current position of the agent.\n",
" a_t: The force for the action.\n",
" s_tp1: The position after executing action of the agent.\n",
" intent_name: The intent that needs to be detected.\n",
" threshold: The significance threshold for the intent to be detected.\n",
" \"\"\"\n",
" if not isinstance(s_t, Point):\n",
" s_t = Point(*s_t)\n",
" if not isinstance(s_tp1, Point):\n",
" s_tp1 = Point(*s_tp1)\n",
" IntentName(intent_name) # Check if valid intent_name.\n",
"\n",
" diff = s_tp1 - s_t # Find the positional difference.\n",
"\n",
" if intent_name == IntentName.delta_pos_x:\n",
" if diff.x \u003e threshold:\n",
" return IntentStatus.complete\n",
" if intent_name == IntentName.delta_pos_y:\n",
" if diff.y \u003e threshold:\n",
" return IntentStatus.complete\n",
" if intent_name == IntentName.delta_neg_x:\n",
" if diff.x \u003c -threshold:\n",
" return IntentStatus.complete\n",
" if intent_name == IntentName.delta_neg_y:\n",
" if diff.y \u003c -threshold:\n",
" return IntentStatus.complete\n",
"\n",
" return IntentStatus.incomplete\n",
"\n",
"# Some simple test cases.\n",
"assert not _get_intent_completed(\n",
" Point(0, 0), None, Point(0.5, 0.0), IntentName.delta_neg_y)\n",
"assert not _get_intent_completed(\n",
" Point(0, 0), None, Point(0.5, 0.0), IntentName.delta_pos_y)\n",
"assert _get_intent_completed(\n",
" Point(0, 0), None, Point(0.5, 0.0), IntentName.delta_pos_x)\n",
"assert not _get_intent_completed(\n",
" Point(0, 0), None, Point(0.5, 0.0), IntentName.delta_neg_x)\n",
"assert _get_intent_completed(\n",
" Point(0, 0), None, Point(0.5, 0.5), IntentName.delta_pos_x)\n",
"assert _get_intent_completed(\n",
" Point(0, 0), None, Point(0.5, 0.5), IntentName.delta_pos_y)\n",
"assert not _get_intent_completed(\n",
" Point(0, 0), None, Point(0.5, 0.5), IntentName.delta_pos_y, 0.6)\n",
"assert not _get_intent_completed(\n",
" Point(0, 0), None, Point(-0.5, -0.5), IntentName.delta_neg_x, 0.6)\n"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "OtWqqse4Zutx"
},
"outputs": [],
"source": [
"#@title Data Collection code\n",
"def get_transitions(\n",
" world: ContinuousWorld,\n",
" max_num_transitions: int = 500,\n",
" max_trajectory_length: Optional[int] = None,\n",
" policy: Optional[Callable[[np.ndarray], int]] = None,\n",
" intent_threshold: float = 0.0):\n",
" \"\"\"Samples transitions from an environment.\n",
"\n",
" Args:\n",
" world: The environment to collect trajectories from.\n",
" max_num_transitions: The total number of transitions to sample.\n",
" max_trajectory_length: The maximum length of the trajectory. If None\n",
" trajectories will naturally reset during episode end.\n",
" policy: The data collection policy. If None is given a random policy\n",
" is used. The policy must take a single argument, the one hot\n",
" representation of the state. If using a tensorflow function make sure to\n",
" handle batching within the policy itself.\n",
" intent_threshold: The threshold to use for the intent.\n",
"\n",
" Returns:\n",
" The transitions collected from the environment:\n",
" This is a 4-tuple containing the batch of state, action, state' and intent\n",
" target.\n",
" Human Readable transitions:\n",
" A set containing the unique transitions in the batch and if the intent was\n",
" completed.\n",
" Infos:\n",
" A list containing the info dicts sampled during the batch.\n",
" \"\"\"\n",
" max_trajectory_length = max_trajectory_length or float('inf')\n",
" trajectory = []\n",
" s_t = world.reset()\n",
" trajectory_length = 0\n",
" human_readable = set()\n",
" if policy is None:\n",
" def policy(_):\n",
" return world.get_random_force()\n",
"\n",
" infos = []\n",
"\n",
" for _ in range(max_num_transitions):\n",
" action = policy(s_t)\n",
" s_tp1, _, done, info = world.step(action)\n",
" infos.append(info)\n",
" reward = 0\n",
"\n",
" all_intents = []\n",
" intent_status_only = []\n",
" for intent_name in IntentName:\n",
" intent_status = _get_intent_completed(\n",
" s_t, action, s_tp1, intent_name, intent_threshold)\n",
" all_intents.append((intent_name, intent_status))\n",
" intent_status_only.append(intent_status)\n",
"\n",
" # Human readable vesion:\n",
" human_readable.add((s_t, action, s_tp1, tuple(all_intents)))\n",
"\n",
" # Prepare things for tensorflow:\n",
" s_t_tf = tf.constant(dataclasses.astuple(s_t), dtype=tf.float32)\n",
" s_tp1_tf = tf.constant(dataclasses.astuple(s_tp1), dtype=tf.float32)\n",
" a_t_tf = tf.constant(dataclasses.astuple(action), dtype=tf.float32)\n",
" intent_statuses_tf = tf.constant(intent_status_only)\n",
" trajectory.append((s_t_tf, a_t_tf, s_tp1_tf, reward, intent_statuses_tf))\n",
"\n",
" trajectory_length += 1\n",
" if done or trajectory_length \u003e max_trajectory_length:\n",
" s_t = world.reset()\n",
" trajectory_length = 0\n",
" else:\n",
" s_t = s_tp1\n",
"\n",
" batch = list(map(tf.stack, zip(*trajectory)))\n",
" return batch, human_readable, infos\n",
"\n",
"# Integration test.\n",
"world = ContinuousWorld(\n",
" size=2,\n",
" drift_speed=0.1,\n",
" max_action_force=2.0,\n",
" max_episode_length=100)\n",
"data, _, _ = get_transitions(world, max_num_transitions=2)\n",
"assert data is not None"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "bvYwGLyubcpa"
},
"outputs": [],
"source": [
"#@title Probabilistic transition model\n",
"\n",
"hidden_nodes = 32\n",
"input_size = 2\n",
"\n",
"class TransitionModel(tf.keras.Model):\n",
" def __init__(self, hidden_nodes, output_size):\n",
" super().__init__()\n",
" self._net1 = tf.keras.layers.Dense(\n",
" hidden_nodes, activation=tf.keras.activations.relu)\n",
" self._net2 = tf.keras.layers.Dense(\n",
" hidden_nodes, activation=tf.keras.activations.relu)\n",
" # Multiply by 2 for means and variances.\n",
" self._output = tf.keras.layers.Dense(2*output_size)\n",
"\n",
" def __call__(self, st, at):\n",
" net_inputs = tf.concat((st, at), axis=1)\n",
" means_logstd = self._output(self._net2(self._net1(net_inputs)))\n",
" means, logstd = tf.split(means_logstd, 2, axis=1)\n",
" std = tf.exp(logstd)\n",
" return tfp.distributions.Normal(loc=means, scale=std)\n"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "5S6uqTVAdoKD"
},
"outputs": [],
"source": [
"#@title Training algorithm.\n",
"\n",
"MACHINE_EPSILON = np.finfo(float).eps.item()\n",
"\n",
"def train_networks(\n",
" world: ContinuousWorld,\n",
" model_network: Optional[tf.keras.Model] = None,\n",
" model_optimizer: Optional[tf.keras.optimizers.Optimizer] = None,\n",
" affordance_network: Optional[tf.keras.Model] = None,\n",
" affordance_optimizer: Optional[tf.keras.optimizers.Optimizer] = None,\n",
" use_affordance_to_mask_model: bool = False,\n",
" affordance_mask_threshold: float = 0.9,\n",
" num_train_steps: int =10,\n",
" fresh_data: bool = True,\n",
" max_num_transitions: int = 1,\n",
" max_trajectory_length: Optional[int] = None,\n",
" optimize_performance: bool = False,\n",
" intent_threshold: float = 1.0,\n",
" debug: bool = False,\n",
" print_losses: bool = False,\n",
" print_every: int = 10):\n",
" \"\"\"Trains an affordance network.\n",
"\n",
" Args:\n",
" world: The gridworld to collect training data from.\n",
" model_network: The network for the transition model.\n",
" model_optimizer: The optimizer for the transition model.\n",
" affordance_network: The affordance network.\n",
" affordance_optimizer: The optimizer for the affordance network.\n",
" use_affordance_to_mask_model: Uses affordances to mask the losses of the\n",
" transition model.\n",
" affordance_mask_threshold: The threshold at which the mask should be\n",
" applied.\n",
" num_train_steps: The total number of training steps.\n",
" fresh_data: Collect fresh data before every training step.\n",
" max_num_transitions: The number of rollout trajectories per training step.\n",
" max_trajectory_length: The maximum length of each trajectory. If None then\n",
" there is no artifically truncated trajectory length.\n",
" optimizer_performance: Use `tf.function` to speed up training steps.\n",
" intent_threshold: The threshold to consider as a signficant completion of\n",
" the intent.\n",
" debug: Debug mode prints out the human readable transitions and disables\n",
" tf.function.\n",
" print_losses: Prints out the losses during training.\n",
" print_every: Indicates how often things should be printed out.\n",
" \"\"\"\n",
" all_aff_losses = []\n",
" all_model_losses = []\n",
"\n",
" # Error checking to make sure the correct combinations of model/affordance\n",
" # nets and optimizers are given or none at all.\n",
" if (affordance_network is None) != (affordance_optimizer is None):\n",
" raise ValueError('Both affordance network and optimizer have to be given.')\n",
" else:\n",
" use_affordances = affordance_network is not None\n",
"\n",
" if (model_network is None) != (model_optimizer is None):\n",
" raise ValueError('Both model network and optimizer have to be given.')\n",
" else:\n",
" use_model = model_network is not None\n",
"\n",
" # At least one of affordance network or model network must be specified.\n",
" if model_network is None and (\n",
" (model_network is None) == (affordance_network is None)):\n",
" raise ValueError(\n",
" 'This code does not do anything without models or affordances.')\n",
"\n",
" # Check if both are specified if use_affordance_to_mask_model is True.\n",
" if use_affordance_to_mask_model and (\n",
" model_network is None and affordance_network is None):\n",
" raise ValueError(\n",
" 'Cannot use_affordance_to_mask model if affordance and model networks'\n",
" ' are not given!')\n",
"\n",
" # User friendly print outs indicate what is happening.\n",
" print(\n",
" f'Using model? {use_model}. Using affordances? {use_affordances}. Using'\n",
" f' affordances to mask model? {use_affordance_to_mask_model}.')\n",
"\n",
" def _train_step_affordances(trajectory):\n",
" \"\"\"Train affordance network.\"\"\"\n",
" # Note: Please make sure you understand the shapes here before editing to\n",
" # prevent accidental broadcast.\n",
" with tf.GradientTape() as tape:\n",
" s_t, a_t, _, _, intent_target = trajectory\n",
" concat_input = tf.concat((s_t, a_t), axis=1)\n",
" preds = affordance_network(concat_input)\n",
"\n",
" intent_target = tf.reshape(intent_target, (-1, 1))\n",
" unshaped_preds = preds\n",
" preds = tf.reshape(preds, (-1, 1))\n",
"\n",
" loss = tf.keras.losses.binary_crossentropy(intent_target, preds)\n",
" total_loss = tf.reduce_mean(loss)\n",
" grads = tape.gradient(total_loss, affordance_network.trainable_variables)\n",
" affordance_optimizer.apply_gradients(\n",
" zip(grads, affordance_network.trainable_variables))\n",
"\n",
" return total_loss, unshaped_preds\n",
"\n",
" def _train_step_model(trajectory, affordances):\n",
" \"\"\"Train model network.\"\"\"\n",
" with tf.GradientTape() as tape:\n",
" s_t, a_t, s_tp1, _, _ = trajectory\n",
" transition_model = model_network(s_t, a_t)\n",
" log_prob = tf.reduce_sum(transition_model.log_prob(s_tp1), -1)\n",
" num_examples = s_t.shape[0]\n",
"\n",
" if use_affordance_to_mask_model:\n",
" # Check if at least one intent is affordable.\n",
" masks_per_intent = tf.math.greater_equal(\n",
" affordances, affordance_mask_threshold)\n",
" masks_per_transition = tf.reduce_any(masks_per_intent, 1)\n",
" # Explicit reshape to prevent accidental broadcasting.\n",
" batch_size = len(s_t)\n",
" log_prob = tf.reshape(log_prob, (batch_size, 1))\n",
" masks_per_transition = tf.reshape(masks_per_transition, (batch_size, 1))\n",
" log_prob = log_prob * tf.cast(masks_per_transition, dtype=tf.float32)\n",
" # num_examples changes if there is masking so take that into account:\n",
" num_examples = tf.reduce_sum(\n",
" tf.cast(masks_per_transition, dtype=tf.float32))\n",
" num_examples = tf.math.maximum(num_examples, tf.constant(1.0))\n",
"\n",
" # Negate log_prob here because we want to maximize this via minimization.\n",
" total_loss = -tf.reduce_sum(log_prob) / num_examples\n",
" grads = tape.gradient(total_loss, model_network.trainable_variables)\n",
" model_optimizer.apply_gradients(\n",
" zip(grads, model_network.trainable_variables))\n",
"\n",
" return total_loss\n",
"\n",
" # Optimize performance using tf.function.\n",
" if optimize_performance and not debug:\n",
" _train_step_affordances = tf.function(_train_step_affordances)\n",
" _train_step_model = tf.function(_train_step_model)\n",
" print('Training step has been optimized.')\n",
"\n",
" initial_data_collected = False\n",
" infos = []\n",
" for i in range(num_train_steps):\n",
" # Step 1: Collect data.\n",
" if not initial_data_collected or fresh_data:\n",
" initial_data_collected = True\n",
" running_time = time.time()\n",
" trajectories, unique_transitions, infos_i = get_transitions(\n",
" world,\n",
" max_num_transitions=max_num_transitions,\n",
" max_trajectory_length=max_trajectory_length,\n",
" intent_threshold=intent_threshold)\n",
" collection_running_time = time.time() - running_time\n",
" if debug: print('unique_transitions:', unique_transitions)\n",
" running_time = time.time()\n",
"\n",
" # Check if the start state was updated:\n",
" infos.append(\n",
" any([info['recent_start_position_updated'] for info in infos_i]))\n",
"\n",
" # Step 2: Train affordance model.\n",
" if use_affordances:\n",
" aff_loss, affordance_predictions = _train_step_affordances(trajectories)\n",
" aff_loss = aff_loss.numpy().item()\n",
" else:\n",
" affordance_predictions = tf.constant(0.0) # Basically a none.\n",
" aff_loss = None\n",
" all_aff_losses.append(aff_loss)\n",
"\n",
" # Step 3: Train transition model and mask predictions if necessary.\n",
" if use_model:\n",
" model_loss = _train_step_model(trajectories, affordance_predictions)\n",
" model_loss = model_loss.numpy().item()\n",
" else:\n",
" model_loss = None\n",
" all_model_losses.append(model_loss)\n",
"\n",
" if debug or print_losses:\n",
" if i % print_every == 0:\n",
" train_loop_time = time.time() - running_time\n",
" print(f'i: {i}, aff_loss: {aff_loss}, model_loss: {model_loss}, '\n",
" f'collection_loop_time: {collection_running_time:.2f}, '\n",
" f'train_loop_time: {train_loop_time:.2f}')\n",
"\n",
" return all_model_losses, all_aff_losses, infos"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "6hXi7Iy0b50_"
},
"source": [
"# Plotting utilities"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "gMNIsCLEb3Ie"
},
"outputs": [],
"source": [
"#@title Learning curve smoothing\n",
"# From https://github.com/google-research/policy-learning-landscape/blob/master/analysis_tools/data_processing.py#L82\n",
"\n",
"DEFAULT_SMOOTHING_WEIGHT = 0.9\n",
"def apply_linear_smoothing(data, smoothing_weight=DEFAULT_SMOOTHING_WEIGHT):\n",
" \"\"\"Smooth curves using a exponential linear weight.\n",
"\n",
" This smoothing algorithm is the same as the one used in tensorboard.\n",
"\n",
" Args:\n",
" data: The sequence or list containing the data to smooth.\n",
" smoothing_weight: A float representing the weight to place on the moving\n",
" average.\n",
"\n",
" Returns:\n",
" A list containing the smoothed data.\n",
" \"\"\"\n",
" if len(data) == 0: # pylint: disable=g-explicit-length-test\n",
" raise ValueError('No data to smooth.') \n",
" if smoothing_weight \u003c= 0:\n",
" return data\n",
" last = data[0]\n",
" smooth_data = []\n",
" for x in data:\n",
" if not np.isfinite(last):\n",
" smooth_data.append(x)\n",
" else:\n",
" smooth_data.append(last * smoothing_weight + (1 - smoothing_weight) * x)\n",
" last = smooth_data[-1]\n",
" return smooth_data\n"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "T5cvk1XUb-M0"
},
"outputs": [],
"source": [
"#@title Intent plotting code.\n",
"\n",
"def plot_intents(\n",
" world: ContinuousWorld,\n",
" affordance_predictions: np.ndarray,\n",
" eval_action: Tuple[float, float],\n",
" num_world_ticks: int = 3,\n",
" intent_collection: IntentName = IntentName,\n",
" subplot_configuration: Tuple[int, int] = (2, 2),\n",
" figsize: Tuple[int, int] = (5, 5)):\n",
" \"\"\"Plots the intents as a heatmap.\n",
"\n",
" Given the predictions from the affordance network, we plot a heatmap for each\n",
" intent indicating how likely the `eval_action` can be used to complete it.\n",
"\n",
" Args:\n",
" world: The gridworld to use.\n",
" affordance_predictions: Predictions from the affordance classifier. The last\n",
" dimension should be of the same len as intent_collection.\n",
" eval_action: The eval action being used (For plotting the title).\n",
" num_world_ticks: The number of ticks on the axes of the world.\n",
" subplot_configuration: The arrangement of the subplots on the plot.\n",
" figsize: The size of the matplotlib figure.\n",
" \"\"\"\n",
" fig = plt.figure(figsize=figsize)\n",
"\n",
" # Since we are predicting probabilities, normalize between 0 and 1.\n",
" norm = mpl.colors.Normalize(vmin=0.0, vmax=1.0)\n",
"\n",
" # The colorbar axes.\n",
" cax = fig.add_axes([1.0, 0.1, 0.075, 0.8])\n",
"\n",
" for intent in intent_collection:\n",
" ax = fig.add_subplot(*subplot_configuration, intent)\n",
" afford_sliced = affordance_predictions[:, :, intent-1]\n",
" afford_sliced = np.transpose(afford_sliced)\n",
" ax_ = ax.imshow(afford_sliced, origin='lower')\n",
"\n",
" # This code will handle num_world_ticks=0 gracefully.\n",
" ax.set_xticks(np.linspace(0, afford_sliced.shape[0], num_world_ticks))\n",
" ax.set_yticks(np.linspace(0, afford_sliced.shape[0], num_world_ticks))\n",
" ax.set_xticklabels(\n",
" np.linspace(0, world.size, num_world_ticks), fontsize='x-small')\n",
" ax.set_yticklabels(\n",
" np.linspace(0, world.size, num_world_ticks), fontsize='x-small')\n",
"\n",
" ax.set_xlabel('x')\n",
" ax.set_ylabel('y', rotation=0)\n",
" plt.title('Intent: {}'.format(intent.__repr__()[-10:-2]))\n",
" ax_.set_norm(norm)\n",
" if intent == len(intent_collection):\n",
" plt.colorbar(ax_, cax)\n",
" cax.set_ylabel('Probability of intent completion')\n",
"\n",
" plt.suptitle('Evaluating Action: {}'.format(eval_action))\n",
" plt.tight_layout(rect=[0, 0.03, 1, 0.95])"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "pHarhdiSdixz"
},
"source": [
"# Main Experiment (Training)"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"colab": {},
"colab_type": "code",
"id": "Zq9TXAyDfaP_"
},
"outputs": [],
"source": [
"# Storing the losses and models in a global list.\n",
"all_losses_global = []\n",
"all_models_global = []\n",
"all_affordance_global = []"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 1000
},
"colab_type": "code",
"id": "OP50CV_YdkLi",
"outputId": "58a4677b-5dcf-4015-d795-2e7a4b9384fc"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Experiments that will be run: [False, True]\n",
"Resetting seed to 0.\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n",
"Using model? True. Using affordances? False. Using affordances to mask model? False.\n",
"Training step has been optimized.\n",
"Target mu has been updated to: Point(x=1.5, y=1.5)\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/usr/local/lib/python3.6/dist-packages/ipykernel_launcher.py:107: RuntimeWarning: invalid value encountered in double_scalars\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"i: 0, aff_loss: None, model_loss: 3.079850912094116, collection_loop_time: 0.20, train_loop_time: 0.28\n",
"i: 1000, aff_loss: None, model_loss: -1.3993345499038696, collection_loop_time: 0.17, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n",
"i: 2000, aff_loss: None, model_loss: -1.4746335744857788, collection_loop_time: 0.17, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=1.5, y=1.5)\n",
"i: 3000, aff_loss: None, model_loss: -1.926070213317871, collection_loop_time: 0.29, train_loop_time: 0.00\n",
"i: 4000, aff_loss: None, model_loss: -2.129803419113159, collection_loop_time: 0.17, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n",
"i: 5000, aff_loss: None, model_loss: -2.212693452835083, collection_loop_time: 0.18, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=1.5, y=1.5)\n",
"i: 6000, aff_loss: None, model_loss: -2.104724168777466, collection_loop_time: 0.18, train_loop_time: 0.00\n",
"i: 7000, aff_loss: None, model_loss: -2.153459310531616, collection_loop_time: 0.19, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n",
"Resetting seed to 0.\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n",
"Using model? True. Using affordances? True. Using affordances to mask model? True.\n",
"Training step has been optimized.\n",
"Target mu has been updated to: Point(x=1.5, y=1.5)\n",
"i: 0, aff_loss: 0.7048008441925049, model_loss: 3.4398090839385986, collection_loop_time: 0.17, train_loop_time: 0.66\n",
"i: 1000, aff_loss: 0.19042730331420898, model_loss: -1.7565302848815918, collection_loop_time: 0.19, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n",
"i: 2000, aff_loss: 0.23882852494716644, model_loss: -1.7699742317199707, collection_loop_time: 0.18, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=1.5, y=1.5)\n",
"i: 3000, aff_loss: 0.207383394241333, model_loss: -1.983075737953186, collection_loop_time: 0.17, train_loop_time: 0.00\n",
"i: 4000, aff_loss: 0.1946447789669037, model_loss: -2.051856517791748, collection_loop_time: 0.19, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n",
"i: 5000, aff_loss: 0.21516098082065582, model_loss: -1.9648913145065308, collection_loop_time: 0.17, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=1.5, y=1.5)\n",
"i: 6000, aff_loss: 0.20555077493190765, model_loss: -1.8827911615371704, collection_loop_time: 0.18, train_loop_time: 0.00\n",
"i: 7000, aff_loss: 0.17789226770401, model_loss: -2.0646157264709473, collection_loop_time: 0.28, train_loop_time: 0.00\n",
"Target mu has been updated to: Point(x=0.5, y=0.5)\n"
]
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"\u003cFigure size 360x360 with 1 Axes\u003e"
]
},
"metadata": {
"needs_background": "light",
"tags": []
},
"output_type": "display_data"
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"\u003cFigure size 360x360 with 1 Axes\u003e"
]
},
"metadata": {
"needs_background": "light",
"tags": []
},
"output_type": "display_data"
}
],
"source": [
"#@title Train affordance and transition model.\n",
"# Trains num_repeats affordance and model networks.\n",
"#@markdown Experiments to run.\n",
"run_model = True #@param {type:\"boolean\"}\n",
"run_model_with_affordances = True #@param {type:\"boolean\"}\n",
"num_repeats = 1#@param {type:\"integer\"}\n",
"\n",
"#@markdown Training arguments\n",
"# use_affordance_to_mask_model = True #@param {type:\"boolean\"}\n",
"optimize_performance = True #@param {type:\"boolean\"}\n",
"model_learning_rate = 1e-2 #@param {type:\"number\"}\n",
"affordance_learning_rate = 1e-1 #@param {type:\"number\"}\n",
"max_num_transitions = 1000 #@param {type:\"integer\"}\n",
"num_train_steps = 8000 #@param {type:\"integer\"}\n",
"affordance_mask_threshold = 0.5 #@param {type:\"number\"}\n",
"seed = 0 #@param {type:\"integer\"}\n",
"intent_threshold = 0.05 #@param {type:\"number\"}\n",
"\n",
"#@markdown Environment arguments\n",
"drift_speed = 0.001 #@param {type:\"number\"}\n",
"max_action_force = 0.5 #@param {type:\"number\"}\n",
"movement_noise = 0.1 #@param {type:\"number\"}\n",
"max_episode_length = 100000 #@param {type:\"integer\"}\n",
"\n",
"input_size = 2\n",
"action_size = 2\n",
"intent_size = len(IntentName)\n",
"hidden_nodes = 32\n",
"world_size = 2\n",
"\n",
"affordance_mask_params = []\n",
"if run_model:\n",
" affordance_mask_params.append(False)\n",
"if run_model_with_affordances:\n",
" affordance_mask_params.append(True)\n",
"\n",
"print(f'Experiments that will be run: {affordance_mask_params}')\n",
"\n",
"for repeat_number in range(num_repeats):\n",
" all_losses = {}\n",
" model_networks = {}\n",
" affordance_networks = {}\n",
" new_seed = seed + repeat_number\n",
" for use_affordance_to_mask_model in affordance_mask_params:\n",
" print(f'Resetting seed to {new_seed}.')\n",
" np.random.seed(new_seed)\n",
" random.seed(new_seed)\n",
" tf.random.set_seed(new_seed)\n",
"\n",
" affordance_network = tf.keras.Sequential([\n",
" tf.keras.layers.Dense(\n",
" hidden_nodes, activation=tf.keras.activations.relu),\n",
" tf.keras.layers.Dense(\n",
" hidden_nodes, activation=tf.keras.activations.relu),\n",
" tf.keras.layers.Dense(\n",
" intent_size, activation=tf.keras.activations.sigmoid),\n",
" ])\n",
"\n",
" affordance_sgd = tf.keras.optimizers.Adam(\n",
" learning_rate=affordance_learning_rate)\n",
" model_sgd = tf.keras.optimizers.Adam(learning_rate=model_learning_rate)\n",
" model_network = TransitionModel(hidden_nodes, input_size)\n",
"\n",
" # Store models for later use.\n",
" model_networks[use_affordance_to_mask_model] = model_network\n",
" affordance_networks[use_affordance_to_mask_model] = affordance_network\n",
"\n",
" world = ContinuousWorld(\n",
" size=world_size,\n",
" # Slow drift speed to make the transition from L -\u003e R slow.\n",
" drift_speed=drift_speed,\n",
" drift_between=(\n",
" # Drift between the two sides around the wall.\n",
" Point((1 / 4) * world_size, (1 / 4) * world_size),\n",
" Point((3 / 4) * world_size, (3 / 4) * world_size),\n",
" ),\n",
" max_action_force=max_action_force,\n",
" max_episode_length=max_episode_length,\n",
" movement_noise=movement_noise,\n",
" wall_pairs=[\n",
" (Point(1.0, 0.0), Point(1.0, 2.0)),\n",
" ],\n",
" verbose_reset=True)\n",
"\n",
" fig = plt.figure(figsize=(5, 5))\n",
" ax = fig.add_subplot(1, 1, 1)\n",
"\n",
" visualize_environment(\n",
" world, ax, scaling=1.0, draw_start_mu=False, draw_target_mu=False)\n",
"\n",
" def _use_affordance_or_none(model):\n",
" if use_affordance_to_mask_model:\n",
" return model\n",
" else:\n",
" return None\n",
"\n",
" model_loss, aff_loss, infos = train_networks(\n",
" world,\n",
" model_network=model_network,\n",
" model_optimizer=model_sgd,\n",
" affordance_network=_use_affordance_or_none(affordance_network),\n",
" affordance_optimizer=_use_affordance_or_none(affordance_sgd),\n",
" print_losses=True,\n",
" fresh_data=True,\n",
" affordance_mask_threshold=affordance_mask_threshold,\n",
" use_affordance_to_mask_model=use_affordance_to_mask_model,\n",
" max_num_transitions=max_num_transitions,\n",
" max_trajectory_length=None,\n",
" optimize_performance=optimize_performance,\n",
" num_train_steps=num_train_steps,\n",
" intent_threshold=intent_threshold,\n",
" print_every=1000)\n",
"\n",
" all_losses[use_affordance_to_mask_model] = (model_loss, aff_loss, infos)\n",
"\n",
" all_models_global.append(model_networks)\n",
" all_affordance_global.append(affordance_networks)\n",
" all_losses_global.append(all_losses)"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "90KLuKumiRcB"
},
"outputs": [],
"source": [
"#@title Save weights\n",
"\n",
"for seed, model_networks in enumerate(all_models_global):\n",
" model_networks[True].save_weights(\n",
" f'./affordances/seed_{seed}_model_networks_True/keras.weights')\n",
" model_networks[False].save_weights(\n",
" f'./affordances/seed_{seed}_model_networks_False/keras.weights')\n",
"for seed, affordance_networks in enumerate(all_models_global):\n",
" affordance_networks[True].save_weights(\n",
" f'./affordances/seed_{seed}_affordance_networks_true/keras.weights')\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "g1iO3h6Ffucu"
},
"source": [
"# Visualizations\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "OQtxS_ovhJxt"
},
"source": [
"## Learning curves"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "06NPUpXDfyFf"
},
"outputs": [],
"source": [
"#@title Code to collect results from a list of lists into a single array.\n",
"def _collect_results(\n",
" all_losses_g,\n",
" using_affordances,\n",
" save_to_disk=False,\n",
" smooth_weight=0.99,\n",
" skip_first=10):\n",
" \"\"\"Collects results from the list of losses.\"\"\"\n",
" smoothed_curves = []\n",
" for seed, trace in enumerate(all_losses_g):\n",
" if save_to_disk:\n",
" np.save(f'./affordances/curve_seed_{seed}_{using_affordances}.npy',\n",
" np.array(trace[using_affordances][0]))\n",
" # Smooth the curves for plotting.\n",
" smoothed_curves.append(\n",
" apply_linear_smoothing(\n",
" trace[using_affordances][0][skip_first:], smooth_weight))\n",
" all_curves_stacked = np.stack(smoothed_curves)\n",
" mean_curve = np.mean(all_curves_stacked, 0)\n",
" std_curve = np.std(all_curves_stacked, 0)\n",
" return mean_curve, std_curve"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "R4elUiamgc-I"
},
"outputs": [],
"source": [
"#@title Plot averaged learning curves.\n",
"\n",
"mean_curve_aff, std_curve_aff = _collect_results(\n",
" all_losses_global, True)\n",
"mean_curve_normal, std_curve_normal = _collect_results(\n",
" all_losses_global, False)\n",
"colors = ['r', 'k']\n",
"plt.plot(\n",
" mean_curve_aff, color=colors[0], linewidth=4, label='With Affordance')\n",
"plt.plot(\n",
" mean_curve_normal, color=colors[1], linewidth=4, label='without Affordance')\n",
"\n",
"plt.fill_between(\n",
" range(len(mean_curve_aff)),\n",
" mean_curve_aff+std_curve_aff,\n",
" mean_curve_aff-std_curve_aff,\n",
" alpha=0.25,\n",
" color=colors[0])\n",
"\n",
"\n",
"plt.fill_between(\n",
" range(len(mean_curve_normal)),\n",
" mean_curve_normal+std_curve_normal/np.sqrt(num_repeats),\n",
" mean_curve_normal-std_curve_normal/np.sqrt(num_repeats),\n",
" alpha=0.25,\n",
" color=colors[1])\n",
"\n",
"plt.ylim([-2.2, -1.2])\n",
"plt.xticks(fontsize=15)\n",
"plt.yticks(fontsize=15)\n",
"plt.xticks([0, 2500, 5000, 7500],[0, 2500, 5000, 7500], fontsize=15)\n",
"plt.legend(fontsize=15)\n",
"plt.xlabel('Updates', fontsize=20)\n",
"plt.ylabel(r'$-\\log \\hat{P}(s^\\prime|s,a)$',fontsize=20)\n",
"plt.tight_layout()\n",
"plt.savefig('./affordances/model_learning_avg_plot.pdf')"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "OSAm0ukchLqr"
},
"source": [
"## Intent heatmap plots"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 399
},
"colab_type": "code",
"id": "1NeTHiZkhXKj",
"outputId": "2428756a-8685-4312-f3f3-1bf4be01188b"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/usr/local/lib/python3.6/dist-packages/ipykernel_launcher.py:56: UserWarning: This figure includes Axes that are not compatible with tight_layout, so results might be incorrect.\n"
]
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"\u003cFigure size 360x360 with 5 Axes\u003e"
]
},
"metadata": {
"needs_background": "light",
"tags": []
},
"output_type": "display_data"
}
],
"source": [
"#@title Evaluating action and plotting intent heatmaps.\n",
"#@markdown What is the action?\n",
"action_x_dir = 0.2 #@param {type:\"number\"}\n",
"action_y_dir = 0.2 #@param {type:\"number\"}\n",
"network_seed = 0 #@param {type:\"integer\"}\n",
"\n",
"# Cover the x-y grid.\n",
"xs = np.linspace(0, world.size)\n",
"ys = np.linspace(0, world.size)\n",
"xy_coords = tf.constant(list(itertools.product(xs, ys)), dtype=tf.float32)\n",
"\n",
"eval_action = [action_x_dir, action_y_dir]\n",
"fixed_action = tf.constant([eval_action], dtype=tf.float32)\n",
"fixed_action = tf.repeat(fixed_action, 2500, axis=0)\n",
"\n",
"concat_matrix = tf.concat((xy_coords, fixed_action), axis=1)\n",
"affordance_network = all_affordance_global[network_seed][True]\n",
"afford_predictions = affordance_network(concat_matrix)\n",
"affordance_predictions = tf.reshape(\n",
" afford_predictions,\n",
" (len(xs), len(ys), intent_size)).numpy()\n",
"\n",
"plot_intents(world, affordance_predictions, eval_action)\n",
"\n",
"plt.savefig(\n",
" f'intent_eval_FX{action_x_dir}_FY{action_y_dir}.pdf', bbox_inches='tight')"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "mOK_e3oqhrjI"
},
"source": [
"## Model Predictions"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "form",
"colab": {},
"colab_type": "code",
"id": "61Gb_tXKh3je"
},
"outputs": [],
"source": [
"#@title Round annotation plotting code.\n",
"ROUND_BOX = dict(boxstyle='round', facecolor='wheat', alpha=1.0)\n",
"\n",
"def add_annotation(\n",
" ax,\n",
" start: Tuple[float, float],\n",
" end: Tuple[float, float],\n",
" connectionstyle, text):\n",
" x1, y1 = start\n",
" x2, y2 = end\n",
"\n",
" # ax.plot([x1, x2], [y1, y2], \".\")\n",
" ax.annotate(\n",
" \"\",\n",
" xy=(x1, y1),\n",
" xycoords='data',\n",
" xytext=(x2 + 0.25, y2),\n",
" textcoords='data',\n",
" size=30.0,\n",
" arrowprops=dict(arrowstyle=\"-\u003e\", color=\"0.0\",\n",
" shrinkA=5, shrinkB=5,\n",
" patchA=None, patchB=None,\n",
" connectionstyle=connectionstyle,),)\n",
"\n",
" ax.text(*end, text, size=15,\n",
" #transform=ax.transAxes,\n",
" ha=\"left\", va=\"top\", bbox=ROUND_BOX)\n",
"\n",
"connection_styles = [\n",
" \"arc3,rad=-0.3\",\n",
" \"arc3,rad=0.3\",\n",
" \"arc3,rad=0.0\",\n",
" \"arc3,rad=0.5\",\n",
" \"arc3,rad=-0.5\"\n",
"]"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"cellView": "both",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 689
},
"colab_type": "code",
"id": "ILHEEbHShwCb",
"outputId": "9bac0134-d9d1-46da-9283-975ede52250e"
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Figures show the predicted position of the transition distribution.\n",
"Gray circle shows what would have been predicted but was masked by affordance model. \n"
]
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"\u003cFigure size 360x360 with 1 Axes\u003e"
]
},
"metadata": {
"needs_background": "light",
"tags": []
},
"output_type": "display_data"
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"\u003cFigure size 360x360 with 1 Axes\u003e"
]
},
"metadata": {
"needs_background": "light",
"tags": []
},
"output_type": "display_data"
}
],
"source": [
"#@title Plotting Model predictions.\n",
"\n",
"#@markdown Use affordance based model?\n",
"affordance_mask_threshold = 0.5 #@param {type:\"number\"}\n",
"network_seed = 0 #@param {type:\"integer\"}\n",
"\n",
"#@markdown What is the action?\n",
"action_x_dir = +0.5 #@param {type:\"number\"}\n",
"action_y_dir = 0.0 #@param {type:\"number\"}\n",
"\n",
"#@markdown Where is the agent?\n",
"agent_x = 0.75 #@param {type:\"number\"}\n",
"agent_y = 1.0 #@param {type:\"number\"}\n",
"\n",
"action = tf.constant([[action_x_dir, action_y_dir]])\n",
"pos = tf.constant([[agent_x, agent_y]])\n",
"\n",
"affordance_networks = all_affordance_global[network_seed]\n",
"model_networks = all_models_global[network_seed]\n",
"\n",
"scale_scale = 2.0\n",
"\n",
"for i, use_affordance_to_mask_model in enumerate([False, True]):\n",
" fig = plt.figure(figsize=(5, 5))\n",
" ax = fig.add_subplot(1, 1, 1)\n",
" transition_dist = model_networks[use_affordance_to_mask_model](pos, action)\n",
" transition_loc = tuple(transition_dist.loc[0].numpy())\n",
" transition_scale = tuple(transition_dist.scale[0].numpy() * scale_scale)\n",
"\n",
" if use_affordance_to_mask_model:\n",
" aff_network = affordance_networks[use_affordance_to_mask_model]\n",
" AF = aff_network(tf.concat([pos, action], axis=1))\n",
" intents_completable = (AF \u003e affordance_mask_threshold)[0].numpy()\n",
"\n",
" visualize_environment(\n",
" world,\n",
" ax,\n",
" scaling=1.0,\n",
" draw_start_mu=False,\n",
" draw_target_mu=False,\n",
" draw_agent=False,\n",
" agent_size=0.1,\n",
" write_text=False)\n",
" ax.scatter([agent_x], [agent_y], s=150.0, c='green', marker='x')\n",
" ax.arrow(agent_x, agent_y, action_x_dir, action_y_dir, head_width=0.05)\n",
"\n",
" if use_affordance_to_mask_model and not np.any(intents_completable):\n",
" color = 'gray'\n",
" alpha = 0.25\n",
" ellipse_text = '(Masked) '\n",
" else:\n",
" color = None\n",
" alpha = 0.7\n",
" ellipse_text = ''\n",
"\n",
" elipse = mpl.patches.Ellipse(\n",
" transition_loc, *transition_scale, alpha=alpha, color=color)\n",
" ax.add_artist(elipse)\n",
"\n",
" if use_affordance_to_mask_model:\n",
" string_built = ' Intent classificaiton\\n'\n",
" for a in list(zip(IntentName, intents_completable)):\n",
" string_built += ' ' + str(a[0])[-5:] + ':' + str(a[1])\n",
" string_built += '\\n'\n",
" ax.text(\n",
" 0,\n",
" 0,\n",
" string_built,\n",
" )\n",
"\n",
" ax.set_xticks([0.0, 1.0, 2.0])\n",
" ax.set_xticklabels([0, 1.0, 2.0])\n",
"\n",
" ax.set_yticks([0.0, 1.0, 2.0])\n",
" ax.set_yticklabels([0, 1.0, 2.0])\n",
"\n",
" if use_affordance_to_mask_model:\n",
" title = 'Using affordances'\n",
" else:\n",
" title = 'Without affordances'\n",
" ax.set_title(title)\n",
" ax.legend([elipse], [ellipse_text + 'Predicted transition'])\n",
" file_name = (f'./empirical_demo{movement_noise}_P{agent_x}_{agent_y}_'\n",
" f'F{action_x_dir}_{action_x_dir}.pdf')\n",
" fig.savefig(file_name)\n",
"\n",
"print(\n",
" 'Figures show the predicted position of the transition distribution.'\n",
" '\\nGray circle shows what would have been predicted but was masked by '\n",
" 'affordance model. ')"
]
},
{
"cell_type": "code",
"execution_count": 0,
"metadata": {
"colab": {},
"colab_type": "code",
"id": "5GHbTbNClfL-"
},
"outputs": [],
"source": [
""
]
}
],
"metadata": {
"colab": {
"collapsed_sections": [],
"name": "AffordancesInContinuousEnvironment.ipynb",
"provenance": [
{
"file_id": "1W86NFSHwhnx-UEmAY_mhJJzUxPXY3JC4",
"timestamp": 1591715576521
}
]
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
| Jupyter Notebook | 5 | mitchchristow/deepmind-research | affordances_theory/AffordancesInContinuousEnvironment.ipynb | [
"Apache-2.0"
] |
<?php phpinfo(); ?>
| HTML+PHP | 0 | Linuxinet/PayloadsAllTheThings | Upload Insecure Files/Extension PHP/phpinfo.phtml | [
"MIT"
] |
/*
* Copyright 2020 Google Inc. 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.
*/
// Taken from:
// third_party/arcore-android-sdk/src/samples/augmented_image_c/app/src/main/assets/shaders/background_show_depth_color_visualization.frag
// & modified.
vec3 TurboColormap(in float x) {
const vec4 kRedVec4 = vec4(0.55305649, 3.00913185, -5.46192616, -11.11819092);
const vec4 kGreenVec4 = vec4(0.16207513, 0.17712472, 15.24091500, -36.50657960);
const vec4 kBlueVec4 = vec4(-0.05195877, 5.18000081, -30.94853351, 81.96403246);
const vec2 kRedVec2 = vec2(27.81927491, -14.87899417);
const vec2 kGreenVec2 = vec2(25.95549545, -5.02738237);
const vec2 kBlueVec2 = vec2(-86.53476570, 30.23299484);
// Adjusts color space via 6 degree poly interpolation to avoid pure red.
x = clamp(x * 0.9 + 0.03, 0.0, 1.0);
vec4 v4 = vec4( 1.0, x, x * x, x * x * x);
vec2 v2 = v4.zw * v4.z;
return vec3(
dot(v4, kRedVec4) + dot(v2, kRedVec2),
dot(v4, kGreenVec4) + dot(v2, kGreenVec2),
dot(v4, kBlueVec4) + dot(v2, kBlueVec2)
);
}
| GLSL | 4 | TongYiyi11/FutureClassroomNew | shaders/turbo.glsl | [
"MIT"
] |
*** Setting ***
Suite Setup Log Setup of test case file
Suite Teardown Log Teardown of test case file
Test Setup Log Default setup from test file
Test Teardown Log Default teardown from test file
Force Tags test force
Default Tags test default
Test Timeout 4 h 5 m 6 s
*** Test Case ***
S1TC1 No metadata
No Operation
S1TC1 Tags
[Tags] test tag 1 test tag 2
No Operation
S1TC1 Fixture
[Setup] Log Setup defined in test
No Operation
[Teardown] Log Teardown defined in test
S1TC1 Timeout
[Documentation] FAIL Test timeout 101 milliseconds exceeded.
[Timeout] 101ms
Sleep 1s
| RobotFramework | 4 | bhirsz/robotframework | atest/testdata/core/test_suite_dir_with_init_file/sub_suite_with_init_file/test_cases_1.robot | [
"ECL-2.0",
"Apache-2.0"
] |
PROGRAM_NAME=''
| NetLinx | 0 | amclain/netlinx-workspace | spec/workspace/yaml/single_system/MyClient Conference Room.axs | [
"Apache-2.0"
] |
package {
import GZ.Gpu.Gpu;
import GZ.Sys.Interface.Interface;
import GZ.Input.Key;
import GZ.Sys.MainThreadPlatformMsg;
import GZ.Sys.Interface.Context;
import GZ.Sys.Interface.Window;
import GZ.Sys.System;
import GZ.Base.Rect;
//import GzWindows.Sys.Message.OpContextLink;
public class OpMainThreadPlatformMsg overplace MainThreadPlatformMsg {
use Window.ePositioning;
public function OpMainThreadPlatformMsg() : Void{
// Debug.fTrace("--OpMainThreadPlatformMsg--");
MainThreadPlatformMsg();
}
override public function fManageMessage():Void {
gMainThreadGate.ExecuteAll();
}
override public function fRegisterContext(_gFrom : Gate<Context>, _oWindow : Window):Void {
var _nHandleId : UIntX = 0;
var _nWinHandleId : UIntX = 0;
var _sName : String = _oWindow.sName;
var _nX : UInt = _oWindow.vFrame.nX;
var _nY : UInt = _oWindow.vFrame.nY;
<cpp>
_nHandleId = CpcDos->Create_Context(_oWindow->vFrame.nWidth, _oWindow->vFrame.nHeight);
</cpp>
// ThreadMsg.fSend(new MsgCreateWindow("MonMessage!"));
Debug.fTrace("Finsish Create, ContextId: " + _nHandleId + " width: " + _oWindow.vFrame.nWidth + " height: " + _oWindow.vFrame.nHeight);
_gFrom.fContextRegistred(_nHandleId, _nWinHandleId);
}
}
} | Redcode | 4 | VLiance/GZE | src/SubLib_System/Lib_GzCpcDos/Overplace/OpMainThreadPlatformMsg.cw | [
"Apache-2.0"
] |
/**
* Implementation of the
* $(LINK2 http://www.digitalmars.com/download/freecompiler.html, Digital Mars C/C++ Compiler).
*
* Copyright: Copyright (c) 1985-1998 by Symantec, All Rights Reserved
* Copyright (c) 2000-2017 by Digital Mars, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: Distributed under the Boost Software License, Version 1.0.
* http://www.boost.org/LICENSE_1_0.txt
* Source: https://github.com/DigitalMars/Compiler/blob/master/dm/src/dmc/dmcdll.di
*/
module dmcdll;
extern (C++):
void dmcdll_command_line(int argc, char **argv, const(char)* copyright);
bool dmcdll_first_compile();
void dmcdll_file_term();
char *dmcdll_nettranslate(const(char)* filename, const(char)* mode);
char *dmcdll_TranslateFileName(char *filename, char *mode);
void dmcdll_DisposeFile(char *filename);
void dmcdll_SpawnFile(const(char)* filename, int includelevel);
void dmcdll_SpawnFile(const(char)* filename);
bool dmcdll_Progress(int linnum);
bool dmcdll_build_server();
bool dmcdll_dump_compile_context();
import core.stdc.stdarg;
void dmcdll_html_err(const(char)* srcname, uint linnum, const(char)* format, va_list ap);
void err_reportmsgf_error(const(char)* format, va_list args);
void err_reportmsgf_fatal(const(char)* format, va_list args);
void err_reportmsgf_continue(const(char)* format, va_list args);
void err_reportmsgf_warning(bool warniserr, int warnum, const(char)* format, va_list args);
extern (C) alias HookFp = void function();
void dmcdll_HookDetach(HookFp fp);
void *dmcdll_PersistentAlloc(int size);
| D | 3 | the-grue/Compiler | dm/src/dmc/dmcdll.di | [
"BSL-1.0"
] |
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY lumify "http://lumify.io#" >
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>
<rdf:RDF xmlns="http://lumify.io/twitter#"
xml:base="http://lumify.io/twitter"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:lumify="http://lumify.io#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<owl:Ontology rdf:about="http://lumify.io/twitter">
<owl:imports rdf:resource="http://lumify.io"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://lumify.io/twitter#mentioned -->
<owl:ObjectProperty rdf:about="http://lumify.io/twitter#mentioned">
<rdfs:label xml:lang="en">Mentioned</rdfs:label>
<rdfs:domain rdf:resource="http://lumify.io/twitter#tweet"/>
<rdfs:range rdf:resource="http://lumify.io/twitter#user"/>
</owl:ObjectProperty>
<!-- http://lumify.io/twitter#refUrl -->
<owl:ObjectProperty rdf:about="http://lumify.io/twitter#refUrl">
<rdfs:label xml:lang="en">Referenced URL</rdfs:label>
<rdfs:domain rdf:resource="http://lumify.io/twitter#tweet"/>
<rdfs:range rdf:resource="http://lumify.io/twitter#url"/>
</owl:ObjectProperty>
<!-- http://lumify.io/twitter#retweet -->
<owl:ObjectProperty rdf:about="http://lumify.io/twitter#retweet">
<rdfs:label xml:lang="en">Retweeted</rdfs:label>
<rdfs:domain rdf:resource="http://lumify.io/twitter#tweet"/>
<rdfs:range rdf:resource="http://lumify.io/twitter#tweet"/>
</owl:ObjectProperty>
<!-- http://lumify.io/twitter#tagged -->
<owl:ObjectProperty rdf:about="http://lumify.io/twitter#tagged">
<rdfs:label xml:lang="en">Tagged</rdfs:label>
<rdfs:range rdf:resource="http://lumify.io/twitter#hashtag"/>
<rdfs:domain rdf:resource="http://lumify.io/twitter#tweet"/>
</owl:ObjectProperty>
<!-- http://lumify.io/twitter#tweeted -->
<owl:ObjectProperty rdf:about="http://lumify.io/twitter#tweeted">
<rdfs:label xml:lang="en">Tweeted</rdfs:label>
<rdfs:range rdf:resource="http://lumify.io/twitter#tweet"/>
<rdfs:domain rdf:resource="http://lumify.io/twitter#user"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://lumify.io/twitter#profileImageUrl -->
<owl:DatatypeProperty rdf:about="http://lumify.io/twitter#profileImageUrl">
<rdfs:label xml:lang="en">Profile Image URL</rdfs:label>
<lumify:textIndexHints>NONE</lumify:textIndexHints>
<rdfs:domain rdf:resource="http://lumify.io/twitter#user"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://lumify.io/twitter#screenName -->
<owl:DatatypeProperty rdf:about="http://lumify.io/twitter#screenName">
<rdfs:label xml:lang="en">Screen Name</rdfs:label>
<lumify:textIndexHints>FULL_TEXT,EXACT_MATCH</lumify:textIndexHints>
<rdfs:domain rdf:resource="http://lumify.io/twitter#user"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://lumify.io/twitter#hashtag -->
<owl:Class rdf:about="http://lumify.io/twitter#hashtag">
<rdfs:label xml:lang="en">Hashtag</rdfs:label>
<rdfs:subClassOf rdf:resource="http://lumify.io/twitter#twitter"/>
<lumify:glyphIconFileName xml:lang="en">hashtag.png</lumify:glyphIconFileName>
<lumify:color xml:lang="en">rgb(28, 137, 28)</lumify:color>
</owl:Class>
<!-- http://lumify.io/twitter#profileImage -->
<owl:Class rdf:about="http://lumify.io/twitter#profileImage">
<rdfs:label xml:lang="en">Profile Image</rdfs:label>
<rdfs:subClassOf rdf:resource="http://lumify.io/twitter#twitter"/>
<lumify:displayType xml:lang="en">image</lumify:displayType>
<lumify:color xml:lang="en">rgb(176, 87, 53)</lumify:color>
</owl:Class>
<!-- http://lumify.io/twitter#tweet -->
<owl:Class rdf:about="http://lumify.io/twitter#tweet">
<rdfs:label xml:lang="en">Tweet</rdfs:label>
<rdfs:subClassOf rdf:resource="http://lumify.io/twitter#twitter"/>
<lumify:displayType xml:lang="en">document</lumify:displayType>
<lumify:color xml:lang="en">rgb(176, 87, 53)</lumify:color>
<lumify:glyphIconFileName xml:lang="en">tweet.png</lumify:glyphIconFileName>
</owl:Class>
<!-- http://lumify.io/twitter#twitter -->
<owl:Class rdf:about="http://lumify.io/twitter#twitter">
<rdfs:label xml:lang="en">Twitter</rdfs:label>
<lumify:color xml:lang="en">rgb(219, 63, 219)</lumify:color>
<lumify:glyphIconFileName xml:lang="en">tweet.png</lumify:glyphIconFileName>
</owl:Class>
<!-- http://lumify.io/twitter#url -->
<owl:Class rdf:about="http://lumify.io/twitter#url">
<rdfs:label xml:lang="en">URL</rdfs:label>
<rdfs:subClassOf rdf:resource="http://lumify.io/twitter#twitter"/>
<lumify:color xml:lang="en">rgb(203, 130, 4)</lumify:color>
<lumify:glyphIconFileName xml:lang="en">url.png</lumify:glyphIconFileName>
</owl:Class>
<!-- http://lumify.io/twitter#user -->
<owl:Class rdf:about="http://lumify.io/twitter#user">
<rdfs:label xml:lang="en">User</rdfs:label>
<rdfs:subClassOf rdf:resource="http://lumify.io/twitter#twitter"/>
<lumify:color xml:lang="en">rgb(23, 30, 239)</lumify:color>
<lumify:glyphIconFileName xml:lang="en">user.png</lumify:glyphIconFileName>
</owl:Class>
</rdf:RDF>
<!-- Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net -->
| Web Ontology Language | 4 | wulinyun/lumify | datasets/twitter/ontology/twitter.owl | [
"Apache-2.0"
] |
//This is the solution to http://codeforces.com/contest/897/problem/B
//B. Chtholly's request
#raw "template.cpy"
ll compose(ll half)
sz = 0;
aux = half
res = half
while aux
sz++;
res *= 10
res += aux%10
aux /= 10
return res
int main()
int k, p
cin >> k >> p
ll sum = 0
ll half = 1
while k--
sum += compose(half)
sum %= p
half++
cout << sum | COBOL | 4 | saviour07/CPY | Examples/Contest problems/897B. Chtholly's request/b.cpy | [
"MIT"
] |
e="/119/111/116/21/23/27/212/213/217/31/314/319/42/46/47/413/415/54/5"
e+="7/59/63/69/613/76/712/715/717/84/814/818/93/914/916/105/107/1014/"
e+="1015/1018/114/118/1116/1119/124/126/1210/131/132/138/1310/1316/13"
e+="19/1413/1418/1419/151/152/154/1511/1512/1516/1519/166/171/173/177"
e+="/1710/182/186/1813/1815/191/"s="/"g=0.001h=57.306i=1.57
x=:b z=x<g:o=i*z+(x>:done++)*atan(:a/(x+z))/h+g*(e-(s+:a+x+s)!=e)goto6
g=0.001
g=10^-3 | LOLCODE | 0 | Dude112113/Yolol | YololEmulator/Scripts/atanimpossible.lol | [
"MIT"
] |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Windows and Q closes active window
#q::
if !WinActive("ahk_class WorkerW")
WinClose, A
return
; Alt + Enter changes Window between maximized and minimized
!Enter::
WinGet, maximized, MinMax, A
if (maximized)
WinRestore, A
else
WinMaximize, A
return
| AutoHotkey | 3 | Thou-X/dotfiles | Windows/overrides.ahk | [
"MIT"
] |
# Set up env variables for testing
export AIO_NGINX_HOSTNAME=$TEST_AIO_NGINX_HOSTNAME
export AIO_NGINX_PORT_HTTP=$TEST_AIO_NGINX_PORT_HTTP
export AIO_NGINX_PORT_HTTPS=$TEST_AIO_NGINX_PORT_HTTPS
export AIO_ARTIFACT_PATH=$TEST_AIO_ARTIFACT_PATH
export AIO_BUILDS_DIR=$TEST_AIO_BUILDS_DIR
export AIO_DOMAIN_NAME=$TEST_AIO_DOMAIN_NAME
export AIO_GITHUB_ORGANIZATION=$TEST_AIO_GITHUB_ORGANIZATION
export AIO_GITHUB_REPO=$TEST_AIO_GITHUB_REPO
export AIO_GITHUB_TEAM_SLUGS=$TEST_AIO_GITHUB_TEAM_SLUGS
export AIO_SIGNIFICANT_FILES_PATTERN=$TEST_AIO_SIGNIFICANT_FILES_PATTERN
export AIO_TRUSTED_PR_LABEL=$TEST_AIO_TRUSTED_PR_LABEL
export AIO_PREVIEW_SERVER_HOSTNAME=$TEST_AIO_PREVIEW_SERVER_HOSTNAME
export AIO_PREVIEW_SERVER_PORT=$TEST_AIO_PREVIEW_SERVER_PORT
export AIO_ARTIFACT_MAX_SIZE=$TEST_AIO_ARTIFACT_MAX_SIZE
export AIO_CIRCLE_CI_TOKEN=TEST_CIRCLE_CI_TOKEN
export AIO_GITHUB_TOKEN=TEST_GITHUB_TOKEN
| Shell | 3 | coreyscherbing/angular | aio/aio-builds-setup/dockerbuild/scripts-sh/test-env.sh | [
"MIT"
] |
// setjmp.hb
// sizeof(jmp_buf)==156 on Linux/i386/glibc2.3.
typedef char[156] jmp_buf;
typedef char[156] sigjmp_buf;
extern int setjmp(jmp_buf buf);
extern int sigsetjmp(sigjmp_buf buf, int savesigs);
extern void longjmp(jmp_buf buf, int value);
extern void siglongjmp(sigjmp_buf buf, int value);
| Harbour | 3 | ueki5/cbc | import/setjmp.hb | [
"Unlicense"
] |
/*
* Copyright (c) 2020, Nico Weber <thakis@chromium.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Format.h>
#include <AK/StdLibExtras.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
const char* const g_usage = R"(Usage:
seq [-h|--help]
seq LAST
seq FIRST LAST
seq FIRST INCREMENT LAST
)";
static void print_usage(FILE* stream)
{
fputs(g_usage, stream);
return;
}
static double get_double(const char* name, const char* d_string, int* number_of_decimals)
{
char* end;
double d = strtod(d_string, &end);
if (d == 0 && end == d_string) {
warnln("{}: invalid argument \"{}\"", name, d_string);
print_usage(stderr);
exit(1);
}
if (const char* dot = strchr(d_string, '.'))
*number_of_decimals = strlen(dot + 1);
else
*number_of_decimals = 0;
return d;
}
int main(int argc, const char* argv[])
{
if (pledge("stdio", nullptr) < 0) {
perror("pledge");
return 1;
}
if (unveil(nullptr, nullptr) < 0) {
perror("unveil");
return 1;
}
for (int i = 1; i < argc; i++) {
if (strcmp(argv[i], "--help") == 0 || strcmp(argv[i], "-h") == 0) {
print_usage(stdout);
exit(0);
}
}
double start = 1, step = 1, end = 1;
int number_of_start_decimals = 0, number_of_step_decimals = 0, number_of_end_decimals = 0;
switch (argc) {
case 2:
end = get_double(argv[0], argv[1], &number_of_end_decimals);
break;
case 3:
start = get_double(argv[0], argv[1], &number_of_start_decimals);
end = get_double(argv[0], argv[2], &number_of_end_decimals);
break;
case 4:
start = get_double(argv[0], argv[1], &number_of_start_decimals);
step = get_double(argv[0], argv[2], &number_of_step_decimals);
end = get_double(argv[0], argv[3], &number_of_end_decimals);
break;
default:
warnln("{}: unexpected number of arguments", argv[0]);
print_usage(stderr);
return 1;
}
if (step == 0) {
warnln("{}: increment must not be 0", argv[0]);
return 1;
}
if (__builtin_isnan(start) || __builtin_isnan(step) || __builtin_isnan(end)) {
warnln("{}: start, step, and end must not be NaN", argv[0]);
return 1;
}
int number_of_decimals = max(number_of_start_decimals, max(number_of_step_decimals, number_of_end_decimals));
int n = (end - start) / step;
double d = start;
for (int i = 0; i <= n; ++i) {
char buf[40];
snprintf(buf, sizeof(buf), "%f", d);
if (char* dot = strchr(buf, '.')) {
if (number_of_decimals == 0)
*dot = '\0';
else if ((dot - buf) + 1 + number_of_decimals < (int)sizeof(buf))
dot[1 + number_of_decimals] = '\0';
}
outln("{}", buf);
d += step;
}
return 0;
}
| C++ | 4 | r00ster91/serenity | Userland/Utilities/seq.cpp | [
"BSD-2-Clause"
] |
# Copyright 2020 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.
# ==============================================================================
"""Test for utilities for collectives."""
from tensorflow.python.distribute import collective_util
from tensorflow.python.eager import test
class OptionsTest(test.TestCase):
def testCreateOptionsViaExportedAPI(self):
options = collective_util._OptionsExported(bytes_per_pack=1)
self.assertIsInstance(options, collective_util.Options)
self.assertEqual(options.bytes_per_pack, 1)
with self.assertRaises(ValueError):
collective_util._OptionsExported(bytes_per_pack=-1)
def testCreateOptionsViaHints(self):
with self.assertLogs() as cm:
options = collective_util.Hints(50, 1)
self.assertTrue(any("is deprecated" in msg for msg in cm.output))
self.assertIsInstance(options, collective_util.Options)
self.assertEqual(options.bytes_per_pack, 50)
self.assertEqual(options.timeout_seconds, 1)
if __name__ == "__main__":
test.main()
| Python | 4 | EricRemmerswaal/tensorflow | tensorflow/python/distribute/collective_util_test.py | [
"Apache-2.0"
] |
--
-- Copyright 2021 Apollo 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.
--
INSERT INTO `AccessKey` (`Id`, `AppId`, `Secret`, `IsEnabled`, `IsDeleted`, `DataChange_CreatedBy`, `DataChange_CreatedTime`, `DataChange_LastModifiedBy`, `DataChange_LastTime`)
VALUES
(1, 'someAppId', 'someSecret', 0, 0, 'apollo', '2019-12-19 10:28:40', 'apollo', '2019-12-19 10:28:40'),
(2, '100004458', 'c715cbc80fc44171b43732c3119c9456', 0, 0, 'apollo', '2019-12-19 10:39:54', 'apollo', '2019-12-19 14:46:35'),
(3, '100004458', '25a0e68d2a3941edb1ed3ab6dd0646cd', 0, 1, 'apollo', '2019-12-19 13:44:13', 'apollo', '2019-12-19 13:44:19'),
(4, '100004458', '4003c4d7783443dc9870932bebf3b7fe', 0, 0, 'apollo', '2019-12-19 13:43:52', 'apollo', '2019-12-19 13:44:21');
| SQL | 2 | lff0305/apollo | apollo-biz/src/test/resources/sql/accesskey-test.sql | [
"Apache-2.0"
] |
insert into tb values (6, 'b368aa46', 2278774058112363670);
insert into tb values (10, '2f7740bb', 5139107663487363545);
insert into tb values (2, '2f7740bb', 4697995520468569116);
insert into tb values (11, 'e11736bd', 2245277262894081901);
insert into tb values (9, 'ab1039d4', 527717207532938984);
insert into tb values (12, '33b2890f', 1567906363273787408);
insert into tb values (18, 'ef687f22', 98528361094185326);
insert into tb values (7, '25fd6ff7', 5078491022354751162);
insert into tb values (17, 'e11736bd', 698634420255853673);
insert into tb values (4, 'cbaa6d2c', 4917337574931482064);
insert into tb values (16, 'b368aa46', 4582033014967802424);
insert into tb values (5, '47e28e90', 8899318415307477476);
insert into tb values (19, 'ba35e4b8', 2722695561710163401);
insert into tb values (8, '91237eb6', 2034729321725932456);
insert into tb values (3, '25fd6ff7', 5679254964915196995);
insert into tb values (14, 'b2fbefca', 5229805299746981840);
insert into tb values (15, 'd414a9cc', 7693970512973630713);
insert into tb values (20, '31c5201f', 6219829340976037329);
insert into tb values (1, 'fe9199da', 4452124972317557238);
insert into tb values (13, '33b2890f', 323127448952599128);
| SQL | 2 | WizardXiao/tidb | br/tests/lightning_duplicate_detection/data/dup_detect.tb.0.sql | [
"Apache-2.0"
] |
@import "ui-variables";
.salesforce-welcome {
padding: 40px;
text-align: center;
h2 {
margin-top: -10px;
}
p {
margin: 15px auto;
width: 500px;
}
}
| Less | 4 | cnheider/nylas-mail | packages/client-app/internal_packages/nylas-private-salesforce/stylesheets/salesforce-welcome-view.less | [
"MIT"
] |
module.exports = [[/only differs in casing/, /a\.js/, /A\.js/]];
| JavaScript | 2 | 1shenxi/webpack | test/configCases/errors/case-emit/errors.js | [
"MIT"
] |
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "IFSharp"
#define MyAppVersion "3.0"
#define MyAppPublisher "F# Community"
#define MyAppURL "https://github.com/fsprojects/IfSharp"
#define MyAppExeName "ifsharp.exe"
#define BaseDirectory "."
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{4614F8B0-E5CA-4E5D-9F35-AB4D0ACEB3C0}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
ArchitecturesInstallIn64BitMode=x64
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\BayardRock\{#MyAppName}
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes
LicenseFile={#BaseDirectory}\LICENSE.txt
OutputDir={#BaseDirectory}\Install
OutputBaseFilename=setup
Compression=lzma
SolidCompression=yes
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
[Files]
Source: "{#BaseDirectory}\bin\*"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
[Icons]
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
| Inno Setup | 4 | rudihorn/IfSharp | ifsharpsetup.iss | [
"BSD-3-Clause"
] |
such foo
shh 1
wow
woof foo
| Dogescript | 0 | erinkeith/dogescript | test/spec/exports/assignment/object/source.djs | [
"MIT"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- ******************************************************************* -->
<!-- -->
<!-- © Copyright IBM Corp. 2010, 2012 -->
<!-- -->
<!-- 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. -->
<!-- -->
<!-- ******************************************************************* -->
<faces-config>
<faces-config-extension>
<namespace-uri>http://www.ibm.com/xsp/coreex</namespace-uri>
<default-prefix>xe</default-prefix>
<designer-extension>
<control-subpackage-name>dojo</control-subpackage-name>
</designer-extension>
</faces-config-extension>
<!-- Start of Dojo Controls Properties -->
<group>
<!-- key-suffix: dojo_widgetBase_tooltip -->
<group-type>com.ibm.xsp.extlib.group.dojo.widgetBase.tooltip</group-type>
<property>
<!-- key: property.tooltip. -->
<description>When the control "title" property is used for a tab label, accordion pane title, etc. this specifies the tooltip to appear when the mouse is hovered over that text.</description>
<display-name>Tooltip</display-name>
<property-name>tooltip</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<localizable>true</localizable>
<designer-extension>
<category>dojo</category>
</designer-extension>
</property-extension>
</property>
<group-extension>
<designer-extension>
<tags>
group-in-control
</tags>
</designer-extension>
</group-extension>
</group>
<group>
<!-- key-suffix: dojo_widgetBase_tooltip -->
<group-type>com.ibm.xsp.extlib.group.dojo.widgetBase.tooltip.deprecated</group-type>
<!-- Same as above only marked as deprecated. -->
<property>
<!-- key: property.tooltip. -->
<description>When the control "title" property is used for a tab label, accordion pane title, etc. this specifies the tooltip to appear when the mouse is hovered over that text.</description>
<display-name>Tooltip</display-name>
<property-name>tooltip</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<!-- This property is deprecated in mobile controls since 9.0.0,
because the tooltip property doesn't exist on mobile controls,
and because you can't hover to see a tooltip on touch-screen
devices. -->
<is-deprecated>true</is-deprecated>
<localizable>true</localizable>
<designer-extension>
<category>dojo</category>
</designer-extension>
</property-extension>
</property>
<group-extension>
<designer-extension>
<tags>
group-in-control
</tags>
</designer-extension>
</group-extension>
</group>
<group>
<!-- key-suffix: dojo_widgetBase -->
<group-type>com.ibm.xsp.extlib.group.dojo.widgetBase</group-type>
<group-type-ref>com.ibm.xsp.group.core</group-type-ref>
<group-type-ref>com.ibm.xsp.group.i18n</group-type-ref>
<group-type-ref>com.ibm.xsp.extlib.group.dojo.widgetBase.tooltip</group-type-ref>
<group-extension>
<designer-extension>
<tags>
group-in-control
</tags>
</designer-extension>
</group-extension>
</group>
<group>
<!-- key-suffix: dojo_widget -->
<group-type>com.ibm.xsp.extlib.group.dojo.widget.events.prop.onClick</group-type>
<property>
<description>JavaScript code executed when a pointer control is clicked over this control</description>
<display-name>Click Script</display-name>
<property-name>onClick</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<group-extension>
<designer-extension>
<tags>
group-in-control
</tags>
</designer-extension>
</group-extension>
</group>
<group>
<!-- key-suffix: dojo_widget -->
<group-type>com.ibm.xsp.extlib.group.dojo.widget</group-type>
<!-- Properties -->
<property>
<description>If true, the control can not be draggable.</description>
<display-name>Drag Restriction</display-name>
<property-name>dragRestriction</property-name>
<property-class>boolean</property-class>
<property-extension>
<designer-extension>
<category>dojo</category>
</designer-extension>
</property-extension>
</property>
<property>
<description>WAI ARIA provides a collection of accessibility roles which are used to support assistive technologies. Attaching a role gives assistive technologies information about how to handle each UI element or area. In addition to ARIA roles, a set of navigation roles from the XHTML Role Attribute Module are also supported. An element may have a navigation role in addition to an ARIA role.</description>
<display-name>WAI ARIA Role</display-name>
<property-name>waiRole</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>accessibility</category>
</designer-extension>
</property-extension>
</property>
<property>
<description>WAI ARIA provides a collection of accessibility states and properties which are used to support assistive technologies. The state is specified as a state name and value pair. The state is separated from the value using the hyphen (-) character.</description>
<display-name>WAI ARIA State</display-name>
<property-name>waiState</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>accessibility</category>
</designer-extension>
</property-extension>
</property>
<!-- Start of Dojo Controls Events -->
<property>
<description>JavaScript code executed when this control loses focus</description>
<display-name>Focus Off Script</display-name>
<property-name>onBlur</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>focus-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control is clicked over this control</description>
<display-name>Click Script</display-name>
<property-name>onClick</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed to determine whether this control should be closed if requested.</description>
<display-name>Close Script</display-name>
<property-name>onClose</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>dojo-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when this control becomes the selected pane in a layout container or to indicate the display of a Dialog, Tooltip Dialog or Title Pane.</description>
<display-name>Show Script</display-name>
<property-name>onShow</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>dojo-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when another control becomes the selected pane in a layout container or to indicate the hiding of a Dialog, Tooltip Dialog or Title Pane.</description>
<display-name>Hide Script</display-name>
<property-name>onHide</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>dojo-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control is double clicked over this control</description>
<display-name>Double Click Script</display-name>
<property-name>onDblClick</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when this control receives focus</description>
<display-name>Focus On Script</display-name>
<property-name>onFocus</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>focus-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a key is pressed down over this control</description>
<display-name>Key Down Script</display-name>
<property-name>onKeyDown</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>key-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a key is pressed and released over this control.</description>
<display-name>Key Press Script</display-name>
<property-name>onKeyPress</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>key-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a key is released over this control</description>
<display-name>Key Up Script</display-name>
<property-name>onKeyUp</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>key-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control is pressed down over this control</description>
<display-name>Mouse Down Script</display-name>
<property-name>onMouseDown</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control enters this control</description>
<display-name>Mouse Enter Script</display-name>
<property-name>onMouseEnter</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control leaves from this control</description>
<display-name>Mouse Leave Script</display-name>
<property-name>onMouseLeave</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control is moved within this control</description>
<display-name>Mouse Move Script</display-name>
<property-name>onMouseMove</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control is moved away from this control</description>
<display-name>Mouse Out Script</display-name>
<property-name>onMouseOut</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control is moved onto this control</description>
<display-name>Mouse Over Script</display-name>
<property-name>onMouseOver</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<property>
<description>JavaScript code executed when a pointer control is released over this control</description>
<display-name>Mouse Up Script</display-name>
<property-name>onMouseUp</property-name>
<property-class>java.lang.String</property-class>
<property-extension>
<designer-extension>
<category>events</category>
<event>true</event>
<subcategory>mouse-event</subcategory>
</designer-extension>
</property-extension>
</property>
<!-- End of Dojo Controls Events -->
<group-extension>
<designer-extension>
<tags>
todo
group-in-control
</tags>
</designer-extension>
</group-extension>
</group>
<!-- End of Dojo Controls Properties -->
<!-- Start of Base Dojo Controls -->
<component>
<description>The base Dojo widget that all widgets inherit from</description>
<display-name>Dojo Widget Base</display-name>
<component-type>com.ibm.xsp.extlib.dojo.WidgetBase</component-type>
<component-class>com.ibm.xsp.extlib.component.dojo.UIDojoWidgetBase</component-class>
<group-type-ref>com.ibm.xsp.extlib.group.FacesDojoComponent</group-type-ref>
<!-- Note from 9.0.0, deprecating the tooltip property in UIDojoWidgetBase,
while making it still be non-deprecated in UIDojoWidget. -->
<group-type-ref>com.ibm.xsp.group.core</group-type-ref>
<group-type-ref>com.ibm.xsp.group.i18n</group-type-ref>
<!-- <group-type-ref>com.ibm.xsp.extlib.group.dojo.widgetBase.tooltip</group-type-ref> -->
<group-type-ref>com.ibm.xsp.extlib.group.dojo.widgetBase.tooltip.deprecated</group-type-ref>
<component-extension>
<component-family>com.ibm.xsp.extlib.dojo.WidgetBase</component-family>
</component-extension>
</component>
<component>
<description>Inherits from Dojo Widget Base and adds all the Dojo events. Most widgets will inherit from this, except for some of the controls for mobile devices.</description>
<display-name>Dojo Widget</display-name>
<component-type>com.ibm.xsp.extlib.dojo.Widget</component-type>
<component-class>com.ibm.xsp.extlib.component.dojo.UIDojoWidget</component-class>
<!-- Override the base deprecated tooltip property with a non-deprecated tooltip property -->
<group-type-ref>com.ibm.xsp.extlib.group.dojo.widgetBase.tooltip</group-type-ref>
<group-type-ref>com.ibm.xsp.extlib.group.dojo.widget</group-type-ref>
<component-extension>
<component-family>com.ibm.xsp.extlib.dojo.Widget</component-family>
<base-component-type>com.ibm.xsp.extlib.dojo.WidgetBase</base-component-type>
</component-extension>
</component>
</faces-config>
| XPages | 4 | jesse-gallagher/XPagesExtensionLibrary | extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/src/com/ibm/xsp/extlib/config/raw-extlib-dojo-base.xsp-config | [
"Apache-2.0"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.