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
sequencelengths 1
8
|
---|---|---|---|---|---|
// WinFunEnv is an Attack/Release envelope built around window functions!
// ~options
//
// .set (duration, duration), default (0.0, 0.0)
// sets duration for attack and release phase
//
// .attackTime (duration), default 0.0
// sets length for the attack phase
//
// .releaseTime (duration), default 0.0
// sets length for the release phase
//
// ~ the following window functions are available to use as envelopes
// ~ certain functions allow for custom coefficient values (ie setBlackman(0.64) )
//
// setBlackman()
// setBlackman(float a)
// setBlackmanHarris()
// setBlackmanDerivative (float a0, float a1, float a2, float a3);
// setBlackmanNutall()
// setExponential()
// setExponential(a)
// setHann()
// setHannPoisson()
// setHannPoisson(a)
// setNutall()
// setParzen()
// setPoisson()
// setPoisson(float a)
// setTukey()
// setTukey(float a)
// setWelch
//
// ~ hopefully further updates will see more windows being added (Kaiser, etc)
Noise nois => WinFuncEnv win1 => dac;
fun void playWindow(WinFuncEnv @ win, dur attack, dur release) {
win.attackTime(attack);
win.releaseTime(release);
win.keyOn();
attack => now;
win.keyOff();
release => now;
}
// sets Blackman Envelope with a default value of 0.16
win1.setBlackman();
<<< "Blackman Envelope with default value of 0.16 on white noise", "" >>>;
playWindow(win1, 2.5::second, 2.5::second);
// sets Blackman Envelope with a custom value
win1.setBlackman(Math.random2f(0.05, 0.25));
<<< "Blackman Envelope with a random custom value on white noise.", "" >>>;
playWindow(win1, 2.5::second, 2.5::second);
<<< "Blackman Envelope with a short attack and a long release..", "" >>>;
playWindow(win1, 100::ms, 3::second);
<<< "Blackman Envelope with a long attack and a short release..", "" >>>;
playWindow(win1, 3::second, 100::ms);
// sets BlackmanHarris Envelope
win1.setBlackmanHarris();
<<< "BlackmanHarris Envelope on white noise.", "" >>>;
playWindow(win1, 2.5::second, 2.5::second);
// replacing noise with a sine wave
nois =< win1;
SinOsc sin => win1;
// sets Parzen Envelope
win1.setParzen();
<<< "Parzen Window used for amplitude modulation on a sine wave", "" >>>;
for (int i; i < 25000; i++) {
playWindow(win1, 0.1::ms, 0.1::ms);
}
// sets Hann Envelope
win1.setHann();
<<< "Hann Window used for amplitude modulation on a sine wave", "" >>>;
for (int i; i < 25000; i++) {
playWindow(win1, 0.1::ms, 0.1::ms);
}
// removing sine wave, adding noise and a second envelope to be in series with the first
sin =< win1;
nois => win1 =< dac;
win1 => WinFuncEnv win2 => dac;
<<< "Two envelopes, one Parzen and one Welch in series with each other with slightly different envelope times.", "" >>>;
win1.setParzen();
win2.setWelch();
fun void loop(WinFuncEnv @ win, dur envTime) {
repeat(500) {
playWindow(win, envTime, envTime);
}
}
spork ~ loop(win1, 70::ms);
loop(win2, 73::ms);
| ChucK | 5 | ccdarabundit/chugins | WinFuncEnv/winfuncenv-help.ck | [
"MIT"
] |
fn main() { format!("{:?}", None); }
//~^ ERROR type annotations needed [E0282]
| Rust | 2 | Eric-Arellano/rust | src/test/ui/issues/issue-5062.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
set(ENV{OLD_PO_FILE_INPUT} yes)
execute_process(
COMMAND ${MSGFMT_PRG} -o ${MO_FILE} ${PO_FILE}
ERROR_VARIABLE err
RESULT_VARIABLE res)
if(NOT res EQUAL 0)
message(FATAL_ERROR "msgfmt failed to run correctly: ${err}")
endif()
| CMake | 2 | uga-rosa/neovim | cmake/RunMsgfmt.cmake | [
"Vim"
] |
FancySpec describe: Proxies DistributingProxy with: {
it: "forwards messages to each element in turn" when: {
p = Proxies DistributingProxy new: [1,2,3]
p is: 1
p is: 2
p is: 3
# and again
p is: 1
p is: 2
p is: 3
# and once more
p class is: Fixnum
p inspect is: "2"
p to_s is: "3"
}
it: "waits appropriately if all elements are currently in use" when: {
p = Proxies DistributingProxy new: ["foo", "bar", "baz"]
results = []
threads = (1..10) map: |i| {
Thread new: {
results << (i, p * 2)
}
}
threads each: @{ join }
results size is: 10
}
} | Fancy | 4 | bakkdoor/fancy | tests/distributing_proxy.fy | [
"BSD-3-Clause"
] |
{var $currentNamespace = ''}
{var $namespaceParts = explode('\\', $namespace)}
<div class="pull-left type">
<span n:class="label,
$type == 'Namespace' ? 'label-danger',
$type == 'Trait' ? 'label-warning',
$type == 'Interface' ? 'label-info',
$type == 'Class' ? 'label-success',
$type == 'Function' ? 'label-primary'
">{$type}</span>
</div>
<ol class="breadcrumb pull-left">
{foreach $namespaceParts as $namespacePart}
{if $currentNamespace}
{var $currentNamespace = $currentNamespace . '\\' . $namespacePart}
{else}
{var $currentNamespace = $namespacePart}
{/if}
<li>
<a href="{$currentNamespace|linkNamespace}">{$namespacePart}</a>
</li>
{sep}
<li class="backslash">\</li>
{/sep}
{/foreach}
{ifset $name}
<li class="backslash">\</li>
<li class="active">{$name}</li>
{/ifset}
</ol>
| Latte | 3 | pujak17/tets | packages/ThemeDefault/src/partial/breadcrumbs.latte | [
"MIT"
] |
/*
* Copyright (c) 2021, Andreas Kling <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/RefCounted.h>
namespace Kernel {
// ListedRefCounted<T> is a slot-in replacement for RefCounted<T> to use in classes
// that add themselves to a SpinlockProtected<IntrusiveList> when constructed.
// The custom unref() implementation here ensures that the the list is locked during
// unref(), and that the T is removed from the list before ~T() is invoked.
template<typename T>
class ListedRefCounted : public RefCountedBase {
public:
bool unref() const
{
auto new_ref_count = T::all_instances().with([&](auto& list) {
auto new_ref_count = deref_base();
if (new_ref_count == 0)
list.remove(const_cast<T&>(static_cast<T const&>(*this)));
return new_ref_count;
});
if (new_ref_count == 0) {
call_will_be_destroyed_if_present(static_cast<const T*>(this));
delete const_cast<T*>(static_cast<T const*>(this));
} else if (new_ref_count == 1) {
call_one_ref_left_if_present(static_cast<T const*>(this));
}
return new_ref_count == 0;
}
};
}
| C | 4 | r00ster91/serenity | Kernel/Library/ListedRefCounted.h | [
"BSD-2-Clause"
] |
package sample;
import static java.lang.Thread.sleep;
import akka.dispatch.verification.Instrumenter;
import akka.dispatch.verification.WrappedCancellable;
import akka.dispatch.verification.ShutdownHandler;
import akka.actor.ActorRef;
import akka.actor.ScalaActorRef;
import akka.actor.InternalActorRef;
import akka.actor.Actor;
import akka.actor.Props;
import akka.actor.ActorCell;
import akka.actor.ActorSystem;
import akka.actor.ActorSystemImpl;
import akka.actor.ActorContext;
import akka.actor.Scheduler;
import akka.actor.Cancellable;
import akka.actor.LightArrayRevolverScheduler;
import akka.actor.LocalActorRefProvider;
import akka.actor.VirtualPathContainer;
import akka.actor.ActorPath;
import akka.pattern.AskSupport;
import akka.pattern.PromiseActorRef;
import akka.dispatch.Envelope;
import akka.dispatch.MessageQueue;
import akka.dispatch.MessageDispatcher;
import akka.dispatch.Mailbox;
import akka.dispatch.MonitorableThreadFactory;
import akka.event.BusLogging;
import scala.concurrent.impl.CallbackRunnable;
import scala.concurrent.duration.FiniteDuration;
import scala.concurrent.ExecutionContext;
import scala.Function0;
import scala.runtime.BoxedUnit;
import java.lang.Runnable;
privileged public aspect WeaveActor {
Instrumenter inst = Instrumenter.apply();
// -------- Logging Interposition for Synoptic --------------
before(String msg, BusLogging bus):
execution(* akka.event.BusLogging.notifyError(java.lang.String)) &&
args(msg) && this(bus) {
inst.notify_log_message(bus.logSource() + " " + msg);
}
before(String msg, BusLogging bus):
execution(* akka.event.BusLogging.notifyWarning(java.lang.String)) &&
args(msg) && this(bus) {
inst.notify_log_message(bus.logSource() + " " + msg);
}
before(String msg, BusLogging bus):
execution(* akka.event.BusLogging.notifyInfo(java.lang.String)) &&
args(msg) && this(bus) {
inst.notify_log_message(bus.logSource() + " " + msg);
}
before(String msg, BusLogging bus):
execution(* akka.event.BusLogging.notifyDebug(java.lang.String)) &&
args(msg) && this(bus) {
inst.notify_log_message(bus.logSource() + " " + msg);
}
// ----------------------
// Don't allow LightArrayRevolverScheduler to restart its timer thread.
// TODO(cs): much cleaner would be to not use Thread.stop(), and figure out
// what's really causing this memory leak...
Object around(MonitorableThreadFactory me):
execution(* akka.dispatch.MonitorableThreadFactory.newThread(Runnable)) &&
this(me) {
if (me.name().contains("scheduler") && me.counter().get() > 1) {
return null;
}
return proceed(me);
}
// Prevent memory leaks when the ActorSystem crashes?
Object around(ActorSystemImpl me):
execution(* akka.actor.ActorSystemImpl.uncaughtExceptionHandler(..)) &&
this(me) {
return ShutdownHandler.getHandler(me);
}
before(ActorCell me, Object msg):
execution(* akka.actor.ActorCell.receiveMessage(Object)) &&
args(msg, ..) && this(me) {
inst.beforeMessageReceive(me, msg);
}
// N.B. the order of the next two advice is important: need to catch throws
// before after
after(ActorCell me, Object msg) throwing (Exception ex):
execution(* akka.actor.ActorCell.receiveMessage(Object)) &&
args(msg, ..) && this(me) {
inst.actorCrashed(me.self().path().name(), ex);
}
after(ActorCell me, Object msg):
execution(* akka.actor.ActorCell.receiveMessage(Object)) &&
args(msg, ..) && this(me) {
inst.afterMessageReceive(me, msg);
}
after(Mailbox me):
execution(* akka.dispatch.Mailbox.run()) && this(me) {
inst.mailboxIdle(me);
}
pointcut dispatchOperation(MessageDispatcher me, ActorCell receiver, Envelope handle):
execution(* akka.dispatch.MessageDispatcher.dispatch(..)) &&
args(receiver, handle, ..) && this(me);
Object around(MessageDispatcher me, ActorCell receiver, Envelope handle):
dispatchOperation(me, receiver, handle) {
if (inst.aroundDispatch(me, receiver, handle))
return proceed(me, receiver, handle);
else
return null;
}
// Interposition on `ask`. See this doc for more details:
// https://docs.google.com/document/d/1_LUceHvQoamlBtNNbqA4CxBH-zvUKlZhnSjLwTc16q4/edit#
pointcut receiveAnswer(PromiseActorRef me, Object message, ActorRef sender):
execution(public void akka.pattern.PromiseActorRef.$bang(Object, ActorRef)) &&
args(message, sender) && this(me);
Object around(PromiseActorRef me, Object message, ActorRef sender):
receiveAnswer(me, message, sender) {
if (inst.receiveAskAnswer(me, message, sender)) {
Object ret = proceed(me, message, sender);
inst.afterReceiveAskAnswer(me, message, sender);
return ret;
}
return null;
}
// Sanity check: make sure we don't allocate two temp actors at the same
// time with the same name.
before(VirtualPathContainer me, String name, InternalActorRef ref):
execution(* VirtualPathContainer.addChild(String, InternalActorRef)) &&
this(me) && args(name, ref) {
if (me.children.containsKey(name)) {
System.err.println("WARNING: temp name already taken: " + name);
}
}
/*
For debugging redundant temp names:
before(VirtualPathContainer me, String name, InternalActorRef ref):
execution(* VirtualPathContainer.removeChild(String, InternalActorRef)) &&
this(me) && args(name, ref) {
System.out.println("removeChild: " + name);
}
before(VirtualPathContainer me, String name):
execution(* VirtualPathContainer.removeChild(String)) &&
this(me) && args(name) {
System.out.println("removeChild: " + name);
}
*/
// Interposition on the code that assigns IDs to temporary actors. See this
// doc for more details:
// https://docs.google.com/document/d/1rAM8EEy3WnLRhhPROvHmBhAREv0rmihz0Gw0GgF1xC4/edit#
pointcut tempPath(LocalActorRefProvider me):
execution(public ActorPath LocalActorRefProvider.tempPath()) && this(me);
Object around(LocalActorRefProvider me): tempPath(me) {
return inst.assignTempPath(me.tempNode);
}
// newActor is invoked before preStart is called!
after(ActorCell me):
execution(* akka.actor.ActorCell.newActor()) &&
this(me) {
inst.new_actor(me.system(), me.props, me.self);
}
// after preStart has been called, i.e. actor is ready to receive messages.
after(ActorCell me):
execution(* akka.actor.ActorCell.create(..)) &&
this(me) {
inst.preStartCalled(me.self);
}
// Block until the actor has actually been created and preStart has been invoked!
// (which is done asynchronously)
after(ActorSystem me, Props props) returning(ActorRef actor):
execution(ActorRef akka.actor.ActorSystem.actorOf(Props)) &&
args(props) && this(me) {
inst.blockUntilPreStartCalled(actor);
}
// Block until the actor has actually been created and preStart has been invoked!
// (which is done asynchronously)
after(ActorSystem me, Props props, String name) returning(ActorRef actor):
execution(ActorRef akka.actor.ActorSystem.actorOf(Props, String)) &&
args(props, name) && this(me) {
inst.blockUntilPreStartCalled(actor);
}
// Block until the actor has actually been created and preStart has been invoked!
// (which is done asynchronously)
after(ActorContext me, Props props) returning(ActorRef actor):
execution(ActorRef akka.actor.ActorContext.actorOf(Props)) &&
args(props) && this(me) {
inst.blockUntilPreStartCalled(actor);
}
// Block until the actor has actually been created and preStart has been invoked!
// (which is done asynchronously)
after(ActorContext me, Props props, String name) returning(ActorRef actor):
execution(ActorRef akka.actor.ActorContext.actorOf(Props, String)) &&
args(props, name) && this(me) {
inst.blockUntilPreStartCalled(actor);
}
Object around(ActorRef me, Object msg, ActorRef sender):
execution(* akka.actor.ScalaActorRef.$bang(Object, ActorRef)) &&
args(msg, sender) && this(me) {
if (inst.tell(me, msg, sender)) {
return proceed(me, msg, sender);
}
return null;
}
// Override akka.actor.Scheduler.schedulerOnce
pointcut scheduleOnce(LightArrayRevolverScheduler me, FiniteDuration delay, ActorRef receiver, Object msg, ExecutionContext exc, ActorRef sender):
execution(public * akka.actor.LightArrayRevolverScheduler.scheduleOnce(FiniteDuration,ActorRef,Object,ExecutionContext,ActorRef)) &&
args(delay, receiver, msg, exc, sender) && this(me);
// Never actually proceed(), just schedule our own timer, which does not use
// ! directly, but instead calls enqueue_message..
Object around(LightArrayRevolverScheduler me, FiniteDuration delay, ActorRef receiver, Object msg, ExecutionContext exc, ActorRef sender):
scheduleOnce(me, delay, receiver, msg, exc, sender) {
if (!inst.actorKnown(receiver)) {
return proceed(me,delay,receiver,msg,exc,sender);
}
class MyRunnable implements java.lang.Runnable {
// Make it a no-op!
public void run() {
}
}
MyRunnable runnable = new MyRunnable();
Cancellable c = new WrappedCancellable(
me.scheduleOnce(delay, runnable, exc), receiver.path().name(), msg);
inst.registerCancellable(c, false, receiver.path().name(), msg);
return c;
}
// Override akka.actor.Scheduler.scheduler
pointcut schedule(LightArrayRevolverScheduler me, FiniteDuration delay, FiniteDuration interval, ActorRef receiver, Object msg, ExecutionContext exc, ActorRef sender):
execution(public * akka.actor.LightArrayRevolverScheduler.schedule(FiniteDuration,FiniteDuration,ActorRef,Object,ExecutionContext,ActorRef)) &&
args(delay, interval, receiver, msg, exc, sender) && this(me);
// Never actually proceed(), just schedule our own timer, which does not use
// ! directly, but instead calls enqueue_message..
Object around(LightArrayRevolverScheduler me, FiniteDuration delay, FiniteDuration interval, ActorRef receiver, Object msg, ExecutionContext exc, ActorRef sender):
schedule(me, delay, interval, receiver, msg, exc, sender) {
if (!inst.actorKnown(receiver)) {
return proceed(me,delay,interval,receiver,msg,exc,sender);
}
class MyRunnable implements java.lang.Runnable {
// Make it a no-op!
public void run() {
}
}
MyRunnable runnable = new MyRunnable();
Cancellable c = new WrappedCancellable(
me.schedule(delay, interval, runnable, exc), receiver.path().name(), msg);
inst.registerCancellable(c, true, receiver.path().name(), msg);
return c;
}
// Override akka.actor.Scheduler.scheduler(block)
pointcut scheduleBlock(LightArrayRevolverScheduler me, FiniteDuration delay, FiniteDuration interval, scala.Function0<scala.runtime.BoxedUnit> block, ExecutionContext exc):
execution(public * schedule(scala.concurrent.duration.FiniteDuration, scala.concurrent.duration.FiniteDuration, scala.Function0<scala.runtime.BoxedUnit>, scala.concurrent.ExecutionContext)) &&
args(delay, interval, block, exc) && this(me);
// Wrap the function in a special "Message" wrapper, that appears to
// STS2 schedulers like a message, but which the Instrumenter understands as a
// function to be invoked rather than a message to be sent.
// TODO(cs): issue: no receiver.
Object around(LightArrayRevolverScheduler me, FiniteDuration delay, FiniteDuration interval, scala.Function0<scala.runtime.BoxedUnit> block, ExecutionContext exc):
scheduleBlock(me, delay, interval, block, exc) {
if (!inst.actorSystemInitialized() || Instrumenter.akkaInternalCodeBlockSchedule()) {
return proceed(me, delay, interval, block, exc);
}
class MyRunnable implements java.lang.Runnable {
// Make it a no-op!
public void run() {
}
}
MyRunnable runnable = new MyRunnable();
Cancellable c = new WrappedCancellable(me.schedule(delay, interval, runnable, exc), "ScheduleFunction", block);
inst.registerCancellable(c, true, "ScheduleFunction", block);
return c;
}
// Override akka.actor.Scheduler.scheduler(block)
pointcut scheduleOnceBlock(LightArrayRevolverScheduler me, FiniteDuration delay, scala.Function0<scala.runtime.BoxedUnit> block, ExecutionContext exc):
execution(public * scheduleOnce(scala.concurrent.duration.FiniteDuration, scala.Function0<scala.runtime.BoxedUnit>, scala.concurrent.ExecutionContext)) &&
args(delay, block, exc) && this(me);
// Wrap the function in a special "Message" wrapper, that appears to
// STS2 schedulers like a message, but which the Instrumenter understands as a
// function to be invoked rather than a message to be sent.
// TODO(cs): issue: no receiver.
Object around(LightArrayRevolverScheduler me, FiniteDuration delay, scala.Function0<scala.runtime.BoxedUnit> block, ExecutionContext exc):
scheduleOnceBlock(me, delay, block, exc) {
if (!inst.actorSystemInitialized()) {
return proceed(me, delay, block, exc);
}
class MyRunnable implements java.lang.Runnable {
// Make it a no-op!
public void run() {
}
}
MyRunnable runnable = new MyRunnable();
if (Instrumenter.akkaInternalCodeBlockSchedule()) {
// Don't ever allow the `ask` timer to expire
return me.scheduleOnce(delay, runnable, exc);
}
Cancellable c = new WrappedCancellable(me.scheduleOnce(delay, runnable, exc), "ScheduleFunction", block);
inst.registerCancellable(c, false, "ScheduleFunction", block);
return c;
}
}
| AspectJ | 4 | NetSys/demi | src/main/aspectj/WeaveActor.aj | [
"BSD-2-Clause-FreeBSD"
] |
/*##############################################################################
HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
############################################################################## */
infile := dataset([
{'RTC AS RECEIVERCONSERVATOR OF CARTERET SAVINGS BANK FA SUCCESSOR IN INTEREST TO OR FORMERLY KNOWN AS WESTERN FEDERA'},
{''}
], { string line });
PATTERN ws := ' ';
PATTERN word_as := ws 'AS' ws;
PATTERN name := min(ANY+);
PATTERN before_as := name word_as;
pattern sentance := before_as ;
results :=
record
// MATCHTEXT;
MATCHTEXT(before_as);
end;
//Return first matching sentance that we can find
output(PARSE(infile,line,sentance,results));
| ECL | 3 | miguelvazq/HPCC-Platform | ecl/regress/pat14.ecl | [
"Apache-2.0"
] |
// rustfmt-indent_style: Visual
// Chain indent
fn main() {
let lorem = ipsum.dolor()
.sit()
.amet()
.consectetur()
.adipiscing()
.elite();
}
| Rust | 3 | mbc-git/rust | src/tools/rustfmt/tests/target/configs/indent_style/visual_chain.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
--TEST--
Test array_walk() function : basic functionality - associative array
--FILE--
<?php
echo "*** Testing array_walk() : basic functionality ***\n";
// associative array
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
function test_alter(&$item, $key, $prefix)
{
// dump the arguments to check that they are passed
// with proper type
var_dump($item); // value
var_dump($key); // key
var_dump($prefix); // additional argument passed to callback function
echo "\n"; // new line to separate the output between each element
}
function test_print($item, $key)
{
// dump the arguments to check that they are passed
// with proper type
var_dump($item); // value
var_dump($key); // key
echo "\n"; // new line to separate the output between each element
}
echo "-- Using array_walk with default parameters to show array contents --\n";
var_dump(array_walk($fruits, 'test_print'));
echo "-- Using array_walk with one optional parameter to modify contents --\n";
var_dump (array_walk($fruits, 'test_alter', 'fruit'));
echo "-- Using array_walk with default parameters to show modified array contents --\n";
var_dump (array_walk($fruits, 'test_print'));
echo "Done";
?>
--EXPECT--
*** Testing array_walk() : basic functionality ***
-- Using array_walk with default parameters to show array contents --
string(5) "lemon"
string(1) "d"
string(6) "orange"
string(1) "a"
string(6) "banana"
string(1) "b"
string(5) "apple"
string(1) "c"
bool(true)
-- Using array_walk with one optional parameter to modify contents --
string(5) "lemon"
string(1) "d"
string(5) "fruit"
string(6) "orange"
string(1) "a"
string(5) "fruit"
string(6) "banana"
string(1) "b"
string(5) "fruit"
string(5) "apple"
string(1) "c"
string(5) "fruit"
bool(true)
-- Using array_walk with default parameters to show modified array contents --
string(5) "lemon"
string(1) "d"
string(6) "orange"
string(1) "a"
string(6) "banana"
string(1) "b"
string(5) "apple"
string(1) "c"
bool(true)
Done
| PHP | 4 | NathanFreeman/php-src | ext/standard/tests/array/array_walk_basic2.phpt | [
"PHP-3.01"
] |
<h4><a href="${current}" target="_blank">ProblemReport</a></h4>
<table rules="all" border="1" >
<tr>
<td>Type</td>
<td>Total Count</td>
<td>Link</td>
</tr>
<#list types as item>
<tr>
<td>${item.type}</td>
<td style="text-align:right">${item.count}</td>
<td style="text-align:right"><a href="${item.url}" target="_blank">Graph</a></td>
</tr>
</#list>
</table>
| FreeMarker | 3 | woozhijun/cat | cat-home/src/main/resources/freemaker/problem.ftl | [
"Apache-2.0"
] |
<!--
If you are reading the source wikitext of the main page:
This page is created by Vagrant, but it is safe to do changes by editing it.
Automatic updates will happen via [[Template:Main Page]].
If you are reading puppet/modules/mediawiki/files/main_page.wiki:
DO NOT MODIFY THIS FILE! Updates would cause all local changes to be overwritten.
If you want to add content to the main page, use main_page_template.wiki instead.
-->
{{Main Page}} | MediaWiki | 1 | mitre/mediawiki-vagrant | puppet/modules/mediawiki/files/main_page.wiki | [
"FSFAP"
] |
%!PS-Adobe-3.0
%%Title: metal_stack.ps
%%Creator: XCircuit v0.0 rev-145403803
%%CreationDate: Wed Jun 17 12:42:51 2020
%%Pages: 7
%%BoundingBox: 0 0 612 792
%%DocumentNeededResources: font Times-Roman Times-RomanISO Symbol
%%EndComments
%%BeginProlog
%
% PostScript prolog for output from xcircuit
% Version: 3.9
%
% Electrical circuit (and otherwise general) drawing program
%
% Written by Tim Edwards 8/5/93--4/12/16 ([email protected])
% The Johns Hopkins University (1993-2004)
% MultiGiG, Inc. (2004-2012)
% Open Circuit Design (2012-2016)
%
%%BeginResource: procset XCIRCproc 3.9 1
%
% supporting definitions --- these are the primary xcircuit types.
/XCIRCsave save def
/topmat matrix currentmatrix def
/fontslant { /slant exch def [1 0 slant 1 0 0]
exch findfont exch makefont dup length dict /ndict exch def
{ 1 index /FID ne { ndict 3 1 roll put } { pop pop } ifelse } forall
ndict definefont pop} def
/ul { count 0 gt { dup type /stringtype eq showflag 1 eq and { gsave
currentpoint topmat setmatrix 0 0 moveto 2 index stringwidth pop (_)
false charpath flattenpath pathbbox grestore exch pop 1 index
sub setlinewidth exch pop currentpoint 3 -1 roll add moveto 0
rlineto stroke moveto } if } if } def
/ol { count 0 gt { dup type /stringtype eq showflag 1 eq and { gsave gsave
currentpoint topmat setmatrix 2 index stringwidth pop 3 index
true charpath flattenpath pathbbox grestore exch pop
exch pop topmat setmatrix (_) true charpath pathbbox grestore
exch pop 1 index sub setlinewidth exch pop currentpoint
exch 4 1 roll exch sub add moveto pop 0 rlineto stroke
moveto } if } if } def
/stW { gsave currentpoint newpath moveto true charpath flattenpath
pathbbox pop exch pop sub grestore } def
/Ts {mark Tabs aload pop counttomark 1 add array astore /Tabs exch def Tabs
0 currentpoint pop put} def
/Tbn {mark Tabs aload pop counttomark dup 2 add 1 roll cleartomark 1 sub} def
/Tb { 0 1 Tbn {Tabs exch get dup currentpoint pop lt
{currentpoint exch pop moveto exit} {pop} ifelse } for } def
/Tf { Tbn -1 0 {Tabs exch get dup currentpoint pop gt
{currentpoint exch pop moveto exit} {pop} ifelse } for } def
/qS { (aa) stW (a a) stW sub 4 div 0 Kn } def
/hS { qS qS } def
/pspc 0 def
/cf0 { scalefont setfont } bind def
/Kn { dup kY add /kY exch def rmoveto } bind def
/ss { /fscale fscale 0.67 mul def currentfont 0.67 cf0 0 fscale0 fscale mul
0.33 mul neg Kn} def
/Ss { /fscale fscale 0.67 mul def currentfont 0.67 cf0 0 fscale0 fscale mul
0.67 mul Kn } def
/ns { 0 kY neg Kn /kY 0 def /fscale 1.0 def xfont0 1.0 cf0 } def
/MR { /twidth exch def } def
/CRx { } def
/CR { ns 0 /Bline Bline fscale0 neg add def Bline moveto CRx } def
/cf { dup type /realtype ne {1.0} if exch findfont exch kY 0 eq
{ 40 mul dup /fscale0 exch def cf0 /xfont0 currentfont def}
{fscale0 mul fscale mul cf0} ifelse } def
/ctmk { counttomark dup 2 add -1 roll pop } bind def
/label { gsave translate 0 0 moveto dup scale neg
/rotval exch def /twidth 100000 def /just exch def just 128 and
0 gt {/mshow {pop} def} {/mshow {show} def} ifelse just 16 and 0
gt {gsave rotval rotate 0 1 dtransform gsave pagemat setmatrix
idtransform exch grestore 1 0 dtransform gsave pagemat setmatrix
idtransform exch grestore dup abs 1e-9 lt {pop mul 0 gt} {3 1 roll
pop pop 0 lt} ifelse grestore {-1 /rotval rotval neg def /just just
dup 3 and 1 ne {3 xor} if def} {1} ifelse exch -1e-9 lt {-1 /rotval
rotval neg def /just just dup 12 and 4 ne {12 xor} if def} {1}
ifelse scale } if /showflag 0 def /fspc pspc def /Bline 0 def
/numlines 0 def /padding 0 array def /Tabs 0 array def
/fscale 1.0 def /kY 0 def gsave /CRx { linewid padding
aload pop numlines 1 add dup /numlines exch def array astore
/padding exch def /linewid 0 def } def dup 1 add copy dup 1 0
dtransform exch atan rotate {exch dup type /stringtype eq {gsave dup
gsave newpath 0 0 moveto true charpath flattenpath pathbbox pop exch
pop exch pop grestore currentpoint pop add dup /linewid exch def twidth
ge {grestore CR exch 1 add dup 2 add {CR} exch 1 roll exch} {grestore}
ifelse true charpath flattenpath} {dup type /arraytype eq {exec} {12
string cvs true charpath flattenpath} ifelse} ifelse} repeat
CRx /CRx {padding aload pop just 1280 and 0 gt {blockwid exch sub just
1024 and 0 gt {0.5 mul} if} {pop 0} ifelse 0 rmoveto numlines 1 sub
dup /numlines exch def array astore /padding exch def} def exch pop
pathbbox grestore 4 copy pop exch pop exch sub /blockwid exch def
3 -1 roll pop 3 1 roll just 1 and 0 gt {just 2 and
0 gt {exch pop neg fspc sub} {exch sub 0.5 mul neg} ifelse} {pop neg
fspc add} ifelse exch Bline exch just 4 and 0 gt {just 8 and 0 gt
{exch pop neg fspc sub} {add 0.5 mul neg} ifelse} {pop neg fspc add}
ifelse rotval rotate Kn currentpoint translate /showflag 1 def /Bline
0 def /Tabs 0 array def /fscale 1.0 def /kY 0 def CRx {dup type
/stringtype eq {mshow} {dup type /arraytype eq {exec} {12 string cvs
mshow} ifelse} ifelse} repeat grestore endclip} def
/pinlabel { 4 index 32 and 0 ne hlevel 0 eq or { /pspc 10 def label
/pspc 0 def } { pop pop pop pop pop {pop} repeat } ifelse } def
/pinglobal { pinlabel } def
/infolabel { pinlabel } def
/graphic { gsave 4 index cvx exec /DataSource get resetfile translate 0 0
moveto neg rotate dup scale cvx exec image grestore endclip} def
/scb { setrgbcolor } bind def /sce { defColor aload pop scb } bind def
/cRedef {/defColor currentcolor 3 array astore def} def
/begingate {dup type /dicttype ne {1 dict} if begin % default params
dup type /dicttype ne {1 dict} if begin % instanced params
/hlevel hlevel 1 add def /defColor currentcolor sce 3 array astore
def gsave sce dup type /nametype eq { pop } if translate 0 0 moveto
neg rotate dup type /nametype eq not { dup abs currentlinewidth exch
div setlinewidth } { pop } ifelse dup abs scale clipped 1 and 1 eq
{/clipped clipped 1 add def} if} bind def
/endgate { /hlevel hlevel 1 sub def grestore defColor aload pop cRedef
scb end end endclip} bind def
/hlevel 0 def
/endclip {clipped 1 and 1 eq {grestore /clipped clipped 1 sub def} if} def
/tmpa [1 0 0 1 0 0] def
/gar {8 8 true tmpa {<c0 c0 00 00 0c 0c 00 00>} imagemask} bind
{8 8 true tmpa {<30 70 60 02 03 07 06 20>} imagemask} bind
{8 8 true tmpa {<0c 1e 1e 0c c0 e1 e1 c0>} imagemask} bind
{8 8 true tmpa {<0f 0f 0f 0f f0 f0 f0 f0>} imagemask} bind
{8 8 true tmpa {<3f f3 e1 e1 f3 3f 1e 1e>} imagemask} bind
{8 8 true tmpa {<df cf 8f 9f fd fc f8 f9>} imagemask} bind
{8 8 true tmpa {<ff 3f 3f ff ff f3 f3 ff>} imagemask} bind 7 array astore def
/ppaint { gsave clip tmpa dup setmatrix pathbbox neg exch neg 4 2 roll
neg 4 -1 roll 2 copy gt {exch} if 8 div ceiling 8 mul 4 2 roll neg 2 copy
gt {exch} if 8 div ceiling 8 mul 3 -1 roll -8 5 -1 roll
{ 3 index exch 5 exch put dup -8 3 index { 3 index
exch 4 exch put 3 index exec } for } for pop pop pop pop grestore } bind def
/setstyles {
currentlinewidth mul setlinewidth /style exch def style 2048 and 0 gt
clipped 1 and 0 eq and {clip newpath /clipped clipped 1 add def} {
style 1 and 0 gt not {closepath} if
style 1024 and 0 gt {2 setlinecap 0 setlinejoin} if
style 2 and 0 gt {currentlinewidth 4 mul dup 2 array astore 0 setdash} if
style 4 and 0 gt {0.5 currentlinewidth 4 mul 2 array astore 0 setdash} if
gsave style 16 and 0 gt { style 224 and -5 bitshift style 256 and 0 gt {
7 exch sub 8 div dup 1 exch sub currentrgbcolor 3 array astore
{3 copy mul add 4 1 roll pop} forall pop pop setrgbcolor eofill}
{dup 7 lt {gar exch get ppaint} {pop eofill} ifelse} ifelse}
{style 256 and 0 gt {1 setgray eofill} if} ifelse grestore style 8 and 0 gt
style 512 eq or {newpath} {stroke} ifelse grestore endclip} ifelse} def
/addtoy {exch dup dup 2 mul 3 add 1 roll -1 1 { 4 1 roll dup 4 1 roll add
4 -1 roll 2 mul 1 add index 2 mul 2 add 2 roll} for pop} def
/addtoy1 {1 exch addtoy pop} def
/addtoy3 {3 exch addtoy pop} def
/addtoy4 {4 exch addtoy pop} def
/addtox {exch dup dup 2 mul 3 add 1 roll -1 1 { 4 1 roll dup 4 1 roll 3 -1 roll
add exch 4 -1 roll 2 mul 1 add index 2 mul 2 add 2 roll} for pop} def
/addtox1 {1 exch addtox pop} def
/addtox3 {3 exch addtox pop} def
/addtox4 {4 exch addtox pop} def
/polygon { gsave /num exch def moveto num 1 sub {lineto} repeat setstyles } def
/xcarc { gsave newpath arc setstyles } def
/elb { matrix currentmatrix 7 -1 roll 7 -1 roll translate 5 1 roll 4 -1 roll
3 index div 1 scale } def
/ele { 0 4 1 roll 0 4 1 roll } bind def
/ellipse { gsave elb newpath ele arc setmatrix setstyles } def
/pellip { elb ele arc setmatrix } def
/nellip { elb ele arcn setmatrix } def
/spline { gsave moveto curveto setstyles } def
/polyc { {lineto} repeat } bind def
/beginpath { gsave moveto } bind def
/endpath { setstyles } bind def
/bop { 1 setlinecap 2 setlinejoin 6 setmiterlimit 0 0 0 scb cRedef
/clipped 0 def} def
/psinsertion {/PSobj save def /showpage {} def /setpagedevice {pop} def bop
rotate translate dup scale} def
/end_insert {PSobj restore} def
/setpagemat {/pagemat matrix currentmatrix def} def
/inchscale {setpagemat 0.375 mul dup scale} def
/cmscale {setpagemat 0.35433071 mul dup scale} def
%%EndResource
%%EndProlog
/Times-Roman findfont dup length dict begin
{1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def currentdict end
/Times-RomanISO exch definefont pop
% XCircuit output starts here.
%%BeginSetup
/generic::arrowhead {
% nonetwork
begingate
8 -28 beginpath
3 -18 3 -15 0 0 curveto
-3 -15 -3 -18 -8 -28 curveto
-2 -26 2 -26 8 -28 curveto
249
1.000 endpath
endgate
} def
%%EndSetup
%%Page: metal_stack 1
%%PageOrientation: Portrait
%%PageBoundingBox: 0 0 612 792
/pgsave save def bop
% 32.00 8.00 gridspace
0.6922 inchscale
2.6000 setlinewidth 1376 1320 translate
0.796 0.953 0.953 scb
496 1.000 -304 480 -304 496 -168 496 -168 480 4 polygon
0.800 0.800 0.800 scb
496 1.000 -296 288 -296 320 -200 320 -200 288 4 polygon
496 1.000 -288 496 -288 544 -192 544 -192 496 4 polygon
496 1.000 -368 -336 -368 -288 -272 -288 -272 -336 4 polygon
496 1.000 -48 -256 -48 -176 48 -176 48 -256 4 polygon
496 1.000 -48 -96 -48 -32 48 -32 48 -96 4 polygon
496 1.000 -48 48 -48 112 48 112 48 48 4 polygon
496 1.000 -48 256 -48 320 48 320 48 256 4 polygon
496 1.000 -48 464 -48 544 112 544 112 464 4 polygon
496 1.000 -48 -448 -48 -288 48 -288 48 -448 4 polygon
0.984 0.996 0.765 scb
-640 -448 beginpath
-640 -512 1 polyc
-640 -530 -626 -544 -608 -544 curveto
368 -544 1
polyc
386 -544 400 -530 400 -512 curveto
400 -448 1 polyc
497 1.000 endpath
0.980 0.792 0.541 scb
-192 -448 beginpath
-192 -464 1 polyc
-192 -482 -178 -496 -160 -496 curveto
320 -496 1
polyc
338 -496 352 -482 352 -464 curveto
352 -448 1 polyc
497 1.000 endpath
1.000 0.753 0.796 scb
496 1.000 -400 -400 -400 -336 -240 -336 -240 -400 4 polygon
496 1.000 112 -432 112 -368 320 -368 320 -432 4 polygon
0.812 0.996 0.812 scb
496 1.000 -480 -288 -480 -256 432 -256 432 -288 4 polygon
0.796 0.953 0.953 scb
496 1.000 -480 -176 -480 -96 464 -96 464 -176 4 polygon
496 1.000 -480 -32 -480 48 464 48 464 -32 4 polygon
496 1.000 -480 112 -480 256 496 256 496 112 4 polygon
496 1.000 -480 320 -480 464 496 464 496 320 4 polygon
496 1.000 -464 544 -464 752 448 752 448 544 4 polygon
sce
(SkyWater Sky130A metal stack \(not to scale!\):) {/Times-Roman cf} 2 16 0.000
1.000 -544 1008 label
1 1.000 -680 -448 496 -448 2 polygon
1 1.000 -192 -448 -192 -464 2 polygon
1 1.000 352 -448 352 -464 2 polygon
1 1.000 -160 -464 32 180.000 270.000 xcarc
1 1.000 -160 -496 320 -496 2 polygon
1 1.000 320 -464 32 -90.000 0.000 xcarc
1 1.000 -640 -448 -640 -512 2 polygon
1 1.000 400 -448 400 -512 2 polygon
1 1.000 -608 -544 368 -544 2 polygon
1 1.000 -608 -512 32 180.000 270.000 xcarc
1 1.000 368 -512 32 -90.000 0.000 xcarc
(diffusion) {/Times-Roman cf} 2 16 0.000 0.700 -48 -480 label
(nwell) {/Times-Roman cf} 2 16 0.000 0.700 -304 -496 label
0 1.000 112 -432 112 -368 320 -368 320 -432 4 polygon
(gate) {CR} (polysilicon) {/Times-Roman cf} 4 1045 0.000 0.700 224 -400 label
0 1.000 -48 -448 -48 -288 48 -288 48 -448 4 polygon
(licon) {/Times-Roman cf} 2 21 0.000 0.700 0 -376 label
0 1.000 -480 -288 -480 -256 432 -256 432 -288 4 polygon
(li) {/Times-Roman cf} 2 21 0.000 0.700 0 -272 label
0 1.000 -480 -176 -480 -96 464 -96 464 -176 4 polygon
(metal1) {/Times-Roman cf} 2 17 0.000 0.700 0 -144 label
0 1.000 -480 -32 -480 48 464 48 464 -32 4 polygon
(metal2) {/Times-Roman cf} 2 17 0.000 0.700 0 0 label
0 1.000 -480 112 -480 256 496 256 496 112 4 polygon
(metal3) {/Times-Roman cf} 2 17 0.000 0.700 0 176 label
0 1.000 -480 320 -480 464 496 464 496 320 4 polygon
(metal4) {/Times-Roman cf} 2 17 0.000 0.700 0 384 label
0 1.000 -464 544 -464 752 448 752 448 544 4 polygon
(metal5) {/Times-Roman cf} 2 17 0.000 0.700 0 640 label
0 1.000 -48 -256 -48 -176 48 -176 48 -256 4 polygon
(mcon) {/Times-Roman cf} 2 21 0.000 0.700 0 -224 label
(licon) {/Times-Roman cf} 2 17 0.000 0.700 -320 -320 label
0 1.000 -48 -96 -48 -32 48 -32 48 -96 4 polygon
0 1.000 -48 48 -48 112 48 112 48 48 4 polygon
0 1.000 -48 256 -48 320 48 320 48 256 4 polygon
0 1.000 -48 464 -48 544 112 544 112 464 4 polygon
(via1) {/Times-Roman cf} 2 21 0.000 0.700 0 -64 label
(via2) {/Times-Roman cf} 2 21 0.000 0.700 0 80 label
(via3) {/Times-Roman cf} 2 21 0.000 0.700 0 288 label
(via4) {/Times-Roman cf} 2 21 0.000 0.700 32 496 label
1 1.000 -384 848 -384 896 2 polygon
1 1.000 400 848 400 896 2 polygon
1 1.000 432 928 672 928 2 polygon
1 1.000 -416 928 -896 928 2 polygon
1 1.000 -416 896 32 0.000 90.000 xcarc
1 1.000 432 896 32 90.000 180.000 xcarc
(glass cut) {/Times-Roman cf} 2 17 0.000 0.700 32 880 label
0.000 0.000 1.000 scb
(PI1 K=2.94) {/Times-Roman cf} 2 17 0.000 0.700 -648 696 label
0.600 0.600 0.600 scb
1 1.000 592 -448 704 -448 2 polygon
1 1.000 416 -496 704 -496 2 polygon
sce
1.000 0.000 672 -496 generic::arrowhead
-1.000 180.000 672 -448 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (0.12) {/Times-Roman cf} 5 17 0.000 0.700 672
-480 label
0.600 0.600 0.600 scb
1 1.000 384 -432 624 -432 2 polygon
1 1.000 384 -368 624 -368 2 polygon
sce
1 1.000 560 -368 560 -320 2 polygon
1 1.000 560 -432 560 -480 2 polygon
1.000 0.000 560 -432 generic::arrowhead
-1.000 180.000 560 -368 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (0.18) {/Times-Roman cf} 5 21 0.000 0.700 592
-400 label
0.600 0.600 0.600 scb
1 1.000 512 -288 608 -288 2 polygon
1 1.000 440 -256 608 -256 2 polygon
sce
1 1.000 592 -256 592 -208 2 polygon
1 1.000 592 -288 592 -336 2 polygon
1.000 0.000 592 -288 generic::arrowhead
-1.000 180.000 592 -256 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (0.1) {/Times-Roman cf} 5 20 0.000 0.700 624
-272 label
0.600 0.600 0.600 scb
1 1.000 512 -176 608 -176 2 polygon
1 1.000 512 -96 608 -96 2 polygon
sce
1.000 0.000 592 -96 generic::arrowhead
-1.000 180.000 592 -176 generic::arrowhead
1 1.000 592 -176 592 -96 2 polygon
(\265m) {hS} {/Times-RomanISO cf} (0.36) {/Times-Roman cf} 5 16 0.000 0.700 624
-144 label
0.600 0.600 0.600 scb
1 1.000 512 -32 608 -32 2 polygon
1 1.000 512 48 608 48 2 polygon
sce
1.000 0.000 592 48 generic::arrowhead
-1.000 180.000 592 -32 generic::arrowhead
1 1.000 592 -32 592 48 2 polygon
(\265m) {hS} {/Times-RomanISO cf} (0.36) {/Times-Roman cf} 5 16 0.000 0.700 624
0 label
0.600 0.600 0.600 scb
1 1.000 512 112 608 112 2 polygon
1 1.000 512 256 608 256 2 polygon
sce
1.000 0.000 592 256 generic::arrowhead
-1.000 180.000 592 112 generic::arrowhead
1 1.000 592 112 592 256 2 polygon
(\265m) {hS} {/Times-RomanISO cf} (0.845) {/Times-Roman cf} 5 16 0.000 0.700
624 176 label
0.600 0.600 0.600 scb
1 1.000 512 320 608 320 2 polygon
1 1.000 512 464 608 464 2 polygon
sce
1.000 0.000 592 464 generic::arrowhead
-1.000 180.000 592 320 generic::arrowhead
1 1.000 592 320 592 464 2 polygon
(\265m) {hS} {/Times-RomanISO cf} (0.845) {/Times-Roman cf} 5 16 0.000 0.700
624 384 label
0.600 0.600 0.600 scb
1 1.000 512 544 608 544 2 polygon
1 1.000 512 752 624 752 2 polygon
sce
1.000 0.000 560 752 generic::arrowhead
-1.000 180.000 560 544 generic::arrowhead
1 1.000 560 544 560 752 2 polygon
(\265m) {hS} {/Times-RomanISO cf} (1.26) {/Times-Roman cf} 5 16 0.000 0.700 592
640 label
1 1.000 672 -448 672 -384 2 polygon
1 1.000 672 -496 672 -560 2 polygon
0 1.000 -400 -400 -400 -336 -240 -336 -240 -400 4 polygon
(field poly) {/Times-Roman cf} 2 21 0.000 0.700 -320 -368 label
0.600 0.600 0.600 scb
1 1.000 -696 -448 -1072 -448 2 polygon
1 1.000 -736 -400 -824 -400 2 polygon
sce
1 1.000 -752 -448 -752 -512 2 polygon
1.000 0.000 -752 -448 generic::arrowhead
1 1.000 -752 -400 -752 -352 2 polygon
-1.000 180.000 -752 -400 generic::arrowhead
0.600 0.600 0.600 scb
1 1.000 -768 -288 -872 -288 2 polygon
sce
1 1.000 -848 -448 -848 -384 2 polygon
1.000 0.000 -848 -288 generic::arrowhead
-1.000 180.000 -848 -448 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (0.3262) {/Times-Roman cf} 5 17 0.000 0.700
-760 -432 label
(\265m) {/Times-RomanISO cf} {hS} (0.9361) {/Times-Roman cf} 5 23 0.000 0.700
-776 -368 label
0.600 0.600 0.600 scb
1 1.000 -768 -176 -984 -176 2 polygon
sce
1 1.000 -848 -352 -848 -288 2 polygon
1 1.000 -976 -448 -976 -256 2 polygon
1 1.000 -976 -216 -976 -176 2 polygon
-1.000 180.000 -976 -448 generic::arrowhead
1.000 0.000 -976 -176 generic::arrowhead
(\265m) {hS} {/Times-RomanISO cf} (1.3761) {/Times-Roman cf} 5 17 0.000 0.700
-928 -248 label
0.600 0.600 0.600 scb
1 1.000 -768 -32 -1000 -32 2 polygon
sce
1 1.000 -992 -80 -992 -32 2 polygon
1.000 0.000 -992 -32 generic::arrowhead
(\265m) {hS} {/Times-RomanISO cf} (2.0061) {/Times-Roman cf} 5 17 0.000 0.700
-936 -112 label
0.600 0.600 0.600 scb
1 1.000 -768 112 -1016 112 2 polygon
sce
1 1.000 -1008 64 -1008 112 2 polygon
1.000 0.000 -1008 112 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (2.7861) {/Times-Roman cf} 5 17 0.000 0.700
-952 32 label
0.600 0.600 0.600 scb
1 1.000 -768 320 -1032 320 2 polygon
sce
1 1.000 -1024 256 -1024 320 2 polygon
1.000 0.000 -1024 320 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (4.0211) {/Times-Roman cf} 5 17 0.000 0.700
-968 224 label
0.600 0.600 0.600 scb
1 1.000 -824 544 -1048 544 2 polygon
sce
1 1.000 -1040 464 -1040 544 2 polygon
1.000 0.000 -1040 544 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (5.3711) {/Times-Roman cf} 5 17 0.000 0.700
-984 432 label
0.800 0.800 0.800 scb
1 1.000 -912 928 -1088 928 2 polygon
sce
1 1.000 -1056 816 -1056 928 2 polygon
1.000 0.000 -1056 928 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (11.8834) {/Times-Roman cf} 5 17 0.000 0.700
-1016 784 label
0.600 0.600 0.600 scb
3 1.000 -720 -400 -448 -400 2 polygon
0.000 0.000 1.000 scb
(FOX K=3.9) {/Times-Roman cf} 2 19 0.000 0.700 -536 -432 label
sce
(p-substrate) {/Times-Roman cf} 2 16 0.000 0.700 448 -528 label
0.000 0.000 1.000 scb
(PSG K=3.9) {/Times-Roman cf} 2 23 0.000 0.700 -600 -344 label
(LINT K=7.3) {/Times-Roman cf} 2 23 0.000 0.700 408 -240 label
0.600 0.600 0.600 scb
3 1.000 -480 -288 -760 -288 2 polygon
0.000 0.000 1.000 scb
(NILD2 K=4.05) {/Times-Roman cf} 2 23 0.000 0.700 -576 -216 label
0.600 0.600 0.600 scb
3 1.000 -752 -176 -480 -176 2 polygon
3 1.000 -752 -32 -480 -32 2 polygon
3 1.000 -752 112 -480 112 2 polygon
3 1.000 -752 320 -480 320 2 polygon
3 1.000 -808 544 -488 544 2 polygon
0.000 0.000 1.000 scb
(NILD3_C K=3.5) {/Times-Roman cf} 2 19 0.000 0.700 440 -80 label
(NILD4 K=4.2) {/Times-Roman cf} 2 19 0.000 0.700 -576 24 label
(NILD5 K=4.1) {/Times-Roman cf} 2 19 0.000 0.700 -576 200 label
(NILD6 K=4.0) {/Times-Roman cf} 2 19 0.000 0.700 -576 408 label
(NILD3 K=4.5) {/Times-Roman cf} 2 19 0.000 0.700 -576 -120 label
(NILD4_C K=3.5) {/Times-Roman cf} 2 19 0.000 0.700 440 64 label
(TOPOX K=3.9) {/Times-Roman cf} 2 19 0.000 0.700 304 784 label
sce
(0.0) {/Times-Roman cf} 2 23 0.000 0.700 -1088 -448 label
1 1.000 -432 -224 -432 -272 2 polygon
1.000 0.000 -432 -224 generic::arrowhead
-1.000 180.000 -432 -176 generic::arrowhead
1.000 0.000 -448 -32 generic::arrowhead
-1.000 180.000 -448 -96 generic::arrowhead
1 1.000 -448 -32 -448 -96 2 polygon
1.000 0.000 -448 112 generic::arrowhead
-1.000 180.000 -448 48 generic::arrowhead
1 1.000 -448 112 -448 48 2 polygon
1.000 0.000 -448 320 generic::arrowhead
-1.000 180.000 -448 256 generic::arrowhead
1 1.000 -448 320 -448 256 2 polygon
1.000 0.000 -448 544 generic::arrowhead
-1.000 180.000 -448 464 generic::arrowhead
1 1.000 -448 544 -448 464 2 polygon
1.000 0.000 -192 928 generic::arrowhead
-1.000 180.000 -192 752 generic::arrowhead
1 1.000 -192 928 -192 752 2 polygon
0.600 0.600 0.600 scb
1 1.000 -384 928 -160 928 2 polygon
sce
(\265m) {hS} {/Times-RomanISO cf} (0.265) {/Times-Roman cf} 5 20 0.000 0.700
-472 -200 label
0 1.000 -368 -336 -368 -288 -272 -288 -272 -336 4 polygon
(\265m) {hS} {/Times-RomanISO cf} (0.27) {/Times-Roman cf} 5 20 0.000 0.700
-432 -64 label
(\265m) {hS} {/Times-RomanISO cf} (0.42) {/Times-Roman cf} 5 20 0.000 0.700
-432 80 label
(\265m) {hS} {/Times-RomanISO cf} (0.39) {/Times-Roman cf} 5 20 0.000 0.700
-432 288 label
(\265m) {hS} {/Times-RomanISO cf} (0.505) {/Times-Roman cf} 5 20 0.000 0.700
-432 504 label
(\265m) {hS} {/Times-RomanISO cf} (5.2523) {/Times-Roman cf} 5 20 0.000 0.700
-176 824 label
0.000 0.000 1.000 scb
(IOX K=3.9) {/Times-Roman cf} 2 23 0.000 0.700 272 -312 label
(SPNIT K=7.5) {/Times-Roman cf} 2 23 0.000 0.700 304 -352 label
sce
0 1.000 320 -432 320 -368 336 -368 336 -432 4 polygon
1 1.000 336 -432 368 -432 368 -336 64 -336 64 -432 5 polygon
0 1.000 464 -176 464 -96 496 -96 496 -176 4 polygon
0 1.000 464 -32 464 48 496 48 496 -32 4 polygon
0 1.000 -240 -400 -240 -336 -224 -336 -224 -400 4 polygon
1 1.000 -224 -400 -192 -400 -192 -304 3 polygon
1 1.000 -400 -400 -416 -400 -416 -336 -400 -336 4 polygon
1 1.000 -416 -400 -448 -400 -448 -304 3 polygon
1 1.000 -448 -304 -368 -304 2 polygon
1 1.000 -192 -304 -272 -304 2 polygon
1 1.000 64 -432 96 -432 2 polygon
0 1.000 96 -432 96 -368 112 -368 112 -432 4 polygon
0.600 0.600 0.600 scb
1 1.000 384 -336 512 -336 2 polygon
sce
(\265m) {/Times-RomanISO cf} {hS} (0.121) {/Times-Roman cf} 5 20 0.000 0.700
400 -352 label
0.600 0.600 0.600 scb
1 1.000 448 80 464 80 480 32 3 polygon
1 1.000 448 -72 464 -72 480 -120 3 polygon
1 1.000 328 -376 312 -312 280 -312 3 polygon
sce
1.000 0.000 416 -368 generic::arrowhead
1 1.000 416 -368 416 -408 2 polygon
-1.000 180.000 416 -336 generic::arrowhead
1 1.000 416 -336 416 -296 2 polygon
0.600 0.600 0.600 scb
3 1.000 -192 -400 -48 -400 2 polygon
sce
(\265m) {/Times-RomanISO cf} {hS} (0.6099) {/Times-Roman cf} 5 23 0.000 0.700
-64 -352 label
1 1.000 -128 -336 -128 -288 2 polygon
1 1.000 -128 -368 -128 -400 2 polygon
-1.000 180.000 -128 -400 generic::arrowhead
1.000 0.000 -128 -288 generic::arrowhead
1 1.000 464 -264 464 -224 48 -224 3 polygon
0.600 0.600 0.600 scb
1 1.000 -144 -224 -208 -224 2 polygon
sce
-1.000 180.000 -176 -224 generic::arrowhead
1.000 0.000 -176 -256 generic::arrowhead
1 1.000 -176 -256 -176 -304 2 polygon
1 1.000 -176 -224 -176 -184 2 polygon
(\265m) {hS} {/Times-RomanISO cf} (0.075) {/Times-Roman cf} 5 21 0.000 0.700
-176 -240 label
1 1.000 464 -264 496 -264 2 polygon
1 1.000 496 -288 432 -288 2 polygon
1 1.000 -544 -256 -512 -256 -512 -224 -48 -224 4 polygon
0.600 0.600 0.600 scb
3 1.000 -552 -256 -760 -256 2 polygon
0.000 0.000 1.000 scb
(LINT K=7.3) {/Times-Roman cf} 2 23 0.000 0.700 -600 -272 label
0.600 0.600 0.600 scb
1 1.000 -768 -256 -920 -256 2 polygon
sce
1 1.000 -904 -304 -904 -256 2 polygon
1.000 0.000 -904 -256 generic::arrowhead
-1.000 180.000 -904 -448 generic::arrowhead
1 1.000 -904 -448 -904 -344 2 polygon
(\265m) {/Times-RomanISO cf} {hS} (1.0111) {/Times-Roman cf} 5 23 0.000 0.700
-856 -320 label
1 1.000 -432 -176 -432 -128 2 polygon
1 1.000 -368 752 -368 776 -480 776 -480 544 4 polygon
1 1.000 352 752 352 776 464 776 3 polygon
1 1.000 464 776 464 544 448 544 3 polygon
0.600 0.600 0.600 scb
1 1.000 512 776 624 776 2 polygon
sce
1 1.000 616 712 616 752 2 polygon
1 1.000 616 776 616 856 2 polygon
1.000 0.000 616 752 generic::arrowhead
-1.000 180.000 616 776 generic::arrowhead
(\265m) {hS} {/Times-RomanISO cf} (0.09) {/Times-Roman cf} 5 16 0.000 0.700 640
752 label
0.600 0.600 0.600 scb
1 1.000 312 792 344 792 368 760 3 polygon
0.000 0.000 1.000 scb
(TOPNIT K=7.5) {/Times-Roman cf} 2 19 0.000 0.700 -544 560 label
sce
1 1.000 -552 592 -512 592 -512 848 -368 848 -368 776 5 polygon
1 1.000 352 776 352 848 488 848 488 600 496 600 5 polygon
1 1.000 464 544 496 544 2 polygon
0.600 0.600 0.600 scb
3 1.000 -552 592 -832 592 2 polygon
sce
1 1.000 -824 544 -824 472 2 polygon
1 1.000 -824 592 -824 656 2 polygon
-1.000 180.000 -824 592 generic::arrowhead
1.000 0.000 -824 544 generic::arrowhead
1 1.000 -480 544 -464 544 2 polygon
0.600 0.600 0.600 scb
1 1.000 -352 848 -264 848 2 polygon
1 1.000 -360 776 -264 776 2 polygon
sce
1 1.000 -328 776 -328 848 2 polygon
1.000 0.000 -328 848 generic::arrowhead
-1.000 180.000 -328 776 generic::arrowhead
(\265m) {hS} {/Times-RomanISO cf} (0.54) {/Times-Roman cf} 5 20 0.000 0.700
-312 808 label
(\265m) {/Times-RomanISO cf} {hS} (0.3777) {/Times-Roman cf} 5 17 0.000 0.700
-824 560 label
1 1.000 -784 784 -784 928 2 polygon
-1.000 180.000 -784 592 generic::arrowhead
1.000 0.000 -784 928 generic::arrowhead
1 1.000 -784 592 -784 736 2 polygon
(\265m) {/Times-RomanISO cf} {hS} (6.1346) {/Times-Roman cf} 5 17 0.000 0.700
-760 752 label
-1.000 180.000 -992 -448 generic::arrowhead
1 1.000 -992 -448 -992 -120 2 polygon
-1.000 180.000 -1008 -448 generic::arrowhead
1 1.000 -1008 -448 -1008 24 2 polygon
-1.000 180.000 -1024 -448 generic::arrowhead
1 1.000 -1024 -448 -1024 216 2 polygon
-1.000 180.000 -1040 -448 generic::arrowhead
1 1.000 -1040 -448 -1040 416 2 polygon
1 1.000 -1056 -448 -1056 776 2 polygon
-1.000 180.000 -1056 -448 generic::arrowhead
0 1.000 -304 480 -304 496 -168 496 -168 480 4 polygon
0 1.000 -288 496 -288 544 -192 544 -192 496 4 polygon
0 1.000 -296 288 -296 320 -200 320 -200 288 4 polygon
0.796 0.953 0.953 scb
496 1.000 -312 272 -312 288 -176 288 -176 272 4 polygon
sce
0 1.000 -312 272 -312 288 -176 288 -176 272 4 polygon
(cap2m) {/Times-Roman cf} 2 16 0.000 0.700 -152 480 label
(via4) {/Times-Roman cf} 2 21 0.000 0.700 -240 520 label
(via3) {/Times-Roman cf} 2 21 0.000 0.700 -248 304 label
(capm) {/Times-Roman cf} 2 16 0.000 0.700 -160 272 label
0.600 0.600 0.600 scb
1 1.000 -432 -336 -520 -336 2 polygon
sce
-1.000 180.000 -496 -288 generic::arrowhead
1 1.000 -496 -240 -496 -288 2 polygon
1.000 0.000 -496 -336 generic::arrowhead
1 1.000 -496 -336 -496 -384 2 polygon
(\265m) {hS} {/Times-RomanISO cf} (0.4299) {/Times-Roman cf} 5 21 0.000 0.700
-520 -312 label
0.400 0.400 0.400 scb
1 1.000 -448 -416 -448 -592 2 polygon
1 1.000 -416 -416 -416 -624 2 polygon
1 1.000 -400 -416 -400 -624 2 polygon
sce
1 1.000 -560 672 -512 672 2 polygon
1 1.000 -480 672 -384 672 2 polygon
1 1.000 -528 624 -480 624 2 polygon
1 1.000 -464 624 -384 624 2 polygon
1.000 90.000 -512 672 generic::arrowhead
1.000 90.000 -480 624 generic::arrowhead
-1.000 270.000 -464 624 generic::arrowhead
-1.000 270.000 -480 672 generic::arrowhead
-1.000 270.000 -416 -576 generic::arrowhead
1.000 90.000 -448 -576 generic::arrowhead
1.000 90.000 -416 -608 generic::arrowhead
-1.000 270.000 -400 -608 generic::arrowhead
1 1.000 -480 -608 -416 -608 2 polygon
1 1.000 -400 -608 -320 -608 2 polygon
1 1.000 -416 -576 -320 -576 2 polygon
1 1.000 -448 -576 -512 -576 2 polygon
1 1.000 544 0 496 0 2 polygon
1 1.000 464 0 384 0 2 polygon
1.000 90.000 464 0 generic::arrowhead
-1.000 270.000 496 0 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (0.006) {/Times-Roman cf} 5 20 0.000 0.700
-296 -608 label
(\265m) {/Times-RomanISO cf} {hS} (0.0431) {/Times-Roman cf} 5 20 0.000 0.700
-296 -576 label
(\265m) {/Times-RomanISO cf} {hS} (0.4223) {/Times-Roman cf} 5 20 0.000 0.700
-376 672 label
(\265m) {/Times-RomanISO cf} {hS} (0.070) {/Times-Roman cf} 5 20 0.000 0.700
-376 624 label
(\265m) {/Times-RomanISO cf} {hS} (0.030) {/Times-Roman cf} 5 23 0.000 0.700
376 0 label
1 1.000 464 -144 384 -144 2 polygon
1.000 90.000 464 -144 generic::arrowhead
(\265m) {/Times-RomanISO cf} {hS} (0.030) {/Times-Roman cf} 5 23 360.000 0.700
376 -144 label
1 1.000 544 -144 496 -144 2 polygon
-1.000 270.000 496 -144 generic::arrowhead
0.600 0.600 0.600 scb
1 1.000 432 -248 432 -192 2 polygon
1 1.000 464 -216 464 -192 2 polygon
sce
1.000 90.000 432 -200 generic::arrowhead
-1.000 270.000 464 -200 generic::arrowhead
1 1.000 544 -200 464 -200 2 polygon
1 1.000 432 -200 384 -200 2 polygon
(\265m) {/Times-RomanISO cf} {hS} (0.075) {/Times-Roman cf} 5 23 0.000 0.700
368 -200 label
pgsave restore showpage
%%Page: captables 2
%%PageOrientation: Portrait
%%PageBoundingBox: 0 0 612 792
/pgsave save def bop
% 32.00 8.00 gridspace
1.0000 inchscale
2.6000 setlinewidth 861 1371 translate
0.647 0.165 0.165 scb
(SkyWater sky130A capacitance tables) {/Times-Roman cf} 2 16 0.000 1.000 -1056
1280 label
sce
1 1.000 -1056 1264 768 1264 2 polygon
0.000 0.000 1.000 scb
(n-well) {/Times-Roman cf} 2 28 0.000 1.000 -1056 436 label
(substrate) {/Times-Roman cf} 2 28 0.000 1.000 -1056 388 label
(diffusion) {/Times-Roman cf} 2 28 0.000 1.000 -1056 484 label
(poly \(field\)) {/Times-Roman cf} 2 28 0.000 1.000 -1054 580 label
(li) {/Times-Roman cf} 2 28 0.000 1.000 -1056 676 label
(metal1) {/Times-Roman cf} 2 28 0.000 1.000 -1056 772 label
(metal2) {/Times-Roman cf} 2 28 0.000 1.000 -1056 868 label
(metal3) {/Times-Roman cf} 2 28 0.000 1.000 -1056 964 label
(metal4) {/Times-Roman cf} 2 28 0.000 1.000 -1056 1060 label
(poly) {/Times-Roman cf} 2 19 0.000 1.000 224 1136 label
(li) {/Times-Roman cf} 2 19 0.000 1.000 32 1136 label
(metal1) {/Times-Roman cf} 2 19 0.000 1.000 -80 1136 label
(metal2) {/Times-Roman cf} 2 19 0.000 1.000 -240 1136 label
(metal3) {/Times-Roman cf} 2 19 0.000 1.000 -400 1136 label
(metal4) {/Times-Roman cf} 2 19 0.000 1.000 -560 1136 label
(metal5) {/Times-Roman cf} 2 19 0.000 1.000 -720 1136 label
sce
1 1.000 304 432 -864 432 2 polygon
1 1.000 304 528 -864 528 2 polygon
1 1.000 128 624 -864 624 2 polygon
1 1.000 -48 720 -864 720 2 polygon
1 1.000 -208 816 -864 816 2 polygon
1 1.000 -368 912 -864 912 2 polygon
1 1.000 -528 1008 -864 1008 2 polygon
1 1.000 -688 1104 -864 1104 2 polygon
0.180 0.545 0.341 scb
(Inter-layer distances \(microns\)) {/Times-Roman cf} 2 16 0.000 1.000 -1056
1216 label
sce
(0.3262) {/Times-Roman cf} 2 21 0.000 1.000 224 480 label
(0.9361) {/Times-Roman cf} 2 21 0.000 1.000 48 480 label
(1.3761) {/Times-Roman cf} 2 21 0.000 1.000 -128 480 label
(2.0061) {/Times-Roman cf} 2 21 0.000 1.000 -288 480 label
(4.0211) {/Times-Roman cf} 2 21 0.000 1.000 -608 480 label
(2.7861) {/Times-Roman cf} 2 21 0.000 1.000 -448 480 label
(5.3711) {/Times-Roman cf} 2 21 0.000 1.000 -768 480 label
(0.4299) {/Times-Roman cf} 2 21 0.000 1.000 48 576 label
(0.27) {/Times-Roman cf} 2 21 0.000 1.000 -288 768 label
(0.42) {/Times-Roman cf} 2 21 0.000 1.000 -448 864 label
(0.39) {/Times-Roman cf} 2 21 0.000 1.000 -608 960 label
(0.505) {/Times-Roman cf} 2 21 0.000 1.000 -768 1056 label
1 1.000 -864 1104 -864 432 2 polygon
1 1.000 304 528 304 432 2 polygon
1 1.000 128 624 128 432 2 polygon
1 1.000 -48 720 -48 432 2 polygon
1 1.000 -208 816 -208 432 2 polygon
1 1.000 -368 912 -368 432 2 polygon
1 1.000 -528 1008 -528 432 2 polygon
1 1.000 -688 1104 -688 432 2 polygon
(1.74) {/Times-Roman cf} 2 21 0.000 1.000 -768 960 label
(3.005) {/Times-Roman cf} 2 21 0.000 1.000 -768 864 label
(3.635) {/Times-Roman cf} 2 21 0.000 1.000 -768 768 label
(4.335) {/Times-Roman cf} 2 21 0.000 1.000 -768 672 label
(4.8649) {/Times-Roman cf} 2 21 0.000 1.000 -768 576 label
(1.655) {/Times-Roman cf} 2 21 0.000 1.000 -608 864 label
(2.285) {/Times-Roman cf} 2 21 0.000 1.000 -608 768 label
(2.985) {/Times-Roman cf} 2 21 0.000 1.000 -608 672 label
(3.5149) {/Times-Roman cf} 2 21 0.000 1.000 -608 576 label
(1.05) {/Times-Roman cf} 2 21 0.000 1.000 -448 768 label
(1.75) {/Times-Roman cf} 2 21 0.000 1.000 -448 672 label
(2.2799) {/Times-Roman cf} 2 21 0.000 1.000 -448 576 label
(0.97) {/Times-Roman cf} 2 21 0.000 1.000 -288 672 label
(1.4999) {/Times-Roman cf} 2 21 0.000 1.000 -288 576 label
(0.34) {/Times-Roman cf} 2 21 0.000 1.000 -128 672 label
(0.8699) {/Times-Roman cf} 2 21 0.000 1.000 -128 576 label
0.180 0.545 0.341 scb
(Inter-layer capacitances) {/Times-Roman cf} 2 16 0.000 1.000 -1056 240 label
sce
(\)) {ns} (2) {Ss} (\265m) {/Times-RomanISO cf} (\(final values in aF/)
{/Times-Roman cf} 8 16 0.000 1.000 -640 240 label
(70.1307) {/Times-Roman cf} 2 16 0.000 1.000 -784 48 label
(20.4659) {/Times-Roman cf} 2 16 0.000 1.000 -784 -48 label
(93.0805) {/Times-Roman cf} 2 16 0.000 1.000 -528 -48 label
(22.0677) {/Times-Roman cf} 2 16 0.000 1.000 -544 -144 label
(88.5400) {/Times-Roman cf} 2 16 0.000 1.000 -304 -144 label
(147.5667) {/Times-Roman cf} 2 16 0.000 1.000 -80 -240 label
(92.872) {/Times-Roman cf} 2 16 0.000 1.000 432 -432 label
(36.8877) {/Times-Roman cf} 2 16 0.000 1.000 416 -528 label
(105.8571) {/Times-Roman cf} 2 16 0.000 1.000 672 -528 label
(11.9856) {/Times-Roman cf} 2 16 0.000 1.000 -784 -144 label
(10.0109) {/Times-Roman cf} 2 16 0.000 1.000 -784 -240 label
(16.1884) {/Times-Roman cf} 2 16 0.000 1.000 -544 -240 label
(36.0337) {/Times-Roman cf} 2 16 0.000 1.000 -304 -240 label
(8.5302) {/Times-Roman cf} 2 16 0.000 1.000 -768 -336 label
(12.640) {/Times-Roman cf} 2 16 0.000 1.000 -544 -336 label
(22.177) {/Times-Roman cf} 2 16 0.000 1.000 -304 -336 label
(7.6460) {/Times-Roman cf} 2 16 0.000 1.000 -768 -432 label
(10.791) {/Times-Roman cf} 2 16 0.000 1.000 -544 -432 label
(17.051) {/Times-Roman cf} 2 16 0.000 1.000 -304 -432 label
(6.7968) {/Times-Roman cf} 2 16 0.000 1.000 -768 -528 label
(9.1734) {/Times-Roman cf} 2 16 0.000 1.000 -528 -528 label
(13.335) {/Times-Roman cf} 2 16 0.000 1.000 -304 -528 label
(18.514) {/Times-Roman cf} 2 16 0.000 1.000 -64 -528 label
(26.009) {/Times-Roman cf} 2 16 0.000 1.000 176 -528 label
(45.235) {/Times-Roman cf} 2 16 0.000 1.000 176 -432 label
(26.544) {/Times-Roman cf} 2 16 0.000 1.000 -64 -432 label
(41.466) {/Times-Roman cf} 2 16 0.000 1.000 -64 -336 label
(116.96) {/Times-Roman cf} 2 16 0.000 1.000 176 -336 label
0.000 0.000 1.000 scb
(n-well) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -556 label
(substrate) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -604 label
(diffusion) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -508 label
(poly \(field\)) {/Times-Roman cf} 2 28 0.000 1.000 -1038 -412 label
(li) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -316 label
(metal1) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -220 label
(metal2) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -124 label
(metal3) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -28 label
(metal4) {/Times-Roman cf} 2 28 0.000 1.000 -1040 68 label
(poly) {/Times-Roman cf} 2 19 0.000 1.000 800 144 label
(li) {/Times-Roman cf} 2 19 0.000 1.000 496 144 label
(metal1) {/Times-Roman cf} 2 19 0.000 1.000 320 144 label
(metal2) {/Times-Roman cf} 2 19 0.000 1.000 80 144 label
(metal3) {/Times-Roman cf} 2 19 0.000 1.000 -160 144 label
(metal4) {/Times-Roman cf} 2 19 0.000 1.000 -416 144 label
(metal5) {/Times-Roman cf} 2 19 0.000 1.000 -688 144 label
sce
1 1.000 864 -560 -848 -560 2 polygon
1 1.000 864 -464 -848 -464 2 polygon
1 1.000 624 -368 -848 -368 2 polygon
1 1.000 368 -272 -848 -272 2 polygon
1 1.000 128 -176 -848 -176 2 polygon
1 1.000 -112 -80 -848 -80 2 polygon
1 1.000 -352 16 -848 16 2 polygon
1 1.000 -592 112 -848 112 2 polygon
1 1.000 -848 112 -848 -560 2 polygon
1 1.000 864 -464 864 -560 2 polygon
1 1.000 624 -368 624 -560 2 polygon
1 1.000 368 -272 368 -560 2 polygon
1 1.000 128 -176 128 -560 2 polygon
1 1.000 -112 -80 -112 -560 2 polygon
1 1.000 -352 16 -352 -560 2 polygon
1 1.000 -592 112 -592 -560 2 polygon
{ns} (\2616) {/Times-Roman cf} {Ss} (, so divide by 1.0e) {ns} (2) {Ss} (\265m)
{/Times-RomanISO cf} (Note: LEF CPERSQDIST is in pF/) {/Times-Roman cf} 12 16
0.000 1.000 -128 240 label
0.000 0.000 1.000 scb
(n-well) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -1532 label
(substrate) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -1580 label
(diffusion) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -1484 label
(poly \(field\)) {/Times-Roman cf} 2 28 0.000 1.000 -1038 -1388 label
(li) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -1292 label
(metal1) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -1196 label
(metal2) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -1100 label
(metal3) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -1004 label
(metal4) {/Times-Roman cf} 2 28 0.000 1.000 -1040 -908 label
(poly) {/Times-Roman cf} 2 19 0.000 1.000 800 -832 label
(li) {/Times-Roman cf} 2 19 0.000 1.000 496 -832 label
(metal1) {/Times-Roman cf} 2 19 0.000 1.000 320 -832 label
(metal2) {/Times-Roman cf} 2 19 0.000 1.000 80 -832 label
(metal3) {/Times-Roman cf} 2 19 0.000 1.000 -160 -832 label
(metal4) {/Times-Roman cf} 2 19 0.000 1.000 -416 -832 label
(metal5) {/Times-Roman cf} 2 19 0.000 1.000 -688 -832 label
sce
1 1.000 864 -1536 -848 -1536 2 polygon
1 1.000 864 -1440 -848 -1440 2 polygon
1 1.000 624 -1344 -848 -1344 2 polygon
1 1.000 368 -1248 -848 -1248 2 polygon
1 1.000 128 -1152 -848 -1152 2 polygon
1 1.000 -112 -1056 -848 -1056 2 polygon
1 1.000 -352 -960 -848 -960 2 polygon
1 1.000 -592 -864 -848 -864 2 polygon
1 1.000 -848 -864 -848 -1536 2 polygon
1 1.000 864 -1440 864 -1536 2 polygon
1 1.000 624 -1344 624 -1536 2 polygon
1 1.000 368 -1248 368 -1536 2 polygon
1 1.000 128 -1152 128 -1536 2 polygon
1 1.000 -112 -1056 -112 -1536 2 polygon
1 1.000 -352 -960 -352 -1536 2 polygon
1 1.000 -592 -864 -592 -1536 2 polygon
0.180 0.545 0.341 scb
(Fringe capacitances) {/Times-Roman cf} 2 16 0.000 1.000 -1040 -720 label
sce
(\265m\)) {/Times-RomanISO cf} (\(values in aF/) {/Times-Roman cf} 4 16 0.000
1.000 -624 -720 label
{ns} (\2616) {/Times-Roman cf} {Ss} (\265m, so divide by 1.0e)
{/Times-RomanISO cf} (Note: LEF EDGECAPACITANCE is in pF/) {/Times-Roman cf} 8
16 0.000 1.000 -112 -720 label
(102.25) {/Times-Roman cf} 2 16 0.000 1.000 -784 -1504 label
(99.483) {/Times-Roman cf} 2 16 0.000 1.000 -528 -1504 label
(116.62) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1504 label
(94.529) {/Times-Roman cf} 2 16 0.000 1.000 -48 -1504 label
(106.39) {/Times-Roman cf} 2 16 0.000 1.000 192 -1504 label
(72.763) {/Times-Roman cf} 2 16 0.000 1.000 432 -1504 label
(141.68) {/Times-Roman cf} 2 16 0.000 1.000 688 -1504 label
(109.36) {/Times-Roman cf} 2 16 0.000 1.000 -784 -1408 label
(109.04) {/Times-Roman cf} 2 16 0.000 1.000 -528 -1408 label
(135.42) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1408 label
(115.79) {/Times-Roman cf} 2 16 0.000 1.000 -48 -1408 label
(152.95) {/Times-Roman cf} 2 16 0.000 1.000 192 -1408 label
(120.86) {/Times-Roman cf} 2 16 0.000 1.000 432 -1408 label
(113.11) {/Times-Roman cf} 2 16 0.000 1.000 -784 -1312 label
(114.74) {/Times-Roman cf} 2 16 0.000 1.000 -528 -1312 label
(150.89) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1312 label
(137.79) {/Times-Roman cf} 2 16 0.000 1.000 -48 -1312 label
(249.97) {/Times-Roman cf} 2 16 0.000 1.000 192 -1312 label
(119.67) {/Times-Roman cf} 2 16 0.000 1.000 -784 -1216 label
(125.83) {/Times-Roman cf} 2 16 0.000 1.000 -528 -1216 label
(191.73) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1216 label
(273.21) {/Times-Roman cf} 2 16 0.000 1.000 -48 -1216 label
(129.16) {/Times-Roman cf} 2 16 0.000 1.000 -784 -1120 label
(144.86) {/Times-Roman cf} 2 16 0.000 1.000 -528 -1120 label
(341.14) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1120 label
(168.89) {/Times-Roman cf} 2 16 0.000 1.000 -784 -1024 label
(351.52) {/Times-Roman cf} 2 16 0.000 1.000 -528 -1024 label
(378.01) {/Times-Roman cf} 2 16 0.000 1.000 -784 -928 label
0.180 0.545 0.341 scb
(Sidewall capacitances) {/Times-Roman cf} 2 16 0.000 1.000 -1040 -1696 label
sce
(\265m\)) {/Times-RomanISO cf} (\(values in aF/) {/Times-Roman cf} 4 16 0.000
1.000 -624 -1696 label
0.000 0.000 1.000 scb
(poly) {/Times-Roman cf} 2 19 0.000 1.000 784 -1776 label
(li) {/Times-Roman cf} 2 19 0.000 1.000 480 -1776 label
(metal1) {/Times-Roman cf} 2 19 0.000 1.000 304 -1776 label
(metal2) {/Times-Roman cf} 2 19 0.000 1.000 64 -1776 label
(metal3) {/Times-Roman cf} 2 19 0.000 1.000 -176 -1776 label
(metal4) {/Times-Roman cf} 2 19 0.000 1.000 -432 -1776 label
(metal5) {/Times-Roman cf} 2 19 0.000 1.000 -704 -1776 label
sce
1 1.000 864 -1824 -848 -1824 2 polygon
1 1.000 -848 -1920 -848 -1824 2 polygon
1 1.000 864 -1920 864 -1824 2 polygon
1 1.000 624 -1920 624 -1824 2 polygon
1 1.000 368 -1920 368 -1824 2 polygon
1 1.000 128 -1920 128 -1824 2 polygon
1 1.000 -112 -1920 -112 -1824 2 polygon
1 1.000 -352 -1920 -352 -1824 2 polygon
1 1.000 -592 -1920 -592 -1824 2 polygon
1 1.000 864 -1920 -848 -1920 2 polygon
(77.267) {/Times-Roman cf} 2 21 0.000 1.000 -736 -1872 label
(29.9265) {/Times-Roman cf} 2 21 0.000 1.000 -480 -1872 label
(30.675) {/Times-Roman cf} 2 21 0.000 1.000 -240 -1872 label
(13.387) {/Times-Roman cf} 2 21 0.000 1.000 0 -1872 label
(14.343) {/Times-Roman cf} 2 21 0.000 1.000 240 -1872 label
(3.937) {/Times-Roman cf} 2 21 0.000 1.000 496 -1872 label
(6.710) {/Times-Roman cf} 2 21 0.000 1.000 736 -1872 label
0.820 0.039 0.859 scb
0 1.000 112 -1936 112 -256 384 -256 384 -1936 4 polygon
pgsave restore showpage
%%Page: worksheet1 3
%%PageOrientation: Portrait
%%PageBoundingBox: 0 0 612 792
/pgsave save def bop
% 32.00 8.00 gridspace
0.6922 inchscale
2.6000 setlinewidth 822 1572 translate
0.180 0.545 0.341 scb
(Inter-layer capacitances worksheet) {/Times-Roman cf} 2 16 0.000 1.000 -1072
1024 label
sce
(metal5 to metal4:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 912 label
(0.505) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.0) {/Times-Roman cf} 13 16 0.000 1.000 -992 848 label
(metal5 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 784 label
(1.35) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.0) {/Times-Roman cf} 13 16 0.000 1.000 -992 720 label
(0.39) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -992 672 label
(metal5 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 608 label
(1.35) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.0) {/Times-Roman cf} 13 16 0.000 1.000 -992 544 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -992 496 label
(0.42) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -992 448 label
(metal5 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 384 label
(1.35) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.0) {/Times-Roman cf} 13 16 0.000 1.000 -992 320 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -992 272 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -992 224 label
(0.27) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -992 176 label
(metal5 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 112 label
(1.35) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.0) {/Times-Roman cf} 13 16 0.000 1.000 -992 48 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -992 0 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -992 -48 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -992 -96 label
(0.265) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -992 -144 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -992 -192 label
(metal5 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -1056 -256 label
(1.35) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.0) {/Times-Roman cf} 13 16 0.000 1.000 -992 -320 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -992 -368 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -992 -416 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -992 -464 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -992 -512 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -992 -560 label
(0.3089) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 -992 -608 label
(metal5 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -1056 -736 label
(1.35) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.0) {/Times-Roman cf} 13 16 0.000 1.000 -992 -800 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -992 -848 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -992 -896 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -992 -944 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -992 -992 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -992 -1040 label
(0.9361) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 -992 -1088 label
(metal4 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -624 784 label
(0.39) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -544 720 label
(metal4 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -624 608 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -544 544 label
(0.42) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -544 496 label
(metal4 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -624 384 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -544 320 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -544 272 label
(0.27) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -544 224 label
(metal4 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -624 112 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -544 48 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -544 0 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -544 -48 label
(0.265) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -544 -96 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -544 -144 label
(metal4 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -608 -256 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -544 -320 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -544 -368 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -544 -416 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -544 -464 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -544 -512 label
(metal4 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -608 -736 label
(1.235) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.1) {/Times-Roman cf} 13 16 0.000 1.000 -544 -800 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -544 -848 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -544 -896 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -544 -944 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -544 -992 label
(0.9361) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 -544 -1040 label
(metal3 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -176 608 label
(0.42) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -96 544 label
(metal3 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -176 384 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -96 320 label
(0.27) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -96 272 label
(metal3 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -176 112 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -96 48 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -96 0 label
(0.265) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -96 -48 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -96 -96 label
(metal3 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -160 -256 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -96 -320 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -96 -368 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -96 -416 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -96 -464 label
(metal3 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -160 -736 label
(0.78) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.2) {/Times-Roman cf} 13 16 0.000 1.000 -96 -800 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 -96 -848 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 -96 -896 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 -96 -944 label
(0.9361) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 -96 -992 label
(metal2 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 240 384 label
(0.27) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 320 320 label
(metal2 to li:) {/Times-Roman cf} 2 16 0.000 1.000 240 112 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 320 48 label
(0.265) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 320 0 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 320 -48 label
(metal2 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 256 -256 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 320 -320 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 320 -368 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 320 -416 label
(metal2 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 256 -736 label
(0.63) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.5) {/Times-Roman cf} 13 16 0.000 1.000 320 -800 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 320 -848 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 320 -896 label
(0.9361) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 320 -944 label
(metal1 to li:) {/Times-Roman cf} 2 16 0.000 1.000 672 112 label
(0.265) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 752 48 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 752 0 label
(metal1 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 688 -256 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 752 -320 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 752 -368 label
(metal1 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 688 -736 label
(0.365) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(4.05) {/Times-Roman cf} 13 16 0.000 1.000 752 -800 label
(0.075) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.3) {/Times-Roman cf} 13 16 0.000 1.000 752 -848 label
(0.9361) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 752 -896 label
(li to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 1104 -256 label
(li to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 1104 -736 label
(0.9361) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 1168 -800 label
(poly to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 1456 -736 label
(0.3262) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 1520 -800 label
(\(series capacitors, top to bottom\)) {/Times-Roman cf} 2 16 0.000 1.000 -464
1024 label
0.647 0.165 0.165 scb
(SkyWater sky130A capacitance tables) {/Times-Roman cf} 2 16 0.000 1.000 -1072
1080 label
sce
1 1.000 -1080 1064 1784 1064 2 polygon
( \(used in magic tech file extract section\)) {ns} (2) {Ss} (\265m)
{/Times-RomanISO cf} (8.854 to get result in aF/) {/Times-Roman cf} ( = ) {ns}
(0) {ss} (e) {/Symbol cf} (Use ) {/Times-Roman cf} 16 16 0.000 1.000 -1024
-1192 label
(0.1210) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.5) {/Times-Roman cf} 13 16 0.000 1.000 -992 -656 label
(0.3089) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 -544 -560 label
(0.1210) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.5) {/Times-Roman cf} 13 16 0.000 1.000 -544 -608 label
(0.3089) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 -96 -512 label
(0.1210) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.5) {/Times-Roman cf} 13 16 0.000 1.000 -96 -560 label
(0.3089) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 320 -464 label
(0.1210) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.5) {/Times-Roman cf} 13 16 0.000 1.000 320 -512 label
(0.3089) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 752 -416 label
(0.1210) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.5) {/Times-Roman cf} 13 16 0.000 1.000 752 -464 label
(0.3089) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(3.9) {/Times-Roman cf} 13 16 0.000 1.000 1104 -320 label
(0.1210) {hS} {hS} ( /) {ns} (0) {ss} {/Times-Roman cf} (e) {/Symbol cf} {hS}
(7.5) {/Times-Roman cf} 13 16 0.000 1.000 1104 -368 label
pgsave restore showpage
%%Page: worksheet2 4
%%PageOrientation: Portrait
%%PageBoundingBox: 0 0 612 792
/pgsave save def bop
% 32.00 8.00 gridspace
0.6922 inchscale
2.6000 setlinewidth 814 1600 translate
0.180 0.545 0.341 scb
(Inter-layer capacitances worksheet) {/Times-Roman cf} 2 16 0.000 1.000 -1072
992 label
sce
(metal5 to metal4:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 880 label
(metal5 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 752 label
(metal5 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 576 label
(metal5 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 352 label
(147.5667) {/Times-Roman cf} 2 16 0.000 1.000 -992 144 label
(metal5 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -1072 80 label
(metal5 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -1056 -288 label
(metal5 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -1056 -768 label
(metal4 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -624 752 label
(metal4 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -624 576 label
(metal4 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -624 352 label
(metal4 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -624 80 label
(metal4 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -608 -288 label
(metal4 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -608 -768 label
(metal3 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -176 576 label
(metal3 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -176 352 label
(metal3 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -176 80 label
(metal3 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -160 -288 label
(metal3 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -160 -768 label
(metal2 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 256 352 label
(metal2 to li:) {/Times-Roman cf} 2 16 0.000 1.000 256 80 label
(metal2 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 272 -288 label
(metal2 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 272 -768 label
(metal1 to li:) {/Times-Roman cf} 2 16 0.000 1.000 688 80 label
(metal1 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 704 -288 label
(metal1 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 704 -768 label
(li to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 1112 -288 label
(li to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 1112 -768 label
(poly to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 1464 -768 label
(\(series capacitors, top to bottom\)) {/Times-Roman cf} 2 16 0.000 1.000 -464
992 label
(70.1307) {/Times-Roman cf} 2 16 0.000 1.000 -992 816 label
(26.2341) {/Times-Roman cf} 2 16 0.000 1.000 -992 688 label
(93.0805) {/Times-Roman cf} 2 16 0.000 1.000 -992 640 label
(93.0805) {/Times-Roman cf} 2 16 0.000 1.000 -544 688 label
(26.2341) {/Times-Roman cf} 2 16 0.000 1.000 -992 512 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -992 464 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -544 512 label
(88.5400) {/Times-Roman cf} 2 16 0.000 1.000 -992 416 label
(88.5400) {/Times-Roman cf} 2 16 0.000 1.000 -544 464 label
(88.5400) {/Times-Roman cf} 2 16 0.000 1.000 -96 512 label
(26.2341) {/Times-Roman cf} 2 16 0.000 1.000 -992 288 label
(26.2341) {/Times-Roman cf} 2 16 0.000 1.000 -992 16 label
(26.2341) {/Times-Roman cf} 2 16 0.000 1.000 -992 -352 label
(26.2341) {/Times-Roman cf} 2 16 0.000 1.000 -992 -832 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -992 240 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -992 -32 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -992 -400 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -992 -880 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -544 -832 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -544 -352 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -544 16 label
(29.3938) {/Times-Roman cf} 2 16 0.000 1.000 -544 288 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -992 192 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -544 240 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -96 288 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -992 -80 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -544 -32 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -96 16 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -992 -448 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -544 -400 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -96 -352 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -992 -928 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -544 -880 label
(47.6754) {/Times-Roman cf} 2 16 0.000 1.000 -96 -832 label
(147.5667) {/Times-Roman cf} 2 16 0.000 1.000 -544 192 label
(147.5667) {/Times-Roman cf} 2 16 0.000 1.000 -96 240 label
(147.5667) {/Times-Roman cf} 2 16 0.000 1.000 336 288 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -992 -128 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -544 -80 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -96 -32 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 336 16 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -992 -496 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -544 -448 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -96 -400 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 336 -352 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -992 -976 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -544 -928 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 -96 -880 label
(64.2429) {/Times-Roman cf} 2 16 0.000 1.000 336 -832 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -992 -224 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -544 -176 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -96 -128 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 336 -80 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 768 -32 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -992 -592 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -544 -544 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -96 -496 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 336 -448 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 768 -400 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -992 -1072 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -544 -1024 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 -96 -976 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 336 -928 label
(861.7893) {/Times-Roman cf} 2 16 0.000 1.000 768 -880 label
(36.8877) {/Times-Roman cf} 2 16 0.000 1.000 -992 -1120 label
(36.8877) {/Times-Roman cf} 2 16 0.000 1.000 -544 -1072 label
(36.8877) {/Times-Roman cf} 2 16 0.000 1.000 -96 -1024 label
(36.8877) {/Times-Roman cf} 2 16 0.000 1.000 336 -976 label
(36.8877) {/Times-Roman cf} 2 16 0.000 1.000 768 -928 label
(\) to get final interlayer capacitor value.) {ns} (N) {ss} ( + ... + 1/C) {ns}
(1) {ss} ( + 1/C) {ns} (0) {ss} ( = 1/C) {ns} (tot) {ss}
(Add these in parallel combination \(1/C) {/Times-Roman cf} 18 16 0.000 1.000
-992 -1216 label
(36.8877) {/Times-Roman cf} 2 16 0.000 1.000 1184 -832 label
(105.8571) {/Times-Roman cf} 2 16 0.000 1.000 1520 -832 label
1 1.000 -1072 1032 1792 1032 2 polygon
0.647 0.165 0.165 scb
(SkyWater sky130A capacitance tables) {/Times-Roman cf} 2 16 0.000 1.000 -1064
1048 label
sce
(111.7900) {/Times-Roman cf} 2 16 0.000 1.000 -992 -640 label
(548.8000) {/Times-Roman cf} 2 16 0.000 1.000 -992 -688 label
(111.7900) {/Times-Roman cf} 2 16 0.000 1.000 -544 -592 label
(548.8000) {/Times-Roman cf} 2 16 0.000 1.000 -544 -640 label
(111.7900) {/Times-Roman cf} 2 16 0.000 1.000 -96 -544 label
(548.8000) {/Times-Roman cf} 2 16 0.000 1.000 -96 -592 label
(111.7900) {/Times-Roman cf} 2 16 0.000 1.000 336 -496 label
(548.8000) {/Times-Roman cf} 2 16 0.000 1.000 336 -544 label
(111.7900) {/Times-Roman cf} 2 16 0.000 1.000 768 -448 label
(548.8000) {/Times-Roman cf} 2 16 0.000 1.000 768 -496 label
(111.7900) {/Times-Roman cf} 2 16 0.000 1.000 1184 -352 label
(548.8000) {/Times-Roman cf} 2 16 0.000 1.000 1184 -400 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 -992 -1024 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 -544 -976 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 -96 -928 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 336 -880 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 768 -832 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 -992 -544 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 -544 -496 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 -96 -448 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 336 -400 label
(98.243) {/Times-Roman cf} 2 16 0.000 1.000 768 -352 label
(135.320) {/Times-Roman cf} 2 16 0.000 1.000 -992 -176 label
(135.320) {/Times-Roman cf} 2 16 0.000 1.000 -544 -128 label
(135.320) {/Times-Roman cf} 2 16 0.000 1.000 -96 -80 label
(135.320) {/Times-Roman cf} 2 16 0.000 1.000 336 -32 label
(135.320) {/Times-Roman cf} 2 16 0.000 1.000 768 16 label
pgsave restore showpage
%%Page: worksheet3 5
%%PageOrientation: Portrait
%%PageBoundingBox: 0 0 612 792
/pgsave save def bop
% 32.00 8.00 gridspace
0.6922 inchscale
2.6000 setlinewidth 1277 1656 translate
0.647 0.165 0.165 scb
(Interlayer \(fringe\) capacitance worksheet:) {/Times-Roman cf} 2 16 0.000
1.000 -1280 896 label
sce
( = ) {ns} (fringe) {ss} (Simple fringe capacitance equation used: C)
{/Times-Roman cf} 6 16 0.000 1.000 -1280 800 label
1 1.000 -456 808 -344 808 2 polygon
(K) {ns} (0) {ss} (pe) {/Symbol cf} (2) {/Times-Roman cf} 8 17 0.000 1.000 -408
824 label
(log\(h/t\)) {/Times-Roman cf} 2 29 0.000 1.000 -392 792 label
(where h is the distance between layers and t is the sidewall thickness.)
{/Times-Roman cf} 2 16 0.000 1.000 -224 800 label
(Use geometric mean for K \(instead of doing series capacitor additions\).)
{/Times-Roman cf} 2 16 0.000 1.000 -1288 680 label
( = 2\(3.14159\)\(8.854\) = 55.631) {ns} (0) {ss} (pe) {/Symbol cf} (2)
{/Times-Roman cf} 8 16 0.000 1.000 -216 744 label
( \(5-3\) = \(1.35/1.74\) * 4.0 + \(0.39/1.74\) * 4.1 = 4.0224) {ns} (eff) {ss}
(K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 560 label
( \(5-2\) = \(1.35/3.005\) * 4.0 + \(1.235/3.005\) * 4.1 + \(0.42/3.005\) * 4.2 = 4.0691)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 512 label
( \(5-1\) = \(1.35/3.635\) * 4.0 + \(1.235/3.635\) * 4.1 + \(0.78/3.635\) * 4.2 + \(0.27/3.635\) * 4.5 = 4.114)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 464 label
( \(5-li\) = \(1.35/4.335\) * 4.0 + \(1.235/4.335\) * 4.1 + \(0.78/4.335\) * 4.2 + \(0.63/4.335\) * 4.5 + \(0.265/4.335\) * 4.05 + \(0.075/4.335\) * 7.3 = 4.1973)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 416 label
(+ \(0.075/4.8649\) * 7.3 + \(0.3089/4.8649\) * 3.9 + \(0.121/4.8649\) * 7.5 = 4.2575)
{CR}
( \(5-poly\) = \(1.35/4.8649\) * 4.0 + \(1.235/4.8649\) * 4.1 + \(0.78/4.8649\) * 4.2 + \(0.63/4.8649\) * 4.5 + \(0.365/4.8649\) * 4.05)
{ns} (eff) {ss} (K) {/Times-Roman cf} 8 16 0.000 1.000 -1280 320 label
(+ \(0.075/5.3711\) * 7.3 + \(0.9361/5.3711\) * 3.9 = 4.1427) {CR}
( \(5-sub\) = \(1.35/5.3711\) * 4.0 + \(1.235/5.3711\) * 4.1 + \(0.78/5.3711\) * 4.2 + \(0.63/5.3711\) * 4.5 + \(0.365/5.3711\) * 4.05)
{ns} (eff) {ss} (K) {/Times-Roman cf} 8 16 0.000 1.000 -1280 224 label
( \(4-3\) = 4.1 ) {ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280
128 label
( \(4-2\) = \(1.235/1.655\) * 4.1 + \(0.42/1.655\) * 4.2 = 4.1254) {ns} (eff)
{ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 80 label
( \(4-1\) = \(1.235/2.285\) * 4.1 + \(0.78/2.285\) * 4.2 + \(0.27/2.285\) * 4.5 = 4.1814)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 32 label
( \(4-li\) = \(1.235/2.985\) * 4.1 + \(0.78/2.985\) * 4.2 + \(0.63/2.985\) * 4.5 + \(0.265/2.985\) * 4.05 + \(0.075/2.985\) * 7.3 = 4.2865)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -16 label
(+ \(0.075/3.5149\) * 7.3 + \(0.3089/3.5149\) * 3.9 + \(0.121/3.5149\) * 7.5 = 4.3564)
{CR}
( \(4-poly\) = \(1.235/3.5149\) + \(0.78/3.5149\) * 4.2 + \(0.63/3.5149\) * 4.5 + \(0.365/3.5149\) * 4.05)
{ns} (eff) {ss} (K) {/Times-Roman cf} 8 16 0.000 1.000 -1280 -112 label
(+ \(0.075/4.0211\) * 7.3 + \(0.9361/4.0211\) * 3.9 = 4.1907) {CR}
( \(4-sub\) = \(1.235/4.0211\) * 4.1 + \(0.78/4.0211\) * 4.2 + \(0.63/4.0211\) * 4.5 + \(0.365/4.0211\) * 4.05)
{ns} (eff) {ss} (K) {/Times-Roman cf} 8 16 0.000 1.000 -1280 -208 label
( \(5-4\) = 4.0) {ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280
608 label
( \(3-2\) = 4.2) {ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280
-288 label
( \(3-1\) = \(0.78/1.05\) * 4.2 + \(0.27/1.05\) * 4.5 = 4.2771 ) {ns} (eff)
{ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -336 label
( \(3-li\) = \(0.78/1.75\) * 4.2 + \(0.63/1.75\) * 4.5 + \(0.265/1.75\) * 4.05 + \(0.075/1.75\) * 7.3 = 4.4181)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -384 label
(+ \(0.075/2.2799\) * 7.3 + \(0.3089/2.2799\) * 3.9 + \(0.121/2.2799\) * 7.5 = 4.4954)
{CR}
( \(3-poly\) = \(0.78/2.2799\) * 4.2 + \(0.63/2.2799\) * 4.5 + \(0.365/2.2799\) * 4.05)
{ns} (eff) {ss} (K) {/Times-Roman cf} 8 16 0.000 1.000 -1280 -480 label
( \(3-sub\) = \(0.78/2.7861\) * 4.2 + \(0.63/2.7861\) * 4.5 + \(0.365/2.7861\) * 4.05 + \(0.075/2.7861\) * 7.3 + \(0.9361/2.7861\) * 3.9 = 4.2308)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -528 label
( \(2-1\) = 4.5) {ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280
-608 label
( \(2-li\) = \(0.63/0.97\) * 4.5 + \(0.265/0.97\) * 4.05 + \(0.075/0.97\) * 7.3 = 4.5936)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -656 label
( \(2-poly\) = \(0.63/1.4999\) * 4.5 + \(0.365/1.4999\) * 4.05 + \(0.075/1.4999\) * 7.3 + \(0.3089/1.4999\) * 3.9 + \(0.121/1.4999\) * 7.5 = 4.6489)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -704 label
( \(2-sub\) = \(0.63/2.0061\) * 4.5 + \(0.365/2.0061\) * 4.05 + \(0.075/2.0061\) * 7.3 + \(0.9361/2.0061\) * 3.9 = 4.2428)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -752 label
( \(1-li\) = \(0.265/0.34\) * 4.05 + \(0.075/0.34\) * 7.3 = 4.7669) {ns} (eff)
{ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -832 label
( \(1-poly\) = \(0.265/0.7699\) + \(0.075/0.7699\) * 7.3 + \(0.3089/0.7699\) * 3.9 + \(0.121/0.7699\) * 7.5 = 4.8486)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -880 label
( \(1-sub\) = \(0.365/1.3761\) * 4.05 + \(0.075/1.3761\) * 7.3 + \(0.9361/1.3761\) * 3.9 = 4.1251)
{ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -928 label
( \(li-poly\) = \(0.3089/0.4299\) * 3.9 + \(0.121/0.4299\) * 7.5 = 4.9133) {ns}
(eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000 -1280 -1024 label
( \(li-sub\) = 3.9) {ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000
-1280 -1072 label
( \(poly-sub\) = 3.9) {ns} (eff) {ss} (K) {/Times-Roman cf} 6 16 0.000 1.000
-1280 -1152 label
1 1.000 -1280 192 1008 192 2 polygon
1 1.000 -1280 -240 1008 -240 2 polygon
1 1.000 -1280 -560 1008 -560 2 polygon
1 1.000 -1280 -784 1008 -784 2 polygon
1 1.000 -1280 -960 1008 -960 2 polygon
1 1.000 -1280 -1104 1008 -1104 2 polygon
1 1.000 -1280 -1184 1008 -1184 2 polygon
1 1.000 -1280 656 1008 656 2 polygon
pgsave restore showpage
%%Page: worksheet4 6
%%PageOrientation: Portrait
%%PageBoundingBox: 0 0 612 792
/pgsave save def bop
% 32.00 8.00 gridspace
0.6922 inchscale
2.6000 setlinewidth 939 1793 translate
0.000 0.000 1.000 scb
(metal5 to metal4:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 896 label
(metal5 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 720 label
(metal4 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -832 720 label
(metal5 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 544 label
(metal4 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -832 544 label
(metal3 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -384 544 label
(metal5 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 352 label
(metal4 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -832 352 label
(metal3 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -384 352 label
(metal2 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 48 352 label
(metal5 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 160 label
(metal4 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -832 160 label
(metal3 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -384 160 label
(metal2 to li:) {/Times-Roman cf} 2 16 0.000 1.000 48 160 label
(metal1 to li:) {/Times-Roman cf} 2 16 0.000 1.000 480 160 label
(metal5 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 -64 label
(metal4 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -832 -64 label
(metal3 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -384 -64 label
(metal2 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 48 -64 label
(metal1 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 480 -64 label
(li to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 896 -64 label
(metal5 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 -272 label
(metal4 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -832 -272 label
(metal3 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -384 -272 label
(metal2 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 48 -272 label
(metal1 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 480 -272 label
(li to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 896 -272 label
(poly to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 1248 -272 label
sce
(\(Note: K value of 4.0 is inaccurate due to TOPNIT and PI1 surrounding metal5\))
{/Times-Roman cf} 2 16 0.000 1.000 -864 896 label
(55.631 * 4.0) {/Times-Roman cf} 2 16 0.000 1.000 -1248 848 label
1 1.000 -1264 832 -1024 832 2 polygon
(log\(1 + 2\2640.505/1.26\)) {/Times-Roman cf} 2 21 0.000 1.000 -1152 800 label
(55.631 * 4.0224) {/Times-Roman cf} 2 16 0.000 1.000 -1264 672 label
1 1.000 -1264 656 -1024 656 2 polygon
(log\(1 + 2\2641.74/1.26\)) {/Times-Roman cf} 2 21 0.000 1.000 -1136 624 label
(55.631 * 4.0691) {/Times-Roman cf} 2 16 0.000 1.000 -1264 496 label
1 1.000 -1264 480 -1024 480 2 polygon
(log\(1 + 2\2643.005/1.26\)) {/Times-Roman cf} 2 21 0.000 1.000 -1136 448 label
(55.631 * 4.114) {/Times-Roman cf} 2 16 0.000 1.000 -1264 304 label
1 1.000 -1264 288 -1024 288 2 polygon
(log\(1 + 2\2643.635/1.26\)) {/Times-Roman cf} 2 21 0.000 1.000 -1136 256 label
(55.631 * 4.1973) {/Times-Roman cf} 2 16 0.000 1.000 -1264 112 label
1 1.000 -1264 96 -1024 96 2 polygon
(log\(1 + 2\2644.335/1.26\)) {/Times-Roman cf} 2 21 0.000 1.000 -1136 64 label
(55.631 * 4.2575) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -112 label
1 1.000 -1264 -128 -1024 -128 2 polygon
(log\(1 + 2\2644.8649/1.26\)) {/Times-Roman cf} 2 21 0.000 1.000 -1136 -160
label
(55.631 * 4.1427) {/Times-Roman cf} 2 16 0.000 1.000 -1248 -320 label
1 1.000 -1248 -336 -1008 -336 2 polygon
(log\(1 + 2\2645.3711/1.26\)) {/Times-Roman cf} 2 21 0.000 1.000 -1120 -368
label
(55.631 * 4.1) {/Times-Roman cf} 2 16 0.000 1.000 -832 672 label
1 1.000 -832 656 -592 656 2 polygon
(log\(1 + 2\2640.39/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -704 624 label
1 1.000 -832 480 -592 480 2 polygon
(log\(1 + 2\2641.655/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -704 448 label
(55.631 * 4.1254) {/Times-Roman cf} 2 16 0.000 1.000 -832 496 label
1 1.000 -832 288 -592 288 2 polygon
(log\(1 + 2\2642.285/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -704 256 label
(55.631 * 4.2865) {/Times-Roman cf} 2 16 0.000 1.000 -832 112 label
1 1.000 -832 96 -592 96 2 polygon
(log\(1 + 2\2642.985/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -704 64 label
(55.631 * 4.3564) {/Times-Roman cf} 2 16 0.000 1.000 -832 -112 label
1 1.000 -832 -128 -592 -128 2 polygon
(log\(1 + 2\2643.5149/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -704 -160
label
(55.631 * 4.1907) {/Times-Roman cf} 2 16 0.000 1.000 -816 -320 label
1 1.000 -816 -336 -576 -336 2 polygon
(log\(1 + 2\2644.0211/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -688 -368
label
(55.631 * 4.1814) {/Times-Roman cf} 2 16 0.000 1.000 -832 304 label
(55.631 * 4.2308) {/Times-Roman cf} 2 16 0.000 1.000 -352 -320 label
1 1.000 -352 -336 -112 -336 2 polygon
(log\(1 + 2\2642.7861/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -224 -368
label
(55.631 * 4.4954) {/Times-Roman cf} 2 16 0.000 1.000 -368 -112 label
1 1.000 -368 -128 -128 -128 2 polygon
(log\(1 + 2\2642.2799/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -240 -160
label
1 1.000 -368 96 -128 96 2 polygon
(log\(1 + 2\2641.75/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -240 64 label
(55.631 * 4.4181) {/Times-Roman cf} 2 16 0.000 1.000 -368 112 label
1 1.000 -368 288 -128 288 2 polygon
(log\(1 + 2\2641.05/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -240 256 label
(55.631 * 4.2771) {/Times-Roman cf} 2 16 0.000 1.000 -368 304 label
1 1.000 -368 480 -128 480 2 polygon
(log\(1 + 2\2640.42/0.854\)) {/Times-Roman cf} 2 21 0.000 1.000 -240 448 label
(55.631 * 4.2) {/Times-Roman cf} 2 16 0.000 1.000 -368 496 label
1 1.000 48 288 288 288 2 polygon
(log\(1 + 2\2640.27/0.36\)) {/Times-Roman cf} 2 21 0.000 1.000 176 256 label
(55.631 * 4.5) {/Times-Roman cf} 2 16 0.000 1.000 48 304 label
1 1.000 48 96 288 96 2 polygon
(log\(1 + 2\2640.97/0.36\)) {/Times-Roman cf} 2 21 360.000 1.000 176 64 label
(55.631 * 4.5936) {/Times-Roman cf} 2 16 0.000 1.000 48 112 label
(55.631 * 4.6489) {/Times-Roman cf} 2 16 0.000 1.000 48 -112 label
1 1.000 48 -128 288 -128 2 polygon
(log\(1 + 2\2641.4999/0.36\)) {/Times-Roman cf} 2 21 0.000 1.000 176 -160 label
(55.631 * 4.2428) {/Times-Roman cf} 2 16 0.000 1.000 64 -320 label
1 1.000 64 -336 304 -336 2 polygon
(log\(1 + 2\2642.0061/0.36\)) {/Times-Roman cf} 2 21 0.000 1.000 192 -368 label
(55.631 * 4.1251) {/Times-Roman cf} 2 16 0.000 1.000 512 -320 label
1 1.000 512 -336 752 -336 2 polygon
(log\(1 + 2\2641.3761/0.36\)) {/Times-Roman cf} 2 21 0.000 1.000 640 -368 label
(55.631 * 4.8486) {/Times-Roman cf} 2 16 0.000 1.000 496 -112 label
1 1.000 496 -128 736 -128 2 polygon
(log\(1 + 2\2640.8699/0.36\)) {/Times-Roman cf} 2 21 0.000 1.000 624 -160 label
(log\(1 + 2\2640.34/0.36\)) {/Times-Roman cf} 2 21 360.000 1.000 624 64 label
(55.631 * 4.7669) {/Times-Roman cf} 2 16 0.000 1.000 496 112 label
1 1.000 496 96 736 96 2 polygon
(55.631 * 3.9) {/Times-Roman cf} 2 16 0.000 1.000 896 -320 label
1 1.000 896 -336 1136 -336 2 polygon
(log\(1 + 2\2640.9361/0.1\)) {/Times-Roman cf} 2 21 0.000 1.000 1024 -368 label
(55.631 * 4.9133) {/Times-Roman cf} 2 16 0.000 1.000 880 -112 label
1 1.000 880 -128 1120 -128 2 polygon
(log\(1 + 2\2640.4299/0.1\)) {/Times-Roman cf} 2 21 0.000 1.000 1008 -160 label
(55.631 * 3.9) {/Times-Roman cf} 2 16 0.000 1.000 1280 -320 label
1 1.000 1280 -336 1520 -336 2 polygon
(log\(1 + 2\2640.3262/0.18\)) {/Times-Roman cf} 2 21 0.000 1.000 1408 -368
label
1 1.000 -1344 -496 1760 -496 2 polygon
0.000 0.000 1.000 scb
(metal5 to metal4:) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -592 label
(metal5 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -768 label
(metal4 to metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -816 -768 label
(metal5 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -944 label
(metal4 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -816 -944 label
(metal3 to metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -368 -944 label
(metal5 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -1136 label
(metal4 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -816 -1136 label
(metal3 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -368 -1136 label
(metal2 to metal1:) {/Times-Roman cf} 2 16 0.000 1.000 80 -1136 label
(metal5 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -1328 label
(metal4 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -816 -1328 label
(metal3 to li:) {/Times-Roman cf} 2 16 0.000 1.000 -368 -1328 label
(metal2 to li:) {/Times-Roman cf} 2 16 0.000 1.000 80 -1328 label
(metal1 to li:) {/Times-Roman cf} 2 16 0.000 1.000 512 -1328 label
(metal5 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -1536 label
(metal4 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -816 -1536 label
(metal3 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 -368 -1536 label
(metal2 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 80 -1536 label
(metal1 to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 512 -1536 label
(li to field poly:) {/Times-Roman cf} 2 16 0.000 1.000 912 -1536 label
(metal5 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -1264 -1744 label
(metal4 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -816 -1744 label
(metal3 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 -368 -1744 label
(metal2 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 80 -1744 label
(metal1 to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 512 -1744 label
(li to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 912 -1744 label
(poly to diff/well/sub:) {/Times-Roman cf} 2 16 0.000 1.000 1264 -1744 label
sce
(\(Note: K value of 4.0 is inaccurate due to TOPNIT and PI1 surrounding metal5\))
{/Times-Roman cf} 2 16 0.000 1.000 -848 -592 label
0.647 0.165 0.165 scb
(Interlayer \(fringe\) capacitance worksheet \(continued from last page\):)
{/Times-Roman cf} 2 16 0.000 1.000 -1280 1280 label
sce
( = ) {ns} (fringe) {ss} (Simple fringe capacitance equation used: C)
{/Times-Roman cf} 6 16 0.000 1.000 -1280 1184 label
1 1.000 -448 1184 -272 1184 2 polygon
(K) {ns} (0) {ss} (pe) {/Symbol cf} (2) {/Times-Roman cf} 8 17 0.000 1.000 -368
1200 label
(log\(1 + 2h/t\)) {/Times-Roman cf} 2 29 0.000 1.000 -352 1168 label
(where h is the distance between layers and t is the sidewall thickness.)
{/Times-Roman cf} 2 16 0.000 1.000 -192 1184 label
( = 2\(3.14159\)\(8.854\) = 55.631) {ns} (0) {ss} (pe) {/Symbol cf} (2)
{/Times-Roman cf} 8 16 0.000 1.000 -176 1120 label
1 1.000 -1296 960 1824 960 2 polygon
(match, although there are also more complicated expressions \(all are ultimately approximations to the exact field equation solutions\).)
{CR}
(Note that all \(?\) texts seem to use "log\(h/t\)" which is entirely nonsensical as it implies negative fringe capacitance for h < t. The above expression is a better)
{/Times-Roman cf} 4 16 0.000 1.000 -1280 1008 label
(378.01) {/Times-Roman cf} 2 16 0.000 1.000 -1184 -688 label
(168.89) {/Times-Roman cf} 2 16 0.000 1.000 -1184 -864 label
(129.16) {/Times-Roman cf} 2 16 0.000 1.000 -1184 -1056 label
(119.67) {/Times-Roman cf} 2 16 0.000 1.000 -1168 -1232 label
(109.36) {/Times-Roman cf} 2 16 0.000 1.000 -1168 -1648 label
(102.25) {/Times-Roman cf} 2 16 0.000 1.000 -1168 -1840 label
(113.11) {/Times-Roman cf} 2 16 0.000 1.000 -1168 -1440 label
(351.52) {/Times-Roman cf} 2 16 0.000 1.000 -720 -864 label
(144.86) {/Times-Roman cf} 2 16 0.000 1.000 -720 -1056 label
(125.83) {/Times-Roman cf} 2 16 0.000 1.000 -720 -1232 label
(109.04) {/Times-Roman cf} 2 16 0.000 1.000 -720 -1632 label
(114.74) {/Times-Roman cf} 2 16 0.000 1.000 -704 -1440 label
(341.14) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1040 label
(191.73) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1232 label
(150.89) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1440 label
(273.21) {/Times-Roman cf} 2 16 0.000 1.000 128 -1248 label
(99.483) {/Times-Roman cf} 2 16 0.000 1.000 -704 -1840 label
(135.42) {/Times-Roman cf} 2 16 0.000 1.000 -288 -1632 label
(116.62) {/Times-Roman cf} 2 16 0.000 1.000 -272 -1824 label
(137.79) {/Times-Roman cf} 2 16 0.000 1.000 128 -1440 label
(115.79) {/Times-Roman cf} 2 16 0.000 1.000 128 -1632 label
(94.529) {/Times-Roman cf} 2 16 0.000 1.000 144 -1824 label
(249.97) {/Times-Roman cf} 2 16 0.000 1.000 544 -1440 label
(152.95) {/Times-Roman cf} 2 16 0.000 1.000 560 -1632 label
(106.39) {/Times-Roman cf} 2 16 0.000 1.000 576 -1824 label
(120.86) {/Times-Roman cf} 2 16 0.000 1.000 960 -1632 label
(72.763) {/Times-Roman cf} 2 16 0.000 1.000 976 -1824 label
(141.68) {/Times-Roman cf} 2 16 0.000 1.000 1312 -1824 label
pgsave restore showpage
%%Page: worksheet5 7
%%PageOrientation: Portrait
%%PageBoundingBox: 0 0 612 792
/pgsave save def bop
% 32.00 8.00 gridspace
0.6922 inchscale
2.6000 setlinewidth 1412 988 translate
(Sidewall capacitance worksheet:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 896
label
(\265m separation. For an answer in units per micron, assume 1\265m length as well.)
{/Times-RomanISO cf} (Capacitance \(in magic\251s tech file\) is measured at 1)
{/Times-Roman cf} 4 16 0.000 1.000 -1280 832 label
{ns} (0) {ss} (e) {/Symbol cf} ( = K ) {ns} (ox) {ss}
(Capacitance is then just the usual equation, C) {/Times-Roman cf} 11 16 0.000
1.000 -1280 768 label
( = 8.854) {ns} (0) {ss} (e) {/Symbol cf} (with ) {/Times-Roman cf} 8 16 0.000
1.000 -192 768 label
(metal4:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 400 label
(4.0 * 8.854 * 0.845 = 29.9265) {/Times-Roman cf} 2 16 360.000 1.000 -1088
400 label
( h) {/Times-Roman cf} 2 16 0.000 1.000 -416 768 label
(and where h is the layer thickness.) {/Times-Roman cf} 2 16 0.000 1.000 128
768 label
(h) {/Times-Roman cf} 2 16 0.000 1.000 -848 528 label
(0) {ss} (e) {/Symbol cf} 4 16 0.000 1.000 -976 528 label
(K) {/Times-Roman cf} 2 17 0.000 1.000 -1072 528 label
(sidewall) {ss} (C) {/Times-Roman cf} 4 16 0.000 1.000 -704 528 label
(metal5:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 448 label
(metal3:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 352 label
(metal2:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 304 label
(metal1:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 256 label
(li:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 208 label
(poly:) {/Times-Roman cf} 2 16 0.000 1.000 -1280 160 label
1 1.000 -1280 496 -320 496 2 polygon
(For side-extending dielectric, use a pro-rated K \(values for horizontal thickness of these dielectrics not shown on the first page\).)
{/Times-Roman cf} 2 16 0.000 1.000 -1280 640 label
(\265m\)) {/Times-RomanISO cf} (\(aF/) {/Times-Roman cf} 4 16 0.000 1.000 -560
528 label
(4.1 * 8.854 * 0.845 = 30.675) {/Times-Roman cf} 2 16 360.000 1.000 -1088 352
label
(4.2 * 8.854 * 0.36 = 13.387) {/Times-Roman cf} 2 16 360.000 1.000 -1088 304
label
(4.5 * 8.854 * 0.36 = 14.343) {/Times-Roman cf} 2 16 360.000 1.000 -1088 256
label
(6.926 * 8.854 * 1.26 = 77.267) {/Times-Roman cf} 2 16 360.000 1.000 -1088
448 label
(2.94\) = 6.926) {hS} (\264) {hS} (\(0.07 + 0.4223\)\)) {hS}
(7.5\) + \(\(1 - 2) {hS} (\264) {hS} (0.4223) {hS} (\264) {hS} (3.9\) + \(2)
{hS} (\264) {hS} (0.07) {hS} (\264) {hS} ( = \(2) {ns} (eff) {ss} (K)
{/Times-Roman cf} 28 16 0.000 1.000 -448 448 label
(4.05\) = 4.447) {hS} (\264) {hS} (\(0.061\)\)) {hS} (7.3\) + \(\(1 - 2) {hS}
(\264) {hS} (0.061) {hS} (\264) {hS} ( = \(2) {ns} (eff) {ss} (K)
{/Times-Roman cf} 20 16 0.000 1.000 -448 208 label
(4.447 * 8.854 * 0.1 = 3.937) {/Times-Roman cf} 2 16 360.000 1.000 -1088 208
label
(3.9\) = 4.210) {hS} (\264) {hS} (\(0.006 + 0.0431\)\)) {hS}
(7.5\) + \(\(1 - 2) {hS} (\264) {hS} (0.0431) {hS} (\264) {hS} (3.9\) + \(2)
{hS} (\264) {hS} (0.006) {hS} (\264) {hS} ( = \(2) {ns} (eff) {ss} (K)
{/Times-Roman cf} 28 16 0.000 1.000 -448 160 label
(4.21 * 8.854 * 0.18 = 6.710) {/Times-Roman cf} 2 16 360.000 1.000 -1088 160
label
pgsave restore showpage
%%Trailer
XCIRCsave restore
%%EOF
| PostScript | 4 | wanderrful/skywater-pdk | docs/_static/metal_stack.ps | [
"Apache-2.0"
] |
#
mes 2,EM_WSIZE,EM_PSIZE
exp $execle
pro $execle,0
lal EM_PSIZE
1
dup EM_PSIZE
loi EM_PSIZE
zer EM_PSIZE
cmp
zeq *2
adp EM_PSIZE
bra *1
2
adp EM_PSIZE
loi EM_PSIZE
lal EM_PSIZE
lal 0
loi EM_PSIZE
loc 59
mon
ste errno
loc -1
ret EM_WSIZE
end
| Eiffel | 0 | wyan/ack | plat/em/libsys/execle.e | [
"BSD-3-Clause"
] |
<%= foo() %>
| HTML+EEX | 0 | arikai/distillery | test/fixtures/mock_app/invalid_tmpl.eex | [
"MIT"
] |
-- Create a table for Public Profiles
create table profiles (
id uuid references auth.users not null,
updated_at timestamp with time zone,
username text unique,
avatar_url text,
website text,
primary key (id),
unique(username),
constraint username_length check (char_length(username) >= 3)
);
alter table profiles enable row level security;
create policy "Public profiles are viewable by everyone."
on profiles for select
using ( true );
create policy "Users can insert their own profile."
on profiles for insert
with check ( auth.uid() = id );
create policy "Users can update own profile."
on profiles for update
using ( auth.uid() = id );
-- Set up Realtime!
begin;
drop publication if exists supabase_realtime;
create publication supabase_realtime;
commit;
alter publication supabase_realtime add table profiles;
-- Set up Storage!
insert into storage.buckets (id, name)
values ('avatars', 'avatars');
create policy "Avatar images are publicly accessible."
on storage.objects for select
using ( bucket_id = 'avatars' );
create policy "Anyone can upload an avatar."
on storage.objects for insert
with check ( bucket_id = 'avatars' ); | SQL | 4 | ProPiloty/supabase | examples/react-user-management/schema.sql | [
"Apache-2.0"
] |
package jadx.tests.api.utils.assertj;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.function.Function;
import java.util.stream.Collectors;
import org.assertj.core.api.AbstractStringAssert;
import jadx.api.ICodeWriter;
import jadx.tests.api.utils.TestUtils;
public class JadxCodeAssertions extends AbstractStringAssert<JadxCodeAssertions> {
public JadxCodeAssertions(String code) {
super(code, JadxCodeAssertions.class);
}
public JadxCodeAssertions containsOne(String substring) {
return countString(1, substring);
}
public JadxCodeAssertions countString(int count, String substring) {
isNotNull();
int actualCount = TestUtils.count(actual, substring);
if (actualCount != count) {
failWithMessage("Expected a substring <%s> count <%d> but was <%d>", substring, count, actualCount);
}
return this;
}
public JadxCodeAssertions notContainsLine(int indent, String line) {
return countLine(0, indent, line);
}
public JadxCodeAssertions containsLine(int indent, String line) {
return countLine(1, indent, line);
}
private JadxCodeAssertions countLine(int count, int indent, String line) {
String indentStr = TestUtils.indent(indent);
return countString(count, indentStr + line);
}
public JadxCodeAssertions containsLines(String... lines) {
return containsLines(0, lines);
}
public JadxCodeAssertions containsLines(int commonIndent, String... lines) {
if (lines.length == 1) {
return containsLine(commonIndent, lines[0]);
}
String indent = TestUtils.indent(commonIndent);
StringBuilder sb = new StringBuilder();
boolean first = true;
for (String line : lines) {
if (!line.isEmpty()) {
if (first) {
first = false;
} else {
sb.append(ICodeWriter.NL);
}
sb.append(indent);
sb.append(line);
}
}
return containsOnlyOnce(sb.toString());
}
public JadxCodeAssertions removeBlockComments() {
String code = actual.replaceAll("/\\*.*\\*/", "");
JadxCodeAssertions newCode = new JadxCodeAssertions(code);
newCode.print();
return newCode;
}
public JadxCodeAssertions print() {
System.out.println("-----------------------------------------------------------");
System.out.println(actual);
System.out.println("-----------------------------------------------------------");
return this;
}
public JadxCodeAssertions containsOneOf(String... substringArr) {
int matches = 0;
for (String substring : substringArr) {
matches += TestUtils.count(actual, substring);
}
if (matches != 1) {
failWithMessage("Expected only one match from <%s> but was <%d>", Arrays.toString(substringArr), matches);
}
return this;
}
@SuppressWarnings("UnusedReturnValue")
@SafeVarargs
public final JadxCodeAssertions oneOf(Function<JadxCodeAssertions, JadxCodeAssertions>... checks) {
int passed = 0;
List<Throwable> failed = new ArrayList<>();
for (Function<JadxCodeAssertions, JadxCodeAssertions> check : checks) {
try {
check.apply(this);
passed++;
} catch (Throwable e) {
failed.add(e);
}
}
if (passed != 1) {
failWithMessage("Expected only one match but passed: <%d>, failed: <%d>, details:\n<%s>",
passed, failed.size(),
failed.stream().map(Throwable::getMessage).collect(Collectors.joining("\nFailed check:\n ")));
}
return this;
}
}
| Java | 4 | mmdevlpr/jadx | jadx-core/src/test/java/jadx/tests/api/utils/assertj/JadxCodeAssertions.java | [
"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.datasources.text
import java.io.File
import java.nio.charset.StandardCharsets
import java.nio.file.Files
import org.apache.hadoop.io.SequenceFile.CompressionType
import org.apache.hadoop.io.compress.GzipCodec
import org.apache.spark.{SparkConf, TestUtils}
import org.apache.spark.sql.{AnalysisException, DataFrame, QueryTest, Row, SaveMode}
import org.apache.spark.sql.execution.datasources.CommonFileDataSourceSuite
import org.apache.spark.sql.internal.SQLConf
import org.apache.spark.sql.test.SharedSparkSession
import org.apache.spark.sql.types.{StringType, StructType}
import org.apache.spark.util.Utils
abstract class TextSuite extends QueryTest with SharedSparkSession with CommonFileDataSourceSuite {
import testImplicits._
override protected def dataSourceFormat = "text"
test("reading text file") {
verifyFrame(spark.read.format("text").load(testFile))
}
test("SQLContext.read.text() API") {
verifyFrame(spark.read.text(testFile))
}
test("SPARK-12562 verify write.text() can handle column name beyond `value`") {
val df = spark.read.text(testFile).withColumnRenamed("value", "adwrasdf")
val tempFile = Utils.createTempDir()
tempFile.delete()
df.write.text(tempFile.getCanonicalPath)
verifyFrame(spark.read.text(tempFile.getCanonicalPath))
Utils.deleteRecursively(tempFile)
}
test("error handling for invalid schema") {
val tempFile = Utils.createTempDir()
tempFile.delete()
val df = spark.range(2)
intercept[AnalysisException] {
df.write.text(tempFile.getCanonicalPath)
}
intercept[AnalysisException] {
spark.range(2).select(df("id"), df("id") + 1).write.text(tempFile.getCanonicalPath)
}
}
test("reading partitioned data using read.textFile()") {
val partitionedData = Thread.currentThread().getContextClassLoader
.getResource("test-data/text-partitioned").toString
val ds = spark.read.textFile(partitionedData)
val data = ds.collect()
assert(ds.schema == new StructType().add("value", StringType))
assert(data.length == 2)
}
test("support for partitioned reading using read.text()") {
val partitionedData = Thread.currentThread().getContextClassLoader
.getResource("test-data/text-partitioned").toString
val df = spark.read.text(partitionedData)
val data = df.filter("year = '2015'").select("value").collect()
assert(data(0) == Row("2015-test"))
assert(data.length == 1)
}
test("SPARK-13503 Support to specify the option for compression codec for TEXT") {
val testDf = spark.read.text(testFile)
val extensionNameMap = Map("bzip2" -> ".bz2", "deflate" -> ".deflate", "gzip" -> ".gz")
extensionNameMap.foreach {
case (codecName, extension) =>
val tempDir = Utils.createTempDir()
val tempDirPath = tempDir.getAbsolutePath
testDf.write.option("compression", codecName).mode(SaveMode.Overwrite).text(tempDirPath)
val compressedFiles = new File(tempDirPath).listFiles()
assert(compressedFiles.exists(_.getName.endsWith(s".txt$extension")))
verifyFrame(spark.read.text(tempDirPath))
}
val errMsg = intercept[IllegalArgumentException] {
val tempDirPath = Utils.createTempDir().getAbsolutePath
testDf.write.option("compression", "illegal").mode(SaveMode.Overwrite).text(tempDirPath)
}
assert(errMsg.getMessage.contains("Codec [illegal] is not available. " +
"Known codecs are"))
}
test("SPARK-13543 Write the output as uncompressed via option()") {
val extraOptions = Map[String, String](
"mapreduce.output.fileoutputformat.compress" -> "true",
"mapreduce.output.fileoutputformat.compress.type" -> CompressionType.BLOCK.toString,
"mapreduce.map.output.compress" -> "true",
"mapreduce.output.fileoutputformat.compress.codec" -> classOf[GzipCodec].getName,
"mapreduce.map.output.compress.codec" -> classOf[GzipCodec].getName
)
withTempDir { dir =>
val testDf = spark.read.text(testFile)
val tempDirPath = dir.getAbsolutePath
testDf.write.option("compression", "none")
.options(extraOptions).mode(SaveMode.Overwrite).text(tempDirPath)
val compressedFiles = new File(tempDirPath).listFiles()
assert(compressedFiles.exists(!_.getName.endsWith(".txt.gz")))
verifyFrame(spark.read.options(extraOptions).text(tempDirPath))
}
}
test("case insensitive option") {
val extraOptions = Map[String, String](
"mApReDuCe.output.fileoutputformat.compress" -> "true",
"mApReDuCe.output.fileoutputformat.compress.type" -> CompressionType.BLOCK.toString,
"mApReDuCe.map.output.compress" -> "true",
"mApReDuCe.output.fileoutputformat.compress.codec" -> classOf[GzipCodec].getName,
"mApReDuCe.map.output.compress.codec" -> classOf[GzipCodec].getName
)
withTempDir { dir =>
val testDf = spark.read.text(testFile)
val tempDirPath = dir.getAbsolutePath
testDf.write.option("CoMpReSsIoN", "none")
.options(extraOptions).mode(SaveMode.Overwrite).text(tempDirPath)
val compressedFiles = new File(tempDirPath).listFiles()
assert(compressedFiles.exists(!_.getName.endsWith(".txt.gz")))
verifyFrame(spark.read.options(extraOptions).text(tempDirPath))
}
}
test("SPARK-14343: select partitioning column") {
withTempPath { dir =>
val path = dir.getCanonicalPath
val ds1 = spark.range(1).selectExpr("CONCAT('val_', id)")
ds1.write.text(s"$path/part=a")
ds1.write.text(s"$path/part=b")
checkAnswer(
spark.read.format("text").load(path).select($"part"),
Row("a") :: Row("b") :: Nil)
}
}
test("SPARK-15654: should not split gz files") {
withTempDir { dir =>
val path = dir.getCanonicalPath
val df1 = spark.range(0, 1000).selectExpr("CAST(id AS STRING) AS s")
df1.write.option("compression", "gzip").mode("overwrite").text(path)
val expected = df1.collect()
Seq(10, 100, 1000).foreach { bytes =>
withSQLConf(SQLConf.FILES_MAX_PARTITION_BYTES.key -> bytes.toString) {
val df2 = spark.read.format("text").load(path)
checkAnswer(df2, expected)
}
}
}
}
def testLineSeparator(lineSep: String): Unit = {
test(s"SPARK-23577: Support line separator - lineSep: '$lineSep'") {
// Read
val values = Seq("a", "b", "\nc")
val data = values.mkString(lineSep)
val dataWithTrailingLineSep = s"$data$lineSep"
Seq(data, dataWithTrailingLineSep).foreach { lines =>
withTempPath { path =>
Files.write(path.toPath, lines.getBytes(StandardCharsets.UTF_8))
val df = spark.read.option("lineSep", lineSep).text(path.getAbsolutePath)
checkAnswer(df, Seq("a", "b", "\nc").toDF())
}
}
// Write
withTempPath { path =>
values.toDF().coalesce(1)
.write.option("lineSep", lineSep).text(path.getAbsolutePath)
val partFile = TestUtils.recursiveList(path).filter(f => f.getName.startsWith("part-")).head
val readBack = new String(Files.readAllBytes(partFile.toPath), StandardCharsets.UTF_8)
assert(readBack === s"a${lineSep}b${lineSep}\nc${lineSep}")
}
// Roundtrip
withTempPath { path =>
val df = values.toDF()
df.write.option("lineSep", lineSep).text(path.getAbsolutePath)
val readBack = spark.read.option("lineSep", lineSep).text(path.getAbsolutePath)
checkAnswer(df, readBack)
}
}
}
// scalastyle:off nonascii
Seq("|", "^", "::", "!!!@3", 0x1E.toChar.toString, "아").foreach { lineSep =>
testLineSeparator(lineSep)
}
// scalastyle:on nonascii
private def testFile: String = {
Thread.currentThread().getContextClassLoader.getResource("test-data/text-suite.txt").toString
}
/** Verifies data and schema. */
private def verifyFrame(df: DataFrame): Unit = {
// schema
assert(df.schema == new StructType().add("value", StringType))
// verify content
val data = df.collect()
assert(data(0) == Row("This is a test file for the text data source"))
assert(data(1) == Row("1+1"))
// scalastyle:off nonascii
assert(data(2) == Row("数据砖头"))
// scalastyle:on nonascii
assert(data(3) == Row("\"doh\""))
assert(data.length == 4)
}
}
class TextV1Suite extends TextSuite {
override protected def sparkConf: SparkConf =
super
.sparkConf
.set(SQLConf.USE_V1_SOURCE_LIST, "text")
}
class TextV2Suite extends TextSuite {
override protected def sparkConf: SparkConf =
super
.sparkConf
.set(SQLConf.USE_V1_SOURCE_LIST, "")
}
| Scala | 4 | kesavanvt/spark | sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/text/TextSuite.scala | [
"BSD-2-Clause",
"Apache-2.0",
"CC0-1.0",
"MIT",
"MIT-0",
"ECL-2.0",
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
package com.baeldung.component.scannedscope;
import org.springframework.stereotype.Component;
@Component
public class ScannedScopeExample {
}
| Java | 3 | DBatOWL/tutorials | spring-core-5/src/main/java/com/baeldung/component/scannedscope/ScannedScopeExample.java | [
"MIT"
] |
DESCRIPTION = "Different utilities from Android - corressponding configuration files"
SECTION = "console/utils"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI = "file://android-gadget-setup"
PACKAGE_ARCH = "${MACHINE_ARCH}"
do_install() {
install -d ${D}${bindir}
install -m 0755 ${WORKDIR}/android-gadget-setup ${D}${bindir}
}
python () {
pn = d.getVar('PN')
profprov = d.getVar("PREFERRED_PROVIDER_" + pn)
if profprov and pn != profprov:
raise bb.parse.SkipRecipe("PREFERRED_PROVIDER_%s set to %s, not %s" % (pn, profprov, pn))
}
| BitBake | 3 | nunojsa/meta-openembedded | meta-oe/recipes-devtools/android-tools/android-tools-conf_1.0.bb | [
"MIT"
] |
module openconfig-if-types {
yang-version "1";
namespace "http://openconfig.net/yang/openconfig-if-types";
prefix "oc-ift";
// import statements
import openconfig-extensions { prefix oc-ext; }
// meta
organization
"OpenConfig working group";
contact
"OpenConfig working group
[email protected]";
description
"This module contains a set of interface type definitions that
are used across OpenConfig models. These are generally physical
or logical interfaces, distinct from hardware ports (which are
described by the OpenConfig platform model).";
oc-ext:openconfig-version "0.1.0";
revision "2016-11-14" {
description
"Initial version";
reference "0.1.0";
}
identity INTERFACE_TYPE {
description
"Base identity from which interface types are derived.";
}
identity IF_ETHERNET {
base INTERFACE_TYPE;
description
"Ethernet interfaces based on IEEE 802.3 standards, as well
as FlexEthernet";
reference
"IEEE 802.3-2015 - IEEE Standard for Ethernet
OIF Flex Ethernet Implementation Agreement 1.0";
}
identity IF_AGGREGATE {
base INTERFACE_TYPE;
description
"An aggregated, or bonded, interface forming a
Link Aggregation Group (LAG), or bundle, most often based on
the IEEE 802.1AX (or 802.3ad) standard.";
reference
"IEEE 802.1AX-2008";
}
identity IF_LOOPBACK {
base INTERFACE_TYPE;
description
"A virtual interface designated as a loopback used for
various management and operations tasks.";
}
identity IF_ROUTED_VLAN {
base INTERFACE_TYPE;
description
"A logical interface used for routing services on a VLAN.
Such interfaces are also known as switch virtual interfaces
(SVI) or integrated routing and bridging interfaces (IRBs).";
}
identity IF_SONET {
base INTERFACE_TYPE;
description
"SONET/SDH interface";
}
}
| YANG | 4 | ariscahyadi/onos-1.14-with-indopronos-app | models/openconfig/src/main/yang/interfaces/[email protected] | [
"Apache-2.0"
] |
package test;
public final class Simple {
public Simple() { }
}
| Java | 2 | qussarah/declare | compiler/testData/loadJava/compiledJava/Simple.java | [
"Apache-2.0"
] |
\begin{code}
module CPP where
open import Data.List hiding ([_])
open import Function
data Type : Set where
base : Type
arr : Type → Type → Type
Cx' = List Type
Model' = Type → Cx' → Set
infixr 8 _⇒_
_⇒_ : (Cx' → Set) → (Cx' → Set) → Cx' → Set
(f ⇒ g) Γ = f Γ → g Γ
[_]' : (Cx' → Set) → Set
[ P ]' = ∀ {x} → P x
infix 9 _⊢_
_⊢_ : Type → (Cx' → Set) → Cx' → Set
(σ ⊢ T) Γ = T (σ ∷ Γ)
data Var : Model' where
ze : ∀ {σ} → [ σ ⊢ Var σ ]'
su : ∀ {σ τ} → [ Var σ ⇒ τ ⊢ Var σ ]'
□ : (Cx' → Set) → (Cx' → Set)
□ P Γ = ∀ {Δ} → (∀ {σ} → Var σ Γ → Var σ Δ) → P Δ
data Tm : Model' where
`var : ∀ {σ} → [ Var σ ⇒ Tm σ ]'
_`$_ : ∀ {σ τ} → [ Tm (arr σ τ) ⇒ Tm σ ⇒ Tm τ ]'
`λ : ∀ {σ τ} → [ σ ⊢ Tm τ ⇒ Tm (arr σ τ) ]'
\end{code}
%<*ren>
\begin{code}
ren : {Γ Δ : List Type} → (∀ {σ} → Var σ Γ → Var σ Δ) → (∀ {σ} → Tm σ Γ → Tm σ Δ)
ren ρ (`var v) = `var (ρ v)
ren ρ (f `$ t) = ren ρ f `$ ren ρ t
ren ρ (`λ b) = `λ (ren ((su ∘ ρ) -, ze) b)
\end{code}
%</ren>
\begin{code}
where
_-,_ : ∀ {Γ σ Δ} → (∀ {τ} → Var τ Γ → Var τ Δ) → Var σ Δ → ∀ {τ} → Var τ (σ ∷ Γ) → Var τ Δ
(ρ -, v) ze = v
(ρ -, v) (su k) = ρ k
\end{code}
%<*sub>
\begin{code}
sub : {Γ Δ : List Type} → (∀ {σ} → Var σ Γ → Tm σ Δ) → (∀ {σ} → Tm σ Γ → Tm σ Δ)
sub ρ (`var v) = ρ v
sub ρ (f `$ t) = sub ρ f `$ sub ρ t
sub ρ (`λ b) = `λ (sub ((ren su ∘ ρ) -, `var ze) b)
\end{code}
%</sub>
\begin{code}
where
_-,_ : ∀ {Γ σ Δ} → (∀ {τ} → Var τ Γ → Tm τ Δ) → Tm σ Δ → ∀ {τ} → Var τ (σ ∷ Γ) → Tm τ Δ
(ρ -, v) ze = v
(ρ -, v) (su k) = ρ k
record Kit (◆ : Model') : Set where
field
var : ∀ {σ} → [ ◆ σ ⇒ Tm σ ]'
zro : ∀ {σ} → [ σ ⊢ ◆ σ ]'
wkn : ∀ {σ τ} → [ ◆ τ ⇒ σ ⊢ ◆ τ ]'
module kitkit {◆ : Model'} (κ : Kit ◆) where
\end{code}
%<*kit>
\begin{code}
kit : {Γ Δ : List Type} → (∀ {σ} → Var σ Γ → ◆ σ Δ) → (∀ {σ} → Tm σ Γ → Tm σ Δ)
kit ρ (`var v) = Kit.var κ (ρ v)
kit ρ (f `$ t) = kit ρ f `$ kit ρ t
kit ρ (`λ b) = `λ (kit ((Kit.wkn κ ∘ ρ) -, Kit.zro κ) b)
\end{code}
%</kit>
\begin{code}
where
_-,_ : ∀ {Γ σ Δ} → (∀ {τ} → Var τ Γ → ◆ τ Δ) → ◆ σ Δ → ∀ {τ} → Var τ (σ ∷ Γ) → ◆ τ Δ
(ρ -, v) ze = v
(ρ -, v) (su k) = ρ k
Val : Model'
Val base Γ = Tm base Γ
Val (arr σ τ) Γ = ∀ {Δ} → (∀ {ν} → Var ν Γ → Var ν Δ) → Val σ Δ → Val τ Δ
wk : ∀ {Γ Δ} → (∀ {σ} → Var σ Γ → Var σ Δ) → ∀ {σ} → Val σ Γ → Val σ Δ
wk ρ {base} v = ren ρ v
wk ρ {arr σ τ} v = λ ρ′ → v (ρ′ ∘ ρ)
APP : ∀ {σ τ Γ} → Val (arr σ τ) Γ → Val σ Γ → Val τ Γ
APP f t = f id t
LAM : ∀ {Γ σ τ} → Val (arr σ τ) Γ → Val (arr σ τ) Γ
LAM = id
\end{code}
%<*nbe>
\begin{code}
nbe : {Γ Δ : List Type} → (∀ {σ} → Var σ Γ → Val σ Δ) → (∀ {σ} → Tm σ Γ → Val σ Δ)
nbe ρ (`var v) = ρ v
nbe ρ (f `$ t) = APP (nbe ρ f) (nbe ρ t)
nbe ρ (`λ t) = LAM (λ re v → nbe ((wk re ∘ ρ) -, v) t)
\end{code}
%</nbe>
\begin{code}
where
_-,_ : ∀ {Γ σ Δ} → (∀ {τ} → Var τ Γ → Val τ Δ) → Val σ Δ → ∀ {τ} → Var τ (σ ∷ Γ) → Val τ Δ
(ρ -, v) ze = v
(ρ -, v) (su k) = ρ k
\end{code}
| Literate Agda | 4 | manikdv/plfa.github.io | extra/extra/CPP.lagda | [
"CC-BY-4.0"
] |
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
DESCRIPTION="Python functions for thorough checks on types"
HOMEPAGE="https://pypi.org/project/typish"
# Prefer GitHub. Upstream failed to push its source tarball to PyPI.
SRC_URI="https://github.com/ramonhagenaars/typish/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
#FIXME: Tests require "nptyping" which circularly requires... "typish". *sigh*
RESTRICT="test"
| Gentoo Ebuild | 2 | justxi/sci | dev-python/typish/typish-1.9.3.ebuild | [
"BSD-3-Clause"
] |
#
;
; (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
; See the copyright notice in the ACK home directory, in the file "Copyright".
;
; $Id$
mes 2,EM_WSIZE,EM_PSIZE
#define TRAP 0
; _fptrp is called with one parameter:
; - trap number (TRAP)
exp $_fptrp
pro $_fptrp,0
lol TRAP
trp
ret 0
end ?
| Eiffel | 2 | wyan/ack | mach/proto/fp/fptrp.e | [
"BSD-3-Clause"
] |
fun main () : transaction page = return <xml><body>
<img src="http://www.google.com/intl/en_ALL/images/logo.gif"/>
</body></xml>
| UrWeb | 1 | apple314159/urweb | tests/img.ur | [
"BSD-3-Clause"
] |
// _Obsolete.prg
[Obsolete];
CLASS __WindApp INHERIT AppWindow
CONSTRUCTOR(uPars)
SUPER(uPars)
END CLASS
[Obsolete];
CLASS __FormDialogWindow INHERIT ModelessDialog
CONSTRUCTOR(uPars)
SUPER(uPars)
END CLASS
[Obsolete];
CLASS __FormFrame INHERIT ChildAppWindow
CONSTRUCTOR(uPars)
SUPER(uPars)
END CLASS
[Obsolete];
CLASS OLEDataWindow INHERIT DataWindow
CONSTRUCTOR(uPars)
SUPER(uPars)
END CLASS
[Obsolete];
CLASS __DDImp INHERIT DialogWindow
CONSTRUCTOR(uPars)
SUPER(uPars)
END CLASS
[Obsolete];
CLASS __DocApp INHERIT AppWindow
CONSTRUCTOR(uPars)
SUPER(uPars)
END CLASS
[Obsolete];
CLASS OLEShellWindow INHERIT ShellWindow
CONSTRUCTOR(uPars)
SUPER(uPars)
END CLASS
| xBase | 3 | orangesocks/XSharpPublic | Runtime/VOSdkTyped/Source/VOSdk/GUI_Classes_SDK/Windows/_Obsolete.prg | [
"Apache-2.0"
] |
/*
* Copyright 2018-2019 Jiří Janoušek <[email protected]>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED 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.
*/
namespace Nuvola {
public class MachineTrial : GLib.Object {
public TiliadoMembership tier {get; construct;}
public string? name {get; construct;}
public DateTime? created {get; construct;}
public DateTime? expires {get; construct;}
public MachineTrial.from_json(Drt.JsonObject? json) {
string? name = null;
string? created = null;
string? expires = null;
int tier = 0;
if (json != null) {
tier = json.get_int_or("tier");
name = json.get_string_or("name");
created = json.get_string_or("created");
expires = json.get_string_or("expires");
}
GLib.Object(
tier: TiliadoMembership.from_int(tier), name: (owned) name,
created: created != null ? new DateTime.from_iso8601(created, new TimeZone.utc()) : null,
expires: expires != null ? new DateTime.from_iso8601(expires, new TimeZone.utc()) : null
);
}
public MachineTrial.from_string(string json) {
Drt.JsonObject? object = null;
try {
object = Drt.JsonParser.load_object(json);
} catch (Drt.JsonError e) {
Drt.warn_error(e, "Failed to load trial:");
}
this.from_json(object);
}
public Drt.JsonBuilder to_json() {
var builder = new Drt.JsonBuilder();
builder.begin_object();
builder.set_int("tier", (int) tier);
if (created != null) {
builder.set_string("created", Drt.Utils.datetime_to_iso_8601(created));
} else {
builder.set_null("created");
}
if (expires != null) {
builder.set_string("expires", Drt.Utils.datetime_to_iso_8601(expires));
} else {
builder.set_null("expires");
}
builder.set_string_or_null("name", name);
return builder;
}
public bool has_expired() {
return expires == null || expires.compare(new DateTime.now_local()) < 0;
}
public string to_string() {
return to_json().to_pretty_string();
}
public string to_compact_string() {
return to_json().to_compact_string();
}
}
} // namespace Nuvola
| Vala | 4 | xcffl/nuvolaruntime | src/nuvolakit-runner/tiliado/MachineTrial.vala | [
"BSD-2-Clause"
] |
%
% Shading support - primarily for ASCII file translators.
%
/grays [0.98 0.9 0.75 0.6] def
/setshade {
/level exch def
level 0 le {
/textgray 0 def
/backgray 1 def
}{
/backgray level grays length gt
{/textgray 1 def 0}
{/textgray 0 def grays level 1 sub get}
ifelse def
} ifelse
textgray setgray
/dY1 0 def
/dY2 0 def
} bind def
/drawrvbox {
/x2 exch charwidth mul def
/x1 exch charwidth mul def
x1 x2 lt {
dup % expects y on top
/y1 exch linespace mul def
/y2 y1 def
dY1 0 eq dY2 0 eq and {
currentfont /FontBBox get aload pop
160 sub
currentfont /FontMatrix get dtransform /dY2 exch def pop
100 add
currentfont /FontMatrix get dtransform /dY1 exch def pop
} if
/y1 y1 dY1 add def
/y2 y2 dY2 add def
backgray setgray
newpath
x1 y1 moveto
x2 y1 lineto
x2 y2 lineto
x1 y2 lineto
closepath fill
} if
textgray setgray
} bind def
| PostScript | 4 | newluhux/plan9port | src/cmd/postscript/psfiles/shade.ps | [
"MIT"
] |
<%= render(:layout => "layout_for_partial", :partial => "partial_for_use_in_layout", :locals => { :name => "David" }) %> | HTML+ERB | 3 | mdesantis/rails | actionview/test/fixtures/test/calling_partial_with_layout.html.erb | [
"MIT"
] |
# Copyright 2016 Alexandre Terrasa <[email protected]>.
#
# 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.
module app
import model
import popcorn
import popcorn::pop_json
class APIHandler
super Handler
var config: AppConfig
redef type BODY: FactForm
redef var validator = new FactValidator
end
class FactsHandler
super APIHandler
redef fun get(req, res) do
var facts = config.facts.find_all
res.header["Access-Control-Allow-Origin"] = "*"
res.json facts.rand
end
redef fun post(req, res) do
var body = validate_body(req, res)
if body == null then return
var fact = deserialize_body(req, res)
if fact == null then return
var catfact = new CatFact(fact.user, fact.fact)
config.facts.save(catfact)
res.header["Access-Control-Allow-Origin"] = "*"
res.json fact
end
end
class FactHandler
super APIHandler
fun get_fact(req: HttpRequest, res: HttpResponse): nullable CatFact do
var id = req.param("id")
if id == null then
res.json_error("Missing /:id", 403)
return null
end
var fact = config.facts.find_by_id(id)
if fact == null then
res.json_error("Fact not found", 404)
return null
end
return fact
end
redef fun get(req, res) do
var fact = get_fact(req, res)
if fact == null then return
res.header["Access-Control-Allow-Origin"] = "*"
res.json fact
end
redef fun put(req, res) do
var fact = get_fact(req, res)
if fact == null then return
var body = validate_body(req, res)
if body == null then return
var edit = deserialize_body(req, res)
if edit == null then return
fact.user = edit.user
fact.fact = edit.fact
config.facts.save(fact)
res.header["Access-Control-Allow-Origin"] = "*"
res.json fact
end
redef fun delete(req, res) do
var fact = get_fact(req, res)
if fact == null then return
config.facts.remove_by_id(fact.id)
res.header["Access-Control-Allow-Origin"] = "*"
res.json fact
end
end
class FactValidator
super ObjectValidator
init do
super
add(new StringField("user", required=true, min_size=3, max_size=16))
add(new StringField("fact", required=true, min_size=5, max_size=255))
end
end
class FactForm
serialize
var user: String
var fact: String
end
var config = new AppConfig
config.parse_options(args)
config.facts.clear
for file in "json".files do
var obj = ("json" / file).to_path.read_all.parse_json
if not obj isa JsonObject then continue
var fact = new CatFact("Morriar", obj["facts"].as(JsonArray).first.as(String))
config.facts.save(fact)
end
config.facts.save(new CatFact("a", "b"))
var app = new App
app.use("/", new FactsHandler(config))
app.use("/fact/:id", new FactHandler(config))
app.listen(config.app_host, config.app_port)
| Nit | 5 | ajnavarro/language-dataset | data/github.com/Morriar/CatFacts/1e5eccb9c011ec2965f2d7e9b3eabd4eb4bfe3ed/src/app.nit | [
"MIT"
] |
data {
int N;
array[N] int ids;
array[N] int y;
matrix[1000, 11] X;
}
parameters {
matrix[11, 100] beta_std;
vector<lower=0>[11] std;
cholesky_factor_corr[11] L;
}
transformed parameters {
matrix[100, 11] beta;
beta = (diag_pre_multiply(std, L) * beta_std)';
}
model {
vector[N] mu;
for (i in 1 : N)
mu[i] = X[i] * beta[ids[i]]';
y ~ bernoulli_logit(mu);
to_vector(beta_std) ~ normal(0, 1);
std ~ normal(0, 1);
L ~ lkj_corr_cholesky(0.5);
}
| Stan | 3 | sthagen/stan-dev-stan | src/test/test-models/good/variational/hier_logistic.stan | [
"CC-BY-3.0",
"BSD-3-Clause"
] |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <assert.h>
#include <math.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <pytorch_qnnpack.h>
#include <qnnpack/log.h>
#include <qnnpack/operator.h>
#include <qnnpack/params.h>
#include <qnnpack/requantization.h>
enum pytorch_qnnp_status pytorch_qnnp_create_add_nc_q8(
size_t channels,
uint8_t a_zero_point,
float a_scale,
uint8_t b_zero_point,
float b_scale,
uint8_t sum_zero_point,
float sum_scale,
uint8_t sum_min,
uint8_t sum_max,
uint32_t flags,
pytorch_qnnp_operator_t* add_out) {
pytorch_qnnp_operator_t add_op = NULL;
enum pytorch_qnnp_status status = pytorch_qnnp_status_uninitialized;
if (!pytorch_qnnp_params.initialized) {
pytorch_qnnp_log_error(
"pytorch_qnnp_create_add_nc_q8 failed because QNNPACK is not properly initialized");
goto error;
}
status = pytorch_qnnp_status_invalid_parameter;
if (channels == 0) {
pytorch_qnnp_log_error(
"failed to create add operator with %zu channels: number of channels must be non-zero",
channels);
goto error;
}
if (a_scale <= 0.0f || !isnormal(a_scale)) {
pytorch_qnnp_log_error(
"failed to create add operator with %.7g A scale: scale must be finite and positive",
a_scale);
goto error;
}
if (b_scale <= 0.0f || !isnormal(b_scale)) {
pytorch_qnnp_log_error(
"failed to create add operator with %.7g B scale: scale must be finite and positive",
b_scale);
goto error;
}
if (sum_scale <= 0.0f || !isnormal(sum_scale)) {
pytorch_qnnp_log_error(
"failed to create add operator with %.7g output scale: scale must be finite and positive",
sum_scale);
goto error;
}
if (sum_min >= sum_max) {
pytorch_qnnp_log_error(
"failed to create add operator with [%" PRIu8 ", %" PRIu8
"] output range: range min must be below range max",
sum_min,
sum_max);
goto error;
}
status = pytorch_qnnp_status_unsupported_parameter;
const float a_output_scale = a_scale / sum_scale;
if (a_output_scale < 0x1.0p-14f || a_output_scale >= 0x1.0p+8f) {
pytorch_qnnp_log_error(
"failed to create add operator with %.7g A-to-output scale ratio: scale ratio must be in [2**-14, 2**8) range",
a_output_scale);
goto error;
}
const float b_output_scale = b_scale / sum_scale;
if (b_output_scale < 0x1.0p-14f || b_output_scale >= 0x1.0p+8f) {
pytorch_qnnp_log_error(
"failed to create add operator with %.7g A-to-output scale ratio: scale ratio must be in [2**-14, 2**8) range",
b_output_scale);
goto error;
}
status = pytorch_qnnp_status_out_of_memory;
add_op = calloc(1, sizeof(struct pytorch_qnnp_operator));
if (add_op == NULL) {
pytorch_qnnp_log_error(
"failed to allocate %zu bytes for pytorch_qnnp_operator structure",
sizeof(struct pytorch_qnnp_operator));
goto error;
}
add_op->channels = channels;
add_op->add_quantization_params =
pytorch_qnnp_compute_add_quantization_params(
a_zero_point,
b_zero_point,
sum_zero_point,
a_scale / sum_scale,
b_scale / sum_scale,
sum_min,
sum_max);
add_op->ukernel_type = pytorch_qnnp_ukernel_type_add;
add_op->format = pytorch_qnnp_format_quint8;
*add_out = add_op;
return pytorch_qnnp_status_success;
error:
pytorch_qnnp_delete_operator(add_op);
return status;
}
enum pytorch_qnnp_status pytorch_qnnp_setup_add_nc_q8(
pytorch_qnnp_operator_t add_op,
size_t batch_size,
const uint8_t* a,
size_t a_stride,
const uint8_t* b,
size_t b_stride,
uint8_t* sum,
size_t sum_stride) {
if (!pytorch_qnnp_params.initialized) {
pytorch_qnnp_log_error(
"pytorch_qnnp_setup_add_nc_q8 failed because QNNPACK is not properly initialized");
return pytorch_qnnp_status_uninitialized;
}
if (batch_size == 0) {
add_op->batch_size = 0;
return pytorch_qnnp_status_success;
}
add_op->batch_size = batch_size;
add_op->input = a;
add_op->input_pixel_stride = a_stride;
add_op->input2 = b;
add_op->input2_pixel_stride = b_stride;
add_op->output = sum;
add_op->output_pixel_stride = sum_stride;
return pytorch_qnnp_status_success;
}
| C | 4 | Hacky-DH/pytorch | aten/src/ATen/native/quantized/cpu/qnnpack/src/add.c | [
"Intel"
] |
#include <Constants.au3>
#include <Array.au3>
Func StalinSort($inputArray)
Local $iArrayLength = Ubound($inputArray)
Local $sortedArray[$iArrayLength]
Local $jCount = 1
$sortedArray[0] = $inputArray[0]
For $iCount = 1 To Ubound($inputArray) - 1
If $inputArray[$iCount] >= $sortedArray[$jCount-1] Then
$sortedArray[$jCount] = $inputArray[$iCount]
$jCount = $jCount + 1
Else
ReDim $sortedArray[UBound($sortedArray)-1]
EndIf
Next
MsgBox($MB_OK, "Array", _ArrayToString($sortedArray, " "))
Return $sortedArray
EndFunc
Local $arr[5] = [2,1,5,4,8]
StalinSort($arr); | AutoIt | 4 | twofist/stalin-sort | AutoIt/stalin-sort.au3 | [
"MIT"
] |
#!/usr/bin/env julia
#
# @license Apache-2.0
#
# Copyright (c) 2018 The Stdlib 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.
import JSON
"""
gen( x, y, name )
Generate fixture data and write to file.
# Arguments
* `x`: base domain
* `y`: exponent domain
* `name::AbstractString`: output filename
# Examples
``` julia
julia> x = range( -1000, stop = 1000, length = 2001 );
julia> y = range( 0, stop = 1000, length = 1001 );
julia> gen( x, y, \"data.json\" );
```
"""
function gen( x, y, name )
z = Array{Float64}( undef, length(x) );
for i in eachindex(x)
z[ i ] = x[i]^y[i];
end
# Store data to be written to file as a collection:
data = Dict([
("x", x),
("y", y),
("expected", z)
]);
# Based on the script directory, create an output filepath:
filepath = joinpath( dir, name );
# Write the data to the output filepath as JSON:
outfile = open( filepath, "w" );
write( outfile, JSON.json(data) );
close( outfile );
end
# Get the filename:
file = @__FILE__;
# Extract the directory in which this file resides:
dir = dirname( file );
# Squares (x small):
x = range( -1000, stop = 1000, length = 2001 );
y = zeros( 2001 );
y[:] .= 2.0;
gen( x, y, "squared_small.json" );
# Squares (x large):
x = range( 3.14e100, stop = 3.14e110, length = 2001 );
y = zeros( 2001 );
y[:] .= 2.0;
gen( x, y, "squared_large.json" );
# Cubes (x small):
x = range( -1000, stop = 1000, length = 2001 );
y = zeros( 2001 );
y[:] .= 3.0;
gen( x, y, "cubed_small.json" );
# Cubes (x large):
x = range( -9.99e99, stop = -4.641588833612779e102, length = 2001 );
y = zeros( 2001 );
y[:] .= 3.0;
gen( x, y, "cubed_large.json" );
# To the 4th power (x small):
x = range( -1000, stop = 1000, length = 2001 );
y = zeros( 2001 );
y[:] .= 4.0;
gen( x, y, "to_the_fourth_small.json" );
# To the 4th power (x large):
x = range( 1.234e61, stop = 3.14e69, length = 2001 );
y = zeros( 2001 );
y[:] .= 4.0;
gen( x, y, "to_the_fourth_large.json" );
# Base near unity (y small):
x = range( 0.9999990463256836, stop = 1.0000009536743164, length = 500 );
y = range( -10, stop = 10, length = 500 );
gen( x, y, "base_near_unity_small.json" );
# Base near unity (y large):
x = range( 0.9999990463256836, stop = 1.0000009536743164, length = 500 );
y = range( 100, stop = 709, length = 500 );
gen( x, y, "base_near_unity_large.json" );
# Base near unity (y huge):
x = range( 0.9999999999990463256836, stop = 1.0000000000009536743164, length = 500 );
y = range( 1.8446744073709552e13, stop = 4.294967296e14, length = 500 );
gen( x, y, "base_near_unity_huge.json" );
# Subnormal results:
z = range( 3.14e-309, stop = 3.14e-312, length = 2001 );
x = range( 3.14e-52, stop = 3.14e-54, length = 2001 );
y = log.(z) ./ log.(x);
gen( x, y, "subnormal_results.json" );
# Negative exponents (x small, y small):
x = range( 0, stop = 10, length = 5001 );
y = rand( 5001 ) .* -100;
gen( x, y, "negative_exp_small_small.json" );
# Negative exponents (x large, y small):
x = range( 3.14e10, stop = 1e15, length = 5001 );
y = rand( 5001 ) .* -100;
gen( x, y, "negative_exp_large_small.json" );
# Negative exponents (x small, y large):
x = range( 0, stop = 10, length = 5001 );
y = rand( 5001 ) .* -(2.0^31);
gen( x, y, "negative_exp_small_large.json" );
# Negative exponents (x large, y large):
x = range( 3.14e20, stop = 1e22, length = 5001 );
y = rand( 5001 ) .* -(2.0^31);
gen( x, y, "negative_exp_large_large.json" );
# x small, y small:
x = rand( 5001 ) .* 100;
y = rand( 5001 ) .* 100;
gen( x, y, "small_small.json" );
# x small, y large:
x = rand( 5001 ) .* 1.9988548118735103;
y = rand( 5001 ) .* 2.0^10;
gen( x, y, "small_large.json" );
# x large, y small:
x = rand( 5001 ) .* 5e20;
y = rand( 5001 ) .* 10;
gen( x, y, "large_small.json" );
# Random (x decimal, y decimal):
x = rand( 5001 ) .* 500;
y = rand( 5001 ) .* 100;
gen( x, y, "decimal_decimal.json" );
# Random (x decimal, y integer):
x = rand( 5001 ) .* 500;
y = round.( rand(5001) .* 100 );
gen( x, y, "decimal_integer.json" );
# Random (x integer, y decimal):
x = round.( rand(5001) .* 500 );
y = rand( 5001 ) .* 100;
gen( x, y, "integer_decimal.json" );
# Random (x integer, y integer):
x = round.( rand(5001) .* 500 );
y = round.( rand(5001) .* 100 );
gen( x, y, "integer_integer.json" );
| Julia | 5 | ghalimi/stdlib | lib/node_modules/@stdlib/math/base/special/pow/test/fixtures/julia/runner.jl | [
"BSL-1.0"
] |
#!/bin/csh
pool_build_object_relational_mapping -f ../xml/DTCCBConfig-mapping-custom.xml -d CondFormatsDTObjects -c sqlite_file:testconf.db -u "user" -p "pass"
| Tcsh | 2 | ckamtsikis/cmssw | CondTools/DT/test/pool_build_conf_mapping_test.csh | [
"Apache-2.0"
] |
2016-02-18 20:29:09 fsociety you are now my friend :)
2016-02-18 20:29:09 [20:29]
2016-02-18 22:09:24 turtleshow Hooray :) hehe
2016-02-18 22:09:24 [22:09]
2016-02-18 22:09:50 fsociety welcome to the dark dean web
2016-02-18 22:10:04 fsociety i'm online 24/7. if not on my machine, my phone is constantly connected
2016-02-18 22:10:20 turtleshow Hehe I feel honored to be welcomed :p
2016-02-18 22:10:36 fsociety i'm always more than happy to add other people if they want to use it for personal use. its like using msn all over again :)
2016-02-18 22:10:38 turtleshow Awesome, I'm always on my phone too
2016-02-18 22:11:20 turtleshow Cool, I'll keep it in mind, it is more fun using underground tech rather than the mainstream
2016-02-18 22:12:30 fsociety makes you a l33t h4x0r
2016-02-18 22:12:53 fsociety i do it find amusing that every time phil sees me sit down at a linux terminal his head explodes ;)
2016-02-18 22:17:10 fsociety when i was at linuxconf someone gave me a $150 vps hosting voucher with data centres in nsw and qld. so at some point im going to migrate across to that. cheaper than digital ocean
2016-02-18 22:17:31 fsociety haha oh btw. i went out of my way to get really drunk with the community manager of github the other week
2016-02-18 22:17:37 fsociety that was amusing
2016-02-18 22:18:33 turtleshow Cool, that would have been a fun conversation, what's he like?
2016-02-18 22:19:19 turtleshow Yes, Phil and console terminals don't compute... It needs a shiny gui for his brain to enjoy it, which is why I think ue4 works so well for him :p
2016-02-18 22:20:28 turtleshow I haven't looked into hosting for a long time, had one through an old contact but that was years ago
2016-02-18 22:20:48 fsociety oh yeah i couldn't do anything of the stuff he does, i wish i could. hes a huge metal head, most of the time we just sat and talked about metal. he's a guitarist
2016-02-18 22:20:57 fsociety he used to be the community manager for ubuntu
2016-02-18 22:23:12 turtleshow Awesome, sounds like a down to earth kinda person... Github is hugley popular with the devs I know
2016-02-18 22:23:25 turtleshow This statistic disturbs me: http://mashable.com/2015/09/21/selfie-deaths/#NmSQG6Ekakq1
2016-02-18 22:23:48 fsociety yeah it is, i use it tons. and how does that not surprise me selfies
2016-02-18 22:23:54 fsociety i can't do it, i can't do selfies
2016-02-18 22:24:15 turtleshow It's safe not to...
2016-02-18 22:24:32 fsociety i just can't be apart of today's digital culture. doesn't agree with me
2016-02-18 22:24:32 [22:24]
2016-02-18 22:24:32 turtleshow *safer
2016-02-18 22:24:42 fsociety i think it is the narcisstic element of it
2016-02-18 22:30:00 [22:24]
2016-02-18 22:40:21 turtleshow Well, it use to be something... Then somewhere in the mid 2000s it stopped being that and started being something much much more disappointing... Now, all we can do is clutch to what remains and hope the mainstream finds a new toy to play with
2016-02-18 22:40:59 fsociety and here i am deliberately becoming more niche, refusing to remove myself from pc usage from 80s to the late 90s ;)
2016-02-18 22:45:45 turtleshow Heh, in at the other end where the only things that excite or interest me are the experimental non commercial things such as using DNA to store data and bionics that connect to nerve endings. Time to stop messing around and get into the future that the 80s promised already!
2016-02-18 22:45:45 [22:45]
2016-02-18 22:46:26 fsociety where is my flying car for christ sake
2016-02-18 22:46:34 fsociety hey at least the off-world colony starts this year
2016-02-18 22:46:37 fsociety ...according to blade runner
2016-02-18 22:51:40 - irc: disconnected from server
2016-02-18 22:57:52 turtleshow Hehe nice reference
2016-02-18 22:57:52 [22:57]
2016-02-18 23:21:47 fsociety megs teaching it this year, so i've been helping her with it :)
2016-02-18 23:21:47 [23:21]
2016-02-18 23:21:51 - irc: disconnected from server
2016-02-19 10:35:32 fsociety morning
2016-02-19 10:35:32 [10:35]
2016-02-19 10:35:37 fsociety now i can amuse you at work
2016-02-19 10:41:00 [10:35]
2016-02-19 11:02:38 turtleshow Morning :)
2016-02-19 11:02:38 [11:02]
2016-02-19 11:02:58 turtleshow Hehe yes, and I can respond sporadically through out the day
2016-02-19 11:04:02 fsociety excellent. busy today?
2016-02-19 11:10:00 [11:04]
2016-02-19 11:28:31 turtleshow On and off in bursts, usually it's meetings that keep me busy... AMD they are usually quite boring 'p
2016-02-19 11:28:31 [11:28]
2016-02-19 11:28:40 turtleshow What you working on at the moment?
2016-02-19 11:30:02 fsociety re-writing a code generator for all of our companies products in python.. the old guy wrote it in vb8 and .net and i screamed "nooo" so i said i'm going to rewrite it platform agnostic
2016-02-19 11:30:22 fsociety been in a python rabbit hole the past two weeks
2016-02-19 11:30:33 fsociety ooo. pythons and rabbits
2016-02-19 11:30:39 fsociety not a good combination when i think about it
2016-02-19 11:36:00 [11:30]
2016-02-19 11:53:34 turtleshow Hehe as longs as the Python eats the rabbit then no more holes!!
2016-02-19 11:53:34 [11:53]
2016-02-19 11:53:52 turtleshow Sounds like something interesting / challenging to be working on at the least
2016-02-19 11:59:00 [11:53]
2016-02-19 12:59:53 turtleshow Oh, your not supposed to have those? Hehe
2016-02-19 12:59:53 [12:59]
2016-02-19 13:00:00 turtleshow Ugh, 4 hrs to go
2016-02-19 13:02:36 fsociety yeah i know
2016-02-19 13:02:51 fsociety go home.... and go blat.. maybe compile ue4
2016-02-19 13:02:59 fsociety not just install, but compile.. lol
2016-02-19 13:08:00 [13:02]
2016-02-19 13:10:04 fsociety you know i could go one step furthur
2016-02-19 13:10:08 fsociety lets start our own darknet
2016-02-19 13:10:09 fsociety https://hyperboria.net/
2016-02-19 13:16:00 [13:10]
2016-02-19 13:17:10 turtleshow Hehe I think I'd rather just build stuff in ue4... The results are more entertaining ;)
2016-02-19 13:17:56 turtleshow Lol, we could consider that but all the unwanted attention from government agencies might be a bit of a drag
2016-02-19 13:20:45 fsociety im probably already on a watchlist
2016-02-19 13:20:52 fsociety even all my family members think so
2016-02-19 13:20:53 fsociety haha
2016-02-19 13:26:00 [13:20]
2016-02-19 13:40:05 turtleshow Hehe why am I not suprised? Though there is a difference from being on a watch list and being actively pursued
2016-02-19 13:40:25 fsociety i'm not actively being pursued, cause i'd know in 2 seconds
2016-02-19 13:46:00 [13:40]
2016-02-19 14:51:51 turtleshow Hehe true true :p
2016-02-19 14:51:51 [14:51]
2016-02-19 14:52:16 turtleshow Gotta take the kitties to the vets tonight... Starting g to realise how much more complicated two are compared to one hehe
2016-02-19 14:58:00 [14:52]
2016-02-19 15:00:44 fsociety hahaha
2016-02-19 15:00:46 fsociety welcome to the club
2016-02-19 15:01:08 fsociety i said that to phil actually, and phil goes we've had to before.. but in my head that was between the both of you
2016-02-19 15:01:13 fsociety cupcake and miso are a handful
2016-02-19 15:07:00 [15:01]
2016-02-19 16:46:38 - irc: disconnected from server
2016-02-19 16:46:38 [16:46]
2016-02-20 17:23:48 turtleshow Hey, what's the name of the media server you run again?
2016-02-20 17:23:48 [17:23]
2016-02-20 19:34:39 fsociety kodi?
2016-02-20 19:34:39 [19:34]
2016-02-20 19:34:45 fsociety or the plex alternative which is called emby
2016-02-20 19:40:00 [19:34]
2016-02-20 20:04:22 turtleshow Kodi, that's the one - thanks. I'm thinking of getting a raspberry pi to replace my pc for TV and torrents.. Just researching options at the moment
2016-02-20 20:04:22 [20:04]
2016-02-20 20:05:29 fsociety pi is a decent option, but only if you want to use linux
2016-02-20 20:05:42 - irc: disconnected from server
2016-02-20 20:07:56 turtleshow Yeah, that's what I've noticed, fairly comfortable with Linux, just depends how easy the version for pi is to use heh
2016-02-20 20:07:56 [20:07]
2016-02-20 20:08:12 fsociety you get raspbian by default i think, which is debian
2016-02-20 20:09:19 turtleshow Mainly used Ubuntu but nothing Google can't help with when I get stuck, might also hassle you for some tips here and there
2016-02-20 20:09:32 fsociety ubuntu is essentially debian
2016-02-20 20:09:36 fsociety ubuntu is based off debian :)
2016-02-20 20:13:28 - irc: disconnected from server
2016-02-20 20:27:09 turtleshow Cool, that'll make it a bit easier then :-)
2016-02-20 20:27:09 [20:27]
2016-02-20 20:30:21 fsociety but
2016-02-20 20:30:26 fsociety i'd recommend buying the minix kodi boxc
2016-02-20 20:30:30 fsociety i'll get you a link
2016-02-20 20:31:20 fsociety http://minix.com.hk/en/products/neo-x8-h-plus
2016-02-20 20:37:00 [20:31]
2016-02-20 20:52:34 turtleshow Ooo that looks very funky, hmmm okay, reconsidering options now
2016-02-20 20:52:34 [20:52]
2016-02-20 21:25:24 fsociety it plays 4k perfectly fine
2016-02-20 21:25:24 [21:25]
2016-02-20 22:03:18 turtleshow Hehe could you imagine how long it would take me to download a single 4k movie? The standard would have jumped by the time it finished. Though an going to chat to the electrician next door to see if he can help out with the cable
2016-02-20 22:03:18 [22:03]
2016-02-21 00:45:03 fsociety ahh that is still ongoing
2016-02-21 00:45:03 [00:45]
2016-02-21 00:45:07 - irc: disconnected from server
2016-02-21 20:00:07 - irc: disconnected from server
2016-02-21 20:00:07 [20:00]
2016-02-21 20:33:01 < turtleshow ([email protected]) has quit (Leaving...)
2016-02-21 20:33:01 [20:33]
2016-02-21 20:33:10 > turtleshow ([email protected]) is back on server
2016-02-21 20:39:00 [20:33]
2016-02-21 21:21:28 < turtleshow ([email protected]) has quit (Leaving...)
2016-02-21 21:21:28 [21:21]
2016-02-21 21:21:37 > turtleshow ([email protected]) is back on server
2016-02-21 21:27:00 [21:21]
2016-02-21 21:55:25 - irc: disconnected from server
2016-02-21 21:55:25 [21:55]
2016-02-22 09:59:56 turtleshow How's your Monday treating you sir?
2016-02-22 09:59:56 [09:59]
2016-02-22 10:01:34 fsociety good
2016-02-22 10:01:43 fsociety a little tired, i out steamed myself on the weekend
2016-02-22 10:01:49 fsociety i finished 3 games on the weekend
2016-02-22 10:01:57 fsociety firewatch, downfall redux and layers of fear
2016-02-22 10:02:09 fsociety i burnt myself out, i couldn't even watch television after doing that
2016-02-22 10:02:12 fsociety you?
2016-02-22 10:03:09 turtleshow Hehe wow, 3 is a huge effort! I got stuck into Tropico 5 a fair bit but nowhere near your effort hehe
2016-02-22 10:03:39 turtleshow Monday is as Monday is... Actually working from home waiting for an electrician at the moment
2016-02-22 10:04:00 turtleshow Which game would you rate the nest out of the 3?
2016-02-22 10:04:20 fsociety firewatch is the best
2016-02-22 10:04:32 fsociety actually tbh all 3 were pretty amazing, which is very rare
2016-02-22 10:05:57 turtleshow I'll have to have a look at them on steam, not too familiar with the titles
2016-02-22 10:06:29 fsociety they are all very new
2016-02-22 10:08:40 fsociety wish i could from home today
2016-02-22 10:08:50 fsociety you are "working from home" :)
2016-02-22 10:09:51 turtleshow Lol yes, very ineffectively working from couch... I've logged in, that's a start
2016-02-22 10:10:09 fsociety and using error418 chat
2016-02-22 10:15:56 fsociety other than nothing much, oh actually i burnt the inside of my throat on cheese from a pizza
2016-02-22 10:15:56 [10:15]
2016-02-22 10:15:58 fsociety smart me
2016-02-22 10:16:32 turtleshow Ouch! The inside of your throat!? Sounds very painful
2016-02-22 10:16:56 fsociety yeah not pleasant, gets irritated whenever i eat something new
2016-02-22 10:22:00 [10:16]
2016-02-22 10:24:57 turtleshow Hope it doesn't take long to heal.. Eating is kind of essential
2016-02-22 10:30:00 [10:24]
2016-02-22 11:35:02 fsociety it is
2016-02-22 11:35:02 [11:35]
2016-02-22 11:35:08 fsociety i still eat, but it hurts
2016-02-22 11:41:00 [11:35]
2016-02-22 12:20:46 - irc: disconnected from server
2016-02-22 12:20:46 [12:20]
2016-02-23 11:03:43 turtleshow I'll have to give it a listen on the train
2016-02-23 11:03:43 [11:03]
2016-02-23 11:11:03 fsociety haha you'll like, they constantly give me shit on the show
2016-02-23 11:17:00 [11:11]
2016-02-23 11:37:31 - irc: disconnected from server
2016-02-23 11:37:31 [11:37]
2016-02-25 15:35:16 turtleshow Meow
2016-02-25 15:35:28 fsociety HIiiiisssssssssssssss...
2016-02-25 15:35:29 fsociety whats up
2016-02-25 16:01:12 turtleshow Hehe nothing much, just sayin meow
2016-02-25 16:08:11 fsociety i hate to say this, but that is a very mat way of introducing yourself
2016-02-25 16:08:12 fsociety hahahahaha
2016-02-25 16:16:16 turtleshow Hahahah
2016-02-25 16:16:19 turtleshow So true
2016-02-25 16:16:32 fsociety haha he has disappeared from planet earth
2016-02-25 16:16:37 turtleshow Okay... I'll reconsider that approach now
2016-02-25 16:16:44 fsociety i brought him up with phil the other day and he has no idea what happened to him
2016-02-25 16:35:23 turtleshow Hehe I saw him connect to steam recently so he is still around in some way or another
2016-02-25 16:37:31 fsociety he has steam?
2016-02-25 16:37:35 fsociety when did he get this
2016-02-25 16:37:59 fsociety i thought he didn't even play video games anymore
2016-02-25 17:06:04 turtleshow Hehe that's was I thought too, one day he hadn't accessed it for 2 years, next day he was online
2016-02-25 17:08:06 fsociety haha.. any plans for this weekend?
2016-02-25 18:10:20 turtleshow Ahh finally out of the office
2016-02-25 18:10:50 turtleshow A couple of plans with Amanda as she has been travelling this week, nothing overly exciting
2016-02-25 18:10:55 turtleshow Yourself?
2016-02-25 20:51:54 - irc: disconnected from server
2016-03-02 07:49:04 fsociety morning, haven't spoken to you in a while
2016-03-02 07:49:06 fsociety how are things
2016-03-02 07:52:28 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 07:52:39 > turtleshow ([email protected]) is back on server
2016-03-02 08:20:38 turtleshow Morning! Was going to say hi yesterday but got caught up with the mundane
2016-03-02 08:21:12 turtleshow Yeah doin alright, getting through the week
2016-03-02 08:21:20 turtleshow How's your day go?
2016-03-02 08:22:07 fsociety have to get into work early to start up some dev servers, had to shut them down at the end of my shift yesterday cause the air con was failing
2016-03-02 08:22:20 fsociety also played drums for phils brother on the weekend
2016-03-02 08:22:42 fsociety i seemed to exceeded his expectations and his muso friends :)
2016-03-02 08:22:59 fsociety all i got was ego stroking for hours on end.. i had to tell them stop it.. haha
2016-03-02 08:23:07 fsociety now i'm really ingrained in phil's family life
2016-03-02 08:25:28 turtleshow Hehehe awesome :) sounds like your drumming services will be in high demand now :p
2016-03-02 08:25:41 fsociety haha
2016-03-02 08:25:49 turtleshow Ziggi and those guys are pretty easy going people, nice to hang out with
2016-03-02 08:26:01 fsociety also my black drive in my desktop had a hardware failure.. 6 month old "enterprise grade" drive
2016-03-02 08:26:02 fsociety grr
2016-03-02 08:26:06 fsociety yeah ziggi is great
2016-03-02 08:26:10 turtleshow Aircon working today? Or needing buckets of ice?
2016-03-02 08:26:18 fsociety he is like the metal version of phil
2016-03-02 08:26:29 turtleshow Ugh, pain in the ass... Lose much?
2016-03-02 08:26:30 fsociety no idea, ill find out when i get into the office
2016-03-02 08:26:38 turtleshow Hehe good way to put ot
2016-03-02 08:26:46 fsociety not really... it was just a steam drive.. i'll just redownload all the aes
2016-03-02 08:28:00 fsociety luck phil has my spare black drive, so i'll probably pick that up tonight
2016-03-02 08:28:22 fsociety i was trying to remember who had it, and i told phil of the hdd failure and went oh yeah i have your other black drive.. so there is the solution
2016-03-02 08:28:37 fsociety i'll still rma the drive.. black drives have a fairly wonderful replacement warranty
2016-03-02 08:33:49 fsociety excellent 5 year warranty :)
2016-03-02 08:48:49 turtleshow Well that all sounds fairly lucky - no real data loss, spare drive kicking around and still under warranty :-) just a pain in the butt to deal with it all... Time loss :(
2016-03-02 08:49:22 fsociety yeah i know.. still in the rabbit hole of ue4?
2016-03-02 08:50:01 turtleshow Saw the pi 3 came out the other day, few improvements but still only 100mb ethernet
2016-03-02 08:50:33 turtleshow Mucking around a little bit haven't had much time recently, work and Amanda have consumed most of it
2016-03-02 08:50:44 turtleshow And still hunting a new job :p
2016-03-02 08:53:12 fsociety yeah i'd get one of the more powerful boards over the pi
2016-03-02 08:53:19 fsociety like the beagle or even the nvidia one
2016-03-02 08:53:22 fsociety the nvidia one is awesome
2016-03-02 08:53:30 fsociety expensive, but it has a discrete gpu on it
2016-03-02 09:00:19 turtleshow Hmm so many options to ponder... At some point I'll just have to dive into one and hope it pans out
2016-03-02 09:00:41 fsociety and become a bonified linux commandline master-fu
2016-03-02 09:00:47 fsociety or just ring me up when you get stuck
2016-03-02 09:52:56 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 09:53:06 > turtleshow ([email protected]) is back on server
2016-03-02 11:33:21 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 11:33:34 > turtleshow ([email protected]) is back on server
2016-03-02 12:09:24 turtleshow Hehe more likely the latter
2016-03-02 12:09:50 fsociety so im compiling ue4 from scratch.. here is but a few screenshots to entertain you
2016-03-02 12:10:00 fsociety https://u.teknik.io/Zvsey.png
2016-03-02 12:10:05 fsociety https://u.teknik.io/giEzp.png
2016-03-02 12:10:09 fsociety https://u.teknik.io/OCpV3.png
2016-03-02 12:10:26 fsociety this is the first time i've gotten this far.. seems epic have improved their build routine dramatically
2016-03-02 12:10:44 fsociety it is still tempremental on what compiler it wants though. had to setup a local environment so it wouldn't crack the shits
2016-03-02 12:12:18 turtleshow Hehe that is a monumental effort, nice work. what pros does it give? Compared to standard build? Or just theoretical interest?
2016-03-02 12:12:34 fsociety its the only way to have it run under linux
2016-03-02 12:12:53 fsociety also i can modify things here and there, for example i can choose what libraries it uses for the ide
2016-03-02 12:13:01 fsociety for example qt or gtk, etc, etc.
2016-03-02 12:14:11 fsociety but other than that I guess compiling at against the cflags and instruction set of your cpu is going to improve some performance here and there
2016-03-02 12:14:21 fsociety i wouldn't expect too much of a real world noticable gain though
2016-03-02 12:14:53 fsociety also most people only make binaries for ubuntu these days.. so i have to go the compile route.. which i don't mind because i get to understand how unreal4 is created on the backend.
2016-03-02 12:15:48 fsociety nearly there
2016-03-02 12:15:51 fsociety https://u.teknik.io/WCptE.png
2016-03-02 12:26:00 turtleshow Ahhh of course, Linux
2016-03-02 12:26:29 turtleshow Yeah, it's always good to understand the under the hood side of things, really helpful when things go wrong
2016-03-02 12:26:53 turtleshow Getting there
2016-03-02 13:10:42 fsociety slow day
2016-03-02 13:12:13 fsociety I spoke to soon
2016-03-02 13:12:14 fsociety https://u.teknik.io/zvkot.png
2016-03-02 13:12:14 fsociety hahaha
2016-03-02 13:18:11 turtleshow Hehehe ID enjoy a slow day
2016-03-02 13:24:05 fsociety hahaha.. hows the kittahs
2016-03-02 13:55:22 - irc: disconnected from server
2016-03-02 14:09:52 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 14:10:03 > turtleshow ([email protected]) is back on server
2016-03-02 15:07:44 turtleshow Kittahs have access to the outside world now so they are very happy hehe but all in all they have settled in and quite at home now
2016-03-02 15:08:00 fsociety excellent
2016-03-02 15:08:08 fsociety your house is purrrrfect for kittahs
2016-03-02 15:08:08 fsociety haha
2016-03-02 15:08:21 turtleshow Haha
2016-03-02 15:08:28 turtleshow You will have to come meet them sometime
2016-03-02 15:08:32 fsociety definetly
2016-03-02 15:49:40 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 15:49:40 > turtleshow ([email protected]) is back on server
2016-03-02 16:40:28 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 16:40:28 > turtleshow ([email protected]) is back on server
2016-03-02 17:16:10 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 17:16:10 > turtleshow ([email protected]) is back on server
2016-03-02 17:29:13 < turtleshow ([email protected]) has quit (bitlbee.localhost error418.info)
2016-03-02 17:30:26 > turtleshow ([email protected]) is back on server
2016-03-02 17:46:44 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-02 17:46:44 > turtleshow ([email protected]) is back on server
2016-03-02 17:56:52 - irc: disconnected from server
2016-03-03 08:44:10 fsociety morning. so i succesfully compid ue4 :)
2016-03-03 08:48:38 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 08:48:38 > turtleshow ([email protected]) is back on server
2016-03-03 09:20:06 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 09:20:06 > turtleshow ([email protected]) is back on server
2016-03-03 09:44:19 turtleshow Nice work :-) does it run well on Linux?
2016-03-03 09:55:07 fsociety it does
2016-03-03 09:58:16 fsociety though having issues packaging, it cant find the runtime binaries for some reason.. i'll figure it out
2016-03-03 09:58:58 fsociety how was your evening, have a good catch up with phil
2016-03-03 10:45:00 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 10:45:00 > turtleshow ([email protected]) is back on server
2016-03-03 10:50:07 turtleshow Yeah evening was good, Phil popped round to grab some green, I ended up stuck in tropico 5 aftwerards
2016-03-03 10:50:44 fsociety haha of all things - tropico
2016-03-03 12:35:32 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 12:35:32 > turtleshow ([email protected]) is back on server
2016-03-03 12:42:49 turtleshow Hehe we all have our vices... It's not super entertaining but easy to play on the couch while watching stuff
2016-03-03 12:42:59 turtleshow And I enjoy being an evil dictator skmetimes
2016-03-03 12:43:19 fsociety thought your work was enough for being an evil dictator. haha
2016-03-03 12:44:28 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 12:44:28 > turtleshow ([email protected]) is back on server
2016-03-03 13:06:08 turtleshow Hehehe but it's nowhere near as fun... Causing chaos has bigger implications
2016-03-03 14:18:18 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 14:18:18 > turtleshow ([email protected]) is back on server
2016-03-03 15:04:56 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 15:04:56 > turtleshow ([email protected]) is back on server
2016-03-03 16:10:58 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 16:10:58 > turtleshow ([email protected]) is back on server
2016-03-03 16:47:22 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 16:47:22 > turtleshow ([email protected]) is back on server
2016-03-03 16:50:31 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 16:50:31 > turtleshow ([email protected]) is back on server
2016-03-03 17:00:07 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 17:00:07 > turtleshow ([email protected]) is back on server
2016-03-03 17:05:00 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 17:05:00 > turtleshow ([email protected]) is back on server
2016-03-03 17:14:56 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 17:14:56 > turtleshow ([email protected]) is back on server
2016-03-03 17:37:37 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 17:37:37 > turtleshow ([email protected]) is back on server
2016-03-03 17:49:02 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 17:49:02 > turtleshow ([email protected]) is back on server
2016-03-03 18:22:21 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 18:22:21 > turtleshow ([email protected]) is back on server
2016-03-03 18:24:09 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 18:24:09 > turtleshow ([email protected]) is back on server
2016-03-03 18:24:29 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 18:24:29 > turtleshow ([email protected]) is back on server
2016-03-03 18:24:51 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 18:24:51 > turtleshow ([email protected]) is back on server
2016-03-03 20:02:28 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 20:02:28 > turtleshow ([email protected]) is back on server
2016-03-03 21:57:04 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 21:57:04 > turtleshow ([email protected]) is back on server
2016-03-03 23:32:48 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 23:32:48 > turtleshow ([email protected]) is back on server
2016-03-03 23:35:37 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 23:35:37 > turtleshow ([email protected]) is back on server
2016-03-03 23:47:19 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-03 23:47:19 > turtleshow ([email protected]) is back on server
2016-03-04 01:17:58 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 01:17:58 > turtleshow ([email protected]) is back on server
2016-03-04 02:21:57 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 02:21:57 > turtleshow ([email protected]) is back on server
2016-03-04 03:09:30 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 03:09:30 > turtleshow ([email protected]) is back on server
2016-03-04 08:59:46 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 08:59:46 > turtleshow ([email protected]) is back on server
2016-03-04 09:01:19 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 09:01:19 > turtleshow ([email protected]) is back on server
2016-03-04 09:36:15 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 09:36:15 > turtleshow ([email protected]) is back on server
2016-03-04 09:56:55 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 09:56:55 > turtleshow ([email protected]) is back on server
2016-03-04 10:41:17 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 10:41:17 > turtleshow ([email protected]) is back on server
2016-03-04 11:06:25 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 11:06:25 > turtleshow ([email protected]) is back on server
2016-03-04 11:38:12 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 11:38:12 > turtleshow ([email protected]) is back on server
2016-03-04 12:13:46 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 12:13:46 > turtleshow ([email protected]) is back on server
2016-03-04 13:38:01 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 13:38:01 > turtleshow ([email protected]) is back on server
2016-03-04 13:55:23 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 13:55:23 > turtleshow ([email protected]) is back on server
2016-03-04 14:54:12 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 14:54:12 > turtleshow ([email protected]) is back on server
2016-03-04 14:55:15 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 14:55:15 > turtleshow ([email protected]) is back on server
2016-03-04 15:08:25 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 15:08:25 > turtleshow ([email protected]) is back on server
2016-03-04 15:57:07 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 15:57:07 > turtleshow ([email protected]) is back on server
2016-03-04 16:10:38 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:10:38 > turtleshow ([email protected]) is back on server
2016-03-04 16:20:38 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:20:38 > turtleshow ([email protected]) is back on server
2016-03-04 16:30:26 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:30:26 > turtleshow ([email protected]) is back on server
2016-03-04 16:31:45 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:31:45 > turtleshow ([email protected]) is back on server
2016-03-04 16:31:54 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:31:54 > turtleshow ([email protected]) is back on server
2016-03-04 16:32:35 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:32:35 > turtleshow ([email protected]) is back on server
2016-03-04 16:32:40 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:32:40 > turtleshow ([email protected]) is back on server
2016-03-04 16:33:14 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:33:14 > turtleshow ([email protected]) is back on server
2016-03-04 16:45:14 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 16:45:14 > turtleshow ([email protected]) is back on server
2016-03-04 17:22:56 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 17:22:56 > turtleshow ([email protected]) is back on server
2016-03-04 17:32:00 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 17:32:00 > turtleshow ([email protected]) is back on server
2016-03-04 17:58:42 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 17:58:42 > turtleshow ([email protected]) is back on server
2016-03-04 18:34:56 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 18:34:56 > turtleshow ([email protected]) is back on server
2016-03-04 19:14:43 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 19:14:43 > turtleshow ([email protected]) is back on server
2016-03-04 19:31:58 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 19:31:58 > turtleshow ([email protected]) is back on server
2016-03-04 20:00:27 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 20:00:27 > turtleshow ([email protected]) is back on server
2016-03-04 20:08:36 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-04 20:08:36 > turtleshow ([email protected]) is back on server
2016-03-07 09:06:12 fsociety morning
2016-03-07 09:06:22 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:06:22 > turtleshow ([email protected]) is back on server
2016-03-07 09:06:26 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:06:26 > turtleshow ([email protected]) is back on server
2016-03-07 09:07:02 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:07:02 > turtleshow ([email protected]) is back on server
2016-03-07 09:08:36 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:08:36 > turtleshow ([email protected]) is back on server
2016-03-07 09:08:49 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:08:49 > turtleshow ([email protected]) is back on server
2016-03-07 09:11:14 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:11:14 > turtleshow ([email protected]) is back on server
2016-03-07 09:11:54 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:11:54 > turtleshow ([email protected]) is back on server
2016-03-07 09:11:55 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:11:55 > turtleshow ([email protected]) is back on server
2016-03-07 09:12:43 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:12:43 > turtleshow ([email protected]) is back on server
2016-03-07 09:13:54 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:13:54 > turtleshow ([email protected]) is back on server
2016-03-07 09:14:53 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:14:53 > turtleshow ([email protected]) is back on server
2016-03-07 09:14:54 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:14:54 > turtleshow ([email protected]) is back on server
2016-03-07 09:16:40 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:16:40 > turtleshow ([email protected]) is back on server
2016-03-07 09:16:43 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:16:43 > turtleshow ([email protected]) is back on server
2016-03-07 09:19:08 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 09:19:08 > turtleshow ([email protected]) is back on server
2016-03-07 10:36:51 fsociety rah rah rah
2016-03-07 10:49:34 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 10:49:34 > turtleshow ([email protected]) is back on server
2016-03-07 12:12:29 turtleshow Hoorahllo
2016-03-07 12:12:43 turtleshow I got a Minix on the weekend :p
2016-03-07 12:21:33 fsociety hahaha
2016-03-07 12:21:34 fsociety awesome
2016-03-07 12:21:51 fsociety you can download alternate version of kodi/xbmc for it btw
2016-03-07 12:21:55 fsociety for example spmc i think its called
2016-03-07 12:23:30 fsociety https://play.google.com/store/apps/details?id=com.semperpax.spmc
2016-03-07 12:24:28 turtleshow Thanks, I'll look into it - mainly been looking into the torrent side - have installed Transmission on my NAS and have a client running on the Minix that'll send torrents to the NAS so that side is looking OK now
2016-03-07 12:24:46 turtleshow But there are a few interface parts of xmbc that seem a little clunky
2016-03-07 12:24:58 turtleshow And the ole scraping shows data incorrect issues hehe
2016-03-07 15:25:43 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 15:25:43 > turtleshow ([email protected]) is back on server
2016-03-07 16:14:48 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 16:14:48 > turtleshow ([email protected]) is back on server
2016-03-07 16:42:44 turtleshow Yeah, that's always the problem :-/
2016-03-07 16:42:51 turtleshow How was your weekend?
2016-03-07 16:43:17 fsociety eventless.. actually withdrawal from carcnagenics from cigarettes
2016-03-07 16:43:26 fsociety nicotine withdrawal was fine, but not the rest of the bloody cigarette
2016-03-07 16:43:29 fsociety i was grumpy all weekend
2016-03-07 16:44:49 turtleshow Ahh, getting off the bandwagon? Tough journey that one
2016-03-07 16:45:12 turtleshow I can understand, I'm okay for a couple of days but get very irritable
2016-03-07 16:45:46 fsociety yeaaah. feeling better today though :)
2016-03-07 16:45:48 fsociety thank god
2016-03-07 16:45:57 fsociety finally got ue4 to compile and package on linux
2016-03-07 16:46:05 fsociety so compiled phil's project
2016-03-07 16:46:08 fsociety runs great
2016-03-07 16:48:43 turtleshow Awesome, it's always a good feeling when you get to see stuff working...
2016-03-07 16:57:53 fsociety any plans for this weekend.. been meaning to look at paper2d on unreal4
2016-03-07 16:58:01 fsociety just have to find the time
2016-03-07 17:58:11 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 17:58:11 > turtleshow ([email protected]) is back on server
2016-03-07 18:44:36 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 18:44:36 > turtleshow ([email protected]) is back on server
2016-03-07 19:15:15 < turtleshow ([email protected]) has quit (Leaving...)
2016-03-07 19:15:15 > turtleshow ([email protected]) is back on server
2016-03-07 19:16:50 - irc: disconnected from server
| IRC log | 0 | 0x4b1dN/2016-dots | misc/weechat/logs/irc.bitlbee.turtleshow.weechatlog | [
"MIT"
] |
div {
property: 10;
property: +10;
property: -10;
property: 0.1;
property: +0.1;
property: -0.1;
property: -.1;
property: +.1;
property: 0;
property: 10;
property: .10;
property: 12.34;
property: 0.1;
property: 1.0;
property: 0.0;
property: +0.0;
property: -0.0;
property: .0;
property: 1.200000;
property: 1.2e2;
property: 1e2;
property: .2e2;
property: 1.2E2;
property: 1.2e+2;
property: 1.2e-2;
property: -1;
property: -1.2;
property: -.2;
property: -.2;
property: +.2;
property: -1.2e3;
property: 1.75;
property: +1.75;
property: 1e;
}
| CSS | 0 | mengxy/swc | crates/swc_css_parser/tests/fixture/number/input.css | [
"Apache-2.0"
] |
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="page">
<html>
<head>
<title> Test XSLT </title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
// 'document-domain' is enabled in the page but is disabled
// in Permissions-Policy-Report-Only header.
// A permissions-policy-violation report is expected.
async_test(t => {
new ReportingObserver(t.step_func_done((reports, _) => {
assert_equals(reports.length, 1);
const report = reports[0];
assert_equals(report.type, 'permissions-policy-violation');
assert_equals(report.body.featureId, 'document-domain');
assert_equals(report.body.disposition, 'report');
}), {types: ['permissions-policy-violation']}).observe();
});
document.domain = document.domain;
</script>
</head>
<body bgcolor="#ffffff">
</body>
</html>
</xsl:template>
</xsl:stylesheet> | XSLT | 4 | zealoussnow/chromium | third_party/blink/web_tests/http/tests/permissions-policy/resources/permissions-policy-report-only-in-xsl.xslt | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
package scala.tools.eclipse.contribution.weaving.jdt.ui.document;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.projection.ProjectionDocumentManager;
public privileged aspect CreateSlaveProjectionDocument {
pointcut createSlaveDocument(IDocument master):
execution(IDocument ProjectionDocumentManager.createSlaveDocument(IDocument)) &&
args(master);
IDocument around(IDocument master): createSlaveDocument(master) {
IDocument extracted = master;
for (IMasterProjectionDocumentProvider provider : MasterProjectionDocumentProviderRegistry.getInstance().getProviders()) {
extracted = provider.extractActualMaster(extracted);
}
return proceed(extracted);
}
}
| AspectJ | 4 | elemgee/scala-ide | org.scala-ide.sdt.aspects/src/scala/tools/eclipse/contribution/weaving/jdt/ui/document/CreateSlaveProjectionDocument.aj | [
"BSD-3-Clause"
] |
<h3>RDoc formatting tips (<a target="_new" href="http://rdoc.sourceforge.net/doc/files/markup/simple_markup_rb.html">advanced</a>)</h3>
<table cellspacing="0" cellpadding="0">
<tr><td>_your text_</td><td class="arrow">→</td><td><em>your text</em></td></tr>
<tr><td>*your text*</td><td class="arrow">→</td><td><strong>your text</strong></td></tr>
<tr><td>* Bulleted list<br />* Second item</td><td class="arrow">→</td><td>• Bulleted list<br />• Second item</td></tr>
<tr><td>1. Numbered list<br />2. Second item</td><td class="arrow">→</td><td>1. Numbered list<br />2. Second item</td></tr>
<tr><td>+my_code+</td><td class="arrow">→</td><td><code>my_code</code></td></tr>
<tr><td>---</td><td class="arrow">→</td><td>Horizontal ruler</td></tr>
<tr><td>[[URL linkname]]</td><td class="arrow">→</td><td><a href="URL">linkname</a></td></tr>
<tr><td>http://url<br />mailto:[email protected]</td><td class="arrow">→</td><td>Auto-linked</td></tr>
<tr><td>imageURL</td><td class="arrow">→</td><td>Image</td></tr>
</table>
| RHTML | 3 | taskforce/instiki | app/views/rdoc_help.rhtml | [
"Ruby"
] |
"""Support for INSTEON dimmers via PowerLinc Modem."""
from pyinsteon.groups import (
CO_SENSOR,
DOOR_SENSOR,
HEARTBEAT,
LEAK_SENSOR_WET,
LIGHT_SENSOR,
LOW_BATTERY,
MOTION_SENSOR,
OPEN_CLOSE_SENSOR,
SENSOR_MALFUNCTION,
SMOKE_SENSOR,
TEST_SENSOR,
)
from homeassistant.components.binary_sensor import (
DOMAIN as BINARY_SENSOR_DOMAIN,
BinarySensorDeviceClass,
BinarySensorEntity,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant, callback
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from .const import SIGNAL_ADD_ENTITIES
from .insteon_entity import InsteonEntity
from .utils import async_add_insteon_entities
SENSOR_TYPES = {
OPEN_CLOSE_SENSOR: BinarySensorDeviceClass.OPENING,
MOTION_SENSOR: BinarySensorDeviceClass.MOTION,
DOOR_SENSOR: BinarySensorDeviceClass.DOOR,
LEAK_SENSOR_WET: BinarySensorDeviceClass.MOISTURE,
LIGHT_SENSOR: BinarySensorDeviceClass.LIGHT,
LOW_BATTERY: BinarySensorDeviceClass.BATTERY,
CO_SENSOR: BinarySensorDeviceClass.GAS,
SMOKE_SENSOR: BinarySensorDeviceClass.SMOKE,
TEST_SENSOR: BinarySensorDeviceClass.SAFETY,
SENSOR_MALFUNCTION: BinarySensorDeviceClass.PROBLEM,
HEARTBEAT: BinarySensorDeviceClass.PROBLEM,
}
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up the Insteon binary sensors from a config entry."""
@callback
def async_add_insteon_binary_sensor_entities(discovery_info=None):
"""Add the Insteon entities for the platform."""
async_add_insteon_entities(
hass,
BINARY_SENSOR_DOMAIN,
InsteonBinarySensorEntity,
async_add_entities,
discovery_info,
)
signal = f"{SIGNAL_ADD_ENTITIES}_{BINARY_SENSOR_DOMAIN}"
async_dispatcher_connect(hass, signal, async_add_insteon_binary_sensor_entities)
async_add_insteon_binary_sensor_entities()
class InsteonBinarySensorEntity(InsteonEntity, BinarySensorEntity):
"""A Class for an Insteon binary sensor entity."""
def __init__(self, device, group):
"""Initialize the INSTEON binary sensor."""
super().__init__(device, group)
self._sensor_type = SENSOR_TYPES.get(self._insteon_device_group.name)
@property
def device_class(self):
"""Return the class of this sensor."""
return self._sensor_type
@property
def is_on(self):
"""Return the boolean response if the node is on."""
return bool(self._insteon_device_group.value)
| Python | 4 | MrDelik/core | homeassistant/components/insteon/binary_sensor.py | [
"Apache-2.0"
] |
#ifndef @(package_name.upper())__@(library_name.upper())_HPP_
#define @(package_name.upper())__@(library_name.upper())_HPP_
#include "@(package_name)/visibility_control.h"
namespace @(package_name)
{
class @(class_name)
{
public:
@(class_name)();
virtual ~@(class_name)();
};
} // namespace @(package_name)
#endif // @(package_name.upper())__@(library_name.upper())_HPP_
| EmberScript | 4 | sunbo57123/ros2cli_common_extension | ros2pkg/ros2pkg/resource/cpp/header.hpp.em | [
"Apache-2.0"
] |
#!/usr/bin/env bash
# Copyright 2015 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This script runs `curl` command to get the kubernetes build file.
# Version number or publication is either a proper version number'
# (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
# publication of the form <bucket>/<version> (e.g. "release/stable",'
# "ci/latest-1").'
# Usage `hack/get-build.sh [Version]`.
# Example `hack/get-build.sh v1.16.4`.
set -o errexit
set -o nounset
set -o pipefail
KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
source "${KUBE_ROOT}/cluster/common.sh"
declare -r KUBE_RELEASE_BUCKET_URL="https://storage.googleapis.com/kubernetes-release"
declare -r KUBE_DEV_RELEASE_BUCKET_URL="https://storage.googleapis.com/k8s-release-dev"
declare -r KUBE_TAR_NAME="kubernetes.tar.gz"
usage() {
echo "${0} [-v] <version number or publication>"
echo " -v: Don't get tars, just print the version number"
echo ""
echo ' Version number or publication is either a proper version number'
echo ' (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
echo ' publication of the form <bucket>/<version> (e.g. "release/stable",'
echo ' "ci/latest-1"). Some common ones are:'
echo ' - "release/stable"'
echo ' - "release/latest"'
echo ' - "ci/latest"'
echo ' See the docs on getting builds for more information about version'
echo ' publication.'
}
print_version=false
while getopts ":vh" opt; do
case ${opt} in
v)
print_version="true"
;;
h)
usage
exit 0
;;
\?)
echo "Invalid option: -$OPTARG" >&2
usage
exit 1
;;
esac
done
shift $((OPTIND-1))
if [[ $# -ne 1 ]]; then
usage
exit 1
fi
set_binary_version "${1}"
if [[ "${print_version}" == "true" ]]; then
echo "${KUBE_VERSION}"
else
echo "Using version at ${1}: ${KUBE_VERSION}" >&2
if [[ ${KUBE_VERSION} =~ ${KUBE_RELEASE_VERSION_REGEX} ]]; then
curl --fail -o "kubernetes-${KUBE_VERSION}.tar.gz" "${KUBE_RELEASE_BUCKET_URL}/release/${KUBE_VERSION}/${KUBE_TAR_NAME}"
elif [[ ${KUBE_VERSION} =~ ${KUBE_CI_VERSION_REGEX} ]]; then
curl --fail -o "kubernetes-${KUBE_VERSION}.tar.gz" "${KUBE_DEV_RELEASE_BUCKET_URL}/ci/${KUBE_VERSION}/${KUBE_TAR_NAME}"
else
echo "Version doesn't match regexp" >&2
exit 1
fi
fi
| Shell | 5 | 767829413/kubernetes | hack/get-build.sh | [
"Apache-2.0"
] |
#!./parrot -C
#
# fasta.pir N (N = 2500000 for shootout)
# by Joshua Isom
# 48.2 sec on AMD@2000/512K cache
.sub makeCumulative
.param pmc genelist
.param int count
.local float cp
.local int i
cp = 0.0
i = 0
beginfor:
unless i < count goto endfor
$N0 = genelist[i;1]
cp += $N0
genelist[i;1] = cp
inc i
goto beginfor
endfor:
.end
.sub selectRandom
.param pmc genelist
.param int count
.local float r
r = gen_random(1.0)
.local int i, lo, hi
$N0 = genelist[0;1]
unless r < $N0 goto endif
$S0 = genelist[0;0]
.return($S0)
endif:
lo = 0
hi = count - 1
beginwhile:
$I0 = lo + 1
unless hi > $I0 goto endwhile
i = hi + lo
i /= 2
$N0 = genelist[i;1]
unless r < $N0 goto else_1
hi = i
goto endif_1
else_1:
lo = i
endif_1:
goto beginwhile
endwhile:
$S0 = genelist[hi;0]
.return($S0)
.end
.const int LINE_LENGTH = 60
.sub makeRandomFasta
.param string id
.param string desc
.param pmc genelist
.param int count
.param int n
.local int todo, i, m
todo = n
print ">"
print id
print " "
print desc
print "\n"
.local string pick
beginfor:
unless todo > 0 goto endfor
unless todo < LINE_LENGTH goto else
m = todo
goto endif
else:
m = LINE_LENGTH
endif:
i = 0
beginfor_1:
unless i < m goto endfor_1
$S0 = selectRandom(genelist, count)
pick .= $S0
inc i
goto beginfor_1
endfor_1:
print pick
print "\n"
pick = ''
todo -= LINE_LENGTH
goto beginfor
endfor:
.end
.sub makeRepeatFasta
.param string id
.param string desc
.param string s
.param int n
.local int todo, k, kn, m
todo = n
k = 0
kn = length s
print ">"
print id
print " "
print desc
print "\n"
beginfor:
unless todo > 0 goto endfor
unless todo < LINE_LENGTH goto else
m = todo
goto endif
else:
m = LINE_LENGTH
endif:
beginwhile:
$I0 = kn - k
unless m >= $I0 goto endwhile
$S0 = substr s, k
print $S0
$I0 = kn - k
m -= $I0
k = 0
goto beginwhile
endwhile:
$S0 = substr s, k, m
print $S0
print "\n"
k += m
todo -= LINE_LENGTH
goto beginfor
endfor:
.end
.macro InitStruct (iub, i, char, num)
$P0 = new .FixedPMCArray
$P0 = 2
.iub[.i] = $P0
.iub[.i;0] = .char
.iub[.i;1] = .num
.endm
.sub main :main
.param pmc argv
.local pmc stdout
.local int n
# stdout is linebuffered per default - make it block buffered
stdout = getstdout
stdout.'setbuf'(40960)
$I0 = argv
unless $I0 > 2 goto argsok
n = 1000
goto argsdone
argsok:
$S0 = argv[1]
n = $S0
argsdone:
load_bytecode "random_lib.pir"
.local pmc iub
iub = new .FixedPMCArray
iub = 15
.InitStruct(iub, 0, "a", 0.27)
.InitStruct(iub, 1, "c", 0.12)
.InitStruct(iub, 2, "g", 0.12)
.InitStruct(iub, 3, "t", 0.27)
.InitStruct(iub, 4, "B", 0.02)
.InitStruct(iub, 5, "D", 0.02)
.InitStruct(iub, 6, "H", 0.02)
.InitStruct(iub, 7, "K", 0.02)
.InitStruct(iub, 8, "M", 0.02)
.InitStruct(iub, 9, "N", 0.02)
.InitStruct(iub, 10, "R", 0.02)
.InitStruct(iub, 11, "S", 0.02)
.InitStruct(iub, 12, "V", 0.02)
.InitStruct(iub, 13, "W", 0.02)
.InitStruct(iub, 14, "Y", 0.02)
.local pmc homosapiens
homosapiens = new .FixedPMCArray
homosapiens = 4
.InitStruct(homosapiens, 0, "a", 0.3029549426680)
.InitStruct(homosapiens, 1, "c", 0.1979883004921)
.InitStruct(homosapiens, 2, "g", 0.1975473066391)
.InitStruct(homosapiens, 3, "t", 0.3015094502008)
.local string alu
alu = "GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTTGGGAGGCCGAGGCGGGCGGATCACCTGAGGTCAGGAGTTCGAGACCAGCCTGGCCAACATGGTGAAACCCCGTCTCTACTAAAAATACAAAAATTAGCCGGGCGTGGTGGCGCGCGCCTGTAATCCCAGCTACTCGGGAGGCTGAGGCAGGAGAATCGCTTGAACCCGGGAGGCGGAGGTTGCAGTGAGCCGAGATCGCGCCACTGCACTCCAGCCTGGGCGACAGAGCGAGACTCCGTCTCAAAAA"
makeCumulative(iub, 15)
makeCumulative(homosapiens, 4)
$I0 = n * 2
makeRepeatFasta("ONE", "Homo sapiens alu", alu, $I0)
$I0 = n * 3
makeRandomFasta ("TWO", "IUB ambiguity codes", iub, 15, $I0)
$I0 = n * 5
makeRandomFasta ("THREE", "Homo sapiens frequency", homosapiens, 4, $I0)
.end
| Parrot | 4 | kragen/shootout | bench/fasta/fasta.parrot | [
"BSD-3-Clause"
] |
module LexerObjects
class Strings
@lexer : Lexer
@token : Token
def initialize(@lexer)
@token = Token.new
end
def string_should_be_delimited_by(expected_start, expected_end)
string_should_start_correctly
token.delimiter_state.nest.should eq(expected_start)
token.delimiter_state.end.should eq(expected_end)
token.delimiter_state.open_count.should eq(0)
end
def string_should_start_correctly
@token = lexer.next_token
token.type.should eq(:DELIMITER_START)
end
def next_token_should_be(expected_type, expected_value = nil)
@token = lexer.next_token
token.type.should eq(expected_type)
if expected_value
token.value.should eq(expected_value)
end
end
def next_unicode_tokens_should_be(expected_unicode_codes : Array)
@token = lexer.next_string_token(token.delimiter_state)
token.type.should eq(:STRING)
token.value.as(String).chars.map(&.ord).should eq(expected_unicode_codes)
end
def next_unicode_tokens_should_be(expected_unicode_codes)
@token = lexer.next_string_token(token.delimiter_state)
token.type.should eq(:STRING)
token.value.as(String).char_at(0).ord.should eq(expected_unicode_codes)
end
def next_string_token_should_be(expected_string)
@token = lexer.next_string_token(token.delimiter_state)
token.type.should eq(:STRING)
token.value.should eq(expected_string)
end
def next_string_token_should_be_opening
@token = lexer.next_string_token(token.delimiter_state)
token.type.should eq(:STRING)
token.value.should eq(token.delimiter_state.nest.to_s)
token.delimiter_state.open_count.should eq(1)
end
def next_string_token_should_be_closing
@token = lexer.next_string_token(token.delimiter_state)
token.type.should eq(:STRING)
token.value.should eq(token.delimiter_state.end.to_s)
token.delimiter_state.open_count.should eq(0)
end
def string_should_have_an_interpolation_of(interpolated_variable_name)
@token = lexer.next_string_token(token.delimiter_state)
token.type.should eq(:INTERPOLATION_START)
@token = lexer.next_token
token.type.should eq(:IDENT)
token.value.should eq(interpolated_variable_name)
@token = lexer.next_token
token.type.should eq(:"}")
end
def token_should_be_at(line = nil, column = nil)
token.line_number.should eq(line) if line
token.column_number.should eq(column) if column
end
def next_token_should_be_at(line = nil, column = nil)
@token = lexer.next_token
token_should_be_at(line: line, column: column)
end
def string_should_end_correctly(eof = true)
@token = lexer.next_string_token(token.delimiter_state)
token.type.should eq(:DELIMITER_END)
if eof
should_have_reached_eof
end
end
def should_have_reached_eof
@token = lexer.next_token
token.type.should eq(:EOF)
end
private getter :lexer, :token
end
end
| Crystal | 5 | mgomes/crystal | spec/compiler/lexer/lexer_objects/strings.cr | [
"Apache-2.0"
] |
/**
* Client-side support for the Jetty WebSocket API.
*/
@NonNullApi
@NonNullFields
package org.springframework.web.socket.client.jetty;
import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;
| Java | 2 | nicchagil/spring-framework | spring-websocket/src/main/java/org/springframework/web/socket/client/jetty/package-info.java | [
"Apache-2.0"
] |
20 3 0 0 84
0 1 8 2 4 8 6 3 5 1 7 [0] [0] [0] [0] [0] [0] [0] [0]
1 1 5 15 9 19 18 10 [3] [0] [2] [0] [2]
2 1 4 19 18 12 9 [-2] [11] [15] [-6]
3 1 5 16 18 19 20 17 [6] [17] [4] [1] [8]
4 1 5 20 17 16 19 18 [-1] [-2] [2] [3] [10]
5 1 3 9 14 19 [-4] [18] [-3]
6 1 3 14 9 19 [6] [1] [6]
7 1 5 17 16 19 20 18 [-4] [-5] [-1] [4] [18]
8 1 6 11 17 18 19 12 20 [-2] [13] [0] [17] [24] [15]
9 1 3 17 11 20 [2] [4] [2]
10 1 3 11 12 17 [19] [14] [8]
11 1 3 13 9 10 [17] [-10] [-26]
12 1 1 16 [17]
13 1 1 16 [15]
14 1 6 15 5 10 6 18 20 [0] [-36] [9] [-13] [15] [11]
15 1 7 5 6 12 17 13 14 1 [-28] [-31] [12] [13] [3] [-21] [-26]
16 1 3 13 12 21 [-21] [-33] [6]
17 1 1 21 [2]
18 1 6 4 8 2 7 3 21 [-42] [-44] [-72] [-55] [-61] [7]
19 1 6 8 21 4 3 7 2 [-41] [4] [-54] [-71] [-67] [-47]
20 1 2 9 21 [-23] [4]
21 1 0
0 1 0 0 0 0
1 1 2 5 1 1
2 1 8 1 4 4
3 1 7 4 4 1
4 1 4 4 5 3
5 1 9 2 3 3
6 1 2 4 4 4
7 1 6 3 3 2
8 1 8 4 3 3
9 1 6 5 2 4
10 1 7 3 1 2
11 1 8 1 4 5
12 1 9 4 1 5
13 1 10 1 4 1
14 1 5 1 1 2
15 1 6 4 5 2
16 1 6 1 1 3
17 1 2 1 4 5
18 1 7 4 2 4
19 1 4 5 4 3
20 1 4 5 5 5
21 1 0 0 0 0
10 3 9
| Eagle | 1 | klorel/or-tools | examples/data/rcpsp/single_mode_investment/rip20/rip46.sch | [
"Apache-2.0"
] |
package experimental_test
import "experimental"
import "testing"
inData =
"
#datatype,string,long,dateTime:RFC3339,string,string,string,double
#group,false,false,false,true,true,true,false
#default,_result,,,,,,
,result,table,_time,_measurement,_field,tag0,_value
,,0,2018-12-19T22:13:30Z,_m,a,t,1
,,0,2018-12-19T22:13:40Z,_m,a,t,2
,,0,2018-12-19T22:13:50Z,_m,a,t,3
,,0,2018-12-19T22:14:00Z,_m,a,t,4
,,0,2018-12-19T22:14:10Z,_m,a,t,5
,,0,2018-12-19T22:14:20Z,_m,a,t,6
,,1,2018-12-19T22:13:30Z,_m,a,g,2
,,1,2018-12-19T22:13:40Z,_m,a,g,3
,,1,2018-12-19T22:13:50Z,_m,a,g,4
,,1,2018-12-19T22:14:00Z,_m,a,g,5
,,1,2018-12-19T22:14:10Z,_m,a,g,6
,,1,2018-12-19T22:14:20Z,_m,a,g,7
#datatype,string,long,dateTime:RFC3339,string,string,string,double
#group,false,false,false,true,true,true,false
#default,_result,,,,,,
,result,table,_time,_measurement,_field,tag1,_value
,,2,2018-12-19T22:13:30Z,_m,a,t,1
,,2,2018-12-19T22:13:40Z,_m,a,t,2
,,2,2018-12-19T22:13:50Z,_m,a,t,3
,,2,2018-12-19T22:14:00Z,_m,a,t,4
,,2,2018-12-19T22:14:10Z,_m,a,t,5
,,2,2018-12-19T22:14:20Z,_m,a,t,6
,,3,2018-12-19T22:13:30Z,_m,a,g,1
,,3,2018-12-19T22:13:40Z,_m,a,g,2
,,3,2018-12-19T22:13:50Z,_m,a,g,3
,,3,2018-12-19T22:14:00Z,_m,a,g,4
,,3,2018-12-19T22:14:10Z,_m,a,g,5
,,3,2018-12-19T22:14:20Z,_m,a,g,6
#datatype,string,long,dateTime:RFC3339,string,string,string,double
#group,false,false,false,true,true,true,false
#default,_result,,,,,,
,result,table,_time,_measurement,_field,tag0,_value
,,4,2018-12-19T22:13:30Z,_m,b,s,1
,,4,2018-12-19T22:13:40Z,_m,b,s,2
,,4,2018-12-19T22:13:50Z,_m,b,s,3
,,4,2018-12-19T22:14:00Z,_m,b,s,4
,,4,2018-12-19T22:14:10Z,_m,b,s,5
,,4,2018-12-19T22:14:20Z,_m,b,s,6
,,5,2018-12-19T22:13:30Z,_m,b,g,1
,,5,2018-12-19T22:13:40Z,_m,b,g,2
,,5,2018-12-19T22:13:50Z,_m,b,g,3
,,5,2018-12-19T22:14:00Z,_m,b,g,4
,,5,2018-12-19T22:14:10Z,_m,b,g,5
,,5,2018-12-19T22:14:20Z,_m,b,g,6
#datatype,string,long,dateTime:RFC3339,string,string,string,double
#group,false,false,false,true,true,true,false
#default,_result,,,,,,
,result,table,_time,_measurement,_field,tag1,_value
,,6,2018-12-19T22:13:30Z,_m,b,s,1
,,6,2018-12-19T22:13:40Z,_m,b,s,2
,,6,2018-12-19T22:13:50Z,_m,b,s,3
,,6,2018-12-19T22:14:00Z,_m,b,s,4
,,6,2018-12-19T22:14:10Z,_m,b,s,5
,,6,2018-12-19T22:14:20Z,_m,b,s,6
,,7,2018-12-19T22:13:30Z,_m,b,p,1
,,7,2018-12-19T22:13:40Z,_m,b,p,2
,,7,2018-12-19T22:13:50Z,_m,b,p,3
,,7,2018-12-19T22:14:00Z,_m,b,p,4
,,7,2018-12-19T22:14:10Z,_m,b,p,5
,,7,2018-12-19T22:14:20Z,_m,b,p,6
"
outData =
"
#datatype,string,long,dateTime:RFC3339,dateTime:RFC3339,dateTime:RFC3339,string,string,double,double
#group,false,false,true,true,false,true,true,false,false
#default,_result,,,,,,,,
,result,table,_start,_stop,_time,_measurement,tag0,value_a,value_b
,,0,2018-12-19T00:00:00Z,2018-12-20T00:00:00Z,2018-12-19T22:13:30Z,_m,g,2,1
,,0,2018-12-19T00:00:00Z,2018-12-20T00:00:00Z,2018-12-19T22:13:40Z,_m,g,3,2
,,0,2018-12-19T00:00:00Z,2018-12-20T00:00:00Z,2018-12-19T22:13:50Z,_m,g,4,3
,,0,2018-12-19T00:00:00Z,2018-12-20T00:00:00Z,2018-12-19T22:14:00Z,_m,g,5,4
,,0,2018-12-19T00:00:00Z,2018-12-20T00:00:00Z,2018-12-19T22:14:10Z,_m,g,6,5
,,0,2018-12-19T00:00:00Z,2018-12-20T00:00:00Z,2018-12-19T22:14:20Z,_m,g,7,6
"
join_test_fn = (table=<-) => {
a =
table
|> range(start: 2018-12-19T00:00:00Z, stop: 2018-12-20T00:00:00Z)
|> filter(fn: (r) => r._field == "a")
|> drop(columns: ["_field"])
|> rename(columns: {_value: "value_a"})
b =
table
|> range(start: 2018-12-19T00:00:00Z, stop: 2018-12-20T00:00:00Z)
|> filter(fn: (r) => r._field == "b")
|> drop(columns: ["_field"])
|> rename(columns: {_value: "value_b"})
return experimental.join(left: a, right: b, fn: (left, right) => ({left with value_b: right.value_b}))
}
test experimental_join = () =>
({input: testing.loadStorage(csv: inData), want: testing.loadMem(csv: outData), fn: join_test_fn})
| FLUX | 4 | metrico/flux | stdlib/experimental/join_test.flux | [
"MIT"
] |
package com.baeldung.examples.common;
public interface BookService {
}
| Java | 2 | DBatOWL/tutorials | guice/src/main/java/com/baeldung/examples/common/BookService.java | [
"MIT"
] |
/home/spinalvm/hdl/riscv-compliance/work//I-FENCE.I-01.elf: file format elf32-littleriscv
Disassembly of section .text.init:
80000000 <_start>:
80000000: 00001817 auipc a6,0x1
80000004: 00480813 addi a6,a6,4 # 80001004 <test_A_data>
80000008: 00001897 auipc a7,0x1
8000000c: 00888893 addi a7,a7,8 # 80001010 <codasip_signature_start>
80000010: 00000193 li gp,0
80000014: 00082083 lw ra,0(a6)
80000018: 00482103 lw sp,4(a6)
8000001c: 00001a17 auipc s4,0x1
80000020: fe4a0a13 addi s4,s4,-28 # 80001000 <instr_A_src>
80000024: 00000a97 auipc s5,0x0
80000028: 014a8a93 addi s5,s5,20 # 80000038 <instr_A_dst>
8000002c: 000a2783 lw a5,0(s4)
80000030: 00faa023 sw a5,0(s5)
80000034: 0000100f fence.i
80000038 <instr_A_dst>:
80000038: 00000137 lui sp,0x0
8000003c: 0018a023 sw ra,0(a7)
80000040: 0028a223 sw sp,4(a7)
80000044: 0038a423 sw gp,8(a7)
80000048: 00f8a623 sw a5,12(a7)
8000004c: 00001517 auipc a0,0x1
80000050: fc450513 addi a0,a0,-60 # 80001010 <codasip_signature_start>
80000054: 00001597 auipc a1,0x1
80000058: fcc58593 addi a1,a1,-52 # 80001020 <_end>
8000005c: f0100637 lui a2,0xf0100
80000060: f2c60613 addi a2,a2,-212 # f00fff2c <_end+0x700fef0c>
80000064 <complience_halt_loop>:
80000064: 02b50663 beq a0,a1,80000090 <complience_halt_break>
80000068: 00c52683 lw a3,12(a0)
8000006c: 00d62023 sw a3,0(a2)
80000070: 00852683 lw a3,8(a0)
80000074: 00d62023 sw a3,0(a2)
80000078: 00452683 lw a3,4(a0)
8000007c: 00d62023 sw a3,0(a2)
80000080: 00052683 lw a3,0(a0)
80000084: 00d62023 sw a3,0(a2)
80000088: 01050513 addi a0,a0,16
8000008c: fd9ff06f j 80000064 <complience_halt_loop>
80000090 <complience_halt_break>:
80000090: f0100537 lui a0,0xf0100
80000094: f2050513 addi a0,a0,-224 # f00fff20 <_end+0x700fef00>
80000098: 00052023 sw zero,0(a0)
...
Disassembly of section .data:
80001000 <instr_A_src>:
80001000: 001101b3 add gp,sp,ra
80001004 <test_A_data>:
80001004: 0030 addi a2,sp,8
80001006: 0000 unimp
80001008: 0012 c.slli zero,0x4
8000100a: 0000 unimp
8000100c: 0000 unimp
...
80001010 <codasip_signature_start>:
80001010: ffff 0xffff
80001012: ffff 0xffff
80001014: ffff 0xffff
80001016: ffff 0xffff
80001018: ffff 0xffff
8000101a: ffff 0xffff
8000101c: ffff 0xffff
8000101e: ffff 0xffff
| ObjDump | 3 | cbrune/VexRiscv | src/test/resources/asm/I-FENCE.I-01.elf.objdump | [
"MIT"
] |
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
commentChar="#"
while read -r line
do
firstChar="${line:0:1}"
if [[ "$firstChar" != "$commentChar" ]] && [[ -n "$firstChar" ]]
then
echo -n "$line" | base64
else
echo "$line"
fi
done <blns.txt
| Shell | 4 | suderio/big-list-of-naughty-strings | scripts/texttobase64.sh | [
"MIT"
] |
# These tests are taken from "Mathematica Programming: An Advanced Introduction"
# by Leonid Shifrin.
# pg 26
T Map(AtomQ, [x, Sin(x), 1 + 2 * I, 2 / 3]) == [True, False, True, True]
# pg 27
ClearAll(f,g,h,x,a,b)
a = z * Sin(x+y)
T Head(a) == Times
b = f(g)(h)(x)
T Head(b) == f(g)(h)
T Head(f(g)(h)) == f(g)
T Head(f(g)) == f
ClearAll(f,g,h,x,a,b)
# 1. Mma has Int64 -> Integer, Float64 -> Real, and only Complex and Rational.
# 2. Complex{Int64} is not valid Symata.
# Map(Head, [f,2,Pi,3.14,"abc",2/3,1+I]) == [Symbol,Int64,Symbol,Float64,String,Rational{Int64},Complex{Int64}]
T [Plus(1,2,3,4), Times(1,2,3,4)] == [10,24]
T ReplaceAll( [a,c,d,c], a => b ) == [b,c,d,c]
f(x_) := x^2
T [f(2), f("word"), f(Newton)] == [4,"word"^2, Newton^2]
T DownValues(f) == [HoldPattern(f(x_)) :> (x^2)]
ClearAll(f)
f(x_Integer) := x^2
T Map(Head, [f(2), f("word"), f(Pi), f(Newton)]) == [If(BigIntInput(), BigInt, Int64), f, f, f]
Apply(ClearAll, UserSyms())
# pg 66
tl = Range(1,20,3)
T clt = (x -> Range(5 * x, 5 * x + 4)) % Range(5) ==
[[5,6,7,8,9],[10,11,12,13,14],[15,16,17,18,19],[20,21,22,23,24],[25,26,27,28,29]]
# pg 79
## FIXME: I think Shifrin's example is wrong.
## It should be movingAverage(x_List, m_Integer) := Map(listAverage, neighborLists(x,m))
listAverage(x_List) := (Apply(Plus,x) / Length(x))
neighborLists(x_List, m_Integer) := Partition(x,Length(x) - 2*m, 1)
movingAverage(x_List, m_Integer) := listAverage(neighborLists(x,m))
testlist = Table(Sqrt(i), [i,10])
T movingAverage(testlist,2) == [(1/5)*(3 + 2^(1/2) + 3^(1/2) + 5^(1/2)),(1/5)*(2 + 2^(1/2) + (2^(1/2))*(3^(1/2)) + 3^(1/2) + 5^(1/2)),(1/5)*(2 + (2^(1/2))*(3^(1/2)) + 3^(1/2) + 5^(1/2) + 7^(1/2)),(1/5)*(2 + 2(2^(1/2)) + (2^(1/2))*(3^(1/2)) + 5^(1/2) + 7^(1/2)),(1/5)*(3 + 2(2^(1/2)) + (2^(1/2))*(3^(1/2)) + 5^(1/2) + 7^(1/2)),(1/5)*(3 + 2(2^(1/2)) + (2^(1/2))*(3^(1/2)) + (2^(1/2))*(5^(1/2)) + 7^(1/2))]
# pg 101
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(x,y), h(x,y,z), Cos(y)], f_(x) => f(10)) == [x,Sin(10),x^2,x*y,x + y,g(x,y),h(x,y,z),Cos(y)]
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(x,y), h(x,y,z), Cos(y)], f_(x,z_) => f(10,z)) == [x,Sin(x),100,10y,10 + y,g(10,y),h(x,y,z),Cos(y)]
# pg 102
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), Cos(y)], f_(x,z_) => [ ["f now ", f], ["z now ", z]] ) == [x,Sin(x),[["f now ",Power],["z now ",2]],[["f now ",Times],["z now ",y]],[["f now ",Plus],["z now ",y]],g(y,x),Cos(y)]
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], [ f_(x,z_) => f(10,z), f_(z_,x) => f(z,10)] ) == [x,Sin(x),100,10y,10 + y,g(y,10),h(x,y,z),Cos(y)]
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], [f_(x) => f(10), f_(x,z_) => f(10,z), f_(z_,x) => f(z,10)] ) == [x,Sin(10),100,10y,10 + y,g(y,10),h(x,y,z),Cos(y)]
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], [f_(x) => f(10), f_(x,z_) => f(10,z), f_(z_,x) => f(z,10), f_(x,y_,z_) => f(10,y,z)] ) == [x,Sin(10),100,10y,10 + y,g(y,10),h(10,y,z),Cos(y)]
# pg 103
T ReplaceAll([g(x,y,z), g(p,q), h(x,y)], g(t__) => [t]) == [[x,y,z],[p,q],h(x,y)]
T ReplaceAll([g(x,y,z), h(x,y)], f_(t__) => f(t,a)) == [g(x,y,z),h(x,y),a]
T ReplaceAll([g(x,y,z), h(x,y)], Condition( f_(t__), UnsameQ(f , List )) => f(t,a)) == [g(x,y,z,a),h(x,y,a)]
T Replace([g(x,y,z), h(x,y)], f_(t__) => f(t,a), 1) == [g(x,y,z,a),h(x,y,a)]
# pg 104
p = Condition(f_(t__), UnsameQ(f, List)) :> (ReplaceAll( f(t), x => 10))
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(x,y), h(x,y,z), Cos(y)], p) == [x,Sin(10),100,10y,10 + y,g(10,y),h(10,y,z),Cos(y)]
p1 = Condition(f_(t__), UnsameQ(f, List)) => (ReplaceAll( f(t), x => 10))
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(x,y), h(x,y,z), Cos(y)], p1) == [x,Sin(x),x^2,x*y,x + y,g(x,y),h(x,y,z),Cos(y)]
# pg 107
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], f_Sin :> (ReplaceAll( f, x => 10))) == [x,Sin(10),x^2,x*y,x + y,g(y,x),h(x,y,z),Cos(y)]
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], f_Plus :> (ReplaceAll( f, x => 10))) == [x,Sin(x),x^2,x*y,10 + y,g(y,x),h(x,y,z),Cos(y)]
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], f_Power :> (ReplaceAll( f, x => 10))) == [x,Sin(x),100,x*y,x + y,g(y,x),h(x,y,z),Cos(y)]
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], Sin(x) => Sin(10)) == [x,Sin(10),x^2,x*y,x + y,g(y,x),h(x,y,z),Cos(y)]
# pg 108
# FIXME. raises error
# T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], Plus(t__) :> (ReplaceAll( Plus(t), x => 10)))
# This does work. The example above is meant to show a failed solution
T ReplaceAll( [x, Sin(x), x^2, x*y, x+y, g(y,x), h(x,y,z), Cos(y)], HoldPattern(Plus(t__)) :> (ReplaceAll( Plus(t), x => 10))) == [x,Sin(x),x^2,x*y,10 + y,g(y,x),h(x,y,z),Cos(y)]
# pg 109
T ReplaceAll( [f(x), g(x), f(x,y), Sin(x+y), f(), f(x,y,z) ] , f(t__) :> a * f(t)) == [a*f(x),g(x),a*(f(x,y)),Sin(x + y),f(),a*(f(x,y,z))]
T ReplaceAll( [f(x), g(x), f(x,y), Sin(x+y), f(), f(x,y,z) ] , x_f :> a * x) == [a*f(x),g(x),a*(f(x,y)),Sin(x + y),a*f(),a*(f(x,y,z))]
# FIXME: BlankNullSequence not working completely
# The element f() fails
# T ReplaceAll( [f(x), g(x), f(x,y), Sin(x+y), f(), f(x,y,z) ] , f(t___) :> a * f(t)) == [a*f(x),g(x),a*(f(x,y)),Sin(x + y),a*f(),a*(f(x,y,z))]
# pg 110
testexpr = Expand((1+x)^10)
T testexpr ./ (Plus => List) == [1,10x,45(x^2),120(x^3),210(x^4),252(x^5),210(x^6),120(x^7),45(x^8),10(x^9),x^10]
T testexpr ./ (Plus => List) ./ ( x^(_`EvenQ`) => a) == [1,10x,45a,120(x^3),210a,252(x^5),210a,120(x^7),45a,10(x^9),a]
T testexpr ./ (Plus => List) ./ ( x^(y_`EvenQ`) :> f(x^y)) == [1,10x,45f(x^2),120(x^3),210f(x^4),252(x^5),210f(x^6),120(x^7),45f(x^8),10(x^9),f(x^10)]
# There is some notation on 110 that I don't yet know
# pg 112
# NOTE: we can use => for the first definition, but Julia v0.4 cannot parse this.
frules = [ fact(1) :> 1, fact(n_Integer) :> n * fact(n-1)]
T fact(5) .// frules == 120
# pg 115
T [a, "cat", 3] ./ (x_String :> StringReverse(x)) == [a,"tac",3]
# pg 119
T Range(30) ./ ( Condition( x_, IntegerQ(Sqrt(x))) :> [Sqrt(x)] ) == [[1],2,3,[2],5,6,7,8,[3],10,11,12,13,14,15,[4],17,18,19,20,21,22,23,24,[5],26,27,28,29,30]
# pg 120
T Range(100) ./ (Condition( x_Integer, Not(PrimeQ(x))) :> Sequence() ) == [2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97]
testlist = [[1,14],[2,6],[10,20],[19,14],[6,3],[17,8],[11,13],[19,18],[1,11],[5,14],[19,16],[16,16],[10,10],[16,10],[16,7],[7,19],[17,11],[11,13],[20,12],[6,12]]
exchangerule = Condition( [x_, y_ ] , EvenQ(x) && OddQ(y)) :> [y,x]
T testlist ./ exchangerule == [[1,14],[2,6],[10,20],[19,14],[3,6],[17,8],[11,13],
[19,18],[1,11],[5,14],[19,16],[16,16],[10,10],[16,10],[7,16],[7,19],[17,11],[11,13],[20,12],[6,12]]
# pg 121
T [x, 2, Pi, 3/2, 2/5, 4, Sin(y), 8, Cos(z)] ./ (x_Integer | x_Rational => Sqrt(x)) ==
[x, 2^(1/2), Pi, (2^(-1/2))*(3^(1/2)), (2^(1/2))*(5^(-1/2)), 2, Sin(y), 2(2^(1/2)), Cos(z)]
T [x, 2, Pi , 3/2, 2/5, 4, Sin(y), 8, Cos(z)] ./ ( Condition(x_, Isa(x,Integer) || Isa(x,Rational)) => Sqrt(x)) == [x, 2, Pi , 3/2, 2/5, 4, Sin(y), 8, Cos(z)] ./ ( x_Integer | x_Rational => Sqrt(x))
### FIXME
## ?? What is this
## Pi/2 == Pi/2.
Apply(ClearAll, UserSyms())
| Objective-J | 5 | UnofficialJuliaMirrorSnapshots/Symata.jl-a906b1d5-d016-55c4-aab3-8a20cba0db2a | symata_test/shifrin_test.sj | [
"MIT"
] |
(kicad_pcb (version 20171130) (host pcbnew 5.1.10-88a1d61d58~90~ubuntu20.04.1)
(general
(thickness 1.6)
(drawings 21)
(tracks 74)
(zones 0)
(modules 5)
(nets 17)
)
(page A4)
(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.18)
(trace_clearance 0.127)
(zone_clearance 0.254)
(zone_45_only no)
(trace_min 0.127)
(via_size 0.8)
(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.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(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 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 /nOE)
(net 2 /DIR2)
(net 3 /DIR1)
(net 4 /A4)
(net 5 /A3)
(net 6 /A2)
(net 7 /A1)
(net 8 /VCCA)
(net 9 /DIR4)
(net 10 /DIR3)
(net 11 /B4)
(net 12 /B3)
(net 13 /B2)
(net 14 /B1)
(net 15 /VCCB)
(net 16 GND)
(net_class Default "This is the default net class."
(clearance 0.127)
(trace_width 0.18)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /A1)
(add_net /A2)
(add_net /A3)
(add_net /A4)
(add_net /B1)
(add_net /B2)
(add_net /B3)
(add_net /B4)
(add_net /DIR1)
(add_net /DIR2)
(add_net /DIR3)
(add_net /DIR4)
(add_net /VCCA)
(add_net /VCCB)
(add_net /nOE)
(add_net GND)
)
(module SN74AVC4T774:Texas_Instruments-RSV_R-PUQFN-N16-0-0-0 (layer F.Cu) (tedit 618090B4) (tstamp 6181635B)
(at 82.55 72.39 270)
(path /61B8BFB7)
(fp_text reference U1 (at -1.75 -2.05 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(fp_text value SN74AVC4T774RSVR (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(fp_circle (center -0.6 1.675) (end -0.475 1.675) (layer F.SilkS) (width 0.25))
(fp_line (start 1.3 1.075) (end 1.1 1.075) (layer F.SilkS) (width 0.15))
(fp_line (start -1.3 1.075) (end -1.1 1.075) (layer F.SilkS) (width 0.15))
(fp_line (start 1.3 -1.075) (end 1.1 -1.075) (layer F.SilkS) (width 0.15))
(fp_line (start -1.3 -1.075) (end -1.1 -1.075) (layer F.SilkS) (width 0.15))
(fp_line (start 1.525 1.125) (end 1.525 -1.125) (layer F.CrtYd) (width 0.15))
(fp_line (start -1.525 1.125) (end 1.525 1.125) (layer F.CrtYd) (width 0.15))
(fp_line (start -1.525 -1.125) (end -1.525 1.125) (layer F.CrtYd) (width 0.15))
(fp_line (start 1.525 -1.125) (end -1.525 -1.125) (layer F.CrtYd) (width 0.15))
(fp_line (start 1.525 -1.125) (end 1.525 -1.125) (layer F.CrtYd) (width 0.15))
(fp_line (start 1.3 0.9) (end -1.3 0.9) (layer F.Fab) (width 0.15))
(fp_line (start 1.3 -0.9) (end 1.3 0.9) (layer F.Fab) (width 0.15))
(fp_line (start -1.3 -0.9) (end 1.3 -0.9) (layer F.Fab) (width 0.15))
(fp_line (start -1.3 0.9) (end -1.3 -0.9) (layer F.Fab) (width 0.15))
(pad 16 smd rect (at -1.175 0.6 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 2 /DIR2))
(pad 15 smd rect (at -1.175 0.2 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 3 /DIR1))
(pad 14 smd rect (at -1.175 -0.2 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 8 /VCCA))
(pad 13 smd rect (at -1.175 -0.6 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 15 /VCCB))
(pad 12 smd rect (at -0.6 -0.775 270) (size 0.2 0.65) (layers F.Cu F.Paste F.Mask)
(net 14 /B1))
(pad 11 smd rect (at -0.2 -0.775 270) (size 0.2 0.65) (layers F.Cu F.Paste F.Mask)
(net 13 /B2))
(pad 10 smd rect (at 0.2 -0.775 270) (size 0.2 0.65) (layers F.Cu F.Paste F.Mask)
(net 12 /B3))
(pad 9 smd rect (at 0.6 -0.775 270) (size 0.2 0.65) (layers F.Cu F.Paste F.Mask)
(net 11 /B4))
(pad 8 smd rect (at 1.175 -0.6 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 16 GND))
(pad 7 smd rect (at 1.175 -0.2 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 1 /nOE))
(pad 6 smd rect (at 1.175 0.2 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 9 /DIR4))
(pad 5 smd rect (at 1.175 0.6 270) (size 0.65 0.2) (layers F.Cu F.Paste F.Mask)
(net 10 /DIR3))
(pad 4 smd rect (at 0.6 0.775 270) (size 0.2 0.65) (layers F.Cu F.Paste F.Mask)
(net 4 /A4))
(pad 3 smd rect (at 0.2 0.775 270) (size 0.2 0.65) (layers F.Cu F.Paste F.Mask)
(net 5 /A3))
(pad 2 smd rect (at -0.2 0.775 270) (size 0.2 0.65) (layers F.Cu F.Paste F.Mask)
(net 6 /A2))
(pad 1 smd rect (at -0.6 0.725 270) (size 0.2 0.75) (layers F.Cu F.Paste F.Mask)
(net 7 /A1))
(model SN74AVC4T774.models/Texas_Instruments_-_SN74AVC4T774RSVR.step
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6181686B)
(at 83.82 67.31 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /61B9E689)
(attr smd)
(fp_text reference C2 (at 0 -1.68 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 0.1uF (at 0 1.68 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05))
(pad 2 smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766)
(net 16 GND))
(pad 1 smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766)
(net 15 /VCCB))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 618168AC)
(at 81.28 67.31 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /61B9E2DF)
(attr smd)
(fp_text reference C1 (at 0 -1.68 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 0.1uF (at 0 1.68 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05))
(pad 2 smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766)
(net 16 GND))
(pad 1 smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766)
(net 8 /VCCA))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical (layer B.Cu) (tedit 59FED5CC) (tstamp 61816339)
(at 88.9 63.5 180)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(path /61B90C78)
(fp_text reference J2 (at 0 2.33) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value Conn_01x08_Male (at 0 -20.11) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 -8.89 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -19.05) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -19.05) (end -1.27 -19.05) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -19.05) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.33 -19.11) (end 1.33 -19.11) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -19.11) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -19.11) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.8 1.8) (end -1.8 -19.55) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -19.55) (end 1.8 -19.55) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -19.55) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(pad 8 thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 GND))
(pad 7 thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 /DIR4))
(pad 6 thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 /DIR3))
(pad 5 thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 /B4))
(pad 4 thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 /B3))
(pad 3 thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 /B2))
(pad 2 thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 /B1))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 /VCCB))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical (layer B.Cu) (tedit 59FED5CC) (tstamp 6181631D)
(at 76.2 63.5 180)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(path /61B8EE53)
(fp_text reference J1 (at 0 2.33) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value Conn_01x08_Male (at 0 -20.11) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 -8.89 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -19.05) (layer B.Fab) (width 0.1))
(fp_line (start 1.27 -19.05) (end -1.27 -19.05) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 -19.05) (end -1.27 0.635) (layer B.Fab) (width 0.1))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
(fp_line (start -1.33 -19.11) (end 1.33 -19.11) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end -1.33 -19.11) (layer B.SilkS) (width 0.12))
(fp_line (start 1.33 -1.27) (end 1.33 -19.11) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
(fp_line (start -1.8 1.8) (end -1.8 -19.55) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.8 -19.55) (end 1.8 -19.55) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 -19.55) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
(pad 8 thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 /nOE))
(pad 7 thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 /DIR2))
(pad 6 thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 /DIR1))
(pad 5 thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 /A4))
(pad 4 thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 /A3))
(pad 3 thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 /A2))
(pad 2 thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /A1))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /VCCA))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text "74AVC4T774\nLevel shifter" (at 82.55 78.105 90) (layer F.SilkS) (tstamp 61816E50)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text GND (at 87.63 81.28) (layer F.SilkS) (tstamp 61816E4C)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text DIR4 (at 87.63 78.74) (layer F.SilkS) (tstamp 61816E49)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text DIR3 (at 87.63 76.2) (layer F.SilkS) (tstamp 61816E46)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text B4 (at 87.63 73.66) (layer F.SilkS) (tstamp 61816E43)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text B3 (at 87.63 71.12) (layer F.SilkS) (tstamp 61816E40)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text B2 (at 87.63 68.58) (layer F.SilkS) (tstamp 61816E3D)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text B1 (at 87.63 66.04) (layer F.SilkS) (tstamp 61816E3A)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text VCCB (at 87.63 63.5) (layer F.SilkS) (tstamp 61816E37)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify right))
)
(gr_text ~OE (at 77.47 81.28) (layer F.SilkS) (tstamp 61816E34)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_text DIR2 (at 77.47 78.74) (layer F.SilkS) (tstamp 61816E31)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_text DIR1 (at 77.47 76.2) (layer F.SilkS) (tstamp 61816E2E)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_text A4 (at 77.47 73.66) (layer F.SilkS) (tstamp 61816E2B)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_text A3 (at 77.47 71.12) (layer F.SilkS) (tstamp 61816E1D)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_text A2 (at 77.47 68.58) (layer F.SilkS) (tstamp 61816E1A)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_text A1 (at 77.47 66.04) (layer F.SilkS) (tstamp 61816E17)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_text VCCA (at 77.47 63.5) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_line (start 74.93 82.55) (end 74.93 62.23) (layer Edge.Cuts) (width 0.05) (tstamp 61816AA9))
(gr_line (start 90.17 82.55) (end 74.93 82.55) (layer Edge.Cuts) (width 0.05))
(gr_line (start 90.17 62.23) (end 90.17 82.55) (layer Edge.Cuts) (width 0.05))
(gr_line (start 74.93 62.23) (end 90.17 62.23) (layer Edge.Cuts) (width 0.05))
(via (at 80.772004 79.502004) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 76.2 81.28) (end 78.994008 81.28) (width 0.18) (layer F.Cu) (net 1))
(segment (start 78.994008 81.28) (end 80.772004 79.502004) (width 0.18) (layer F.Cu) (net 1))
(via (at 84.455 77.469998) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 82.75 75.764998) (end 84.455 77.469998) (width 0.18) (layer F.Cu) (net 1))
(segment (start 82.75 73.565) (end 82.75 75.764998) (width 0.18) (layer F.Cu) (net 1))
(segment (start 80.772004 79.502004) (end 82.80401 77.469998) (width 0.18) (layer B.Cu) (net 1))
(segment (start 82.80401 77.469998) (end 84.455 77.469998) (width 0.18) (layer B.Cu) (net 1))
(via (at 80.01 74.676) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 80.01 74.93) (end 80.01 74.676) (width 0.18) (layer F.Cu) (net 2))
(segment (start 76.2 78.74) (end 80.01 74.93) (width 0.18) (layer F.Cu) (net 2))
(segment (start 80.01 71.374) (end 80.264 71.12) (width 0.18) (layer B.Cu) (net 2))
(via (at 80.264 71.12) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 80.01 74.676) (end 80.01 71.374) (width 0.18) (layer B.Cu) (net 2))
(segment (start 81.855 71.12) (end 81.95 71.215) (width 0.18) (layer F.Cu) (net 2))
(segment (start 80.264 71.12) (end 81.855 71.12) (width 0.18) (layer F.Cu) (net 2))
(via (at 79.39299 73.66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(via (at 79.384559 70.826856) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 76.2 76.2) (end 78.74 73.66) (width 0.18) (layer F.Cu) (net 3))
(segment (start 78.74 73.66) (end 79.39299 73.66) (width 0.18) (layer F.Cu) (net 3))
(segment (start 79.39299 73.66) (end 79.39299 70.835287) (width 0.18) (layer B.Cu) (net 3))
(segment (start 79.39299 70.835287) (end 79.384559 70.826856) (width 0.18) (layer B.Cu) (net 3))
(segment (start 82.35 70.71) (end 82.107002 70.467002) (width 0.18) (layer F.Cu) (net 3))
(segment (start 82.35 71.215) (end 82.35 70.71) (width 0.18) (layer F.Cu) (net 3))
(segment (start 82.107002 70.467002) (end 79.744413 70.467002) (width 0.18) (layer F.Cu) (net 3))
(segment (start 79.744413 70.467002) (end 79.384559 70.826856) (width 0.18) (layer F.Cu) (net 3))
(segment (start 76.87 72.99) (end 81.775 72.99) (width 0.18) (layer F.Cu) (net 4))
(segment (start 76.2 73.66) (end 76.87 72.99) (width 0.18) (layer F.Cu) (net 4))
(segment (start 77.67 72.59) (end 81.775 72.59) (width 0.18) (layer F.Cu) (net 5))
(segment (start 76.2 71.12) (end 77.67 72.59) (width 0.18) (layer F.Cu) (net 5))
(segment (start 79.224659 72.19) (end 81.775 72.19) (width 0.18) (layer F.Cu) (net 6))
(segment (start 76.2 69.165341) (end 79.224659 72.19) (width 0.18) (layer F.Cu) (net 6))
(segment (start 76.2 68.58) (end 76.2 69.165341) (width 0.18) (layer F.Cu) (net 6))
(segment (start 77.47 67.31) (end 76.2 66.04) (width 0.18) (layer F.Cu) (net 7))
(segment (start 77.47 70.001162) (end 77.47 67.31) (width 0.18) (layer F.Cu) (net 7))
(segment (start 79.258838 71.79) (end 77.47 70.001162) (width 0.18) (layer F.Cu) (net 7))
(segment (start 81.825 71.79) (end 79.258838 71.79) (width 0.18) (layer F.Cu) (net 7))
(segment (start 76.4325 63.5) (end 76.2 63.5) (width 0.18) (layer F.Cu) (net 8))
(segment (start 81.28 68.3475) (end 76.4325 63.5) (width 0.18) (layer F.Cu) (net 8))
(segment (start 82.03125 69.09875) (end 81.28 68.3475) (width 0.18) (layer F.Cu) (net 8))
(segment (start 82.75 69.8175) (end 82.03125 69.09875) (width 0.18) (layer F.Cu) (net 8))
(segment (start 82.75 71.215) (end 82.75 69.8175) (width 0.18) (layer F.Cu) (net 8))
(segment (start 82.35 77.626834) (end 83.463166 78.74) (width 0.18) (layer F.Cu) (net 9))
(segment (start 82.35 73.565) (end 82.35 77.626834) (width 0.18) (layer F.Cu) (net 9))
(segment (start 83.463166 78.74) (end 87.697919 78.74) (width 0.18) (layer F.Cu) (net 9))
(segment (start 87.697919 78.74) (end 88.9 78.74) (width 0.18) (layer F.Cu) (net 9))
(via (at 80.644996 75.565) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 81.95 73.565) (end 81.95 74.259996) (width 0.18) (layer F.Cu) (net 10))
(segment (start 81.95 74.259996) (end 80.644996 75.565) (width 0.18) (layer F.Cu) (net 10))
(segment (start 84.328 75.565) (end 84.455 75.438) (width 0.18) (layer B.Cu) (net 10))
(segment (start 80.644996 75.565) (end 84.328 75.565) (width 0.18) (layer B.Cu) (net 10))
(segment (start 85.217 76.2) (end 84.455 75.438) (width 0.18) (layer F.Cu) (net 10))
(segment (start 88.9 76.2) (end 85.217 76.2) (width 0.18) (layer F.Cu) (net 10))
(via (at 84.455 75.438) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 88.23 72.99) (end 88.9 73.66) (width 0.18) (layer F.Cu) (net 11))
(segment (start 83.325 72.99) (end 88.23 72.99) (width 0.18) (layer F.Cu) (net 11))
(segment (start 87.43 72.59) (end 88.9 71.12) (width 0.18) (layer F.Cu) (net 12))
(segment (start 83.325 72.59) (end 87.43 72.59) (width 0.18) (layer F.Cu) (net 12))
(segment (start 85.29 72.19) (end 88.9 68.58) (width 0.18) (layer F.Cu) (net 13))
(segment (start 83.325 72.19) (end 85.29 72.19) (width 0.18) (layer F.Cu) (net 13))
(segment (start 88.9 67.010454) (end 88.9 66.04) (width 0.18) (layer F.Cu) (net 14))
(segment (start 84.120454 71.79) (end 88.9 67.010454) (width 0.18) (layer F.Cu) (net 14))
(segment (start 83.325 71.79) (end 84.120454 71.79) (width 0.18) (layer F.Cu) (net 14))
(segment (start 83.15 69.0175) (end 83.82 68.3475) (width 0.18) (layer F.Cu) (net 15))
(segment (start 83.15 71.215) (end 83.15 69.0175) (width 0.18) (layer F.Cu) (net 15))
(segment (start 88.6675 63.5) (end 88.9 63.5) (width 0.18) (layer F.Cu) (net 15))
(segment (start 83.82 68.3475) (end 88.6675 63.5) (width 0.18) (layer F.Cu) (net 15))
(via (at 84.582008 73.914) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 83.15 73.565) (end 84.233008 73.565) (width 0.18) (layer F.Cu) (net 16))
(segment (start 84.233008 73.565) (end 84.582008 73.914) (width 0.18) (layer F.Cu) (net 16))
(via (at 83.82 64.77) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 83.82 66.2725) (end 83.82 64.77) (width 0.18) (layer F.Cu) (net 16))
(via (at 81.28 64.77) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 81.28 66.2725) (end 81.28 64.77) (width 0.18) (layer F.Cu) (net 16))
(zone (net 16) (net_name GND) (layer B.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.254))
(min_thickness 0.127)
(fill yes (arc_segments 32) (thermal_gap 0.254) (thermal_bridge_width 0.3))
(polygon
(pts
(xy 90.17 82.55) (xy 74.93 82.55) (xy 74.93 62.23) (xy 90.17 62.23)
)
)
(filled_polygon
(pts
(xy 87.737094 62.587759) (xy 87.730964 62.65) (xy 87.730964 64.35) (xy 87.737094 64.412241) (xy 87.755249 64.47209)
(xy 87.784731 64.527247) (xy 87.824407 64.575593) (xy 87.872753 64.615269) (xy 87.92791 64.644751) (xy 87.987759 64.662906)
(xy 88.05 64.669036) (xy 89.75 64.669036) (xy 89.812241 64.662906) (xy 89.8275 64.658277) (xy 89.8275 65.326658)
(xy 89.806856 65.295762) (xy 89.644238 65.133144) (xy 89.453019 65.005375) (xy 89.240547 64.917366) (xy 89.014989 64.8725)
(xy 88.785011 64.8725) (xy 88.559453 64.917366) (xy 88.346981 65.005375) (xy 88.155762 65.133144) (xy 87.993144 65.295762)
(xy 87.865375 65.486981) (xy 87.777366 65.699453) (xy 87.7325 65.925011) (xy 87.7325 66.154989) (xy 87.777366 66.380547)
(xy 87.865375 66.593019) (xy 87.993144 66.784238) (xy 88.155762 66.946856) (xy 88.346981 67.074625) (xy 88.559453 67.162634)
(xy 88.785011 67.2075) (xy 89.014989 67.2075) (xy 89.240547 67.162634) (xy 89.453019 67.074625) (xy 89.644238 66.946856)
(xy 89.806856 66.784238) (xy 89.8275 66.753342) (xy 89.8275 67.866658) (xy 89.806856 67.835762) (xy 89.644238 67.673144)
(xy 89.453019 67.545375) (xy 89.240547 67.457366) (xy 89.014989 67.4125) (xy 88.785011 67.4125) (xy 88.559453 67.457366)
(xy 88.346981 67.545375) (xy 88.155762 67.673144) (xy 87.993144 67.835762) (xy 87.865375 68.026981) (xy 87.777366 68.239453)
(xy 87.7325 68.465011) (xy 87.7325 68.694989) (xy 87.777366 68.920547) (xy 87.865375 69.133019) (xy 87.993144 69.324238)
(xy 88.155762 69.486856) (xy 88.346981 69.614625) (xy 88.559453 69.702634) (xy 88.785011 69.7475) (xy 89.014989 69.7475)
(xy 89.240547 69.702634) (xy 89.453019 69.614625) (xy 89.644238 69.486856) (xy 89.806856 69.324238) (xy 89.8275 69.293342)
(xy 89.8275 70.406658) (xy 89.806856 70.375762) (xy 89.644238 70.213144) (xy 89.453019 70.085375) (xy 89.240547 69.997366)
(xy 89.014989 69.9525) (xy 88.785011 69.9525) (xy 88.559453 69.997366) (xy 88.346981 70.085375) (xy 88.155762 70.213144)
(xy 87.993144 70.375762) (xy 87.865375 70.566981) (xy 87.777366 70.779453) (xy 87.7325 71.005011) (xy 87.7325 71.234989)
(xy 87.777366 71.460547) (xy 87.865375 71.673019) (xy 87.993144 71.864238) (xy 88.155762 72.026856) (xy 88.346981 72.154625)
(xy 88.559453 72.242634) (xy 88.785011 72.2875) (xy 89.014989 72.2875) (xy 89.240547 72.242634) (xy 89.453019 72.154625)
(xy 89.644238 72.026856) (xy 89.806856 71.864238) (xy 89.8275 71.833341) (xy 89.827501 72.946659) (xy 89.806856 72.915762)
(xy 89.644238 72.753144) (xy 89.453019 72.625375) (xy 89.240547 72.537366) (xy 89.014989 72.4925) (xy 88.785011 72.4925)
(xy 88.559453 72.537366) (xy 88.346981 72.625375) (xy 88.155762 72.753144) (xy 87.993144 72.915762) (xy 87.865375 73.106981)
(xy 87.777366 73.319453) (xy 87.7325 73.545011) (xy 87.7325 73.774989) (xy 87.777366 74.000547) (xy 87.865375 74.213019)
(xy 87.993144 74.404238) (xy 88.155762 74.566856) (xy 88.346981 74.694625) (xy 88.559453 74.782634) (xy 88.785011 74.8275)
(xy 89.014989 74.8275) (xy 89.240547 74.782634) (xy 89.453019 74.694625) (xy 89.644238 74.566856) (xy 89.806856 74.404238)
(xy 89.827501 74.373341) (xy 89.827501 75.486659) (xy 89.806856 75.455762) (xy 89.644238 75.293144) (xy 89.453019 75.165375)
(xy 89.240547 75.077366) (xy 89.014989 75.0325) (xy 88.785011 75.0325) (xy 88.559453 75.077366) (xy 88.346981 75.165375)
(xy 88.155762 75.293144) (xy 87.993144 75.455762) (xy 87.865375 75.646981) (xy 87.777366 75.859453) (xy 87.7325 76.085011)
(xy 87.7325 76.314989) (xy 87.777366 76.540547) (xy 87.865375 76.753019) (xy 87.993144 76.944238) (xy 88.155762 77.106856)
(xy 88.346981 77.234625) (xy 88.559453 77.322634) (xy 88.785011 77.3675) (xy 89.014989 77.3675) (xy 89.240547 77.322634)
(xy 89.453019 77.234625) (xy 89.644238 77.106856) (xy 89.806856 76.944238) (xy 89.827501 76.913341) (xy 89.827501 78.026659)
(xy 89.806856 77.995762) (xy 89.644238 77.833144) (xy 89.453019 77.705375) (xy 89.240547 77.617366) (xy 89.014989 77.5725)
(xy 88.785011 77.5725) (xy 88.559453 77.617366) (xy 88.346981 77.705375) (xy 88.155762 77.833144) (xy 87.993144 77.995762)
(xy 87.865375 78.186981) (xy 87.777366 78.399453) (xy 87.7325 78.625011) (xy 87.7325 78.854989) (xy 87.777366 79.080547)
(xy 87.865375 79.293019) (xy 87.993144 79.484238) (xy 88.155762 79.646856) (xy 88.346981 79.774625) (xy 88.559453 79.862634)
(xy 88.785011 79.9075) (xy 89.014989 79.9075) (xy 89.240547 79.862634) (xy 89.453019 79.774625) (xy 89.644238 79.646856)
(xy 89.806856 79.484238) (xy 89.827501 79.453341) (xy 89.827501 80.580173) (xy 89.753843 80.483749) (xy 89.582096 80.332472)
(xy 89.384136 80.217608) (xy 89.167571 80.143571) (xy 88.9865 80.19508) (xy 88.9865 81.1935) (xy 89.0065 81.1935)
(xy 89.0065 81.3665) (xy 88.9865 81.3665) (xy 88.9865 81.3865) (xy 88.8135 81.3865) (xy 88.8135 81.3665)
(xy 87.815319 81.3665) (xy 87.763575 81.54757) (xy 87.806439 81.688889) (xy 87.907222 81.894375) (xy 88.046157 82.076251)
(xy 88.195166 82.2075) (xy 76.913342 82.2075) (xy 76.944238 82.186856) (xy 77.106856 82.024238) (xy 77.234625 81.833019)
(xy 77.322634 81.620547) (xy 77.3675 81.394989) (xy 77.3675 81.165011) (xy 77.33715 81.01243) (xy 87.763575 81.01243)
(xy 87.815319 81.1935) (xy 88.8135 81.1935) (xy 88.8135 80.19508) (xy 88.632429 80.143571) (xy 88.415864 80.217608)
(xy 88.217904 80.332472) (xy 88.046157 80.483749) (xy 87.907222 80.665625) (xy 87.806439 80.871111) (xy 87.763575 81.01243)
(xy 77.33715 81.01243) (xy 77.322634 80.939453) (xy 77.234625 80.726981) (xy 77.106856 80.535762) (xy 76.944238 80.373144)
(xy 76.753019 80.245375) (xy 76.540547 80.157366) (xy 76.314989 80.1125) (xy 76.085011 80.1125) (xy 75.859453 80.157366)
(xy 75.646981 80.245375) (xy 75.455762 80.373144) (xy 75.293144 80.535762) (xy 75.2725 80.566658) (xy 75.2725 79.453342)
(xy 75.293144 79.484238) (xy 75.455762 79.646856) (xy 75.646981 79.774625) (xy 75.859453 79.862634) (xy 76.085011 79.9075)
(xy 76.314989 79.9075) (xy 76.540547 79.862634) (xy 76.753019 79.774625) (xy 76.944238 79.646856) (xy 77.106856 79.484238)
(xy 77.142204 79.431336) (xy 80.054504 79.431336) (xy 80.054504 79.572672) (xy 80.082077 79.711291) (xy 80.136163 79.841868)
(xy 80.214685 79.959384) (xy 80.314624 80.059323) (xy 80.43214 80.137845) (xy 80.562717 80.191931) (xy 80.701336 80.219504)
(xy 80.842672 80.219504) (xy 80.981291 80.191931) (xy 81.111868 80.137845) (xy 81.229384 80.059323) (xy 81.329323 79.959384)
(xy 81.407845 79.841868) (xy 81.461931 79.711291) (xy 81.489504 79.572672) (xy 81.489504 79.431336) (xy 81.477801 79.372499)
(xy 82.972802 77.877498) (xy 83.864352 77.877498) (xy 83.897681 77.927378) (xy 83.99762 78.027317) (xy 84.115136 78.105839)
(xy 84.245713 78.159925) (xy 84.384332 78.187498) (xy 84.525668 78.187498) (xy 84.664287 78.159925) (xy 84.794864 78.105839)
(xy 84.91238 78.027317) (xy 85.012319 77.927378) (xy 85.090841 77.809862) (xy 85.144927 77.679285) (xy 85.1725 77.540666)
(xy 85.1725 77.39933) (xy 85.144927 77.260711) (xy 85.090841 77.130134) (xy 85.012319 77.012618) (xy 84.91238 76.912679)
(xy 84.794864 76.834157) (xy 84.664287 76.780071) (xy 84.525668 76.752498) (xy 84.384332 76.752498) (xy 84.245713 76.780071)
(xy 84.115136 76.834157) (xy 83.99762 76.912679) (xy 83.897681 77.012618) (xy 83.864352 77.062498) (xy 82.824021 77.062498)
(xy 82.804009 77.060527) (xy 82.724125 77.068395) (xy 82.700824 77.075464) (xy 82.647312 77.091696) (xy 82.57652 77.129535)
(xy 82.51447 77.180458) (xy 82.501711 77.196005) (xy 80.901509 78.796207) (xy 80.842672 78.784504) (xy 80.701336 78.784504)
(xy 80.562717 78.812077) (xy 80.43214 78.866163) (xy 80.314624 78.944685) (xy 80.214685 79.044624) (xy 80.136163 79.16214)
(xy 80.082077 79.292717) (xy 80.054504 79.431336) (xy 77.142204 79.431336) (xy 77.234625 79.293019) (xy 77.322634 79.080547)
(xy 77.3675 78.854989) (xy 77.3675 78.625011) (xy 77.322634 78.399453) (xy 77.234625 78.186981) (xy 77.106856 77.995762)
(xy 76.944238 77.833144) (xy 76.753019 77.705375) (xy 76.540547 77.617366) (xy 76.314989 77.5725) (xy 76.085011 77.5725)
(xy 75.859453 77.617366) (xy 75.646981 77.705375) (xy 75.455762 77.833144) (xy 75.293144 77.995762) (xy 75.2725 78.026658)
(xy 75.2725 76.913342) (xy 75.293144 76.944238) (xy 75.455762 77.106856) (xy 75.646981 77.234625) (xy 75.859453 77.322634)
(xy 76.085011 77.3675) (xy 76.314989 77.3675) (xy 76.540547 77.322634) (xy 76.753019 77.234625) (xy 76.944238 77.106856)
(xy 77.106856 76.944238) (xy 77.234625 76.753019) (xy 77.322634 76.540547) (xy 77.3675 76.314989) (xy 77.3675 76.085011)
(xy 77.322634 75.859453) (xy 77.234625 75.646981) (xy 77.106856 75.455762) (xy 76.944238 75.293144) (xy 76.753019 75.165375)
(xy 76.540547 75.077366) (xy 76.314989 75.0325) (xy 76.085011 75.0325) (xy 75.859453 75.077366) (xy 75.646981 75.165375)
(xy 75.455762 75.293144) (xy 75.293144 75.455762) (xy 75.2725 75.486658) (xy 75.2725 74.373342) (xy 75.293144 74.404238)
(xy 75.455762 74.566856) (xy 75.646981 74.694625) (xy 75.859453 74.782634) (xy 76.085011 74.8275) (xy 76.314989 74.8275)
(xy 76.540547 74.782634) (xy 76.753019 74.694625) (xy 76.944238 74.566856) (xy 77.106856 74.404238) (xy 77.234625 74.213019)
(xy 77.322634 74.000547) (xy 77.3675 73.774989) (xy 77.3675 73.545011) (xy 77.322634 73.319453) (xy 77.234625 73.106981)
(xy 77.106856 72.915762) (xy 76.944238 72.753144) (xy 76.753019 72.625375) (xy 76.540547 72.537366) (xy 76.314989 72.4925)
(xy 76.085011 72.4925) (xy 75.859453 72.537366) (xy 75.646981 72.625375) (xy 75.455762 72.753144) (xy 75.293144 72.915762)
(xy 75.2725 72.946658) (xy 75.2725 71.833342) (xy 75.293144 71.864238) (xy 75.455762 72.026856) (xy 75.646981 72.154625)
(xy 75.859453 72.242634) (xy 76.085011 72.2875) (xy 76.314989 72.2875) (xy 76.540547 72.242634) (xy 76.753019 72.154625)
(xy 76.944238 72.026856) (xy 77.106856 71.864238) (xy 77.234625 71.673019) (xy 77.322634 71.460547) (xy 77.3675 71.234989)
(xy 77.3675 71.005011) (xy 77.322634 70.779453) (xy 77.312998 70.756188) (xy 78.667059 70.756188) (xy 78.667059 70.897524)
(xy 78.694632 71.036143) (xy 78.748718 71.16672) (xy 78.82724 71.284236) (xy 78.927179 71.384175) (xy 78.985491 71.423138)
(xy 78.98549 73.069352) (xy 78.93561 73.102681) (xy 78.835671 73.20262) (xy 78.757149 73.320136) (xy 78.703063 73.450713)
(xy 78.67549 73.589332) (xy 78.67549 73.730668) (xy 78.703063 73.869287) (xy 78.757149 73.999864) (xy 78.835671 74.11738)
(xy 78.93561 74.217319) (xy 79.053126 74.295841) (xy 79.183703 74.349927) (xy 79.322322 74.3775) (xy 79.357026 74.3775)
(xy 79.320073 74.466713) (xy 79.2925 74.605332) (xy 79.2925 74.746668) (xy 79.320073 74.885287) (xy 79.374159 75.015864)
(xy 79.452681 75.13338) (xy 79.55262 75.233319) (xy 79.670136 75.311841) (xy 79.800713 75.365927) (xy 79.939332 75.3935)
(xy 79.947553 75.3935) (xy 79.927496 75.494332) (xy 79.927496 75.635668) (xy 79.955069 75.774287) (xy 80.009155 75.904864)
(xy 80.087677 76.02238) (xy 80.187616 76.122319) (xy 80.305132 76.200841) (xy 80.435709 76.254927) (xy 80.574328 76.2825)
(xy 80.715664 76.2825) (xy 80.854283 76.254927) (xy 80.98486 76.200841) (xy 81.102376 76.122319) (xy 81.202315 76.02238)
(xy 81.235644 75.9725) (xy 83.974801 75.9725) (xy 83.99762 75.995319) (xy 84.115136 76.073841) (xy 84.245713 76.127927)
(xy 84.384332 76.1555) (xy 84.525668 76.1555) (xy 84.664287 76.127927) (xy 84.794864 76.073841) (xy 84.91238 75.995319)
(xy 85.012319 75.89538) (xy 85.090841 75.777864) (xy 85.144927 75.647287) (xy 85.1725 75.508668) (xy 85.1725 75.367332)
(xy 85.144927 75.228713) (xy 85.090841 75.098136) (xy 85.012319 74.98062) (xy 84.91238 74.880681) (xy 84.794864 74.802159)
(xy 84.664287 74.748073) (xy 84.525668 74.7205) (xy 84.384332 74.7205) (xy 84.245713 74.748073) (xy 84.115136 74.802159)
(xy 83.99762 74.880681) (xy 83.897681 74.98062) (xy 83.819159 75.098136) (xy 83.79457 75.1575) (xy 81.235644 75.1575)
(xy 81.202315 75.10762) (xy 81.102376 75.007681) (xy 80.98486 74.929159) (xy 80.854283 74.875073) (xy 80.715664 74.8475)
(xy 80.707443 74.8475) (xy 80.7275 74.746668) (xy 80.7275 74.605332) (xy 80.699927 74.466713) (xy 80.645841 74.336136)
(xy 80.567319 74.21862) (xy 80.46738 74.118681) (xy 80.4175 74.085352) (xy 80.4175 71.821024) (xy 80.473287 71.809927)
(xy 80.603864 71.755841) (xy 80.72138 71.677319) (xy 80.821319 71.57738) (xy 80.899841 71.459864) (xy 80.953927 71.329287)
(xy 80.9815 71.190668) (xy 80.9815 71.049332) (xy 80.953927 70.910713) (xy 80.899841 70.780136) (xy 80.821319 70.66262)
(xy 80.72138 70.562681) (xy 80.603864 70.484159) (xy 80.473287 70.430073) (xy 80.334668 70.4025) (xy 80.193332 70.4025)
(xy 80.054713 70.430073) (xy 79.99805 70.453543) (xy 79.941878 70.369476) (xy 79.841939 70.269537) (xy 79.724423 70.191015)
(xy 79.593846 70.136929) (xy 79.455227 70.109356) (xy 79.313891 70.109356) (xy 79.175272 70.136929) (xy 79.044695 70.191015)
(xy 78.927179 70.269537) (xy 78.82724 70.369476) (xy 78.748718 70.486992) (xy 78.694632 70.617569) (xy 78.667059 70.756188)
(xy 77.312998 70.756188) (xy 77.234625 70.566981) (xy 77.106856 70.375762) (xy 76.944238 70.213144) (xy 76.753019 70.085375)
(xy 76.540547 69.997366) (xy 76.314989 69.9525) (xy 76.085011 69.9525) (xy 75.859453 69.997366) (xy 75.646981 70.085375)
(xy 75.455762 70.213144) (xy 75.293144 70.375762) (xy 75.2725 70.406658) (xy 75.2725 69.293342) (xy 75.293144 69.324238)
(xy 75.455762 69.486856) (xy 75.646981 69.614625) (xy 75.859453 69.702634) (xy 76.085011 69.7475) (xy 76.314989 69.7475)
(xy 76.540547 69.702634) (xy 76.753019 69.614625) (xy 76.944238 69.486856) (xy 77.106856 69.324238) (xy 77.234625 69.133019)
(xy 77.322634 68.920547) (xy 77.3675 68.694989) (xy 77.3675 68.465011) (xy 77.322634 68.239453) (xy 77.234625 68.026981)
(xy 77.106856 67.835762) (xy 76.944238 67.673144) (xy 76.753019 67.545375) (xy 76.540547 67.457366) (xy 76.314989 67.4125)
(xy 76.085011 67.4125) (xy 75.859453 67.457366) (xy 75.646981 67.545375) (xy 75.455762 67.673144) (xy 75.293144 67.835762)
(xy 75.2725 67.866658) (xy 75.2725 66.753342) (xy 75.293144 66.784238) (xy 75.455762 66.946856) (xy 75.646981 67.074625)
(xy 75.859453 67.162634) (xy 76.085011 67.2075) (xy 76.314989 67.2075) (xy 76.540547 67.162634) (xy 76.753019 67.074625)
(xy 76.944238 66.946856) (xy 77.106856 66.784238) (xy 77.234625 66.593019) (xy 77.322634 66.380547) (xy 77.3675 66.154989)
(xy 77.3675 65.925011) (xy 77.322634 65.699453) (xy 77.234625 65.486981) (xy 77.106856 65.295762) (xy 76.944238 65.133144)
(xy 76.753019 65.005375) (xy 76.540547 64.917366) (xy 76.314989 64.8725) (xy 76.085011 64.8725) (xy 75.859453 64.917366)
(xy 75.646981 65.005375) (xy 75.455762 65.133144) (xy 75.293144 65.295762) (xy 75.2725 65.326658) (xy 75.2725 64.658277)
(xy 75.287759 64.662906) (xy 75.35 64.669036) (xy 77.05 64.669036) (xy 77.112241 64.662906) (xy 77.17209 64.644751)
(xy 77.227247 64.615269) (xy 77.275593 64.575593) (xy 77.315269 64.527247) (xy 77.344751 64.47209) (xy 77.362906 64.412241)
(xy 77.369036 64.35) (xy 77.369036 62.65) (xy 77.362906 62.587759) (xy 77.358277 62.5725) (xy 87.741723 62.5725)
)
)
)
)
| KiCad | 3 | ccwanggl/smartknob | electronics/LevelShifterBreakout/LevelShifterBreakout.kicad_pcb | [
"Apache-2.0"
] |
static const uint32_t in_f32[256] = {
0x3e7b9a11, 0x3f430e64, 0x3f7b61f8, 0x3f3e1a0a,
0x3f10ac73, 0x3f4e4019, 0x3ecb6c1a, 0x3eb9d756,
0x3edf6a04, 0x3e48703f, 0x3f0bd6e4, 0x3f338f5b,
0x3f2ccba0, 0x3f7eed8c, 0x3f40b36d, 0x3f432aa2,
0x3f3efcd1, 0x3ea25922, 0x3f14060b, 0x3f1de431,
0x3f317a8d, 0x3ea3f0f8, 0x3f6b2154, 0x3ea3518a,
0x3f0f769f, 0x3f373d6b, 0x3ea68f81, 0x3f601e8c,
0x3f78b988, 0x3f52a5df, 0x3f15dd31, 0x3f4988ae,
0x3e9837b4, 0x3f348f53, 0x3d8c8987, 0x3de61780,
0x3cfebf74, 0x3f40a628, 0x3f54f32d, 0x3f22172a,
0x3eb64b7b, 0x3ea6ee22, 0x3f1d5d84, 0x3e044e85,
0x3ec0d710, 0x3da19337, 0x3e50157d, 0x3f0ddfcc,
0x3ea2fa79, 0x3f1a6b2c, 0x3f7bf622, 0x3d293569,
0x3f793192, 0x3f79e1e6, 0x3e133ea4, 0x3ee4d509,
0x3f60dd33, 0x3e4da42e, 0x3f7f7220, 0x3f06ef6b,
0x3d44b6c3, 0x3f27a083, 0x3f4a011d, 0x3f5f3bb8,
0x3f246fea, 0x3f6d9eee, 0x3f3366da, 0x3ec6b168,
0x3f1baf3f, 0x3f123fde, 0x3f640d40, 0x3f285823,
0x3f69065c, 0x3f2a688d, 0x3f163881, 0x3f02f4c1,
0x3d5b0d1c, 0x3f26cf42, 0x3baad7d3, 0x3f310aff,
0x3f7ae54d, 0x3eaee2eb, 0x3f649a9b, 0x3f7899e8,
0x3e14a802, 0x3df24408, 0x3e8b7772, 0x3f03ec48,
0x3f0f1e48, 0x3f2cf012, 0x3e1ad83d, 0x3ebeb070,
0x3f39cb89, 0x3e0f4811, 0x3f4a5631, 0x3debe2e7,
0x3f3b9597, 0x3f13db6d, 0x3f2f2b0a, 0x3f27e4f3,
0x3d04450a, 0x3f014ebb, 0x3f2f04aa, 0x3f77ed6b,
0x3eab5ae1, 0x3f3e37b0, 0x3f59b5fe, 0x3de5e5a3,
0x3de3b577, 0x3f201a9b, 0x3f6b9e07, 0x3f691c38,
0x3f5b9f86, 0x3cdcd883, 0x3f6d8069, 0x3f27085a,
0x3db6301f, 0x3f56c40d, 0x3ec3d730, 0x3f79473c,
0x3f7e9340, 0x3f6a7909, 0x3f5bc938, 0x3f19eb93,
0x3eb3694e, 0x3d73e79b, 0x3f4756ef, 0x3c3dc003,
0x3f6ab939, 0x3ed84f90, 0x3f065672, 0x3f7616bf,
0x3f568ecb, 0x3f22a281, 0x3f798544, 0x3e64d2de,
0x3f0399d9, 0x3ed97b16, 0x3f2a617a, 0x3e89ddcd,
0x3f5980f2, 0x3f1807f7, 0x3e2f1399, 0x3e29f0da,
0x3f7b9281, 0x3f18ae83, 0x3ee60acc, 0x3f12640c,
0x3e82ea80, 0x3e9fd222, 0x3f19ef56, 0x3f4c626d,
0x3f005ff0, 0x3b8c6612, 0x3f7afd64, 0x3e22c7f8,
0x3e44d9dc, 0x3da9476f, 0x3e093299, 0x3f73bea9,
0x3f093dc1, 0x3f6c0ca4, 0x3e071409, 0x3e0c9b5c,
0x3f666e66, 0x3f7d715b, 0x3eb8482d, 0x3ebcbb5e,
0x3f75c74f, 0x3e1a0659, 0x3ef79d1d, 0x3ea20474,
0x3f6f244f, 0x3f65bfe5, 0x3e8e9d43, 0x3dac62f5,
0x3e73a68b, 0x3eb14bb9, 0x3f71d474, 0x3f73192c,
0x3df514f1, 0x3f0eb020, 0x3e1802e3, 0x3e40fc53,
0x3f6dcbf1, 0x3f3fe92d, 0x3f3088fc, 0x3e7908f9,
0x3e9f0e3f, 0x3f59caaa, 0x3f71fc6b, 0x3e03fcb0,
0x3e8d795a, 0x3ed6d370, 0x3e3d741b, 0x3f0665c5,
0x3e03b8dc, 0x3ec36989, 0x3e41f5bc, 0x3f2c13bd,
0x3f1055c4, 0x3e0ac5c1, 0x3f7ecb1f, 0x3f5f1c86,
0x3f0c4517, 0x3bc9b4af, 0x3f4698a8, 0x3e60d888,
0x3f4d360b, 0x3f7a6908, 0x3ea9e568, 0x3f542a35,
0x3f571e54, 0x3f559ed1, 0x3e477e0f, 0x3dc2ae2c,
0x3f095f6d, 0x3f6d6176, 0x3e871cd8, 0x3ef343da,
0x3f162322, 0x3e979c68, 0x3f3b8387, 0x3e6b90ec,
0x3f330b5d, 0x3f099ae2, 0x3f14ae97, 0x3f78e53d,
0x3eca02ea, 0x3ec226f4, 0x3ec53384, 0x3f0092e6,
0x3e0aa741, 0x3e30a639, 0x3ebfcd1f, 0x3f47ec72,
0x3dd181e3, 0x3f501d2e, 0x3ec170d6, 0x3f350dac,
0x3e84a472, 0x3f3823eb, 0x3f394286, 0x3d0ea782,
0x3ec06bda, 0x3f737deb, 0x3f50494f, 0x3ec40d59,
0x3dcaa663, 0x3f4676c9, 0x3ea46e6a, 0x3f1dc12a,
0x3efe5066, 0x3f6cc34a, 0x3f228d22, 0x3f800000
};
static const uint32_t in_weighted_sum_val[50] = {
0x3ef59039, 0x3f4bf0c0, 0x3f281f89, 0x3d203758,
0x3dd67aaa, 0x3f056b52, 0x3e088a37, 0x3f52369c,
0x3d3ad5fc, 0x3f2c7b41, 0x3f1cf2ea, 0x3f40c0c5,
0x3e86e548, 0x3e567964, 0x3e0b6eb2, 0x3e570544,
0x3e982de8, 0x3f26609f, 0x3f71c824, 0x3d9e7eeb,
0x3d4f374e, 0x3f361d6d, 0x3f43dc1a, 0x3e848bcc,
0x3e233709, 0x3ee39772, 0x3e65d216, 0x3e8c78d9,
0x3e4e7014, 0x3e04412c, 0x3f24dfc4, 0x3e888dc3,
0x3c77dec8, 0x3f04bd53, 0x3f4982ef, 0x3f785484,
0x3e5322d4, 0x3e923b13, 0x3f1a7fdd, 0x3f20e801,
0x3f036403, 0x3e529443, 0x3f43e1f5, 0x3e8679c1,
0x3f1ff6cd, 0x3efff938, 0x3ef8c3c2, 0x3f3bf153,
0x3f2d605f, 0x3b88b868
};
static const uint32_t in_weighted_sum_coeff[50] = {
0x3f5c365d, 0x3ef5bcf3, 0x3f07c2f1, 0x3ec77fde,
0x3f486f4c, 0x3f3b14d9, 0x3edf92dd, 0x3e040f3f,
0x3da6d898, 0x3f64fc4b, 0x3ea6942e, 0x3ea8d19f,
0x3f42aa22, 0x3f7af090, 0x3ea61c74, 0x3f16d69c,
0x3f22d66d, 0x3f3eb358, 0x3edcc17a, 0x3d5cac41,
0x3f6752c8, 0x3f30434e, 0x3f67dc39, 0x3f1f5f4d,
0x3f55019b, 0x3e8e78c4, 0x3f1dc570, 0x3ea3619d,
0x3e16932c, 0x3debb877, 0x3d04efe4, 0x3dda8cae,
0x3f175d01, 0x3e613eca, 0x3f792ff1, 0x3f05cb9e,
0x3efd21eb, 0x3f52d9bb, 0x3f635d8c, 0x3f3d78cc,
0x3f75ca43, 0x3ed94cbd, 0x3f18cc07, 0x3f71cf57,
0x3f1999e0, 0x3f3d7b64, 0x3eff331b, 0x3f09a083,
0x3ec65238, 0x3e5daacc
};
static const uint32_t in_sort[11] = {
0x3e8b2005, 0xbe79828d, 0x3ec60533, 0xbecd84a4,
0x3edef701, 0xbf020833, 0x3eae45f9, 0xbe23a0cf,
0x3f5b587c, 0xbe77e106, 0xbf800000
};
static const uint32_t in_sort_bitonic_16[16] = {
0xbce9c2a9, 0xbe49aaa6, 0x3ed24897, 0x3ebe06f3,
0xbde7297e, 0x3f0f81a4, 0x3daa5ff8, 0xbd74b8b1,
0xbeb7404b, 0xbe0c8154, 0xbf800000, 0xbf1ac9af,
0xbe7ebe48, 0xbe96e2f3, 0x3ea8d3ec, 0x3dcccc3f
};
static const uint32_t in_sort_bitonic_32[32] = {
0x3de7ca48, 0x3e841924, 0xbf0ec9ee, 0xbd9234a0,
0x3e57751c, 0x3d8ce6cb, 0xbed8c7f0, 0xbd2a8ea8,
0x3e6e514e, 0xbefd1a2a, 0xbe972d7a, 0xbf800000,
0x3dd11d1c, 0xbe3c1689, 0xbee8d12a, 0x3dc3dd48,
0x3ece8f07, 0xbe4e84cb, 0x3e0db75f, 0x3cc96593,
0xbf012b00, 0xbefeaa91, 0x3e506a2c, 0x3eb5a5a2,
0xbf1abb67, 0x3e601f55, 0xbdf605d0, 0xbe81fc15,
0xbf043534, 0x3d446123, 0xbf068a30, 0x3f2a6bfa
};
static const uint32_t in_sort_const[16] = {
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000
};
static const q31_t ref_q31[256] = {
0x1F734226, 0x618731DC, 0x7DB0FBEB, 0x5F0D0508,
0x48563944, 0x67200CAB, 0x32DB0685, 0x2E75D568,
0x37DA80F9, 0x190E07DD, 0x45EB71ED, 0x59C7AD50,
0x5665CFE0, 0x7F76C5C5, 0x6059B69C, 0x61955104,
0x5F7E6885, 0x28964887, 0x4A03057F, 0x4EF21858,
0x58BD469F, 0x28FC3DF2, 0x7590A9D6, 0x28D4628A,
0x47BB4F53, 0x5B9EB56F, 0x29A3E03E, 0x700F45D1,
0x7C5CC410, 0x6952EF47, 0x4AEE9857, 0x64C45711,
0x260DECE5, 0x5A47A942, 0x08C89876, 0x0E6177FF,
0x03FAFDD1, 0x605313C2, 0x6A79965A, 0x510B9535,
0x2D92DEDE, 0x29BB8892, 0x4EAEC208, 0x1089D0AD,
0x3035C40F, 0x0A193378, 0x1A02AF95, 0x46EFE5C6,
0x28BE9E52, 0x4D3595D9, 0x7DFB1100, 0x0549AB47,
0x7C98C90C, 0x7CF0F32D, 0x1267D482, 0x39354238,
0x706E996D, 0x19B485B7, 0x7FB91033, 0x4377B598,
0x0625B617, 0x53D04177, 0x65008E8E, 0x6F9DDC13,
0x5237F50F, 0x76CF771D, 0x59B36D2E, 0x31AC5A11,
0x4DD79FB6, 0x491FEECD, 0x7206A018, 0x542C1144,
0x74832DFD, 0x55344642, 0x4B1C40A4, 0x417A6061,
0x06D868E0, 0x5367A0C9, 0x00AAD7D3, 0x58857FBC,
0x7D72A6B1, 0x2BB8BABD, 0x724D4DB7, 0x7C4CF3D4,
0x12950030, 0x0F244080, 0x22DDDC99, 0x41F62434,
0x478F2409, 0x567808C9, 0x135B079F, 0x2FAC1C0E,
0x5CE5C4AC, 0x11E90218, 0x652B18A6, 0x0EBE2E6E,
0x5DCACB8B, 0x49EDB6B6, 0x579584EF, 0x53F2794B,
0x04222852, 0x40A75D90, 0x5782552A, 0x7BF6B5AC,
0x2AD6B82D, 0x5F1BD83D, 0x6CDAFF3C, 0x0E5E5A38,
0x0E3B576E, 0x500D4D67, 0x75CF0379, 0x748E1C24,
0x6DCFC2C9, 0x0373620B, 0x76C034C0, 0x53842D09,
0x0B6301EB, 0x6B620642, 0x30F5CC0B, 0x7CA39E36,
0x7F49A009, 0x753C844A, 0x6DE49BEB, 0x4CF5C95D,
0x2CDA5375, 0x079F3CD5, 0x63AB778A, 0x017B8006,
0x755C9C83, 0x3613E404, 0x432B38DB, 0x7B0B5F84,
0x6B47654B, 0x5151405B, 0x7CC2A1E3, 0x1C9A5BCE,
0x41CCECBF, 0x365EC596, 0x5530BCF6, 0x22777328,
0x6CC078F9, 0x4C03FB6B, 0x15E27321, 0x153E1B33,
0x7DC9407B, 0x4C5741BE, 0x3982B31C, 0x493205F7,
0x20BA9FF5, 0x27F48878, 0x4CF7AB2C, 0x66313680,
0x402FF7E3, 0x008C6612, 0x7D7EB1D0, 0x1458FF0D,
0x189B3B74, 0x0A9476F8, 0x11265313, 0x79DF544E,
0x449EE08B, 0x76065204, 0x10E28120, 0x11936B78,
0x7337331B, 0x7EB8AD6A, 0x2E120B25, 0x2F2ED77A,
0x7AE3A75F, 0x1340CB2B, 0x3DE74739, 0x28811D15,
0x77922783, 0x72DFF27A, 0x23A750C8, 0x0AC62F50,
0x1E74D15D, 0x2C52EE5F, 0x78EA39F5, 0x798C95E8,
0x0F514F0E, 0x47580FD2, 0x13005C5E, 0x181F8A54,
0x76E5F877, 0x5FF4969A, 0x58447DF7, 0x1F211F1A,
0x27C38FC4, 0x6CE554FA, 0x78FE359E, 0x107F9609,
0x235E5687, 0x35B4DBF3, 0x17AE8359, 0x4332E29A,
0x10771B86, 0x30DA6245, 0x183EB776, 0x5609DE89,
0x482AE202, 0x1158B828, 0x7F658F85, 0x6F8E433B,
0x46228BBC, 0x00C9B4AF, 0x634C540C, 0x1C1B1105,
0x669B0540, 0x7D3483F9, 0x2A7959F1, 0x6A151A6E,
0x6B8F29DF, 0x6ACF688C, 0x18EFC1D1, 0x0C2AE2BA,
0x44AFB68A, 0x76B0BB16, 0x21C735EC, 0x3CD0F666,
0x4B1190CF, 0x25E719F0, 0x5DC1C380, 0x1D721D77,
0x5985AE6D, 0x44CD710A, 0x4A574B63, 0x7C729EA3,
0x3280BA6D, 0x3089BD1E, 0x314CE10F, 0x4049731A,
0x1154E82F, 0x1614C716, 0x2FF347BF, 0x63F638F3,
0x0D181E32, 0x680E9733, 0x305C3594, 0x5A86D5EF,
0x21291C9D, 0x5C11F548, 0x5CA142CB, 0x04753C0F,
0x301AF688, 0x79BEF5A5, 0x6824A746, 0x31035622,
0x0CAA662F, 0x633B6485, 0x291B9A63, 0x4EE094CA,
0x3F94197C, 0x7661A4D6, 0x514690FE, 0x7FFFFFFF
};
static const q15_t ref_q15[256] = {
0x1F73, 0x6187, 0x7DB1, 0x5F0D, 0x4856, 0x6720, 0x32DB, 0x2E76,
0x37DB, 0x190E, 0x45EB, 0x59C8, 0x5666, 0x7F77, 0x605A, 0x6195,
0x5F7E, 0x2896, 0x4A03, 0x4EF2, 0x58BD, 0x28FC, 0x7591, 0x28D4,
0x47BB, 0x5B9F, 0x29A4, 0x700F, 0x7C5D, 0x6953, 0x4AEF, 0x64C4,
0x260E, 0x5A48, 0x08C9, 0x0E61, 0x03FB, 0x6053, 0x6A7A, 0x510C,
0x2D93, 0x29BC, 0x4EAF, 0x108A, 0x3036, 0x0A19, 0x1A03, 0x46F0,
0x28BF, 0x4D36, 0x7DFB, 0x054A, 0x7C99, 0x7CF1, 0x1268, 0x3935,
0x706F, 0x19B5, 0x7FB9, 0x4378, 0x0626, 0x53D0, 0x6501, 0x6F9E,
0x5238, 0x76CF, 0x59B3, 0x31AC, 0x4DD8, 0x4920, 0x7207, 0x542C,
0x7483, 0x5534, 0x4B1C, 0x417A, 0x06D8, 0x5368, 0x00AB, 0x5885,
0x7D73, 0x2BB9, 0x724D, 0x7C4D, 0x1295, 0x0F24, 0x22DE, 0x41F6,
0x478F, 0x5678, 0x135B, 0x2FAC, 0x5CE6, 0x11E9, 0x652B, 0x0EBE,
0x5DCB, 0x49EE, 0x5796, 0x53F2, 0x0422, 0x40A7, 0x5782, 0x7BF7,
0x2AD7, 0x5F1C, 0x6CDB, 0x0E5E, 0x0E3B, 0x500D, 0x75CF, 0x748E,
0x6DD0, 0x0373, 0x76C0, 0x5384, 0x0B63, 0x6B62, 0x30F6, 0x7CA4,
0x7F4A, 0x753D, 0x6DE5, 0x4CF6, 0x2CDA, 0x079F, 0x63AB, 0x017C,
0x755D, 0x3614, 0x432B, 0x7B0B, 0x6B47, 0x5151, 0x7CC3, 0x1C9A,
0x41CD, 0x365F, 0x5531, 0x2277, 0x6CC0, 0x4C04, 0x15E2, 0x153E,
0x7DC9, 0x4C57, 0x3983, 0x4932, 0x20BB, 0x27F5, 0x4CF8, 0x6631,
0x4030, 0x008C, 0x7D7F, 0x1459, 0x189B, 0x0A94, 0x1126, 0x79DF,
0x449F, 0x7606, 0x10E3, 0x1193, 0x7337, 0x7EB9, 0x2E12, 0x2F2F,
0x7AE4, 0x1341, 0x3DE7, 0x2881, 0x7792, 0x72E0, 0x23A7, 0x0AC6,
0x1E75, 0x2C53, 0x78EA, 0x798D, 0x0F51, 0x4758, 0x1300, 0x1820,
0x76E6, 0x5FF5, 0x5844, 0x1F21, 0x27C4, 0x6CE5, 0x78FE, 0x1080,
0x235E, 0x35B5, 0x17AF, 0x4333, 0x1077, 0x30DA, 0x183F, 0x560A,
0x482B, 0x1159, 0x7F66, 0x6F8E, 0x4623, 0x00CA, 0x634C, 0x1C1B,
0x669B, 0x7D35, 0x2A79, 0x6A15, 0x6B8F, 0x6ACF, 0x18F0, 0x0C2B,
0x44B0, 0x76B1, 0x21C7, 0x3CD1, 0x4B12, 0x25E7, 0x5DC2, 0x1D72,
0x5986, 0x44CD, 0x4A57, 0x7C73, 0x3281, 0x308A, 0x314D, 0x4049,
0x1155, 0x1615, 0x2FF3, 0x63F6, 0x0D18, 0x680F, 0x305C, 0x5A87,
0x2129, 0x5C12, 0x5CA1, 0x0475, 0x301B, 0x79BF, 0x6825, 0x3103,
0x0CAA, 0x633B, 0x291C, 0x4EE1, 0x3F94, 0x7662, 0x5147, 0x7FFF
};
static const q7_t ref_q7[256] = {
0x1F, 0x62, 0x7E, 0x5F, 0x48, 0x67, 0x33, 0x2E,
0x38, 0x19, 0x46, 0x5A, 0x56, 0x7F, 0x60, 0x62,
0x5F, 0x29, 0x4A, 0x4F, 0x59, 0x29, 0x76, 0x29,
0x48, 0x5C, 0x2A, 0x70, 0x7C, 0x69, 0x4B, 0x65,
0x26, 0x5A, 0x09, 0x0E, 0x04, 0x60, 0x6A, 0x51,
0x2E, 0x2A, 0x4F, 0x11, 0x30, 0x0A, 0x1A, 0x47,
0x29, 0x4D, 0x7E, 0x05, 0x7D, 0x7D, 0x12, 0x39,
0x70, 0x1A, 0x7F, 0x43, 0x06, 0x54, 0x65, 0x70,
0x52, 0x77, 0x5A, 0x32, 0x4E, 0x49, 0x72, 0x54,
0x75, 0x55, 0x4B, 0x41, 0x07, 0x53, 0x01, 0x59,
0x7D, 0x2C, 0x72, 0x7C, 0x13, 0x0F, 0x23, 0x42,
0x48, 0x56, 0x13, 0x30, 0x5D, 0x12, 0x65, 0x0F,
0x5E, 0x4A, 0x58, 0x54, 0x04, 0x41, 0x58, 0x7C,
0x2B, 0x5F, 0x6D, 0x0E, 0x0E, 0x50, 0x76, 0x75,
0x6E, 0x03, 0x77, 0x54, 0x0B, 0x6B, 0x31, 0x7D,
0x7F, 0x75, 0x6E, 0x4D, 0x2D, 0x08, 0x64, 0x01,
0x75, 0x36, 0x43, 0x7B, 0x6B, 0x51, 0x7D, 0x1D,
0x42, 0x36, 0x55, 0x22, 0x6D, 0x4C, 0x16, 0x15,
0x7E, 0x4C, 0x3A, 0x49, 0x21, 0x28, 0x4D, 0x66,
0x40, 0x01, 0x7D, 0x14, 0x19, 0x0B, 0x11, 0x7A,
0x45, 0x76, 0x11, 0x12, 0x73, 0x7F, 0x2E, 0x2F,
0x7B, 0x13, 0x3E, 0x29, 0x78, 0x73, 0x24, 0x0B,
0x1E, 0x2C, 0x79, 0x7A, 0x0F, 0x47, 0x13, 0x18,
0x77, 0x60, 0x58, 0x1F, 0x28, 0x6D, 0x79, 0x10,
0x23, 0x36, 0x18, 0x43, 0x10, 0x31, 0x18, 0x56,
0x48, 0x11, 0x7F, 0x70, 0x46, 0x01, 0x63, 0x1C,
0x67, 0x7D, 0x2A, 0x6A, 0x6C, 0x6B, 0x19, 0x0C,
0x45, 0x77, 0x22, 0x3D, 0x4B, 0x26, 0x5E, 0x1D,
0x5A, 0x45, 0x4A, 0x7C, 0x33, 0x31, 0x31, 0x40,
0x11, 0x16, 0x30, 0x64, 0x0D, 0x68, 0x30, 0x5B,
0x21, 0x5C, 0x5D, 0x04, 0x30, 0x7A, 0x68, 0x31,
0x0D, 0x63, 0x29, 0x4F, 0x40, 0x76, 0x51, 0x7F
};
static const uint32_t ref_weighted_sum[3] = {
0x3f1c763e, 0x3ed2a7ac, 0x3eeb33c8
};
static const uint32_t ref_sort[11] = {
0xbf800000, 0xbf020833, 0xbecd84a4, 0xbe79828d,
0xbe77e106, 0xbe23a0cf, 0x3e8b2005, 0x3eae45f9,
0x3ec60533, 0x3edef701, 0x3f5b587c
};
static const uint32_t ref_sort_bitonic_16[16] = {
0xbf800000, 0xbf1ac9af, 0xbeb7404b, 0xbe96e2f3,
0xbe7ebe48, 0xbe49aaa6, 0xbe0c8154, 0xbde7297e,
0xbd74b8b1, 0xbce9c2a9, 0x3daa5ff8, 0x3dcccc3f,
0x3ea8d3ec, 0x3ebe06f3, 0x3ed24897, 0x3f0f81a4
};
static const uint32_t ref_sort_bitonic_32[32] = {
0xbf800000, 0xbf1abb67, 0xbf0ec9ee, 0xbf068a30,
0xbf043534, 0xbf012b00, 0xbefeaa91, 0xbefd1a2a,
0xbee8d12a, 0xbed8c7f0, 0xbe972d7a, 0xbe81fc15,
0xbe4e84cb, 0xbe3c1689, 0xbdf605d0, 0xbd9234a0,
0xbd2a8ea8, 0x3cc96593, 0x3d446123, 0x3d8ce6cb,
0x3dc3dd48, 0x3dd11d1c, 0x3de7ca48, 0x3e0db75f,
0x3e506a2c, 0x3e57751c, 0x3e601f55, 0x3e6e514e,
0x3e841924, 0x3eb5a5a2, 0x3ece8f07, 0x3f2a6bfa
};
static const uint32_t ref_sort_const[16] = {
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000
};
| Max | 3 | psychogenic/zephyr | tests/lib/cmsis_dsp/support/src/f32.pat | [
"Apache-2.0"
] |
(*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
open Base.Option.Monad_infix
module Ast = Flow_ast
(** sometimes due to parse errors, we end up with empty names. hide them!
in fact, VS Code throws out the entire response if any symbol name is falsy!
https://github.com/microsoft/vscode/blob/afd102cbd2e17305a510701d7fd963ec2528e4ea/src/vs/workbench/api/common/extHostTypes.ts#L1068-L1072 *)
let name_opt = function
| "" -> None
| name -> Some name
let name_and_loc_of_identifier = function
| (loc, { Ast.Identifier.name; _ }) -> name_opt name >>| fun name -> (name, loc)
let name_and_loc_of_private_name = function
| (loc, { Ast.PrivateName.name; comments = _ }) -> name_opt name >>| fun name -> ("#" ^ name, loc)
let name_and_loc_of_key (key : (Loc.t, Loc.t) Ast.Expression.Object.Property.key) :
(string * Loc.t) option =
let open Ast.Expression.Object.Property in
match key with
| Literal (loc, { Ast.Literal.raw; _ }) -> name_opt raw >>| fun name -> (name, loc)
| Identifier id -> name_and_loc_of_identifier id
| PrivateName name -> name_and_loc_of_private_name name
| Computed (_, _) -> None
let name_and_loc_of_pattern = function
| (_, Ast.Pattern.Identifier { Ast.Pattern.Identifier.name; annot = _; optional = _ }) ->
name_and_loc_of_identifier name
| (_, Ast.Pattern.Object _)
| (_, Ast.Pattern.Array _)
| (_, Ast.Pattern.Expression _) ->
None
let id_matches_name ~name = function
| None -> true
| Some (_, { Ast.Identifier.name = id_name; _ }) -> id_name = name
let special_initializer ~name expr =
match expr with
| (func_loc, Ast.Expression.Function ({ Ast.Function.id; _ } as func))
when id_matches_name ~name id ->
`Function (func_loc, func)
| (class_loc, Ast.Expression.Class ({ Ast.Class.id; _ } as cls)) when id_matches_name ~name id ->
`Class (class_loc, cls)
| _ -> `Normal
let kind_of_property is_method =
if is_method then
Lsp.SymbolInformation.Method
else
Lsp.SymbolInformation.Property
let mk ~loc ~selection ~name ?detail ~kind ~children () =
let range = Flow_lsp_conversions.loc_to_lsp_range loc in
let selectionRange = Flow_lsp_conversions.loc_to_lsp_range selection in
{ Lsp.DocumentSymbol.name; detail; kind; deprecated = false; range; selectionRange; children }
class visitor =
object (this)
inherit [Lsp.DocumentSymbol.t list, Loc.t] Flow_ast_visitor.visitor ~init:[] as super
method with_children
: 't. ('t -> 't) -> 't -> f:(Lsp.DocumentSymbol.t list -> Lsp.DocumentSymbol.t) -> 't =
fun g x ~f ->
let prev = acc in
this#set_acc [];
let result = g x in
let children = acc in
this#set_acc (f children :: prev);
result
method add_with_children
: 't.
loc:Loc.t ->
selection:Loc.t ->
name:string ->
?detail:string ->
kind:Lsp.SymbolInformation.symbolKind ->
('t -> 't) ->
't ->
unit =
fun ~loc ~selection ~name ?detail ~kind g x ->
let _ =
this#with_children g x ~f:(fun children ->
mk ~loc ~selection ~name ?detail ~kind ~children:(Some children) ()
)
in
()
method add ~loc ~selection ~name ?detail ~kind () =
let sym = mk ~loc ~selection ~name ?detail ~kind ~children:None () in
this#update_acc (List.cons sym)
method! variable_declarator
~kind (decl : (Loc.t, Loc.t) Ast.Statement.VariableDeclaration.Declarator.t) =
let open Ast.Statement.VariableDeclaration.Declarator in
let (loc, { id; init }) = decl in
let (name, selection) =
Base.Option.value ~default:("<var>", loc) (name_and_loc_of_pattern id)
in
let k = Lsp.SymbolInformation.Variable in
(match init with
| Some init -> this#visit_special_initializer ~loc ~name ~selection ~kind:k init
| None ->
this#add_with_children ~loc ~selection ~name ~kind:k (super#variable_declarator ~kind) decl);
decl
method! object_property (prop : (Loc.t, Loc.t) Ast.Expression.Object.Property.t) =
let open Ast.Expression.Object.Property in
(match prop with
| (loc, Init { key; value; shorthand = _ }) ->
Base.Option.iter (name_and_loc_of_key key) ~f:(fun (name, selection) ->
let kind = Lsp.SymbolInformation.Property in
this#visit_special_initializer ~loc ~name ~selection ~kind value
)
| (loc, Method { key; value = _ }) ->
Base.Option.iter (name_and_loc_of_key key) ~f:(fun (name, selection) ->
let kind = Lsp.SymbolInformation.Method in
this#add_with_children ~loc ~selection ~name ~kind super#object_property prop
)
| (loc, Get { key; value = _; comments = _ }) ->
Base.Option.iter (name_and_loc_of_key key) ~f:(fun (name, selection) ->
let kind = Lsp.SymbolInformation.Property in
this#add_with_children ~loc ~selection ~name ~kind super#object_property prop
)
| (loc, Set { key; value = _; comments = _ }) ->
Base.Option.iter (name_and_loc_of_key key) ~f:(fun (name, selection) ->
let kind = Lsp.SymbolInformation.Property in
this#add_with_children ~loc ~selection ~name ~kind super#object_property prop
));
prop
method visit_special_initializer ~loc ~name ~selection ~kind value : unit =
match special_initializer ~name value with
| `Function (func_loc, func) ->
let kind = Lsp.SymbolInformation.Method in
this#add_with_children ~loc ~selection ~name ~kind (super#function_expression func_loc) func
| `Class (class_loc, cls) ->
let kind = Lsp.SymbolInformation.Class in
this#add_with_children ~loc ~selection ~name ~kind (super#class_expression class_loc) cls
| `Normal -> this#add_with_children ~loc ~selection ~name ~kind super#expression value
method class_decl_or_expr f loc (cls : (Loc.t, Loc.t) Ast.Class.t) =
let open Ast.Class in
let { id; _ } = cls in
let (name, selection) =
Base.Option.value (id >>= name_and_loc_of_identifier) ~default:("<class>", loc)
in
this#add_with_children ~loc ~selection ~name ~kind:Lsp.SymbolInformation.Class (f loc) cls;
cls
method! class_declaration loc (cls : (Loc.t, Loc.t) Ast.Class.t) =
this#class_decl_or_expr super#class_declaration loc cls
method! class_expression loc (cls : (Loc.t, Loc.t) Ast.Class.t) =
this#class_decl_or_expr super#class_expression loc cls
method! class_method loc (meth : (Loc.t, Loc.t) Ast.Class.Method.t') =
let open Ast.Class.Method in
let { kind; key; _ } = meth in
let (name, selection) =
Base.Option.value ~default:("<method>", loc) (name_and_loc_of_key key)
in
let (kind, name) =
match kind with
| Constructor -> (Lsp.SymbolInformation.Constructor, name)
| Method -> (Lsp.SymbolInformation.Method, name)
| Get -> (Lsp.SymbolInformation.Property, "(get) " ^ name)
| Set -> (Lsp.SymbolInformation.Property, "(set) " ^ name)
in
this#add_with_children ~loc ~selection ~name ~kind (super#class_method loc) meth;
meth
method! class_property loc (prop : (Loc.t, Loc.t) Ast.Class.Property.t') =
let open Ast.Class.Property in
let { key; value; _ } = prop in
let (name, selection) =
Base.Option.value ~default:("<property>", loc) (name_and_loc_of_key key)
in
let kind = Lsp.SymbolInformation.Property in
(match value with
| Initialized expr -> this#visit_special_initializer ~loc ~name ~selection ~kind expr
| Declared
| Uninitialized ->
this#add_with_children ~loc ~selection ~name ~kind (super#class_property loc) prop);
prop
method! class_private_field loc (prop : (Loc.t, Loc.t) Ast.Class.PrivateField.t') =
let open Ast.Class.PrivateField in
let { key; _ } = prop in
let (name, selection) =
Base.Option.value ~default:("<property>", loc) (name_and_loc_of_private_name key)
in
let kind = Lsp.SymbolInformation.Property in
this#add_with_children ~loc ~selection ~name ~kind (super#class_private_field loc) prop;
prop
method! declare_class loc (decl : (Loc.t, Loc.t) Ast.Statement.DeclareClass.t) =
let open Ast.Statement.DeclareClass in
let { id; _ } = decl in
let (name, selection) =
Base.Option.value ~default:("<class>", loc) (name_and_loc_of_identifier id)
in
let kind = Lsp.SymbolInformation.Class in
this#add_with_children ~loc ~selection ~name ~kind (super#declare_class loc) decl;
decl
method! declare_function loc (decl : (Loc.t, Loc.t) Ast.Statement.DeclareFunction.t) =
let open Ast.Statement.DeclareFunction in
let { id; _ } = decl in
let (name, selection) =
Base.Option.value ~default:("<function>", loc) (name_and_loc_of_identifier id)
in
let kind = Lsp.SymbolInformation.Function in
this#add_with_children ~loc ~selection ~name ~kind (super#declare_function loc) decl;
decl
method! declare_module loc (m : (Loc.t, Loc.t) Ast.Statement.DeclareModule.t) =
let open Ast.Statement.DeclareModule in
let { id; _ } = m in
let (name, selection) =
match id with
| Identifier id ->
Base.Option.value ~default:("<module>", loc) (name_and_loc_of_identifier id)
| Literal (lit_loc, { Ast.StringLiteral.value; _ }) -> (Printf.sprintf "%S" value, lit_loc)
in
let kind = Lsp.SymbolInformation.Module in
this#add_with_children ~loc ~selection ~name ~kind (super#declare_module loc) m;
m
method! declare_variable loc (decl : (Loc.t, Loc.t) Ast.Statement.DeclareVariable.t) =
let open Ast.Statement.DeclareVariable in
let { id; _ } = decl in
let (name, selection) =
Base.Option.value ~default:("<var>", loc) (name_and_loc_of_identifier id)
in
let kind = Lsp.SymbolInformation.Variable in
this#add_with_children ~loc ~selection ~name ~kind (super#declare_variable loc) decl;
decl
method! enum_declaration loc (enum : (Loc.t, Loc.t) Ast.Statement.EnumDeclaration.t) =
let open Ast.Statement.EnumDeclaration in
let { id; _ } = enum in
let (name, selection) =
Base.Option.value ~default:("<enum>", loc) (name_and_loc_of_identifier id)
in
let kind = Lsp.SymbolInformation.Enum in
this#add_with_children ~loc ~selection ~name ~kind (super#enum_declaration loc) enum;
enum
method! enum_member_identifier id =
(match name_and_loc_of_identifier id with
| Some (name, loc) ->
let kind = Lsp.SymbolInformation.EnumMember in
this#add ~loc ~selection:loc ~name ~kind ()
| None -> ());
id
method! export_default_declaration loc decl =
let open Ast.Statement.ExportDefaultDeclaration in
let { default; _ } = decl in
let name = "default" in
let kind = Lsp.SymbolInformation.Variable in
this#add_with_children
~loc
~selection:default
~name
~kind
(super#export_default_declaration loc)
decl;
decl
method function_decl_or_expr f loc (stmt : (Loc.t, Loc.t) Ast.Function.t) =
let open Ast.Function in
let { id; _ } = stmt in
let (name, selection) =
Base.Option.value ~default:("<function>", loc) (id >>= name_and_loc_of_identifier)
in
let kind = Lsp.SymbolInformation.Function in
this#add_with_children ~loc ~selection ~name ~kind (f loc) stmt;
stmt
method! function_declaration loc stmt =
this#function_decl_or_expr super#function_declaration loc stmt
method! function_expression loc stmt =
this#function_decl_or_expr super#function_expression loc stmt
method! interface loc decl =
let open Ast.Statement.Interface in
let { id; _ } = decl in
let (name, selection) =
Base.Option.value ~default:("<interface>", loc) (name_and_loc_of_identifier id)
in
let kind = Lsp.SymbolInformation.Interface in
this#add_with_children ~loc ~selection ~name ~kind (super#interface loc) decl;
decl
method! object_property_type (opt : (Loc.t, Loc.t) Ast.Type.Object.Property.t) =
let open Ast.Type.Object.Property in
let (loc, { key; _method; _ }) = opt in
(match name_and_loc_of_key key with
| Some (name, selection) ->
let kind = kind_of_property _method in
this#add_with_children ~loc ~selection ~name ~kind super#object_property_type opt
| None -> ());
opt
method! object_indexer_property_type (opt : (Loc.t, Loc.t) Ast.Type.Object.Indexer.t) =
let open Ast.Type.Object.Indexer in
let (loc, { id; key; _ }) = opt in
let (name, selection) =
Base.Option.value ~default:("", fst key) (id >>= name_and_loc_of_identifier)
in
let name = Printf.sprintf "[%s]" name in
let kind = Lsp.SymbolInformation.Property in
this#add_with_children ~loc ~selection ~name ~kind super#object_indexer_property_type opt;
opt
method! object_internal_slot_property_type slot =
let open Ast.Type.Object.InternalSlot in
let (loc, { id; _method; _ }) = slot in
let (name, selection) =
Base.Option.value ~default:("", loc) (name_and_loc_of_identifier id)
in
let name = Printf.sprintf "[[%s]]" name in
this#add_with_children
~loc
~selection
~name
~kind:(kind_of_property _method)
super#object_internal_slot_property_type
slot;
slot
method! object_call_property_type (call : (Loc.t, Loc.t) Ast.Type.Object.CallProperty.t) =
(* TODO *)
super#object_call_property_type call
method! opaque_type loc (otype : (Loc.t, Loc.t) Ast.Statement.OpaqueType.t) =
let open Ast.Statement.OpaqueType in
let { id; _ } = otype in
let (name, selection) =
Base.Option.value ~default:("<opaque>", loc) (name_and_loc_of_identifier id)
in
let kind = Lsp.SymbolInformation.Variable in
this#add_with_children ~loc ~selection ~name ~kind (super#opaque_type loc) otype;
otype
method! type_alias loc (stuff : (Loc.t, Loc.t) Ast.Statement.TypeAlias.t) =
let open Ast.Statement.TypeAlias in
let { id; _ } = stuff in
let (name, selection) =
Base.Option.value ~default:("<type>", loc) (name_and_loc_of_identifier id)
in
let kind = Lsp.SymbolInformation.Variable in
this#add_with_children ~loc ~selection ~name ~kind (super#type_alias loc) stuff;
stuff
end
let provide_document_symbols program =
let finder = new visitor in
let rev_symbols = finder#eval finder#program program in
Base.List.rev rev_symbols
let provide_symbol_information =
let rec flatten ~uri ~containerName acc = function
| [] -> acc
| next :: todo ->
let {
Lsp.DocumentSymbol.name;
detail = _;
kind;
deprecated = _;
range;
selectionRange = _;
children;
} =
next
in
let location = { Lsp.Location.uri; range } in
let info = { Lsp.SymbolInformation.name; kind; location; containerName } in
let acc = info :: acc in
let acc =
match children with
| Some children -> flatten ~uri ~containerName:(Some name) acc children
| None -> acc
in
flatten ~uri ~containerName acc todo
in
fun ~uri program ->
program |> provide_document_symbols |> flatten ~uri ~containerName:None [] |> Base.List.rev
| OCaml | 5 | zhangmaijun/flow | src/lsp/documentSymbolProvider.ml | [
"MIT"
] |
#include "script_component.hpp"
/*
Name: TFAR_fnc_activeSwRadio
Author: NKey
returns the active SR radio
Arguments:
None
Return Value:
active SR radio <STRING>
Example:
call TFAR_fnc_activeSwRadio;
Public: Yes
*/
private _result = nil;
{
if (_x call TFAR_fnc_isRadio) exitWith {_result = _x};
true;
} count (assignedItems TFAR_currentUnit);
_result
| SQF | 4 | MrDj200/task-force-arma-3-radio | addons/core/functions/fnc_activeSwRadio.sqf | [
"RSA-MD"
] |
/*
* Parses unix mail boxes into headers and bodies.
*/
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
using namespace std;
#define BUFSIZE 2048
/* A growable buffer for collecting headers. */
struct Buffer
{
Buffer() : data(0), allocated(0), length(0) { }
~Buffer() { empty(); }
void append( char p ) {
if ( ++length > allocated )
upAllocate( length*2 );
data[length-1] = p;
}
void clear() { length = 0; }
void upAllocate( int len );
void empty();
char *data;
int allocated;
int length;
};
struct MailboxScanner
{
Buffer headName;
Buffer headContent;
int cs, top, stack[1];
int init( );
int execute( const char *data, int len, bool isEof );
int finish( );
};
%%{
machine MailboxScanner;
# Buffer the header names.
action bufHeadName { headName.append(fc); }
# Prints a blank line after the end of the headers of each message.
action blankLine { cout << endl; }
# Helpers we will use in matching the date section of the from line.
day = /[A-Z][a-z][a-z]/;
month = /[A-Z][a-z][a-z]/;
year = /[0-9][0-9][0-9][0-9]/;
time = /[0-9][0-9]:[0-9][0-9]/ . ( /:[0-9][0-9]/ | '' );
letterZone = /[A-Z][A-Z][A-Z]/;
numZone = /[+\-][0-9][0-9][0-9][0-9]/;
zone = letterZone | numZone;
dayNum = /[0-9 ][0-9]/;
# These are the different formats of the date minus an obscure
# type that has a funny string 'remote from xxx' on the end. Taken
# from c-client in the imap-2000 distribution.
date = day . ' ' . month . ' ' . dayNum . ' ' . time . ' ' .
( year | year . ' ' . zone | zone . ' ' . year );
# From lines separate messages. We will exclude fromLine from a message
# body line. This will cause us to stay in message line up until an
# entirely correct from line is matched.
fromLine = 'From ' . (any-'\n')* . ' ' . date . '\n';
# The types of characters that can be used as a header name.
hchar = print - [ :];
# Simply eat up an uninteresting header. Return at the first non-ws
# character following a newline.
consumeHeader := (
[^\n] |
'\n' [ \t] |
'\n' [^ \t] @{fhold; fret;}
)*;
action hchar {headContent.append(fc);}
action hspace {headContent.append(' ');}
action hfinish {
headContent.append(0);
cout << headContent.data << endl;
headContent.clear();
fhold;
fret;
}
# Display the contents of a header as it is consumed. Collapses line
# continuations to a single space.
printHeader := (
[^\n] @hchar |
( '\n' ( [ \t]+ '\n' )* [ \t]+ ) %hspace
)** $!hfinish;
action onHeader
{
headName.append(0);
if ( strcmp( headName.data, "From" ) == 0 ||
strcmp( headName.data, "To" ) == 0 ||
strcmp( headName.data, "Subject" ) == 0 )
{
/* Print the header name, then jump to a machine the will display
* the contents. */
cout << headName.data << ":";
headName.clear();
fcall printHeader;
}
headName.clear();
fcall consumeHeader;
}
header = hchar+ $bufHeadName ':' @onHeader;
# Exclude fromLine from a messageLine, otherwise when encountering a
# fromLine we will be simultaneously matching the old message and a new
# message.
messageLine = ( [^\n]* '\n' - fromLine );
# An entire message.
message = ( fromLine . header* . '\n' @blankLine . messageLine* );
# File is a series of messages.
main := message*;
}%%
%% write data;
int MailboxScanner::init( )
{
%% write init;
return 1;
}
int MailboxScanner::execute( const char *data, int len, bool isEof )
{
const char *p = data;
const char *pe = data + len;
const char *eof = isEof ? pe : 0;
%% write exec;
if ( cs == MailboxScanner_error )
return -1;
if ( cs >= MailboxScanner_first_final )
return 1;
return 0;
}
int MailboxScanner::finish( )
{
if ( cs == MailboxScanner_error )
return -1;
if ( cs >= MailboxScanner_first_final )
return 1;
return 0;
}
void Buffer::empty()
{
if ( data != 0 ) {
free( data );
data = 0;
length = 0;
allocated = 0;
}
}
void Buffer::upAllocate( int len )
{
if ( data == 0 )
data = (char*) malloc( len );
else
data = (char*) realloc( data, len );
allocated = len;
}
MailboxScanner mailbox;
char buf[BUFSIZE];
int main()
{
mailbox.init();
while ( 1 ) {
int len = fread( buf, 1, BUFSIZE, stdin );
mailbox.execute( buf, len, len != BUFSIZE );
if ( len != BUFSIZE )
break;
}
if ( mailbox.finish() <= 0 )
cerr << "mailbox: error parsing input" << endl;
return 0;
}
| Ragel in Ruby Host | 5 | garethchen/hhvm-third-party | ragel/src/examples/mailbox.rl | [
"MIT"
] |
// Copyright 2010-2013 RethinkDB, all rights reserved.
#include "serializer/log/static_header.hpp"
#include <functional>
#include <vector>
#include "arch/arch.hpp"
#include "arch/runtime/coroutines.hpp"
#include "containers/scoped.hpp"
#include "config/args.hpp"
#include "logger.hpp"
#include "utils.hpp"
// The CURRENT_SERIALIZER_VERSION_STRING might remain unchanged for a while --
// individual metablocks have a disk_format_version field that can be incremented
// for on-the-fly version updating.
#define CURRENT_SERIALIZER_VERSION_STRING "2.2"
// Since 1.13, we added the aux block ID space. We can still read 1.13 serializer
// files, but previous versions of RethinkDB cannot read 2.2+ files.
#define V1_13_SERIALIZER_VERSION_STRING "1.13"
// See also CLUSTER_VERSION_STRING and cluster_version_t.
bool static_header_check(file_t *file) {
if (file->get_file_size() < DEVICE_BLOCK_SIZE) {
return false;
} else {
scoped_device_block_aligned_ptr_t<static_header_t> buffer(DEVICE_BLOCK_SIZE);
co_read(file, 0, DEVICE_BLOCK_SIZE, buffer.get(), DEFAULT_DISK_ACCOUNT);
bool equals = memcmp(buffer.get(), SOFTWARE_NAME_STRING, sizeof(SOFTWARE_NAME_STRING)) == 0;
return equals;
}
}
void co_static_header_write(file_t *file, void *data, size_t data_size) {
scoped_device_block_aligned_ptr_t<static_header_t> buffer(DEVICE_BLOCK_SIZE);
rassert(sizeof(static_header_t) + data_size < DEVICE_BLOCK_SIZE);
// We don't know what the extent size is yet, and it doesn't really matter.
file->set_file_size_at_least(DEVICE_BLOCK_SIZE, DEFAULT_EXTENT_SIZE);
memset(buffer.get(), 0, DEVICE_BLOCK_SIZE);
rassert(sizeof(SOFTWARE_NAME_STRING) < 16);
memcpy(buffer->software_name, SOFTWARE_NAME_STRING, sizeof(SOFTWARE_NAME_STRING));
rassert(sizeof(CURRENT_SERIALIZER_VERSION_STRING) < 16);
memcpy(buffer->version, CURRENT_SERIALIZER_VERSION_STRING,
sizeof(CURRENT_SERIALIZER_VERSION_STRING));
memcpy(buffer->data, data, data_size);
// We want to follow up the static header write with a datasync, because... it's the
// most important block in the file!
co_write(file, 0, DEVICE_BLOCK_SIZE, buffer.get(), DEFAULT_DISK_ACCOUNT,
datasync_op::wrap_in_datasyncs);
}
void co_static_header_write_helper(file_t *file, static_header_write_callback_t *cb,
void *data, size_t data_size) {
co_static_header_write(file, data, data_size);
cb->on_static_header_write();
}
bool static_header_write(file_t *file, void *data, size_t data_size,
static_header_write_callback_t *cb) {
coro_t::spawn_later_ordered(std::bind(co_static_header_write_helper,
file, cb, data, data_size));
return false;
}
void co_static_header_read(
file_t *file,
static_header_read_callback_t *callback,
void *data_out,
size_t data_size,
bool *needs_migration_out) {
rassert(sizeof(static_header_t) + data_size < DEVICE_BLOCK_SIZE);
scoped_device_block_aligned_ptr_t<static_header_t> buffer(DEVICE_BLOCK_SIZE);
co_read(file, 0, DEVICE_BLOCK_SIZE, buffer.get(), DEFAULT_DISK_ACCOUNT);
if (memcmp(buffer->software_name, SOFTWARE_NAME_STRING, sizeof(SOFTWARE_NAME_STRING)) != 0) {
fail_due_to_user_error("This doesn't appear to be a RethinkDB data file.");
}
if (memcmp(buffer->version, V1_13_SERIALIZER_VERSION_STRING,
sizeof(V1_13_SERIALIZER_VERSION_STRING)) == 0) {
*needs_migration_out = true;
} else if (memcmp(buffer->version, CURRENT_SERIALIZER_VERSION_STRING,
sizeof(CURRENT_SERIALIZER_VERSION_STRING)) == 0) {
*needs_migration_out = false;
} else {
fail_due_to_user_error("File version is incorrect. This file was created with "
"RethinkDB's serializer version %s, but you are trying "
"to read it with version %s. See "
"http://rethinkdb.com/docs/migration/ for information on "
"migrating data from a previous version.",
buffer->version, CURRENT_SERIALIZER_VERSION_STRING);
}
memcpy(data_out, buffer->data, data_size);
callback->on_static_header_read();
}
void static_header_read(
file_t *file,
void *data_out,
size_t data_size,
bool *needs_migration_out,
static_header_read_callback_t *cb) {
coro_t::spawn_later_ordered(std::bind(co_static_header_read,
file,
cb,
data_out,
data_size,
needs_migration_out));
}
void migrate_static_header(file_t *file, size_t data_size) {
// Migrate the static header by rewriting it
logNTC("Migrating file to serializer version %s.",
CURRENT_SERIALIZER_VERSION_STRING);
std::vector<char> data(data_size);
struct noop_cb_t : public static_header_read_callback_t {
void on_static_header_read() { }
} noop_cb;
bool needs_migration;
co_static_header_read(file,
&noop_cb,
data.data(),
data_size,
&needs_migration);
guarantee(needs_migration);
co_static_header_write(file, data.data(), data_size);
}
| C++ | 4 | zadcha/rethinkdb | src/serializer/log/static_header.cc | [
"Apache-2.0"
] |
exec("swigtest.start", -1);
f = new_Foo();
b = new_Bar(f);
Bar_x_set(b, 3);
if Bar_x_get(b) <> 3 then swigtesterror(); end
fp = Bar___deref__(b);
Bar_x_set(b, 4);
if Bar_x_get(b) <> 4 then swigtesterror(); end
exec("swigtest.quit", -1);
| Scilab | 3 | kyletanyag/LL-Smartcard | cacreader/swig-4.0.2/Examples/test-suite/scilab/smart_pointer_simple_runme.sci | [
"BSD-3-Clause"
] |
frequency,raw,error,smoothed,error_smoothed,equalization,parametric_eq,fixed_band_eq,equalized_raw,equalized_smoothed,target
20.00,7.90,2.72,7.90,2.72,-2.72,-2.38,-1.24,5.18,5.18,5.18
20.20,7.90,2.73,7.90,2.73,-2.73,-2.40,-1.28,5.16,5.16,5.17
20.40,7.90,2.74,7.90,2.74,-2.75,-2.41,-1.31,5.15,5.15,5.16
20.61,7.90,2.75,7.90,2.76,-2.76,-2.43,-1.35,5.14,5.14,5.15
20.81,7.90,2.77,7.90,2.77,-2.77,-2.45,-1.39,5.13,5.13,5.12
21.02,7.90,2.78,7.90,2.78,-2.78,-2.46,-1.43,5.12,5.12,5.11
21.23,7.90,2.79,7.90,2.79,-2.79,-2.48,-1.47,5.11,5.11,5.10
21.44,7.90,2.78,7.90,2.79,-2.80,-2.49,-1.51,5.10,5.10,5.11
21.66,7.90,2.80,7.90,2.80,-2.80,-2.51,-1.56,5.09,5.09,5.09
21.87,7.90,2.81,7.90,2.81,-2.81,-2.53,-1.60,5.09,5.09,5.09
22.09,7.90,2.83,7.90,2.82,-2.82,-2.54,-1.65,5.08,5.08,5.07
22.31,7.90,2.83,7.90,2.83,-2.83,-2.56,-1.70,5.07,5.07,5.07
22.54,7.90,2.84,7.90,2.83,-2.83,-2.57,-1.75,5.06,5.06,5.06
22.76,7.90,2.84,7.90,2.84,-2.84,-2.59,-1.80,5.06,5.06,5.06
22.99,7.90,2.85,7.90,2.85,-2.85,-2.60,-1.85,5.05,5.05,5.05
23.22,7.90,2.86,7.90,2.85,-2.85,-2.62,-1.90,5.05,5.05,5.04
23.45,7.90,2.85,7.90,2.86,-2.86,-2.64,-1.95,5.04,5.04,5.05
23.69,7.90,2.86,7.90,2.86,-2.86,-2.65,-2.01,5.04,5.04,5.04
23.92,7.90,2.87,7.90,2.86,-2.86,-2.67,-2.06,5.04,5.04,5.03
24.16,7.90,2.86,7.90,2.86,-2.86,-2.68,-2.12,5.04,5.04,5.04
24.40,7.90,2.86,7.90,2.86,-2.87,-2.70,-2.18,5.03,5.03,5.04
24.65,7.90,2.86,7.90,2.86,-2.87,-2.71,-2.24,5.03,5.03,5.04
24.89,7.90,2.86,7.90,2.87,-2.87,-2.73,-2.29,5.03,5.03,5.03
25.14,7.90,2.87,7.90,2.87,-2.87,-2.74,-2.35,5.03,5.03,5.02
25.39,7.90,2.87,7.90,2.87,-2.87,-2.75,-2.41,5.03,5.03,5.02
25.65,7.90,2.88,7.90,2.88,-2.87,-2.77,-2.47,5.03,5.03,5.02
25.91,7.90,2.88,7.90,2.87,-2.87,-2.78,-2.53,5.03,5.03,5.02
26.16,7.90,2.87,7.90,2.87,-2.87,-2.80,-2.60,5.03,5.03,5.03
26.43,7.90,2.87,7.90,2.87,-2.87,-2.81,-2.66,5.03,5.03,5.03
26.69,7.90,2.87,7.90,2.87,-2.87,-2.83,-2.71,5.03,5.03,5.03
26.96,7.90,2.87,7.90,2.87,-2.87,-2.84,-2.77,5.03,5.03,5.03
27.23,7.90,2.87,7.90,2.87,-2.87,-2.85,-2.83,5.03,5.03,5.03
27.50,7.90,2.87,7.90,2.87,-2.87,-2.87,-2.89,5.03,5.03,5.03
27.77,7.90,2.86,7.90,2.87,-2.86,-2.88,-2.94,5.03,5.03,5.03
28.05,7.90,2.86,7.90,2.86,-2.86,-2.89,-3.00,5.04,5.04,5.03
28.33,7.90,2.86,7.90,2.86,-2.86,-2.91,-3.05,5.04,5.04,5.04
28.62,7.90,2.86,7.90,2.85,-2.86,-2.92,-3.10,5.04,5.04,5.04
28.90,7.90,2.85,7.90,2.85,-2.85,-2.93,-3.14,5.04,5.04,5.05
29.19,7.90,2.85,7.90,2.85,-2.85,-2.95,-3.18,5.05,5.05,5.05
29.48,7.90,2.85,7.90,2.85,-2.85,-2.96,-3.22,5.05,5.05,5.05
29.78,7.90,2.85,7.90,2.85,-2.85,-2.97,-3.26,5.04,5.04,5.05
30.08,7.90,2.85,7.90,2.86,-2.86,-2.99,-3.29,5.04,5.04,5.04
30.38,7.90,2.87,7.90,2.86,-2.86,-3.00,-3.32,5.04,5.04,5.03
30.68,7.90,2.87,7.90,2.87,-2.86,-3.01,-3.35,5.03,5.03,5.03
30.99,7.90,2.87,7.90,2.87,-2.87,-3.02,-3.37,5.03,5.03,5.03
31.30,7.90,2.87,7.90,2.87,-2.87,-3.04,-3.39,5.02,5.02,5.03
31.61,7.90,2.87,7.90,2.88,-2.88,-3.05,-3.41,5.02,5.02,5.02
31.93,7.90,2.90,7.90,2.89,-2.88,-3.06,-3.42,5.01,5.01,5.00
32.24,7.90,2.89,7.90,2.89,-2.89,-3.07,-3.42,5.01,5.01,5.01
32.57,7.90,2.90,7.90,2.90,-2.90,-3.09,-3.43,5.00,5.00,5.00
32.89,7.90,2.90,7.90,2.90,-2.90,-3.10,-3.43,5.00,4.99,5.00
33.22,7.90,2.90,7.90,2.91,-2.91,-3.11,-3.42,4.99,4.99,4.99
33.55,7.90,2.91,7.90,2.91,-2.92,-3.12,-3.42,4.98,4.98,4.99
33.89,7.91,2.93,7.90,2.93,-2.93,-3.13,-3.41,4.98,4.98,4.98
34.23,7.91,2.94,7.91,2.94,-2.94,-3.15,-3.40,4.97,4.97,4.97
34.57,7.92,2.95,7.92,2.95,-2.95,-3.16,-3.39,4.97,4.97,4.96
34.92,7.92,2.97,7.92,2.96,-2.96,-3.17,-3.37,4.96,4.96,4.95
35.27,7.92,2.95,7.92,2.97,-2.96,-3.18,-3.35,4.95,4.96,4.97
35.62,7.92,2.97,7.92,2.97,-2.97,-3.19,-3.34,4.95,4.95,4.94
35.97,7.91,2.97,7.91,2.97,-2.97,-3.20,-3.32,4.94,4.94,4.94
36.33,7.89,2.96,7.89,2.97,-2.96,-3.22,-3.30,4.92,4.93,4.93
36.70,7.87,2.96,7.87,2.96,-2.96,-3.23,-3.28,4.91,4.91,4.90
37.06,7.85,2.96,7.84,2.95,-2.95,-3.24,-3.26,4.90,4.89,4.89
37.43,7.82,2.94,7.82,2.94,-2.94,-3.25,-3.24,4.88,4.88,4.88
37.81,7.79,2.93,7.79,2.93,-2.93,-3.26,-3.22,4.86,4.86,4.86
38.19,7.76,2.92,7.76,2.92,-2.92,-3.27,-3.20,4.84,4.84,4.84
38.57,7.73,2.90,7.73,2.90,-2.90,-3.28,-3.19,4.82,4.82,4.82
38.95,7.70,2.89,7.70,2.89,-2.89,-3.29,-3.17,4.80,4.80,4.81
39.34,7.67,2.88,7.67,2.88,-2.88,-3.31,-3.16,4.78,4.79,4.78
39.74,7.64,2.88,7.64,2.87,-2.88,-3.32,-3.14,4.76,4.76,4.76
40.14,7.62,2.87,7.61,2.87,-2.87,-3.33,-3.13,4.75,4.74,4.74
40.54,7.59,2.86,7.59,2.87,-2.87,-3.34,-3.12,4.72,4.72,4.73
40.94,7.58,2.87,7.58,2.87,-2.87,-3.35,-3.11,4.70,4.70,4.70
41.35,7.57,2.88,7.57,2.88,-2.88,-3.36,-3.11,4.69,4.68,4.69
41.76,7.56,2.90,7.56,2.89,-2.89,-3.37,-3.10,4.66,4.66,4.66
42.18,7.56,2.90,7.56,2.91,-2.91,-3.38,-3.10,4.65,4.65,4.66
42.60,7.56,2.93,7.56,2.93,-2.93,-3.39,-3.10,4.63,4.63,4.63
43.03,7.57,2.95,7.57,2.96,-2.95,-3.40,-3.11,4.61,4.61,4.61
43.46,7.58,2.99,7.57,2.99,-2.98,-3.41,-3.11,4.60,4.60,4.59
43.90,7.58,3.01,7.58,3.01,-3.00,-3.42,-3.12,4.58,4.58,4.57
44.33,7.58,3.04,7.58,3.03,-3.03,-3.43,-3.13,4.55,4.55,4.54
44.78,7.58,3.05,7.58,3.05,-3.05,-3.45,-3.14,4.52,4.52,4.52
45.23,7.58,3.07,7.58,3.08,-3.08,-3.46,-3.16,4.50,4.50,4.51
45.68,7.58,3.11,7.58,3.11,-3.11,-3.47,-3.17,4.47,4.47,4.47
46.13,7.58,3.14,7.58,3.14,-3.14,-3.48,-3.19,4.44,4.44,4.44
46.60,7.58,3.17,7.58,3.17,-3.17,-3.49,-3.21,4.41,4.41,4.41
47.06,7.58,3.20,7.58,3.20,-3.20,-3.50,-3.24,4.38,4.38,4.38
47.53,7.58,3.23,7.58,3.23,-3.23,-3.51,-3.26,4.34,4.34,4.35
48.01,7.58,3.27,7.58,3.27,-3.27,-3.52,-3.29,4.31,4.31,4.30
48.49,7.58,3.31,7.58,3.31,-3.31,-3.53,-3.32,4.27,4.27,4.27
48.97,7.58,3.35,7.58,3.35,-3.34,-3.54,-3.36,4.24,4.24,4.23
49.46,7.58,3.38,7.58,3.38,-3.38,-3.55,-3.39,4.20,4.20,4.20
49.96,7.58,3.43,7.58,3.42,-3.42,-3.56,-3.42,4.16,4.16,4.15
50.46,7.58,3.45,7.58,3.45,-3.45,-3.57,-3.46,4.12,4.12,4.13
50.96,7.58,3.48,7.58,3.49,-3.49,-3.58,-3.50,4.09,4.09,4.10
51.47,7.58,3.51,7.58,3.52,-3.53,-3.59,-3.54,4.05,4.05,4.06
51.99,7.59,3.57,7.59,3.56,-3.56,-3.61,-3.58,4.02,4.02,4.02
52.51,7.60,3.60,7.59,3.60,-3.60,-3.62,-3.62,4.00,4.00,4.00
53.03,7.60,3.63,7.60,3.63,-3.63,-3.63,-3.67,3.97,3.97,3.97
53.56,7.60,3.66,7.60,3.66,-3.66,-3.64,-3.71,3.94,3.94,3.94
54.10,7.59,3.69,7.59,3.69,-3.68,-3.65,-3.75,3.91,3.90,3.89
54.64,7.57,3.70,7.57,3.71,-3.70,-3.66,-3.79,3.87,3.87,3.87
55.18,7.55,3.72,7.55,3.72,-3.71,-3.67,-3.83,3.83,3.84,3.83
55.74,7.53,3.73,7.52,3.72,-3.72,-3.68,-3.87,3.81,3.80,3.79
56.29,7.50,3.72,7.50,3.73,-3.73,-3.69,-3.91,3.77,3.77,3.78
56.86,7.47,3.72,7.47,3.72,-3.72,-3.70,-3.95,3.74,3.75,3.75
57.42,7.44,3.73,7.44,3.72,-3.72,-3.72,-3.99,3.72,3.72,3.71
58.00,7.41,3.73,7.41,3.72,-3.72,-3.73,-4.02,3.69,3.69,3.68
58.58,7.38,3.72,7.38,3.72,-3.71,-3.74,-4.06,3.67,3.67,3.66
59.16,7.35,3.71,7.35,3.71,-3.71,-3.75,-4.08,3.63,3.63,3.64
59.76,7.32,3.71,7.32,3.71,-3.72,-3.76,-4.11,3.60,3.60,3.61
60.35,7.29,3.72,7.29,3.72,-3.73,-3.77,-4.14,3.56,3.56,3.57
60.96,7.27,3.74,7.27,3.74,-3.75,-3.78,-4.16,3.52,3.52,3.53
61.57,7.25,3.77,7.25,3.77,-3.77,-3.80,-4.18,3.47,3.47,3.47
62.18,7.24,3.81,7.24,3.81,-3.81,-3.81,-4.19,3.43,3.43,3.43
62.80,7.23,3.84,7.23,3.84,-3.84,-3.82,-4.20,3.39,3.39,3.39
63.43,7.23,3.89,7.23,3.89,-3.88,-3.83,-4.21,3.34,3.35,3.34
64.07,7.24,3.93,7.24,3.93,-3.93,-3.84,-4.21,3.31,3.31,3.31
64.71,7.25,3.98,7.24,3.98,-3.98,-3.86,-4.22,3.27,3.27,3.27
65.35,7.25,4.02,7.25,4.02,-4.02,-3.87,-4.21,3.23,3.23,3.23
66.01,7.26,4.06,7.26,4.06,-4.07,-3.88,-4.21,3.19,3.19,3.19
66.67,7.27,4.10,7.27,4.11,-4.11,-3.89,-4.20,3.16,3.16,3.16
67.33,7.28,4.16,7.28,4.15,-4.15,-3.91,-4.19,3.13,3.13,3.12
68.01,7.28,4.19,7.28,4.19,-4.19,-3.92,-4.18,3.09,3.09,3.08
68.69,7.27,4.22,7.27,4.22,-4.22,-3.93,-4.17,3.05,3.05,3.04
69.37,7.26,4.25,7.26,4.25,-4.25,-3.95,-4.16,3.01,3.01,3.01
70.07,7.24,4.27,7.24,4.27,-4.27,-3.96,-4.14,2.97,2.97,2.97
70.77,7.22,4.29,7.22,4.29,-4.29,-3.97,-4.12,2.93,2.93,2.92
71.48,7.19,4.30,7.19,4.30,-4.31,-3.99,-4.11,2.88,2.88,2.89
72.19,7.16,4.31,7.16,4.32,-4.32,-4.00,-4.09,2.84,2.84,2.84
72.91,7.13,4.33,7.13,4.33,-4.33,-4.01,-4.07,2.80,2.80,2.80
73.64,7.10,4.34,7.10,4.34,-4.33,-4.03,-4.05,2.76,2.76,2.76
74.38,7.07,4.35,7.07,4.34,-4.34,-4.04,-4.04,2.73,2.73,2.72
75.12,7.04,4.34,7.04,4.35,-4.34,-4.06,-4.02,2.69,2.69,2.69
75.87,7.01,4.34,7.01,4.35,-4.35,-4.07,-4.00,2.66,2.66,2.66
76.63,6.98,4.35,6.98,4.35,-4.35,-4.09,-3.99,2.63,2.63,2.62
77.40,6.96,4.36,6.96,4.36,-4.36,-4.10,-3.98,2.60,2.60,2.60
78.17,6.94,4.38,6.94,4.37,-4.37,-4.12,-3.97,2.57,2.57,2.56
78.95,6.92,4.37,6.92,4.38,-4.38,-4.13,-3.96,2.53,2.54,2.55
79.74,6.91,4.40,6.91,4.40,-4.41,-4.15,-3.95,2.50,2.50,2.51
80.54,6.91,4.42,6.91,4.42,-4.43,-4.16,-3.95,2.47,2.47,2.49
81.35,6.91,4.46,6.91,4.46,-4.47,-4.18,-3.95,2.44,2.45,2.45
82.16,6.93,4.49,6.92,4.50,-4.50,-4.19,-3.95,2.43,2.43,2.43
82.98,6.94,4.54,6.94,4.54,-4.54,-4.21,-3.95,2.40,2.40,2.40
83.81,6.95,4.58,6.95,4.58,-4.57,-4.23,-3.96,2.38,2.38,2.37
84.65,6.95,4.62,6.95,4.61,-4.60,-4.24,-3.97,2.35,2.34,2.33
85.50,6.94,4.64,6.94,4.64,-4.63,-4.26,-3.98,2.31,2.31,2.30
86.35,6.93,4.66,6.93,4.66,-4.65,-4.28,-3.99,2.28,2.28,2.27
87.22,6.91,4.67,6.91,4.67,-4.67,-4.29,-4.01,2.24,2.24,2.24
88.09,6.89,4.68,6.89,4.68,-4.68,-4.31,-4.03,2.21,2.21,2.21
88.97,6.86,4.68,6.86,4.68,-4.68,-4.33,-4.06,2.17,2.17,2.18
89.86,6.83,4.68,6.83,4.69,-4.69,-4.35,-4.08,2.14,2.14,2.14
90.76,6.80,4.69,6.80,4.69,-4.69,-4.37,-4.11,2.11,2.11,2.11
91.66,6.77,4.70,6.77,4.70,-4.69,-4.38,-4.15,2.07,2.07,2.07
92.58,6.74,4.70,6.74,4.70,-4.70,-4.40,-4.18,2.04,2.03,2.04
93.51,6.71,4.70,6.71,4.70,-4.71,-4.42,-4.22,2.00,2.00,2.01
94.44,6.68,4.71,6.68,4.72,-4.72,-4.44,-4.26,1.95,1.96,1.97
95.39,6.67,4.74,6.66,4.73,-4.74,-4.46,-4.31,1.93,1.92,1.93
96.34,6.65,4.76,6.65,4.76,-4.76,-4.48,-4.35,1.89,1.89,1.89
97.30,6.63,4.78,6.63,4.78,-4.78,-4.50,-4.40,1.85,1.85,1.85
98.28,6.61,4.80,6.61,4.80,-4.80,-4.52,-4.45,1.81,1.81,1.81
99.26,6.59,4.82,6.59,4.82,-4.82,-4.54,-4.51,1.77,1.77,1.77
100.25,6.57,4.84,6.57,4.83,-4.83,-4.56,-4.56,1.73,1.73,1.73
101.25,6.55,4.84,6.55,4.85,-4.85,-4.58,-4.62,1.70,1.70,1.70
102.27,6.54,4.86,6.53,4.86,-4.86,-4.60,-4.68,1.68,1.68,1.68
103.29,6.52,4.88,6.51,4.87,-4.87,-4.62,-4.74,1.65,1.65,1.64
104.32,6.49,4.88,6.49,4.88,-4.87,-4.65,-4.80,1.62,1.62,1.61
105.37,6.46,4.88,6.46,4.88,-4.87,-4.67,-4.87,1.59,1.58,1.58
106.42,6.43,4.87,6.42,4.87,-4.88,-4.69,-4.93,1.55,1.55,1.55
107.48,6.39,4.87,6.39,4.87,-4.88,-4.71,-4.99,1.51,1.51,1.52
108.56,6.37,4.88,6.36,4.87,-4.88,-4.74,-5.06,1.49,1.48,1.49
109.64,6.34,4.88,6.34,4.89,-4.89,-4.76,-5.12,1.45,1.45,1.46
110.74,6.33,4.90,6.32,4.90,-4.90,-4.78,-5.18,1.43,1.42,1.42
111.85,6.31,4.92,6.31,4.91,-4.92,-4.81,-5.24,1.39,1.39,1.39
112.97,6.29,4.93,6.29,4.93,-4.94,-4.83,-5.30,1.35,1.35,1.36
114.10,6.28,4.95,6.27,4.95,-4.96,-4.85,-5.35,1.32,1.31,1.32
115.24,6.26,4.98,6.26,4.98,-4.98,-4.88,-5.40,1.28,1.28,1.28
116.39,6.25,5.01,6.25,5.01,-5.00,-4.90,-5.45,1.25,1.25,1.24
117.55,6.24,5.03,6.23,5.03,-5.02,-4.93,-5.50,1.22,1.22,1.21
118.73,6.22,5.05,6.22,5.04,-5.03,-4.95,-5.54,1.19,1.19,1.17
119.92,6.20,5.05,6.20,5.05,-5.04,-4.98,-5.58,1.16,1.15,1.15
121.12,6.17,5.05,6.17,5.05,-5.05,-5.01,-5.61,1.12,1.12,1.12
122.33,6.14,5.05,6.14,5.05,-5.05,-5.03,-5.64,1.09,1.09,1.09
123.55,6.11,5.04,6.11,5.04,-5.05,-5.06,-5.66,1.06,1.06,1.07
124.79,6.08,5.04,6.08,5.04,-5.05,-5.09,-5.68,1.03,1.03,1.03
126.03,6.05,5.05,6.05,5.05,-5.05,-5.11,-5.70,1.00,1.00,1.00
127.29,6.02,5.05,6.02,5.05,-5.05,-5.14,-5.71,0.97,0.97,0.97
128.57,5.99,5.06,5.99,5.06,-5.06,-5.17,-5.71,0.93,0.93,0.93
129.85,5.97,5.07,5.97,5.07,-5.07,-5.19,-5.71,0.90,0.89,0.90
131.15,5.95,5.09,5.95,5.09,-5.09,-5.22,-5.70,0.86,0.86,0.86
132.46,5.94,5.10,5.94,5.11,-5.11,-5.25,-5.69,0.82,0.83,0.83
133.79,5.94,5.14,5.94,5.14,-5.14,-5.28,-5.68,0.80,0.80,0.80
135.12,5.94,5.17,5.94,5.17,-5.17,-5.31,-5.67,0.77,0.77,0.77
136.48,5.94,5.20,5.94,5.20,-5.20,-5.34,-5.65,0.73,0.74,0.74
137.84,5.95,5.24,5.94,5.24,-5.24,-5.36,-5.62,0.71,0.71,0.71
139.22,5.95,5.27,5.95,5.27,-5.27,-5.39,-5.60,0.68,0.68,0.67
140.61,5.96,5.31,5.96,5.31,-5.30,-5.42,-5.57,0.66,0.65,0.65
142.02,5.96,5.34,5.96,5.34,-5.33,-5.45,-5.54,0.63,0.63,0.62
143.44,5.96,5.36,5.96,5.36,-5.36,-5.48,-5.52,0.60,0.60,0.60
144.87,5.96,5.38,5.96,5.39,-5.39,-5.51,-5.49,0.57,0.57,0.57
146.32,5.96,5.41,5.96,5.41,-5.41,-5.54,-5.46,0.54,0.54,0.54
147.78,5.96,5.43,5.96,5.44,-5.44,-5.57,-5.43,0.52,0.52,0.52
149.26,5.96,5.46,5.96,5.46,-5.46,-5.60,-5.40,0.50,0.50,0.50
150.75,5.96,5.49,5.96,5.48,-5.48,-5.63,-5.38,0.47,0.47,0.47
152.26,5.96,5.51,5.96,5.51,-5.51,-5.66,-5.35,0.45,0.45,0.45
153.78,5.96,5.53,5.96,5.53,-5.53,-5.69,-5.33,0.43,0.43,0.43
155.32,5.96,5.56,5.96,5.56,-5.56,-5.72,-5.31,0.40,0.40,0.40
156.88,5.96,5.58,5.96,5.58,-5.58,-5.75,-5.29,0.37,0.37,0.38
158.44,5.96,5.61,5.96,5.61,-5.61,-5.78,-5.27,0.35,0.35,0.34
160.03,5.96,5.64,5.96,5.64,-5.64,-5.81,-5.26,0.32,0.32,0.32
161.63,5.96,5.67,5.96,5.67,-5.67,-5.84,-5.25,0.29,0.29,0.29
163.24,5.96,5.70,5.96,5.70,-5.70,-5.87,-5.24,0.26,0.26,0.26
164.88,5.96,5.73,5.96,5.73,-5.73,-5.90,-5.24,0.23,0.23,0.23
166.53,5.96,5.77,5.96,5.76,-5.76,-5.93,-5.24,0.20,0.20,0.19
168.19,5.96,5.79,5.96,5.79,-5.79,-5.96,-5.25,0.17,0.17,0.17
169.87,5.96,5.82,5.96,5.82,-5.82,-5.99,-5.25,0.13,0.13,0.13
171.57,5.96,5.86,5.96,5.85,-5.86,-6.02,-5.27,0.10,0.10,0.10
173.29,5.96,5.89,5.96,5.89,-5.89,-6.04,-5.28,0.07,0.07,0.07
175.02,5.96,5.92,5.96,5.92,-5.92,-6.07,-5.30,0.03,0.03,0.04
176.77,5.96,5.96,5.96,5.96,-5.96,-6.10,-5.32,0.00,0.00,0.00
178.54,5.96,5.99,5.96,5.99,-5.99,-6.13,-5.35,-0.03,-0.03,-0.03
180.32,5.96,6.03,5.96,6.03,-6.02,-6.15,-5.38,-0.07,-0.07,-0.08
182.13,5.96,6.06,5.96,6.06,-6.06,-6.18,-5.42,-0.10,-0.10,-0.10
183.95,5.96,6.09,5.96,6.09,-6.09,-6.20,-5.46,-0.13,-0.13,-0.13
185.79,5.96,6.13,5.96,6.12,-6.12,-6.23,-5.50,-0.17,-0.17,-0.17
187.65,5.96,6.16,5.96,6.16,-6.16,-6.25,-5.55,-0.20,-0.20,-0.20
189.52,5.96,6.19,5.96,6.19,-6.19,-6.28,-5.60,-0.23,-0.23,-0.23
191.42,5.96,6.22,5.96,6.22,-6.22,-6.30,-5.66,-0.26,-0.26,-0.26
193.33,5.96,6.25,5.96,6.25,-6.25,-6.32,-5.72,-0.30,-0.30,-0.29
195.27,5.96,6.28,5.96,6.28,-6.28,-6.34,-5.78,-0.33,-0.33,-0.33
197.22,5.96,6.32,5.96,6.32,-6.31,-6.36,-5.84,-0.35,-0.35,-0.36
199.19,5.96,6.34,5.96,6.35,-6.34,-6.38,-5.91,-0.38,-0.38,-0.38
201.18,5.96,6.37,5.96,6.37,-6.37,-6.40,-5.98,-0.41,-0.41,-0.42
203.19,5.96,6.39,5.96,6.39,-6.39,-6.42,-6.05,-0.43,-0.43,-0.43
205.23,5.96,6.41,5.96,6.41,-6.41,-6.44,-6.13,-0.45,-0.45,-0.45
207.28,5.96,6.43,5.96,6.43,-6.43,-6.45,-6.20,-0.48,-0.48,-0.47
209.35,5.96,6.45,5.96,6.45,-6.45,-6.47,-6.28,-0.50,-0.50,-0.50
211.44,5.96,6.48,5.96,6.47,-6.47,-6.48,-6.36,-0.52,-0.52,-0.52
213.56,5.96,6.49,5.96,6.49,-6.50,-6.49,-6.43,-0.54,-0.54,-0.53
215.69,5.96,6.51,5.96,6.51,-6.52,-6.50,-6.51,-0.56,-0.56,-0.56
217.85,5.96,6.54,5.96,6.54,-6.54,-6.51,-6.59,-0.58,-0.58,-0.58
220.03,5.96,6.56,5.96,6.56,-6.56,-6.52,-6.66,-0.60,-0.60,-0.60
222.23,5.96,6.58,5.96,6.58,-6.58,-6.53,-6.73,-0.63,-0.62,-0.62
224.45,5.97,6.60,5.97,6.60,-6.60,-6.53,-6.80,-0.64,-0.64,-0.63
226.70,5.98,6.63,5.97,6.62,-6.62,-6.54,-6.87,-0.64,-0.65,-0.65
228.96,5.98,6.63,5.98,6.64,-6.64,-6.54,-6.93,-0.66,-0.66,-0.65
231.25,5.98,6.65,5.98,6.65,-6.64,-6.54,-6.98,-0.67,-0.67,-0.67
233.57,5.97,6.65,5.97,6.65,-6.65,-6.54,-7.03,-0.68,-0.68,-0.68
235.90,5.96,6.65,5.96,6.65,-6.64,-6.54,-7.07,-0.69,-0.69,-0.69
238.26,5.94,6.65,5.94,6.64,-6.63,-6.53,-7.11,-0.70,-0.70,-0.71
240.64,5.91,6.61,5.91,6.62,-6.62,-6.53,-7.14,-0.71,-0.71,-0.70
243.05,5.89,6.60,5.89,6.60,-6.60,-6.52,-7.16,-0.72,-0.72,-0.71
245.48,5.86,6.57,5.86,6.57,-6.58,-6.51,-7.17,-0.72,-0.72,-0.72
247.93,5.84,6.56,5.84,6.55,-6.56,-6.50,-7.17,-0.72,-0.72,-0.72
250.41,5.81,6.52,5.81,6.53,-6.53,-6.49,-7.16,-0.72,-0.72,-0.71
252.92,5.79,6.50,5.79,6.50,-6.49,-6.47,-7.15,-0.71,-0.71,-0.71
255.45,5.76,6.47,5.75,6.47,-6.46,-6.46,-7.12,-0.70,-0.71,-0.72
258.00,5.72,6.43,5.72,6.43,-6.42,-6.44,-7.09,-0.70,-0.70,-0.71
260.58,5.68,6.39,5.68,6.39,-6.38,-6.42,-7.05,-0.71,-0.71,-0.71
263.19,5.64,6.34,5.63,6.34,-6.35,-6.40,-7.00,-0.71,-0.71,-0.71
265.82,5.59,6.30,5.59,6.30,-6.31,-6.38,-6.94,-0.72,-0.72,-0.71
268.48,5.56,6.26,5.56,6.26,-6.28,-6.35,-6.88,-0.72,-0.72,-0.71
271.16,5.53,6.23,5.53,6.23,-6.24,-6.33,-6.81,-0.72,-0.72,-0.70
273.87,5.50,6.21,5.50,6.21,-6.21,-6.30,-6.73,-0.71,-0.71,-0.71
276.61,5.48,6.18,5.48,6.19,-6.18,-6.27,-6.65,-0.70,-0.70,-0.70
279.38,5.45,6.17,5.45,6.16,-6.14,-6.24,-6.56,-0.70,-0.70,-0.72
282.17,5.42,6.13,5.42,6.12,-6.11,-6.21,-6.47,-0.69,-0.69,-0.71
284.99,5.38,6.07,5.37,6.08,-6.06,-6.17,-6.38,-0.69,-0.69,-0.70
287.84,5.33,6.02,5.33,6.02,-6.02,-6.14,-6.28,-0.69,-0.69,-0.69
290.72,5.28,5.97,5.28,5.97,-5.97,-6.10,-6.18,-0.70,-0.69,-0.70
293.63,5.24,5.92,5.23,5.92,-5.93,-6.06,-6.08,-0.69,-0.69,-0.68
296.57,5.19,5.86,5.19,5.87,-5.88,-6.02,-5.99,-0.69,-0.69,-0.67
299.53,5.16,5.82,5.16,5.82,-5.84,-5.98,-5.89,-0.68,-0.68,-0.67
302.53,5.14,5.79,5.13,5.79,-5.80,-5.94,-5.79,-0.66,-0.66,-0.65
305.55,5.11,5.76,5.11,5.76,-5.75,-5.89,-5.69,-0.65,-0.64,-0.65
308.61,5.09,5.73,5.09,5.72,-5.71,-5.85,-5.59,-0.63,-0.63,-0.64
311.69,5.06,5.69,5.06,5.69,-5.67,-5.80,-5.50,-0.61,-0.62,-0.63
314.81,5.02,5.64,5.02,5.64,-5.63,-5.75,-5.40,-0.61,-0.61,-0.62
317.96,4.98,5.59,4.97,5.59,-5.59,-5.70,-5.31,-0.61,-0.62,-0.62
321.14,4.93,5.53,4.93,5.54,-5.55,-5.65,-5.23,-0.62,-0.62,-0.60
324.35,4.90,5.50,4.90,5.49,-5.51,-5.60,-5.14,-0.61,-0.61,-0.60
327.59,4.87,5.44,4.87,5.45,-5.47,-5.55,-5.06,-0.60,-0.60,-0.57
330.87,4.85,5.42,4.85,5.43,-5.42,-5.50,-4.98,-0.58,-0.58,-0.58
334.18,4.83,5.40,4.82,5.39,-5.38,-5.45,-4.90,-0.55,-0.56,-0.57
337.52,4.80,5.36,4.80,5.36,-5.34,-5.39,-4.83,-0.54,-0.54,-0.56
340.90,4.76,5.30,4.76,5.31,-5.29,-5.34,-4.76,-0.54,-0.53,-0.54
344.30,4.72,5.25,4.71,5.25,-5.25,-5.28,-4.69,-0.53,-0.53,-0.54
347.75,4.67,5.20,4.67,5.20,-5.20,-5.23,-4.63,-0.53,-0.53,-0.53
351.23,4.62,5.15,4.62,5.14,-5.15,-5.17,-4.57,-0.53,-0.53,-0.53
354.74,4.58,5.08,4.58,5.09,-5.10,-5.11,-4.51,-0.52,-0.53,-0.50
358.28,4.54,5.04,4.54,5.04,-5.05,-5.05,-4.46,-0.52,-0.51,-0.50
361.87,4.51,5.00,4.51,5.00,-5.01,-5.00,-4.41,-0.50,-0.50,-0.50
365.49,4.49,4.98,4.48,4.97,-4.97,-4.94,-4.36,-0.48,-0.48,-0.49
369.14,4.46,4.93,4.46,4.93,-4.92,-4.88,-4.32,-0.47,-0.47,-0.47
372.83,4.43,4.89,4.43,4.89,-4.88,-4.82,-4.28,-0.45,-0.45,-0.46
376.56,4.39,4.85,4.39,4.85,-4.83,-4.76,-4.25,-0.45,-0.45,-0.46
380.33,4.35,4.80,4.35,4.80,-4.79,-4.70,-4.21,-0.44,-0.44,-0.45
384.13,4.30,4.73,4.30,4.74,-4.74,-4.64,-4.18,-0.45,-0.44,-0.43
387.97,4.26,4.68,4.26,4.68,-4.70,-4.58,-4.16,-0.44,-0.44,-0.43
391.85,4.22,4.64,4.22,4.64,-4.65,-4.52,-4.13,-0.43,-0.43,-0.42
395.77,4.20,4.61,4.19,4.60,-4.61,-4.46,-4.11,-0.41,-0.41,-0.41
399.73,4.17,4.57,4.17,4.56,-4.56,-4.40,-4.09,-0.39,-0.39,-0.40
403.72,4.15,4.52,4.15,4.53,-4.52,-4.34,-4.07,-0.37,-0.37,-0.37
407.76,4.12,4.49,4.11,4.48,-4.48,-4.28,-4.06,-0.36,-0.36,-0.37
411.84,4.08,4.44,4.08,4.44,-4.43,-4.22,-4.04,-0.36,-0.35,-0.36
415.96,4.04,4.38,4.04,4.39,-4.39,-4.15,-4.03,-0.35,-0.35,-0.34
420.12,4.00,4.34,4.00,4.34,-4.34,-4.09,-4.02,-0.34,-0.34,-0.35
424.32,3.96,4.29,3.96,4.29,-4.30,-4.03,-4.01,-0.34,-0.34,-0.34
428.56,3.93,4.24,3.92,4.25,-4.25,-3.97,-4.00,-0.32,-0.33,-0.32
432.85,3.89,4.20,3.89,4.20,-4.20,-3.91,-3.99,-0.32,-0.32,-0.31
437.18,3.85,4.16,3.85,4.15,-4.16,-3.86,-3.98,-0.31,-0.31,-0.31
441.55,3.81,4.11,3.81,4.11,-4.11,-3.80,-3.98,-0.30,-0.30,-0.30
445.96,3.78,4.07,3.77,4.07,-4.06,-3.74,-3.97,-0.28,-0.29,-0.29
450.42,3.74,4.02,3.73,4.02,-4.01,-3.68,-3.96,-0.27,-0.27,-0.28
454.93,3.69,3.96,3.69,3.96,-3.96,-3.62,-3.94,-0.27,-0.27,-0.27
459.48,3.65,3.91,3.65,3.90,-3.90,-3.56,-3.93,-0.25,-0.26,-0.26
464.07,3.60,3.84,3.60,3.85,-3.85,-3.50,-3.92,-0.25,-0.25,-0.24
468.71,3.56,3.79,3.55,3.79,-3.79,-3.44,-3.90,-0.23,-0.24,-0.23
473.40,3.51,3.73,3.51,3.73,-3.74,-3.39,-3.88,-0.23,-0.23,-0.22
478.13,3.46,3.67,3.46,3.68,-3.68,-3.33,-3.86,-0.22,-0.22,-0.21
482.91,3.42,3.62,3.42,3.62,-3.63,-3.27,-3.84,-0.21,-0.21,-0.21
487.74,3.38,3.57,3.38,3.57,-3.57,-3.22,-3.81,-0.20,-0.20,-0.20
492.62,3.34,3.52,3.34,3.52,-3.52,-3.16,-3.78,-0.18,-0.18,-0.19
497.55,3.30,3.47,3.30,3.47,-3.47,-3.11,-3.74,-0.17,-0.17,-0.18
502.52,3.26,3.42,3.26,3.42,-3.42,-3.05,-3.71,-0.16,-0.16,-0.17
507.55,3.22,3.37,3.22,3.37,-3.36,-3.00,-3.67,-0.15,-0.15,-0.15
512.62,3.18,3.32,3.17,3.31,-3.31,-2.94,-3.62,-0.14,-0.14,-0.14
517.75,3.13,3.25,3.13,3.25,-3.26,-2.89,-3.57,-0.13,-0.13,-0.12
522.93,3.09,3.20,3.09,3.20,-3.21,-2.83,-3.52,-0.12,-0.12,-0.11
528.16,3.06,3.16,3.05,3.15,-3.15,-2.78,-3.47,-0.10,-0.10,-0.10
533.44,3.02,3.11,3.02,3.11,-3.10,-2.73,-3.41,-0.08,-0.08,-0.09
538.77,2.98,3.06,2.98,3.06,-3.04,-2.67,-3.35,-0.07,-0.06,-0.08
544.16,2.94,3.00,2.93,3.00,-2.99,-2.62,-3.29,-0.05,-0.06,-0.06
549.60,2.89,2.94,2.89,2.93,-2.94,-2.57,-3.22,-0.05,-0.05,-0.05
555.10,2.84,2.87,2.84,2.87,-2.89,-2.52,-3.16,-0.05,-0.05,-0.03
560.65,2.79,2.81,2.79,2.82,-2.83,-2.47,-3.09,-0.05,-0.04,-0.02
566.25,2.76,2.78,2.76,2.78,-2.78,-2.42,-3.02,-0.02,-0.02,-0.02
571.92,2.73,2.74,2.72,2.73,-2.73,-2.37,-2.94,0.00,-0.00,-0.01
577.64,2.69,2.69,2.68,2.69,-2.67,-2.32,-2.87,0.02,0.01,-0.00
583.41,2.63,2.62,2.63,2.62,-2.61,-2.27,-2.80,0.01,0.02,0.01
589.25,2.58,2.56,2.58,2.56,-2.56,-2.22,-2.72,0.02,0.02,0.02
595.14,2.52,2.49,2.52,2.49,-2.50,-2.17,-2.65,0.02,0.02,0.03
601.09,2.47,2.43,2.47,2.42,-2.43,-2.12,-2.57,0.03,0.04,0.04
607.10,2.42,2.35,2.42,2.36,-2.37,-2.07,-2.49,0.05,0.06,0.07
613.17,2.39,2.30,2.39,2.30,-2.30,-2.02,-2.42,0.09,0.09,0.09
619.30,2.35,2.24,2.34,2.24,-2.23,-1.98,-2.34,0.12,0.11,0.11
625.50,2.30,2.17,2.30,2.17,-2.16,-1.93,-2.27,0.13,0.13,0.13
631.75,2.24,2.10,2.24,2.10,-2.10,-1.88,-2.19,0.14,0.14,0.14
638.07,2.19,2.03,2.18,2.03,-2.03,-1.83,-2.12,0.15,0.15,0.16
644.45,2.13,1.95,2.13,1.96,-1.97,-1.79,-2.05,0.16,0.16,0.18
650.89,2.09,1.90,2.09,1.90,-1.90,-1.74,-1.97,0.19,0.19,0.19
657.40,2.05,1.83,2.05,1.84,-1.83,-1.69,-1.90,0.21,0.21,0.22
663.98,2.01,1.78,2.01,1.78,-1.77,-1.65,-1.83,0.24,0.24,0.23
670.62,1.96,1.71,1.96,1.71,-1.70,-1.60,-1.76,0.25,0.25,0.25
677.32,1.91,1.64,1.90,1.64,-1.64,-1.55,-1.69,0.27,0.26,0.27
684.10,1.85,1.56,1.85,1.57,-1.58,-1.51,-1.63,0.27,0.27,0.29
690.94,1.80,1.49,1.80,1.50,-1.51,-1.46,-1.56,0.28,0.29,0.31
697.85,1.77,1.45,1.76,1.45,-1.45,-1.41,-1.50,0.32,0.32,0.31
704.83,1.73,1.39,1.73,1.39,-1.38,-1.37,-1.43,0.35,0.35,0.33
711.87,1.69,1.33,1.68,1.33,-1.32,-1.32,-1.37,0.37,0.37,0.35
718.99,1.63,1.26,1.63,1.26,-1.25,-1.27,-1.31,0.38,0.38,0.36
726.18,1.57,1.18,1.57,1.19,-1.19,-1.22,-1.25,0.38,0.38,0.38
733.44,1.51,1.11,1.51,1.11,-1.12,-1.18,-1.19,0.39,0.38,0.39
740.78,1.45,1.03,1.45,1.04,-1.06,-1.13,-1.13,0.39,0.40,0.41
748.19,1.41,0.97,1.41,0.98,-0.99,-1.08,-1.07,0.42,0.42,0.43
755.67,1.38,0.93,1.37,0.93,-0.92,-1.03,-1.01,0.46,0.45,0.44
763.23,1.34,0.88,1.33,0.87,-0.86,-0.98,-0.96,0.48,0.47,0.45
770.86,1.28,0.80,1.28,0.81,-0.80,-0.93,-0.90,0.48,0.48,0.47
778.57,1.22,0.73,1.22,0.73,-0.74,-0.87,-0.85,0.48,0.48,0.48
786.35,1.17,0.66,1.17,0.67,-0.68,-0.82,-0.80,0.49,0.49,0.50
794.22,1.13,0.60,1.13,0.61,-0.61,-0.76,-0.74,0.51,0.51,0.52
802.16,1.09,0.55,1.09,0.55,-0.55,-0.71,-0.69,0.54,0.54,0.53
810.18,1.05,0.50,1.04,0.50,-0.49,-0.65,-0.64,0.56,0.55,0.54
818.28,1.00,0.43,1.00,0.44,-0.43,-0.59,-0.59,0.57,0.57,0.56
826.46,0.95,0.37,0.95,0.37,-0.37,-0.53,-0.54,0.57,0.57,0.57
834.73,0.90,0.30,0.90,0.31,-0.32,-0.46,-0.49,0.58,0.58,0.59
843.08,0.85,0.24,0.85,0.25,-0.26,-0.39,-0.44,0.59,0.60,0.60
851.51,0.81,0.20,0.81,0.20,-0.19,-0.33,-0.40,0.61,0.61,0.60
860.02,0.77,0.14,0.77,0.14,-0.13,-0.25,-0.35,0.64,0.63,0.62
868.62,0.72,0.08,0.71,0.08,-0.07,-0.18,-0.30,0.65,0.64,0.63
877.31,0.66,0.01,0.65,0.01,-0.01,-0.10,-0.26,0.65,0.65,0.64
886.08,0.59,-0.07,0.59,-0.06,0.05,-0.02,-0.21,0.64,0.64,0.65
894.94,0.53,-0.12,0.53,-0.12,0.11,0.06,-0.16,0.64,0.64,0.64
903.89,0.48,-0.18,0.48,-0.18,0.17,0.14,-0.12,0.65,0.64,0.65
912.93,0.43,-0.23,0.43,-0.23,0.23,0.22,-0.07,0.65,0.66,0.65
922.06,0.39,-0.29,0.39,-0.28,0.28,0.30,-0.03,0.67,0.67,0.67
931.28,0.35,-0.32,0.34,-0.32,0.33,0.38,0.02,0.68,0.67,0.66
940.59,0.29,-0.38,0.29,-0.37,0.38,0.45,0.06,0.67,0.67,0.66
950.00,0.23,-0.43,0.23,-0.43,0.43,0.51,0.10,0.65,0.65,0.65
959.50,0.17,-0.48,0.17,-0.48,0.47,0.57,0.15,0.63,0.64,0.64
969.09,0.12,-0.53,0.12,-0.52,0.51,0.61,0.19,0.63,0.63,0.64
978.78,0.09,-0.55,0.08,-0.55,0.55,0.65,0.24,0.63,0.63,0.63
988.57,0.05,-0.58,0.05,-0.57,0.58,0.67,0.28,0.63,0.63,0.62
998.46,0.01,-0.60,0.01,-0.60,0.61,0.69,0.32,0.62,0.62,0.60
1008.44,-0.04,-0.63,-0.04,-0.63,0.63,0.69,0.37,0.59,0.59,0.58
1018.53,-0.09,-0.67,-0.09,-0.66,0.65,0.70,0.41,0.56,0.56,0.57
1028.71,-0.14,-0.70,-0.14,-0.69,0.67,0.69,0.45,0.53,0.53,0.55
1039.00,-0.18,-0.70,-0.18,-0.70,0.69,0.69,0.50,0.51,0.51,0.51
1049.39,-0.22,-0.71,-0.22,-0.71,0.71,0.68,0.54,0.49,0.49,0.48
1059.88,-0.25,-0.71,-0.26,-0.71,0.73,0.68,0.59,0.47,0.47,0.45
1070.48,-0.30,-0.74,-0.30,-0.73,0.74,0.67,0.63,0.44,0.44,0.43
1081.19,-0.35,-0.75,-0.35,-0.75,0.75,0.67,0.68,0.40,0.40,0.39
1092.00,-0.41,-0.78,-0.41,-0.77,0.76,0.68,0.72,0.35,0.35,0.36
1102.92,-0.46,-0.80,-0.46,-0.79,0.78,0.68,0.77,0.31,0.32,0.33
1113.95,-0.50,-0.80,-0.50,-0.80,0.79,0.69,0.82,0.29,0.29,0.29
1125.09,-0.53,-0.81,-0.54,-0.80,0.81,0.70,0.87,0.27,0.27,0.27
1136.34,-0.57,-0.81,-0.58,-0.81,0.82,0.72,0.91,0.25,0.25,0.23
1147.70,-0.62,-0.84,-0.62,-0.83,0.84,0.73,0.96,0.22,0.22,0.21
1159.18,-0.67,-0.86,-0.67,-0.85,0.86,0.76,1.01,0.18,0.18,0.18
1170.77,-0.72,-0.88,-0.72,-0.88,0.87,0.78,1.06,0.15,0.15,0.15
1182.48,-0.77,-0.90,-0.77,-0.90,0.89,0.81,1.12,0.12,0.12,0.12
1194.30,-0.82,-0.93,-0.82,-0.92,0.92,0.84,1.17,0.10,0.10,0.10
1206.25,-0.86,-0.95,-0.87,-0.95,0.94,0.87,1.22,0.08,0.08,0.08
1218.31,-0.91,-0.98,-0.91,-0.97,0.97,0.91,1.28,0.06,0.06,0.06
1230.49,-0.95,-1.00,-0.95,-1.00,1.00,0.94,1.33,0.05,0.05,0.04
1242.80,-0.99,-1.02,-0.99,-1.03,1.03,0.98,1.39,0.04,0.04,0.03
1255.22,-1.02,-1.06,-1.03,-1.06,1.06,1.03,1.45,0.04,0.03,0.03
1267.78,-1.06,-1.10,-1.06,-1.10,1.10,1.07,1.51,0.03,0.04,0.04
1280.45,-1.09,-1.14,-1.09,-1.14,1.14,1.12,1.57,0.05,0.05,0.04
1293.26,-1.12,-1.18,-1.12,-1.18,1.18,1.17,1.63,0.06,0.06,0.06
1306.19,-1.15,-1.22,-1.16,-1.23,1.24,1.22,1.70,0.08,0.08,0.07
1319.25,-1.19,-1.28,-1.19,-1.28,1.29,1.28,1.76,0.10,0.10,0.09
1332.45,-1.23,-1.34,-1.23,-1.35,1.35,1.33,1.83,0.12,0.12,0.11
1345.77,-1.27,-1.41,-1.27,-1.42,1.41,1.39,1.90,0.14,0.14,0.14
1359.23,-1.31,-1.49,-1.31,-1.49,1.48,1.45,1.97,0.17,0.17,0.18
1372.82,-1.34,-1.55,-1.34,-1.56,1.54,1.52,2.04,0.20,0.20,0.21
1386.55,-1.36,-1.62,-1.36,-1.62,1.61,1.59,2.12,0.25,0.25,0.26
1400.41,-1.37,-1.67,-1.37,-1.68,1.68,1.65,2.19,0.31,0.30,0.30
1414.42,-1.39,-1.74,-1.39,-1.74,1.75,1.73,2.27,0.36,0.36,0.35
1428.56,-1.41,-1.80,-1.42,-1.81,1.82,1.80,2.35,0.41,0.41,0.39
1442.85,-1.45,-1.89,-1.45,-1.89,1.90,1.88,2.43,0.45,0.45,0.44
1457.28,-1.48,-1.98,-1.48,-1.98,1.98,1.96,2.52,0.50,0.50,0.50
1471.85,-1.52,-2.07,-1.52,-2.07,2.07,2.05,2.60,0.55,0.55,0.55
1486.57,-1.55,-2.16,-1.56,-2.17,2.17,2.13,2.69,0.61,0.61,0.61
1501.43,-1.59,-2.26,-1.59,-2.27,2.26,2.22,2.78,0.67,0.67,0.67
1516.45,-1.62,-2.36,-1.62,-2.36,2.36,2.32,2.87,0.74,0.74,0.74
1531.61,-1.64,-2.46,-1.64,-2.46,2.46,2.41,2.96,0.82,0.82,0.82
1546.93,-1.66,-2.55,-1.67,-2.56,2.56,2.52,3.05,0.90,0.89,0.89
1562.40,-1.69,-2.66,-1.69,-2.66,2.66,2.62,3.15,0.97,0.97,0.97
1578.02,-1.72,-2.77,-1.72,-2.77,2.77,2.73,3.24,1.05,1.05,1.05
1593.80,-1.75,-2.86,-1.75,-2.87,2.88,2.84,3.34,1.13,1.13,1.11
1609.74,-1.77,-2.97,-1.78,-2.98,2.99,2.95,3.44,1.22,1.21,1.20
1625.84,-1.80,-3.09,-1.80,-3.09,3.10,3.07,3.54,1.29,1.29,1.29
1642.10,-1.82,-3.21,-1.82,-3.21,3.20,3.19,3.64,1.38,1.38,1.39
1658.52,-1.84,-3.32,-1.84,-3.32,3.31,3.32,3.74,1.47,1.47,1.48
1675.10,-1.85,-3.42,-1.85,-3.42,3.41,3.45,3.83,1.56,1.56,1.57
1691.85,-1.85,-3.51,-1.85,-3.52,3.51,3.58,3.93,1.66,1.66,1.66
1708.77,-1.85,-3.61,-1.85,-3.61,3.61,3.71,4.03,1.76,1.77,1.76
1725.86,-1.84,-3.71,-1.84,-3.71,3.72,3.85,4.13,1.87,1.87,1.87
1743.12,-1.83,-3.80,-1.84,-3.81,3.82,3.99,4.22,1.99,1.98,1.97
1760.55,-1.83,-3.91,-1.83,-3.91,3.93,4.13,4.31,2.09,2.09,2.08
1778.15,-1.83,-4.03,-1.83,-4.03,4.04,4.27,4.40,2.20,2.21,2.20
1795.94,-1.83,-4.13,-1.84,-4.15,4.15,4.42,4.49,2.32,2.32,2.30
1813.90,-1.84,-4.27,-1.84,-4.27,4.27,4.56,4.57,2.43,2.43,2.43
1832.03,-1.85,-4.39,-1.85,-4.40,4.39,4.70,4.65,2.54,2.54,2.54
1850.36,-1.85,-4.52,-1.85,-4.52,4.51,4.84,4.73,2.66,2.66,2.67
1868.86,-1.84,-4.64,-1.84,-4.64,4.63,4.98,4.80,2.79,2.79,2.80
1887.55,-1.83,-4.75,-1.83,-4.76,4.75,5.11,4.86,2.92,2.92,2.92
1906.42,-1.81,-4.86,-1.81,-4.87,4.87,5.24,4.92,3.06,3.06,3.05
1925.49,-1.79,-4.97,-1.79,-4.97,4.98,5.36,4.97,3.19,3.19,3.18
1944.74,-1.76,-5.08,-1.77,-5.08,5.09,5.48,5.01,3.33,3.32,3.32
1964.19,-1.74,-5.18,-1.74,-5.19,5.19,5.59,5.05,3.45,3.45,3.44
1983.83,-1.71,-5.29,-1.72,-5.29,5.29,5.68,5.08,3.58,3.58,3.58
2003.67,-1.69,-5.39,-1.69,-5.40,5.39,5.77,5.11,3.69,3.69,3.70
2023.71,-1.67,-5.49,-1.67,-5.49,5.48,5.85,5.12,3.81,3.81,3.82
2043.94,-1.64,-5.57,-1.64,-5.57,5.57,5.91,5.13,3.93,3.93,3.93
2064.38,-1.60,-5.63,-1.60,-5.64,5.66,5.96,5.13,4.05,4.05,4.03
2085.03,-1.56,-5.71,-1.57,-5.72,5.74,6.00,5.13,4.17,4.17,4.15
2105.88,-1.53,-5.79,-1.53,-5.79,5.81,6.03,5.12,4.27,4.28,4.26
2126.94,-1.49,-5.86,-1.49,-5.87,5.87,6.05,5.10,4.38,4.37,4.37
2148.20,-1.46,-5.94,-1.46,-5.94,5.92,6.06,5.08,4.45,4.46,4.48
2169.69,-1.42,-6.01,-1.42,-6.02,5.96,6.06,5.05,4.53,4.53,4.59
2191.38,-1.39,-6.09,-1.39,-6.10,5.98,6.06,5.02,4.59,4.59,4.70
2213.30,-1.36,-6.17,-1.36,-6.17,6.00,6.05,4.98,4.64,4.64,4.81
2235.43,-1.34,-6.25,-1.34,-6.26,6.01,6.04,4.94,4.67,4.67,4.91
2257.78,-1.31,-6.32,-1.31,-6.33,6.01,6.03,4.90,4.70,4.70,5.01
2280.36,-1.28,-6.40,-1.28,-6.40,6.01,6.02,4.85,4.73,4.73,5.12
2303.17,-1.22,-6.44,-1.22,-6.45,6.00,6.02,4.80,4.78,4.78,5.22
2326.20,-1.15,-6.49,-1.16,-6.50,6.00,6.03,4.75,4.85,4.84,5.34
2349.46,-1.07,-6.52,-1.07,-6.51,6.01,6.04,4.70,4.94,4.94,5.45
2372.95,-0.96,-6.50,-0.96,-6.51,6.03,6.05,4.65,5.07,5.07,5.54
2396.68,-0.83,-6.45,-0.83,-6.46,6.04,6.06,4.60,5.21,5.21,5.62
2420.65,-0.67,-6.38,-0.67,-6.38,6.04,6.07,4.55,5.37,5.37,5.71
2444.86,-0.48,-6.27,-0.49,-6.28,6.02,6.04,4.50,5.53,5.53,5.79
2469.31,-0.28,-6.15,-0.28,-6.16,5.96,5.98,4.45,5.68,5.68,5.87
2494.00,-0.05,-6.01,-0.05,-6.01,5.87,5.86,4.41,5.82,5.82,5.96
2518.94,0.21,-5.82,0.21,-5.82,5.74,5.69,4.36,5.95,5.95,6.03
2544.13,0.50,-5.59,0.50,-5.60,5.57,5.48,4.32,6.07,6.07,6.09
2569.57,0.81,-5.35,0.81,-5.35,5.37,5.22,4.28,6.17,6.17,6.16
2595.27,1.13,-5.10,1.13,-5.10,5.12,4.94,4.24,6.25,6.25,6.22
2621.22,1.45,-4.83,1.45,-4.83,4.86,4.66,4.20,6.30,6.30,6.28
2647.43,1.77,-4.56,1.77,-4.56,4.57,4.37,4.17,6.34,6.34,6.33
2673.90,2.08,-4.28,2.08,-4.29,4.29,4.10,4.14,6.37,6.37,6.36
2700.64,2.39,-4.01,2.39,-4.01,4.02,3.84,4.11,6.41,6.41,6.40
2727.65,2.68,-3.74,2.68,-3.75,3.76,3.59,4.08,6.44,6.44,6.42
2754.93,2.95,-3.50,2.95,-3.51,3.51,3.35,4.06,6.46,6.46,6.45
2782.48,3.20,-3.28,3.19,-3.28,3.28,3.14,4.05,6.48,6.47,6.47
2810.30,3.42,-3.06,3.41,-3.06,3.06,2.93,4.03,6.48,6.47,6.48
2838.40,3.61,-2.85,3.61,-2.85,2.85,2.74,4.02,6.46,6.47,6.46
2866.79,3.79,-2.66,3.79,-2.67,2.67,2.57,4.01,6.46,6.46,6.45
2895.46,3.95,-2.49,3.94,-2.50,2.50,2.41,4.01,6.45,6.44,6.44
2924.41,4.07,-2.35,4.07,-2.35,2.35,2.26,4.01,6.42,6.42,6.42
2953.65,4.18,-2.21,4.18,-2.22,2.22,2.14,4.01,6.40,6.40,6.39
2983.19,4.26,-2.11,4.26,-2.11,2.11,2.04,4.01,6.37,6.37,6.37
3013.02,4.32,-2.02,4.32,-2.02,2.02,1.95,4.02,6.34,6.34,6.34
3043.15,4.36,-1.95,4.35,-1.96,1.96,1.89,4.03,6.32,6.31,6.31
3073.58,4.37,-1.90,4.37,-1.91,1.91,1.86,4.05,6.28,6.28,6.27
3104.32,4.36,-1.89,4.36,-1.89,1.89,1.85,4.06,6.24,6.25,6.25
3135.36,4.33,-1.88,4.33,-1.89,1.88,1.86,4.08,6.21,6.21,6.21
3166.72,4.27,-1.90,4.27,-1.90,1.90,1.90,4.11,6.17,6.17,6.17
3198.38,4.19,-1.93,4.18,-1.94,1.95,1.95,4.13,6.14,6.13,6.12
3230.37,4.07,-2.00,4.07,-2.00,2.01,2.03,4.16,6.08,6.08,6.07
3262.67,3.93,-2.08,3.93,-2.09,2.10,2.13,4.19,6.03,6.03,6.01
3295.30,3.77,-2.20,3.77,-2.20,2.20,2.24,4.22,5.97,5.97,5.97
3328.25,3.60,-2.32,3.60,-2.33,2.33,2.36,4.26,5.92,5.92,5.92
3361.53,3.41,-2.47,3.41,-2.47,2.47,2.50,4.29,5.87,5.87,5.87
3395.15,3.20,-2.62,3.20,-2.62,2.62,2.64,4.33,5.82,5.82,5.82
3429.10,2.99,-2.77,2.98,-2.78,2.78,2.79,4.37,5.77,5.77,5.76
3463.39,2.76,-2.95,2.76,-2.95,2.95,2.95,4.40,5.71,5.71,5.71
3498.03,2.54,-3.12,2.54,-3.13,3.13,3.11,4.44,5.67,5.66,5.66
3533.01,2.31,-3.30,2.31,-3.30,3.31,3.27,4.48,5.61,5.61,5.61
3568.34,2.08,-3.48,2.08,-3.48,3.48,3.43,4.52,5.56,5.56,5.56
3604.02,1.86,-3.65,1.85,-3.66,3.66,3.60,4.55,5.52,5.51,5.51
3640.06,1.63,-3.84,1.63,-3.83,3.83,3.76,4.59,5.45,5.46,5.47
3676.46,1.43,-3.99,1.43,-3.99,3.99,3.92,4.62,5.41,5.42,5.42
3713.22,1.25,-4.14,1.24,-4.14,4.14,4.07,4.65,5.38,5.38,5.38
3750.36,1.08,-4.28,1.08,-4.28,4.28,4.22,4.68,5.35,5.35,5.36
3787.86,0.93,-4.40,0.93,-4.40,4.40,4.36,4.71,5.33,5.33,5.33
3825.74,0.81,-4.51,0.80,-4.52,4.52,4.49,4.73,5.32,5.32,5.32
3864.00,0.70,-4.61,0.70,-4.61,4.62,4.61,4.75,5.31,5.31,5.31
3902.64,0.61,-4.70,0.61,-4.70,4.70,4.71,4.76,5.31,5.31,5.31
3941.66,0.54,-4.78,0.53,-4.78,4.77,4.80,4.77,5.31,5.31,5.31
3981.08,0.48,-4.85,0.48,-4.85,4.84,4.87,4.78,5.31,5.32,5.33
4020.89,0.45,-4.90,0.45,-4.89,4.89,4.93,4.78,5.34,5.34,5.35
4061.10,0.44,-4.92,0.43,-4.93,4.93,4.98,4.78,5.37,5.36,5.36
4101.71,0.43,-4.94,0.42,-4.95,4.96,5.01,4.78,5.39,5.39,5.37
4142.73,0.42,-4.98,0.42,-4.98,4.99,5.04,4.77,5.41,5.41,5.40
4184.15,0.41,-5.02,0.41,-5.01,5.02,5.06,4.76,5.42,5.43,5.42
4226.00,0.41,-5.04,0.41,-5.04,5.04,5.08,4.74,5.45,5.45,5.45
4268.26,0.41,-5.06,0.41,-5.06,5.06,5.09,4.72,5.47,5.47,5.47
4310.94,0.41,-5.08,0.41,-5.08,5.08,5.11,4.70,5.49,5.50,5.49
4354.05,0.41,-5.09,0.40,-5.10,5.11,5.12,4.68,5.52,5.51,5.50
4397.59,0.39,-5.12,0.38,-5.13,5.14,5.14,4.65,5.53,5.52,5.51
4441.56,0.35,-5.17,0.35,-5.16,5.17,5.15,4.62,5.51,5.52,5.51
4485.98,0.31,-5.21,0.31,-5.20,5.20,5.18,4.59,5.50,5.51,5.51
4530.84,0.27,-5.22,0.26,-5.23,5.22,5.20,4.56,5.49,5.48,5.48
4576.15,0.20,-5.27,0.20,-5.26,5.25,5.23,4.53,5.45,5.45,5.46
4621.91,0.13,-5.29,0.13,-5.29,5.28,5.26,4.49,5.41,5.41,5.41
4668.13,0.06,-5.32,0.06,-5.31,5.30,5.29,4.46,5.36,5.36,5.37
4714.81,-0.02,-5.34,-0.02,-5.33,5.32,5.33,4.43,5.30,5.30,5.31
4761.96,-0.10,-5.35,-0.11,-5.35,5.34,5.37,4.40,5.24,5.24,5.24
4809.58,-0.20,-5.38,-0.20,-5.37,5.37,5.41,4.37,5.16,5.17,5.17
4857.67,-0.30,-5.40,-0.30,-5.39,5.39,5.45,4.35,5.09,5.09,5.09
4906.25,-0.41,-5.42,-0.42,-5.42,5.43,5.49,4.32,5.02,5.01,5.00
4955.31,-0.54,-5.46,-0.54,-5.46,5.48,5.54,4.30,4.93,4.93,4.91
5004.87,-0.68,-5.51,-0.68,-5.51,5.54,5.58,4.28,4.85,4.86,4.82
5054.91,-0.83,-5.59,-0.84,-5.58,5.61,5.63,4.26,4.78,4.77,4.75
5105.46,-1.00,-5.67,-1.00,-5.67,5.69,5.67,4.25,4.68,4.68,4.66
5156.52,-1.17,-5.76,-1.17,-5.76,5.76,5.72,4.24,4.59,4.59,4.58
5208.08,-1.35,-5.86,-1.35,-5.85,5.83,5.76,4.23,4.48,4.48,4.50
5260.16,-1.52,-5.95,-1.52,-5.95,5.90,5.81,4.22,4.37,4.37,4.42
5312.77,-1.70,-6.05,-1.70,-6.04,5.95,5.85,4.22,4.25,4.24,4.34
5365.89,-1.88,-6.13,-1.89,-6.13,5.98,5.89,4.23,4.10,4.10,4.24
5419.55,-2.08,-6.24,-2.08,-6.24,6.01,5.93,4.23,3.92,3.92,4.15
5473.75,-2.28,-6.35,-2.28,-6.34,6.02,5.96,4.25,3.73,3.73,4.06
5528.49,-2.49,-6.46,-2.49,-6.45,6.02,6.00,4.26,3.52,3.53,3.96
5583.77,-2.68,-6.55,-2.69,-6.54,6.01,6.03,4.28,3.33,3.32,3.86
5639.61,-2.88,-6.63,-2.89,-6.63,6.00,6.05,4.31,3.12,3.11,3.74
5696.00,-3.08,-6.72,-3.09,-6.70,6.00,6.07,4.34,2.92,2.91,3.63
5752.96,-3.27,-6.77,-3.27,-6.75,6.00,6.09,4.37,2.73,2.73,3.49
5810.49,-3.44,-6.80,-3.45,-6.78,6.00,6.11,4.41,2.56,2.55,3.35
5868.60,-3.60,-6.79,-3.62,-6.79,6.00,6.11,4.45,2.40,2.38,3.18
5927.28,-3.77,-6.79,-3.79,-6.77,6.00,6.12,4.50,2.23,2.21,3.01
5986.56,-3.94,-6.77,-3.96,-6.74,6.00,6.11,4.55,2.06,2.04,2.82
6046.42,-4.11,-6.72,-4.14,-6.69,6.01,6.10,4.61,1.90,1.87,2.60
6106.89,-4.28,-6.64,-4.32,-6.62,6.02,6.08,4.67,1.74,1.70,2.35
6167.96,-4.45,-6.55,-4.51,-6.53,6.02,6.05,4.74,1.57,1.52,2.09
6229.64,-4.62,-6.45,-4.69,-6.42,6.02,6.02,4.81,1.39,1.33,1.82
6291.93,-4.78,-6.33,-4.87,-6.30,5.99,5.97,4.89,1.21,1.13,1.54
6354.85,-4.92,-6.18,-5.04,-6.17,5.96,5.92,4.97,1.03,0.92,1.25
6418.40,-5.06,-6.01,-5.21,-6.02,5.90,5.86,5.05,0.84,0.69,0.94
6482.58,-5.20,-5.83,-5.40,-5.88,5.84,5.80,5.14,0.63,0.44,0.62
6547.41,-5.36,-5.66,-5.60,-5.75,5.76,5.74,5.23,0.40,0.16,0.29
6612.88,-5.53,-5.49,-5.82,-5.65,5.68,5.69,5.33,0.15,-0.14,-0.05
6679.01,-5.72,-5.33,-6.05,-5.57,5.60,5.66,5.43,-0.12,-0.45,-0.40
6745.80,-5.93,-5.15,-6.28,-5.50,5.53,5.64,5.53,-0.40,-0.75,-0.79
6813.26,-6.14,-4.95,-6.51,-5.46,5.48,5.64,5.63,-0.66,-1.03,-1.20
6881.39,-6.35,-4.73,-6.73,-5.44,5.45,5.65,5.74,-0.90,-1.28,-1.63
6950.21,-6.58,-4.53,-6.93,-5.44,5.46,5.66,5.84,-1.13,-1.48,-2.06
7019.71,-6.83,-4.32,-7.11,-5.47,5.48,5.66,5.95,-1.36,-1.63,-2.52
7089.91,-7.07,-4.09,-7.25,-5.51,5.51,5.66,6.05,-1.56,-1.74,-2.99
7160.81,-7.32,-3.84,-7.36,-5.56,5.56,5.65,6.16,-1.77,-1.81,-3.49
7232.41,-7.57,-3.58,-7.45,-5.61,5.61,5.64,6.25,-1.97,-1.84,-4.00
7304.74,-7.82,-3.33,-7.50,-5.66,5.66,5.62,6.35,-2.16,-1.84,-4.50
7377.79,-8.08,-3.11,-7.53,-5.71,5.71,5.59,6.44,-2.38,-1.83,-4.98
7451.56,-8.35,-2.92,-7.55,-5.76,5.75,5.55,6.52,-2.61,-1.80,-5.44
7526.08,-8.60,-2.74,-7.55,-5.79,5.78,5.52,6.59,-2.82,-1.77,-5.87
7601.34,-8.85,-2.59,-7.53,-5.80,5.80,5.48,6.66,-3.06,-1.74,-6.27
7677.35,-9.09,-2.50,-7.51,-5.81,5.81,5.43,6.71,-3.29,-1.71,-6.60
7754.13,-9.32,-2.44,-7.48,-5.80,5.80,5.39,6.75,-3.52,-1.68,-6.89
7831.67,-9.55,-2.45,-7.45,-5.79,5.78,5.34,6.77,-3.77,-1.66,-7.11
7909.98,-9.76,-2.51,-7.41,-5.76,5.76,5.29,6.78,-4.01,-1.65,-7.26
7989.08,-9.98,-2.65,-7.36,-5.72,5.72,5.24,6.78,-4.26,-1.64,-7.34
8068.98,-10.22,-2.87,-7.31,-5.67,5.67,5.18,6.76,-4.55,-1.64,-7.36
8149.67,-10.45,-3.14,-7.26,-5.62,5.62,5.13,6.72,-4.83,-1.64,-7.32
8231.16,-10.68,-3.49,-7.21,-5.56,5.56,5.08,6.67,-5.13,-1.65,-7.20
8313.47,-10.91,-3.90,-7.15,-5.49,5.49,5.03,6.60,-5.42,-1.66,-7.02
8396.61,-11.14,-4.38,-7.08,-5.42,5.42,4.97,6.52,-5.72,-1.66,-6.77
8480.57,-11.36,-4.91,-7.01,-5.34,5.34,4.92,6.43,-6.02,-1.67,-6.46
8565.38,-11.58,-5.45,-6.94,-5.26,5.26,4.86,6.32,-6.32,-1.68,-6.14
8651.03,-11.77,-6.01,-6.86,-5.18,5.18,4.81,6.20,-6.59,-1.68,-5.77
8737.54,-11.95,-6.58,-6.78,-5.10,5.10,4.76,6.07,-6.85,-1.68,-5.38
8824.92,-12.10,-7.13,-6.70,-5.02,5.02,4.71,5.93,-7.09,-1.69,-4.98
8913.17,-12.24,-7.68,-6.62,-4.93,4.93,4.65,5.79,-7.31,-1.69,-4.57
9002.30,-12.35,-8.20,-6.54,-4.85,4.85,4.60,5.64,-7.50,-1.69,-4.16
9092.32,-12.43,-8.68,-6.46,-4.77,4.77,4.55,5.49,-7.66,-1.69,-3.76
9183.25,-12.46,-9.09,-6.38,-4.69,4.69,4.50,5.33,-7.77,-1.69,-3.38
9275.08,-12.45,-9.44,-6.31,-4.61,4.61,4.45,5.17,-7.84,-1.69,-3.02
9367.83,-12.38,-9.72,-6.23,-4.54,4.54,4.40,5.01,-7.85,-1.70,-2.67
9461.51,-12.25,-9.91,-6.16,-4.46,4.46,4.35,4.85,-7.79,-1.70,-2.35
9556.12,-12.04,-10.01,-6.10,-4.39,4.39,4.30,4.70,-7.65,-1.71,-2.04
9651.68,-11.75,-9.99,-6.04,-4.32,4.32,4.26,4.54,-7.43,-1.72,-1.77
9748.20,-11.39,-9.89,-5.99,-4.26,4.26,4.21,4.39,-7.13,-1.73,-1.51
9845.68,-10.94,-9.68,-5.94,-4.20,4.20,4.16,4.24,-6.74,-1.74,-1.27
9944.14,-10.43,-9.40,-5.90,-4.14,4.14,4.12,4.09,-6.29,-1.76,-1.04
10043.58,-9.83,-9.01,-5.87,-4.08,4.09,4.07,3.95,-5.74,-1.78,-0.83
10144.02,-9.17,-8.58,-6.01,-4.04,4.04,4.03,3.81,-5.13,-1.97,-0.60
10245.46,-8.46,-8.08,-6.15,-4.00,3.99,3.98,3.67,-4.47,-2.16,-0.39
10347.91,-7.72,-7.54,-6.30,-3.95,3.95,3.94,3.54,-3.77,-2.35,-0.19
10451.39,-6.96,-6.97,-6.45,-3.91,3.90,3.90,3.42,-3.06,-2.54,0.00
10555.91,-6.18,-6.36,-6.61,-3.86,3.86,3.86,3.30,-2.32,-2.74,0.17
10661.46,-5.43,-5.76,-6.77,-3.82,3.82,3.81,3.18,-1.61,-2.95,0.33
10768.08,-4.70,-5.18,-6.94,-3.78,3.78,3.77,3.07,-0.93,-3.16,0.47
10875.76,-4.01,-4.61,-7.11,-3.73,3.73,3.73,2.97,-0.28,-3.37,0.59
10984.52,-3.38,-4.08,-7.28,-3.69,3.69,3.69,2.87,0.31,-3.60,0.69
11094.36,-2.83,-3.61,-7.46,-3.64,3.64,3.65,2.77,0.81,-3.82,0.77
11205.31,-2.35,-3.19,-7.65,-3.60,3.60,3.61,2.68,1.25,-4.05,0.83
11317.36,-1.93,-2.80,-7.84,-3.55,3.55,3.57,2.60,1.62,-4.29,0.86
11430.53,-1.59,-2.45,-8.04,-3.51,3.51,3.53,2.52,1.91,-4.53,0.85
11544.84,-1.33,-2.15,-8.24,-3.46,3.46,3.49,2.44,2.13,-4.77,0.81
11660.29,-1.12,-1.87,-8.44,-3.42,3.42,3.45,2.37,2.29,-5.02,0.74
11776.89,-0.96,-1.60,-8.65,-3.37,3.37,3.41,2.30,2.41,-5.28,0.63
11894.66,-0.85,-1.36,-8.86,-3.32,3.32,3.37,2.24,2.47,-5.54,0.50
12013.60,-0.78,-1.11,-9.08,-3.28,3.28,3.33,2.18,2.50,-5.80,0.32
12133.74,-0.76,-0.88,-9.31,-3.23,3.23,3.29,2.13,2.47,-6.08,0.11
12255.08,-0.77,-0.63,-9.53,-3.18,3.18,3.25,2.08,2.41,-6.35,-0.15
12377.63,-0.80,-0.36,-9.77,-3.14,3.14,3.21,2.04,2.34,-6.63,-0.45
12501.41,-0.89,-0.11,-10.01,-3.09,3.09,3.17,2.00,2.20,-6.92,-0.79
12626.42,-1.01,0.16,-10.25,-3.04,3.04,3.13,1.97,2.03,-7.21,-1.18
12752.68,-1.18,0.41,-10.50,-3.00,3.00,3.09,1.94,1.81,-7.50,-1.60
12880.21,-1.39,0.67,-10.75,-2.95,2.95,3.05,1.92,1.56,-7.80,-2.07
13009.01,-1.68,0.86,-11.00,-2.90,2.90,3.00,1.91,1.22,-8.10,-2.55
13139.10,-2.03,1.03,-11.27,-2.85,2.85,2.96,1.89,0.82,-8.41,-3.07
13270.49,-2.47,1.11,-11.53,-2.80,2.80,2.92,1.89,0.33,-8.73,-3.59
13403.20,-2.95,1.17,-11.80,-2.76,2.76,2.87,1.89,-0.20,-9.05,-4.13
13537.23,-3.49,1.17,-12.08,-2.71,2.71,2.83,1.90,-0.79,-9.37,-4.67
13672.60,-4.09,1.13,-12.36,-2.66,2.66,2.78,1.91,-1.43,-9.70,-5.23
13809.33,-4.75,1.03,-12.65,-2.61,2.61,2.73,1.93,-2.14,-10.04,-5.79
13947.42,-5.43,0.91,-12.94,-2.56,2.56,2.69,1.96,-2.87,-10.38,-6.35
14086.90,-6.15,0.75,-13.23,-2.51,2.51,2.64,2.00,-3.64,-10.72,-6.91
14227.77,-6.90,0.54,-13.53,-2.46,2.46,2.59,2.04,-4.44,-11.07,-7.45
14370.04,-7.65,0.34,-13.83,-2.41,2.41,2.54,2.09,-5.24,-11.42,-8.00
14513.74,-8.40,0.13,-14.14,-2.36,2.36,2.49,2.15,-6.04,-11.78,-8.54
14658.88,-9.16,-0.10,-14.46,-2.31,2.31,2.43,2.21,-6.85,-12.15,-9.07
14805.47,-9.90,-0.31,-14.78,-2.26,2.26,2.38,2.29,-7.64,-12.52,-9.60
14953.52,-10.64,-0.52,-15.10,-2.21,2.21,2.32,2.36,-8.43,-12.89,-10.13
15103.06,-11.38,-0.70,-15.43,-2.16,2.16,2.27,2.44,-9.22,-13.27,-10.69
15254.09,-12.11,-0.86,-15.76,-2.11,2.11,2.21,2.51,-10.00,-13.65,-11.26
15406.63,-12.85,-1.03,-16.10,-2.06,2.06,2.15,2.58,-10.79,-14.04,-11.83
15560.70,-13.61,-1.23,-16.44,-2.01,2.01,2.09,2.63,-11.61,-14.43,-12.39
15716.30,-14.38,-1.43,-16.79,-1.95,1.95,2.03,2.67,-12.43,-14.83,-12.96
15873.47,-15.18,-1.67,-17.14,-1.90,1.90,1.97,2.69,-13.28,-15.24,-13.52
16032.20,-16.02,-1.91,-17.50,-1.85,1.85,1.90,2.67,-14.17,-15.64,-14.12
16192.52,-16.91,-2.10,-17.86,-1.80,1.80,1.84,2.63,-15.11,-16.06,-14.82
16354.45,-17.82,-2.29,-18.22,-1.75,1.75,1.77,2.54,-16.08,-16.48,-15.54
16517.99,-18.77,-2.51,-18.59,-1.69,1.69,1.70,2.43,-17.08,-16.90,-16.27
16683.17,-19.75,-2.71,-18.97,-1.64,1.64,1.63,2.29,-18.11,-17.33,-17.05
16850.01,-20.75,-2.93,-19.35,-1.59,1.59,1.56,2.13,-19.16,-17.76,-17.83
17018.51,-21.76,-3.12,-19.73,-1.54,1.54,1.49,1.96,-20.23,-18.20,-18.65
17188.69,-22.78,-3.21,-20.12,-1.48,1.48,1.42,1.78,-21.30,-18.64,-19.58
17360.58,-23.78,-3.27,-20.52,-1.43,1.43,1.34,1.60,-22.35,-19.09,-20.52
17534.18,-24.77,-3.31,-20.92,-1.37,1.37,1.27,1.43,-23.40,-19.54,-21.47
17709.53,-25.73,-3.33,-21.32,-1.32,1.32,1.20,1.26,-24.41,-20.00,-22.41
17886.62,-26.65,-3.31,-21.73,-1.27,1.27,1.12,1.11,-25.39,-20.46,-23.35
18065.49,-27.51,-3.27,-22.14,-1.21,1.21,1.04,0.97,-26.30,-20.93,-24.25
18246.14,-28.34,-3.13,-22.56,-1.16,1.16,0.97,0.85,-27.18,-21.40,-25.22
18428.60,-29.14,-2.97,-22.98,-1.10,1.10,0.89,0.73,-28.04,-21.88,-26.18
18612.89,-29.91,-2.80,-23.41,-1.05,1.05,0.82,0.63,-28.86,-22.36,-27.12
18799.02,-30.66,-2.62,-23.84,-0.99,0.99,0.75,0.54,-29.67,-22.85,-28.05
18987.01,-31.38,-2.43,-24.28,-0.94,0.94,0.67,0.46,-30.44,-23.34,-28.96
19176.88,-32.07,-2.13,-24.72,-0.88,0.88,0.60,0.39,-31.19,-23.84,-29.95
19368.65,-32.74,-1.81,-25.17,-0.83,0.83,0.53,0.33,-31.91,-24.34,-30.94
19562.33,-33.38,-1.48,-25.62,-0.77,0.77,0.46,0.27,-32.61,-24.85,-31.91
19757.96,-33.99,-1.14,-26.08,-0.72,0.72,0.40,0.22,-33.28,-25.36,-32.86
19955.54,-34.58,-0.78,-26.54,-0.66,0.66,0.34,0.18,-33.92,-25.88,-33.81
| CSV | 1 | vinzmc/AutoEq | results/referenceaudioanalyzer/referenceaudioanalyzer_siec_harman_in-ear_2019v2/Apple ME186 In-Ear Headphones/Apple ME186 In-Ear Headphones.csv | [
"MIT"
] |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="myArg1" select="'No Value Specified'"/>
<xsl:param name="myArg2" select="'No Value Specified'"/>
<xsl:param name="myArg3" select="'No Value Specified'"/>
<xsl:param name="myArg4" select="'No Value Specified'"/>
<xsl:param name="myArg5" select="'No Value Specified'"/>
<xsl:param name="myArg6" select="'No Value Specified'"/>
<xsl:template match="/">
<result>
1.<xsl:value-of select="$myArg1" />
2.<xsl:value-of select="$myArg2" />
3.<xsl:value-of select="$myArg3" />
4.<xsl:value-of select="$myArg4" />
5.<xsl:value-of select="$myArg5" />
6.<xsl:value-of select="$myArg6" />
</result>
</xsl:template>
</xsl:stylesheet> | XSLT | 3 | pyracanda/runtime | src/libraries/System.Private.Xml/tests/Xslt/TestFiles/TestData/XsltApi/showParam.xsl | [
"MIT"
] |
/* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_COMMON_SUBGRAPH_H_
#define TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_COMMON_SUBGRAPH_H_
#include <string>
#include "llvm/ADT/StringRef.h"
#include "mlir/IR/Operation.h" // from @llvm-project
namespace mlir {
namespace TFL {
namespace tac {
// Interface name here is the "hook" between the CallOp and FuncOps.
// Take the following example:
//
// call @func_1_CPU {tac.interface_name = "func_1"}
//
// "func_1" is the interface name where "func_1_cpu" is the real implementation
// we can have multiple FuncOps like "func_1_cpu" and "func_1_gpu" and they
// both implement "func_1".
//
// The attribute on the FuncOp means what it actually implements while the
// attribute on the CallOp means what it actually looks for.
constexpr char kInterfaceNameAttr[] = "tac.interface_name";
inline llvm::Optional<std::string> GetInterFaceName(Operation* op) {
auto name_attr = op->getAttrOfType<StringAttr>(kInterfaceNameAttr);
if (!name_attr) return llvm::None;
return name_attr.getValue().str();
}
} // namespace tac
} // namespace TFL
} // namespace mlir
#endif // TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_COMMON_SUBGRAPH_H_
| C | 5 | EricRemmerswaal/tensorflow | tensorflow/compiler/mlir/lite/experimental/tac/common/subgraph.h | [
"Apache-2.0"
] |
(kicad_pcb (version 20171130) (host pcbnew "(5.0.2)-1")
(general
(thickness 1.6)
(drawings 74)
(tracks 94)
(zones 0)
(modules 16)
(nets 21)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user hide)
(37 F.SilkS user)
(38 B.Mask user hide)
(39 F.Mask user hide)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 1)
(user_trace_width 0.4)
(user_trace_width 0.5)
(user_trace_width 1)
(user_trace_width 2)
(user_trace_width 3)
(trace_clearance 0.5)
(zone_clearance 0.22)
(zone_45_only yes)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(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)
(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 1.524 1.524)
(pad_drill 0.66)
(pad_to_mask_clearance 0.2)
(solder_mask_min_width 0.25)
(aux_axis_origin 100 100)
(grid_origin 100 100)
(visible_elements 7FFFFF1F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer false)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "HASwitchPlate.gerbers/"))
)
(net 0 "")
(net 1 /AC_L)
(net 2 /+5V)
(net 3 /LCD_TX)
(net 4 /LCD_RX)
(net 5 /GND)
(net 6 /AC_N)
(net 7 /+3.3V)
(net 8 /A0)
(net 9 /D0)
(net 10 /D1)
(net 11 /D2)
(net 12 /D8_DBG)
(net 13 "Net-(U2-Pad4)")
(net 14 "Net-(U2-Pad12)")
(net 15 "Net-(U2-Pad7)")
(net 16 "Net-(U2-Pad9)")
(net 17 "Net-(U2-Pad8)")
(net 18 /LCD_GND)
(net 19 "Net-(R1-Pad1)")
(net 20 /LCD_CTL)
(net_class Default "This is the default net class."
(clearance 0.5)
(trace_width 1)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /+3.3V)
(add_net /+5V)
(add_net /A0)
(add_net /D0)
(add_net /D1)
(add_net /D2)
(add_net /D8_DBG)
(add_net /GND)
(add_net /LCD_CTL)
(add_net /LCD_GND)
(add_net /LCD_RX)
(add_net /LCD_TX)
(add_net "Net-(R1-Pad1)")
(add_net "Net-(U2-Pad12)")
(add_net "Net-(U2-Pad4)")
(add_net "Net-(U2-Pad7)")
(add_net "Net-(U2-Pad8)")
(add_net "Net-(U2-Pad9)")
)
(net_class "High Voltage AC" ""
(clearance 2)
(trace_width 2)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /AC_L)
(add_net /AC_N)
)
(module Package_TO_SOT_THT:TO-92L_HandSolder (layer F.Cu) (tedit 5C39FB0E) (tstamp 5C3CB6A5)
(at 152.07 104.826)
(descr "TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path /5C306D5D)
(fp_text reference Q1 (at 1.27 -3.8) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value S8050 (at 1.27 2.79) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 1.27 0) (end 2.05 -2.45) (angle 117.6433766) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle -135) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end 0.45 -2.45) (angle -116.9763941) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle 135) (layer F.Fab) (width 0.1))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 4 2.01) (end 4 -3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -3.05) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.46 -3.05) (end 4 -3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer F.Fab) (width 0.1))
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 1.27 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.1 1.8) (drill 0.75 (offset 0 0.4)) (layers *.Cu *.Mask)
(net 5 /GND))
(pad 3 thru_hole roundrect (at 2.54 0) (size 1.1 1.8) (drill 0.75 (offset 0 0.4)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 18 /LCD_GND))
(pad 2 thru_hole roundrect (at 1.27 -1.27) (size 1.1 1.8) (drill 0.75 (offset 0 -0.4)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 20 /LCD_CTL))
(model ${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-92L.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module HASwitchPlate:ACDC-Converter_MeanWell-SLC03-series (layer F.Cu) (tedit 5C3163FE) (tstamp 5C300444)
(at 147 135.65 180)
(path /5C2FF5D5)
(fp_text reference U3 (at 9.144 10.287 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SLC03-series (at 8.509 -0.127 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.16 11.93) (end 19.94 11.93) (layer F.SilkS) (width 0.15))
(fp_line (start -2.16 -1.87) (end 19.94 -1.87) (layer F.SilkS) (width 0.15))
(fp_line (start 19.941 -1.87) (end 19.941 11.93) (layer F.SilkS) (width 0.15))
(fp_line (start -2.16 -1.87) (end -2.16 11.93) (layer F.SilkS) (width 0.15))
(pad 8 thru_hole circle (at 17.78 10.16 180) (size 1.524 1.524) (drill 0.66) (layers *.Cu *.Mask))
(pad 9 thru_hole circle (at 17.78 0 180) (size 1.524 1.524) (drill 0.66) (layers *.Cu *.Mask)
(net 2 /+5V))
(pad 16 thru_hole circle (at 0 0 180) (size 2.29 2.29) (drill 0.76) (layers *.Cu *.Mask)
(net 1 /AC_L))
(pad 10 thru_hole circle (at 15.24 0 180) (size 1.524 1.524) (drill 0.66) (layers *.Cu *.Mask)
(net 5 /GND))
(pad 1 thru_hole circle (at 0 10.16 180) (size 1.524 1.524) (drill 0.66) (layers *.Cu *.Mask)
(net 6 /AC_N))
(pad 7 thru_hole circle (at 15.24 10.16 180) (size 1.524 1.524) (drill 0.66) (layers *.Cu *.Mask))
)
(module HASwitchPlate:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5C301261) (tstamp 5C3CC7E3)
(at 101.778 101.556)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0.222 0.349) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
)
(module HASwitchPlate:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5C30128E) (tstamp 5C3CC637)
(at 101.778 101.651)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0.222 36.349) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5C3015E3) (tstamp 5C3CB6BC)
(at 151.943 118.669 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5C306DF8)
(fp_text reference R1 (at 5.08 -2.37 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1k (at 5.08 2.37 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 5.08 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 /LCD_CTL))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(R1-Pad1)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module HASwitchPlate:JST_XH2.54_04x2.54mm_Straight (layer F.Cu) (tedit 5C30C023) (tstamp 59E3689F)
(at 157.785 110.795 270)
(descr "JST XH series connector, B04B-XH-A, top entry type, through hole")
(tags "connector jst xh tht top vertical 2.50mm")
(path /59E297BA)
(fp_text reference J2 (at 3.81 1.778 270) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value XH2.54-4P (at 3.75 4.5 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.45 -2.35) (end -2.45 3.4) (layer F.Fab) (width 0.1))
(fp_line (start -2.45 3.4) (end 10.07 3.4) (layer F.Fab) (width 0.1))
(fp_line (start 10.07 3.4) (end 10.07 -2.35) (layer F.Fab) (width 0.1))
(fp_line (start 10.07 -2.35) (end -2.45 -2.35) (layer F.Fab) (width 0.1))
(fp_line (start -2.95 -2.85) (end -2.95 3.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.95 3.9) (end 10.57 3.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.57 3.9) (end 10.57 -2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.57 -2.85) (end -2.95 -2.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.55 -1.7) (end -2.55 3.5) (layer F.SilkS) (width 0.12))
(fp_line (start -2.55 3.5) (end 10.17 3.5) (layer F.SilkS) (width 0.12))
(fp_line (start 10.17 3.5) (end 10.17 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.75 -1.7) (end 6.83 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.55 -1.7) (end -0.75 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start 8.38 -1.7) (end 10.17 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start -2.55 -0.2) (end -1.8 -0.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -0.2) (end -1.8 2.75) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 2.75) (end 3.75 2.75) (layer F.SilkS) (width 0.12))
(fp_line (start 10.17 -0.2) (end 9.42 -0.2) (layer F.SilkS) (width 0.12))
(fp_line (start 9.42 -0.2) (end 9.42 2.75) (layer F.SilkS) (width 0.12))
(fp_line (start 9.3 2.75) (end 3.75 2.75) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 3.81 3.048 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 4 thru_hole circle (at 0 0 270) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
(net 2 /+5V))
(pad 3 thru_hole circle (at 2.54 0 270) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
(net 3 /LCD_TX))
(pad 2 thru_hole circle (at 5.08 0 270) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
(net 4 /LCD_RX))
(pad 1 thru_hole rect (at 7.62 0 270) (size 1.75 1.75) (drill 1) (layers *.Cu *.Mask)
(net 18 /LCD_GND))
(model ${KIPRJMOD}/shapes3D/JST_XH_B04B-XH-A_04x2.50mm_Straight.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x08_Pitch2.54mm (layer F.Cu) (tedit 5AB15CDB) (tstamp 5C3D074E)
(at 105.5 102 90)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(path /5AB13587)
(fp_text reference J3 (at 0 -2.33 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Breakout (at 0 20.11 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 8.89 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 /GND))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 /+5V))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 /+3.3V))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 /A0))
(pad 5 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 /D0))
(pad 6 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 /D1))
(pad 7 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 /D2))
(pad 8 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 /D8_DBG))
(model ${KIPRJMOD}/shapes3D/Pin_Header_Straight_1x08_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module HASwitchPlate:ACDC-Converter_MeanWell-IRM-03-x (layer F.Cu) (tedit 5AC6543F) (tstamp 5AB1179B)
(at 147 135.65 270)
(descr "ACDC-Converter, 3W, Meanwell, IRM-03, THT")
(path /59E37A8B)
(fp_text reference U1 (at -15 -5 270) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value IRM-03-5 (at -15 19 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.01 -3.86) (end 4.01 21.64) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.01 -3.86) (end -34.49 -3.86) (layer F.CrtYd) (width 0.05))
(fp_line (start -34.49 -3.86) (end -34.49 21.64) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.01 21.64) (end -34.49 21.64) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.76 -3.61) (end 3.76 21.39) (layer Eco1.User) (width 0.12))
(fp_line (start -34.24 -3.61) (end -34.24 21.39) (layer Eco1.User) (width 0.12))
(fp_line (start 3.76 -3.61) (end -34.24 -3.61) (layer Eco1.User) (width 0.12))
(fp_line (start 3.76 21.39) (end -34.24 21.39) (layer Eco1.User) (width 0.12))
(fp_line (start 3.26 20.89) (end -33.74 20.89) (layer F.Fab) (width 0.1))
(fp_line (start -33.74 -3.11) (end -33.74 20.89) (layer F.Fab) (width 0.1))
(fp_line (start 3.26 -3.11) (end 3.26 20.89) (layer F.Fab) (width 0.1))
(fp_line (start 3.26 -3.11) (end -33.74 -3.11) (layer F.Fab) (width 0.1))
(fp_circle (center -2 -2) (end -1.9 -1.9) (layer F.Fab) (width 0.1))
(pad 5 thru_hole circle (at -30.48 0 270) (size 2.29 2.29) (drill 0.76) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 0 270) (size 2.29 2.29) (drill 0.76) (layers *.Cu *.Mask)
(net 1 /AC_L))
(pad 2 thru_hole circle (at -5.08 0 270) (size 2.29 2.29) (drill 0.76) (layers *.Cu *.Mask)
(net 6 /AC_N))
(pad 3 thru_hole circle (at -25.4 17.7 270) (size 2.29 2.29) (drill 0.76) (layers *.Cu *.Mask)
(net 2 /+5V))
(pad 4 thru_hole circle (at -30.48 17.7 270) (size 2.29 2.29) (drill 0.76) (layers *.Cu *.Mask)
(net 5 /GND))
(model "${KIPRJMOD}/shapes3D/Mean Well IRM-03 Series.wrl"
(offset (xyz -33.78199949264526 3.047999954223633 0))
(scale (xyz 0.393 0.393 0.393))
(rotate (xyz 0 0 90))
)
)
(module HASwitchPlate:wemos-d1-mini-with-pin-header-and-connector (layer F.Cu) (tedit 5AC65BB6) (tstamp 5C2FB7AF)
(at 113 121.5 90)
(path /59E27669)
(fp_text reference U2 (at -19.3 0 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WeMos_mini (at 0 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -18.3 13.33) (end 14.78 13.33) (layer Eco1.User) (width 0.15))
(fp_line (start 16.78 11.33) (end 16.78 -11.33) (layer Eco1.User) (width 0.15))
(fp_line (start 14.78 -13.33) (end -11.3 -13.33) (layer Eco1.User) (width 0.15))
(fp_line (start -18.3 -11.18) (end -18.3 -3.32) (layer Eco1.User) (width 0.15))
(fp_line (start -18.3 -3.32) (end -17.3 -3.32) (layer Eco1.User) (width 0.15))
(fp_line (start -17.3 -3.32) (end -17.3 4.9) (layer Eco1.User) (width 0.15))
(fp_line (start -17.3 4.9) (end -18.3 4.9) (layer Eco1.User) (width 0.15))
(fp_line (start -18.3 4.9) (end -18.3 13.329999) (layer Eco1.User) (width 0.15))
(fp_line (start -11.48 -13.5) (end 14.85 -13.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.94 -11.5) (end 16.94 11.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.94 13.5) (end -18.46 13.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -18.46 13.5) (end -18.46 -11.33) (layer F.CrtYd) (width 0.05))
(fp_arc (start 14.78 -11.33) (end 14.78 -13.33) (angle 90) (layer Eco1.User) (width 0.15))
(fp_arc (start 14.78 11.33) (end 16.78 11.33) (angle 90) (layer Eco1.User) (width 0.15))
(fp_arc (start 14.94 11.5) (end 16.94 11.5) (angle 90) (layer F.CrtYd) (width 0.05))
(fp_arc (start 14.94 -11.5) (end 14.85 -13.5) (angle 92.57657183) (layer F.CrtYd) (width 0.05))
(fp_line (start -18.3 -11.18) (end -12.3 -11.18) (layer Eco1.User) (width 0.15))
(fp_arc (start -12.3 -12.18) (end -11.3 -12.18) (angle 90) (layer Eco1.User) (width 0.15))
(fp_line (start -11.3 -12.17) (end -11.3 -13.33) (layer Eco1.User) (width 0.15))
(fp_line (start -11.48 -13.5) (end -11.48 -12.33) (layer F.CrtYd) (width 0.05))
(fp_line (start -18.46 -11.33) (end -12.48 -11.33) (layer F.CrtYd) (width 0.05))
(fp_arc (start -12.48 -12.33) (end -11.48 -12.33) (angle 90) (layer F.CrtYd) (width 0.05))
(pad 16 thru_hole circle (at -8.89 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 7 /+3.3V))
(pad 1 thru_hole circle (at -8.89 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 2 /+5V))
(pad 15 thru_hole circle (at -6.35 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 12 /D8_DBG))
(pad 2 thru_hole circle (at -6.35 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 5 /GND))
(pad 14 thru_hole circle (at -3.81 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 3 /LCD_TX))
(pad 3 thru_hole circle (at -3.81 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 4 /LCD_RX))
(pad 13 thru_hole circle (at -1.27 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 19 "Net-(R1-Pad1)"))
(pad 4 thru_hole circle (at -1.27 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 13 "Net-(U2-Pad4)"))
(pad 12 thru_hole circle (at 1.27 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 14 "Net-(U2-Pad12)"))
(pad 5 thru_hole circle (at 1.27 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 11 /D2))
(pad 11 thru_hole circle (at 3.81 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 9 /D0))
(pad 6 thru_hole circle (at 3.81 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 10 /D1))
(pad 10 thru_hole circle (at 6.35 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 8 /A0))
(pad 7 thru_hole circle (at 6.35 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 15 "Net-(U2-Pad7)"))
(pad 9 thru_hole circle (at 8.89 -11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 16 "Net-(U2-Pad9)"))
(pad 8 thru_hole circle (at 8.89 11.43 90) (size 1.8 1.8) (drill 1.016) (layers *.Cu *.Mask)
(net 17 "Net-(U2-Pad8)"))
(model ${KIPRJMOD}/shapes3D/d1_mini_shield.wrl
(offset (xyz -17.9 -12.8 3.5))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 180 90))
)
(model ${KIPRJMOD}/shapes3D/TSW-108-05-G-S.wrl
(offset (xyz 0 -11.4 2.5))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 90 0 0))
)
(model ${KIPRJMOD}/shapes3D/TSW-108-05-G-S.wrl
(offset (xyz 0 11.4 2.5))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 90 0 0))
)
)
(module Connectors_Terminal_Blocks:TerminalBlock_bornier-2_P5.08mm (layer F.Cu) (tedit 5C38C230) (tstamp 5ACD3DAA)
(at 155.5 135.65 90)
(descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2")
(tags "terminal block bornier2")
(path /59E27A1F)
(fp_text reference J1 (at 2.54 -5.08 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Screw Term." (at 2.54 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.54 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.41 2.55) (end 7.49 2.55) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -3.75) (end -2.46 3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 3.75) (end 7.54 3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 3.75) (end 7.54 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 -3.75) (end -2.46 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 2.54) (end -2.54 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 3.81) (end 7.62 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 -3.81) (end -2.54 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.54 -3.81) (end -2.54 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.54 3.81) (end 7.62 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.71 -4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 -4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 1 /AC_L))
(pad 2 thru_hole circle (at 5.08 0 90) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 6 /AC_N))
)
(module HASwitchPlate:WeMos_logo_18mm (layer F.Cu) (tedit 0) (tstamp 5C3008C7)
(at 110.795 121.59 90)
(fp_text reference G*** (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_text value LOGO (at 0.75 0 90) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_poly (pts (xy -7.676529 -2.837639) (xy -7.570931 -2.776068) (xy -7.477385 -2.694398) (xy -7.417042 -2.609769)
(xy -7.405573 -2.564226) (xy -7.420521 -2.507138) (xy -7.461778 -2.398153) (xy -7.524196 -2.249635)
(xy -7.602625 -2.07395) (xy -7.669475 -1.930493) (xy -7.822348 -1.601389) (xy -7.943725 -1.320512)
(xy -8.037138 -1.073701) (xy -8.106118 -0.846792) (xy -8.154195 -0.625626) (xy -8.184901 -0.396039)
(xy -8.201766 -0.143869) (xy -8.208322 0.145045) (xy -8.208786 0.232536) (xy -8.207325 0.48103)
(xy -8.200618 0.674108) (xy -8.187394 0.827792) (xy -8.166377 0.958104) (xy -8.143348 1.055352)
(xy -8.042412 1.363382) (xy -7.919107 1.606449) (xy -7.768463 1.788995) (xy -7.585509 1.915458)
(xy -7.365277 1.990278) (xy -7.102797 2.017895) (xy -7.065493 2.01825) (xy -6.807833 1.998248)
(xy -6.586201 1.9327) (xy -6.375526 1.813294) (xy -6.315951 1.769736) (xy -6.21238 1.673205)
(xy -6.113205 1.551513) (xy -6.032147 1.424956) (xy -5.982923 1.313827) (xy -5.974366 1.264431)
(xy -5.951226 1.186103) (xy -5.893611 1.093067) (xy -5.872827 1.068051) (xy -5.797129 0.995755)
(xy -5.720499 0.963391) (xy -5.608749 0.956874) (xy -5.603108 0.956951) (xy -5.490744 0.967478)
(xy -5.403561 0.991065) (xy -5.381852 1.003543) (xy -5.342253 1.053882) (xy -5.281471 1.151042)
(xy -5.210052 1.277715) (xy -5.178322 1.33767) (xy -5.020737 1.606995) (xy -4.859063 1.809992)
(xy -4.686564 1.951831) (xy -4.496504 2.037685) (xy -4.282147 2.072725) (xy -4.219057 2.074144)
(xy -3.957044 2.040557) (xy -3.722695 1.945172) (xy -3.524876 1.793264) (xy -3.372451 1.590107)
(xy -3.35702 1.561348) (xy -3.280746 1.363566) (xy -3.224867 1.11313) (xy -3.192402 0.826798)
(xy -3.18522 0.608169) (xy -3.211994 0.113435) (xy -3.290181 -0.363926) (xy -3.416731 -0.814986)
(xy -3.588593 -1.23082) (xy -3.802716 -1.6025) (xy -4.045933 -1.910277) (xy -4.180902 -2.059344)
(xy -4.272263 -2.171792) (xy -4.327991 -2.260588) (xy -4.35606 -2.338697) (xy -4.364444 -2.419086)
(xy -4.364507 -2.428295) (xy -4.333662 -2.538899) (xy -4.244642 -2.612664) (xy -4.102721 -2.64582)
(xy -4.058089 -2.647324) (xy -3.885042 -2.619726) (xy -3.712286 -2.534955) (xy -3.536464 -2.390047)
(xy -3.354216 -2.182038) (xy -3.162186 -1.907962) (xy -3.09016 -1.79279) (xy -2.863149 -1.359833)
(xy -2.678842 -0.8817) (xy -2.541266 -0.373408) (xy -2.45445 0.150022) (xy -2.42242 0.673574)
(xy -2.42233 0.697606) (xy -2.443037 1.099003) (xy -2.508132 1.450401) (xy -2.620674 1.760209)
(xy -2.783723 2.036833) (xy -3.000338 2.288683) (xy -3.001898 2.290228) (xy -3.197586 2.463107)
(xy -3.400723 2.595607) (xy -3.632351 2.699079) (xy -3.913517 2.78487) (xy -3.924272 2.78763)
(xy -4.12261 2.833204) (xy -4.279371 2.853857) (xy -4.41996 2.849821) (xy -4.569786 2.821324)
(xy -4.668591 2.794359) (xy -4.880312 2.722046) (xy -5.07197 2.630299) (xy -5.268557 2.505873)
(xy -5.411695 2.400526) (xy -5.643183 2.2231) (xy -5.835605 2.3688) (xy -6.150961 2.57015)
(xy -6.481544 2.712297) (xy -6.819224 2.795282) (xy -7.155868 2.819144) (xy -7.483345 2.783923)
(xy -7.793524 2.689658) (xy -8.078271 2.536391) (xy -8.297301 2.356745) (xy -8.498729 2.13641)
(xy -8.654417 1.911201) (xy -8.772378 1.664559) (xy -8.860628 1.379927) (xy -8.92373 1.062449)
(xy -8.971964 0.58148) (xy -8.969892 0.071552) (xy -8.919322 -0.447268) (xy -8.822061 -0.954914)
(xy -8.705855 -1.357268) (xy -8.638825 -1.544822) (xy -8.559391 -1.751667) (xy -8.472953 -1.965312)
(xy -8.38491 -2.173267) (xy -8.300661 -2.363043) (xy -8.225607 -2.522148) (xy -8.165147 -2.638094)
(xy -8.127238 -2.695705) (xy -8.003252 -2.792973) (xy -7.855253 -2.851881) (xy -7.773026 -2.861971)
(xy -7.676529 -2.837639)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 8.28107 0.616561) (xy 8.332717 0.619334) (xy 8.539185 0.631162) (xy 8.68485 0.644143)
(xy 8.780312 0.663999) (xy 8.836171 0.69645) (xy 8.863027 0.747218) (xy 8.87148 0.822025)
(xy 8.872113 0.910464) (xy 8.868758 1.030474) (xy 8.860029 1.119732) (xy 8.84969 1.155287)
(xy 8.805599 1.156709) (xy 8.733385 1.129162) (xy 8.596166 1.078479) (xy 8.443189 1.053659)
(xy 8.290041 1.052959) (xy 8.152314 1.074635) (xy 8.045595 1.116944) (xy 7.985475 1.178141)
(xy 7.977747 1.213688) (xy 7.990294 1.266262) (xy 8.034248 1.315981) (xy 8.119074 1.368847)
(xy 8.254237 1.430864) (xy 8.430894 1.50105) (xy 8.656721 1.597964) (xy 8.819703 1.695816)
(xy 8.928102 1.803517) (xy 8.990175 1.929981) (xy 9.014184 2.084119) (xy 9.015211 2.131523)
(xy 9.009287 2.233498) (xy 8.98286 2.310263) (xy 8.92295 2.389069) (xy 8.862892 2.451311)
(xy 8.68667 2.589204) (xy 8.51409 2.662835) (xy 8.319001 2.706789) (xy 8.098459 2.733057)
(xy 7.877871 2.740442) (xy 7.682642 2.727744) (xy 7.577278 2.707011) (xy 7.436975 2.660379)
(xy 7.35321 2.606899) (xy 7.311813 2.528797) (xy 7.298612 2.408296) (xy 7.298028 2.356747)
(xy 7.300465 2.246183) (xy 7.315928 2.17917) (xy 7.356646 2.150903) (xy 7.434849 2.156579)
(xy 7.562765 2.191395) (xy 7.650018 2.21849) (xy 7.843278 2.266489) (xy 8.020367 2.287217)
(xy 8.165967 2.280311) (xy 8.264761 2.245409) (xy 8.279276 2.23336) (xy 8.331893 2.160347)
(xy 8.332035 2.093553) (xy 8.275528 2.028954) (xy 8.158199 1.962527) (xy 7.975877 1.890248)
(xy 7.894581 1.862371) (xy 7.663654 1.772336) (xy 7.49643 1.673233) (xy 7.385066 1.556317)
(xy 7.321717 1.412845) (xy 7.298539 1.234072) (xy 7.298028 1.197367) (xy 7.328989 1.038314)
(xy 7.423621 0.898349) (xy 7.584548 0.774458) (xy 7.732528 0.69815) (xy 7.836545 0.65361)
(xy 7.922414 0.625938) (xy 8.011129 0.612377) (xy 8.123683 0.61017) (xy 8.28107 0.616561)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -0.583805 0.582491) (xy -0.323776 0.630475) (xy -0.117037 0.72488) (xy 0.038229 0.867244)
(xy 0.143841 1.059106) (xy 0.201615 1.302004) (xy 0.214648 1.521765) (xy 0.214648 1.788733)
(xy -0.36669 1.793733) (xy -0.574624 1.794957) (xy -0.76738 1.795057) (xy -0.929134 1.794101)
(xy -1.044064 1.792158) (xy -1.082183 1.790657) (xy -1.170007 1.790002) (xy -1.207716 1.812301)
(xy -1.216273 1.872298) (xy -1.216338 1.88502) (xy -1.18231 2.025558) (xy -1.086153 2.14437)
(xy -1.001295 2.200345) (xy -0.873993 2.238385) (xy -0.701158 2.252157) (xy -0.504391 2.242141)
(xy -0.30529 2.208817) (xy -0.208891 2.182715) (xy -0.092834 2.14666) (xy -0.008015 2.120922)
(xy 0.026831 2.111166) (xy 0.031738 2.143259) (xy 0.034987 2.226498) (xy 0.035775 2.30664)
(xy 0.024859 2.439916) (xy -0.016764 2.530459) (xy -0.102407 2.593937) (xy -0.245386 2.646019)
(xy -0.254977 2.648806) (xy -0.371651 2.671343) (xy -0.533101 2.688372) (xy -0.716868 2.699086)
(xy -0.900495 2.702675) (xy -1.061524 2.69833) (xy -1.177497 2.685243) (xy -1.189653 2.682467)
(xy -1.372024 2.620124) (xy -1.540591 2.53372) (xy -1.675134 2.435209) (xy -1.746087 2.353459)
(xy -1.846717 2.133665) (xy -1.908912 1.875946) (xy -1.926854 1.606059) (xy -1.925101 1.561121)
(xy -1.89471 1.340106) (xy -1.208892 1.340106) (xy -1.183548 1.371472) (xy -1.111776 1.387921)
(xy -0.984826 1.394237) (xy -0.822817 1.395212) (xy -0.650379 1.39431) (xy -0.537162 1.39017)
(xy -0.470846 1.380637) (xy -0.439111 1.363557) (xy -0.429638 1.336776) (xy -0.429296 1.326407)
(xy -0.459313 1.232768) (xy -0.535369 1.135527) (xy -0.636473 1.056105) (xy -0.732059 1.017465)
(xy -0.882611 1.022578) (xy -1.027337 1.084111) (xy -1.139998 1.189912) (xy -1.155304 1.213493)
(xy -1.19656 1.289041) (xy -1.208892 1.340106) (xy -1.89471 1.340106) (xy -1.891699 1.318214)
(xy -1.815761 1.11797) (xy -1.688648 0.940044) (xy -1.639361 0.888094) (xy -1.472259 0.74574)
(xy -1.296301 0.652227) (xy -1.090396 0.598761) (xy -0.898942 0.57939) (xy -0.583805 0.582491)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 4.185634 1.229263) (xy 4.185385 1.587171) (xy 4.184465 1.880042) (xy 4.182618 2.114391)
(xy 4.179585 2.296728) (xy 4.175111 2.433566) (xy 4.168936 2.531418) (xy 4.160805 2.596796)
(xy 4.15046 2.636211) (xy 4.137643 2.656177) (xy 4.129046 2.661384) (xy 4.067739 2.671711)
(xy 3.95671 2.679376) (xy 3.817774 2.682986) (xy 3.788492 2.683099) (xy 3.504526 2.683099)
(xy 3.528053 1.726127) (xy 3.533231 1.474635) (xy 3.535925 1.249848) (xy 3.536185 1.060675)
(xy 3.534064 0.916025) (xy 3.529614 0.824808) (xy 3.522885 0.795933) (xy 3.522652 0.79612)
(xy 3.501069 0.834736) (xy 3.454694 0.930162) (xy 3.387542 1.073715) (xy 3.303625 1.256711)
(xy 3.206959 1.470467) (xy 3.101557 1.706299) (xy 3.092689 1.726261) (xy 2.691655 2.629437)
(xy 2.428011 2.638939) (xy 2.164366 2.648442) (xy 1.755858 1.716118) (xy 1.649569 1.475215)
(xy 1.5515 1.256132) (xy 1.465554 1.067336) (xy 1.395635 0.917294) (xy 1.345643 0.81447)
(xy 1.319482 0.76733) (xy 1.317618 0.76542) (xy 1.309745 0.794637) (xy 1.302655 0.886353)
(xy 1.296635 1.03152) (xy 1.291976 1.221087) (xy 1.288963 1.446008) (xy 1.287887 1.697233)
(xy 1.287887 2.650218) (xy 0.992747 2.639827) (xy 0.697606 2.629437) (xy 0.688821 2.128592)
(xy 0.687424 1.943906) (xy 0.688406 1.70594) (xy 0.691535 1.432916) (xy 0.696577 1.143056)
(xy 0.703297 0.854581) (xy 0.706709 0.733381) (xy 0.73338 -0.160986) (xy 1.688621 -0.160986)
(xy 2.065297 0.780606) (xy 2.18108 1.066027) (xy 2.280386 1.302574) (xy 2.361457 1.486361)
(xy 2.422539 1.613502) (xy 2.461875 1.680111) (xy 2.47553 1.688639) (xy 2.498961 1.648594)
(xy 2.548358 1.55229) (xy 2.619513 1.408347) (xy 2.708216 1.225381) (xy 2.810259 1.012009)
(xy 2.921433 0.776848) (xy 2.935434 0.747048) (xy 3.36178 -0.160986) (xy 4.185634 -0.181144)
(xy 4.185634 1.229263)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 6.087685 0.840444) (xy 6.306594 0.923017) (xy 6.480938 1.056598) (xy 6.605603 1.236388)
(xy 6.675471 1.457587) (xy 6.689074 1.620228) (xy 6.659776 1.852792) (xy 6.570383 2.047357)
(xy 6.423493 2.201084) (xy 6.225779 2.311521) (xy 5.994569 2.376592) (xy 5.754176 2.392485)
(xy 5.528912 2.355388) (xy 5.50028 2.34586) (xy 5.281786 2.235676) (xy 5.119955 2.082596)
(xy 5.016674 1.889253) (xy 4.973829 1.658279) (xy 4.972676 1.609859) (xy 5.003573 1.36901)
(xy 5.093104 1.165777) (xy 5.23653 1.004567) (xy 5.42911 0.889784) (xy 5.666106 0.825834)
(xy 5.829329 0.813679) (xy 6.087685 0.840444)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 6.001073 -0.56031) (xy 6.313258 -0.501647) (xy 6.608601 -0.394222) (xy 6.868763 -0.241954)
(xy 6.938878 -0.186703) (xy 7.062686 -0.081735) (xy 6.835 0.129062) (xy 6.730268 0.223673)
(xy 6.645605 0.295774) (xy 6.594265 0.334259) (xy 6.585981 0.337748) (xy 6.545276 0.322031)
(xy 6.459364 0.282923) (xy 6.35 0.230424) (xy 6.228966 0.176032) (xy 6.122764 0.144181)
(xy 6.003183 0.129151) (xy 5.842012 0.12522) (xy 5.831268 0.125212) (xy 5.672531 0.128018)
(xy 5.558899 0.140293) (xy 5.464021 0.16782) (xy 5.361548 0.216381) (xy 5.324407 0.236452)
(xy 5.121631 0.347693) (xy 4.90146 0.125548) (xy 4.68129 -0.096597) (xy 4.794347 -0.191728)
(xy 5.06138 -0.373882) (xy 5.359604 -0.503419) (xy 5.399521 -0.515675) (xy 5.690381 -0.566292)
(xy 6.001073 -0.56031)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 6.406377 -1.584776) (xy 6.797311 -1.476269) (xy 6.929234 -1.425514) (xy 7.101454 -1.34299)
(xy 7.290551 -1.234632) (xy 7.475873 -1.113896) (xy 7.636767 -0.994243) (xy 7.752583 -0.88913)
(xy 7.752948 -0.888734) (xy 7.832235 -0.802886) (xy 7.60029 -0.595428) (xy 7.493357 -0.503551)
(xy 7.405934 -0.43542) (xy 7.351662 -0.401377) (xy 7.342125 -0.399689) (xy 7.301114 -0.422499)
(xy 7.215246 -0.472784) (xy 7.100859 -0.540947) (xy 7.064301 -0.562919) (xy 6.696163 -0.750092)
(xy 6.323924 -0.873289) (xy 5.953759 -0.932665) (xy 5.591843 -0.928373) (xy 5.24435 -0.860567)
(xy 4.917456 -0.729401) (xy 4.617335 -0.535027) (xy 4.575709 -0.501019) (xy 4.411277 -0.362758)
(xy 4.169047 -0.606858) (xy 3.926818 -0.850957) (xy 4.136719 -1.016294) (xy 4.361179 -1.172619)
(xy 4.622921 -1.32224) (xy 4.896088 -1.452127) (xy 5.154826 -1.549247) (xy 5.245862 -1.575331)
(xy 5.614322 -1.635761) (xy 6.006604 -1.638425) (xy 6.406377 -1.584776)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 6.475156 -2.630428) (xy 6.743521 -2.579028) (xy 7.150167 -2.447789) (xy 7.553407 -2.264679)
(xy 7.932686 -2.040704) (xy 8.267446 -1.786873) (xy 8.333734 -1.727509) (xy 8.518847 -1.556197)
(xy 8.303696 -1.344388) (xy 8.088546 -1.13258) (xy 7.952248 -1.272839) (xy 7.681976 -1.501699)
(xy 7.357781 -1.690745) (xy 6.986775 -1.8375) (xy 6.576067 -1.939489) (xy 6.132768 -1.994237)
(xy 5.853864 -2.00338) (xy 5.375958 -1.970551) (xy 4.923502 -1.871353) (xy 4.493344 -1.704718)
(xy 4.082335 -1.46958) (xy 3.906021 -1.343592) (xy 3.791007 -1.25688) (xy 3.700212 -1.189659)
(xy 3.646591 -1.15146) (xy 3.637712 -1.146228) (xy 3.612887 -1.171825) (xy 3.552594 -1.238681)
(xy 3.468288 -1.334041) (xy 3.438116 -1.368484) (xy 3.245106 -1.5893) (xy 3.438116 -1.762151)
(xy 3.665663 -1.943237) (xy 3.93446 -2.121332) (xy 4.215718 -2.278831) (xy 4.474291 -2.395694)
(xy 4.85329 -2.516706) (xy 5.260938 -2.602145) (xy 5.679173 -2.650551) (xy 6.089932 -2.660465)
(xy 6.475156 -2.630428)) (layer F.SilkS) (width 0.01))
)
(module HASwitchPlate:MeanWell_logo_18mm (layer F.Cu) (tedit 0) (tstamp 5C300AE2)
(at 137.2745 112.192 90)
(fp_text reference G*** (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_text value LOGO (at 0.75 0 90) (layer F.SilkS) hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
)
(fp_poly (pts (xy 9.020849 5.326303) (xy -8.99006 5.326303) (xy -8.99006 1.908848) (xy -8.251151 1.908848)
(xy -8.251151 4.618181) (xy 8.251152 4.618181) (xy 8.251152 1.908848) (xy -8.251151 1.908848)
(xy -8.99006 1.908848) (xy -8.99006 1.169939) (xy -8.192402 1.169939) (xy -7.18897 1.169421)
(xy -7.108989 1.023438) (xy -7.054313 0.924893) (xy -6.9829 0.797859) (xy -6.908743 0.667205)
(xy -6.89694 0.646545) (xy -6.724734 0.344905) (xy -6.577659 0.086018) (xy -6.449813 -0.140548)
(xy -6.335297 -0.345225) (xy -6.296155 -0.415637) (xy -6.240647 -0.513689) (xy -6.172383 -0.63164)
(xy -6.131119 -0.70178) (xy -6.080347 -0.789566) (xy -6.045329 -0.854327) (xy -6.034424 -0.87947)
(xy -6.019491 -0.912141) (xy -5.981878 -0.977161) (xy -5.962228 -1.008964) (xy -5.916456 -1.084796)
(xy -5.851037 -1.197041) (xy -5.776093 -1.328211) (xy -5.726556 -1.416243) (xy -5.652784 -1.547823)
(xy -5.585062 -1.667493) (xy -5.515565 -1.788857) (xy -5.436468 -1.925522) (xy -5.339944 -2.091092)
(xy -5.248426 -2.247516) (xy -5.181842 -2.363703) (xy -5.103792 -2.503494) (xy -5.033479 -2.632364)
(xy -4.97549 -2.737873) (xy -4.926247 -2.823093) (xy -4.894725 -2.872596) (xy -4.89109 -2.877128)
(xy -4.886405 -2.852397) (xy -4.88201 -2.770703) (xy -4.877968 -2.636654) (xy -4.874339 -2.454862)
(xy -4.871184 -2.229938) (xy -4.868565 -1.966493) (xy -4.866542 -1.669137) (xy -4.865177 -1.342481)
(xy -4.86453 -0.991137) (xy -4.864485 -0.867492) (xy -4.864485 1.171393) (xy -3.808367 1.154545)
(xy -3.724798 1.000606) (xy -3.664133 0.890869) (xy -3.603262 0.783867) (xy -3.576907 0.738909)
(xy -3.530006 0.658245) (xy -3.466574 0.54647) (xy -3.399607 0.426506) (xy -3.3936 0.415636)
(xy -3.349387 0.335865) (xy -3.297324 0.242578) (xy -3.234358 0.130363) (xy -3.157433 -0.00619)
(xy -3.063496 -0.172492) (xy -2.949492 -0.373956) (xy -2.812366 -0.615992) (xy -2.649064 -0.904012)
(xy -2.576815 -1.031394) (xy -2.45142 -1.253007) (xy -2.35492 -1.424841) (xy -2.285376 -1.550415)
(xy -2.24085 -1.633249) (xy -2.219403 -1.676863) (xy -2.216727 -1.685148) (xy -2.200946 -1.717528)
(xy -2.162678 -1.776863) (xy -2.15985 -1.780945) (xy -2.113676 -1.853043) (xy -2.053845 -1.95387)
(xy -2.009737 -2.032) (xy -1.870002 -2.284615) (xy -1.756676 -2.486692) (xy -1.667417 -2.642142)
(xy -1.599879 -2.754878) (xy -1.55172 -2.828812) (xy -1.520595 -2.867855) (xy -1.504168 -2.875924)
(xy -1.499639 -2.843134) (xy -1.495356 -2.753918) (xy -1.491386 -2.613427) (xy -1.487796 -2.426812)
(xy -1.484652 -2.199223) (xy -1.482022 -1.93581) (xy -1.479972 -1.641724) (xy -1.478568 -1.322115)
(xy -1.477879 -0.982134) (xy -1.477818 -0.84485) (xy -1.477818 1.169939) (xy -0.554182 1.169939)
(xy 0.49229 1.169939) (xy 1.555708 1.169939) (xy 1.63608 1.023697) (xy 1.690935 0.924951)
(xy 1.762407 0.797727) (xy 1.836476 0.666962) (xy 1.848105 0.646545) (xy 1.927017 0.506988)
(xy 2.018353 0.343738) (xy 2.105122 0.187195) (xy 2.123413 0.153939) (xy 2.199807 0.016489)
(xy 2.278603 -0.122476) (xy 2.346333 -0.239286) (xy 2.365049 -0.270749) (xy 2.416416 -0.358395)
(xy 2.451892 -0.423125) (xy 2.46303 -0.44844) (xy 2.478032 -0.481062) (xy 2.515821 -0.545992)
(xy 2.53568 -0.577933) (xy 2.573236 -0.640448) (xy 2.634637 -0.746304) (xy 2.713879 -0.884987)
(xy 2.804956 -1.045981) (xy 2.901862 -1.218773) (xy 2.908975 -1.231516) (xy 3.010069 -1.412307)
(xy 3.109414 -1.589288) (xy 3.199931 -1.749894) (xy 3.274538 -1.881563) (xy 3.325399 -1.970425)
(xy 3.399605 -2.100263) (xy 3.477055 -2.238235) (xy 3.533014 -2.339879) (xy 3.646339 -2.544938)
(xy 3.734563 -2.695735) (xy 3.798654 -2.793792) (xy 3.83958 -2.840631) (xy 3.854043 -2.844444)
(xy 3.858396 -2.811768) (xy 3.862511 -2.722684) (xy 3.866323 -2.582361) (xy 3.869769 -2.395967)
(xy 3.872782 -2.16867) (xy 3.875299 -1.905639) (xy 3.877255 -1.612042) (xy 3.878585 -1.293047)
(xy 3.879224 -0.953822) (xy 3.879273 -0.829456) (xy 3.879273 1.169939) (xy 4.914656 1.169939)
(xy 4.969008 1.055962) (xy 5.011253 0.974763) (xy 5.07394 0.862874) (xy 5.144927 0.741856)
(xy 5.159437 0.71782) (xy 5.221261 0.613903) (xy 5.268404 0.530717) (xy 5.293386 0.481621)
(xy 5.295515 0.474791) (xy 5.311427 0.438877) (xy 5.349966 0.377711) (xy 5.352393 0.374207)
(xy 5.398588 0.30214) (xy 5.458501 0.201355) (xy 5.502756 0.123151) (xy 5.564827 0.011596)
(xy 5.641991 -0.125858) (xy 5.718773 -0.261659) (xy 5.727543 -0.277091) (xy 5.850193 -0.492811)
(xy 5.948118 -0.665119) (xy 6.027048 -0.804123) (xy 6.092712 -0.919929) (xy 6.15084 -1.022644)
(xy 6.207161 -1.122373) (xy 6.267405 -1.229224) (xy 6.280727 -1.252869) (xy 6.358745 -1.391585)
(xy 6.434246 -1.526246) (xy 6.496892 -1.638388) (xy 6.52703 -1.69265) (xy 6.587741 -1.800235)
(xy 6.649464 -1.906267) (xy 6.669467 -1.939637) (xy 6.697859 -1.986817) (xy 6.728079 -2.038305)
(xy 6.765204 -2.103075) (xy 6.814315 -2.190101) (xy 6.880489 -2.308356) (xy 6.968808 -2.466815)
(xy 7.025226 -2.56818) (xy 7.084613 -2.673319) (xy 7.134685 -2.759102) (xy 7.16624 -2.809827)
(xy 7.169596 -2.814483) (xy 7.197454 -2.857874) (xy 7.243666 -2.936868) (xy 7.288717 -3.017213)
(xy 7.350609 -3.128902) (xy 7.427435 -3.266517) (xy 7.503761 -3.402416) (xy 7.512243 -3.417455)
(xy 7.587496 -3.551276) (xy 7.665178 -3.690163) (xy 7.72983 -3.806472) (xy 7.736032 -3.817697)
(xy 7.796223 -3.923259) (xy 7.85406 -4.019077) (xy 7.886395 -4.068753) (xy 7.9257 -4.129962)
(xy 7.943214 -4.166603) (xy 7.943273 -4.167459) (xy 7.9577 -4.201178) (xy 7.994956 -4.270534)
(xy 8.032074 -4.33505) (xy 8.093593 -4.438816) (xy 8.132855 -4.513621) (xy 8.14386 -4.564182)
(xy 8.120609 -4.595217) (xy 8.057103 -4.611444) (xy 7.947343 -4.61758) (xy 7.78533 -4.618344)
(xy 7.672026 -4.618182) (xy 7.467359 -4.616581) (xy 7.318387 -4.611493) (xy 7.219305 -4.602488)
(xy 7.164309 -4.589138) (xy 7.150678 -4.579697) (xy 7.119364 -4.532562) (xy 7.071031 -4.45203)
(xy 7.034014 -4.387273) (xy 6.972499 -4.277838) (xy 6.897857 -4.145588) (xy 6.834217 -4.033213)
(xy 6.773502 -3.925961) (xy 6.689331 -3.776905) (xy 6.588399 -3.597931) (xy 6.477398 -3.400926)
(xy 6.363021 -3.197775) (xy 6.251961 -3.000365) (xy 6.150913 -2.820582) (xy 6.066568 -2.670312)
(xy 6.029981 -2.605009) (xy 5.974359 -2.504699) (xy 5.932697 -2.427781) (xy 5.91223 -2.387667)
(xy 5.911273 -2.384944) (xy 5.896482 -2.356816) (xy 5.8573 -2.289507) (xy 5.801511 -2.196337)
(xy 5.788121 -2.174249) (xy 5.729602 -2.075915) (xy 5.686149 -1.999073) (xy 5.66563 -1.957732)
(xy 5.66497 -1.954927) (xy 5.649999 -1.921025) (xy 5.612302 -1.855195) (xy 5.592773 -1.823522)
(xy 5.54524 -1.744695) (xy 5.476351 -1.62635) (xy 5.394337 -1.482971) (xy 5.307425 -1.329041)
(xy 5.223846 -1.179046) (xy 5.15183 -1.047469) (xy 5.151462 -1.046788) (xy 5.054164 -0.871268)
(xy 4.969194 -0.727084) (xy 4.900433 -0.620294) (xy 4.851764 -0.556955) (xy 4.828088 -0.542255)
(xy 4.823777 -0.574912) (xy 4.819698 -0.664016) (xy 4.815916 -0.80444) (xy 4.812493 -0.991056)
(xy 4.809493 -1.218735) (xy 4.806978 -1.48235) (xy 4.805012 -1.776772) (xy 4.803658 -2.096875)
(xy 4.802978 -2.437529) (xy 4.802909 -2.587999) (xy 4.802909 -4.618182) (xy 3.802303 -4.618036)
(xy 3.710669 -4.441079) (xy 3.645932 -4.319159) (xy 3.577189 -4.194374) (xy 3.537853 -4.125576)
(xy 3.4141 -3.912761) (xy 3.295361 -3.705571) (xy 3.190903 -3.520288) (xy 3.117272 -3.386667)
(xy 3.061697 -3.28572) (xy 2.987068 -3.152373) (xy 2.905131 -3.007543) (xy 2.857929 -2.924849)
(xy 2.74339 -2.724241) (xy 2.622035 -2.510427) (xy 2.503034 -2.299654) (xy 2.395556 -2.108167)
(xy 2.308773 -1.952213) (xy 2.301828 -1.939637) (xy 2.240896 -1.831399) (xy 2.168814 -1.706384)
(xy 2.128695 -1.6381) (xy 2.077923 -1.550313) (xy 2.042905 -1.485553) (xy 2.032 -1.46041)
(xy 2.016966 -1.427811) (xy 1.979088 -1.362926) (xy 1.959126 -1.330916) (xy 1.915997 -1.259631)
(xy 1.851692 -1.149208) (xy 1.774734 -1.014448) (xy 1.693645 -0.870152) (xy 1.689732 -0.863125)
(xy 1.493212 -0.510128) (xy 1.462424 -4.602788) (xy 0.508 -4.602788) (xy 0.500145 -1.716425)
(xy 0.49229 1.169939) (xy -0.554182 1.169939) (xy -0.554182 -4.618182) (xy -1.054485 -4.617988)
(xy -1.554788 -4.617793) (xy -1.613465 -4.517927) (xy -1.702808 -4.36395) (xy -1.810685 -4.175036)
(xy -1.926231 -3.970352) (xy -2.038581 -3.769064) (xy -2.062788 -3.725334) (xy -2.14634 -3.575078)
(xy -2.238507 -3.410803) (xy -2.322262 -3.26283) (xy -2.339438 -3.232728) (xy -2.411816 -3.105381)
(xy -2.482994 -2.978852) (xy -2.53944 -2.877219) (xy -2.547075 -2.863273) (xy -2.606568 -2.756857)
(xy -2.678403 -2.631931) (xy -2.723394 -2.555394) (xy -2.797565 -2.428359) (xy -2.876784 -2.289186)
(xy -2.917089 -2.216728) (xy -3.024337 -2.022414) (xy -3.122126 -1.847199) (xy -3.205191 -1.700408)
(xy -3.268265 -1.591364) (xy -3.299642 -1.539394) (xy -3.338549 -1.473519) (xy -3.394154 -1.374458)
(xy -3.454493 -1.263523) (xy -3.455146 -1.262303) (xy -3.51379 -1.153244) (xy -3.566336 -1.057367)
(xy -3.622252 -0.957794) (xy -3.691009 -0.837651) (xy -3.774739 -0.692728) (xy -3.863879 -0.538788)
(xy -3.894667 -4.602788) (xy -4.936387 -4.602788) (xy -5.064603 -4.385704) (xy -5.144868 -4.247886)
(xy -5.230802 -4.097363) (xy -5.301948 -3.970067) (xy -5.415541 -3.764403) (xy -5.517598 -3.581594)
(xy -5.603422 -3.429951) (xy -5.66832 -3.317785) (xy -5.701096 -3.263516) (xy -5.74007 -3.197721)
(xy -5.795902 -3.098781) (xy -5.856602 -2.98795) (xy -5.857424 -2.986425) (xy -5.930091 -2.853161)
(xy -6.014426 -2.700816) (xy -6.08742 -2.570788) (xy -6.152023 -2.456684) (xy -6.235694 -2.308711)
(xy -6.327259 -2.146639) (xy -6.409352 -2.001213) (xy -6.493523 -1.852069) (xy -6.575534 -1.706816)
(xy -6.646061 -1.581964) (xy -6.69578 -1.494024) (xy -6.696239 -1.493213) (xy -6.753303 -1.392003)
(xy -6.826571 -1.261543) (xy -6.902269 -1.126366) (xy -6.919238 -1.096) (xy -6.984992 -0.979053)
(xy -7.043566 -0.876251) (xy -7.085459 -0.80422) (xy -7.095185 -0.788122) (xy -7.131435 -0.726484)
(xy -7.183955 -0.633553) (xy -7.227806 -0.554182) (xy -7.289396 -0.442617) (xy -7.366144 -0.305151)
(xy -7.442654 -0.169343) (xy -7.451386 -0.15394) (xy -7.527901 -0.018205) (xy -7.618258 0.143408)
(xy -7.706744 0.302759) (xy -7.735064 0.35406) (xy -7.80133 0.473248) (xy -7.858048 0.573241)
(xy -7.89776 0.641004) (xy -7.911183 0.661939) (xy -7.935721 0.701658) (xy -7.981062 0.781233)
(xy -8.039023 0.886191) (xy -8.063526 0.931333) (xy -8.192402 1.169939) (xy -8.99006 1.169939)
(xy -8.99006 -5.326303) (xy 9.020849 -5.326303) (xy 9.020849 5.326303)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -6.080832 2.343956) (xy -6.0076 2.346431) (xy -5.741939 2.355272) (xy -5.733797 3.302)
(xy -5.725655 4.248727) (xy -6.096 4.248727) (xy -6.096 3.632969) (xy -6.097145 3.445821)
(xy -6.10034 3.281572) (xy -6.105224 3.149439) (xy -6.111436 3.058638) (xy -6.118615 3.018386)
(xy -6.120107 3.017212) (xy -6.136741 3.04513) (xy -6.158489 3.11886) (xy -6.181036 3.223362)
(xy -6.18416 3.240424) (xy -6.207979 3.368585) (xy -6.231686 3.488127) (xy -6.249746 3.571393)
(xy -6.271361 3.665348) (xy -6.297842 3.784562) (xy -6.311702 3.848484) (xy -6.338338 3.968852)
(xy -6.365386 4.085234) (xy -6.377136 4.133272) (xy -6.406252 4.248727) (xy -6.6046 4.248727)
(xy -6.712842 4.246745) (xy -6.77454 4.237556) (xy -6.804679 4.216294) (xy -6.817954 4.179454)
(xy -6.857528 3.994931) (xy -6.898388 3.80126) (xy -6.937778 3.611807) (xy -6.972944 3.43994)
(xy -7.001133 3.299025) (xy -7.01959 3.202428) (xy -7.021741 3.190351) (xy -7.040045 3.100162)
(xy -7.057409 3.038076) (xy -7.064578 3.023583) (xy -7.0696 3.04765) (xy -7.074013 3.124439)
(xy -7.077575 3.245095) (xy -7.080041 3.400766) (xy -7.081168 3.582598) (xy -7.081212 3.627838)
(xy -7.081212 4.248727) (xy -7.482344 4.248727) (xy -7.474202 3.302) (xy -7.46606 2.355272)
(xy -6.911879 2.355272) (xy -6.87488 2.478424) (xy -6.847791 2.579677) (xy -6.818172 2.706705)
(xy -6.80155 2.786303) (xy -6.776024 2.911203) (xy -6.743474 3.063855) (xy -6.710779 3.212024)
(xy -6.709581 3.217333) (xy -6.680378 3.348197) (xy -6.654031 3.469022) (xy -6.635552 3.556772)
(xy -6.633554 3.566739) (xy -6.612543 3.633024) (xy -6.588257 3.638488) (xy -6.561322 3.583765)
(xy -6.532367 3.469486) (xy -6.531166 3.463636) (xy -6.510222 3.362916) (xy -6.481173 3.225793)
(xy -6.449064 3.076019) (xy -6.436347 3.017212) (xy -6.404942 2.871686) (xy -6.37501 2.73174)
(xy -6.351352 2.619863) (xy -6.344343 2.586181) (xy -6.319546 2.469803) (xy -6.294412 2.397085)
(xy -6.255326 2.358334) (xy -6.188671 2.343856) (xy -6.080832 2.343956)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -4.533665 2.339943) (xy -4.368833 2.341617) (xy -4.250368 2.347126) (xy -4.170665 2.35869)
(xy -4.122123 2.378534) (xy -4.097137 2.40888) (xy -4.088106 2.451951) (xy -4.087425 2.509971)
(xy -4.087752 2.534221) (xy -4.089379 2.615512) (xy -4.091782 2.670848) (xy -4.109519 2.686867)
(xy -4.164283 2.698138) (xy -4.262764 2.705233) (xy -4.411648 2.708724) (xy -4.541212 2.709333)
(xy -4.987636 2.709333) (xy -4.987636 3.077) (xy -4.579697 3.085591) (xy -4.171757 3.094181)
(xy -4.171757 3.432848) (xy -4.579697 3.441439) (xy -4.987636 3.450029) (xy -4.987636 3.877668)
(xy -4.048606 3.894666) (xy -4.039373 4.071697) (xy -4.030139 4.248727) (xy -5.418667 4.248727)
(xy -5.418667 3.343002) (xy -5.41805 3.111042) (xy -5.416308 2.897733) (xy -5.413599 2.71123)
(xy -5.410083 2.559686) (xy -5.40592 2.451256) (xy -5.401269 2.394092) (xy -5.399979 2.388578)
(xy -5.386705 2.371938) (xy -5.356219 2.359505) (xy -5.300718 2.350694) (xy -5.212402 2.344916)
(xy -5.08347 2.341585) (xy -4.906119 2.340115) (xy -4.752467 2.339878) (xy -4.533665 2.339943)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -2.914367 2.346088) (xy -2.834028 2.363456) (xy -2.811277 2.378363) (xy -2.796535 2.413663)
(xy -2.765473 2.498772) (xy -2.721024 2.625008) (xy -2.666122 2.783691) (xy -2.603699 2.966141)
(xy -2.53669 3.163678) (xy -2.468026 3.367621) (xy -2.400642 3.569291) (xy -2.337471 3.760005)
(xy -2.281445 3.931085) (xy -2.235498 4.07385) (xy -2.202563 4.17962) (xy -2.202191 4.180854)
(xy -2.193852 4.217198) (xy -2.204212 4.237613) (xy -2.245193 4.245755) (xy -2.328715 4.245279)
(xy -2.40297 4.242429) (xy -2.625038 4.233333) (xy -2.675976 4.064) (xy -2.726913 3.894666)
(xy -3.368748 3.894666) (xy -3.38921 3.98703) (xy -3.420477 4.113254) (xy -3.454527 4.190654)
(xy -3.504486 4.231107) (xy -3.583479 4.246489) (xy -3.678389 4.248727) (xy -3.798531 4.244196)
(xy -3.863108 4.229913) (xy -3.878381 4.210242) (xy -3.868524 4.170843) (xy -3.841453 4.082313)
(xy -3.800097 3.953708) (xy -3.747387 3.794083) (xy -3.686252 3.612496) (xy -3.661758 3.540606)
(xy -3.640258 3.477612) (xy -3.223798 3.477612) (xy -3.210563 3.498351) (xy -3.164038 3.507492)
(xy -3.071864 3.509767) (xy -3.035113 3.509818) (xy -2.833349 3.509818) (xy -2.890635 3.348181)
(xy -2.93464 3.219712) (xy -2.979119 3.083341) (xy -2.99495 3.032606) (xy -3.024093 2.953106)
(xy -3.047654 2.918175) (xy -3.057923 2.924848) (xy -3.074892 2.977634) (xy -3.105081 3.074902)
(xy -3.144039 3.202147) (xy -3.187319 3.344865) (xy -3.216107 3.440545) (xy -3.223798 3.477612)
(xy -3.640258 3.477612) (xy -3.597932 3.353606) (xy -3.540813 3.18575) (xy -3.493426 3.04597)
(xy -3.458797 2.943195) (xy -3.43995 2.886356) (xy -3.437557 2.878666) (xy -3.392275 2.729524)
(xy -3.355324 2.632363) (xy -3.325834 2.563195) (xy -3.288579 2.472126) (xy -3.28186 2.455333)
(xy -3.235869 2.339878) (xy -3.037947 2.339878) (xy -2.914367 2.346088)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -1.518214 2.454014) (xy -1.449647 2.586322) (xy -1.365061 2.746885) (xy -1.273149 2.919464)
(xy -1.182606 3.087824) (xy -1.102126 3.235725) (xy -1.040404 3.34693) (xy -1.03533 3.355878)
(xy -0.93903 3.525212) (xy -0.921913 2.940242) (xy -0.916275 2.757348) (xy -0.910783 2.596856)
(xy -0.905813 2.468418) (xy -0.901738 2.381685) (xy -0.898935 2.346308) (xy -0.898822 2.346039)
(xy -0.867536 2.342529) (xy -0.792717 2.342966) (xy -0.715818 2.346039) (xy -0.538788 2.355272)
(xy -0.530644 3.303416) (xy -0.5225 4.251561) (xy -0.730201 4.242447) (xy -0.937901 4.233333)
(xy -1.056452 4.017818) (xy -1.126239 3.89014) (xy -1.211886 3.732244) (xy -1.304443 3.560753)
(xy -1.394958 3.392291) (xy -1.47448 3.243483) (xy -1.534058 3.130951) (xy -1.537195 3.124969)
(xy -1.553716 3.096738) (xy -1.566168 3.088255) (xy -1.575284 3.106171) (xy -1.581793 3.157135)
(xy -1.586429 3.247799) (xy -1.589922 3.38481) (xy -1.593004 3.574821) (xy -1.593923 3.640666)
(xy -1.602271 4.248727) (xy -2.002102 4.248727) (xy -1.99396 3.302) (xy -1.985818 2.355272)
(xy -1.78187 2.346257) (xy -1.577921 2.337241) (xy -1.518214 2.454014)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 0.834943 2.345827) (xy 1.000606 2.355272) (xy 1.039781 2.509212) (xy 1.060308 2.596315)
(xy 1.089254 2.727713) (xy 1.123151 2.887284) (xy 1.158535 3.058905) (xy 1.167657 3.104037)
(xy 1.209047 3.303825) (xy 1.241321 3.445346) (xy 1.2653 3.531099) (xy 1.281811 3.563585)
(xy 1.291675 3.545305) (xy 1.295447 3.491858) (xy 1.300961 3.409673) (xy 1.309089 3.355878)
(xy 1.322025 3.294624) (xy 1.342658 3.187592) (xy 1.368219 3.049687) (xy 1.395936 2.89581)
(xy 1.417855 2.770909) (xy 1.439561 2.647885) (xy 1.461518 2.527004) (xy 1.470606 2.478424)
(xy 1.494034 2.355272) (xy 1.686249 2.346101) (xy 1.782225 2.343577) (xy 1.848091 2.353519)
(xy 1.892243 2.385905) (xy 1.923077 2.450712) (xy 1.948992 2.557918) (xy 1.972852 2.686651)
(xy 1.997007 2.821023) (xy 2.021932 2.959151) (xy 2.035239 3.032606) (xy 2.056201 3.151501)
(xy 2.075731 3.267783) (xy 2.081416 3.303367) (xy 2.104144 3.43705) (xy 2.122897 3.511906)
(xy 2.140197 3.530342) (xy 2.158567 3.494763) (xy 2.180531 3.407575) (xy 2.182283 3.399533)
(xy 2.209213 3.275239) (xy 2.23555 3.15384) (xy 2.24851 3.094181) (xy 2.270821 2.989778)
(xy 2.297304 2.863396) (xy 2.310051 2.801697) (xy 2.337949 2.674326) (xy 2.368951 2.544936)
(xy 2.382213 2.493818) (xy 2.419615 2.355272) (xy 2.584264 2.345814) (xy 2.681583 2.345232)
(xy 2.753459 2.353949) (xy 2.776095 2.363537) (xy 2.778338 2.402073) (xy 2.765392 2.490959)
(xy 2.738967 2.621335) (xy 2.700769 2.784337) (xy 2.676319 2.880995) (xy 2.63125 3.055536)
(xy 2.589602 3.21774) (xy 2.55474 3.354436) (xy 2.530028 3.452454) (xy 2.52159 3.486727)
(xy 2.491455 3.610218) (xy 2.456288 3.7505) (xy 2.41187 3.924307) (xy 2.381797 4.040909)
(xy 2.328079 4.248727) (xy 2.134444 4.248727) (xy 2.027842 4.246674) (xy 1.967698 4.237158)
(xy 1.93894 4.215139) (xy 1.927238 4.179454) (xy 1.883428 3.952496) (xy 1.841848 3.730874)
(xy 1.804088 3.523639) (xy 1.77174 3.339843) (xy 1.746392 3.188538) (xy 1.729637 3.078776)
(xy 1.723064 3.019609) (xy 1.723026 3.017212) (xy 1.718737 2.967825) (xy 1.701963 2.974014)
(xy 1.693333 2.986424) (xy 1.671574 3.049665) (xy 1.663017 3.128072) (xy 1.653163 3.231416)
(xy 1.635275 3.312799) (xy 1.619418 3.377157) (xy 1.596234 3.48699) (xy 1.5688 3.627083)
(xy 1.540194 3.782222) (xy 1.539358 3.786909) (xy 1.512444 3.936096) (xy 1.488672 4.064739)
(xy 1.470476 4.159874) (xy 1.460292 4.208536) (xy 1.459837 4.210242) (xy 1.421268 4.235196)
(xy 1.324777 4.247468) (xy 1.265344 4.248727) (xy 1.157722 4.245139) (xy 1.097002 4.231798)
(xy 1.06879 4.204834) (xy 1.064921 4.194848) (xy 1.050213 4.142754) (xy 1.02451 4.047088)
(xy 0.992102 3.923926) (xy 0.972507 3.848484) (xy 0.885895 3.513219) (xy 0.813631 3.23263)
(xy 0.754587 3.001793) (xy 0.707637 2.815785) (xy 0.671652 2.669681) (xy 0.645507 2.558557)
(xy 0.628074 2.477491) (xy 0.618226 2.421559) (xy 0.614835 2.385836) (xy 0.616776 2.365398)
(xy 0.622919 2.355323) (xy 0.629832 2.351519) (xy 0.681333 2.344627) (xy 0.770454 2.343405)
(xy 0.834943 2.345827)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 4.33493 2.532303) (xy 4.344164 2.709333) (xy 3.448243 2.709333) (xy 3.448243 3.078787)
(xy 4.248727 3.078787) (xy 4.248727 3.448242) (xy 3.448243 3.448242) (xy 3.448243 3.879272)
(xy 4.371879 3.879272) (xy 4.371879 4.248727) (xy 3.04711 4.248727) (xy 3.055252 3.302)
(xy 3.063394 2.355272) (xy 4.325697 2.355272) (xy 4.33493 2.532303)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 4.898187 2.3458) (xy 5.064606 2.355272) (xy 5.081381 3.109575) (xy 5.086261 3.318201)
(xy 5.091097 3.50525) (xy 5.095634 3.662296) (xy 5.099616 3.780915) (xy 5.102786 3.852681)
(xy 5.104471 3.870682) (xy 5.135797 3.873805) (xy 5.217133 3.87757) (xy 5.336923 3.881549)
(xy 5.483611 3.885311) (xy 5.518727 3.886076) (xy 5.926667 3.894666) (xy 5.9359 4.071697)
(xy 5.945134 4.248727) (xy 4.679758 4.248727) (xy 4.680229 3.332787) (xy 4.681179 3.100019)
(xy 4.683638 2.886343) (xy 4.687388 2.699763) (xy 4.692211 2.548287) (xy 4.697889 2.43992)
(xy 4.704205 2.382668) (xy 4.706234 2.376588) (xy 4.756007 2.350548) (xy 4.861226 2.344243)
(xy 4.898187 2.3458)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 6.588606 3.879272) (xy 7.450667 3.879272) (xy 7.450667 4.248727) (xy 6.219152 4.248727)
(xy 6.219152 2.339878) (xy 6.588606 2.339878) (xy 6.588606 3.879272)) (layer F.SilkS) (width 0.01))
)
(module HASwitchPlate:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5C301275) (tstamp 5C3CC3EC)
(at 101.778 101.651)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 56.222 0.349) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
)
(module Symbol:OSHW-Logo_11.4x12mm_SilkScreen (layer F.Cu) (tedit 0) (tstamp 5C3D5AD6)
(at 135.306 130.48 90)
(descr "Open Source Hardware Logo")
(tags "Logo OSHW")
(attr virtual)
(fp_text reference REF** (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value OSHW-Logo_11.4x12mm_SilkScreen (at 0.75 0 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_poly (pts (xy 0.746535 -5.366828) (xy 0.859117 -4.769637) (xy 1.274531 -4.59839) (xy 1.689944 -4.427143)
(xy 2.188302 -4.766022) (xy 2.327868 -4.860378) (xy 2.454028 -4.944625) (xy 2.560895 -5.014917)
(xy 2.642582 -5.067408) (xy 2.693201 -5.098251) (xy 2.706986 -5.104902) (xy 2.73182 -5.087797)
(xy 2.784888 -5.040511) (xy 2.86024 -4.969083) (xy 2.951929 -4.879555) (xy 3.054007 -4.777966)
(xy 3.160526 -4.670357) (xy 3.265536 -4.562768) (xy 3.363091 -4.46124) (xy 3.447242 -4.371814)
(xy 3.51204 -4.300529) (xy 3.551538 -4.253427) (xy 3.56098 -4.237663) (xy 3.547391 -4.208602)
(xy 3.509293 -4.144934) (xy 3.450694 -4.052888) (xy 3.375597 -3.938691) (xy 3.288009 -3.808571)
(xy 3.237254 -3.734354) (xy 3.144745 -3.598833) (xy 3.06254 -3.476539) (xy 2.99463 -3.37356)
(xy 2.945 -3.295982) (xy 2.91764 -3.249894) (xy 2.913529 -3.240208) (xy 2.922849 -3.212681)
(xy 2.948254 -3.148527) (xy 2.985911 -3.056765) (xy 3.031986 -2.946416) (xy 3.082646 -2.8265)
(xy 3.134059 -2.706036) (xy 3.182389 -2.594046) (xy 3.223806 -2.499548) (xy 3.254474 -2.431563)
(xy 3.270562 -2.399112) (xy 3.271511 -2.397835) (xy 3.296772 -2.391638) (xy 3.364046 -2.377815)
(xy 3.46636 -2.357723) (xy 3.596741 -2.332721) (xy 3.748216 -2.304169) (xy 3.836594 -2.287704)
(xy 3.998452 -2.256886) (xy 4.144649 -2.227561) (xy 4.267787 -2.201334) (xy 4.360469 -2.179809)
(xy 4.415301 -2.16459) (xy 4.426323 -2.159762) (xy 4.437119 -2.127081) (xy 4.445829 -2.05327)
(xy 4.45246 -1.946963) (xy 4.457018 -1.816788) (xy 4.459509 -1.671379) (xy 4.459938 -1.519365)
(xy 4.458311 -1.369378) (xy 4.454635 -1.230049) (xy 4.448915 -1.11001) (xy 4.441158 -1.01789)
(xy 4.431368 -0.962323) (xy 4.425496 -0.950755) (xy 4.390399 -0.93689) (xy 4.316028 -0.917067)
(xy 4.212223 -0.893616) (xy 4.088819 -0.868864) (xy 4.045741 -0.860857) (xy 3.838047 -0.822814)
(xy 3.673984 -0.792176) (xy 3.54813 -0.767726) (xy 3.455065 -0.748246) (xy 3.389367 -0.732519)
(xy 3.345617 -0.719327) (xy 3.318392 -0.707451) (xy 3.302272 -0.695675) (xy 3.300017 -0.693347)
(xy 3.277503 -0.655855) (xy 3.243158 -0.58289) (xy 3.200411 -0.483388) (xy 3.152692 -0.366282)
(xy 3.10343 -0.240507) (xy 3.056055 -0.114998) (xy 3.013995 0.00131) (xy 2.98068 0.099484)
(xy 2.959541 0.170588) (xy 2.954005 0.205687) (xy 2.954466 0.206917) (xy 2.973223 0.235606)
(xy 3.015776 0.29873) (xy 3.077653 0.389718) (xy 3.154382 0.502) (xy 3.241491 0.629005)
(xy 3.266299 0.665098) (xy 3.354753 0.795948) (xy 3.432588 0.915336) (xy 3.495566 1.016407)
(xy 3.539445 1.092304) (xy 3.559985 1.136172) (xy 3.56098 1.141562) (xy 3.543722 1.169889)
(xy 3.496036 1.226006) (xy 3.42405 1.303882) (xy 3.333897 1.397485) (xy 3.231705 1.500786)
(xy 3.123606 1.607751) (xy 3.015728 1.712351) (xy 2.914204 1.808554) (xy 2.825162 1.890329)
(xy 2.754733 1.951645) (xy 2.709047 1.986471) (xy 2.696409 1.992157) (xy 2.666991 1.978765)
(xy 2.606761 1.942644) (xy 2.52553 1.889881) (xy 2.46303 1.847412) (xy 2.349785 1.769485)
(xy 2.215674 1.677729) (xy 2.081155 1.58612) (xy 2.008833 1.537091) (xy 1.764038 1.371515)
(xy 1.558551 1.48262) (xy 1.464936 1.531293) (xy 1.38533 1.569126) (xy 1.331467 1.590703)
(xy 1.317757 1.593706) (xy 1.30127 1.571538) (xy 1.268745 1.508894) (xy 1.222609 1.411554)
(xy 1.16529 1.285294) (xy 1.099216 1.135895) (xy 1.026815 0.969133) (xy 0.950516 0.790787)
(xy 0.872746 0.606636) (xy 0.795934 0.422457) (xy 0.722506 0.24403) (xy 0.654892 0.077132)
(xy 0.59552 -0.072458) (xy 0.546816 -0.198962) (xy 0.51121 -0.296601) (xy 0.49113 -0.359598)
(xy 0.4879 -0.381234) (xy 0.513496 -0.408831) (xy 0.569539 -0.45363) (xy 0.644311 -0.506321)
(xy 0.650587 -0.51049) (xy 0.843845 -0.665186) (xy 0.999674 -0.845664) (xy 1.116724 -1.046153)
(xy 1.193645 -1.260881) (xy 1.229086 -1.484078) (xy 1.221697 -1.709974) (xy 1.170127 -1.932796)
(xy 1.073026 -2.146776) (xy 1.044458 -2.193591) (xy 0.895868 -2.382637) (xy 0.720327 -2.534443)
(xy 0.52391 -2.648221) (xy 0.312693 -2.72318) (xy 0.092753 -2.758533) (xy -0.129837 -2.753488)
(xy -0.348999 -2.707256) (xy -0.558658 -2.619049) (xy -0.752739 -2.488076) (xy -0.812774 -2.434918)
(xy -0.965565 -2.268516) (xy -1.076903 -2.093343) (xy -1.153277 -1.896989) (xy -1.195813 -1.702538)
(xy -1.206314 -1.483913) (xy -1.171299 -1.264203) (xy -1.094327 -1.050835) (xy -0.978953 -0.851233)
(xy -0.828734 -0.672826) (xy -0.647227 -0.523038) (xy -0.623373 -0.507249) (xy -0.547799 -0.455543)
(xy -0.490349 -0.410743) (xy -0.462883 -0.382138) (xy -0.462483 -0.381234) (xy -0.46838 -0.350291)
(xy -0.491755 -0.280064) (xy -0.530179 -0.17633) (xy -0.581223 -0.044865) (xy -0.642458 0.108552)
(xy -0.711456 0.278146) (xy -0.785786 0.458138) (xy -0.863022 0.642753) (xy -0.940732 0.826213)
(xy -1.016489 1.002741) (xy -1.087863 1.166559) (xy -1.152426 1.311892) (xy -1.207748 1.432962)
(xy -1.2514 1.523992) (xy -1.280954 1.579205) (xy -1.292856 1.593706) (xy -1.329223 1.582414)
(xy -1.39727 1.55213) (xy -1.485263 1.508265) (xy -1.533649 1.48262) (xy -1.739137 1.371515)
(xy -1.983932 1.537091) (xy -2.108894 1.621915) (xy -2.245705 1.715261) (xy -2.373911 1.803153)
(xy -2.438129 1.847412) (xy -2.528449 1.908063) (xy -2.604929 1.956126) (xy -2.657593 1.985515)
(xy -2.674698 1.991727) (xy -2.699595 1.974968) (xy -2.754695 1.928181) (xy -2.834657 1.856225)
(xy -2.934139 1.763957) (xy -3.0478 1.656235) (xy -3.119685 1.587071) (xy -3.245449 1.463502)
(xy -3.354137 1.352979) (xy -3.441355 1.26023) (xy -3.502711 1.189982) (xy -3.533809 1.146965)
(xy -3.536792 1.138235) (xy -3.522947 1.105029) (xy -3.484688 1.037887) (xy -3.426258 0.943608)
(xy -3.351903 0.82899) (xy -3.265865 0.700828) (xy -3.241397 0.665098) (xy -3.152245 0.535234)
(xy -3.072262 0.418314) (xy -3.00592 0.320907) (xy -2.957689 0.249584) (xy -2.932043 0.210915)
(xy -2.929565 0.206917) (xy -2.933271 0.1761) (xy -2.952939 0.108344) (xy -2.98514 0.012584)
(xy -3.026445 -0.102246) (xy -3.073425 -0.227211) (xy -3.122651 -0.353376) (xy -3.170692 -0.471807)
(xy -3.214119 -0.57357) (xy -3.249504 -0.649729) (xy -3.273416 -0.691351) (xy -3.275116 -0.693347)
(xy -3.289738 -0.705242) (xy -3.314435 -0.717005) (xy -3.354628 -0.729854) (xy -3.415737 -0.745006)
(xy -3.503183 -0.763679) (xy -3.622388 -0.78709) (xy -3.778773 -0.816458) (xy -3.977757 -0.853)
(xy -4.02084 -0.860857) (xy -4.148529 -0.885528) (xy -4.259847 -0.909662) (xy -4.344955 -0.930931)
(xy -4.394017 -0.947007) (xy -4.400595 -0.950755) (xy -4.411436 -0.983982) (xy -4.420247 -1.058234)
(xy -4.427024 -1.164879) (xy -4.43176 -1.295288) (xy -4.43445 -1.440828) (xy -4.435087 -1.592869)
(xy -4.433666 -1.742779) (xy -4.43018 -1.881927) (xy -4.424624 -2.001683) (xy -4.416992 -2.093414)
(xy -4.407278 -2.148489) (xy -4.401422 -2.159762) (xy -4.36882 -2.171132) (xy -4.294582 -2.189631)
(xy -4.186104 -2.213653) (xy -4.050783 -2.241593) (xy -3.896015 -2.271847) (xy -3.811692 -2.287704)
(xy -3.651704 -2.317611) (xy -3.509033 -2.344705) (xy -3.390652 -2.367624) (xy -3.303535 -2.385012)
(xy -3.254655 -2.395508) (xy -3.24661 -2.397835) (xy -3.233013 -2.424069) (xy -3.204271 -2.48726)
(xy -3.164215 -2.578378) (xy -3.116676 -2.688398) (xy -3.065485 -2.80829) (xy -3.014474 -2.929028)
(xy -2.967474 -3.041584) (xy -2.928316 -3.136929) (xy -2.900831 -3.206038) (xy -2.888851 -3.239881)
(xy -2.888628 -3.24136) (xy -2.902209 -3.268058) (xy -2.940285 -3.329495) (xy -2.998853 -3.419566)
(xy -3.073912 -3.532165) (xy -3.16146 -3.661185) (xy -3.212353 -3.735294) (xy -3.305091 -3.871178)
(xy -3.387459 -3.994546) (xy -3.455439 -4.099158) (xy -3.505012 -4.178772) (xy -3.532158 -4.227148)
(xy -3.536079 -4.237993) (xy -3.519225 -4.263235) (xy -3.472632 -4.317131) (xy -3.402251 -4.393642)
(xy -3.314035 -4.486732) (xy -3.213935 -4.59036) (xy -3.107902 -4.698491) (xy -3.001889 -4.805085)
(xy -2.901848 -4.904105) (xy -2.81373 -4.989513) (xy -2.743487 -5.05527) (xy -2.697072 -5.095339)
(xy -2.681544 -5.104902) (xy -2.656261 -5.091455) (xy -2.595789 -5.05368) (xy -2.506008 -4.99542)
(xy -2.392797 -4.920521) (xy -2.262036 -4.83283) (xy -2.1634 -4.766022) (xy -1.665043 -4.427143)
(xy -1.249629 -4.59839) (xy -0.834216 -4.769637) (xy -0.721634 -5.366828) (xy -0.609051 -5.96402)
(xy 0.633952 -5.96402) (xy 0.746535 -5.366828)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 3.563637 2.887472) (xy 3.64929 2.913641) (xy 3.704437 2.946707) (xy 3.722401 2.972855)
(xy 3.717457 3.003852) (xy 3.685372 3.052547) (xy 3.658243 3.087035) (xy 3.602317 3.149383)
(xy 3.560299 3.175615) (xy 3.52448 3.173903) (xy 3.418224 3.146863) (xy 3.340189 3.148091)
(xy 3.27682 3.178735) (xy 3.255546 3.19667) (xy 3.187451 3.259779) (xy 3.187451 4.083922)
(xy 2.913529 4.083922) (xy 2.913529 2.888628) (xy 3.05049 2.888628) (xy 3.132719 2.891879)
(xy 3.175144 2.903426) (xy 3.187445 2.925952) (xy 3.187451 2.92662) (xy 3.19326 2.950215)
(xy 3.219531 2.947138) (xy 3.255931 2.930115) (xy 3.331111 2.898439) (xy 3.392158 2.879381)
(xy 3.470708 2.874496) (xy 3.563637 2.887472)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -1.49324 2.909199) (xy -1.431264 2.938802) (xy -1.371241 2.981561) (xy -1.325514 3.030775)
(xy -1.292207 3.093544) (xy -1.269445 3.176971) (xy -1.255353 3.288159) (xy -1.248058 3.434209)
(xy -1.245682 3.622223) (xy -1.245645 3.641912) (xy -1.245098 4.083922) (xy -1.51902 4.083922)
(xy -1.51902 3.676435) (xy -1.519215 3.525471) (xy -1.520564 3.416056) (xy -1.524212 3.339933)
(xy -1.531304 3.288848) (xy -1.542987 3.254545) (xy -1.560406 3.228768) (xy -1.584671 3.203298)
(xy -1.669565 3.148571) (xy -1.762239 3.138416) (xy -1.850527 3.173017) (xy -1.88123 3.19877)
(xy -1.903771 3.222982) (xy -1.919954 3.248912) (xy -1.930832 3.284708) (xy -1.937458 3.338519)
(xy -1.940885 3.418493) (xy -1.942166 3.532779) (xy -1.942353 3.671907) (xy -1.942353 4.083922)
(xy -2.216275 4.083922) (xy -2.216275 2.888628) (xy -2.079314 2.888628) (xy -1.997084 2.891879)
(xy -1.95466 2.903426) (xy -1.942359 2.925952) (xy -1.942353 2.92662) (xy -1.936646 2.948681)
(xy -1.911473 2.946177) (xy -1.861422 2.921937) (xy -1.747906 2.886271) (xy -1.618055 2.882305)
(xy -1.49324 2.909199)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 5.303287 2.884355) (xy 5.367051 2.899845) (xy 5.4893 2.956569) (xy 5.593834 3.043202)
(xy 5.66618 3.147074) (xy 5.676119 3.170396) (xy 5.689754 3.231484) (xy 5.699298 3.321853)
(xy 5.702549 3.41319) (xy 5.702549 3.585882) (xy 5.34147 3.585882) (xy 5.192546 3.586445)
(xy 5.087632 3.589864) (xy 5.020937 3.598731) (xy 4.986666 3.615641) (xy 4.979028 3.643189)
(xy 4.992229 3.683968) (xy 5.015877 3.731683) (xy 5.081843 3.811314) (xy 5.173512 3.850987)
(xy 5.285555 3.849695) (xy 5.412472 3.806514) (xy 5.522158 3.753224) (xy 5.613173 3.825191)
(xy 5.704188 3.897157) (xy 5.618563 3.976269) (xy 5.50425 4.051017) (xy 5.363666 4.096084)
(xy 5.212449 4.108696) (xy 5.066236 4.086079) (xy 5.042647 4.078405) (xy 4.914141 4.011296)
(xy 4.818551 3.911247) (xy 4.753861 3.775271) (xy 4.718057 3.60038) (xy 4.71764 3.596632)
(xy 4.714434 3.406032) (xy 4.727393 3.338035) (xy 4.980392 3.338035) (xy 5.003627 3.348491)
(xy 5.06671 3.3565) (xy 5.159706 3.361073) (xy 5.218638 3.361765) (xy 5.328537 3.361332)
(xy 5.397252 3.358578) (xy 5.433405 3.351321) (xy 5.445615 3.337376) (xy 5.442504 3.314562)
(xy 5.439894 3.305735) (xy 5.395344 3.2228) (xy 5.325279 3.15596) (xy 5.263446 3.126589)
(xy 5.181301 3.128362) (xy 5.098062 3.16499) (xy 5.028238 3.225634) (xy 4.986337 3.299456)
(xy 4.980392 3.338035) (xy 4.727393 3.338035) (xy 4.746385 3.238395) (xy 4.809773 3.097711)
(xy 4.900878 2.987974) (xy 5.015978 2.913174) (xy 5.151355 2.877304) (xy 5.303287 2.884355)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 4.390976 2.899056) (xy 4.535256 2.960348) (xy 4.580699 2.990185) (xy 4.638779 3.036036)
(xy 4.675238 3.072089) (xy 4.681568 3.083832) (xy 4.663693 3.109889) (xy 4.61795 3.154105)
(xy 4.581328 3.184965) (xy 4.481088 3.26552) (xy 4.401935 3.198918) (xy 4.340769 3.155921)
(xy 4.281129 3.141079) (xy 4.212872 3.144704) (xy 4.104482 3.171652) (xy 4.029872 3.227587)
(xy 3.98453 3.318014) (xy 3.963947 3.448435) (xy 3.963942 3.448517) (xy 3.965722 3.59429)
(xy 3.993387 3.701245) (xy 4.048571 3.774064) (xy 4.086192 3.798723) (xy 4.186105 3.829431)
(xy 4.292822 3.829449) (xy 4.385669 3.799655) (xy 4.407647 3.785098) (xy 4.462765 3.747914)
(xy 4.505859 3.74182) (xy 4.552335 3.769496) (xy 4.603716 3.819205) (xy 4.685046 3.903116)
(xy 4.594749 3.977546) (xy 4.455236 4.061549) (xy 4.297912 4.102947) (xy 4.133503 4.09995)
(xy 4.025531 4.0725) (xy 3.899331 4.00462) (xy 3.798401 3.897831) (xy 3.752548 3.822451)
(xy 3.71541 3.714297) (xy 3.696827 3.577318) (xy 3.696684 3.428864) (xy 3.714865 3.286281)
(xy 3.751255 3.166918) (xy 3.756987 3.15468) (xy 3.841865 3.034655) (xy 3.956782 2.947267)
(xy 4.092659 2.894329) (xy 4.240417 2.877654) (xy 4.390976 2.899056)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 1.967254 3.276245) (xy 1.969608 3.458879) (xy 1.978207 3.5976) (xy 1.99536 3.698147)
(xy 2.023374 3.766254) (xy 2.064557 3.807659) (xy 2.121217 3.828097) (xy 2.191372 3.833318)
(xy 2.264848 3.827468) (xy 2.320657 3.806093) (xy 2.361109 3.763458) (xy 2.388509 3.693825)
(xy 2.405167 3.59146) (xy 2.413389 3.450624) (xy 2.41549 3.276245) (xy 2.41549 2.888628)
(xy 2.689411 2.888628) (xy 2.689411 4.083922) (xy 2.552451 4.083922) (xy 2.469884 4.080576)
(xy 2.427368 4.068826) (xy 2.41549 4.04652) (xy 2.408336 4.026654) (xy 2.379865 4.030857)
(xy 2.322476 4.058971) (xy 2.190945 4.102342) (xy 2.051438 4.09927) (xy 1.917765 4.052174)
(xy 1.854108 4.014971) (xy 1.805553 3.974691) (xy 1.770081 3.924291) (xy 1.745674 3.856729)
(xy 1.730313 3.764965) (xy 1.721982 3.641955) (xy 1.718662 3.480659) (xy 1.718235 3.355928)
(xy 1.718235 2.888628) (xy 1.967254 2.888628) (xy 1.967254 3.276245)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 1.209547 2.903364) (xy 1.335502 2.971959) (xy 1.434047 3.080245) (xy 1.480478 3.168315)
(xy 1.500412 3.246101) (xy 1.513328 3.356993) (xy 1.518863 3.484738) (xy 1.516654 3.613084)
(xy 1.506337 3.725779) (xy 1.494286 3.785969) (xy 1.453634 3.868311) (xy 1.38323 3.95577)
(xy 1.298382 4.032251) (xy 1.214397 4.081655) (xy 1.212349 4.082439) (xy 1.108134 4.104027)
(xy 0.984627 4.104562) (xy 0.867261 4.084908) (xy 0.821942 4.069155) (xy 0.70522 4.002966)
(xy 0.621624 3.916246) (xy 0.566701 3.801438) (xy 0.535995 3.650982) (xy 0.529047 3.572173)
(xy 0.529933 3.473145) (xy 0.796862 3.473145) (xy 0.805854 3.617645) (xy 0.831736 3.72776)
(xy 0.872868 3.798116) (xy 0.902172 3.818235) (xy 0.977251 3.832265) (xy 1.066494 3.828111)
(xy 1.14365 3.807922) (xy 1.163883 3.796815) (xy 1.217265 3.732123) (xy 1.2525 3.633119)
(xy 1.267498 3.512632) (xy 1.260172 3.383494) (xy 1.243799 3.305775) (xy 1.19679 3.215771)
(xy 1.122582 3.159509) (xy 1.033209 3.140057) (xy 0.940707 3.160481) (xy 0.869653 3.210437)
(xy 0.832312 3.251655) (xy 0.810518 3.292281) (xy 0.80013 3.347264) (xy 0.797006 3.431549)
(xy 0.796862 3.473145) (xy 0.529933 3.473145) (xy 0.53093 3.361874) (xy 0.56518 3.189423)
(xy 0.631802 3.054814) (xy 0.730799 2.95804) (xy 0.862175 2.899094) (xy 0.890385 2.892259)
(xy 1.059926 2.876213) (xy 1.209547 2.903364)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 0.027759 2.884345) (xy 0.122059 2.902229) (xy 0.21989 2.939633) (xy 0.230343 2.944402)
(xy 0.304531 2.983412) (xy 0.35591 3.019664) (xy 0.372517 3.042887) (xy 0.356702 3.080761)
(xy 0.318288 3.136644) (xy 0.301237 3.157505) (xy 0.230969 3.239618) (xy 0.140379 3.186168)
(xy 0.054164 3.150561) (xy -0.045451 3.131529) (xy -0.140981 3.130326) (xy -0.214939 3.14821)
(xy -0.232688 3.159373) (xy -0.266488 3.210553) (xy -0.270596 3.269509) (xy -0.245304 3.315567)
(xy -0.230344 3.324499) (xy -0.185514 3.335592) (xy -0.106714 3.34863) (xy -0.009574 3.361088)
(xy 0.008346 3.363042) (xy 0.164365 3.39003) (xy 0.277523 3.435873) (xy 0.352569 3.504803)
(xy 0.394253 3.601054) (xy 0.407238 3.718617) (xy 0.389299 3.852254) (xy 0.33105 3.957195)
(xy 0.232255 4.03363) (xy 0.092682 4.081748) (xy -0.062255 4.100732) (xy -0.188602 4.100504)
(xy -0.291087 4.083262) (xy -0.361079 4.059457) (xy -0.449517 4.017978) (xy -0.531246 3.969842)
(xy -0.560295 3.948655) (xy -0.635 3.887676) (xy -0.544902 3.796508) (xy -0.454804 3.705339)
(xy -0.352368 3.773128) (xy -0.249626 3.824042) (xy -0.139913 3.850673) (xy -0.034449 3.853483)
(xy 0.055546 3.832935) (xy 0.118854 3.789493) (xy 0.139296 3.752838) (xy 0.136229 3.694053)
(xy 0.085434 3.649099) (xy -0.012952 3.618057) (xy -0.120744 3.60371) (xy -0.286635 3.576337)
(xy -0.409876 3.524693) (xy -0.492114 3.447266) (xy -0.534999 3.342544) (xy -0.54094 3.218387)
(xy -0.511594 3.088702) (xy -0.444691 2.990677) (xy -0.339629 2.923866) (xy -0.19581 2.88782)
(xy -0.089262 2.880754) (xy 0.027759 2.884345)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -2.686796 2.916354) (xy -2.661981 2.928037) (xy -2.576094 2.990951) (xy -2.494879 3.082769)
(xy -2.434236 3.183868) (xy -2.416988 3.230349) (xy -2.401251 3.313376) (xy -2.391867 3.413713)
(xy -2.390728 3.455147) (xy -2.390589 3.585882) (xy -3.143047 3.585882) (xy -3.127007 3.654363)
(xy -3.087637 3.735355) (xy -3.018806 3.805351) (xy -2.936919 3.850441) (xy -2.884737 3.859804)
(xy -2.813971 3.848441) (xy -2.72954 3.819943) (xy -2.700858 3.806831) (xy -2.594791 3.753858)
(xy -2.504272 3.822901) (xy -2.452039 3.869597) (xy -2.424247 3.90814) (xy -2.42284 3.919452)
(xy -2.447668 3.946868) (xy -2.502083 3.988532) (xy -2.551472 4.021037) (xy -2.684748 4.079468)
(xy -2.834161 4.105915) (xy -2.982249 4.099039) (xy -3.100295 4.063096) (xy -3.221982 3.986101)
(xy -3.30846 3.884728) (xy -3.362559 3.75357) (xy -3.387109 3.587224) (xy -3.389286 3.511108)
(xy -3.380573 3.336685) (xy -3.379503 3.331611) (xy -3.130173 3.331611) (xy -3.123306 3.347968)
(xy -3.095083 3.356988) (xy -3.036873 3.360854) (xy -2.940042 3.361749) (xy -2.902757 3.361765)
(xy -2.789317 3.360413) (xy -2.717378 3.355505) (xy -2.678687 3.34576) (xy -2.664995 3.329899)
(xy -2.66451 3.324805) (xy -2.680137 3.284326) (xy -2.719247 3.227621) (xy -2.736061 3.207766)
(xy -2.798481 3.151611) (xy -2.863547 3.129532) (xy -2.898603 3.127686) (xy -2.993442 3.150766)
(xy -3.072973 3.212759) (xy -3.123423 3.302802) (xy -3.124317 3.305735) (xy -3.130173 3.331611)
(xy -3.379503 3.331611) (xy -3.351601 3.199343) (xy -3.29941 3.089461) (xy -3.235579 3.011461)
(xy -3.117567 2.926882) (xy -2.978842 2.881686) (xy -2.83129 2.8776) (xy -2.686796 2.916354)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -5.026753 2.901568) (xy -4.896478 2.959163) (xy -4.797581 3.055334) (xy -4.729918 3.190229)
(xy -4.693345 3.363996) (xy -4.690724 3.391126) (xy -4.68867 3.582408) (xy -4.715301 3.750073)
(xy -4.768999 3.885967) (xy -4.797753 3.929681) (xy -4.897909 4.022198) (xy -5.025463 4.082119)
(xy -5.168163 4.106985) (xy -5.31376 4.094339) (xy -5.424438 4.055391) (xy -5.519616 3.989755)
(xy -5.597406 3.903699) (xy -5.598751 3.901685) (xy -5.630343 3.84857) (xy -5.650873 3.79516)
(xy -5.663305 3.727754) (xy -5.670603 3.632653) (xy -5.673818 3.554666) (xy -5.675156 3.483944)
(xy -5.426186 3.483944) (xy -5.423753 3.554348) (xy -5.41492 3.648068) (xy -5.399336 3.708214)
(xy -5.371234 3.751006) (xy -5.344914 3.776002) (xy -5.251608 3.828338) (xy -5.15398 3.835333)
(xy -5.063058 3.797676) (xy -5.017598 3.755479) (xy -4.984838 3.712956) (xy -4.965677 3.672267)
(xy -4.957267 3.619314) (xy -4.956763 3.539997) (xy -4.959355 3.46695) (xy -4.964929 3.362601)
(xy -4.973766 3.29492) (xy -4.989693 3.250774) (xy -5.016538 3.217031) (xy -5.037811 3.197746)
(xy -5.126794 3.147086) (xy -5.222789 3.14456) (xy -5.303281 3.174567) (xy -5.371947 3.237231)
(xy -5.412856 3.340168) (xy -5.426186 3.483944) (xy -5.675156 3.483944) (xy -5.676754 3.399582)
(xy -5.67174 3.2836) (xy -5.656717 3.196367) (xy -5.629624 3.12753) (xy -5.5884 3.066737)
(xy -5.573115 3.048686) (xy -5.477546 2.958746) (xy -5.375039 2.906211) (xy -5.249679 2.884201)
(xy -5.18855 2.882402) (xy -5.026753 2.901568)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 4.025307 4.762784) (xy 4.144337 4.793731) (xy 4.244021 4.8576) (xy 4.292288 4.905313)
(xy 4.371408 5.018106) (xy 4.416752 5.14895) (xy 4.43233 5.309792) (xy 4.43241 5.322794)
(xy 4.432549 5.45353) (xy 3.680091 5.45353) (xy 3.69613 5.52201) (xy 3.725091 5.584031)
(xy 3.775778 5.648654) (xy 3.786379 5.658971) (xy 3.877494 5.714805) (xy 3.9814 5.724275)
(xy 4.101 5.68754) (xy 4.121274 5.677647) (xy 4.183456 5.647574) (xy 4.225106 5.63044)
(xy 4.232373 5.628855) (xy 4.25774 5.644242) (xy 4.30612 5.681887) (xy 4.330679 5.702459)
(xy 4.38157 5.749714) (xy 4.398281 5.780917) (xy 4.386683 5.80962) (xy 4.380483 5.817468)
(xy 4.338493 5.851819) (xy 4.269206 5.893565) (xy 4.220882 5.917935) (xy 4.083711 5.960873)
(xy 3.931847 5.974786) (xy 3.788024 5.9583) (xy 3.747745 5.946496) (xy 3.623078 5.879689)
(xy 3.530671 5.776892) (xy 3.46999 5.637105) (xy 3.440498 5.45933) (xy 3.43726 5.366373)
(xy 3.446714 5.231033) (xy 3.68549 5.231033) (xy 3.708584 5.241038) (xy 3.770662 5.248888)
(xy 3.860914 5.253521) (xy 3.922058 5.254314) (xy 4.03204 5.253549) (xy 4.101457 5.24997)
(xy 4.139538 5.241649) (xy 4.155515 5.226657) (xy 4.158627 5.204903) (xy 4.137278 5.137892)
(xy 4.083529 5.071664) (xy 4.012822 5.020832) (xy 3.942089 5.000038) (xy 3.846016 5.018484)
(xy 3.762849 5.071811) (xy 3.705186 5.148677) (xy 3.68549 5.231033) (xy 3.446714 5.231033)
(xy 3.451028 5.169291) (xy 3.49352 5.012271) (xy 3.565635 4.894069) (xy 3.668273 4.81344)
(xy 3.802332 4.769139) (xy 3.874957 4.760607) (xy 4.025307 4.762784)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 3.238446 4.755883) (xy 3.334177 4.774755) (xy 3.388677 4.802699) (xy 3.446008 4.849123)
(xy 3.364441 4.952111) (xy 3.31415 5.014479) (xy 3.280001 5.044907) (xy 3.246063 5.049555)
(xy 3.196406 5.034586) (xy 3.173096 5.026117) (xy 3.078063 5.013622) (xy 2.991032 5.040406)
(xy 2.927138 5.100915) (xy 2.916759 5.120208) (xy 2.905456 5.171314) (xy 2.896732 5.2655)
(xy 2.890997 5.396089) (xy 2.88866 5.556405) (xy 2.888627 5.579211) (xy 2.888627 5.976471)
(xy 2.614705 5.976471) (xy 2.614705 4.756275) (xy 2.751666 4.756275) (xy 2.830638 4.758337)
(xy 2.871779 4.767513) (xy 2.886992 4.78829) (xy 2.888627 4.807886) (xy 2.888627 4.859497)
(xy 2.95424 4.807886) (xy 3.029475 4.772675) (xy 3.130544 4.755265) (xy 3.238446 4.755883)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 2.056459 4.763669) (xy 2.16142 4.789163) (xy 2.191761 4.802669) (xy 2.250573 4.838046)
(xy 2.295709 4.87789) (xy 2.329106 4.92912) (xy 2.352701 4.998654) (xy 2.368433 5.093409)
(xy 2.378239 5.220305) (xy 2.384057 5.386258) (xy 2.386266 5.497108) (xy 2.394396 5.976471)
(xy 2.255531 5.976471) (xy 2.171287 5.972938) (xy 2.127884 5.960866) (xy 2.116666 5.940594)
(xy 2.110744 5.918674) (xy 2.084266 5.922865) (xy 2.048186 5.940441) (xy 1.957862 5.967382)
(xy 1.841777 5.974642) (xy 1.71968 5.962767) (xy 1.611321 5.932305) (xy 1.601602 5.928077)
(xy 1.502568 5.858505) (xy 1.437281 5.761789) (xy 1.40724 5.648738) (xy 1.409535 5.608122)
(xy 1.654633 5.608122) (xy 1.676229 5.662782) (xy 1.740259 5.701952) (xy 1.843565 5.722974)
(xy 1.898774 5.725766) (xy 1.990782 5.71862) (xy 2.051941 5.690848) (xy 2.066862 5.677647)
(xy 2.107287 5.605829) (xy 2.116666 5.540686) (xy 2.116666 5.45353) (xy 1.995269 5.45353)
(xy 1.854153 5.460722) (xy 1.755173 5.483345) (xy 1.692633 5.522964) (xy 1.678631 5.540628)
(xy 1.654633 5.608122) (xy 1.409535 5.608122) (xy 1.413941 5.530157) (xy 1.45888 5.416855)
(xy 1.520196 5.340285) (xy 1.557332 5.307181) (xy 1.593687 5.285425) (xy 1.64099 5.272161)
(xy 1.710973 5.264528) (xy 1.815364 5.25967) (xy 1.85677 5.258273) (xy 2.116666 5.24978)
(xy 2.116285 5.171116) (xy 2.106219 5.088428) (xy 2.069829 5.038431) (xy 1.996311 5.006489)
(xy 1.994339 5.00592) (xy 1.890105 4.993361) (xy 1.788108 5.009766) (xy 1.712305 5.049657)
(xy 1.68189 5.069354) (xy 1.649132 5.066629) (xy 1.598721 5.038091) (xy 1.569119 5.01795)
(xy 1.511218 4.974919) (xy 1.475352 4.942662) (xy 1.469597 4.933427) (xy 1.493295 4.885636)
(xy 1.563313 4.828562) (xy 1.593725 4.809305) (xy 1.681155 4.77614) (xy 1.798983 4.75735)
(xy 1.929866 4.753129) (xy 2.056459 4.763669)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy 0.557528 4.761332) (xy 0.656014 4.768726) (xy 0.784776 5.154706) (xy 0.913537 5.540686)
(xy 0.953911 5.403726) (xy 0.978207 5.319083) (xy 1.010167 5.204697) (xy 1.044679 5.078963)
(xy 1.062928 5.01152) (xy 1.131571 4.756275) (xy 1.414773 4.756275) (xy 1.330122 5.023971)
(xy 1.288435 5.155638) (xy 1.238074 5.314458) (xy 1.185481 5.480128) (xy 1.13853 5.627843)
(xy 1.031589 5.96402) (xy 0.800661 5.979044) (xy 0.73805 5.772316) (xy 0.699438 5.643896)
(xy 0.6573 5.502322) (xy 0.620472 5.377285) (xy 0.619018 5.372309) (xy 0.591511 5.287586)
(xy 0.567242 5.229778) (xy 0.550243 5.207918) (xy 0.54675 5.210446) (xy 0.53449 5.244336)
(xy 0.511195 5.31693) (xy 0.4797 5.419101) (xy 0.442842 5.54172) (xy 0.422899 5.609167)
(xy 0.314895 5.976471) (xy 0.085679 5.976471) (xy -0.097561 5.3975) (xy -0.149037 5.235091)
(xy -0.19593 5.087602) (xy -0.236023 4.96196) (xy -0.267103 4.865095) (xy -0.286955 4.803934)
(xy -0.292989 4.786065) (xy -0.288212 4.767768) (xy -0.250703 4.759755) (xy -0.172645 4.760557)
(xy -0.160426 4.761163) (xy -0.015674 4.768726) (xy 0.07913 5.117353) (xy 0.113977 5.244497)
(xy 0.145117 5.356265) (xy 0.169809 5.442953) (xy 0.185312 5.494856) (xy 0.188176 5.503318)
(xy 0.200046 5.493587) (xy 0.223983 5.443172) (xy 0.257239 5.358935) (xy 0.297064 5.247741)
(xy 0.33073 5.147297) (xy 0.459041 4.753939) (xy 0.557528 4.761332)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -0.398432 5.976471) (xy -0.535393 5.976471) (xy -0.614889 5.97414) (xy -0.656292 5.964488)
(xy -0.671199 5.943525) (xy -0.672353 5.929351) (xy -0.674867 5.900927) (xy -0.69072 5.895475)
(xy -0.732379 5.912998) (xy -0.764776 5.929351) (xy -0.889151 5.968103) (xy -1.024354 5.970346)
(xy -1.134274 5.941444) (xy -1.236634 5.871619) (xy -1.31466 5.768555) (xy -1.357386 5.646989)
(xy -1.358474 5.640192) (xy -1.364822 5.566032) (xy -1.367979 5.45957) (xy -1.367725 5.379052)
(xy -1.095711 5.379052) (xy -1.08941 5.48607) (xy -1.075075 5.574278) (xy -1.055669 5.62409)
(xy -0.982254 5.692162) (xy -0.895086 5.716564) (xy -0.805196 5.696831) (xy -0.728383 5.637968)
(xy -0.699292 5.598379) (xy -0.682283 5.551138) (xy -0.674316 5.482181) (xy -0.672353 5.378607)
(xy -0.675866 5.276039) (xy -0.685143 5.185921) (xy -0.698294 5.125613) (xy -0.700486 5.120208)
(xy -0.753522 5.05594) (xy -0.830933 5.020656) (xy -0.917546 5.014959) (xy -0.998193 5.039453)
(xy -1.057703 5.094742) (xy -1.063876 5.105743) (xy -1.083199 5.172827) (xy -1.093726 5.269284)
(xy -1.095711 5.379052) (xy -1.367725 5.379052) (xy -1.367596 5.338225) (xy -1.365806 5.272918)
(xy -1.353627 5.111355) (xy -1.328315 4.990053) (xy -1.286207 4.900379) (xy -1.223641 4.833699)
(xy -1.1629 4.794557) (xy -1.078036 4.76704) (xy -0.972485 4.757603) (xy -0.864402 4.76529)
(xy -0.771942 4.789146) (xy -0.72309 4.817685) (xy -0.672353 4.863601) (xy -0.672353 4.283137)
(xy -0.398432 4.283137) (xy -0.398432 5.976471)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -1.967236 4.758921) (xy -1.92997 4.770091) (xy -1.917957 4.794633) (xy -1.917451 4.805712)
(xy -1.915296 4.836572) (xy -1.900449 4.841417) (xy -1.860343 4.82026) (xy -1.83652 4.805806)
(xy -1.761362 4.77485) (xy -1.671594 4.759544) (xy -1.577471 4.758367) (xy -1.489246 4.769799)
(xy -1.417174 4.79232) (xy -1.371508 4.824409) (xy -1.362502 4.864545) (xy -1.367047 4.875415)
(xy -1.400179 4.920534) (xy -1.451555 4.976026) (xy -1.460848 4.984996) (xy -1.509818 5.026245)
(xy -1.552069 5.039572) (xy -1.611159 5.030271) (xy -1.634831 5.02409) (xy -1.708496 5.009246)
(xy -1.76029 5.015921) (xy -1.804031 5.039465) (xy -1.844098 5.071061) (xy -1.873608 5.110798)
(xy -1.894116 5.166252) (xy -1.907176 5.245003) (xy -1.914344 5.354629) (xy -1.917176 5.502706)
(xy -1.917451 5.592111) (xy -1.917451 5.976471) (xy -2.166471 5.976471) (xy -2.166471 4.756275)
(xy -2.041961 4.756275) (xy -1.967236 4.758921)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -2.74128 4.765922) (xy -2.62413 4.79718) (xy -2.534949 4.853837) (xy -2.472016 4.928045)
(xy -2.452452 4.959716) (xy -2.438008 4.992891) (xy -2.427911 5.035329) (xy -2.421385 5.094788)
(xy -2.417658 5.179029) (xy -2.415954 5.29581) (xy -2.4155 5.45289) (xy -2.415491 5.494565)
(xy -2.415491 5.976471) (xy -2.53502 5.976471) (xy -2.611261 5.971131) (xy -2.667634 5.957604)
(xy -2.681758 5.949262) (xy -2.72037 5.934864) (xy -2.759808 5.949262) (xy -2.824738 5.967237)
(xy -2.919055 5.974472) (xy -3.023593 5.971333) (xy -3.119189 5.958186) (xy -3.175 5.941318)
(xy -3.283002 5.871986) (xy -3.350497 5.775772) (xy -3.380841 5.647844) (xy -3.381123 5.644559)
(xy -3.37846 5.587808) (xy -3.137647 5.587808) (xy -3.116595 5.652358) (xy -3.082303 5.688686)
(xy -3.013468 5.716162) (xy -2.92261 5.727129) (xy -2.829958 5.721731) (xy -2.755744 5.70011)
(xy -2.734951 5.686239) (xy -2.698619 5.622143) (xy -2.689412 5.549278) (xy -2.689412 5.45353)
(xy -2.827173 5.45353) (xy -2.958047 5.463605) (xy -3.057259 5.492148) (xy -3.118977 5.536639)
(xy -3.137647 5.587808) (xy -3.37846 5.587808) (xy -3.374564 5.50479) (xy -3.328466 5.394282)
(xy -3.2418 5.310712) (xy -3.229821 5.30311) (xy -3.178345 5.278357) (xy -3.114632 5.263368)
(xy -3.025565 5.256082) (xy -2.919755 5.254407) (xy -2.689412 5.254314) (xy -2.689412 5.157755)
(xy -2.699183 5.082836) (xy -2.724116 5.032644) (xy -2.727035 5.029972) (xy -2.782519 5.008015)
(xy -2.866273 4.999505) (xy -2.958833 5.003687) (xy -3.04073 5.019809) (xy -3.089327 5.04399)
(xy -3.115659 5.063359) (xy -3.143465 5.067057) (xy -3.181839 5.051188) (xy -3.239875 5.011855)
(xy -3.326669 4.945164) (xy -3.334635 4.938916) (xy -3.330553 4.9158) (xy -3.296499 4.877352)
(xy -3.24474 4.834627) (xy -3.187545 4.798679) (xy -3.169575 4.790191) (xy -3.104028 4.773252)
(xy -3.00798 4.76117) (xy -2.900671 4.756323) (xy -2.895653 4.756313) (xy -2.74128 4.765922)) (layer F.SilkS) (width 0.01))
(fp_poly (pts (xy -3.780091 2.90956) (xy -3.727588 2.935499) (xy -3.662842 2.9807) (xy -3.615653 3.029991)
(xy -3.583335 3.091885) (xy -3.563203 3.174896) (xy -3.55257 3.287538) (xy -3.548753 3.438324)
(xy -3.54853 3.503149) (xy -3.549182 3.645221) (xy -3.551888 3.746757) (xy -3.557776 3.817015)
(xy -3.567973 3.865256) (xy -3.583606 3.900738) (xy -3.599872 3.924943) (xy -3.703705 4.027929)
(xy -3.825979 4.089874) (xy -3.957886 4.108506) (xy -4.090616 4.081549) (xy -4.132667 4.062486)
(xy -4.233334 4.010015) (xy -4.233334 4.832259) (xy -4.159865 4.794267) (xy -4.063059 4.764872)
(xy -3.944072 4.757342) (xy -3.825255 4.771245) (xy -3.735527 4.802476) (xy -3.661101 4.861954)
(xy -3.59751 4.947066) (xy -3.592729 4.955805) (xy -3.572563 4.996966) (xy -3.557835 5.038454)
(xy -3.547697 5.088713) (xy -3.541301 5.156184) (xy -3.537799 5.249309) (xy -3.536342 5.376531)
(xy -3.536079 5.519701) (xy -3.536079 5.976471) (xy -3.81 5.976471) (xy -3.81 5.134231)
(xy -3.886617 5.069763) (xy -3.966207 5.018194) (xy -4.041578 5.008818) (xy -4.117367 5.032947)
(xy -4.157759 5.056574) (xy -4.187821 5.090227) (xy -4.209203 5.141087) (xy -4.22355 5.216334)
(xy -4.23251 5.323146) (xy -4.23773 5.468704) (xy -4.239569 5.565588) (xy -4.245785 5.96402)
(xy -4.37652 5.971547) (xy -4.507255 5.979073) (xy -4.507255 3.506582) (xy -4.233334 3.506582)
(xy -4.22635 3.644423) (xy -4.202818 3.740107) (xy -4.158865 3.799641) (xy -4.090618 3.829029)
(xy -4.021667 3.834902) (xy -3.943614 3.828154) (xy -3.891811 3.801594) (xy -3.859417 3.766499)
(xy -3.833916 3.728752) (xy -3.818735 3.6867) (xy -3.811981 3.627779) (xy -3.811759 3.539428)
(xy -3.814032 3.465448) (xy -3.819251 3.354) (xy -3.827021 3.280833) (xy -3.840105 3.234422)
(xy -3.861268 3.203244) (xy -3.88124 3.185223) (xy -3.964686 3.145925) (xy -4.063449 3.139579)
(xy -4.120159 3.153116) (xy -4.176308 3.201233) (xy -4.213501 3.294833) (xy -4.231528 3.433254)
(xy -4.233334 3.506582) (xy -4.507255 3.506582) (xy -4.507255 2.888628) (xy -4.370295 2.888628)
(xy -4.288065 2.891879) (xy -4.24564 2.903426) (xy -4.233339 2.925952) (xy -4.233334 2.92662)
(xy -4.227626 2.948681) (xy -4.202453 2.946176) (xy -4.152402 2.921935) (xy -4.035781 2.884851)
(xy -3.904571 2.880953) (xy -3.780091 2.90956)) (layer F.SilkS) (width 0.01))
)
(module Symbol:KiCad-Logo2_12mm_SilkScreen (layer B.Cu) (tedit 0) (tstamp 5C46C87E)
(at 134.036 125.654 270)
(descr "KiCad Logo")
(tags "Logo KiCad")
(attr virtual)
(fp_text reference REF** (at 0 0 270) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KiCad-Logo2_12mm_SilkScreen (at 0.75 0 270) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_poly (pts (xy -4.56638 5.973406) (xy -4.37297 5.924714) (xy -4.199029 5.838668) (xy -4.04874 5.718579)
(xy -3.926284 5.567757) (xy -3.835845 5.389514) (xy -3.783086 5.196033) (xy -3.771332 5.000636)
(xy -3.801173 4.81208) (xy -3.868874 4.635581) (xy -3.970703 4.476355) (xy -4.102925 4.339615)
(xy -4.261808 4.230578) (xy -4.443617 4.15446) (xy -4.546606 4.129502) (xy -4.635999 4.114392)
(xy -4.704909 4.108421) (xy -4.771124 4.112087) (xy -4.852434 4.125887) (xy -4.918922 4.1399)
(xy -5.106588 4.2032) (xy -5.274681 4.305904) (xy -5.419416 4.444898) (xy -5.537007 4.617065)
(xy -5.565029 4.671786) (xy -5.598051 4.744845) (xy -5.61876 4.806197) (xy -5.629941 4.870748)
(xy -5.63438 4.953401) (xy -5.634939 5.045982) (xy -5.626729 5.215451) (xy -5.599779 5.354627)
(xy -5.549174 5.476418) (xy -5.470002 5.593728) (xy -5.392562 5.682651) (xy -5.248136 5.814875)
(xy -5.097279 5.906145) (xy -4.931038 5.960792) (xy -4.775078 5.981433) (xy -4.56638 5.973406)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 12.428251 1.060223) (xy 12.42829 0.589295) (xy 12.428342 0.161512) (xy 12.428488 -0.225338)
(xy 12.428805 -0.573466) (xy 12.429371 -0.885085) (xy 12.430265 -1.162406) (xy 12.431565 -1.40764)
(xy 12.433349 -1.623001) (xy 12.435697 -1.8107) (xy 12.438685 -1.972948) (xy 12.442393 -2.111957)
(xy 12.446899 -2.22994) (xy 12.452282 -2.329109) (xy 12.458619 -2.411674) (xy 12.465988 -2.479848)
(xy 12.47447 -2.535843) (xy 12.484141 -2.58187) (xy 12.495079 -2.620143) (xy 12.507365 -2.652871)
(xy 12.521075 -2.682268) (xy 12.536288 -2.710544) (xy 12.553083 -2.739913) (xy 12.563516 -2.758207)
(xy 12.632352 -2.880179) (xy 10.908393 -2.880179) (xy 10.908393 -2.687411) (xy 10.906923 -2.600296)
(xy 10.903002 -2.533671) (xy 10.897359 -2.49795) (xy 10.894864 -2.494643) (xy 10.871918 -2.508472)
(xy 10.826286 -2.544317) (xy 10.780684 -2.583239) (xy 10.671027 -2.665072) (xy 10.53145 -2.747445)
(xy 10.376659 -2.822791) (xy 10.22136 -2.883543) (xy 10.15938 -2.902926) (xy 10.021773 -2.932188)
(xy 9.855331 -2.952199) (xy 9.675746 -2.962331) (xy 9.498713 -2.961956) (xy 9.339925 -2.950445)
(xy 9.264197 -2.938777) (xy 8.98677 -2.862314) (xy 8.731031 -2.746351) (xy 8.498355 -2.591942)
(xy 8.290119 -2.400144) (xy 8.107701 -2.172012) (xy 7.973501 -1.949426) (xy 7.863276 -1.714872)
(xy 7.7789 -1.475108) (xy 7.718639 -1.221996) (xy 7.680759 -0.947398) (xy 7.663526 -0.643174)
(xy 7.662066 -0.487589) (xy 7.666274 -0.373527) (xy 9.331909 -0.373527) (xy 9.332327 -0.560495)
(xy 9.338179 -0.736658) (xy 9.349554 -0.891506) (xy 9.36654 -1.014527) (xy 9.37173 -1.039319)
(xy 9.435616 -1.254843) (xy 9.519306 -1.42967) (xy 9.623498 -1.564237) (xy 9.748891 -1.658983)
(xy 9.896185 -1.71435) (xy 10.066077 -1.730774) (xy 10.259267 -1.708695) (xy 10.386786 -1.677111)
(xy 10.485511 -1.640569) (xy 10.594252 -1.588642) (xy 10.675938 -1.541026) (xy 10.817679 -1.447877)
(xy 10.817679 0.862775) (xy 10.682262 0.950299) (xy 10.52451 1.03251) (xy 10.355387 1.086049)
(xy 10.184379 1.110004) (xy 10.020971 1.103461) (xy 9.874647 1.065507) (xy 9.810454 1.03423)
(xy 9.694088 0.947852) (xy 9.595736 0.833801) (xy 9.51306 0.687908) (xy 9.443721 0.506008)
(xy 9.38538 0.283931) (xy 9.382806 0.272143) (xy 9.362374 0.147079) (xy 9.347021 -0.009229)
(xy 9.336837 -0.186268) (xy 9.331909 -0.373527) (xy 7.666274 -0.373527) (xy 7.677839 -0.060058)
(xy 7.721924 0.333363) (xy 7.794214 0.692413) (xy 7.894606 1.01683) (xy 8.022995 1.306354)
(xy 8.179278 1.560724) (xy 8.36335 1.779679) (xy 8.575107 1.962958) (xy 8.665839 2.025136)
(xy 8.868638 2.137932) (xy 9.076141 2.217508) (xy 9.2973 2.266043) (xy 9.541066 2.28572)
(xy 9.726903 2.28362) (xy 9.987369 2.26159) (xy 10.213562 2.217764) (xy 10.412027 2.150128)
(xy 10.589306 2.056669) (xy 10.687473 1.98794) (xy 10.746468 1.943915) (xy 10.790043 1.91384)
(xy 10.806536 1.905) (xy 10.80978 1.926755) (xy 10.812373 1.988335) (xy 10.81434 2.084212)
(xy 10.815705 2.208859) (xy 10.816495 2.35675) (xy 10.816735 2.522356) (xy 10.81645 2.700151)
(xy 10.815665 2.884607) (xy 10.814406 3.070197) (xy 10.812698 3.251394) (xy 10.810567 3.42267)
(xy 10.808037 3.578499) (xy 10.805135 3.713352) (xy 10.801886 3.821703) (xy 10.798315 3.898025)
(xy 10.797327 3.912054) (xy 10.782105 4.053514) (xy 10.758879 4.164304) (xy 10.723243 4.258968)
(xy 10.670791 4.352048) (xy 10.658201 4.371295) (xy 10.609118 4.445) (xy 12.427857 4.445)
(xy 12.428251 1.060223)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 5.371019 2.277016) (xy 5.676212 2.236808) (xy 5.947948 2.169238) (xy 6.187981 2.073767)
(xy 6.398066 1.949857) (xy 6.553978 1.822169) (xy 6.692274 1.673239) (xy 6.800236 1.512983)
(xy 6.886427 1.327719) (xy 6.917514 1.241195) (xy 6.943347 1.162885) (xy 6.965851 1.090268)
(xy 6.985286 1.019664) (xy 7.001912 0.94739) (xy 7.015989 0.869766) (xy 7.027779 0.78311)
(xy 7.03754 0.683741) (xy 7.045535 0.567978) (xy 7.052022 0.432139) (xy 7.057264 0.272543)
(xy 7.061519 0.085509) (xy 7.065048 -0.132644) (xy 7.068112 -0.385598) (xy 7.070972 -0.677033)
(xy 7.073487 -0.963839) (xy 7.076152 -1.277615) (xy 7.078574 -1.549364) (xy 7.081004 -1.782413)
(xy 7.083695 -1.98009) (xy 7.086899 -2.145722) (xy 7.090866 -2.282636) (xy 7.095851 -2.39416)
(xy 7.102103 -2.483622) (xy 7.109876 -2.554348) (xy 7.11942 -2.609666) (xy 7.130989 -2.652903)
(xy 7.144834 -2.687388) (xy 7.161207 -2.716446) (xy 7.180359 -2.743406) (xy 7.202543 -2.771594)
(xy 7.211183 -2.782509) (xy 7.242963 -2.82839) (xy 7.257098 -2.859635) (xy 7.257143 -2.860558)
(xy 7.235292 -2.864975) (xy 7.173044 -2.869045) (xy 7.075361 -2.872652) (xy 6.947204 -2.875683)
(xy 6.793532 -2.878023) (xy 6.619307 -2.879558) (xy 6.42949 -2.880172) (xy 6.40758 -2.880179)
(xy 5.558016 -2.880179) (xy 5.551464 -2.687188) (xy 5.544911 -2.494197) (xy 5.420179 -2.596627)
(xy 5.22465 -2.732257) (xy 5.003866 -2.842129) (xy 4.830165 -2.902857) (xy 4.691407 -2.932365)
(xy 4.523958 -2.95244) (xy 4.343624 -2.962458) (xy 4.166207 -2.96179) (xy 4.007513 -2.949812)
(xy 3.934732 -2.938334) (xy 3.653445 -2.862272) (xy 3.399465 -2.752096) (xy 3.174629 -2.609446)
(xy 2.980774 -2.435962) (xy 2.819734 -2.233284) (xy 2.693346 -2.003054) (xy 2.604199 -1.749745)
(xy 2.57942 -1.636073) (xy 2.564133 -1.511119) (xy 2.556843 -1.360774) (xy 2.555849 -1.292679)
(xy 2.55598 -1.28628) (xy 4.082641 -1.28628) (xy 4.101312 -1.437053) (xy 4.157937 -1.565277)
(xy 4.255307 -1.67705) (xy 4.265466 -1.685914) (xy 4.362486 -1.755879) (xy 4.466365 -1.801244)
(xy 4.588371 -1.825192) (xy 4.73977 -1.830904) (xy 4.776147 -1.83009) (xy 4.884264 -1.824761)
(xy 4.964681 -1.81388) (xy 5.035027 -1.793462) (xy 5.112931 -1.75952) (xy 5.13431 -1.749117)
(xy 5.256154 -1.677141) (xy 5.350209 -1.591496) (xy 5.375797 -1.560884) (xy 5.465536 -1.447356)
(xy 5.465536 -1.053855) (xy 5.46446 -0.89586) (xy 5.461065 -0.779441) (xy 5.455102 -0.700865)
(xy 5.446321 -0.656399) (xy 5.438115 -0.643408) (xy 5.406122 -0.637052) (xy 5.338254 -0.631784)
(xy 5.243987 -0.628101) (xy 5.1328 -0.626499) (xy 5.114945 -0.626469) (xy 4.872316 -0.637023)
(xy 4.666059 -0.669502) (xy 4.492179 -0.725145) (xy 4.346681 -0.805195) (xy 4.236331 -0.899514)
(xy 4.146839 -1.015804) (xy 4.09717 -1.142463) (xy 4.082641 -1.28628) (xy 2.55598 -1.28628)
(xy 2.559733 -1.104331) (xy 2.576496 -0.945828) (xy 2.609133 -0.802747) (xy 2.660635 -0.660665)
(xy 2.708842 -0.555454) (xy 2.826603 -0.364009) (xy 2.983494 -0.187171) (xy 3.174741 -0.02816)
(xy 3.395569 0.109808) (xy 3.641205 0.223512) (xy 3.906874 0.309735) (xy 4.036786 0.339747)
(xy 4.310365 0.384154) (xy 4.608582 0.413451) (xy 4.912846 0.426269) (xy 5.167093 0.42299)
(xy 5.492312 0.409371) (xy 5.477406 0.527855) (xy 5.438648 0.727047) (xy 5.376103 0.889208)
(xy 5.288041 1.015582) (xy 5.172732 1.10741) (xy 5.028446 1.165937) (xy 4.853453 1.192406)
(xy 4.646022 1.188059) (xy 4.569732 1.180021) (xy 4.286091 1.129461) (xy 4.011243 1.047026)
(xy 3.82134 0.970684) (xy 3.730617 0.931762) (xy 3.653409 0.900482) (xy 3.600471 0.881107)
(xy 3.585026 0.876993) (xy 3.56545 0.895231) (xy 3.531864 0.953429) (xy 3.48395 1.052243)
(xy 3.421393 1.192331) (xy 3.343877 1.374351) (xy 3.330623 1.406071) (xy 3.270242 1.551351)
(xy 3.216042 1.682629) (xy 3.170364 1.794163) (xy 3.135548 1.880213) (xy 3.113936 1.935039)
(xy 3.107695 1.952796) (xy 3.127782 1.962348) (xy 3.18057 1.972949) (xy 3.237366 1.980341)
(xy 3.29795 1.989897) (xy 3.393951 2.008872) (xy 3.516856 2.035406) (xy 3.65815 2.067639)
(xy 3.80932 2.103711) (xy 3.866697 2.117818) (xy 4.077757 2.169223) (xy 4.253867 2.209527)
(xy 4.403709 2.240018) (xy 4.535967 2.261984) (xy 4.659324 2.276711) (xy 4.78246 2.285489)
(xy 4.914061 2.289603) (xy 5.030614 2.290402) (xy 5.371019 2.277016)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 0.659791 4.12017) (xy 0.981503 4.077634) (xy 1.310847 3.996995) (xy 1.651969 3.877456)
(xy 2.009015 3.718217) (xy 2.031651 3.707078) (xy 2.147556 3.650777) (xy 2.251111 3.602407)
(xy 2.33476 3.565348) (xy 2.390951 3.542975) (xy 2.410179 3.537857) (xy 2.448784 3.527797)
(xy 2.458048 3.519348) (xy 2.447796 3.498389) (xy 2.415573 3.445578) (xy 2.365088 3.366449)
(xy 2.300051 3.266537) (xy 2.224172 3.151375) (xy 2.141161 3.026499) (xy 2.054729 2.897442)
(xy 1.968583 2.769739) (xy 1.886436 2.648924) (xy 1.811996 2.540531) (xy 1.748974 2.450095)
(xy 1.701079 2.383149) (xy 1.672021 2.345229) (xy 1.668033 2.340831) (xy 1.647706 2.350169)
(xy 1.602825 2.384676) (xy 1.541411 2.437955) (xy 1.509783 2.467037) (xy 1.315943 2.618272)
(xy 1.101569 2.729649) (xy 0.869529 2.800164) (xy 0.622692 2.828812) (xy 0.483272 2.82646)
(xy 0.239913 2.791985) (xy 0.020502 2.7199) (xy -0.175615 2.60968) (xy -0.349095 2.460797)
(xy -0.500593 2.272725) (xy -0.630766 2.044936) (xy -0.705935 1.870982) (xy -0.794032 1.598371)
(xy -0.858961 1.302087) (xy -0.90089 0.989771) (xy -0.919987 0.669062) (xy -0.916418 0.3476)
(xy -0.890351 0.033025) (xy -0.841953 -0.267022) (xy -0.771391 -0.544901) (xy -0.678833 -0.792973)
(xy -0.646124 -0.861786) (xy -0.509022 -1.090977) (xy -0.347384 -1.284824) (xy -0.163585 -1.441748)
(xy 0.040001 -1.560168) (xy 0.261001 -1.638506) (xy 0.49704 -1.675181) (xy 0.580346 -1.677879)
(xy 0.824548 -1.65594) (xy 1.066498 -1.590014) (xy 1.303125 -1.481463) (xy 1.531362 -1.331648)
(xy 1.714993 -1.174296) (xy 1.808469 -1.084837) (xy 2.172623 -1.682017) (xy 2.263221 -1.831004)
(xy 2.346065 -1.968039) (xy 2.418218 -2.088199) (xy 2.476741 -2.186558) (xy 2.518695 -2.258194)
(xy 2.541142 -2.298182) (xy 2.544059 -2.304399) (xy 2.527527 -2.323764) (xy 2.476141 -2.358479)
(xy 2.396398 -2.405256) (xy 2.294794 -2.460805) (xy 2.177828 -2.521839) (xy 2.051996 -2.58507)
(xy 1.923794 -2.647209) (xy 1.79972 -2.704968) (xy 1.686271 -2.75506) (xy 1.589944 -2.794196)
(xy 1.54283 -2.81113) (xy 1.274105 -2.887097) (xy 0.997086 -2.937326) (xy 0.700357 -2.96345)
(xy 0.445648 -2.968127) (xy 0.30913 -2.965928) (xy 0.177342 -2.961714) (xy 0.061969 -2.956005)
(xy -0.025305 -2.94932) (xy -0.053641 -2.945938) (xy -0.332912 -2.88801) (xy -0.617229 -2.797368)
(xy -0.893421 -2.679408) (xy -1.148314 -2.539527) (xy -1.304018 -2.433697) (xy -1.55997 -2.216328)
(xy -1.797632 -1.962063) (xy -2.012601 -1.677187) (xy -2.200475 -1.367982) (xy -2.356853 -1.040731)
(xy -2.444954 -0.805089) (xy -2.545898 -0.436195) (xy -2.613194 -0.045364) (xy -2.646865 0.358945)
(xy -2.646931 0.768278) (xy -2.613412 1.174177) (xy -2.546331 1.568186) (xy -2.445708 1.941848)
(xy -2.438041 1.965128) (xy -2.311713 2.290682) (xy -2.157533 2.587837) (xy -1.970272 2.865004)
(xy -1.744699 3.130592) (xy -1.656577 3.221521) (xy -1.383077 3.470511) (xy -1.101915 3.676511)
(xy -0.808773 3.841763) (xy -0.499335 3.96851) (xy -0.169287 4.058995) (xy 0.022679 4.094131)
(xy 0.341565 4.125403) (xy 0.659791 4.12017)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -5.919107 5.044311) (xy -5.89728 4.815415) (xy -5.833763 4.599209) (xy -5.731503 4.400327)
(xy -5.593446 4.223403) (xy -5.422538 4.073071) (xy -5.227698 3.956819) (xy -5.014212 3.877223)
(xy -4.799229 3.83992) (xy -4.586986 3.842209) (xy -4.381724 3.881391) (xy -4.18768 3.954766)
(xy -4.009093 4.059632) (xy -3.850204 4.193292) (xy -3.71525 4.353043) (xy -3.608471 4.536186)
(xy -3.534105 4.740022) (xy -3.496392 4.961849) (xy -3.4925 5.062086) (xy -3.4925 5.23875)
(xy -3.388178 5.23875) (xy -3.315239 5.233035) (xy -3.261204 5.209331) (xy -3.20675 5.161643)
(xy -3.129643 5.084536) (xy -3.129643 0.681827) (xy -3.129661 0.155211) (xy -3.129726 -0.327939)
(xy -3.129854 -0.769515) (xy -3.130062 -1.171409) (xy -3.130366 -1.535512) (xy -3.130783 -1.863715)
(xy -3.131328 -2.157911) (xy -3.132019 -2.41999) (xy -3.132872 -2.651845) (xy -3.133902 -2.855366)
(xy -3.135127 -3.032446) (xy -3.136563 -3.184976) (xy -3.138226 -3.314847) (xy -3.140133 -3.423951)
(xy -3.142299 -3.514179) (xy -3.144742 -3.587424) (xy -3.147478 -3.645576) (xy -3.150523 -3.690528)
(xy -3.153893 -3.72417) (xy -3.157606 -3.748395) (xy -3.161676 -3.765093) (xy -3.166122 -3.776157)
(xy -3.168296 -3.779874) (xy -3.176659 -3.79396) (xy -3.18376 -3.806911) (xy -3.191453 -3.818772)
(xy -3.201593 -3.829593) (xy -3.216034 -3.83942) (xy -3.236631 -3.8483) (xy -3.265239 -3.856282)
(xy -3.303711 -3.863412) (xy -3.353903 -3.869738) (xy -3.417669 -3.875308) (xy -3.496864 -3.880168)
(xy -3.593342 -3.884366) (xy -3.708958 -3.88795) (xy -3.845565 -3.890968) (xy -4.00502 -3.893465)
(xy -4.189175 -3.89549) (xy -4.399886 -3.897091) (xy -4.639008 -3.898314) (xy -4.908395 -3.899208)
(xy -5.2099 -3.899819) (xy -5.54538 -3.900194) (xy -5.916688 -3.900383) (xy -6.325679 -3.900431)
(xy -6.774208 -3.900386) (xy -7.264128 -3.900295) (xy -7.797295 -3.900207) (xy -7.874405 -3.900198)
(xy -8.410745 -3.900111) (xy -8.903575 -3.899969) (xy -9.354742 -3.899758) (xy -9.766093 -3.899462)
(xy -10.139476 -3.899067) (xy -10.476738 -3.898559) (xy -10.779725 -3.897924) (xy -11.050286 -3.897146)
(xy -11.290267 -3.896211) (xy -11.501515 -3.895105) (xy -11.685878 -3.893813) (xy -11.845202 -3.89232)
(xy -11.981335 -3.890613) (xy -12.096125 -3.888676) (xy -12.191417 -3.886496) (xy -12.26906 -3.884057)
(xy -12.3309 -3.881345) (xy -12.378785 -3.878346) (xy -12.414562 -3.875045) (xy -12.440078 -3.871427)
(xy -12.457181 -3.867479) (xy -12.465935 -3.864127) (xy -12.482935 -3.856954) (xy -12.498542 -3.851659)
(xy -12.512816 -3.846362) (xy -12.525816 -3.839188) (xy -12.5376 -3.828256) (xy -12.548228 -3.811691)
(xy -12.557759 -3.787614) (xy -12.566253 -3.754147) (xy -12.573769 -3.709413) (xy -12.580366 -3.651533)
(xy -12.586104 -3.578631) (xy -12.59104 -3.488828) (xy -12.595236 -3.380246) (xy -12.59875 -3.251007)
(xy -12.601641 -3.099235) (xy -12.603968 -2.92305) (xy -12.605791 -2.720576) (xy -12.60717 -2.489935)
(xy -12.608162 -2.229248) (xy -12.608828 -1.936638) (xy -12.609227 -1.610227) (xy -12.609417 -1.248138)
(xy -12.609459 -0.848492) (xy -12.609412 -0.409412) (xy -12.609334 0.07098) (xy -12.609286 0.594562)
(xy -12.609285 0.679241) (xy -12.609313 1.207382) (xy -12.609363 1.692057) (xy -12.609385 2.135159)
(xy -12.609326 2.538579) (xy -12.609136 2.904209) (xy -12.608763 3.23394) (xy -12.608154 3.529666)
(xy -12.60726 3.793276) (xy -12.606096 4.014107) (xy -11.997716 4.014107) (xy -11.917781 3.897902)
(xy -11.89534 3.866225) (xy -11.875109 3.838177) (xy -11.856973 3.811372) (xy -11.84082 3.783429)
(xy -11.826534 3.751964) (xy -11.814001 3.714594) (xy -11.803107 3.668934) (xy -11.793739 3.612601)
(xy -11.785782 3.543213) (xy -11.779122 3.458386) (xy -11.773644 3.355736) (xy -11.769236 3.23288)
(xy -11.765782 3.087434) (xy -11.763168 2.917016) (xy -11.761281 2.719241) (xy -11.760006 2.491726)
(xy -11.75923 2.232089) (xy -11.758837 1.937945) (xy -11.758714 1.60691) (xy -11.758747 1.236603)
(xy -11.758822 0.824639) (xy -11.758839 0.578304) (xy -11.758791 0.142468) (xy -11.758723 -0.250396)
(xy -11.758747 -0.602675) (xy -11.758977 -0.916756) (xy -11.759525 -1.195025) (xy -11.760504 -1.439867)
(xy -11.762028 -1.653669) (xy -11.764209 -1.838817) (xy -11.76716 -1.997696) (xy -11.770994 -2.132694)
(xy -11.775825 -2.246196) (xy -11.781765 -2.340588) (xy -11.788926 -2.418257) (xy -11.797423 -2.481588)
(xy -11.807368 -2.532968) (xy -11.818873 -2.574783) (xy -11.832053 -2.609418) (xy -11.847019 -2.639261)
(xy -11.863885 -2.666696) (xy -11.882764 -2.694111) (xy -11.903768 -2.723891) (xy -11.916004 -2.741752)
(xy -11.993897 -2.8575) (xy -10.926023 -2.8575) (xy -10.678425 -2.85743) (xy -10.472518 -2.857128)
(xy -10.304637 -2.856452) (xy -10.171116 -2.855261) (xy -10.06829 -2.853415) (xy -9.992492 -2.850772)
(xy -9.940057 -2.847193) (xy -9.90732 -2.842535) (xy -9.890614 -2.836659) (xy -9.886275 -2.829423)
(xy -9.890636 -2.820686) (xy -9.893039 -2.817812) (xy -9.943563 -2.743339) (xy -9.99559 -2.637265)
(xy -10.043019 -2.512708) (xy -10.059631 -2.459646) (xy -10.068906 -2.423603) (xy -10.076744 -2.381293)
(xy -10.08331 -2.328526) (xy -10.088769 -2.261113) (xy -10.093288 -2.174863) (xy -10.09703 -2.065588)
(xy -10.100161 -1.929098) (xy -10.102845 -1.761203) (xy -10.105249 -1.557714) (xy -10.107537 -1.314441)
(xy -10.108295 -1.224643) (xy -10.110337 -0.973223) (xy -10.111861 -0.763557) (xy -10.11275 -0.592046)
(xy -10.112886 -0.455088) (xy -10.112152 -0.349082) (xy -10.11043 -0.270429) (xy -10.107604 -0.215527)
(xy -10.103555 -0.180776) (xy -10.098166 -0.162575) (xy -10.091321 -0.157323) (xy -10.082901 -0.16142)
(xy -10.073913 -0.170089) (xy -10.053111 -0.196075) (xy -10.008798 -0.254483) (xy -9.944109 -0.341033)
(xy -9.862179 -0.451443) (xy -9.766144 -0.58143) (xy -9.659139 -0.726714) (xy -9.544299 -0.883013)
(xy -9.42476 -1.046045) (xy -9.303658 -1.211529) (xy -9.184127 -1.375183) (xy -9.069304 -1.532725)
(xy -8.962322 -1.679874) (xy -8.866318 -1.812349) (xy -8.784428 -1.925866) (xy -8.719786 -2.016146)
(xy -8.675528 -2.078907) (xy -8.666351 -2.092231) (xy -8.620303 -2.166366) (xy -8.566447 -2.262774)
(xy -8.515423 -2.362292) (xy -8.508953 -2.375713) (xy -8.465404 -2.472534) (xy -8.440119 -2.547992)
(xy -8.428608 -2.619963) (xy -8.426362 -2.70442) (xy -8.427635 -2.8575) (xy -6.10845 -2.8575)
(xy -6.291591 -2.669201) (xy -6.385603 -2.568967) (xy -6.486627 -2.455504) (xy -6.579127 -2.34648)
(xy -6.62016 -2.295549) (xy -6.681309 -2.216105) (xy -6.761775 -2.109207) (xy -6.859207 -1.978126)
(xy -6.971252 -1.826138) (xy -7.095557 -1.656516) (xy -7.229769 -1.472532) (xy -7.371536 -1.277462)
(xy -7.518505 -1.074577) (xy -7.668322 -0.867153) (xy -7.818636 -0.658462) (xy -7.967094 -0.451779)
(xy -8.111342 -0.250376) (xy -8.249029 -0.057527) (xy -8.377801 0.123494) (xy -8.495306 0.289414)
(xy -8.59919 0.436959) (xy -8.687102 0.562855) (xy -8.756688 0.663829) (xy -8.805595 0.736607)
(xy -8.831472 0.777916) (xy -8.835004 0.786157) (xy -8.819014 0.808911) (xy -8.777239 0.863514)
(xy -8.712416 0.946549) (xy -8.627284 1.0546) (xy -8.524581 1.184251) (xy -8.407045 1.332086)
(xy -8.277416 1.494688) (xy -8.138432 1.66864) (xy -7.99283 1.850528) (xy -7.84335 2.036934)
(xy -7.723358 2.186313) (xy -5.692321 2.186313) (xy -5.680449 2.160283) (xy -5.651662 2.115586)
(xy -5.649558 2.112608) (xy -5.611816 2.052033) (xy -5.572347 1.978041) (xy -5.564514 1.961696)
(xy -5.55741 1.944763) (xy -5.551132 1.924435) (xy -5.545618 1.897914) (xy -5.540809 1.862402)
(xy -5.536644 1.815099) (xy -5.533061 1.753206) (xy -5.530001 1.673926) (xy -5.527404 1.574459)
(xy -5.525208 1.452007) (xy -5.523353 1.303772) (xy -5.521779 1.126954) (xy -5.520424 0.918754)
(xy -5.51923 0.676375) (xy -5.518134 0.397017) (xy -5.517077 0.077882) (xy -5.516004 -0.281428)
(xy -5.514923 -0.653317) (xy -5.51405 -0.982658) (xy -5.513521 -1.272261) (xy -5.513471 -1.524935)
(xy -5.514036 -1.74349) (xy -5.51535 -1.930735) (xy -5.51755 -2.08948) (xy -5.520771 -2.222535)
(xy -5.525149 -2.332708) (xy -5.530818 -2.422809) (xy -5.537914 -2.495648) (xy -5.546573 -2.554034)
(xy -5.55693 -2.600777) (xy -5.569121 -2.638686) (xy -5.58328 -2.67057) (xy -5.599544 -2.69924)
(xy -5.618047 -2.727504) (xy -5.635124 -2.75255) (xy -5.669549 -2.805373) (xy -5.689932 -2.840698)
(xy -5.692321 -2.847168) (xy -5.67041 -2.849332) (xy -5.607745 -2.851342) (xy -5.50893 -2.85315)
(xy -5.378569 -2.854708) (xy -5.221265 -2.855967) (xy -5.041621 -2.85688) (xy -4.844241 -2.857398)
(xy -4.705803 -2.8575) (xy -4.49488 -2.857057) (xy -4.300331 -2.855788) (xy -4.126554 -2.853782)
(xy -3.977944 -2.851126) (xy -3.858898 -2.84791) (xy -3.773812 -2.844223) (xy -3.727084 -2.840153)
(xy -3.719285 -2.837598) (xy -3.734749 -2.807659) (xy -3.750818 -2.791527) (xy -3.777279 -2.757121)
(xy -3.811912 -2.696349) (xy -3.835862 -2.647009) (xy -3.889375 -2.528661) (xy -3.895552 -0.16442)
(xy -3.90173 2.199822) (xy -4.797026 2.199821) (xy -4.993532 2.199491) (xy -5.175127 2.19855)
(xy -5.336979 2.19707) (xy -5.474253 2.195125) (xy -5.58212 2.192786) (xy -5.655745 2.190128)
(xy -5.690297 2.187223) (xy -5.692321 2.186313) (xy -7.723358 2.186313) (xy -7.692729 2.224442)
(xy -7.543707 2.409636) (xy -7.399021 2.589099) (xy -7.261411 2.759416) (xy -7.133614 2.917169)
(xy -7.018369 3.058943) (xy -6.918414 3.181321) (xy -6.836488 3.280888) (xy -6.802006 3.322411)
(xy -6.628651 3.524632) (xy -6.474769 3.691891) (xy -6.336528 3.828137) (xy -6.210095 3.937321)
(xy -6.19125 3.952122) (xy -6.111875 4.013604) (xy -7.248687 4.013856) (xy -8.3855 4.014107)
(xy -8.374874 3.917723) (xy -8.38151 3.802524) (xy -8.424764 3.665365) (xy -8.505071 3.505154)
(xy -8.596089 3.359943) (xy -8.628671 3.31445) (xy -8.685028 3.239003) (xy -8.761801 3.137905)
(xy -8.855631 3.015456) (xy -8.963158 2.87596) (xy -9.081022 2.723717) (xy -9.205865 2.563031)
(xy -9.334327 2.398203) (xy -9.463048 2.233535) (xy -9.588669 2.073329) (xy -9.70783 1.921888)
(xy -9.817172 1.783513) (xy -9.913336 1.662506) (xy -9.992962 1.563169) (xy -10.052691 1.489805)
(xy -10.089162 1.446715) (xy -10.095306 1.440089) (xy -10.101051 1.456174) (xy -10.105498 1.517032)
(xy -10.10864 1.622098) (xy -10.110468 1.770808) (xy -10.110977 1.962596) (xy -10.110159 2.196897)
(xy -10.108333 2.437946) (xy -10.105676 2.703349) (xy -10.102613 2.927824) (xy -10.098644 3.115799)
(xy -10.093269 3.271702) (xy -10.085989 3.399964) (xy -10.076304 3.505011) (xy -10.063714 3.591273)
(xy -10.04772 3.663179) (xy -10.027822 3.725157) (xy -10.00352 3.781636) (xy -9.974316 3.837044)
(xy -9.94482 3.887345) (xy -9.868487 4.014107) (xy -11.997716 4.014107) (xy -12.606096 4.014107)
(xy -12.606029 4.026663) (xy -12.604409 4.231719) (xy -12.602349 4.410335) (xy -12.599798 4.564404)
(xy -12.596704 4.695816) (xy -12.593016 4.806465) (xy -12.588683 4.89824) (xy -12.583653 4.973035)
(xy -12.577875 5.032741) (xy -12.571298 5.07925) (xy -12.563869 5.114453) (xy -12.555539 5.140243)
(xy -12.546255 5.15851) (xy -12.535966 5.171148) (xy -12.524621 5.180046) (xy -12.512168 5.187098)
(xy -12.498556 5.194196) (xy -12.48651 5.201364) (xy -12.475998 5.206539) (xy -12.459573 5.211217)
(xy -12.435038 5.215423) (xy -12.400193 5.219182) (xy -12.352839 5.222517) (xy -12.290778 5.225456)
(xy -12.211811 5.228021) (xy -12.113738 5.230238) (xy -11.994361 5.232132) (xy -11.851481 5.233727)
(xy -11.682898 5.235049) (xy -11.486415 5.236122) (xy -11.259832 5.236971) (xy -11.00095 5.23762)
(xy -10.70757 5.238096) (xy -10.377493 5.238422) (xy -10.008521 5.238623) (xy -9.598454 5.238724)
(xy -9.17428 5.23875) (xy -5.919107 5.23875) (xy -5.919107 5.044311)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 12.513262 -4.569374) (xy 12.576299 -4.614058) (xy 12.631965 -4.669724) (xy 12.631965 -5.291357)
(xy 12.631819 -5.475936) (xy 12.63113 -5.62066) (xy 12.629517 -5.731032) (xy 12.6266 -5.812553)
(xy 12.622002 -5.870726) (xy 12.615341 -5.911054) (xy 12.606238 -5.939037) (xy 12.594314 -5.96018)
(xy 12.584961 -5.972745) (xy 12.523225 -6.022112) (xy 12.452337 -6.02747) (xy 12.387546 -5.997196)
(xy 12.366137 -5.979323) (xy 12.351826 -5.955582) (xy 12.343194 -5.917352) (xy 12.338822 -5.85601)
(xy 12.33729 -5.762937) (xy 12.337143 -5.691035) (xy 12.337143 -5.420179) (xy 11.339286 -5.420179)
(xy 11.339286 -5.666584) (xy 11.338254 -5.779259) (xy 11.334126 -5.856695) (xy 11.325351 -5.908985)
(xy 11.310382 -5.946221) (xy 11.292283 -5.972745) (xy 11.230201 -6.021973) (xy 11.159992 -6.027802)
(xy 11.092779 -5.992812) (xy 11.074428 -5.97447) (xy 11.061468 -5.950154) (xy 11.052919 -5.912278)
(xy 11.047805 -5.853255) (xy 11.045149 -5.765499) (xy 11.043971 -5.641423) (xy 11.043834 -5.612946)
(xy 11.042862 -5.379169) (xy 11.042361 -5.186505) (xy 11.042524 -5.030712) (xy 11.043545 -4.907548)
(xy 11.045617 -4.81277) (xy 11.048933 -4.742136) (xy 11.053687 -4.691403) (xy 11.060071 -4.656329)
(xy 11.06828 -4.63267) (xy 11.078507 -4.616186) (xy 11.089822 -4.60375) (xy 11.153829 -4.563971)
(xy 11.220583 -4.569374) (xy 11.28362 -4.614058) (xy 11.309129 -4.642887) (xy 11.325389 -4.674732)
(xy 11.334461 -4.720085) (xy 11.338406 -4.789443) (xy 11.339285 -4.893299) (xy 11.339286 -4.897541)
(xy 11.339286 -5.125357) (xy 12.337143 -5.125357) (xy 12.337143 -4.887232) (xy 12.338161 -4.777528)
(xy 12.342251 -4.703453) (xy 12.350965 -4.655304) (xy 12.365855 -4.623378) (xy 12.3825 -4.60375)
(xy 12.446507 -4.563971) (xy 12.513262 -4.569374)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 9.970443 -4.558587) (xy 10.128561 -4.559347) (xy 10.251288 -4.560937) (xy 10.343606 -4.563622)
(xy 10.410499 -4.567667) (xy 10.456948 -4.573337) (xy 10.487937 -4.580897) (xy 10.508448 -4.590612)
(xy 10.518374 -4.59808) (xy 10.569891 -4.663442) (xy 10.576123 -4.731305) (xy 10.544287 -4.792954)
(xy 10.523468 -4.817589) (xy 10.501065 -4.834387) (xy 10.468597 -4.844847) (xy 10.417586 -4.850472)
(xy 10.33955 -4.85276) (xy 10.22601 -4.853212) (xy 10.203711 -4.853214) (xy 9.910536 -4.853214)
(xy 9.910536 -5.3975) (xy 9.910343 -5.569059) (xy 9.909466 -5.701066) (xy 9.907458 -5.799322)
(xy 9.903874 -5.869633) (xy 9.898267 -5.9178) (xy 9.890191 -5.949628) (xy 9.879198 -5.970919)
(xy 9.865179 -5.987143) (xy 9.799019 -6.027011) (xy 9.729954 -6.023869) (xy 9.66732 -5.978382)
(xy 9.662718 -5.972745) (xy 9.647737 -5.951435) (xy 9.636323 -5.926502) (xy 9.627994 -5.891886)
(xy 9.622267 -5.84153) (xy 9.618659 -5.769375) (xy 9.616686 -5.669363) (xy 9.615866 -5.535435)
(xy 9.615715 -5.383102) (xy 9.615715 -4.853214) (xy 9.335747 -4.853214) (xy 9.215602 -4.852401)
(xy 9.132425 -4.849233) (xy 9.077843 -4.842616) (xy 9.043486 -4.831456) (xy 9.02098 -4.814661)
(xy 9.018247 -4.811741) (xy 8.985386 -4.744967) (xy 8.988292 -4.669477) (xy 9.026072 -4.60375)
(xy 9.040682 -4.591001) (xy 9.05952 -4.580892) (xy 9.087608 -4.573117) (xy 9.12997 -4.567372)
(xy 9.19163 -4.563351) (xy 9.277612 -4.560749) (xy 9.392938 -4.559259) (xy 9.542632 -4.558576)
(xy 9.731718 -4.558396) (xy 9.771952 -4.558393) (xy 9.970443 -4.558587)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 8.414627 -4.572074) (xy 8.462265 -4.601746) (xy 8.515804 -4.6451) (xy 8.515804 -5.291062)
(xy 8.515633 -5.480015) (xy 8.514903 -5.628881) (xy 8.513285 -5.742932) (xy 8.510451 -5.827436)
(xy 8.506072 -5.887663) (xy 8.499821 -5.928885) (xy 8.491369 -5.95637) (xy 8.480388 -5.97539)
(xy 8.472601 -5.984762) (xy 8.409443 -6.025931) (xy 8.337523 -6.024252) (xy 8.274522 -5.989147)
(xy 8.220982 -5.945793) (xy 8.220982 -4.6451) (xy 8.274522 -4.601746) (xy 8.326195 -4.57021)
(xy 8.368393 -4.558393) (xy 8.414627 -4.572074)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 7.522765 -4.562345) (xy 7.562119 -4.576409) (xy 7.563638 -4.577097) (xy 7.61708 -4.617881)
(xy 7.646525 -4.659832) (xy 7.652287 -4.679501) (xy 7.652002 -4.705637) (xy 7.643895 -4.742868)
(xy 7.626188 -4.795828) (xy 7.597104 -4.869145) (xy 7.554867 -4.967451) (xy 7.4977 -5.095376)
(xy 7.423826 -5.257552) (xy 7.383164 -5.346193) (xy 7.309739 -5.504435) (xy 7.240811 -5.649957)
(xy 7.179012 -5.777437) (xy 7.126971 -5.881556) (xy 7.087321 -5.956993) (xy 7.062691 -5.998428)
(xy 7.057817 -6.004152) (xy 6.995458 -6.029402) (xy 6.92502 -6.02602) (xy 6.868528 -5.99531)
(xy 6.866226 -5.992812) (xy 6.843754 -5.958792) (xy 6.806058 -5.892528) (xy 6.757786 -5.802549)
(xy 6.703588 -5.697386) (xy 6.68411 -5.658633) (xy 6.537082 -5.36414) (xy 6.376823 -5.684049)
(xy 6.319621 -5.794583) (xy 6.266551 -5.890444) (xy 6.221949 -5.964293) (xy 6.19015 -6.008793)
(xy 6.179373 -6.018229) (xy 6.095606 -6.031009) (xy 6.026484 -6.004152) (xy 6.006151 -5.975449)
(xy 5.970966 -5.911658) (xy 5.923799 -5.819056) (xy 5.86752 -5.70392) (xy 5.804999 -5.572526)
(xy 5.739107 -5.431152) (xy 5.672714 -5.286074) (xy 5.60869 -5.14357) (xy 5.549906 -5.009917)
(xy 5.499232 -4.891391) (xy 5.459538 -4.794269) (xy 5.433695 -4.724829) (xy 5.424572 -4.689347)
(xy 5.424665 -4.688062) (xy 5.446861 -4.643414) (xy 5.491226 -4.59794) (xy 5.493839 -4.595962)
(xy 5.548366 -4.56514) (xy 5.598801 -4.565438) (xy 5.617704 -4.571249) (xy 5.640739 -4.583807)
(xy 5.6652 -4.608511) (xy 5.694022 -4.650484) (xy 5.73014 -4.714852) (xy 5.776488 -4.80674)
(xy 5.835999 -4.931271) (xy 5.889667 -5.046223) (xy 5.951412 -5.179472) (xy 6.00674 -5.2993)
(xy 6.052777 -5.399448) (xy 6.08665 -5.473655) (xy 6.105482 -5.515661) (xy 6.108229 -5.522232)
(xy 6.120582 -5.51149) (xy 6.148973 -5.466513) (xy 6.189625 -5.393865) (xy 6.238759 -5.300111)
(xy 6.258311 -5.261429) (xy 6.324545 -5.130812) (xy 6.375624 -5.035688) (xy 6.41574 -4.970529)
(xy 6.449084 -4.929802) (xy 6.479849 -4.907978) (xy 6.512225 -4.899526) (xy 6.533324 -4.898571)
(xy 6.570542 -4.901869) (xy 6.603156 -4.915509) (xy 6.635562 -4.945111) (xy 6.672156 -4.996293)
(xy 6.717334 -5.074675) (xy 6.775492 -5.185877) (xy 6.80758 -5.249135) (xy 6.859628 -5.349952)
(xy 6.905024 -5.433557) (xy 6.93976 -5.492897) (xy 6.959833 -5.520916) (xy 6.962563 -5.522083)
(xy 6.975526 -5.500031) (xy 7.004549 -5.44277) (xy 7.046725 -5.356293) (xy 7.099148 -5.246593)
(xy 7.158911 -5.119663) (xy 7.188309 -5.056616) (xy 7.264788 -4.893907) (xy 7.326372 -4.768706)
(xy 7.376258 -4.676928) (xy 7.417643 -4.614487) (xy 7.453724 -4.5773) (xy 7.487699 -4.561281)
(xy 7.522765 -4.562345)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 2.04571 -4.558811) (xy 2.304821 -4.567572) (xy 2.525206 -4.59414) (xy 2.710499 -4.640105)
(xy 2.864335 -4.70706) (xy 2.990346 -4.796593) (xy 3.092167 -4.910296) (xy 3.173431 -5.049759)
(xy 3.17503 -5.05316) (xy 3.223529 -5.177979) (xy 3.240809 -5.288523) (xy 3.226805 -5.399774)
(xy 3.181448 -5.52671) (xy 3.172846 -5.546026) (xy 3.114186 -5.659083) (xy 3.04826 -5.746442)
(xy 2.963174 -5.820704) (xy 2.847034 -5.894468) (xy 2.840287 -5.898319) (xy 2.739184 -5.946885)
(xy 2.624909 -5.983156) (xy 2.490121 -6.008383) (xy 2.327475 -6.023816) (xy 2.129629 -6.030708)
(xy 2.059727 -6.031307) (xy 1.726864 -6.0325) (xy 1.679861 -5.972745) (xy 1.665918 -5.953096)
(xy 1.655041 -5.93015) (xy 1.646851 -5.898406) (xy 1.640967 -5.852359) (xy 1.637011 -5.78651)
(xy 1.635721 -5.737679) (xy 1.950357 -5.737679) (xy 2.13896 -5.737679) (xy 2.249325 -5.734451)
(xy 2.362621 -5.725958) (xy 2.455605 -5.71398) (xy 2.461218 -5.712971) (xy 2.62637 -5.668665)
(xy 2.75447 -5.602099) (xy 2.84957 -5.510184) (xy 2.915723 -5.389832) (xy 2.927227 -5.357935)
(xy 2.938502 -5.308257) (xy 2.93362 -5.259177) (xy 2.909867 -5.193884) (xy 2.895549 -5.161809)
(xy 2.848662 -5.076574) (xy 2.792171 -5.016776) (xy 2.730015 -4.975134) (xy 2.605512 -4.920945)
(xy 2.446174 -4.881692) (xy 2.260553 -4.859089) (xy 2.126116 -4.854114) (xy 1.950357 -4.853214)
(xy 1.950357 -5.737679) (xy 1.635721 -5.737679) (xy 1.634602 -5.695355) (xy 1.633361 -5.573392)
(xy 1.632908 -5.415118) (xy 1.632857 -5.291357) (xy 1.632857 -4.669724) (xy 1.688523 -4.614058)
(xy 1.713228 -4.591495) (xy 1.739941 -4.576043) (xy 1.777244 -4.566375) (xy 1.833723 -4.561164)
(xy 1.917958 -4.559082) (xy 2.038535 -4.558801) (xy 2.04571 -4.558811)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 0.462743 -4.55878) (xy 0.616142 -4.560617) (xy 0.733695 -4.564911) (xy 0.820156 -4.572672)
(xy 0.88028 -4.58491) (xy 0.91882 -4.602635) (xy 0.940532 -4.626856) (xy 0.95017 -4.658582)
(xy 0.952488 -4.698823) (xy 0.9525 -4.703575) (xy 0.950488 -4.749091) (xy 0.940975 -4.784269)
(xy 0.918751 -4.810528) (xy 0.878602 -4.829289) (xy 0.815316 -4.841973) (xy 0.723682 -4.849999)
(xy 0.598487 -4.854789) (xy 0.434519 -4.857761) (xy 0.384263 -4.85842) (xy -0.102053 -4.864554)
(xy -0.108855 -4.994955) (xy -0.115656 -5.125357) (xy 0.222139 -5.125357) (xy 0.354107 -5.125844)
(xy 0.448337 -5.127903) (xy 0.512445 -5.132432) (xy 0.554044 -5.14033) (xy 0.58075 -5.152495)
(xy 0.600178 -5.169825) (xy 0.600302 -5.169963) (xy 0.635537 -5.237501) (xy 0.634263 -5.310498)
(xy 0.597284 -5.372725) (xy 0.589965 -5.379121) (xy 0.56399 -5.395605) (xy 0.528397 -5.407073)
(xy 0.475253 -5.414388) (xy 0.396628 -5.418415) (xy 0.28459 -5.420017) (xy 0.212934 -5.420179)
(xy -0.113393 -5.420179) (xy -0.113393 -5.737679) (xy 0.382021 -5.737679) (xy 0.545586 -5.737965)
(xy 0.669797 -5.739134) (xy 0.760655 -5.741654) (xy 0.82416 -5.745992) (xy 0.866313 -5.752614)
(xy 0.893116 -5.761987) (xy 0.910569 -5.774579) (xy 0.914967 -5.779152) (xy 0.94744 -5.842526)
(xy 0.949816 -5.914624) (xy 0.923175 -5.977135) (xy 0.902097 -5.997196) (xy 0.88017 -6.00824)
(xy 0.846195 -6.016785) (xy 0.794798 -6.023129) (xy 0.720605 -6.027572) (xy 0.618241 -6.030413)
(xy 0.482333 -6.031952) (xy 0.307505 -6.032487) (xy 0.26798 -6.0325) (xy 0.090224 -6.032384)
(xy -0.047758 -6.031742) (xy -0.151544 -6.030134) (xy -0.226717 -6.027121) (xy -0.278859 -6.022263)
(xy -0.313549 -6.015121) (xy -0.33637 -6.005254) (xy -0.352903 -5.992223) (xy -0.361973 -5.982866)
(xy -0.375626 -5.966294) (xy -0.386292 -5.945764) (xy -0.39434 -5.915893) (xy -0.400136 -5.871298)
(xy -0.404047 -5.806594) (xy -0.406443 -5.716397) (xy -0.40769 -5.595324) (xy -0.408156 -5.43799)
(xy -0.408214 -5.305568) (xy -0.408071 -5.120012) (xy -0.407394 -4.974342) (xy -0.405808 -4.863088)
(xy -0.402939 -4.780778) (xy -0.398413 -4.721943) (xy -0.391856 -4.681111) (xy -0.382894 -4.652812)
(xy -0.371153 -4.631575) (xy -0.361211 -4.618148) (xy -0.314208 -4.558393) (xy 0.268743 -4.558393)
(xy 0.462743 -4.55878)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -2.611835 -4.567195) (xy -2.564493 -4.594967) (xy -2.502592 -4.640385) (xy -2.422923 -4.705589)
(xy -2.32228 -4.792717) (xy -2.197452 -4.90391) (xy -2.045232 -5.041307) (xy -1.870982 -5.199276)
(xy -1.508125 -5.528327) (xy -1.496785 -5.086665) (xy -1.492691 -4.934634) (xy -1.488742 -4.821417)
(xy -1.484062 -4.74048) (xy -1.477779 -4.685293) (xy -1.469018 -4.649322) (xy -1.456906 -4.626035)
(xy -1.440569 -4.608899) (xy -1.431907 -4.601698) (xy -1.362537 -4.563623) (xy -1.296527 -4.56919)
(xy -1.244164 -4.601717) (xy -1.190625 -4.645042) (xy -1.183966 -5.277759) (xy -1.182123 -5.463841)
(xy -1.181185 -5.610021) (xy -1.181477 -5.721751) (xy -1.183323 -5.804482) (xy -1.18705 -5.863666)
(xy -1.19298 -5.904753) (xy -1.20144 -5.933196) (xy -1.212753 -5.954445) (xy -1.2253 -5.971488)
(xy -1.252444 -6.003095) (xy -1.279453 -6.024046) (xy -1.31007 -6.032088) (xy -1.348043 -6.024965)
(xy -1.397118 -6.000426) (xy -1.46104 -5.956214) (xy -1.543555 -5.890076) (xy -1.64841 -5.799759)
(xy -1.779351 -5.683008) (xy -1.927678 -5.548859) (xy -2.460625 -5.065429) (xy -2.471964 -5.505647)
(xy -2.476065 -5.657401) (xy -2.480025 -5.770354) (xy -2.484721 -5.851052) (xy -2.491033 -5.906041)
(xy -2.499837 -5.941865) (xy -2.512012 -5.96507) (xy -2.528437 -5.982201) (xy -2.536843 -5.989183)
(xy -2.611134 -6.027534) (xy -2.681332 -6.021749) (xy -2.742461 -5.972745) (xy -2.756445 -5.95303)
(xy -2.767344 -5.930006) (xy -2.775541 -5.898149) (xy -2.78142 -5.851935) (xy -2.785364 -5.78584)
(xy -2.787756 -5.694339) (xy -2.788979 -5.571911) (xy -2.789418 -5.413029) (xy -2.789464 -5.295446)
(xy -2.789317 -5.111533) (xy -2.788619 -4.967452) (xy -2.786987 -4.85768) (xy -2.784039 -4.776693)
(xy -2.779389 -4.718968) (xy -2.772657 -4.678981) (xy -2.763457 -4.651207) (xy -2.751406 -4.630123)
(xy -2.742461 -4.618148) (xy -2.719786 -4.58978) (xy -2.698595 -4.568362) (xy -2.675678 -4.556032)
(xy -2.647828 -4.55493) (xy -2.611835 -4.567195)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -3.917573 -4.569506) (xy -3.779928 -4.592602) (xy -3.674214 -4.628505) (xy -3.60544 -4.675778)
(xy -3.586699 -4.702748) (xy -3.567641 -4.765475) (xy -3.580466 -4.822222) (xy -3.620953 -4.876035)
(xy -3.683862 -4.90121) (xy -3.775143 -4.899165) (xy -3.845744 -4.885526) (xy -4.002626 -4.85954)
(xy -4.162954 -4.85707) (xy -4.342409 -4.878163) (xy -4.391978 -4.8871) (xy -4.558843 -4.934146)
(xy -4.689386 -5.004129) (xy -4.782176 -5.095856) (xy -4.835781 -5.208134) (xy -4.846868 -5.266182)
(xy -4.839611 -5.383953) (xy -4.792759 -5.48815) (xy -4.710582 -5.576742) (xy -4.597349 -5.647698)
(xy -4.457329 -5.698987) (xy -4.294791 -5.728579) (xy -4.114005 -5.734443) (xy -3.919238 -5.714548)
(xy -3.908241 -5.712672) (xy -3.830774 -5.698243) (xy -3.787822 -5.684306) (xy -3.769205 -5.663626)
(xy -3.764744 -5.62897) (xy -3.764643 -5.610618) (xy -3.764643 -5.533571) (xy -3.902205 -5.533571)
(xy -4.023682 -5.52525) (xy -4.106581 -5.498732) (xy -4.154814 -5.451689) (xy -4.172296 -5.38179)
(xy -4.17251 -5.372667) (xy -4.162281 -5.312922) (xy -4.127208 -5.270261) (xy -4.06193 -5.242029)
(xy -3.96109 -5.225571) (xy -3.863415 -5.21952) (xy -3.721451 -5.216048) (xy -3.618477 -5.221346)
(xy -3.548247 -5.240893) (xy -3.504514 -5.280173) (xy -3.48103 -5.344666) (xy -3.471549 -5.439854)
(xy -3.469821 -5.564875) (xy -3.472652 -5.704423) (xy -3.481167 -5.799347) (xy -3.495406 -5.850024)
(xy -3.498169 -5.853993) (xy -3.57635 -5.917316) (xy -3.690975 -5.967462) (xy -3.83478 -6.003362)
(xy -4.000496 -6.023944) (xy -4.180858 -6.028137) (xy -4.368598 -6.014869) (xy -4.479018 -5.998572)
(xy -4.652208 -5.949551) (xy -4.813174 -5.86941) (xy -4.947944 -5.765398) (xy -4.968428 -5.744609)
(xy -5.034981 -5.657213) (xy -5.095031 -5.548898) (xy -5.141564 -5.43534) (xy -5.167563 -5.332217)
(xy -5.170696 -5.292611) (xy -5.157356 -5.209994) (xy -5.1219 -5.107203) (xy -5.071131 -4.999006)
(xy -5.011852 -4.900169) (xy -4.959479 -4.834152) (xy -4.837026 -4.735952) (xy -4.678732 -4.657792)
(xy -4.490269 -4.601439) (xy -4.27731 -4.568663) (xy -4.082143 -4.560654) (xy -3.917573 -4.569506)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -5.87375 -4.60375) (xy -5.860529 -4.618964) (xy -5.850159 -4.638591) (xy -5.842293 -4.667888)
(xy -5.836587 -4.712113) (xy -5.832697 -4.776524) (xy -5.830278 -4.866378) (xy -5.828984 -4.986934)
(xy -5.828472 -5.143448) (xy -5.828393 -5.295446) (xy -5.828533 -5.483978) (xy -5.829182 -5.63241)
(xy -5.830686 -5.746001) (xy -5.833389 -5.830009) (xy -5.837636 -5.88969) (xy -5.843772 -5.930302)
(xy -5.852141 -5.957104) (xy -5.863089 -5.975353) (xy -5.87375 -5.987143) (xy -5.940051 -6.02668)
(xy -6.010696 -6.023131) (xy -6.073904 -5.980011) (xy -6.088427 -5.963177) (xy -6.099777 -5.943644)
(xy -6.108345 -5.916015) (xy -6.114522 -5.874889) (xy -6.118698 -5.814868) (xy -6.121265 -5.730551)
(xy -6.122612 -5.61654) (xy -6.123132 -5.467434) (xy -6.123214 -5.298623) (xy -6.123214 -4.669724)
(xy -6.067548 -4.614058) (xy -5.998934 -4.567225) (xy -5.932377 -4.565538) (xy -5.87375 -4.60375)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -7.416366 -4.560973) (xy -7.266068 -4.57148) (xy -7.126283 -4.587891) (xy -7.005137 -4.609587)
(xy -6.910754 -4.63595) (xy -6.851261 -4.666364) (xy -6.842129 -4.675317) (xy -6.810375 -4.744788)
(xy -6.820004 -4.816108) (xy -6.869257 -4.877127) (xy -6.871607 -4.878875) (xy -6.900577 -4.897676)
(xy -6.930819 -4.907562) (xy -6.973001 -4.908763) (xy -7.037792 -4.901507) (xy -7.135861 -4.886024)
(xy -7.14375 -4.884721) (xy -7.289877 -4.866769) (xy -7.447534 -4.857913) (xy -7.605656 -4.857827)
(xy -7.75318 -4.866185) (xy -7.87904 -4.882659) (xy -7.972172 -4.906923) (xy -7.978291 -4.909362)
(xy -8.045855 -4.947217) (xy -8.069593 -4.985527) (xy -8.05101 -5.023204) (xy -7.991611 -5.05916)
(xy -7.892901 -5.092306) (xy -7.756385 -5.121554) (xy -7.665357 -5.135636) (xy -7.476138 -5.162723)
(xy -7.325645 -5.187484) (xy -7.207466 -5.212063) (xy -7.115191 -5.238605) (xy -7.04241 -5.269253)
(xy -6.98271 -5.306152) (xy -6.929682 -5.351445) (xy -6.887069 -5.395923) (xy -6.836514 -5.457895)
(xy -6.811635 -5.511184) (xy -6.803854 -5.576839) (xy -6.803571 -5.600883) (xy -6.809415 -5.680671)
(xy -6.832771 -5.74003) (xy -6.873193 -5.792716) (xy -6.955344 -5.873254) (xy -7.046952 -5.934674)
(xy -7.154824 -5.978979) (xy -7.285765 -6.008172) (xy -7.446584 -6.024256) (xy -7.644086 -6.029233)
(xy -7.676696 -6.029149) (xy -7.808401 -6.026419) (xy -7.939015 -6.020216) (xy -8.054301 -6.01143)
(xy -8.14002 -6.00095) (xy -8.146953 -5.999747) (xy -8.232179 -5.979558) (xy -8.304467 -5.954055)
(xy -8.34539 -5.930739) (xy -8.383474 -5.869229) (xy -8.386125 -5.797602) (xy -8.353295 -5.733771)
(xy -8.34595 -5.726553) (xy -8.315588 -5.705107) (xy -8.277618 -5.695867) (xy -8.218852 -5.69744)
(xy -8.147512 -5.705613) (xy -8.067797 -5.712914) (xy -7.956049 -5.719074) (xy -7.825592 -5.723544)
(xy -7.689746 -5.725776) (xy -7.654018 -5.725923) (xy -7.517666 -5.725373) (xy -7.417876 -5.722726)
(xy -7.345868 -5.717063) (xy -7.29286 -5.707466) (xy -7.250073 -5.693017) (xy -7.22436 -5.680982)
(xy -7.167857 -5.647565) (xy -7.131833 -5.617301) (xy -7.126568 -5.608722) (xy -7.137675 -5.573296)
(xy -7.190477 -5.539001) (xy -7.281316 -5.507394) (xy -7.406532 -5.480031) (xy -7.443424 -5.473936)
(xy -7.636118 -5.44367) (xy -7.789904 -5.418373) (xy -7.910717 -5.396206) (xy -8.004495 -5.37533)
(xy -8.077171 -5.353907) (xy -8.134683 -5.330099) (xy -8.182965 -5.302068) (xy -8.227953 -5.267975)
(xy -8.275583 -5.225982) (xy -8.291611 -5.211259) (xy -8.347806 -5.156314) (xy -8.377552 -5.112781)
(xy -8.389189 -5.062965) (xy -8.391071 -5.000189) (xy -8.370351 -4.877085) (xy -8.308429 -4.772491)
(xy -8.205659 -4.686745) (xy -8.062398 -4.620184) (xy -7.960178 -4.590329) (xy -7.849083 -4.571047)
(xy -7.715999 -4.560139) (xy -7.569052 -4.556987) (xy -7.416366 -4.560973)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -9.467666 -4.558552) (xy -9.32823 -4.5593) (xy -9.222983 -4.56104) (xy -9.146344 -4.564177)
(xy -9.09273 -4.569113) (xy -9.056557 -4.576253) (xy -9.032241 -4.586001) (xy -9.014201 -4.598761)
(xy -9.007669 -4.604633) (xy -8.967942 -4.667027) (xy -8.960789 -4.738718) (xy -8.986923 -4.802364)
(xy -8.999007 -4.815227) (xy -9.018552 -4.827698) (xy -9.050023 -4.83732) (xy -9.099256 -4.844559)
(xy -9.172086 -4.849883) (xy -9.274349 -4.853762) (xy -9.411882 -4.856664) (xy -9.537623 -4.858429)
(xy -10.035268 -4.864554) (xy -10.042069 -4.994955) (xy -10.04887 -5.125357) (xy -9.711075 -5.125357)
(xy -9.564426 -5.126622) (xy -9.457064 -5.131914) (xy -9.382957 -5.143478) (xy -9.336069 -5.163558)
(xy -9.310367 -5.194398) (xy -9.299816 -5.238244) (xy -9.298214 -5.278937) (xy -9.303193 -5.328868)
(xy -9.321984 -5.36566) (xy -9.360367 -5.391235) (xy -9.42412 -5.407516) (xy -9.519024 -5.416426)
(xy -9.650858 -5.419887) (xy -9.722814 -5.420179) (xy -10.046607 -5.420179) (xy -10.046607 -5.737679)
(xy -9.547678 -5.737679) (xy -9.384133 -5.737906) (xy -9.259837 -5.738929) (xy -9.168686 -5.741256)
(xy -9.104572 -5.745395) (xy -9.06139 -5.751857) (xy -9.033033 -5.761148) (xy -9.013395 -5.773779)
(xy -9.003393 -5.783036) (xy -8.969082 -5.837063) (xy -8.958035 -5.885089) (xy -8.973809 -5.943751)
(xy -9.003393 -5.987143) (xy -9.019176 -6.000803) (xy -9.039551 -6.01141) (xy -9.069998 -6.019348)
(xy -9.115997 -6.025003) (xy -9.18303 -6.028759) (xy -9.276578 -6.031) (xy -9.40212 -6.032111)
(xy -9.565138 -6.032476) (xy -9.649732 -6.0325) (xy -9.830888 -6.03234) (xy -9.972168 -6.031602)
(xy -10.079052 -6.029904) (xy -10.157022 -6.026859) (xy -10.211559 -6.022083) (xy -10.248142 -6.015192)
(xy -10.272253 -6.005801) (xy -10.289373 -5.993525) (xy -10.296071 -5.987143) (xy -10.309328 -5.971882)
(xy -10.319719 -5.952193) (xy -10.327591 -5.922801) (xy -10.333293 -5.87843) (xy -10.337172 -5.813803)
(xy -10.339577 -5.723644) (xy -10.340856 -5.602678) (xy -10.341355 -5.445628) (xy -10.341428 -5.2994)
(xy -10.341361 -5.112134) (xy -10.34089 -4.964928) (xy -10.339613 -4.852482) (xy -10.337129 -4.769499)
(xy -10.333036 -4.71068) (xy -10.326931 -4.670727) (xy -10.318412 -4.644341) (xy -10.307078 -4.626225)
(xy -10.292525 -4.61108) (xy -10.28894 -4.607703) (xy -10.271541 -4.592755) (xy -10.251325 -4.58118)
(xy -10.222684 -4.572545) (xy -10.180009 -4.566422) (xy -10.117695 -4.562379) (xy -10.030132 -4.559986)
(xy -9.911713 -4.558811) (xy -9.756831 -4.558425) (xy -9.646877 -4.558393) (xy -9.467666 -4.558552)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -12.297397 -4.558391) (xy -12.21808 -4.559197) (xy -11.985669 -4.564805) (xy -11.791026 -4.581462)
(xy -11.627516 -4.610957) (xy -11.488506 -4.655074) (xy -11.367361 -4.715602) (xy -11.257449 -4.794327)
(xy -11.218191 -4.828525) (xy -11.153069 -4.908542) (xy -11.094348 -5.017123) (xy -11.049089 -5.13748)
(xy -11.024355 -5.252824) (xy -11.021785 -5.295446) (xy -11.03789 -5.413599) (xy -11.081047 -5.542659)
(xy -11.143524 -5.664819) (xy -11.217587 -5.762269) (xy -11.229617 -5.774027) (xy -11.331519 -5.856671)
(xy -11.443108 -5.921186) (xy -11.570818 -5.96926) (xy -11.721082 -6.002584) (xy -11.900334 -6.022849)
(xy -12.115007 -6.031746) (xy -12.213337 -6.0325) (xy -12.33836 -6.031898) (xy -12.426282 -6.029381)
(xy -12.485353 -6.023881) (xy -12.52382 -6.014332) (xy -12.549932 -5.999666) (xy -12.563928 -5.987143)
(xy -12.577149 -5.971929) (xy -12.58752 -5.952302) (xy -12.595385 -5.923005) (xy -12.601091 -5.87878)
(xy -12.604981 -5.814369) (xy -12.6074 -5.724514) (xy -12.608694 -5.603959) (xy -12.609206 -5.447444)
(xy -12.609285 -5.295446) (xy -12.609785 -5.092717) (xy -12.609677 -4.930768) (xy -12.607748 -4.853214)
(xy -12.314464 -4.853214) (xy -12.314464 -5.737679) (xy -12.127366 -5.737507) (xy -12.014784 -5.734278)
(xy -11.896872 -5.72596) (xy -11.798493 -5.714325) (xy -11.7955 -5.713846) (xy -11.6365 -5.675404)
(xy -11.513174 -5.615533) (xy -11.419363 -5.530335) (xy -11.359757 -5.438091) (xy -11.32303 -5.335766)
(xy -11.325878 -5.239686) (xy -11.368502 -5.136696) (xy -11.451874 -5.030153) (xy -11.567406 -4.951204)
(xy -11.717577 -4.898433) (xy -11.817939 -4.879758) (xy -11.931863 -4.866643) (xy -12.052605 -4.85715)
(xy -12.155301 -4.853204) (xy -12.161384 -4.853185) (xy -12.314464 -4.853214) (xy -12.607748 -4.853214)
(xy -12.606549 -4.805059) (xy -12.597986 -4.711048) (xy -12.581578 -4.644197) (xy -12.55491 -4.599963)
(xy -12.515571 -4.573806) (xy -12.461148 -4.561186) (xy -12.389227 -4.557561) (xy -12.297397 -4.558391)) (layer B.SilkS) (width 0.01))
)
(module Symbol:OSHW-Logo_11.4x12mm_SilkScreen (layer B.Cu) (tedit 0) (tstamp 5C46D24C)
(at 134.544 106.604 270)
(descr "Open Source Hardware Logo")
(tags "Logo OSHW")
(attr virtual)
(fp_text reference REF** (at 0 0 270) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value OSHW-Logo_11.4x12mm_SilkScreen (at 0.75 0 270) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_poly (pts (xy 0.746535 5.366828) (xy 0.859117 4.769637) (xy 1.274531 4.59839) (xy 1.689944 4.427143)
(xy 2.188302 4.766022) (xy 2.327868 4.860378) (xy 2.454028 4.944625) (xy 2.560895 5.014917)
(xy 2.642582 5.067408) (xy 2.693201 5.098251) (xy 2.706986 5.104902) (xy 2.73182 5.087797)
(xy 2.784888 5.040511) (xy 2.86024 4.969083) (xy 2.951929 4.879555) (xy 3.054007 4.777966)
(xy 3.160526 4.670357) (xy 3.265536 4.562768) (xy 3.363091 4.46124) (xy 3.447242 4.371814)
(xy 3.51204 4.300529) (xy 3.551538 4.253427) (xy 3.56098 4.237663) (xy 3.547391 4.208602)
(xy 3.509293 4.144934) (xy 3.450694 4.052888) (xy 3.375597 3.938691) (xy 3.288009 3.808571)
(xy 3.237254 3.734354) (xy 3.144745 3.598833) (xy 3.06254 3.476539) (xy 2.99463 3.37356)
(xy 2.945 3.295982) (xy 2.91764 3.249894) (xy 2.913529 3.240208) (xy 2.922849 3.212681)
(xy 2.948254 3.148527) (xy 2.985911 3.056765) (xy 3.031986 2.946416) (xy 3.082646 2.8265)
(xy 3.134059 2.706036) (xy 3.182389 2.594046) (xy 3.223806 2.499548) (xy 3.254474 2.431563)
(xy 3.270562 2.399112) (xy 3.271511 2.397835) (xy 3.296772 2.391638) (xy 3.364046 2.377815)
(xy 3.46636 2.357723) (xy 3.596741 2.332721) (xy 3.748216 2.304169) (xy 3.836594 2.287704)
(xy 3.998452 2.256886) (xy 4.144649 2.227561) (xy 4.267787 2.201334) (xy 4.360469 2.179809)
(xy 4.415301 2.16459) (xy 4.426323 2.159762) (xy 4.437119 2.127081) (xy 4.445829 2.05327)
(xy 4.45246 1.946963) (xy 4.457018 1.816788) (xy 4.459509 1.671379) (xy 4.459938 1.519365)
(xy 4.458311 1.369378) (xy 4.454635 1.230049) (xy 4.448915 1.11001) (xy 4.441158 1.01789)
(xy 4.431368 0.962323) (xy 4.425496 0.950755) (xy 4.390399 0.93689) (xy 4.316028 0.917067)
(xy 4.212223 0.893616) (xy 4.088819 0.868864) (xy 4.045741 0.860857) (xy 3.838047 0.822814)
(xy 3.673984 0.792176) (xy 3.54813 0.767726) (xy 3.455065 0.748246) (xy 3.389367 0.732519)
(xy 3.345617 0.719327) (xy 3.318392 0.707451) (xy 3.302272 0.695675) (xy 3.300017 0.693347)
(xy 3.277503 0.655855) (xy 3.243158 0.58289) (xy 3.200411 0.483388) (xy 3.152692 0.366282)
(xy 3.10343 0.240507) (xy 3.056055 0.114998) (xy 3.013995 -0.00131) (xy 2.98068 -0.099484)
(xy 2.959541 -0.170588) (xy 2.954005 -0.205687) (xy 2.954466 -0.206917) (xy 2.973223 -0.235606)
(xy 3.015776 -0.29873) (xy 3.077653 -0.389718) (xy 3.154382 -0.502) (xy 3.241491 -0.629005)
(xy 3.266299 -0.665098) (xy 3.354753 -0.795948) (xy 3.432588 -0.915336) (xy 3.495566 -1.016407)
(xy 3.539445 -1.092304) (xy 3.559985 -1.136172) (xy 3.56098 -1.141562) (xy 3.543722 -1.169889)
(xy 3.496036 -1.226006) (xy 3.42405 -1.303882) (xy 3.333897 -1.397485) (xy 3.231705 -1.500786)
(xy 3.123606 -1.607751) (xy 3.015728 -1.712351) (xy 2.914204 -1.808554) (xy 2.825162 -1.890329)
(xy 2.754733 -1.951645) (xy 2.709047 -1.986471) (xy 2.696409 -1.992157) (xy 2.666991 -1.978765)
(xy 2.606761 -1.942644) (xy 2.52553 -1.889881) (xy 2.46303 -1.847412) (xy 2.349785 -1.769485)
(xy 2.215674 -1.677729) (xy 2.081155 -1.58612) (xy 2.008833 -1.537091) (xy 1.764038 -1.371515)
(xy 1.558551 -1.48262) (xy 1.464936 -1.531293) (xy 1.38533 -1.569126) (xy 1.331467 -1.590703)
(xy 1.317757 -1.593706) (xy 1.30127 -1.571538) (xy 1.268745 -1.508894) (xy 1.222609 -1.411554)
(xy 1.16529 -1.285294) (xy 1.099216 -1.135895) (xy 1.026815 -0.969133) (xy 0.950516 -0.790787)
(xy 0.872746 -0.606636) (xy 0.795934 -0.422457) (xy 0.722506 -0.24403) (xy 0.654892 -0.077132)
(xy 0.59552 0.072458) (xy 0.546816 0.198962) (xy 0.51121 0.296601) (xy 0.49113 0.359598)
(xy 0.4879 0.381234) (xy 0.513496 0.408831) (xy 0.569539 0.45363) (xy 0.644311 0.506321)
(xy 0.650587 0.51049) (xy 0.843845 0.665186) (xy 0.999674 0.845664) (xy 1.116724 1.046153)
(xy 1.193645 1.260881) (xy 1.229086 1.484078) (xy 1.221697 1.709974) (xy 1.170127 1.932796)
(xy 1.073026 2.146776) (xy 1.044458 2.193591) (xy 0.895868 2.382637) (xy 0.720327 2.534443)
(xy 0.52391 2.648221) (xy 0.312693 2.72318) (xy 0.092753 2.758533) (xy -0.129837 2.753488)
(xy -0.348999 2.707256) (xy -0.558658 2.619049) (xy -0.752739 2.488076) (xy -0.812774 2.434918)
(xy -0.965565 2.268516) (xy -1.076903 2.093343) (xy -1.153277 1.896989) (xy -1.195813 1.702538)
(xy -1.206314 1.483913) (xy -1.171299 1.264203) (xy -1.094327 1.050835) (xy -0.978953 0.851233)
(xy -0.828734 0.672826) (xy -0.647227 0.523038) (xy -0.623373 0.507249) (xy -0.547799 0.455543)
(xy -0.490349 0.410743) (xy -0.462883 0.382138) (xy -0.462483 0.381234) (xy -0.46838 0.350291)
(xy -0.491755 0.280064) (xy -0.530179 0.17633) (xy -0.581223 0.044865) (xy -0.642458 -0.108552)
(xy -0.711456 -0.278146) (xy -0.785786 -0.458138) (xy -0.863022 -0.642753) (xy -0.940732 -0.826213)
(xy -1.016489 -1.002741) (xy -1.087863 -1.166559) (xy -1.152426 -1.311892) (xy -1.207748 -1.432962)
(xy -1.2514 -1.523992) (xy -1.280954 -1.579205) (xy -1.292856 -1.593706) (xy -1.329223 -1.582414)
(xy -1.39727 -1.55213) (xy -1.485263 -1.508265) (xy -1.533649 -1.48262) (xy -1.739137 -1.371515)
(xy -1.983932 -1.537091) (xy -2.108894 -1.621915) (xy -2.245705 -1.715261) (xy -2.373911 -1.803153)
(xy -2.438129 -1.847412) (xy -2.528449 -1.908063) (xy -2.604929 -1.956126) (xy -2.657593 -1.985515)
(xy -2.674698 -1.991727) (xy -2.699595 -1.974968) (xy -2.754695 -1.928181) (xy -2.834657 -1.856225)
(xy -2.934139 -1.763957) (xy -3.0478 -1.656235) (xy -3.119685 -1.587071) (xy -3.245449 -1.463502)
(xy -3.354137 -1.352979) (xy -3.441355 -1.26023) (xy -3.502711 -1.189982) (xy -3.533809 -1.146965)
(xy -3.536792 -1.138235) (xy -3.522947 -1.105029) (xy -3.484688 -1.037887) (xy -3.426258 -0.943608)
(xy -3.351903 -0.82899) (xy -3.265865 -0.700828) (xy -3.241397 -0.665098) (xy -3.152245 -0.535234)
(xy -3.072262 -0.418314) (xy -3.00592 -0.320907) (xy -2.957689 -0.249584) (xy -2.932043 -0.210915)
(xy -2.929565 -0.206917) (xy -2.933271 -0.1761) (xy -2.952939 -0.108344) (xy -2.98514 -0.012584)
(xy -3.026445 0.102246) (xy -3.073425 0.227211) (xy -3.122651 0.353376) (xy -3.170692 0.471807)
(xy -3.214119 0.57357) (xy -3.249504 0.649729) (xy -3.273416 0.691351) (xy -3.275116 0.693347)
(xy -3.289738 0.705242) (xy -3.314435 0.717005) (xy -3.354628 0.729854) (xy -3.415737 0.745006)
(xy -3.503183 0.763679) (xy -3.622388 0.78709) (xy -3.778773 0.816458) (xy -3.977757 0.853)
(xy -4.02084 0.860857) (xy -4.148529 0.885528) (xy -4.259847 0.909662) (xy -4.344955 0.930931)
(xy -4.394017 0.947007) (xy -4.400595 0.950755) (xy -4.411436 0.983982) (xy -4.420247 1.058234)
(xy -4.427024 1.164879) (xy -4.43176 1.295288) (xy -4.43445 1.440828) (xy -4.435087 1.592869)
(xy -4.433666 1.742779) (xy -4.43018 1.881927) (xy -4.424624 2.001683) (xy -4.416992 2.093414)
(xy -4.407278 2.148489) (xy -4.401422 2.159762) (xy -4.36882 2.171132) (xy -4.294582 2.189631)
(xy -4.186104 2.213653) (xy -4.050783 2.241593) (xy -3.896015 2.271847) (xy -3.811692 2.287704)
(xy -3.651704 2.317611) (xy -3.509033 2.344705) (xy -3.390652 2.367624) (xy -3.303535 2.385012)
(xy -3.254655 2.395508) (xy -3.24661 2.397835) (xy -3.233013 2.424069) (xy -3.204271 2.48726)
(xy -3.164215 2.578378) (xy -3.116676 2.688398) (xy -3.065485 2.80829) (xy -3.014474 2.929028)
(xy -2.967474 3.041584) (xy -2.928316 3.136929) (xy -2.900831 3.206038) (xy -2.888851 3.239881)
(xy -2.888628 3.24136) (xy -2.902209 3.268058) (xy -2.940285 3.329495) (xy -2.998853 3.419566)
(xy -3.073912 3.532165) (xy -3.16146 3.661185) (xy -3.212353 3.735294) (xy -3.305091 3.871178)
(xy -3.387459 3.994546) (xy -3.455439 4.099158) (xy -3.505012 4.178772) (xy -3.532158 4.227148)
(xy -3.536079 4.237993) (xy -3.519225 4.263235) (xy -3.472632 4.317131) (xy -3.402251 4.393642)
(xy -3.314035 4.486732) (xy -3.213935 4.59036) (xy -3.107902 4.698491) (xy -3.001889 4.805085)
(xy -2.901848 4.904105) (xy -2.81373 4.989513) (xy -2.743487 5.05527) (xy -2.697072 5.095339)
(xy -2.681544 5.104902) (xy -2.656261 5.091455) (xy -2.595789 5.05368) (xy -2.506008 4.99542)
(xy -2.392797 4.920521) (xy -2.262036 4.83283) (xy -2.1634 4.766022) (xy -1.665043 4.427143)
(xy -1.249629 4.59839) (xy -0.834216 4.769637) (xy -0.721634 5.366828) (xy -0.609051 5.96402)
(xy 0.633952 5.96402) (xy 0.746535 5.366828)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 3.563637 -2.887472) (xy 3.64929 -2.913641) (xy 3.704437 -2.946707) (xy 3.722401 -2.972855)
(xy 3.717457 -3.003852) (xy 3.685372 -3.052547) (xy 3.658243 -3.087035) (xy 3.602317 -3.149383)
(xy 3.560299 -3.175615) (xy 3.52448 -3.173903) (xy 3.418224 -3.146863) (xy 3.340189 -3.148091)
(xy 3.27682 -3.178735) (xy 3.255546 -3.19667) (xy 3.187451 -3.259779) (xy 3.187451 -4.083922)
(xy 2.913529 -4.083922) (xy 2.913529 -2.888628) (xy 3.05049 -2.888628) (xy 3.132719 -2.891879)
(xy 3.175144 -2.903426) (xy 3.187445 -2.925952) (xy 3.187451 -2.92662) (xy 3.19326 -2.950215)
(xy 3.219531 -2.947138) (xy 3.255931 -2.930115) (xy 3.331111 -2.898439) (xy 3.392158 -2.879381)
(xy 3.470708 -2.874496) (xy 3.563637 -2.887472)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -1.49324 -2.909199) (xy -1.431264 -2.938802) (xy -1.371241 -2.981561) (xy -1.325514 -3.030775)
(xy -1.292207 -3.093544) (xy -1.269445 -3.176971) (xy -1.255353 -3.288159) (xy -1.248058 -3.434209)
(xy -1.245682 -3.622223) (xy -1.245645 -3.641912) (xy -1.245098 -4.083922) (xy -1.51902 -4.083922)
(xy -1.51902 -3.676435) (xy -1.519215 -3.525471) (xy -1.520564 -3.416056) (xy -1.524212 -3.339933)
(xy -1.531304 -3.288848) (xy -1.542987 -3.254545) (xy -1.560406 -3.228768) (xy -1.584671 -3.203298)
(xy -1.669565 -3.148571) (xy -1.762239 -3.138416) (xy -1.850527 -3.173017) (xy -1.88123 -3.19877)
(xy -1.903771 -3.222982) (xy -1.919954 -3.248912) (xy -1.930832 -3.284708) (xy -1.937458 -3.338519)
(xy -1.940885 -3.418493) (xy -1.942166 -3.532779) (xy -1.942353 -3.671907) (xy -1.942353 -4.083922)
(xy -2.216275 -4.083922) (xy -2.216275 -2.888628) (xy -2.079314 -2.888628) (xy -1.997084 -2.891879)
(xy -1.95466 -2.903426) (xy -1.942359 -2.925952) (xy -1.942353 -2.92662) (xy -1.936646 -2.948681)
(xy -1.911473 -2.946177) (xy -1.861422 -2.921937) (xy -1.747906 -2.886271) (xy -1.618055 -2.882305)
(xy -1.49324 -2.909199)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 5.303287 -2.884355) (xy 5.367051 -2.899845) (xy 5.4893 -2.956569) (xy 5.593834 -3.043202)
(xy 5.66618 -3.147074) (xy 5.676119 -3.170396) (xy 5.689754 -3.231484) (xy 5.699298 -3.321853)
(xy 5.702549 -3.41319) (xy 5.702549 -3.585882) (xy 5.34147 -3.585882) (xy 5.192546 -3.586445)
(xy 5.087632 -3.589864) (xy 5.020937 -3.598731) (xy 4.986666 -3.615641) (xy 4.979028 -3.643189)
(xy 4.992229 -3.683968) (xy 5.015877 -3.731683) (xy 5.081843 -3.811314) (xy 5.173512 -3.850987)
(xy 5.285555 -3.849695) (xy 5.412472 -3.806514) (xy 5.522158 -3.753224) (xy 5.613173 -3.825191)
(xy 5.704188 -3.897157) (xy 5.618563 -3.976269) (xy 5.50425 -4.051017) (xy 5.363666 -4.096084)
(xy 5.212449 -4.108696) (xy 5.066236 -4.086079) (xy 5.042647 -4.078405) (xy 4.914141 -4.011296)
(xy 4.818551 -3.911247) (xy 4.753861 -3.775271) (xy 4.718057 -3.60038) (xy 4.71764 -3.596632)
(xy 4.714434 -3.406032) (xy 4.727393 -3.338035) (xy 4.980392 -3.338035) (xy 5.003627 -3.348491)
(xy 5.06671 -3.3565) (xy 5.159706 -3.361073) (xy 5.218638 -3.361765) (xy 5.328537 -3.361332)
(xy 5.397252 -3.358578) (xy 5.433405 -3.351321) (xy 5.445615 -3.337376) (xy 5.442504 -3.314562)
(xy 5.439894 -3.305735) (xy 5.395344 -3.2228) (xy 5.325279 -3.15596) (xy 5.263446 -3.126589)
(xy 5.181301 -3.128362) (xy 5.098062 -3.16499) (xy 5.028238 -3.225634) (xy 4.986337 -3.299456)
(xy 4.980392 -3.338035) (xy 4.727393 -3.338035) (xy 4.746385 -3.238395) (xy 4.809773 -3.097711)
(xy 4.900878 -2.987974) (xy 5.015978 -2.913174) (xy 5.151355 -2.877304) (xy 5.303287 -2.884355)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 4.390976 -2.899056) (xy 4.535256 -2.960348) (xy 4.580699 -2.990185) (xy 4.638779 -3.036036)
(xy 4.675238 -3.072089) (xy 4.681568 -3.083832) (xy 4.663693 -3.109889) (xy 4.61795 -3.154105)
(xy 4.581328 -3.184965) (xy 4.481088 -3.26552) (xy 4.401935 -3.198918) (xy 4.340769 -3.155921)
(xy 4.281129 -3.141079) (xy 4.212872 -3.144704) (xy 4.104482 -3.171652) (xy 4.029872 -3.227587)
(xy 3.98453 -3.318014) (xy 3.963947 -3.448435) (xy 3.963942 -3.448517) (xy 3.965722 -3.59429)
(xy 3.993387 -3.701245) (xy 4.048571 -3.774064) (xy 4.086192 -3.798723) (xy 4.186105 -3.829431)
(xy 4.292822 -3.829449) (xy 4.385669 -3.799655) (xy 4.407647 -3.785098) (xy 4.462765 -3.747914)
(xy 4.505859 -3.74182) (xy 4.552335 -3.769496) (xy 4.603716 -3.819205) (xy 4.685046 -3.903116)
(xy 4.594749 -3.977546) (xy 4.455236 -4.061549) (xy 4.297912 -4.102947) (xy 4.133503 -4.09995)
(xy 4.025531 -4.0725) (xy 3.899331 -4.00462) (xy 3.798401 -3.897831) (xy 3.752548 -3.822451)
(xy 3.71541 -3.714297) (xy 3.696827 -3.577318) (xy 3.696684 -3.428864) (xy 3.714865 -3.286281)
(xy 3.751255 -3.166918) (xy 3.756987 -3.15468) (xy 3.841865 -3.034655) (xy 3.956782 -2.947267)
(xy 4.092659 -2.894329) (xy 4.240417 -2.877654) (xy 4.390976 -2.899056)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 1.967254 -3.276245) (xy 1.969608 -3.458879) (xy 1.978207 -3.5976) (xy 1.99536 -3.698147)
(xy 2.023374 -3.766254) (xy 2.064557 -3.807659) (xy 2.121217 -3.828097) (xy 2.191372 -3.833318)
(xy 2.264848 -3.827468) (xy 2.320657 -3.806093) (xy 2.361109 -3.763458) (xy 2.388509 -3.693825)
(xy 2.405167 -3.59146) (xy 2.413389 -3.450624) (xy 2.41549 -3.276245) (xy 2.41549 -2.888628)
(xy 2.689411 -2.888628) (xy 2.689411 -4.083922) (xy 2.552451 -4.083922) (xy 2.469884 -4.080576)
(xy 2.427368 -4.068826) (xy 2.41549 -4.04652) (xy 2.408336 -4.026654) (xy 2.379865 -4.030857)
(xy 2.322476 -4.058971) (xy 2.190945 -4.102342) (xy 2.051438 -4.09927) (xy 1.917765 -4.052174)
(xy 1.854108 -4.014971) (xy 1.805553 -3.974691) (xy 1.770081 -3.924291) (xy 1.745674 -3.856729)
(xy 1.730313 -3.764965) (xy 1.721982 -3.641955) (xy 1.718662 -3.480659) (xy 1.718235 -3.355928)
(xy 1.718235 -2.888628) (xy 1.967254 -2.888628) (xy 1.967254 -3.276245)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 1.209547 -2.903364) (xy 1.335502 -2.971959) (xy 1.434047 -3.080245) (xy 1.480478 -3.168315)
(xy 1.500412 -3.246101) (xy 1.513328 -3.356993) (xy 1.518863 -3.484738) (xy 1.516654 -3.613084)
(xy 1.506337 -3.725779) (xy 1.494286 -3.785969) (xy 1.453634 -3.868311) (xy 1.38323 -3.95577)
(xy 1.298382 -4.032251) (xy 1.214397 -4.081655) (xy 1.212349 -4.082439) (xy 1.108134 -4.104027)
(xy 0.984627 -4.104562) (xy 0.867261 -4.084908) (xy 0.821942 -4.069155) (xy 0.70522 -4.002966)
(xy 0.621624 -3.916246) (xy 0.566701 -3.801438) (xy 0.535995 -3.650982) (xy 0.529047 -3.572173)
(xy 0.529933 -3.473145) (xy 0.796862 -3.473145) (xy 0.805854 -3.617645) (xy 0.831736 -3.72776)
(xy 0.872868 -3.798116) (xy 0.902172 -3.818235) (xy 0.977251 -3.832265) (xy 1.066494 -3.828111)
(xy 1.14365 -3.807922) (xy 1.163883 -3.796815) (xy 1.217265 -3.732123) (xy 1.2525 -3.633119)
(xy 1.267498 -3.512632) (xy 1.260172 -3.383494) (xy 1.243799 -3.305775) (xy 1.19679 -3.215771)
(xy 1.122582 -3.159509) (xy 1.033209 -3.140057) (xy 0.940707 -3.160481) (xy 0.869653 -3.210437)
(xy 0.832312 -3.251655) (xy 0.810518 -3.292281) (xy 0.80013 -3.347264) (xy 0.797006 -3.431549)
(xy 0.796862 -3.473145) (xy 0.529933 -3.473145) (xy 0.53093 -3.361874) (xy 0.56518 -3.189423)
(xy 0.631802 -3.054814) (xy 0.730799 -2.95804) (xy 0.862175 -2.899094) (xy 0.890385 -2.892259)
(xy 1.059926 -2.876213) (xy 1.209547 -2.903364)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 0.027759 -2.884345) (xy 0.122059 -2.902229) (xy 0.21989 -2.939633) (xy 0.230343 -2.944402)
(xy 0.304531 -2.983412) (xy 0.35591 -3.019664) (xy 0.372517 -3.042887) (xy 0.356702 -3.080761)
(xy 0.318288 -3.136644) (xy 0.301237 -3.157505) (xy 0.230969 -3.239618) (xy 0.140379 -3.186168)
(xy 0.054164 -3.150561) (xy -0.045451 -3.131529) (xy -0.140981 -3.130326) (xy -0.214939 -3.14821)
(xy -0.232688 -3.159373) (xy -0.266488 -3.210553) (xy -0.270596 -3.269509) (xy -0.245304 -3.315567)
(xy -0.230344 -3.324499) (xy -0.185514 -3.335592) (xy -0.106714 -3.34863) (xy -0.009574 -3.361088)
(xy 0.008346 -3.363042) (xy 0.164365 -3.39003) (xy 0.277523 -3.435873) (xy 0.352569 -3.504803)
(xy 0.394253 -3.601054) (xy 0.407238 -3.718617) (xy 0.389299 -3.852254) (xy 0.33105 -3.957195)
(xy 0.232255 -4.03363) (xy 0.092682 -4.081748) (xy -0.062255 -4.100732) (xy -0.188602 -4.100504)
(xy -0.291087 -4.083262) (xy -0.361079 -4.059457) (xy -0.449517 -4.017978) (xy -0.531246 -3.969842)
(xy -0.560295 -3.948655) (xy -0.635 -3.887676) (xy -0.544902 -3.796508) (xy -0.454804 -3.705339)
(xy -0.352368 -3.773128) (xy -0.249626 -3.824042) (xy -0.139913 -3.850673) (xy -0.034449 -3.853483)
(xy 0.055546 -3.832935) (xy 0.118854 -3.789493) (xy 0.139296 -3.752838) (xy 0.136229 -3.694053)
(xy 0.085434 -3.649099) (xy -0.012952 -3.618057) (xy -0.120744 -3.60371) (xy -0.286635 -3.576337)
(xy -0.409876 -3.524693) (xy -0.492114 -3.447266) (xy -0.534999 -3.342544) (xy -0.54094 -3.218387)
(xy -0.511594 -3.088702) (xy -0.444691 -2.990677) (xy -0.339629 -2.923866) (xy -0.19581 -2.88782)
(xy -0.089262 -2.880754) (xy 0.027759 -2.884345)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -2.686796 -2.916354) (xy -2.661981 -2.928037) (xy -2.576094 -2.990951) (xy -2.494879 -3.082769)
(xy -2.434236 -3.183868) (xy -2.416988 -3.230349) (xy -2.401251 -3.313376) (xy -2.391867 -3.413713)
(xy -2.390728 -3.455147) (xy -2.390589 -3.585882) (xy -3.143047 -3.585882) (xy -3.127007 -3.654363)
(xy -3.087637 -3.735355) (xy -3.018806 -3.805351) (xy -2.936919 -3.850441) (xy -2.884737 -3.859804)
(xy -2.813971 -3.848441) (xy -2.72954 -3.819943) (xy -2.700858 -3.806831) (xy -2.594791 -3.753858)
(xy -2.504272 -3.822901) (xy -2.452039 -3.869597) (xy -2.424247 -3.90814) (xy -2.42284 -3.919452)
(xy -2.447668 -3.946868) (xy -2.502083 -3.988532) (xy -2.551472 -4.021037) (xy -2.684748 -4.079468)
(xy -2.834161 -4.105915) (xy -2.982249 -4.099039) (xy -3.100295 -4.063096) (xy -3.221982 -3.986101)
(xy -3.30846 -3.884728) (xy -3.362559 -3.75357) (xy -3.387109 -3.587224) (xy -3.389286 -3.511108)
(xy -3.380573 -3.336685) (xy -3.379503 -3.331611) (xy -3.130173 -3.331611) (xy -3.123306 -3.347968)
(xy -3.095083 -3.356988) (xy -3.036873 -3.360854) (xy -2.940042 -3.361749) (xy -2.902757 -3.361765)
(xy -2.789317 -3.360413) (xy -2.717378 -3.355505) (xy -2.678687 -3.34576) (xy -2.664995 -3.329899)
(xy -2.66451 -3.324805) (xy -2.680137 -3.284326) (xy -2.719247 -3.227621) (xy -2.736061 -3.207766)
(xy -2.798481 -3.151611) (xy -2.863547 -3.129532) (xy -2.898603 -3.127686) (xy -2.993442 -3.150766)
(xy -3.072973 -3.212759) (xy -3.123423 -3.302802) (xy -3.124317 -3.305735) (xy -3.130173 -3.331611)
(xy -3.379503 -3.331611) (xy -3.351601 -3.199343) (xy -3.29941 -3.089461) (xy -3.235579 -3.011461)
(xy -3.117567 -2.926882) (xy -2.978842 -2.881686) (xy -2.83129 -2.8776) (xy -2.686796 -2.916354)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -5.026753 -2.901568) (xy -4.896478 -2.959163) (xy -4.797581 -3.055334) (xy -4.729918 -3.190229)
(xy -4.693345 -3.363996) (xy -4.690724 -3.391126) (xy -4.68867 -3.582408) (xy -4.715301 -3.750073)
(xy -4.768999 -3.885967) (xy -4.797753 -3.929681) (xy -4.897909 -4.022198) (xy -5.025463 -4.082119)
(xy -5.168163 -4.106985) (xy -5.31376 -4.094339) (xy -5.424438 -4.055391) (xy -5.519616 -3.989755)
(xy -5.597406 -3.903699) (xy -5.598751 -3.901685) (xy -5.630343 -3.84857) (xy -5.650873 -3.79516)
(xy -5.663305 -3.727754) (xy -5.670603 -3.632653) (xy -5.673818 -3.554666) (xy -5.675156 -3.483944)
(xy -5.426186 -3.483944) (xy -5.423753 -3.554348) (xy -5.41492 -3.648068) (xy -5.399336 -3.708214)
(xy -5.371234 -3.751006) (xy -5.344914 -3.776002) (xy -5.251608 -3.828338) (xy -5.15398 -3.835333)
(xy -5.063058 -3.797676) (xy -5.017598 -3.755479) (xy -4.984838 -3.712956) (xy -4.965677 -3.672267)
(xy -4.957267 -3.619314) (xy -4.956763 -3.539997) (xy -4.959355 -3.46695) (xy -4.964929 -3.362601)
(xy -4.973766 -3.29492) (xy -4.989693 -3.250774) (xy -5.016538 -3.217031) (xy -5.037811 -3.197746)
(xy -5.126794 -3.147086) (xy -5.222789 -3.14456) (xy -5.303281 -3.174567) (xy -5.371947 -3.237231)
(xy -5.412856 -3.340168) (xy -5.426186 -3.483944) (xy -5.675156 -3.483944) (xy -5.676754 -3.399582)
(xy -5.67174 -3.2836) (xy -5.656717 -3.196367) (xy -5.629624 -3.12753) (xy -5.5884 -3.066737)
(xy -5.573115 -3.048686) (xy -5.477546 -2.958746) (xy -5.375039 -2.906211) (xy -5.249679 -2.884201)
(xy -5.18855 -2.882402) (xy -5.026753 -2.901568)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 4.025307 -4.762784) (xy 4.144337 -4.793731) (xy 4.244021 -4.8576) (xy 4.292288 -4.905313)
(xy 4.371408 -5.018106) (xy 4.416752 -5.14895) (xy 4.43233 -5.309792) (xy 4.43241 -5.322794)
(xy 4.432549 -5.45353) (xy 3.680091 -5.45353) (xy 3.69613 -5.52201) (xy 3.725091 -5.584031)
(xy 3.775778 -5.648654) (xy 3.786379 -5.658971) (xy 3.877494 -5.714805) (xy 3.9814 -5.724275)
(xy 4.101 -5.68754) (xy 4.121274 -5.677647) (xy 4.183456 -5.647574) (xy 4.225106 -5.63044)
(xy 4.232373 -5.628855) (xy 4.25774 -5.644242) (xy 4.30612 -5.681887) (xy 4.330679 -5.702459)
(xy 4.38157 -5.749714) (xy 4.398281 -5.780917) (xy 4.386683 -5.80962) (xy 4.380483 -5.817468)
(xy 4.338493 -5.851819) (xy 4.269206 -5.893565) (xy 4.220882 -5.917935) (xy 4.083711 -5.960873)
(xy 3.931847 -5.974786) (xy 3.788024 -5.9583) (xy 3.747745 -5.946496) (xy 3.623078 -5.879689)
(xy 3.530671 -5.776892) (xy 3.46999 -5.637105) (xy 3.440498 -5.45933) (xy 3.43726 -5.366373)
(xy 3.446714 -5.231033) (xy 3.68549 -5.231033) (xy 3.708584 -5.241038) (xy 3.770662 -5.248888)
(xy 3.860914 -5.253521) (xy 3.922058 -5.254314) (xy 4.03204 -5.253549) (xy 4.101457 -5.24997)
(xy 4.139538 -5.241649) (xy 4.155515 -5.226657) (xy 4.158627 -5.204903) (xy 4.137278 -5.137892)
(xy 4.083529 -5.071664) (xy 4.012822 -5.020832) (xy 3.942089 -5.000038) (xy 3.846016 -5.018484)
(xy 3.762849 -5.071811) (xy 3.705186 -5.148677) (xy 3.68549 -5.231033) (xy 3.446714 -5.231033)
(xy 3.451028 -5.169291) (xy 3.49352 -5.012271) (xy 3.565635 -4.894069) (xy 3.668273 -4.81344)
(xy 3.802332 -4.769139) (xy 3.874957 -4.760607) (xy 4.025307 -4.762784)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 3.238446 -4.755883) (xy 3.334177 -4.774755) (xy 3.388677 -4.802699) (xy 3.446008 -4.849123)
(xy 3.364441 -4.952111) (xy 3.31415 -5.014479) (xy 3.280001 -5.044907) (xy 3.246063 -5.049555)
(xy 3.196406 -5.034586) (xy 3.173096 -5.026117) (xy 3.078063 -5.013622) (xy 2.991032 -5.040406)
(xy 2.927138 -5.100915) (xy 2.916759 -5.120208) (xy 2.905456 -5.171314) (xy 2.896732 -5.2655)
(xy 2.890997 -5.396089) (xy 2.88866 -5.556405) (xy 2.888627 -5.579211) (xy 2.888627 -5.976471)
(xy 2.614705 -5.976471) (xy 2.614705 -4.756275) (xy 2.751666 -4.756275) (xy 2.830638 -4.758337)
(xy 2.871779 -4.767513) (xy 2.886992 -4.78829) (xy 2.888627 -4.807886) (xy 2.888627 -4.859497)
(xy 2.95424 -4.807886) (xy 3.029475 -4.772675) (xy 3.130544 -4.755265) (xy 3.238446 -4.755883)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 2.056459 -4.763669) (xy 2.16142 -4.789163) (xy 2.191761 -4.802669) (xy 2.250573 -4.838046)
(xy 2.295709 -4.87789) (xy 2.329106 -4.92912) (xy 2.352701 -4.998654) (xy 2.368433 -5.093409)
(xy 2.378239 -5.220305) (xy 2.384057 -5.386258) (xy 2.386266 -5.497108) (xy 2.394396 -5.976471)
(xy 2.255531 -5.976471) (xy 2.171287 -5.972938) (xy 2.127884 -5.960866) (xy 2.116666 -5.940594)
(xy 2.110744 -5.918674) (xy 2.084266 -5.922865) (xy 2.048186 -5.940441) (xy 1.957862 -5.967382)
(xy 1.841777 -5.974642) (xy 1.71968 -5.962767) (xy 1.611321 -5.932305) (xy 1.601602 -5.928077)
(xy 1.502568 -5.858505) (xy 1.437281 -5.761789) (xy 1.40724 -5.648738) (xy 1.409535 -5.608122)
(xy 1.654633 -5.608122) (xy 1.676229 -5.662782) (xy 1.740259 -5.701952) (xy 1.843565 -5.722974)
(xy 1.898774 -5.725766) (xy 1.990782 -5.71862) (xy 2.051941 -5.690848) (xy 2.066862 -5.677647)
(xy 2.107287 -5.605829) (xy 2.116666 -5.540686) (xy 2.116666 -5.45353) (xy 1.995269 -5.45353)
(xy 1.854153 -5.460722) (xy 1.755173 -5.483345) (xy 1.692633 -5.522964) (xy 1.678631 -5.540628)
(xy 1.654633 -5.608122) (xy 1.409535 -5.608122) (xy 1.413941 -5.530157) (xy 1.45888 -5.416855)
(xy 1.520196 -5.340285) (xy 1.557332 -5.307181) (xy 1.593687 -5.285425) (xy 1.64099 -5.272161)
(xy 1.710973 -5.264528) (xy 1.815364 -5.25967) (xy 1.85677 -5.258273) (xy 2.116666 -5.24978)
(xy 2.116285 -5.171116) (xy 2.106219 -5.088428) (xy 2.069829 -5.038431) (xy 1.996311 -5.006489)
(xy 1.994339 -5.00592) (xy 1.890105 -4.993361) (xy 1.788108 -5.009766) (xy 1.712305 -5.049657)
(xy 1.68189 -5.069354) (xy 1.649132 -5.066629) (xy 1.598721 -5.038091) (xy 1.569119 -5.01795)
(xy 1.511218 -4.974919) (xy 1.475352 -4.942662) (xy 1.469597 -4.933427) (xy 1.493295 -4.885636)
(xy 1.563313 -4.828562) (xy 1.593725 -4.809305) (xy 1.681155 -4.77614) (xy 1.798983 -4.75735)
(xy 1.929866 -4.753129) (xy 2.056459 -4.763669)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 0.557528 -4.761332) (xy 0.656014 -4.768726) (xy 0.784776 -5.154706) (xy 0.913537 -5.540686)
(xy 0.953911 -5.403726) (xy 0.978207 -5.319083) (xy 1.010167 -5.204697) (xy 1.044679 -5.078963)
(xy 1.062928 -5.01152) (xy 1.131571 -4.756275) (xy 1.414773 -4.756275) (xy 1.330122 -5.023971)
(xy 1.288435 -5.155638) (xy 1.238074 -5.314458) (xy 1.185481 -5.480128) (xy 1.13853 -5.627843)
(xy 1.031589 -5.96402) (xy 0.800661 -5.979044) (xy 0.73805 -5.772316) (xy 0.699438 -5.643896)
(xy 0.6573 -5.502322) (xy 0.620472 -5.377285) (xy 0.619018 -5.372309) (xy 0.591511 -5.287586)
(xy 0.567242 -5.229778) (xy 0.550243 -5.207918) (xy 0.54675 -5.210446) (xy 0.53449 -5.244336)
(xy 0.511195 -5.31693) (xy 0.4797 -5.419101) (xy 0.442842 -5.54172) (xy 0.422899 -5.609167)
(xy 0.314895 -5.976471) (xy 0.085679 -5.976471) (xy -0.097561 -5.3975) (xy -0.149037 -5.235091)
(xy -0.19593 -5.087602) (xy -0.236023 -4.96196) (xy -0.267103 -4.865095) (xy -0.286955 -4.803934)
(xy -0.292989 -4.786065) (xy -0.288212 -4.767768) (xy -0.250703 -4.759755) (xy -0.172645 -4.760557)
(xy -0.160426 -4.761163) (xy -0.015674 -4.768726) (xy 0.07913 -5.117353) (xy 0.113977 -5.244497)
(xy 0.145117 -5.356265) (xy 0.169809 -5.442953) (xy 0.185312 -5.494856) (xy 0.188176 -5.503318)
(xy 0.200046 -5.493587) (xy 0.223983 -5.443172) (xy 0.257239 -5.358935) (xy 0.297064 -5.247741)
(xy 0.33073 -5.147297) (xy 0.459041 -4.753939) (xy 0.557528 -4.761332)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -0.398432 -5.976471) (xy -0.535393 -5.976471) (xy -0.614889 -5.97414) (xy -0.656292 -5.964488)
(xy -0.671199 -5.943525) (xy -0.672353 -5.929351) (xy -0.674867 -5.900927) (xy -0.69072 -5.895475)
(xy -0.732379 -5.912998) (xy -0.764776 -5.929351) (xy -0.889151 -5.968103) (xy -1.024354 -5.970346)
(xy -1.134274 -5.941444) (xy -1.236634 -5.871619) (xy -1.31466 -5.768555) (xy -1.357386 -5.646989)
(xy -1.358474 -5.640192) (xy -1.364822 -5.566032) (xy -1.367979 -5.45957) (xy -1.367725 -5.379052)
(xy -1.095711 -5.379052) (xy -1.08941 -5.48607) (xy -1.075075 -5.574278) (xy -1.055669 -5.62409)
(xy -0.982254 -5.692162) (xy -0.895086 -5.716564) (xy -0.805196 -5.696831) (xy -0.728383 -5.637968)
(xy -0.699292 -5.598379) (xy -0.682283 -5.551138) (xy -0.674316 -5.482181) (xy -0.672353 -5.378607)
(xy -0.675866 -5.276039) (xy -0.685143 -5.185921) (xy -0.698294 -5.125613) (xy -0.700486 -5.120208)
(xy -0.753522 -5.05594) (xy -0.830933 -5.020656) (xy -0.917546 -5.014959) (xy -0.998193 -5.039453)
(xy -1.057703 -5.094742) (xy -1.063876 -5.105743) (xy -1.083199 -5.172827) (xy -1.093726 -5.269284)
(xy -1.095711 -5.379052) (xy -1.367725 -5.379052) (xy -1.367596 -5.338225) (xy -1.365806 -5.272918)
(xy -1.353627 -5.111355) (xy -1.328315 -4.990053) (xy -1.286207 -4.900379) (xy -1.223641 -4.833699)
(xy -1.1629 -4.794557) (xy -1.078036 -4.76704) (xy -0.972485 -4.757603) (xy -0.864402 -4.76529)
(xy -0.771942 -4.789146) (xy -0.72309 -4.817685) (xy -0.672353 -4.863601) (xy -0.672353 -4.283137)
(xy -0.398432 -4.283137) (xy -0.398432 -5.976471)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -1.967236 -4.758921) (xy -1.92997 -4.770091) (xy -1.917957 -4.794633) (xy -1.917451 -4.805712)
(xy -1.915296 -4.836572) (xy -1.900449 -4.841417) (xy -1.860343 -4.82026) (xy -1.83652 -4.805806)
(xy -1.761362 -4.77485) (xy -1.671594 -4.759544) (xy -1.577471 -4.758367) (xy -1.489246 -4.769799)
(xy -1.417174 -4.79232) (xy -1.371508 -4.824409) (xy -1.362502 -4.864545) (xy -1.367047 -4.875415)
(xy -1.400179 -4.920534) (xy -1.451555 -4.976026) (xy -1.460848 -4.984996) (xy -1.509818 -5.026245)
(xy -1.552069 -5.039572) (xy -1.611159 -5.030271) (xy -1.634831 -5.02409) (xy -1.708496 -5.009246)
(xy -1.76029 -5.015921) (xy -1.804031 -5.039465) (xy -1.844098 -5.071061) (xy -1.873608 -5.110798)
(xy -1.894116 -5.166252) (xy -1.907176 -5.245003) (xy -1.914344 -5.354629) (xy -1.917176 -5.502706)
(xy -1.917451 -5.592111) (xy -1.917451 -5.976471) (xy -2.166471 -5.976471) (xy -2.166471 -4.756275)
(xy -2.041961 -4.756275) (xy -1.967236 -4.758921)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -2.74128 -4.765922) (xy -2.62413 -4.79718) (xy -2.534949 -4.853837) (xy -2.472016 -4.928045)
(xy -2.452452 -4.959716) (xy -2.438008 -4.992891) (xy -2.427911 -5.035329) (xy -2.421385 -5.094788)
(xy -2.417658 -5.179029) (xy -2.415954 -5.29581) (xy -2.4155 -5.45289) (xy -2.415491 -5.494565)
(xy -2.415491 -5.976471) (xy -2.53502 -5.976471) (xy -2.611261 -5.971131) (xy -2.667634 -5.957604)
(xy -2.681758 -5.949262) (xy -2.72037 -5.934864) (xy -2.759808 -5.949262) (xy -2.824738 -5.967237)
(xy -2.919055 -5.974472) (xy -3.023593 -5.971333) (xy -3.119189 -5.958186) (xy -3.175 -5.941318)
(xy -3.283002 -5.871986) (xy -3.350497 -5.775772) (xy -3.380841 -5.647844) (xy -3.381123 -5.644559)
(xy -3.37846 -5.587808) (xy -3.137647 -5.587808) (xy -3.116595 -5.652358) (xy -3.082303 -5.688686)
(xy -3.013468 -5.716162) (xy -2.92261 -5.727129) (xy -2.829958 -5.721731) (xy -2.755744 -5.70011)
(xy -2.734951 -5.686239) (xy -2.698619 -5.622143) (xy -2.689412 -5.549278) (xy -2.689412 -5.45353)
(xy -2.827173 -5.45353) (xy -2.958047 -5.463605) (xy -3.057259 -5.492148) (xy -3.118977 -5.536639)
(xy -3.137647 -5.587808) (xy -3.37846 -5.587808) (xy -3.374564 -5.50479) (xy -3.328466 -5.394282)
(xy -3.2418 -5.310712) (xy -3.229821 -5.30311) (xy -3.178345 -5.278357) (xy -3.114632 -5.263368)
(xy -3.025565 -5.256082) (xy -2.919755 -5.254407) (xy -2.689412 -5.254314) (xy -2.689412 -5.157755)
(xy -2.699183 -5.082836) (xy -2.724116 -5.032644) (xy -2.727035 -5.029972) (xy -2.782519 -5.008015)
(xy -2.866273 -4.999505) (xy -2.958833 -5.003687) (xy -3.04073 -5.019809) (xy -3.089327 -5.04399)
(xy -3.115659 -5.063359) (xy -3.143465 -5.067057) (xy -3.181839 -5.051188) (xy -3.239875 -5.011855)
(xy -3.326669 -4.945164) (xy -3.334635 -4.938916) (xy -3.330553 -4.9158) (xy -3.296499 -4.877352)
(xy -3.24474 -4.834627) (xy -3.187545 -4.798679) (xy -3.169575 -4.790191) (xy -3.104028 -4.773252)
(xy -3.00798 -4.76117) (xy -2.900671 -4.756323) (xy -2.895653 -4.756313) (xy -2.74128 -4.765922)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy -3.780091 -2.90956) (xy -3.727588 -2.935499) (xy -3.662842 -2.9807) (xy -3.615653 -3.029991)
(xy -3.583335 -3.091885) (xy -3.563203 -3.174896) (xy -3.55257 -3.287538) (xy -3.548753 -3.438324)
(xy -3.54853 -3.503149) (xy -3.549182 -3.645221) (xy -3.551888 -3.746757) (xy -3.557776 -3.817015)
(xy -3.567973 -3.865256) (xy -3.583606 -3.900738) (xy -3.599872 -3.924943) (xy -3.703705 -4.027929)
(xy -3.825979 -4.089874) (xy -3.957886 -4.108506) (xy -4.090616 -4.081549) (xy -4.132667 -4.062486)
(xy -4.233334 -4.010015) (xy -4.233334 -4.832259) (xy -4.159865 -4.794267) (xy -4.063059 -4.764872)
(xy -3.944072 -4.757342) (xy -3.825255 -4.771245) (xy -3.735527 -4.802476) (xy -3.661101 -4.861954)
(xy -3.59751 -4.947066) (xy -3.592729 -4.955805) (xy -3.572563 -4.996966) (xy -3.557835 -5.038454)
(xy -3.547697 -5.088713) (xy -3.541301 -5.156184) (xy -3.537799 -5.249309) (xy -3.536342 -5.376531)
(xy -3.536079 -5.519701) (xy -3.536079 -5.976471) (xy -3.81 -5.976471) (xy -3.81 -5.134231)
(xy -3.886617 -5.069763) (xy -3.966207 -5.018194) (xy -4.041578 -5.008818) (xy -4.117367 -5.032947)
(xy -4.157759 -5.056574) (xy -4.187821 -5.090227) (xy -4.209203 -5.141087) (xy -4.22355 -5.216334)
(xy -4.23251 -5.323146) (xy -4.23773 -5.468704) (xy -4.239569 -5.565588) (xy -4.245785 -5.96402)
(xy -4.37652 -5.971547) (xy -4.507255 -5.979073) (xy -4.507255 -3.506582) (xy -4.233334 -3.506582)
(xy -4.22635 -3.644423) (xy -4.202818 -3.740107) (xy -4.158865 -3.799641) (xy -4.090618 -3.829029)
(xy -4.021667 -3.834902) (xy -3.943614 -3.828154) (xy -3.891811 -3.801594) (xy -3.859417 -3.766499)
(xy -3.833916 -3.728752) (xy -3.818735 -3.6867) (xy -3.811981 -3.627779) (xy -3.811759 -3.539428)
(xy -3.814032 -3.465448) (xy -3.819251 -3.354) (xy -3.827021 -3.280833) (xy -3.840105 -3.234422)
(xy -3.861268 -3.203244) (xy -3.88124 -3.185223) (xy -3.964686 -3.145925) (xy -4.063449 -3.139579)
(xy -4.120159 -3.153116) (xy -4.176308 -3.201233) (xy -4.213501 -3.294833) (xy -4.231528 -3.433254)
(xy -4.233334 -3.506582) (xy -4.507255 -3.506582) (xy -4.507255 -2.888628) (xy -4.370295 -2.888628)
(xy -4.288065 -2.891879) (xy -4.24564 -2.903426) (xy -4.233339 -2.925952) (xy -4.233334 -2.92662)
(xy -4.227626 -2.948681) (xy -4.202453 -2.946176) (xy -4.152402 -2.921935) (xy -4.035781 -2.884851)
(xy -3.904571 -2.880953) (xy -3.780091 -2.90956)) (layer B.SilkS) (width 0.01))
)
(gr_text "HASwitchPlate v1.0" (at 119.558 121.59 90) (layer F.SilkS) (tstamp 5C3D5FAE)
(effects (font (size 1.6 1.6) (thickness 0.3)))
)
(gr_text http://haswitchplate.com (at 121.717 121.59 90) (layer F.SilkS) (tstamp 5C3D564E)
(effects (font (size 1.2 1.2) (thickness 0.3)))
)
(gr_text LCD (at 157.4675 107.3025) (layer F.SilkS) (tstamp 5C3D2B79)
(effects (font (size 1.4 1.4) (thickness 0.3)))
)
(gr_text NPN (at 153.1495 101.397) (layer F.SilkS) (tstamp 5C3D27D5)
(effects (font (size 1.4 1.4) (thickness 0.3)))
)
(gr_text AC/N (at 150.8 129.464 90) (layer F.SilkS) (tstamp 5C3D1A1B)
(effects (font (size 1.2 1.2) (thickness 0.3)))
)
(gr_text AC/L (at 150.8 136.576 90) (layer F.SilkS) (tstamp 5C3D15F9)
(effects (font (size 1.2 1.2) (thickness 0.3)))
)
(gr_text DC+ (at 155.88 139.116) (layer F.SilkS) (tstamp 5C3D143A)
(effects (font (size 1.2 1.2) (thickness 0.3)))
)
(gr_text DC- (at 155.8165 127.178) (layer F.SilkS) (tstamp 5C3D13D9)
(effects (font (size 1.2 1.2) (thickness 0.3)))
)
(gr_line (start 107.366 137.465) (end 117.145 137.465) (layer F.SilkS) (width 0.2))
(gr_text "R1 1k" (at 151.943 113.589 90) (layer F.SilkS)
(effects (font (size 1.4 1.4) (thickness 0.3)))
)
(gr_text AC/L (at 151.1175 135.687) (layer B.SilkS) (tstamp 5C2FAFE0)
(effects (font (size 1.2 1.2) (thickness 0.3)) (justify mirror))
)
(gr_text DC- (at 155.372 128.0035) (layer B.SilkS) (tstamp 5C3D0431)
(effects (font (size 1.2 1.2) (thickness 0.3)) (justify mirror))
)
(gr_text DC+ (at 155.372 138.227) (layer B.SilkS) (tstamp 5C301E8C)
(effects (font (size 1.2 1.2) (thickness 0.3)) (justify mirror))
)
(gr_line (start 149.53 138.735) (end 149.53 134.29) (layer F.SilkS) (width 0.2))
(gr_line (start 149.53 102.032) (end 149.53 121.59) (layer F.SilkS) (width 0.2))
(gr_text SLC03x (at 137.084 122.606) (layer F.SilkS) (tstamp 5C300CEF)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 101.905 105.08) (end 103.683 105.08) (layer F.SilkS) (width 0.2))
(gr_line (start 103.175 138.735) (end 106.096 138.735) (layer F.SilkS) (width 0.2))
(gr_line (start 126.416 138.735) (end 149.53 138.735) (layer F.SilkS) (width 0.2))
(gr_line (start 126.416 102.032) (end 149.53 102.032) (layer F.SilkS) (width 0.2))
(gr_line (start 126.416 138.735) (end 126.416 102.032) (layer F.SilkS) (width 0.2))
(gr_line (start 126.035 106.35) (end 124.765 105.08) (layer F.SilkS) (width 0.2))
(gr_line (start 100.635 106.35) (end 101.905 105.08) (layer F.SilkS) (width 0.2))
(gr_line (start 100.635 132.385) (end 100.635 106.35) (layer F.SilkS) (width 0.2))
(gr_line (start 103.175 138.735) (end 103.175 133.655) (layer F.SilkS) (width 0.2))
(gr_arc (start 107.366 138.735) (end 107.366 137.465) (angle -90) (layer F.SilkS) (width 0.2))
(gr_arc (start 117.145 138.735) (end 118.415 138.735) (angle -90) (layer F.SilkS) (width 0.2))
(gr_line (start 126.035 138.735) (end 118.415 138.735) (layer F.SilkS) (width 0.2))
(gr_line (start 126.035 106.35) (end 126.035 138.735) (layer F.SilkS) (width 0.2))
(gr_line (start 101.905 132.385) (end 100.635 132.385) (layer F.SilkS) (width 0.2))
(gr_arc (start 101.905 133.655) (end 103.175 133.655) (angle -90) (layer F.SilkS) (width 0.2))
(gr_text AC/N (at 150.9905 130.5435) (layer B.SilkS) (tstamp 5C2FC4D1)
(effects (font (size 1.2 1.2) (thickness 0.3)) (justify mirror))
)
(gr_line (start 160 101) (end 160 122) (layer Edge.Cuts) (width 0.15))
(gr_line (start 160 132.1) (end 160 124) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 142.5 123) (end 142.5 124) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5C2FA89B))
(gr_arc (start 142.5 123) (end 141.5 123) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5C2FA883))
(gr_line (start 142.5 122) (end 160 122) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5C2FA816))
(gr_line (start 142.5 124) (end 160 124) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5C2FA7FA))
(gr_line (start 118.5 140) (end 159 140) (layer Edge.Cuts) (width 0.15))
(gr_line (start 101 140) (end 106 140) (layer Edge.Cuts) (width 0.15))
(gr_line (start 108 138) (end 116.5 138) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 118.5 139) (end 118.5 140) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5C2FA64B))
(gr_arc (start 116.5 139) (end 116.5 138) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 108 139) (end 107 139) (angle 89.9) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 106 139) (end 107 139) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 101 101) (end 100 101) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 101 139) (end 101 140) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 159 139) (end 160 139) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 159 101) (end 159 100) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_text IRM-03-05 (at 144.196 112.3825 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "D1 Mini" (at 115.1 121.1 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text DBG (at 123.4 105.9 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text D2 (at 120.8 105.1 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text D1 (at 118.2 105.1 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text D0 (at 115.7 105.1 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text A0 (at 113.1 105 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text +3.3V (at 110.7 107.1 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text +5V (at 108.1 106 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text GND (at 105.5 105.7 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text v1.0 (at 113.97 134.0995 90) (layer B.SilkS)
(effects (font (size 1.5 1.35) (thickness 0.3)) (justify mirror))
)
(gr_text http://haswitchplate.com (at 121.336 120.6375 90) (layer B.SilkS)
(effects (font (size 1.75 1.75) (thickness 0.3)) (justify mirror))
)
(gr_text HASP (at 110 120 90) (layer B.SilkS)
(effects (font (size 9 9) (thickness 2)) (justify mirror))
)
(gr_text HASwitchPlate (at 118 120.5 90) (layer B.SilkS)
(effects (font (size 3.25 3.25) (thickness 0.6)) (justify mirror))
)
(gr_text GND (at 154.864 118.4912) (layer B.SilkS)
(effects (font (size 1.3 1.3) (thickness 0.25)) (justify mirror))
)
(gr_text TX (at 155.2196 116.1036) (layer B.SilkS)
(effects (font (size 1.3 1.3) (thickness 0.25)) (justify mirror))
)
(gr_text RX (at 155.118 113.462) (layer B.SilkS) (tstamp 5C3D6E1C)
(effects (font (size 1.3 1.3) (thickness 0.25)) (justify mirror))
)
(gr_text +5V (at 155.118 110.922) (layer B.SilkS)
(effects (font (size 1.3 1.3) (thickness 0.25)) (justify mirror))
)
(gr_arc (start 142.5 133.1) (end 142.5 134.1) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 142.5 133.1) (end 141.5 133.1) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 160 134.1) (end 160 139) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 142.5 134.1) (end 160 134.1) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 142.5 132.1) (end 160 132.1) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 101 100) (end 159 100) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 100 101) (end 100 139) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 129.22 135.189) (end 129.22 135.65) (width 1.5) (layer F.Cu) (net 2))
(segment (start 124.43 130.39) (end 124.43 130.399) (width 1.5) (layer F.Cu) (net 2))
(segment (start 124.43 130.399) (end 129.22 135.189) (width 2) (layer F.Cu) (net 2))
(segment (start 129.3 111.869274) (end 129.3 110.25) (width 1) (layer F.Cu) (net 2))
(segment (start 129.3 117.753336) (end 129.3 111.869274) (width 1) (layer F.Cu) (net 2))
(segment (start 127.457999 119.595337) (end 129.3 117.753336) (width 1) (layer F.Cu) (net 2))
(segment (start 127.457999 128.634793) (end 127.457999 119.595337) (width 1) (layer F.Cu) (net 2))
(segment (start 125.702792 130.39) (end 127.457999 128.634793) (width 1) (layer F.Cu) (net 2))
(segment (start 124.43 130.39) (end 125.702792 130.39) (width 1) (layer F.Cu) (net 2))
(via (at 105.207 125.31) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 157.785 113.335) (end 156.910001 112.460001) (width 1) (layer B.Cu) (net 3))
(segment (start 148.118999 112.460001) (end 126.924 133.655) (width 1) (layer B.Cu) (net 3))
(segment (start 156.910001 112.460001) (end 148.118999 112.460001) (width 1) (layer B.Cu) (net 3))
(segment (start 126.924 133.655) (end 113.552 133.655) (width 1) (layer B.Cu) (net 3))
(segment (start 113.552 133.655) (end 105.506999 125.609999) (width 1) (layer B.Cu) (net 3))
(segment (start 105.506999 125.609999) (end 105.207 125.31) (width 1) (layer B.Cu) (net 3))
(segment (start 101.57 125.31) (end 105.207 125.31) (width 1) (layer F.Cu) (net 3))
(segment (start 156.547564 115.875) (end 157.785 115.875) (width 1) (layer F.Cu) (net 4))
(segment (start 135.899792 115.113) (end 135.941 115.113) (width 1) (layer F.Cu) (net 4))
(segment (start 155.785564 115.113) (end 156.547564 115.875) (width 1) (layer F.Cu) (net 4))
(segment (start 135.941 115.113) (end 155.785564 115.113) (width 1) (layer F.Cu) (net 4) (tstamp 5C3D067F))
(via (at 135.941 115.113) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 125.744 125.31) (end 124.43 125.31) (width 1) (layer B.Cu) (net 4))
(segment (start 135.941 115.113) (end 125.744 125.31) (width 1) (layer B.Cu) (net 4))
(segment (start 110.58 103.202081) (end 110.58 102) (width 1) (layer F.Cu) (net 7))
(segment (start 109.337081 104.445) (end 110.58 103.202081) (width 1) (layer F.Cu) (net 7))
(segment (start 106.858 104.445) (end 109.337081 104.445) (width 1) (layer F.Cu) (net 7))
(segment (start 104.191 107.112) (end 106.858 104.445) (width 1) (layer F.Cu) (net 7))
(segment (start 104.191 121.463) (end 104.191 107.112) (width 1) (layer F.Cu) (net 7))
(segment (start 101.57 130.053) (end 101.872999 129.750001) (width 1) (layer F.Cu) (net 7))
(segment (start 101.57 130.39) (end 101.57 130.053) (width 1) (layer F.Cu) (net 7))
(segment (start 101.872999 129.750001) (end 102.888333 129.750001) (width 1) (layer F.Cu) (net 7))
(segment (start 102.888333 129.750001) (end 106.70701 125.931324) (width 1) (layer F.Cu) (net 7))
(segment (start 106.70701 125.931324) (end 106.70701 123.97901) (width 1) (layer F.Cu) (net 7))
(segment (start 106.70701 123.97901) (end 104.191 121.463) (width 1) (layer F.Cu) (net 7))
(segment (start 102.482001 114.510001) (end 103.556 113.436002) (width 1) (layer B.Cu) (net 8))
(segment (start 101.745999 114.510001) (end 102.482001 114.510001) (width 1) (layer B.Cu) (net 8))
(segment (start 101.57 115.15) (end 101.57 114.686) (width 1) (layer B.Cu) (net 8))
(segment (start 101.57 114.686) (end 101.745999 114.510001) (width 1) (layer B.Cu) (net 8))
(segment (start 103.556 113.436002) (end 103.556 105.588) (width 1) (layer B.Cu) (net 8))
(segment (start 103.556 105.588) (end 104.826 104.318) (width 1) (layer B.Cu) (net 8))
(segment (start 113.12 103.202081) (end 113.12 102) (width 1) (layer B.Cu) (net 8))
(segment (start 112.004081 104.318) (end 113.12 103.202081) (width 1) (layer B.Cu) (net 8))
(segment (start 104.826 104.318) (end 112.004081 104.318) (width 1) (layer B.Cu) (net 8))
(segment (start 115.66 103.202081) (end 115.66 102) (width 1) (layer B.Cu) (net 9))
(segment (start 101.57 117.69) (end 102.842792 117.69) (width 1) (layer B.Cu) (net 9))
(segment (start 102.842792 117.69) (end 105.05601 115.476782) (width 1) (layer B.Cu) (net 9))
(segment (start 105.05601 115.476782) (end 105.05601 106.50099) (width 1) (layer B.Cu) (net 9))
(segment (start 105.05601 106.50099) (end 105.73899 105.81801) (width 1) (layer B.Cu) (net 9))
(segment (start 105.73899 105.81801) (end 113.044071 105.81801) (width 1) (layer B.Cu) (net 9))
(segment (start 113.044071 105.81801) (end 115.66 103.202081) (width 1) (layer B.Cu) (net 9))
(segment (start 118.2 103.202081) (end 118.2 102) (width 1) (layer F.Cu) (net 10))
(segment (start 122.479 107.481081) (end 118.2 103.202081) (width 1) (layer F.Cu) (net 10))
(segment (start 122.479 117.011792) (end 122.479 107.481081) (width 1) (layer F.Cu) (net 10))
(segment (start 124.43 117.69) (end 123.157208 117.69) (width 1) (layer F.Cu) (net 10))
(segment (start 123.157208 117.69) (end 122.479 117.011792) (width 1) (layer F.Cu) (net 10))
(segment (start 120.74 103.202081) (end 120.74 102) (width 1) (layer F.Cu) (net 11))
(segment (start 126.924 109.386081) (end 120.74 103.202081) (width 1) (layer F.Cu) (net 11))
(segment (start 126.924 118.008002) (end 126.924 109.386081) (width 1) (layer F.Cu) (net 11))
(segment (start 124.43 120.23) (end 124.702002 120.23) (width 1) (layer F.Cu) (net 11))
(segment (start 124.702002 120.23) (end 126.924 118.008002) (width 1) (layer F.Cu) (net 11))
(segment (start 103.706989 126.985803) (end 103.706989 124.688676) (width 1) (layer B.Cu) (net 12))
(segment (start 122.430001 102.849999) (end 123.28 102) (width 1) (layer B.Cu) (net 12))
(segment (start 103.706989 124.688676) (end 104.646665 123.749) (width 1) (layer B.Cu) (net 12))
(segment (start 104.646665 123.749) (end 119.812 123.749) (width 1) (layer B.Cu) (net 12))
(segment (start 119.812 123.749) (end 122.430001 121.130999) (width 1) (layer B.Cu) (net 12))
(segment (start 122.430001 121.130999) (end 122.430001 102.849999) (width 1) (layer B.Cu) (net 12))
(segment (start 102.842792 127.85) (end 103.706989 126.985803) (width 1) (layer B.Cu) (net 12))
(segment (start 101.57 127.85) (end 102.842792 127.85) (width 1) (layer B.Cu) (net 12))
(via (at 153.594 113.81299) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 18))
(segment (start 156.41 118.415) (end 153.594 115.599) (width 0.5) (layer B.Cu) (net 18))
(segment (start 153.893999 113.512991) (end 153.594 113.81299) (width 0.5) (layer F.Cu) (net 18))
(segment (start 154.61501 112.79198) (end 153.893999 113.512991) (width 0.5) (layer F.Cu) (net 18))
(segment (start 154.61501 104.826) (end 154.61501 112.79198) (width 0.5) (layer F.Cu) (net 18))
(segment (start 157.785 118.415) (end 156.41 118.415) (width 0.5) (layer B.Cu) (net 18))
(segment (start 153.594 114.237254) (end 153.594 113.81299) (width 0.5) (layer B.Cu) (net 18))
(segment (start 153.594 115.599) (end 153.594 114.237254) (width 0.5) (layer B.Cu) (net 18))
(via (at 111.811 122.225) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 19))
(segment (start 112.110999 122.524999) (end 111.811 122.225) (width 1) (layer F.Cu) (net 19))
(segment (start 103.387792 122.225) (end 111.386736 122.225) (width 1) (layer B.Cu) (net 19))
(segment (start 102.842792 122.77) (end 103.387792 122.225) (width 1) (layer B.Cu) (net 19))
(segment (start 139.37 118.669) (end 135.687 122.352) (width 1) (layer F.Cu) (net 19))
(segment (start 101.57 122.77) (end 102.842792 122.77) (width 1) (layer B.Cu) (net 19))
(segment (start 111.386736 122.225) (end 111.811 122.225) (width 1) (layer B.Cu) (net 19))
(segment (start 133.08401 138.92499) (end 128.51099 138.92499) (width 1) (layer F.Cu) (net 19))
(segment (start 151.943 118.669) (end 139.37 118.669) (width 1) (layer F.Cu) (net 19))
(segment (start 135.687 122.352) (end 135.687 136.322) (width 1) (layer F.Cu) (net 19))
(segment (start 135.687 136.322) (end 133.08401 138.92499) (width 1) (layer F.Cu) (net 19))
(segment (start 128.51099 138.92499) (end 112.110999 122.524999) (width 1) (layer F.Cu) (net 19))
(segment (start 155.289584 103.556) (end 153.34 103.556) (width 0.5) (layer B.Cu) (net 20))
(segment (start 155.91001 104.176426) (end 155.289584 103.556) (width 0.5) (layer B.Cu) (net 20))
(segment (start 155.91001 106.275574) (end 155.91001 104.176426) (width 0.5) (layer B.Cu) (net 20))
(segment (start 153.676584 108.509) (end 155.91001 106.275574) (width 0.5) (layer B.Cu) (net 20))
(segment (start 151.943 108.509) (end 153.676584 108.509) (width 0.5) (layer B.Cu) (net 20))
(zone (net 0) (net_name "") (layer F.Cu) (tstamp 5B7AD333) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(keepout (tracks allowed) (vias allowed) (copperpour not_allowed))
(fill (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 103 126) (xy 123 126) (xy 123 102.5) (xy 103 102.5)
)
)
)
(zone (net 0) (net_name "") (layer B.Cu) (tstamp 5B7AD333) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(keepout (tracks allowed) (vias allowed) (copperpour not_allowed))
(fill (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 103 126) (xy 123 126) (xy 123 102.5) (xy 103 102.5)
)
)
)
(zone (net 5) (net_name /GND) (layer F.Cu) (tstamp 5C4704B9) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 100 100) (xy 100 140.005) (xy 136.195 140.005) (xy 136.195 121.59) (xy 160.325 121.59)
(xy 160.325 100)
)
)
(filled_polygon
(pts
(xy 157.021733 100.53592) (xy 156.53592 101.021733) (xy 156.273 101.656478) (xy 156.273 102.343522) (xy 156.53592 102.978267)
(xy 157.021733 103.46408) (xy 157.656478 103.727) (xy 158.343522 103.727) (xy 158.978267 103.46408) (xy 159.46408 102.978267)
(xy 159.578 102.70324) (xy 159.578001 121.463) (xy 138.169818 121.463) (xy 139.836818 119.796) (xy 151.051916 119.796)
(xy 151.134669 119.878753) (xy 151.659152 120.096) (xy 152.226848 120.096) (xy 152.751331 119.878753) (xy 153.152753 119.477331)
(xy 153.37 118.952848) (xy 153.37 118.385152) (xy 153.152753 117.860669) (xy 152.751331 117.459247) (xy 152.226848 117.242)
(xy 151.659152 117.242) (xy 151.134669 117.459247) (xy 151.051916 117.542) (xy 139.480998 117.542) (xy 139.37 117.519921)
(xy 139.259002 117.542) (xy 139.259001 117.542) (xy 138.930267 117.607389) (xy 138.557478 117.856478) (xy 138.4946 117.950582)
(xy 134.968582 121.4766) (xy 134.874478 121.539478) (xy 134.710249 121.785266) (xy 134.631761 121.902732) (xy 134.625389 121.912268)
(xy 134.596313 122.058443) (xy 134.537921 122.352) (xy 134.56 122.462998) (xy 134.560001 135.85518) (xy 132.617192 137.79799)
(xy 128.977808 137.79799) (xy 118.789154 127.609336) (xy 122.883542 127.609336) (xy 122.909161 128.21946) (xy 123.093357 128.664148)
(xy 123.349841 128.750554) (xy 124.250395 127.85) (xy 124.609605 127.85) (xy 125.510159 128.750554) (xy 125.766643 128.664148)
(xy 125.976458 128.090664) (xy 125.950839 127.48054) (xy 125.766643 127.035852) (xy 125.510159 126.949446) (xy 124.609605 127.85)
(xy 124.250395 127.85) (xy 123.349841 126.949446) (xy 123.093357 127.035852) (xy 122.883542 127.609336) (xy 118.789154 127.609336)
(xy 117.306818 126.127) (xy 123 126.127) (xy 123.048601 126.117333) (xy 123.089803 126.089803) (xy 123.096216 126.080205)
(xy 123.135472 126.174976) (xy 123.565024 126.604528) (xy 123.582675 126.611839) (xy 123.529446 126.769841) (xy 124.43 127.670395)
(xy 125.330554 126.769841) (xy 125.277325 126.611839) (xy 125.294976 126.604528) (xy 125.724528 126.174976) (xy 125.957 125.613739)
(xy 125.957 125.006261) (xy 125.724528 124.445024) (xy 125.319504 124.04) (xy 125.724528 123.634976) (xy 125.957 123.073739)
(xy 125.957 122.466261) (xy 125.724528 121.905024) (xy 125.319504 121.5) (xy 125.724528 121.094976) (xy 125.932194 120.593626)
(xy 126.331 120.19482) (xy 126.330999 128.167975) (xy 125.405164 129.09381) (xy 125.299261 129.023047) (xy 125.330554 128.930159)
(xy 124.43 128.029605) (xy 123.529446 128.930159) (xy 123.560739 129.023047) (xy 123.256999 129.225999) (xy 122.8974 129.764177)
(xy 122.771127 130.399) (xy 122.8974 131.033823) (xy 123.16623 131.436154) (xy 127.93405 136.203975) (xy 127.965547 136.251113)
(xy 128.042463 136.436805) (xy 128.184587 136.578929) (xy 128.227239 136.642762) (xy 128.291072 136.685414) (xy 128.433195 136.827537)
(xy 128.618889 136.904454) (xy 128.682722 136.947106) (xy 128.758018 136.962083) (xy 128.943711 137.039) (xy 129.144705 137.039)
(xy 129.22 137.053977) (xy 129.295295 137.039) (xy 129.496289 137.039) (xy 129.681981 136.962084) (xy 129.757279 136.947106)
(xy 129.821114 136.904453) (xy 130.006805 136.827537) (xy 130.148926 136.685416) (xy 130.212762 136.642762) (xy 130.221146 136.630213)
(xy 130.959392 136.630213) (xy 131.028857 136.872397) (xy 131.552302 137.059144) (xy 132.107368 137.031362) (xy 132.491143 136.872397)
(xy 132.560608 136.630213) (xy 131.76 135.829605) (xy 130.959392 136.630213) (xy 130.221146 136.630213) (xy 130.255415 136.578927)
(xy 130.397537 136.436805) (xy 130.474454 136.251112) (xy 130.480188 136.24253) (xy 130.537603 136.381143) (xy 130.779787 136.450608)
(xy 131.580395 135.65) (xy 131.939605 135.65) (xy 132.740213 136.450608) (xy 132.982397 136.381143) (xy 133.169144 135.857698)
(xy 133.141362 135.302632) (xy 132.982397 134.918857) (xy 132.740213 134.849392) (xy 131.939605 135.65) (xy 131.580395 135.65)
(xy 131.566253 135.635858) (xy 131.745858 135.456253) (xy 131.76 135.470395) (xy 132.560608 134.669787) (xy 132.491143 134.427603)
(xy 131.967698 134.240856) (xy 131.412632 134.268638) (xy 131.028857 134.427603) (xy 130.959393 134.669785) (xy 130.844382 134.554774)
(xy 130.767927 134.631229) (xy 130.7526 134.554176) (xy 130.48377 134.151845) (xy 127.009267 130.677343) (xy 128.176417 129.510193)
(xy 128.270521 129.447315) (xy 128.51961 129.074526) (xy 128.584999 128.745792) (xy 128.584999 128.745791) (xy 128.607078 128.634793)
(xy 128.584999 128.523795) (xy 128.584999 126.730416) (xy 128.943711 126.879) (xy 129.496289 126.879) (xy 130.006805 126.667537)
(xy 130.397537 126.276805) (xy 130.49 126.05358) (xy 130.582463 126.276805) (xy 130.973195 126.667537) (xy 131.483711 126.879)
(xy 132.036289 126.879) (xy 132.546805 126.667537) (xy 132.937537 126.276805) (xy 133.149 125.766289) (xy 133.149 125.213711)
(xy 132.937537 124.703195) (xy 132.546805 124.312463) (xy 132.036289 124.101) (xy 131.483711 124.101) (xy 130.973195 124.312463)
(xy 130.582463 124.703195) (xy 130.49 124.92642) (xy 130.397537 124.703195) (xy 130.006805 124.312463) (xy 129.496289 124.101)
(xy 128.943711 124.101) (xy 128.584999 124.249584) (xy 128.584999 120.062155) (xy 130.018421 118.628734) (xy 130.112522 118.565858)
(xy 130.281624 118.312778) (xy 130.36161 118.193071) (xy 130.36161 118.19307) (xy 130.361611 118.193069) (xy 130.427 117.864335)
(xy 130.427 117.864334) (xy 130.449079 117.753336) (xy 130.427 117.642338) (xy 130.427 115.113) (xy 134.750713 115.113)
(xy 134.838181 115.552733) (xy 135.08727 115.925522) (xy 135.460059 116.174611) (xy 135.788793 116.24) (xy 155.318746 116.24)
(xy 155.672165 116.59342) (xy 155.735042 116.687522) (xy 156.107831 116.936611) (xy 156.436565 117.002) (xy 156.436566 117.002)
(xy 156.547564 117.024079) (xy 156.556105 117.02238) (xy 156.457959 117.087959) (xy 156.31938 117.295357) (xy 156.270717 117.54)
(xy 156.270717 119.29) (xy 156.31938 119.534643) (xy 156.457959 119.742041) (xy 156.665357 119.88062) (xy 156.91 119.929283)
(xy 158.66 119.929283) (xy 158.904643 119.88062) (xy 159.112041 119.742041) (xy 159.25062 119.534643) (xy 159.299283 119.29)
(xy 159.299283 117.54) (xy 159.25062 117.295357) (xy 159.112041 117.087959) (xy 158.904643 116.94938) (xy 158.846362 116.937787)
(xy 159.058334 116.725815) (xy 159.287 116.173766) (xy 159.287 115.576234) (xy 159.058334 115.024185) (xy 158.639149 114.605)
(xy 159.058334 114.185815) (xy 159.287 113.633766) (xy 159.287 113.036234) (xy 159.058334 112.484185) (xy 158.639149 112.065)
(xy 159.058334 111.645815) (xy 159.287 111.093766) (xy 159.287 110.496234) (xy 159.058334 109.944185) (xy 158.635815 109.521666)
(xy 158.083766 109.293) (xy 157.486234 109.293) (xy 156.934185 109.521666) (xy 156.511666 109.944185) (xy 156.283 110.496234)
(xy 156.283 111.093766) (xy 156.511666 111.645815) (xy 156.930851 112.065) (xy 156.511666 112.484185) (xy 156.283 113.036234)
(xy 156.283 113.633766) (xy 156.511666 114.185815) (xy 156.930851 114.605) (xy 156.901117 114.634734) (xy 156.660964 114.394582)
(xy 156.598086 114.300478) (xy 156.225297 114.051389) (xy 155.896563 113.986) (xy 155.896562 113.986) (xy 155.785564 113.963921)
(xy 155.674566 113.986) (xy 154.661254 113.986) (xy 155.174067 113.473188) (xy 155.247291 113.424261) (xy 155.338414 113.287887)
(xy 155.441126 113.134169) (xy 155.460606 113.036234) (xy 155.49201 112.878355) (xy 155.49201 112.878352) (xy 155.50919 112.79198)
(xy 155.49201 112.705608) (xy 155.49201 106.52388) (xy 155.531496 106.497496) (xy 155.729687 106.200881) (xy 155.799283 105.851)
(xy 155.799283 104.601) (xy 155.729687 104.251119) (xy 155.531496 103.954504) (xy 155.234881 103.756313) (xy 154.885 103.686717)
(xy 154.529283 103.686717) (xy 154.529283 102.531) (xy 154.459687 102.181119) (xy 154.261496 101.884504) (xy 153.964881 101.686313)
(xy 153.615 101.616717) (xy 153.065 101.616717) (xy 152.715119 101.686313) (xy 152.418504 101.884504) (xy 152.220313 102.181119)
(xy 152.150717 102.531) (xy 152.150717 103.781) (xy 152.197 104.013679) (xy 152.197 105.099) (xy 153.09625 105.099)
(xy 153.255 104.94025) (xy 153.255 104.695283) (xy 153.420717 104.695283) (xy 153.420717 105.851) (xy 153.490313 106.200881)
(xy 153.688504 106.497496) (xy 153.73801 106.530575) (xy 153.738011 112.428714) (xy 153.334946 112.83178) (xy 153.334943 112.831782)
(xy 153.189609 112.977117) (xy 153.068897 113.027117) (xy 152.808127 113.287887) (xy 152.667 113.628598) (xy 152.667 113.986)
(xy 135.788793 113.986) (xy 135.460059 114.051389) (xy 135.08727 114.300478) (xy 134.838181 114.673267) (xy 134.750713 115.113)
(xy 130.427 115.113) (xy 130.427 111.628987) (xy 130.802229 111.253758) (xy 131.072 110.602473) (xy 131.072 109.897527)
(xy 130.802229 109.246242) (xy 130.303758 108.747771) (xy 129.727314 108.509) (xy 150.488044 108.509) (xy 150.598796 109.065788)
(xy 150.914191 109.537809) (xy 151.386212 109.853204) (xy 151.802456 109.936) (xy 152.083544 109.936) (xy 152.499788 109.853204)
(xy 152.971809 109.537809) (xy 153.287204 109.065788) (xy 153.397956 108.509) (xy 153.287204 107.952212) (xy 152.971809 107.480191)
(xy 152.499788 107.164796) (xy 152.083544 107.082) (xy 151.802456 107.082) (xy 151.386212 107.164796) (xy 150.914191 107.480191)
(xy 150.598796 107.952212) (xy 150.488044 108.509) (xy 129.727314 108.509) (xy 129.652473 108.478) (xy 128.947527 108.478)
(xy 128.296242 108.747771) (xy 128.004202 109.039811) (xy 127.985611 108.946348) (xy 127.736522 108.573559) (xy 127.642418 108.510681)
(xy 125.559146 106.427409) (xy 128.222196 106.427409) (xy 128.338605 106.709312) (xy 129.000856 106.960049) (xy 129.708649 106.938267)
(xy 130.261395 106.709312) (xy 130.377804 106.427409) (xy 129.3 105.349605) (xy 128.222196 106.427409) (xy 125.559146 106.427409)
(xy 124.002593 104.870856) (xy 127.509951 104.870856) (xy 127.531733 105.578649) (xy 127.760688 106.131395) (xy 128.042591 106.247804)
(xy 129.120395 105.17) (xy 129.479605 105.17) (xy 130.557409 106.247804) (xy 130.839312 106.131395) (xy 131.090049 105.469144)
(xy 131.069996 104.817527) (xy 145.228 104.817527) (xy 145.228 105.522473) (xy 145.497771 106.173758) (xy 145.996242 106.672229)
(xy 146.647527 106.942) (xy 147.352473 106.942) (xy 148.003758 106.672229) (xy 148.502229 106.173758) (xy 148.772 105.522473)
(xy 148.772 105.51175) (xy 150.885 105.51175) (xy 150.885 106.25231) (xy 150.981673 106.485699) (xy 151.160302 106.664327)
(xy 151.393691 106.761) (xy 151.78425 106.761) (xy 151.943 106.60225) (xy 151.943 105.353) (xy 152.197 105.353)
(xy 152.197 106.60225) (xy 152.35575 106.761) (xy 152.746309 106.761) (xy 152.979698 106.664327) (xy 153.158327 106.485699)
(xy 153.255 106.25231) (xy 153.255 105.51175) (xy 153.09625 105.353) (xy 152.197 105.353) (xy 151.943 105.353)
(xy 151.04375 105.353) (xy 150.885 105.51175) (xy 148.772 105.51175) (xy 148.772 104.817527) (xy 148.516084 104.19969)
(xy 150.885 104.19969) (xy 150.885 104.94025) (xy 151.04375 105.099) (xy 151.943 105.099) (xy 151.943 103.84975)
(xy 151.78425 103.691) (xy 151.393691 103.691) (xy 151.160302 103.787673) (xy 150.981673 103.966301) (xy 150.885 104.19969)
(xy 148.516084 104.19969) (xy 148.502229 104.166242) (xy 148.003758 103.667771) (xy 147.352473 103.398) (xy 146.647527 103.398)
(xy 145.996242 103.667771) (xy 145.497771 104.166242) (xy 145.228 104.817527) (xy 131.069996 104.817527) (xy 131.068267 104.761351)
(xy 130.839312 104.208605) (xy 130.557409 104.092196) (xy 129.479605 105.17) (xy 129.120395 105.17) (xy 128.042591 104.092196)
(xy 127.760688 104.208605) (xy 127.509951 104.870856) (xy 124.002593 104.870856) (xy 123.127 103.995263) (xy 123.127 103.912591)
(xy 128.222196 103.912591) (xy 129.3 104.990395) (xy 130.377804 103.912591) (xy 130.261395 103.630688) (xy 129.599144 103.379951)
(xy 128.891351 103.401733) (xy 128.338605 103.630688) (xy 128.222196 103.912591) (xy 123.127 103.912591) (xy 123.127 103.475502)
(xy 123.134529 103.477) (xy 123.425471 103.477) (xy 123.856297 103.391303) (xy 124.344858 103.064858) (xy 124.671303 102.576297)
(xy 124.785936 102) (xy 124.671303 101.423703) (xy 124.344858 100.935142) (xy 123.856297 100.608697) (xy 123.425471 100.523)
(xy 123.134529 100.523) (xy 122.703703 100.608697) (xy 122.215142 100.935142) (xy 122.01 101.24216) (xy 121.804858 100.935142)
(xy 121.316297 100.608697) (xy 120.885471 100.523) (xy 120.594529 100.523) (xy 120.163703 100.608697) (xy 119.675142 100.935142)
(xy 119.47 101.24216) (xy 119.264858 100.935142) (xy 118.776297 100.608697) (xy 118.345471 100.523) (xy 118.054529 100.523)
(xy 117.623703 100.608697) (xy 117.135142 100.935142) (xy 116.93 101.24216) (xy 116.724858 100.935142) (xy 116.236297 100.608697)
(xy 115.805471 100.523) (xy 115.514529 100.523) (xy 115.083703 100.608697) (xy 114.595142 100.935142) (xy 114.39 101.24216)
(xy 114.184858 100.935142) (xy 113.696297 100.608697) (xy 113.265471 100.523) (xy 112.974529 100.523) (xy 112.543703 100.608697)
(xy 112.055142 100.935142) (xy 111.85 101.24216) (xy 111.644858 100.935142) (xy 111.156297 100.608697) (xy 110.725471 100.523)
(xy 110.434529 100.523) (xy 110.003703 100.608697) (xy 109.515142 100.935142) (xy 109.31 101.24216) (xy 109.104858 100.935142)
(xy 108.616297 100.608697) (xy 108.185471 100.523) (xy 107.894529 100.523) (xy 107.463703 100.608697) (xy 106.975142 100.935142)
(xy 106.958585 100.959921) (xy 106.888327 100.790302) (xy 106.709699 100.611673) (xy 106.47631 100.515) (xy 105.78575 100.515)
(xy 105.627 100.67375) (xy 105.627 101.873) (xy 105.647 101.873) (xy 105.647 102.127) (xy 105.627 102.127)
(xy 105.627 102.147) (xy 105.373 102.147) (xy 105.373 102.127) (xy 104.17375 102.127) (xy 104.015 102.28575)
(xy 104.015 102.373) (xy 103.67544 102.373) (xy 103.727 102.248522) (xy 103.727 101.561478) (xy 103.504242 101.023691)
(xy 104.015 101.023691) (xy 104.015 101.71425) (xy 104.17375 101.873) (xy 105.373 101.873) (xy 105.373 100.67375)
(xy 105.21425 100.515) (xy 104.52369 100.515) (xy 104.290301 100.611673) (xy 104.111673 100.790302) (xy 104.015 101.023691)
(xy 103.504242 101.023691) (xy 103.46408 100.926733) (xy 102.978267 100.44092) (xy 102.93259 100.422) (xy 157.29676 100.422)
)
)
)
(zone (net 2) (net_name /+5V) (layer B.Cu) (tstamp 5C4704B6) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 100 100) (xy 100 140.005) (xy 136.195 140.005) (xy 136.195 121.59) (xy 160.325 121.59)
(xy 160.325 100)
)
)
(filled_polygon
(pts
(xy 136.068 139.578) (xy 118.541561 139.578) (xy 118.281973 139.526365) (xy 118.097139 139.402863) (xy 117.973635 139.218027)
(xy 117.913891 138.917672) (xy 117.837771 138.534989) (xy 117.793125 138.427204) (xy 117.77476 138.382866) (xy 117.557987 138.058443)
(xy 117.441558 137.942013) (xy 117.441555 137.942012) (xy 117.117133 137.72524) (xy 116.965011 137.662229) (xy 116.582328 137.586109)
(xy 116.541561 137.578) (xy 107.958439 137.578) (xy 107.917308 137.586181) (xy 107.915566 137.586183) (xy 107.534629 137.6623)
(xy 107.458578 137.693879) (xy 107.382866 137.72524) (xy 107.058443 137.942013) (xy 106.942013 138.058442) (xy 106.942013 138.058443)
(xy 106.725241 138.382866) (xy 106.72524 138.382867) (xy 106.662229 138.534989) (xy 106.586109 138.917672) (xy 106.526365 139.218027)
(xy 106.402863 139.402861) (xy 106.218027 139.526365) (xy 105.958439 139.578) (xy 102.70324 139.578) (xy 102.978267 139.46408)
(xy 103.46408 138.978267) (xy 103.727 138.343522) (xy 103.727 137.656478) (xy 103.46408 137.021733) (xy 103.07256 136.630213)
(xy 128.419392 136.630213) (xy 128.488857 136.872397) (xy 129.012302 137.059144) (xy 129.567368 137.031362) (xy 129.951143 136.872397)
(xy 130.020608 136.630213) (xy 129.22 135.829605) (xy 128.419392 136.630213) (xy 103.07256 136.630213) (xy 102.978267 136.53592)
(xy 102.343522 136.273) (xy 101.656478 136.273) (xy 101.021733 136.53592) (xy 100.53592 137.021733) (xy 100.422 137.29676)
(xy 100.422 135.442302) (xy 127.810856 135.442302) (xy 127.838638 135.997368) (xy 127.997603 136.381143) (xy 128.239787 136.450608)
(xy 129.040395 135.65) (xy 129.399605 135.65) (xy 130.200213 136.450608) (xy 130.442397 136.381143) (xy 130.496543 136.229375)
(xy 130.582463 136.436805) (xy 130.973195 136.827537) (xy 131.483711 137.039) (xy 132.036289 137.039) (xy 132.546805 136.827537)
(xy 132.937537 136.436805) (xy 133.149 135.926289) (xy 133.149 135.373711) (xy 132.937537 134.863195) (xy 132.546805 134.472463)
(xy 132.036289 134.261) (xy 131.483711 134.261) (xy 130.973195 134.472463) (xy 130.582463 134.863195) (xy 130.500902 135.0601)
(xy 130.442397 134.918857) (xy 130.200213 134.849392) (xy 129.399605 135.65) (xy 129.040395 135.65) (xy 128.239787 134.849392)
(xy 127.997603 134.918857) (xy 127.810856 135.442302) (xy 100.422 135.442302) (xy 100.422 131.401504) (xy 100.705024 131.684528)
(xy 101.266261 131.917) (xy 101.873739 131.917) (xy 102.434976 131.684528) (xy 102.864528 131.254976) (xy 103.097 130.693739)
(xy 103.097 130.086261) (xy 102.864528 129.525024) (xy 102.459504 129.12) (xy 102.602504 128.977) (xy 102.731794 128.977)
(xy 102.842792 128.999079) (xy 102.95379 128.977) (xy 102.953791 128.977) (xy 103.282525 128.911611) (xy 103.655314 128.662522)
(xy 103.718192 128.568418) (xy 104.42541 127.861201) (xy 104.519511 127.798325) (xy 104.7686 127.425536) (xy 104.833989 127.096802)
(xy 104.833989 127.096801) (xy 104.856068 126.985804) (xy 104.833989 126.874806) (xy 104.833989 126.530807) (xy 112.6766 134.373418)
(xy 112.739478 134.467522) (xy 113.112267 134.716611) (xy 113.441001 134.782) (xy 113.441002 134.782) (xy 113.552 134.804079)
(xy 113.662998 134.782) (xy 126.813002 134.782) (xy 126.924 134.804079) (xy 127.034998 134.782) (xy 127.034999 134.782)
(xy 127.363733 134.716611) (xy 127.43381 134.669787) (xy 128.419392 134.669787) (xy 129.22 135.470395) (xy 130.020608 134.669787)
(xy 129.951143 134.427603) (xy 129.427698 134.240856) (xy 128.872632 134.268638) (xy 128.488857 134.427603) (xy 128.419392 134.669787)
(xy 127.43381 134.669787) (xy 127.736522 134.467522) (xy 127.7994 134.373418) (xy 136.068 126.104818)
)
)
(filled_polygon
(pts
(xy 157.021733 100.53592) (xy 156.53592 101.021733) (xy 156.273 101.656478) (xy 156.273 102.343522) (xy 156.53592 102.978267)
(xy 157.021733 103.46408) (xy 157.656478 103.727) (xy 158.343522 103.727) (xy 158.978267 103.46408) (xy 159.46408 102.978267)
(xy 159.578 102.70324) (xy 159.578001 121.463) (xy 140.709819 121.463) (xy 143.787667 118.385152) (xy 150.516 118.385152)
(xy 150.516 118.952848) (xy 150.733247 119.477331) (xy 151.134669 119.878753) (xy 151.659152 120.096) (xy 152.226848 120.096)
(xy 152.751331 119.878753) (xy 153.152753 119.477331) (xy 153.37 118.952848) (xy 153.37 118.385152) (xy 153.152753 117.860669)
(xy 152.751331 117.459247) (xy 152.226848 117.242) (xy 151.659152 117.242) (xy 151.134669 117.459247) (xy 150.733247 117.860669)
(xy 150.516 118.385152) (xy 143.787667 118.385152) (xy 148.585818 113.587001) (xy 152.68423 113.587001) (xy 152.667 113.628598)
(xy 152.667 113.997382) (xy 152.717 114.118093) (xy 152.717 114.323628) (xy 152.717001 114.323632) (xy 152.717 115.512629)
(xy 152.69982 115.599) (xy 152.717 115.68537) (xy 152.717 115.685374) (xy 152.767884 115.941187) (xy 152.961719 116.231281)
(xy 153.034946 116.28021) (xy 155.728792 118.974057) (xy 155.777719 119.047281) (xy 155.850943 119.096208) (xy 156.06781 119.241115)
(xy 156.067811 119.241115) (xy 156.067812 119.241116) (xy 156.270717 119.281476) (xy 156.270717 119.29) (xy 156.31938 119.534643)
(xy 156.457959 119.742041) (xy 156.665357 119.88062) (xy 156.91 119.929283) (xy 158.66 119.929283) (xy 158.904643 119.88062)
(xy 159.112041 119.742041) (xy 159.25062 119.534643) (xy 159.299283 119.29) (xy 159.299283 117.54) (xy 159.25062 117.295357)
(xy 159.112041 117.087959) (xy 158.904643 116.94938) (xy 158.846362 116.937787) (xy 159.058334 116.725815) (xy 159.287 116.173766)
(xy 159.287 115.576234) (xy 159.058334 115.024185) (xy 158.639149 114.605) (xy 159.058334 114.185815) (xy 159.287 113.633766)
(xy 159.287 113.036234) (xy 159.058334 112.484185) (xy 158.635815 112.061666) (xy 158.604546 112.048714) (xy 158.667455 111.85706)
(xy 157.785 110.974605) (xy 157.770858 110.988748) (xy 157.591253 110.809143) (xy 157.605395 110.795) (xy 157.964605 110.795)
(xy 158.84706 111.677455) (xy 159.100953 111.594116) (xy 159.30659 111.029694) (xy 159.280579 110.429542) (xy 159.100953 109.995884)
(xy 158.84706 109.912545) (xy 157.964605 110.795) (xy 157.605395 110.795) (xy 156.72294 109.912545) (xy 156.469047 109.995884)
(xy 156.26341 110.560306) (xy 156.289421 111.160458) (xy 156.36089 111.333001) (xy 148.229996 111.333001) (xy 148.118998 111.310922)
(xy 148.008 111.333001) (xy 147.679266 111.39839) (xy 147.679265 111.398391) (xy 147.679264 111.398391) (xy 147.559557 111.478377)
(xy 147.306477 111.647479) (xy 147.243601 111.74158) (xy 137.522181 121.463) (xy 136.195 121.463) (xy 136.146399 121.472667)
(xy 136.105197 121.500197) (xy 136.077667 121.541399) (xy 136.068 121.59) (xy 136.068 122.917181) (xy 133.099578 125.885603)
(xy 133.149 125.766289) (xy 133.149 125.213711) (xy 132.937537 124.703195) (xy 132.546805 124.312463) (xy 132.036289 124.101)
(xy 131.483711 124.101) (xy 130.973195 124.312463) (xy 130.582463 124.703195) (xy 130.49 124.92642) (xy 130.397537 124.703195)
(xy 130.006805 124.312463) (xy 129.496289 124.101) (xy 128.943711 124.101) (xy 128.433195 124.312463) (xy 128.042463 124.703195)
(xy 127.831 125.213711) (xy 127.831 125.766289) (xy 128.042463 126.276805) (xy 128.433195 126.667537) (xy 128.943711 126.879)
(xy 129.496289 126.879) (xy 130.006805 126.667537) (xy 130.397537 126.276805) (xy 130.49 126.05358) (xy 130.582463 126.276805)
(xy 130.973195 126.667537) (xy 131.483711 126.879) (xy 132.036289 126.879) (xy 132.155603 126.829578) (xy 126.457182 132.528)
(xy 114.018818 132.528) (xy 112.960977 131.470159) (xy 123.529446 131.470159) (xy 123.615852 131.726643) (xy 124.189336 131.936458)
(xy 124.79946 131.910839) (xy 125.244148 131.726643) (xy 125.330554 131.470159) (xy 124.43 130.569605) (xy 123.529446 131.470159)
(xy 112.960977 131.470159) (xy 111.640154 130.149336) (xy 122.883542 130.149336) (xy 122.909161 130.75946) (xy 123.093357 131.204148)
(xy 123.349841 131.290554) (xy 124.250395 130.39) (xy 124.609605 130.39) (xy 125.510159 131.290554) (xy 125.766643 131.204148)
(xy 125.976458 130.630664) (xy 125.950839 130.02054) (xy 125.766643 129.575852) (xy 125.510159 129.489446) (xy 124.609605 130.39)
(xy 124.250395 130.39) (xy 123.349841 129.489446) (xy 123.093357 129.575852) (xy 122.883542 130.149336) (xy 111.640154 130.149336)
(xy 107.617818 126.127) (xy 123 126.127) (xy 123.048601 126.117333) (xy 123.089803 126.089803) (xy 123.096216 126.080205)
(xy 123.135472 126.174976) (xy 123.540496 126.58) (xy 123.135472 126.985024) (xy 122.903 127.546261) (xy 122.903 128.153739)
(xy 123.135472 128.714976) (xy 123.565024 129.144528) (xy 123.582675 129.151839) (xy 123.529446 129.309841) (xy 124.43 130.210395)
(xy 125.330554 129.309841) (xy 125.277325 129.151839) (xy 125.294976 129.144528) (xy 125.724528 128.714976) (xy 125.957 128.153739)
(xy 125.957 127.546261) (xy 125.724528 126.985024) (xy 125.319504 126.58) (xy 125.462504 126.437) (xy 125.633002 126.437)
(xy 125.744 126.459079) (xy 125.854998 126.437) (xy 125.854999 126.437) (xy 126.183733 126.371611) (xy 126.556522 126.122522)
(xy 126.6194 126.028418) (xy 136.816397 115.831421) (xy 137.00261 115.552734) (xy 137.090079 115.113) (xy 137.00261 114.673266)
(xy 136.753521 114.300479) (xy 136.380734 114.05139) (xy 135.941 113.963921) (xy 135.501266 114.05139) (xy 135.222579 114.237603)
(xy 125.369843 124.090339) (xy 125.319504 124.04) (xy 125.724528 123.634976) (xy 125.957 123.073739) (xy 125.957 122.466261)
(xy 125.724528 121.905024) (xy 125.319504 121.5) (xy 125.724528 121.094976) (xy 125.957 120.533739) (xy 125.957 119.926261)
(xy 125.724528 119.365024) (xy 125.319504 118.96) (xy 125.724528 118.554976) (xy 125.957 117.993739) (xy 125.957 117.386261)
(xy 125.724528 116.825024) (xy 125.319504 116.42) (xy 125.724528 116.014976) (xy 125.957 115.453739) (xy 125.957 114.846261)
(xy 125.724528 114.285024) (xy 125.319504 113.88) (xy 125.724528 113.474976) (xy 125.957 112.913739) (xy 125.957 112.306261)
(xy 125.724528 111.745024) (xy 125.486913 111.507409) (xy 128.222196 111.507409) (xy 128.338605 111.789312) (xy 129.000856 112.040049)
(xy 129.708649 112.018267) (xy 130.261395 111.789312) (xy 130.377804 111.507409) (xy 129.3 110.429605) (xy 128.222196 111.507409)
(xy 125.486913 111.507409) (xy 125.294976 111.315472) (xy 124.733739 111.083) (xy 124.126261 111.083) (xy 123.565024 111.315472)
(xy 123.557001 111.323495) (xy 123.557001 109.950856) (xy 127.509951 109.950856) (xy 127.531733 110.658649) (xy 127.760688 111.211395)
(xy 128.042591 111.327804) (xy 129.120395 110.25) (xy 129.479605 110.25) (xy 130.557409 111.327804) (xy 130.839312 111.211395)
(xy 131.090049 110.549144) (xy 131.068267 109.841351) (xy 130.839312 109.288605) (xy 130.557409 109.172196) (xy 129.479605 110.25)
(xy 129.120395 110.25) (xy 128.042591 109.172196) (xy 127.760688 109.288605) (xy 127.509951 109.950856) (xy 123.557001 109.950856)
(xy 123.557001 108.992591) (xy 128.222196 108.992591) (xy 129.3 110.070395) (xy 130.377804 108.992591) (xy 130.261395 108.710688)
(xy 129.728694 108.509) (xy 150.488044 108.509) (xy 150.598796 109.065788) (xy 150.914191 109.537809) (xy 151.386212 109.853204)
(xy 151.802456 109.936) (xy 152.083544 109.936) (xy 152.499788 109.853204) (xy 152.679775 109.73294) (xy 156.902545 109.73294)
(xy 157.785 110.615395) (xy 158.667455 109.73294) (xy 158.584116 109.479047) (xy 158.019694 109.27341) (xy 157.419542 109.299421)
(xy 156.985884 109.479047) (xy 156.902545 109.73294) (xy 152.679775 109.73294) (xy 152.971809 109.537809) (xy 153.073245 109.386)
(xy 153.590214 109.386) (xy 153.676584 109.40318) (xy 153.762954 109.386) (xy 153.762959 109.386) (xy 154.018772 109.335116)
(xy 154.308865 109.141281) (xy 154.357794 109.068054) (xy 156.469067 106.956782) (xy 156.542291 106.907855) (xy 156.637555 106.765283)
(xy 156.736125 106.617764) (xy 156.736125 106.617763) (xy 156.736126 106.617762) (xy 156.78701 106.361949) (xy 156.78701 106.361945)
(xy 156.80419 106.275575) (xy 156.78701 106.189205) (xy 156.78701 104.262796) (xy 156.80419 104.176426) (xy 156.78701 104.090056)
(xy 156.78701 104.090051) (xy 156.736126 103.834238) (xy 156.670071 103.73538) (xy 156.591219 103.617369) (xy 156.591216 103.617366)
(xy 156.542291 103.544145) (xy 156.469069 103.495219) (xy 155.970793 102.996945) (xy 155.921865 102.923719) (xy 155.631772 102.729884)
(xy 155.375959 102.679) (xy 155.375954 102.679) (xy 155.289584 102.66182) (xy 155.203214 102.679) (xy 154.529283 102.679)
(xy 154.529283 102.531) (xy 154.459687 102.181119) (xy 154.261496 101.884504) (xy 153.964881 101.686313) (xy 153.615 101.616717)
(xy 153.065 101.616717) (xy 152.715119 101.686313) (xy 152.418504 101.884504) (xy 152.220313 102.181119) (xy 152.150717 102.531)
(xy 152.150717 103.686717) (xy 151.52 103.686717) (xy 151.275357 103.73538) (xy 151.067959 103.873959) (xy 150.92938 104.081357)
(xy 150.880717 104.326) (xy 150.880717 106.126) (xy 150.92938 106.370643) (xy 151.067959 106.578041) (xy 151.275357 106.71662)
(xy 151.52 106.765283) (xy 152.62 106.765283) (xy 152.864643 106.71662) (xy 153.072041 106.578041) (xy 153.21062 106.370643)
(xy 153.259283 106.126) (xy 153.259283 104.695283) (xy 153.420717 104.695283) (xy 153.420717 105.851) (xy 153.490313 106.200881)
(xy 153.688504 106.497496) (xy 153.985119 106.695687) (xy 154.205747 106.739573) (xy 153.31332 107.632) (xy 153.073245 107.632)
(xy 152.971809 107.480191) (xy 152.499788 107.164796) (xy 152.083544 107.082) (xy 151.802456 107.082) (xy 151.386212 107.164796)
(xy 150.914191 107.480191) (xy 150.598796 107.952212) (xy 150.488044 108.509) (xy 129.728694 108.509) (xy 129.599144 108.459951)
(xy 128.891351 108.481733) (xy 128.338605 108.710688) (xy 128.222196 108.992591) (xy 123.557001 108.992591) (xy 123.557001 104.817527)
(xy 127.528 104.817527) (xy 127.528 105.522473) (xy 127.797771 106.173758) (xy 128.296242 106.672229) (xy 128.947527 106.942)
(xy 129.652473 106.942) (xy 130.303758 106.672229) (xy 130.802229 106.173758) (xy 131.072 105.522473) (xy 131.072 104.817527)
(xy 145.228 104.817527) (xy 145.228 105.522473) (xy 145.497771 106.173758) (xy 145.996242 106.672229) (xy 146.647527 106.942)
(xy 147.352473 106.942) (xy 148.003758 106.672229) (xy 148.502229 106.173758) (xy 148.772 105.522473) (xy 148.772 104.817527)
(xy 148.502229 104.166242) (xy 148.003758 103.667771) (xy 147.352473 103.398) (xy 146.647527 103.398) (xy 145.996242 103.667771)
(xy 145.497771 104.166242) (xy 145.228 104.817527) (xy 131.072 104.817527) (xy 130.802229 104.166242) (xy 130.303758 103.667771)
(xy 129.652473 103.398) (xy 128.947527 103.398) (xy 128.296242 103.667771) (xy 127.797771 104.166242) (xy 127.528 104.817527)
(xy 123.557001 104.817527) (xy 123.557001 103.450837) (xy 123.856297 103.391303) (xy 124.344858 103.064858) (xy 124.671303 102.576297)
(xy 124.785936 102) (xy 124.671303 101.423703) (xy 124.344858 100.935142) (xy 123.856297 100.608697) (xy 123.425471 100.523)
(xy 123.134529 100.523) (xy 122.703703 100.608697) (xy 122.215142 100.935142) (xy 122.01 101.24216) (xy 121.804858 100.935142)
(xy 121.316297 100.608697) (xy 120.885471 100.523) (xy 120.594529 100.523) (xy 120.163703 100.608697) (xy 119.675142 100.935142)
(xy 119.47 101.24216) (xy 119.264858 100.935142) (xy 118.776297 100.608697) (xy 118.345471 100.523) (xy 118.054529 100.523)
(xy 117.623703 100.608697) (xy 117.135142 100.935142) (xy 116.93 101.24216) (xy 116.724858 100.935142) (xy 116.236297 100.608697)
(xy 115.805471 100.523) (xy 115.514529 100.523) (xy 115.083703 100.608697) (xy 114.595142 100.935142) (xy 114.39 101.24216)
(xy 114.184858 100.935142) (xy 113.696297 100.608697) (xy 113.265471 100.523) (xy 112.974529 100.523) (xy 112.543703 100.608697)
(xy 112.055142 100.935142) (xy 111.85 101.24216) (xy 111.644858 100.935142) (xy 111.156297 100.608697) (xy 110.725471 100.523)
(xy 110.434529 100.523) (xy 110.003703 100.608697) (xy 109.515142 100.935142) (xy 109.300128 101.256934) (xy 109.235183 101.118642)
(xy 108.806924 100.728355) (xy 108.39689 100.558524) (xy 108.167 100.679845) (xy 108.167 101.873) (xy 108.187 101.873)
(xy 108.187 102.127) (xy 108.167 102.127) (xy 108.167 102.147) (xy 107.913 102.147) (xy 107.913 102.127)
(xy 107.893 102.127) (xy 107.893 101.873) (xy 107.913 101.873) (xy 107.913 100.679845) (xy 107.68311 100.558524)
(xy 107.273076 100.728355) (xy 106.961833 101.012001) (xy 106.94062 100.905357) (xy 106.802041 100.697959) (xy 106.594643 100.55938)
(xy 106.35 100.510717) (xy 104.65 100.510717) (xy 104.405357 100.55938) (xy 104.197959 100.697959) (xy 104.05938 100.905357)
(xy 104.010717 101.15) (xy 104.010717 102.373) (xy 103.67544 102.373) (xy 103.727 102.248522) (xy 103.727 101.561478)
(xy 103.46408 100.926733) (xy 102.978267 100.44092) (xy 102.93259 100.422) (xy 157.29676 100.422)
)
)
)
(zone (net 1) (net_name /AC_L) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.18 134.29) (xy 143.18 139.751) (xy 159.309 139.751) (xy 159.817 139.243) (xy 159.817 134.29)
)
)
(filled_polygon
(pts
(xy 145.742589 134.572197) (xy 145.460688 134.688605) (xy 145.209951 135.350856) (xy 145.231733 136.058649) (xy 145.460688 136.611395)
(xy 145.742591 136.727804) (xy 146.820395 135.65) (xy 146.806253 135.635858) (xy 146.985858 135.456253) (xy 147 135.470395)
(xy 147.014143 135.456253) (xy 147.193748 135.635858) (xy 147.179605 135.65) (xy 148.257409 136.727804) (xy 148.539312 136.611395)
(xy 148.790049 135.949144) (xy 148.789637 135.93575) (xy 153.365 135.93575) (xy 153.365 137.276309) (xy 153.461673 137.509698)
(xy 153.640301 137.688327) (xy 153.87369 137.785) (xy 155.21425 137.785) (xy 155.373 137.62625) (xy 155.373 135.777)
(xy 155.627 135.777) (xy 155.627 137.62625) (xy 155.78575 137.785) (xy 157.12631 137.785) (xy 157.359699 137.688327)
(xy 157.538327 137.509698) (xy 157.635 137.276309) (xy 157.635 135.93575) (xy 157.47625 135.777) (xy 155.627 135.777)
(xy 155.373 135.777) (xy 153.52375 135.777) (xy 153.365 135.93575) (xy 148.789637 135.93575) (xy 148.768267 135.241351)
(xy 148.539312 134.688605) (xy 148.257411 134.572197) (xy 148.307608 134.522) (xy 153.365 134.522) (xy 153.365 135.36425)
(xy 153.52375 135.523) (xy 155.373 135.523) (xy 155.373 135.503) (xy 155.627 135.503) (xy 155.627 135.523)
(xy 157.47625 135.523) (xy 157.635 135.36425) (xy 157.635 134.522) (xy 159.578 134.522) (xy 159.578001 138.958434)
(xy 159.526365 139.218027) (xy 159.402863 139.402861) (xy 159.218027 139.526365) (xy 158.958439 139.578) (xy 143.307 139.578)
(xy 143.307 136.907409) (xy 145.922196 136.907409) (xy 146.038605 137.189312) (xy 146.700856 137.440049) (xy 147.408649 137.418267)
(xy 147.961395 137.189312) (xy 148.077804 136.907409) (xy 147 135.829605) (xy 145.922196 136.907409) (xy 143.307 136.907409)
(xy 143.307 134.522) (xy 145.692392 134.522)
)
)
)
(zone (net 1) (net_name /AC_L) (layer B.Cu) (tstamp 5C4B8DDE) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.18 134.29) (xy 143.18 139.751) (xy 159.309 139.751) (xy 159.817 139.243) (xy 159.817 134.29)
)
)
(filled_polygon
(pts
(xy 145.742589 134.572197) (xy 145.460688 134.688605) (xy 145.209951 135.350856) (xy 145.231733 136.058649) (xy 145.460688 136.611395)
(xy 145.742591 136.727804) (xy 146.820395 135.65) (xy 146.806253 135.635858) (xy 146.985858 135.456253) (xy 147 135.470395)
(xy 147.014143 135.456253) (xy 147.193748 135.635858) (xy 147.179605 135.65) (xy 148.257409 136.727804) (xy 148.539312 136.611395)
(xy 148.790049 135.949144) (xy 148.789637 135.93575) (xy 153.365 135.93575) (xy 153.365 137.276309) (xy 153.461673 137.509698)
(xy 153.640301 137.688327) (xy 153.87369 137.785) (xy 155.21425 137.785) (xy 155.373 137.62625) (xy 155.373 135.777)
(xy 155.627 135.777) (xy 155.627 137.62625) (xy 155.78575 137.785) (xy 157.12631 137.785) (xy 157.359699 137.688327)
(xy 157.538327 137.509698) (xy 157.635 137.276309) (xy 157.635 135.93575) (xy 157.47625 135.777) (xy 155.627 135.777)
(xy 155.373 135.777) (xy 153.52375 135.777) (xy 153.365 135.93575) (xy 148.789637 135.93575) (xy 148.768267 135.241351)
(xy 148.539312 134.688605) (xy 148.257411 134.572197) (xy 148.307608 134.522) (xy 153.365 134.522) (xy 153.365 135.36425)
(xy 153.52375 135.523) (xy 155.373 135.523) (xy 155.373 135.503) (xy 155.627 135.503) (xy 155.627 135.523)
(xy 157.47625 135.523) (xy 157.635 135.36425) (xy 157.635 134.522) (xy 159.578 134.522) (xy 159.578001 138.958434)
(xy 159.526365 139.218027) (xy 159.402863 139.402861) (xy 159.218027 139.526365) (xy 158.958439 139.578) (xy 143.307 139.578)
(xy 143.307 136.907409) (xy 145.922196 136.907409) (xy 146.038605 137.189312) (xy 146.700856 137.440049) (xy 147.408649 137.418267)
(xy 147.961395 137.189312) (xy 148.077804 136.907409) (xy 147 135.829605) (xy 145.922196 136.907409) (xy 143.307 136.907409)
(xy 143.307 134.522) (xy 145.692392 134.522)
)
)
)
(zone (net 6) (net_name /AC_N) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.18 131.877) (xy 143.18 124.257) (xy 159.817 124.257) (xy 159.817 131.877)
)
)
(filled_polygon
(pts
(xy 146.199392 124.509787) (xy 147 125.310395) (xy 147.800608 124.509787) (xy 147.775428 124.422) (xy 159.578001 124.422)
(xy 159.578 131.678) (xy 157.358839 131.678) (xy 157.642723 130.953813) (xy 157.626497 130.104613) (xy 157.332739 129.395418)
(xy 157.01397 129.235635) (xy 155.679605 130.57) (xy 155.693748 130.584143) (xy 155.514143 130.763748) (xy 155.5 130.749605)
(xy 155.485858 130.763748) (xy 155.306253 130.584143) (xy 155.320395 130.57) (xy 153.98603 129.235635) (xy 153.667261 129.395418)
(xy 153.357277 130.186187) (xy 153.373503 131.035387) (xy 153.639682 131.678) (xy 148.287608 131.678) (xy 148.257411 131.647803)
(xy 148.539312 131.531395) (xy 148.790049 130.869144) (xy 148.768267 130.161351) (xy 148.539312 129.608605) (xy 148.257409 129.492196)
(xy 147.179605 130.57) (xy 147.193748 130.584143) (xy 147.014143 130.763748) (xy 147 130.749605) (xy 146.985858 130.763748)
(xy 146.806253 130.584143) (xy 146.820395 130.57) (xy 145.742591 129.492196) (xy 145.460688 129.608605) (xy 145.209951 130.270856)
(xy 145.231733 130.978649) (xy 145.460688 131.531395) (xy 145.742589 131.647803) (xy 145.712392 131.678) (xy 143.307 131.678)
(xy 143.307 129.312591) (xy 145.922196 129.312591) (xy 147 130.390395) (xy 148.077804 129.312591) (xy 147.97186 129.05603)
(xy 154.165635 129.05603) (xy 155.5 130.390395) (xy 156.834365 129.05603) (xy 156.674582 128.737261) (xy 155.883813 128.427277)
(xy 155.034613 128.443503) (xy 154.325418 128.737261) (xy 154.165635 129.05603) (xy 147.97186 129.05603) (xy 147.961395 129.030688)
(xy 147.299144 128.779951) (xy 146.591351 128.801733) (xy 146.038605 129.030688) (xy 145.922196 129.312591) (xy 143.307 129.312591)
(xy 143.307 126.470213) (xy 146.199392 126.470213) (xy 146.268857 126.712397) (xy 146.792302 126.899144) (xy 147.347368 126.871362)
(xy 147.731143 126.712397) (xy 147.800608 126.470213) (xy 147 125.669605) (xy 146.199392 126.470213) (xy 143.307 126.470213)
(xy 143.307 125.282302) (xy 145.590856 125.282302) (xy 145.618638 125.837368) (xy 145.777603 126.221143) (xy 146.019787 126.290608)
(xy 146.820395 125.49) (xy 147.179605 125.49) (xy 147.980213 126.290608) (xy 148.222397 126.221143) (xy 148.409144 125.697698)
(xy 148.381362 125.142632) (xy 148.222397 124.758857) (xy 147.980213 124.689392) (xy 147.179605 125.49) (xy 146.820395 125.49)
(xy 146.019787 124.689392) (xy 145.777603 124.758857) (xy 145.590856 125.282302) (xy 143.307 125.282302) (xy 143.307 124.422)
(xy 146.224572 124.422)
)
)
)
(zone (net 6) (net_name /AC_N) (layer B.Cu) (tstamp 5C4B8DEC) (hatch edge 0.508)
(connect_pads (clearance 0.22))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 143.18 131.877) (xy 143.18 124.257) (xy 159.817 124.257) (xy 159.817 131.877)
)
)
(filled_polygon
(pts
(xy 146.199392 124.509787) (xy 147 125.310395) (xy 147.800608 124.509787) (xy 147.775428 124.422) (xy 159.578001 124.422)
(xy 159.578 131.678) (xy 157.358839 131.678) (xy 157.642723 130.953813) (xy 157.626497 130.104613) (xy 157.332739 129.395418)
(xy 157.01397 129.235635) (xy 155.679605 130.57) (xy 155.693748 130.584143) (xy 155.514143 130.763748) (xy 155.5 130.749605)
(xy 155.485858 130.763748) (xy 155.306253 130.584143) (xy 155.320395 130.57) (xy 153.98603 129.235635) (xy 153.667261 129.395418)
(xy 153.357277 130.186187) (xy 153.373503 131.035387) (xy 153.639682 131.678) (xy 148.287608 131.678) (xy 148.257411 131.647803)
(xy 148.539312 131.531395) (xy 148.790049 130.869144) (xy 148.768267 130.161351) (xy 148.539312 129.608605) (xy 148.257409 129.492196)
(xy 147.179605 130.57) (xy 147.193748 130.584143) (xy 147.014143 130.763748) (xy 147 130.749605) (xy 146.985858 130.763748)
(xy 146.806253 130.584143) (xy 146.820395 130.57) (xy 145.742591 129.492196) (xy 145.460688 129.608605) (xy 145.209951 130.270856)
(xy 145.231733 130.978649) (xy 145.460688 131.531395) (xy 145.742589 131.647803) (xy 145.712392 131.678) (xy 143.307 131.678)
(xy 143.307 129.312591) (xy 145.922196 129.312591) (xy 147 130.390395) (xy 148.077804 129.312591) (xy 147.97186 129.05603)
(xy 154.165635 129.05603) (xy 155.5 130.390395) (xy 156.834365 129.05603) (xy 156.674582 128.737261) (xy 155.883813 128.427277)
(xy 155.034613 128.443503) (xy 154.325418 128.737261) (xy 154.165635 129.05603) (xy 147.97186 129.05603) (xy 147.961395 129.030688)
(xy 147.299144 128.779951) (xy 146.591351 128.801733) (xy 146.038605 129.030688) (xy 145.922196 129.312591) (xy 143.307 129.312591)
(xy 143.307 126.470213) (xy 146.199392 126.470213) (xy 146.268857 126.712397) (xy 146.792302 126.899144) (xy 147.347368 126.871362)
(xy 147.731143 126.712397) (xy 147.800608 126.470213) (xy 147 125.669605) (xy 146.199392 126.470213) (xy 143.307 126.470213)
(xy 143.307 125.282302) (xy 145.590856 125.282302) (xy 145.618638 125.837368) (xy 145.777603 126.221143) (xy 146.019787 126.290608)
(xy 146.820395 125.49) (xy 147.179605 125.49) (xy 147.980213 126.290608) (xy 148.222397 126.221143) (xy 148.409144 125.697698)
(xy 148.381362 125.142632) (xy 148.222397 124.758857) (xy 147.980213 124.689392) (xy 147.179605 125.49) (xy 146.820395 125.49)
(xy 146.019787 124.689392) (xy 145.777603 124.758857) (xy 145.590856 125.282302) (xy 143.307 125.282302) (xy 143.307 124.422)
(xy 146.224572 124.422)
)
)
)
)
| KiCad | 4 | PaulG4H/HASwitchPlate | PCB/HASwitchPlate.kicad_pcb | [
"MIT"
] |
[[spring-core]]
= Core Technologies
:toc: left
:toclevels: 4
:tabsize: 4
:docinfo1:
This part of the reference documentation covers all the technologies that are
absolutely integral to the Spring Framework.
Foremost amongst these is the Spring Framework's Inversion of Control (IoC) container.
A thorough treatment of the Spring Framework's IoC container is closely followed by
comprehensive coverage of Spring's Aspect-Oriented Programming (AOP) technologies.
The Spring Framework has its own AOP framework, which is conceptually easy to
understand and which successfully addresses the 80% sweet spot of AOP requirements
in Java enterprise programming.
Coverage of Spring's integration with AspectJ (currently the richest -- in terms of
features -- and certainly most mature AOP implementation in the Java enterprise space)
is also provided.
include::core/core-beans.adoc[leveloffset=+1]
include::core/core-resources.adoc[leveloffset=+1]
include::core/core-validation.adoc[leveloffset=+1]
include::core/core-expressions.adoc[leveloffset=+1]
include::core/core-aop.adoc[leveloffset=+1]
include::core/core-aop-api.adoc[leveloffset=+1]
include::core/core-null-safety.adoc[leveloffset=+1]
include::core/core-databuffer-codec.adoc[leveloffset=+1]
include::core/core-spring-jcl.adoc[leveloffset=+1]
include::core/core-appendix.adoc[leveloffset=+1]
| AsciiDoc | 3 | spreoW/spring-framework | src/docs/asciidoc/core.adoc | [
"Apache-2.0"
] |
__includes ["SimulatedAnnealing.nls"]
extensions [rnd matrix]
; Global Variables
globals [
nrows
ncols
rows-dist ; Distribution of cells in rows, for example: [3] or [2 5 2]
cols-dist ; Distribution of cells in columns
Initial-state
]
; Setup procedure prepares the data for the Simulated Annealing Algorithm
to setup
ca
; Load Selected Figure (it simply fill rows-dist and cols-dist variables)
run Figure
; Resize the world to fit the figure
set nrows length rows-dist
set ncols length cols-dist
resize-world 0 (ncols - 1) 0 (nrows - 1)
set-patch-size (25 * 16) / (max (list ncols nrows))
; Starts cell randomly (in the interface we choose the % of initially
; activated cells)
set Initial-state matrix:make-constant nrows ncols 0
set Initial-state matrix:map [x -> (ifelse-value (random 100 < %-initial) [1][0])] Initial-state
;print matrix:pretty-print-text Initial-state
; Show the current states of the cells
update-view Initial-state
end
; Main Algorithm prodecure
; Associated to a forever button, hence we define one only step
to launch
let res AI:SimAnn Initial-state
10;tries-by-cycle
(10 ^ -6)
1;cooling-rate
false
update-view res
end
to AI:SimAnnExternalUpdates [params]
update-view params
plot AI:SimAnnGlobalEnergy
display
end
to-report AI:get-new-state [#state]
let i random nrows
let j random ncols
If Strategy = "Change-me" [report (strategy1 #state i j)]
if Strategy = "Probabilistic" [report (strategy2 #state i j)]
end
; Procedure to compute the Global ENergy of the system as the sum of energies
; of rows and columns
to-report AI:EnergyState [#state]
let rows-error sum map [r -> Energy-Row #state r] (range nrows)
let cols-error sum map [c -> Energy-Column #state c] (range ncols)
report ( rows-error + cols-error )
end
; The energy of a row is computed from the error between the pattern
; of the goal row and the current row
to-report Energy-Row [#state row]
; if row < 0 or row > max-pycor [report 0]
let Row-states matrix:get-row #state row
let Row-Pattern group Row-states
let Row-Error Compute-Error Row-Pattern (item row rows-dist)
report Row-Error
end
; The energy of a column is computed from the error between the pattern
; of the goal column and the current column
to-report Energy-Column [#state col]
; if col < 0 or col > max-pxcor [report 0]
let Col-States matrix:get-column #state col
let Col-Pattern group Col-States
set Col-Pattern reverse Col-Pattern
let Col-Error Compute-Error Col-Pattern (item col cols-dist)
report Col-Error
end
; The error between 2 patterns
to-report Compute-Error [ v1 v2 ]
; Compute the differnce in lengths
let dif abs (length v1 - length v2)
; Euqalize the patterns by adding 0`s ti the shortest
if (length v1) < (length v2)
[ set v1 sentence v1 (n-values dif [0]) ]
if (length v2) < (length v1)
[ set v2 sentence v2 (n-values dif [0]) ]
; Compute the euclidean distance between patterns
let er sum (map [ [x y] -> (x - y) ^ 2 ] v1 v2)
; Adding a penalty for the diference of lengths
set er er + ( dif * Weight-Dif)
report er
end
; Report to get the groups of a row/column of states:
; [0 1 1 1 0 0 1 1 0] -> [3 2]
; It works with reduce, leaving the false's and counting consecutive
; true's with the help of an auxiliary report. After that, we must
; remover the false's
to-report group [L]
report aux-group [] L
end
to-report aux-group [ac L]
ifelse empty? L
[ report map abs ac]
[ ifelse first L = 0
[ report aux-group (map abs ac) (bf L)]
[ ifelse (not empty? ac) and (last ac < 0)
[ report aux-group (lput (last ac - 1) butlast ac) (bf L)]
[ report aux-group (lput -1 ac) (bf L)]]]
end
;============================
; Strategies of Changes
;============================
; Two Strategis to decide the change
; The first one is simply change the state of the cell
to-report strategy1 [#state i j]
let v matrix:get #state i j
report matrix:set-and-report #state i j (1 - v)
end
; The second one applies one legal operator with different probabilities
; (to be decided through the interface):
; Remove the cell (deactivate it)
; Add a cell (activate one neighbor)
; Swap the content with a neighbor
to-report strategy2 [#state i j]
let probs (list Prob-Remove Prob-Add Prob-Swap)
let choice-list (map [ [o p] -> (list o p)] [1 2 3] probs)
let op (first (rnd:weighted-one-of-list choice-list last))
if op = 1 [report Remove-cell #state i j ]
if op = 2 [report Add-cell #state i j ]
if op = 3 [report swap-cell #state i j ]
end
to-report Remove-Cell [#state i j]
report matrix:set-and-report #state i j 0
end
to-report Add-Cell [#state i j]
report matrix:set-and-report #state i j 1
end
to-report Swap-Cell [#state i j]
let s1 matrix:get #state i j
let movs (list (list (i - 1) j) (list (i + 1) j) (list i (j - 1)) (list i (j + 1)))
let p2 one-of filter [p -> ((first p) >= 0 and (first p) < nrows and (last p) >= 0 and (last p) < ncols)] movs
let s2 matrix:get #state (first p2) (last p2)
let M matrix:set-and-report #state i j s2
report matrix:set-and-report M (first p2) (last p2) s1
end
;==================
; PLOTTING ROUTINES
;==================
; Update the visual representation of cells
to update-view [#state]
ask patches [
let s matrix:get #state pycor pxcor
set pcolor item s [white black]
]
end
;; ;;;;;;;;;;;;;;;;;;;;;
;; Examples
;; ;;;;;;;;;;;;;;;;;;;;;
to Figure1
;rows-dist: up to down
set rows-dist [ [2] [1] [4] [5] [3 2] [2 1] [3] ]
;cols-dist: left to right
set cols-dist [ [1] [3] [1 4] [4 1] [4] [3] [2] ]
end
to Figure2
set rows-dist [
[10 3 3] [9 3 2] [8 9 1] [7 7 1] [6 2 2]
[5 3 3] [4 2 2] [3 1 1 3] [2 5] [1 8 5]
[8 3] [8 3] [3] [3] [3 3]
[2 4] [1 5] [2] [3 3] [3 8]
[3 8 1] [2 8 2] [1 1 3] [2 4] [3 5]
[3 6] [3 7] [11 8] [11 9] [11 10]
]
set cols-dist [
[2 10] [2 9] [2 8] [2 7] [5 5 5]
[6 4 5] [7 3 4] [2 3] [2 4 8 2] [2 5 7 1]
[2 6 6] [3 2 3] [3 3 3] [3 3 3] [3 3 3 3]
[3 3 6] [1 8] [2 2 2 2] [3 5 2] [4 4 2]
[5 5 2] [6 5 2] [7 4 3] [8 3 2] [9 1 1]
]
end
to Figure3
set rows-dist [
[0][0][0][1] [3] [5] [7]
]
set cols-dist [
[1] [2] [3] [4] [3] [2] [1]
]
end
to Figure4
set rows-dist [
[1 3] [1 1] [1 1] [5] [2 4] [7] [7] [5]
]
set cols-dist [
[3] [1 5] [3 5] [1 5] [8] [1 5] [3]
]
end
to Figure5
set rows-dist [
[2 2] [2 3] [2 2 1] [2 1] [2 2] [3] [3] [1] [2] [1 1] [1 2] [2]
]
set cols-dist [
[2 1] [1 3] [2 4] [3 4] [4][3][3][3][2][2]
]
end
@#$#@#$#@
GRAPHICS-WINDOW
190
10
579
400
-1
-1
57.142857142857146
1
10
1
1
1
0
0
0
1
0
6
0
6
0
0
1
ticks
30.0
BUTTON
105
10
180
55
setup
setup
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
SLIDER
10
55
180
88
%-initial
%-initial
0
100
45.0
1
1
%
HORIZONTAL
BUTTON
125
90
180
135
NIL
Launch
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
PLOT
10
320
180
455
Global Energy
Time
Energy
0.0
10.0
0.0
100.0
true
false
"" ""
PENS
"default" 1.0 0 -65536 true "" ""
MONITOR
10
455
97
500
Global Energy
AI:SimAnnGlobalEnergy
3
1
11
SLIDER
10
180
180
213
Prob-Remove
Prob-Remove
0
10
2.0
1
1
NIL
HORIZONTAL
SLIDER
10
215
180
248
Prob-Add
Prob-Add
0
10
2.0
1
1
NIL
HORIZONTAL
SLIDER
10
250
180
283
Prob-Swap
Prob-Swap
0
10
2.0
1
1
NIL
HORIZONTAL
SLIDER
10
285
180
318
Weight-Dif
Weight-Dif
0
50
9.0
1
1
NIL
HORIZONTAL
CHOOSER
10
10
105
55
Figure
Figure
"Figure1" "Figure2" "Figure3" "Figure4" "Figure5"
0
MONITOR
10
135
180
180
Temp
AI:SimAnnTemperature
17
1
11
CHOOSER
10
90
125
135
Strategy
Strategy
"Change-me" "Probabilistic"
0
@#$#@#$#@
## ¿QUÉ ES?
Este programa resuelve nonogramas usando **Templado simulado**.
Un **nonograma** es un puzle de lógica inventado en Japón que ha tenido un gran éxito en los últimos años.
Las reglas son simples:
+ Tienes una cuadrícula de casillas, que deben ser pintadas de negro o dejadas en blanco (también hay versiones con más colores, pero no las abordaremos aquí).
+ Al lado de cada fila en la cuadrícula aparecen los tamaños de los grupos de casillas negras que se pueden encontrar en esa fila. Y sobre cada columna de la cuadrícula aparecen los tamaños de los grupos de casillas negras que se pueden encontrar en esa columna.
+ El objetivo es encontrar todas las casillas negras que se ajustan a esa distribución.

## ¿CÓMO FUNCIONA?
Aunque existe un algoritmo determinista (y relativamente rápido) para resolver este tiop de puzles, en este modelo usamos una aproximación de búsqueda local para resolverlo, concretamente haremos uso del método de templado simulado:
1. La energía, E1, de la mala se calcula a partir de los errores que se comenten en las filas y columnas (según lo parecido que sea la distribución obtenida de la que es objetivo).
2. Se selecciona un agente al azar, y se le permite que se mueva, se marque negro o se marque blanco.
3. Se calcula de nuevo la energía de la malla con ese nuevo cambio, E2.
4. Si E2<=E1, entonces se acepta el cambio realizado en 2. Si E2>E1, el cambio se produce con una cierta probabilidad, que es proporcional a exp(-(E2-E1)/T), donde T es una "temperatura" que gradualmente disminuye a medida que el proceso continúa.
## ¿CÓMO USARLO?
1. Seleccionar la figura que se desea resolver (se pueden añadir más en código). Fijar los parámetros de inicio, y pulsar 'setup'.
2. Fijar los parámetros de ejecución del algoritmo (de la estrategia a seguir).
2. Pulsar "go" y esperar que el algoritmo se estabilice... idealmente, en la solución óptima (aunque es posible que se estabilice en una solución local).
@#$#@#$#@
default
true
0
Polygon -7500403 true true 150 5 40 250 150 205 260 250
ant
true
0
Polygon -7500403 true true 136 61 129 46 144 30 119 45 124 60 114 82 97 37 132 10 93 36 111 84 127 105 172 105 189 84 208 35 171 11 202 35 204 37 186 82 177 60 180 44 159 32 170 44 165 60
Polygon -7500403 true true 150 95 135 103 139 117 125 149 137 180 135 196 150 204 166 195 161 180 174 150 158 116 164 102
Polygon -7500403 true true 149 186 128 197 114 232 134 270 149 282 166 270 185 232 171 195 149 186
Polygon -7500403 true true 225 66 230 107 159 122 161 127 234 111 236 106
Polygon -7500403 true true 78 58 99 116 139 123 137 128 95 119
Polygon -7500403 true true 48 103 90 147 129 147 130 151 86 151
Polygon -7500403 true true 65 224 92 171 134 160 135 164 95 175
Polygon -7500403 true true 235 222 210 170 163 162 161 166 208 174
Polygon -7500403 true true 249 107 211 147 168 147 168 150 213 150
arrow
true
0
Polygon -7500403 true true 150 0 0 150 105 150 105 293 195 293 195 150 300 150
bee
true
0
Polygon -1184463 true false 151 152 137 77 105 67 89 67 66 74 48 85 36 100 24 116 14 134 0 151 15 167 22 182 40 206 58 220 82 226 105 226 134 222
Polygon -16777216 true false 151 150 149 128 149 114 155 98 178 80 197 80 217 81 233 95 242 117 246 141 247 151 245 177 234 195 218 207 206 211 184 211 161 204 151 189 148 171
Polygon -7500403 true true 246 151 241 119 240 96 250 81 261 78 275 87 282 103 277 115 287 121 299 150 286 180 277 189 283 197 281 210 270 222 256 222 243 212 242 192
Polygon -16777216 true false 115 70 129 74 128 223 114 224
Polygon -16777216 true false 89 67 74 71 74 224 89 225 89 67
Polygon -16777216 true false 43 91 31 106 31 195 45 211
Line -1 false 200 144 213 70
Line -1 false 213 70 213 45
Line -1 false 214 45 203 26
Line -1 false 204 26 185 22
Line -1 false 185 22 170 25
Line -1 false 169 26 159 37
Line -1 false 159 37 156 55
Line -1 false 157 55 199 143
Line -1 false 200 141 162 227
Line -1 false 162 227 163 241
Line -1 false 163 241 171 249
Line -1 false 171 249 190 254
Line -1 false 192 253 203 248
Line -1 false 205 249 218 235
Line -1 false 218 235 200 144
bird1
false
0
Polygon -7500403 true true 2 6 2 39 270 298 297 298 299 271 187 160 279 75 276 22 100 67 31 0
bird2
false
0
Polygon -7500403 true true 2 4 33 4 298 270 298 298 272 298 155 184 117 289 61 295 61 105 0 43
boat1
false
0
Polygon -1 true false 63 162 90 207 223 207 290 162
Rectangle -6459832 true false 150 32 157 162
Polygon -13345367 true false 150 34 131 49 145 47 147 48 149 49
Polygon -7500403 true true 158 33 230 157 182 150 169 151 157 156
Polygon -7500403 true true 149 55 88 143 103 139 111 136 117 139 126 145 130 147 139 147 146 146 149 55
boat2
false
0
Polygon -1 true false 63 162 90 207 223 207 290 162
Rectangle -6459832 true false 150 32 157 162
Polygon -13345367 true false 150 34 131 49 145 47 147 48 149 49
Polygon -7500403 true true 157 54 175 79 174 96 185 102 178 112 194 124 196 131 190 139 192 146 211 151 216 154 157 154
Polygon -7500403 true true 150 74 146 91 139 99 143 114 141 123 137 126 131 129 132 139 142 136 126 142 119 147 148 147
boat3
false
0
Polygon -1 true false 63 162 90 207 223 207 290 162
Rectangle -6459832 true false 150 32 157 162
Polygon -13345367 true false 150 34 131 49 145 47 147 48 149 49
Polygon -7500403 true true 158 37 172 45 188 59 202 79 217 109 220 130 218 147 204 156 158 156 161 142 170 123 170 102 169 88 165 62
Polygon -7500403 true true 149 66 142 78 139 96 141 111 146 139 148 147 110 147 113 131 118 106 126 71
box
true
0
Polygon -7500403 true true 45 255 255 255 255 45 45 45
butterfly1
true
0
Polygon -16777216 true false 151 76 138 91 138 284 150 296 162 286 162 91
Polygon -7500403 true true 164 106 184 79 205 61 236 48 259 53 279 86 287 119 289 158 278 177 256 182 164 181
Polygon -7500403 true true 136 110 119 82 110 71 85 61 59 48 36 56 17 88 6 115 2 147 15 178 134 178
Polygon -7500403 true true 46 181 28 227 50 255 77 273 112 283 135 274 135 180
Polygon -7500403 true true 165 185 254 184 272 224 255 251 236 267 191 283 164 276
Line -7500403 true 167 47 159 82
Line -7500403 true 136 47 145 81
Circle -7500403 true true 165 45 8
Circle -7500403 true true 134 45 6
Circle -7500403 true true 133 44 7
Circle -7500403 true true 133 43 8
circle
false
0
Circle -7500403 true true 35 35 230
person
false
0
Circle -7500403 true true 155 20 63
Rectangle -7500403 true true 158 79 217 164
Polygon -7500403 true true 158 81 110 129 131 143 158 109 165 110
Polygon -7500403 true true 216 83 267 123 248 143 215 107
Polygon -7500403 true true 167 163 145 234 183 234 183 163
Polygon -7500403 true true 195 163 195 233 227 233 206 159
sheep
false
15
Rectangle -1 true true 90 75 270 225
Circle -1 true true 15 75 150
Rectangle -16777216 true false 81 225 134 286
Rectangle -16777216 true false 180 225 238 285
Circle -16777216 true false 1 88 92
spacecraft
true
0
Polygon -7500403 true true 150 0 180 135 255 255 225 240 150 180 75 240 45 255 120 135
thin-arrow
true
0
Polygon -7500403 true true 150 0 0 150 120 150 120 293 180 293 180 150 300 150
truck-down
false
0
Polygon -7500403 true true 225 30 225 270 120 270 105 210 60 180 45 30 105 60 105 30
Polygon -8630108 true false 195 75 195 120 240 120 240 75
Polygon -8630108 true false 195 225 195 180 240 180 240 225
truck-left
false
0
Polygon -7500403 true true 120 135 225 135 225 210 75 210 75 165 105 165
Polygon -8630108 true false 90 210 105 225 120 210
Polygon -8630108 true false 180 210 195 225 210 210
truck-right
false
0
Polygon -7500403 true true 180 135 75 135 75 210 225 210 225 165 195 165
Polygon -8630108 true false 210 210 195 225 180 210
Polygon -8630108 true false 120 210 105 225 90 210
turtle
true
0
Polygon -7500403 true true 138 75 162 75 165 105 225 105 225 142 195 135 195 187 225 195 225 225 195 217 195 202 105 202 105 217 75 225 75 195 105 187 105 135 75 142 75 105 135 105
wolf
false
0
Rectangle -7500403 true true 15 105 105 165
Rectangle -7500403 true true 45 90 105 105
Polygon -7500403 true true 60 90 83 44 104 90
Polygon -16777216 true false 67 90 82 59 97 89
Rectangle -1 true false 48 93 59 105
Rectangle -16777216 true false 51 96 55 101
Rectangle -16777216 true false 0 121 15 135
Rectangle -16777216 true false 15 136 60 151
Polygon -1 true false 15 136 23 149 31 136
Polygon -1 true false 30 151 37 136 43 151
Rectangle -7500403 true true 105 120 263 195
Rectangle -7500403 true true 108 195 259 201
Rectangle -7500403 true true 114 201 252 210
Rectangle -7500403 true true 120 210 243 214
Rectangle -7500403 true true 115 114 255 120
Rectangle -7500403 true true 128 108 248 114
Rectangle -7500403 true true 150 105 225 108
Rectangle -7500403 true true 132 214 155 270
Rectangle -7500403 true true 110 260 132 270
Rectangle -7500403 true true 210 214 232 270
Rectangle -7500403 true true 189 260 210 270
Line -7500403 true 263 127 281 155
Line -7500403 true 281 155 281 192
wolf-left
false
3
Polygon -6459832 true true 117 97 91 74 66 74 60 85 36 85 38 92 44 97 62 97 81 117 84 134 92 147 109 152 136 144 174 144 174 103 143 103 134 97
Polygon -6459832 true true 87 80 79 55 76 79
Polygon -6459832 true true 81 75 70 58 73 82
Polygon -6459832 true true 99 131 76 152 76 163 96 182 104 182 109 173 102 167 99 173 87 159 104 140
Polygon -6459832 true true 107 138 107 186 98 190 99 196 112 196 115 190
Polygon -6459832 true true 116 140 114 189 105 137
Rectangle -6459832 true true 109 150 114 192
Rectangle -6459832 true true 111 143 116 191
Polygon -6459832 true true 168 106 184 98 205 98 218 115 218 137 186 164 196 176 195 194 178 195 178 183 188 183 169 164 173 144
Polygon -6459832 true true 207 140 200 163 206 175 207 192 193 189 192 177 198 176 185 150
Polygon -6459832 true true 214 134 203 168 192 148
Polygon -6459832 true true 204 151 203 176 193 148
Polygon -6459832 true true 207 103 221 98 236 101 243 115 243 128 256 142 239 143 233 133 225 115 214 114
wolf-right
false
3
Polygon -6459832 true true 170 127 200 93 231 93 237 103 262 103 261 113 253 119 231 119 215 143 213 160 208 173 189 187 169 190 154 190 126 180 106 171 72 171 73 126 122 126 144 123 159 123
Polygon -6459832 true true 201 99 214 69 215 99
Polygon -6459832 true true 207 98 223 71 220 101
Polygon -6459832 true true 184 172 189 234 203 238 203 246 187 247 180 239 171 180
Polygon -6459832 true true 197 174 204 220 218 224 219 234 201 232 195 225 179 179
Polygon -6459832 true true 78 167 95 187 95 208 79 220 92 234 98 235 100 249 81 246 76 241 61 212 65 195 52 170 45 150 44 128 55 121 69 121 81 135
Polygon -6459832 true true 48 143 58 141
Polygon -6459832 true true 46 136 68 137
Polygon -6459832 true true 45 129 35 142 37 159 53 192 47 210 62 238 80 237
Line -16777216 false 74 237 59 213
Line -16777216 false 59 213 59 212
Line -16777216 false 58 211 67 192
Polygon -6459832 true true 38 138 66 149
Polygon -6459832 true true 46 128 33 120 21 118 11 123 3 138 5 160 13 178 9 192 0 199 20 196 25 179 24 161 25 148 45 140
Polygon -6459832 true true 67 122 96 126 63 144
@#$#@#$#@
NetLogo 6.0.4
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
@#$#@#$#@
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
@#$#@#$#@
1
@#$#@#$#@
| NetLogo | 5 | fsancho/IA | 04. Local Search/Simulated Annealing Nonogram2.nlogo | [
"MIT"
] |
At: "027.hac":4:
parse error: syntax error
parser stacks:
state value
#STATE# (null)
#STATE# (null)
#STATE# keyword: template [3:1..8]
#STATE# list<(template-formal-decl)>: ... [3:10..11]
#STATE# keyword: defproc [4:1..7]
in state #STATE#, possible rules are:
template_specification: TEMPLATE template_formal_decl_list_optional_in_angles . template_formal_decl_nodefault_list_in_angles (#RULE#)
acceptable tokens are:
'<' (shift)
| Bison | 2 | broken-wheel/hacktist | hackt_docker/hackt/test/parser/template/027.stderr.bison | [
"MIT"
] |
#! /usr/bin/env hy
(defn salutationsnm [name] (print (+ "Hy " name "!")))
(salutationsnm "@israelzuniga")
| Hy | 3 | saurabhcommand/Hello-world | Hy/hello_githubuser.hy | [
"MIT"
] |
# Compiled Lua sources
luac.out
# luarocks build files
*.src.rock
*.zip
*.tar.gz
# Object files
*.o
*.os
*.ko
*.obj
*.elf
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
*.def
*.exp
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
| HTML+Django | 2 | MalcolmScoffable/openapi-generator | modules/openapi-generator/src/main/resources/protobuf-schema/gitignore.mustache | [
"Apache-2.0"
] |
<div class="color-scheme-switch-container">
<button aria-label="Toggle theme" title="Toggle theme" role="switch" aria-checked="true" class="color-scheme-switch">
<div class="selector"></div>
{% include svg/moon.svg %}
{% include svg/sun.svg %}
</button>
</div>
| Liquid | 3 | ViGi-P/rome | website/src/_includes/color-scheme-switcher.liquid | [
"MIT"
] |
----------------------------------------------------------------------------------
-- Engineer: Mike Field <[email protected]>
--
-- Module Name: detect_speed_and_reassemble_bytes - Behavioral
--
-- Description: Process the raw RGMII RX data to generate bytes and status signals
--
------------------------------------------------------------------------------------
-- FPGA_Webserver from https://github.com/hamsternz/FPGA_Webserver
------------------------------------------------------------------------------------
-- The MIT License (MIT)
--
-- Copyright (c) 2015 Michael Alan Field <[email protected]>
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-- THE SOFTWARE.
--
----------------------------------------------------------------------------------
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.NUMERIC_STD.ALL;
entity detect_speed_and_reassemble_bytes is
Port ( clk125Mhz : in STD_LOGIC;
-- Interface to input FIFO
input_empty : in STD_LOGIC;
input_read : out STD_LOGIC := '0';
input_data : in STD_LOGIC_VECTOR (7 downto 0);
input_data_present : in STD_LOGIC;
input_data_error : in STD_LOGIC;
link_10mb : out STD_LOGIC := '0';
link_100mb : out STD_LOGIC := '0';
link_1000mb : out STD_LOGIC := '0';
link_full_duplex : out STD_LOGIC := '0';
output_data_enable : out STD_LOGIC := '0';
output_data : out STD_LOGIC_VECTOR (7 downto 0) := (others => '0');
output_data_present : out STD_LOGIC := '0';
output_data_error : out STD_LOGIC := '0');
end detect_speed_and_reassemble_bytes;
architecture Behavioral of detect_speed_and_reassemble_bytes is
signal preamble_count : unsigned(4 downto 0) := (others => '0');
signal i_link_10mb : STD_LOGIC := '0';
signal i_link_100mb : STD_LOGIC := '0';
signal i_link_1000mb : STD_LOGIC := '0';
signal i_link_full_duplex : STD_LOGIC := '0';
signal fresh_data : STD_LOGIC := '0';
signal active_data : STD_LOGIC := '0';
signal phase : STD_LOGIC := '0';
signal last_nibble_data : std_logic_vector(3 downto 0) := "0000";
signal last_nibble_data_error : std_logic := '0';
signal last_nibble_data_present : std_logic := '0';
signal i_output_data_enable : STD_LOGIC := '0';
signal i_output_data : STD_LOGIC_VECTOR (7 downto 0) := (others => '0');
signal i_output_data_present : STD_LOGIC := '0';
signal i_output_data_error : STD_LOGIC := '0';
begin
link_10mb <= i_link_10mb;
link_100mb <= i_link_100mb;
link_1000mb <= i_link_1000mb;
link_full_duplex <= i_link_full_duplex;
output_data_enable <= i_output_data_enable;
output_data <= i_output_data;
output_data_present <= i_output_data_present;
output_data_error <= i_output_data_error;
input_read <= not input_empty;
detect_link_status: process(clk125Mhz)
begin
if rising_edge(clk125Mhz) then
if fresh_data = '1' and (input_data_present = '0') and (input_data_error = '0') and
input_data(3 downto 0) = input_data(7 downto 4) then
----------------------------------------------------
-- The idle sumbols have link status incoded in them
----------------------------------------------------
i_link_10mb <= '0';
i_link_100mb <= '0';
i_link_1000mb <= '0';
i_link_full_duplex <= '0';
case input_data(2 downto 0) is
when "001" => i_link_10mb <= '1'; i_link_full_duplex <= input_data(3);
when "011" => i_link_100mb <= '1'; i_link_full_duplex <= input_data(3);
when "101" => i_link_1000mb <= '1'; i_link_full_duplex <= input_data(3);
when others => NULL;
end case;
end if;
fresh_data <= not input_empty;
end if;
end process;
reassemble_data:process(clk125Mhz)
begin
if rising_edge(clk125Mhz) then
i_output_data_present <= '0';
i_output_data_enable <= '0';
i_output_data <= (others => '0');
if i_link_1000mb = '1' then
-- this is designs such that one idle symbol will be
-- emitted after the end of the contents of the packet
if fresh_data = '1' then
if active_data = '1' then
i_output_data_enable <= '1';
i_output_data <= input_data;
i_output_data_present <= input_data_present;
i_output_data_error <= input_data_error;
active_data <= input_data_present;
preamble_count <= (others => '0');
else
-- Check we see a valid preamble sequence
-- We see two nibbles of the preamble every
-- time we see a byte
if input_data_present = '1' then
if input_data = x"55" then
if preamble_count(4 downto 2) /= "111" then
preamble_count <= preamble_count+2;
end if;
elsif input_data = x"D5" and preamble_count(4 downto 2) /= "111" then
active_data <= '1';
end if;
else
preamble_count <= (others => '0');
end if;
end if;
end if;
else
----------------------------------------------
-- For 100Mb/s and 10Mb/s the data is received
-- as nibbles (4 bits) per transfer
-----------------------------------------------
if fresh_data = '1' then
if active_data = '1' then
-- Set the output but only assert output_data_enable every other cycle
i_output_data <= input_data(3 downto 0) & last_nibble_data;
i_output_data_present <= input_data_present and last_nibble_data_present;
i_output_data_error <= input_data_error or last_nibble_data_error;
i_output_data_enable <= phase;
phase <= not phase;
-- Only allow 'active data' to drop during second half of byte
if phase = '1' then
active_data <= input_data_present and last_nibble_data_present;
end if;
else
-- Check we see a valid preamble sequence
if input_data_present = '1' then
if input_data = x"55" then
if preamble_count (4) = '0' then
preamble_count <= preamble_count+1;
end if;
elsif input_data = x"DD" and preamble_count(4) = '0' then
active_data <= '1';
phase <= '0';
end if;
else
preamble_count <= (others => '0');
end if;
end if;
end if;
end if;
if fresh_data = '1' then
-- Remember the data in case we are running at
-- a slow data rate (where nibbles are transferred)
last_nibble_data <= input_data(3 downto 0);
last_nibble_data_present <= input_data_present;
last_nibble_data_error <= input_data_error;
last_nibble_data_present <= input_data_present;
end if;
end if;
end process;
end Behavioral;
| VHDL | 4 | hamsternz/FPGA_Webserver | hdl/detect_speed_and_reassemble_bytes.vhd | [
"MIT"
] |
@prefix : <http://www.w3.org/2013/TurtleTests/> .
:s :p [] .
| Turtle | 1 | joshrose/audacity | lib-src/lv2/serd/tests/TurtleTests/turtle-syntax-bnode-02.ttl | [
"CC-BY-3.0"
] |
import logic
section
variables (A : Type) (p q : A → Prop)
example : (∀x : A, p x ∧ q x) → ∀y : A, p y :=
assume H : ∀x : A, p x ∧ q x,
take y : A,
show p y, from and.elim_left (H y)
end
| Lean | 5 | soonhokong/ace | demo/kitchen-sink/docs/lean.lean | [
"BSD-3-Clause"
] |
#pragma once
#include <thrust/tuple.h>
#include <ATen/native/SharedReduceOps.h>
#include <ATen/cuda/DeviceUtils.cuh>
namespace at {
namespace native {
namespace cuda_utils {
constexpr int kCUDABlockReduceNumThreads = 512;
// Algorithmic limitation: BlockReduce does two WarpReduce calls, each
// of which reduces C10_WARP_SIZE elements. So, at most
// C10_WARP_SIZE**2 elements can be reduced at a time.
// NOTE: This is >= the max block size on current hardware anyway (1024).
constexpr int kCUDABlockReduceMaxThreads = C10_WARP_SIZE * C10_WARP_SIZE;
// Sums `val` accross all threads in a warp.
//
// Assumptions:
// - The size of each block should be a multiple of `C10_WARP_SIZE`
template <typename T>
__inline__ __device__ T WarpReduceSum(T val) {
#pragma unroll
for (int offset = (C10_WARP_SIZE >> 1); offset > 0; offset >>= 1) {
val += WARP_SHFL_DOWN(val, offset);
}
return val;
}
// Sums `val` accross all threads in a block.
//
// Assumptions:
// - Thread blocks are an 1D set of threads (indexed with `threadIdx.x` only)
// - The size of each block should be a multiple of `C10_WARP_SIZE`
// - `shared` should be a pointer to shared memory with size of, at least,
// `sizeof(T) * number_of_warps`
template <typename T>
__inline__ __device__ T BlockReduceSum(T val, T* shared) {
const int lid = threadIdx.x % C10_WARP_SIZE;
const int wid = threadIdx.x / C10_WARP_SIZE;
val = WarpReduceSum(val);
__syncthreads();
if (lid == 0) {
shared[wid] = val;
}
__syncthreads();
val = (threadIdx.x < blockDim.x / C10_WARP_SIZE) ? shared[lid] : T(0);
if (wid == 0) {
val = WarpReduceSum(val);
}
return val;
}
template <typename T, class ReduceOp>
__inline__ __device__ T WarpReduce(T val, const ReduceOp& op) {
#pragma unroll
for (int offset = (C10_WARP_SIZE >> 1); offset > 0; offset >>= 1) {
val = op.combine(val, op.warp_shfl_down(val, offset));
}
return val;
}
template <typename T, class ReduceOp>
__inline__ __device__ T
BlockReduce(T val, const ReduceOp& op, const T& identity_element, T* shared) {
const int lid = threadIdx.x % C10_WARP_SIZE;
const int wid = threadIdx.x / C10_WARP_SIZE;
val = WarpReduce(val, op);
__syncthreads();
if (lid == 0) {
shared[wid] = val;
}
__syncthreads();
val = (threadIdx.x < blockDim.x / C10_WARP_SIZE) ? shared[lid]
: identity_element;
if (wid == 0) {
val = WarpReduce(val, op);
}
return val;
}
} // namespace cuda_utils
} // namespace native
} // namespace at
| Cuda | 4 | Hacky-DH/pytorch | aten/src/ATen/native/cuda/block_reduce.cuh | [
"Intel"
] |
// 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.thrift.transport;
import haxe.Int64;
import org.apache.thrift.TConfiguration;
class TEndpointTransport extends TTransport
{
private var MaxMessageSize(get, never) : Int64;
private var KnownMessageSize(default, null) : Int64 ;
private var RemainingMessageSize(default, null) : Int64 ;
private var _configuration(default,null) : TConfiguration;
public override function get_Configuration() : TConfiguration {
return _configuration;
}
private function get_MaxMessageSize() : Int64 {
return Configuration.MaxMessageSize;
}
// private CTOR to prevent direct instantiation
// in other words, this class MUST be extended
private function new( config : TConfiguration)
{
_configuration = (config != null) ? config : new TConfiguration();
ResetConsumedMessageSize();
}
// Resets RemainingMessageSize to the configured maximum
private function ResetConsumedMessageSize(?newSize : Int64) : Void
{
// full reset
if (newSize == null)
{
KnownMessageSize = MaxMessageSize;
RemainingMessageSize = MaxMessageSize;
return;
}
// update only: message size can shrink, but not grow
if (newSize > KnownMessageSize)
throw new TTransportException(TTransportException.END_OF_FILE, "ResetConsumedMessageSize: MaxMessageSize reached");
KnownMessageSize = newSize;
RemainingMessageSize = newSize;
}
// Updates RemainingMessageSize to reflect then known real message size (e.g. framed transport).
// Will throw if we already consumed too many bytes or if the new size is larger than allowed.
public override function UpdateKnownMessageSize(size : Int64) : Void
{
var consumed = KnownMessageSize - RemainingMessageSize;
ResetConsumedMessageSize(size);
CountConsumedMessageBytes(consumed);
}
// Throws if there are not enough bytes in the input stream to satisfy a read of numBytes bytes of data
public override function CheckReadBytesAvailable(numBytes : Int64) : Void
{
if (RemainingMessageSize < numBytes)
throw new TTransportException(TTransportException.END_OF_FILE, 'CheckReadBytesAvailable(${numBytes}): MaxMessageSize reached, only ${RemainingMessageSize} bytes available');
}
// Consumes numBytes from the RemainingMessageSize.
private function CountConsumedMessageBytes(numBytes : Int64) : Void
{
if (RemainingMessageSize >= numBytes)
{
RemainingMessageSize -= numBytes;
}
else
{
RemainingMessageSize = 0;
throw new TTransportException(TTransportException.END_OF_FILE, 'CountConsumedMessageBytes(${numBytes}): MaxMessageSize reached');
}
}
}
| Haxe | 4 | Jimexist/thrift | lib/haxe/src/org/apache/thrift/transport/TEndpointTransport.hx | [
"Apache-2.0"
] |
source "../tests/includes/init-tests.tcl"
proc cluster_allocate_mixedSlots {n} {
set slot 16383
while {$slot >= 0} {
set node [expr {$slot % $n}]
lappend slots_$node $slot
incr slot -1
}
for {set j 0} {$j < $n} {incr j} {
R $j cluster addslots {*}[set slots_${j}]
}
}
proc create_cluster_with_mixedSlot {masters slaves} {
cluster_allocate_mixedSlots $masters
if {$slaves} {
cluster_allocate_slaves $masters $slaves
}
assert_cluster_state ok
}
test "Create a 5 nodes cluster" {
create_cluster_with_mixedSlot 5 15
}
test "Cluster is up" {
assert_cluster_state ok
}
test "Cluster is writable" {
cluster_write_test 0
}
test "Instance #5 is a slave" {
assert {[RI 5 role] eq {slave}}
}
test "client do not break when cluster slot" {
R 0 config set client-output-buffer-limit "normal 33554432 16777216 60"
if { [catch {R 0 cluster slots}] } {
fail "output overflow when cluster slots"
}
}
test "client can handle keys with hash tag" {
set cluster [redis_cluster 127.0.0.1:[get_instance_attrib redis 0 port]]
$cluster set foo{tag} bar
$cluster close
}
test "slot migration is valid from primary to another primary" {
set cluster [redis_cluster 127.0.0.1:[get_instance_attrib redis 0 port]]
set key order1
set slot [$cluster cluster keyslot $key]
array set nodefrom [$cluster masternode_for_slot $slot]
array set nodeto [$cluster masternode_notfor_slot $slot]
assert_equal {OK} [$nodefrom(link) cluster setslot $slot node $nodeto(id)]
assert_equal {OK} [$nodeto(link) cluster setslot $slot node $nodeto(id)]
}
test "slot migration is invalid from primary to replica" {
set cluster [redis_cluster 127.0.0.1:[get_instance_attrib redis 0 port]]
set key order1
set slot [$cluster cluster keyslot $key]
array set nodefrom [$cluster masternode_for_slot $slot]
# Get replica node serving slot.
set replicanodeinfo [$cluster cluster replicas $nodefrom(id)]
puts $replicanodeinfo
set args [split $replicanodeinfo " "]
set replicaid [lindex [split [lindex $args 0] \{] 1]
puts $replicaid
catch {[$nodefrom(link) cluster setslot $slot node $replicaid]} err
assert_match "*Target node is not a master" $err
}
if {$::tls} {
test {CLUSTER SLOTS from non-TLS client in TLS cluster} {
set slots_tls [R 0 cluster slots]
set host [get_instance_attrib redis 0 host]
set plaintext_port [get_instance_attrib redis 0 plaintext-port]
set client_plain [redis $host $plaintext_port 0 0]
set slots_plain [$client_plain cluster slots]
$client_plain close
# Compare the ports in the first row
assert_no_match [lindex $slots_tls 0 3 1] [lindex $slots_plain 0 3 1]
}
} | Tcl | 5 | dawnwalk/redis | tests/cluster/tests/15-cluster-slots.tcl | [
"BSD-3-Clause"
] |
-- This test file was converted from inline-table.sql.
-- [SPARK-28291] UDFs cannot be evaluated within inline table definition
-- TODO: We should add UDFs in VALUES clause when [SPARK-28291] is resolved.
-- single row, without table and column alias
select udf(col1), udf(col2) from values ("one", 1);
-- single row, without column alias
select udf(col1), udf(udf(col2)) from values ("one", 1) as data;
-- single row
select udf(a), b from values ("one", 1) as data(a, b);
-- single column multiple rows
select udf(a) from values 1, 2, 3 as data(a);
-- three rows
select udf(a), b from values ("one", 1), ("two", 2), ("three", null) as data(a, b);
-- null type
select udf(a), b from values ("one", null), ("two", null) as data(a, b);
-- int and long coercion
select udf(a), b from values ("one", 1), ("two", 2L) as data(a, b);
-- foldable expressions
select udf(udf(a)), udf(b) from values ("one", 1 + 0), ("two", 1 + 3L) as data(a, b);
-- complex types
select udf(a), b from values ("one", array(0, 1)), ("two", array(2, 3)) as data(a, b);
-- decimal and double coercion
select udf(a), b from values ("one", 2.0), ("two", 3.0D) as data(a, b);
-- error reporting: nondeterministic function rand
select udf(a), b from values ("one", rand(5)), ("two", 3.0D) as data(a, b);
-- error reporting: different number of columns
select udf(a), udf(b) from values ("one", 2.0), ("two") as data(a, b);
-- error reporting: types that are incompatible
select udf(a), udf(b) from values ("one", array(0, 1)), ("two", struct(1, 2)) as data(a, b);
-- error reporting: number aliases different from number data values
select udf(a), udf(b) from values ("one"), ("two") as data(a, b);
-- error reporting: unresolved expression
select udf(a), udf(b) from values ("one", random_not_exist_func(1)), ("two", 2) as data(a, b);
-- error reporting: aggregate expression
select udf(a), udf(b) from values ("one", count(1)), ("two", 2) as data(a, b);
-- string to timestamp
select udf(a), b from values (timestamp('1991-12-06 00:00:00.0'), array(timestamp('1991-12-06 01:00:00.0'), timestamp('1991-12-06 12:00:00.0'))) as data(a, b);
| SQL | 4 | OlegPt/spark | sql/core/src/test/resources/sql-tests/inputs/udf/udf-inline-table.sql | [
"Apache-2.0"
] |
// @declaration: true
module foo {
export interface IFoo<T> { }
}
module bar {
export class Foo<T> implements foo.IFoo<T> { }
}
| TypeScript | 4 | nilamjadhav/TypeScript | tests/cases/compiler/genericClassImplementingGenericInterfaceFromAnotherModule.ts | [
"Apache-2.0"
] |
@import '../../style/themes/index';
.@{list-prefix-cls}-bordered {
border: 1px solid @border-color-base;
border-radius: @border-radius-base;
.@{list-prefix-cls}-header {
padding-right: @padding-lg;
padding-left: @padding-lg;
}
.@{list-prefix-cls}-footer {
padding-right: @padding-lg;
padding-left: @padding-lg;
}
.@{list-prefix-cls}-item {
padding-right: @padding-lg;
padding-left: @padding-lg;
}
.@{list-prefix-cls}-pagination {
margin: @margin-md @margin-lg;
}
&.@{list-prefix-cls}-sm {
.@{list-prefix-cls}-item {
padding: @list-item-padding-sm;
}
.@{list-prefix-cls}-header,
.@{list-prefix-cls}-footer {
padding: @list-item-padding-sm;
}
}
&.@{list-prefix-cls}-lg {
.@{list-prefix-cls}-item {
padding: @list-item-padding-lg;
}
.@{list-prefix-cls}-header,
.@{list-prefix-cls}-footer {
padding: @list-item-padding-lg;
}
}
}
| Less | 3 | noctis0430-open-source/ant-design-blazor | components/list/style/bordered.less | [
"MIT"
] |
# hash table
#
# ht[0] = allocated size
# ht[1] = number of used slots
# ht[2..] = table
#
# each element of the table is 2 words: the first word is a pointer to the key
# (or 0 if the element is unused); the second word is the value
#
# the "key"s are strings that are *not* strdup()'d, so they need to be
# immutable and not free()'d until after you've finished using the hash table
include "malloc.sl";
include "stdlib.sl";
include "string.sl";
var htnew = func() {
var ht = malloc(3);
ht[0] = 32;
ht[1] = 0;
ht[2] = malloc(64); # 2x htsize because each element is 2 words
memset(ht[2], 0, 64);
return ht;
};
var htfree = func(ht) {
free(ht[2]);
free(ht);
};
var htsize = func(ht) {
return ht[0];
};
var htused = func(ht) {
return ht[1];
};
var htput;
var htgrow = func(ht) {
# XXX: this is a bit horrid; we create a new hash table,
# hack its size, insert all of our elements into it, then
# swap the arrays and sizes, then free the spare
var newht = htnew();
free(newht[2]);
var newsize = htsize(ht)+htsize(ht);
var newarr = malloc(newsize+newsize);
memset(newarr, 0, newsize+newsize);
newht[0] = newsize;
newht[2] = newarr;
var i = 0;
var p;
while (i != htsize(ht)) {
p = ht[2]+i+i;
if (*p)
htput(newht, p[0], p[1]);
i++;
};
# now "newht" has all the elements, we want to swap its
# array with ours and free it
newht[2] = ht[2];
htfree(newht);
ht[0] = newsize;
ht[2] = newarr;
};
# usage: hashstr(str)
# djb2 hash function: http://www.cse.yorku.ca/~oz/hash.html
# constant changed from 5381 to 19997 because empirically it results in faster assembly of kernel
var hashstr = asm {
pop x
ld r1, x # str
ld r0, 19997 # h
hashstr_loop:
# while (*str)
test (r1)
jz hashstr_ret
# h = 33*h
ld x, r0
shl3 x
shl2 x
add r0, x
# + *(str++)
ld x, (r1++)
add r0, x
jmp hashstr_loop
hashstr_ret:
ret
};
# return pointer to slot in ht for key
# (mainly for "internal" use - library users probably want htget/htput)
#var htfind = func(ht, key) {
# var n = hashstr(key);
# # idx = n mod htsize
# var idx = n & (htsize(ht)-1);
#
# # linear probe to find the key, or the next free slot
# var p = ht[2]+idx+idx;
# var endp = ht[2]+htsize(ht)+htsize(ht);
# while (*p) {
# if (strcmp(key, *p) == 0) break; # found
# p = p + 2;
# if (p == endp) p = ht[2];
# };
#
# return p;
#};
# usage: htfind(ht, key)
var htfind = asm {
# store return address
ld (htfind_ret), r254
pop x
ld (htfind_key), x
pop x
ld (htfind_ht), x
# n = hashstr(key)
ld x, (htfind_key)
push x
call (_hashstr)
ld (htfind_n), r0
# s = htsize(ht)
ld x, (htfind_ht)
push x
call (_htsize)
ld (htfind_s), r0
# idx = n & (s-1)
ld x, (htfind_s)
dec x
and x, (htfind_n)
ld (htfind_idx), x
# p = ht[2]+idx+idx
ld x, (htfind_ht)
add x, 2
ld x, (x)
add x, (htfind_idx)
add x, (htfind_idx)
ld (htfind_p), x
# endp = ht[2]+s+s
ld x, (htfind_ht)
add x, 2
ld x, (x)
add x, (htfind_s)
add x, (htfind_s)
ld (htfind_endp), x
# while(*p)
htfind_loop:
ld x, (htfind_p)
test (x)
jz htfind_done
# if (strcmp(key, *p) == 0) break; # found
ld x, (htfind_key)
push x
ld x, (htfind_p)
ld x, (x)
push x
call (_strcmp)
test r0
jz htfind_done
# p = p + 2;
add (htfind_p), 2
# if (p == endp) p = ht[2];
ld x, (htfind_p)
sub x, (htfind_endp)
jnz htfind_loop
ld x, (htfind_ht)
add x, 2
ld x, (x)
ld (htfind_p), x
jmp htfind_loop
htfind_done:
# return p
ld r0, (htfind_p)
jmp (htfind_ret)
htfind_ht: .word 0
htfind_key: .word 0
htfind_ret: .word 0
htfind_n: .word 0
htfind_s: .word 0
htfind_idx: .word 0
htfind_p: .word 0
htfind_endp: .word 0
};
# return [key,val] for "key", if found, or 0 otherwise
var htgetkv = func(ht, key) {
var p = htfind(ht, key);
if (*p) return p;
return 0;
};
# return val for "key" if found, or 0 otherwise
# (you need to use htgetkv() to distinguish "not found" from "val == 0")
var htget = func(ht, key) {
var p = htfind(ht, key);
if (*p) return p[1];
return 0;
};
# htput() but skipping the htfind() where possible, using the "p" pointer
# already passed in
var htputp = func(ht, p, key, val) {
# create more space if 75% full
var used = htused(ht);
var size = htsize(ht);
if (used+used+used+used gt size+size+size) {
htgrow(ht);
p = htfind(ht, key);
};
if (!*p) ht[1] = ht[1] + 1;
p[0] = key;
p[1] = val;
};
# "key" is a string
htput = func(ht, key, val) {
# create more space if 75% full
var used = htused(ht);
var size = htsize(ht);
if (used+used+used+used gt size+size+size)
htgrow(ht);
var p = htfind(ht, key);
if (!*p) ht[1] = ht[1] + 1;
p[0] = key;
p[1] = val;
};
# call cb(key, val) for each element of the table
var htwalk = func(ht, cb) {
var i = 0;
var p;
while (i < htsize(ht)) {
p = ht[2]+i+i;
if (*p) cb(*p, p[1]);
i++;
};
};
| Slash | 5 | jes/scamp-cpu | sys/lib/hash.sl | [
"Unlicense"
] |
-- Collections
macroScript RigidBodyCollection category:"Reactor Toolbar" tooltip:"Rigid Body Collection" Icon:#("Reactor",2)
(
StartObjectCreation HKRBCollection
)
macroScript ClothCollection category:"Reactor Toolbar" tooltip:"Cloth Collection" Icon:#("Reactor",17)
(
StartObjectCreation HKCLCollection
)
macroScript SoftBodyCollection category:"Reactor Toolbar" tooltip:"Soft Body Collection" Icon:#("Reactor",12)
(
StartObjectCreation HKSBCollection
)
macroScript RopeCollection category:"Reactor Toolbar" tooltip:"Rope Collection" Icon:#("Reactor",1)
(
StartObjectCreation HKRPCollection
-- MessageBox "This feature is coming soon..." title:"Coming soon..."
)
macroScript DefMeshCollection category:"Reactor Toolbar" tooltip:"Deforming Mesh Collection" Icon:#("Reactor",30)
(
StartObjectCreation HKDMCollection
-- MessageBox "This feature is coming soon..." title:"Coming soon..."
)
-- Helpers
macroScript SpringSystem category:"Reactor Toolbar" tooltip:"Spring System" Icon:#("Reactor",5)
(
StartObjectCreation HKSpring
)
macroScript DashpotSystem category:"Reactor Toolbar" tooltip:"Dashpot System" Icon:#("Reactor",6)
(
StartObjectCreation HKDashpot
)
macroScript ConstraintSolverSystem category:"Reactor Toolbar" tooltip:"Constraint Solver System" Icon:#("Reactor",11)
(
StartObjectCreation HKConstraintSolver
)
macroScript PointPointConstraint category:"Reactor Toolbar" tooltip:"Point-Point Constraint" Icon:#("Reactor",8)
(
StartObjectCreation HKPointToPoint
)
macroScript PointNailConstraint category:"Reactor Toolbar" tooltip:"Point-Nail Constraint" Icon:#("Reactor",9)
(
StartObjectCreation HKPointToNail
)
macroScript PointPathConstraint category:"Reactor Toolbar" tooltip:"Point-Path Constraint" Icon:#("Reactor",10)
(
StartObjectCreation HKPointToPath
)
macroScript PlanePrimitive category:"Reactor Toolbar" tooltip:"Plane Primitive" Icon:#("Reactor",4)
(
StartObjectCreation HKPlane
)
macroScript ToyCarSystem category:"Reactor Toolbar" tooltip:"Toy Car System" Icon:#("Reactor",13)
(
StartObjectCreation HKToyCar
--MessageBox "This feature is coming soon" title:"Coming soon..."
)
macroScript WindSystem category:"Reactor Toolbar" tooltip:"Wind System" Icon:#("Reactor",15)
(
StartObjectCreation HKWind
)
macroScript MotorSystem category:"Reactor Toolbar" tooltip:"Motor System" Icon:#("Reactor",16)
(
StartObjectCreation HKMotor
)
macroScript FractureSystem category:"Reactor Toolbar" tooltip:"Fracture System" Icon:#("Reactor",27)
(
StartObjectCreation HKFracture
)
-- WSM Modifiers
macroScript WaterSystem category:"Reactor Toolbar" tooltip:"Water WSM System" Icon:#("Reactor",14)
(
StartObjectCreation HKWaterWSMObject
)
-- Commands
macroScript HKShowInWindow category:"Reactor Toolbar" tooltip:"Show in Window" Icon:#("Reactor",23)
(
HavokShowInWindow()
)
macroScript HKPerformSimulation category:"Reactor Toolbar" tooltip:"Perform Simulation" Icon:#("Reactor",24)
(
HavokPerformSimulation()
)
macroScript HKAnalyzeWorld category:"Reactor Toolbar" tooltip:"Analyze World" Icon:#("Reactor",25)
(
HavokAnalyzeWorld()
)
macroScript HKExportWorld category:"Reactor Toolbar" tooltip:"Export World" Icon:#("Reactor",26)
(
HavokExportWorld()
-- MessageBox "This feature is available only for Havok Game Development Kit registered users" title:"Havok GDK"
)
-- Modifiers
macroScript HKClothModifier category:"Reactor Toolbar" tooltip:"Cloth Modifier" Icon:#("Reactor",20)
(
AddMod HKClothModifier
)
macroScript HKSoftBodyModifier category:"Reactor Toolbar" tooltip:"Soft Body Modifier" Icon:#("Reactor",19)
(
AddMod HKSoftBodyModifier
)
macroScript HKRopeModifier category:"Reactor Toolbar" tooltip:"Rope Modifier" Icon:#("Reactor",18)
(
AddMod HKRopeModifier
-- MessageBox "This feature is coming soon" title:"Coming soon..."
)
macroScript HKAttachToRBModifier category:"Reactor Toolbar" tooltip:"Attach To RigidBody Modifier" Icon:#("Reactor",21)
(
AddMod HKAttachToRBModifier
)
| MAXScript | 4 | 89096000/MaxScript | Modelling/softinstance/treeview/icons/Reactor.mcr | [
"MIT"
] |
//===--- ReborrowVerifier.cpp ---------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "sil-reborrow-checker"
#include "ReborrowVerifierPrivate.h"
using namespace swift;
bool ReborrowVerifier::verifyReborrowLifetime(SILPhiArgument *phiArg,
SILValue baseVal) {
bool result = false;
SmallVector<Operand *, 4> phiArgUses(phiArg->getUses());
// Verify whether the guaranteed phi arg lies within the lifetime of the base
// value.
LinearLifetimeChecker checker(deadEndBlocks);
// newErrorBuilder is consumed at the end of the checkValue function.
// Copy initial state from errorBuilder everytime
LinearLifetimeChecker::ErrorBuilder newErrorBuilder = errorBuilder;
SmallVector<Operand *, 4> baseValConsumingUses(baseVal->getConsumingUses());
// If the baseValue has no consuming uses, there is nothing more to verify
if (baseValConsumingUses.empty())
return false;
auto linearLifetimeResult = checker.checkValue(baseVal, baseValConsumingUses,
phiArgUses, newErrorBuilder);
result |= linearLifetimeResult.getFoundError();
return result;
}
void ReborrowVerifier::verifyReborrows(BorrowingOperand initialScopedOperand,
SILValue value) {
auto visitReborrowBaseValuePair = [&](SILPhiArgument *phiArg,
SILValue baseValue) {
// If the (phiArg, baseValue) pair was not visited before, verify the
// lifetime.
auto it = reborrowToBaseValuesMap.find(phiArg);
if (it == reborrowToBaseValuesMap.end() ||
it->second.find(baseValue) == it->second.end()) {
reborrowToBaseValuesMap[phiArg].insert(baseValue);
verifyReborrowLifetime(phiArg, baseValue);
}
};
// For every unique reborrow/base value pair, verify the lifetime
findTransitiveReborrowBaseValuePairs(initialScopedOperand, value,
visitReborrowBaseValuePair);
}
| C++ | 5 | gandhi56/swift | lib/SIL/Verifier/ReborrowVerifier.cpp | [
"Apache-2.0"
] |
`define TEST(kwd) \
kwd kwd``_1; \
kwd kwd``_2; \
initial kwd``_1 = 1; \
assign kwd``_2 = 1;
`define TEST_VAR(kwd) \
var kwd var_``kwd``_1; \
var kwd var_``kwd``_2; \
initial var_``kwd``_1 = 1; \
assign var_``kwd``_2 = 1;
`define TEST_WIRE(kwd) \
wire kwd wire_``kwd``_1; \
wire kwd wire_``kwd``_2; \
initial wire_``kwd``_1 = 1; \
assign wire_``kwd``_2 = 1;
module top;
`TEST(wire) // wire assigned in a block
`TEST(reg) // reg assigned in a continuous assignment
`TEST(logic)
`TEST(integer)
`TEST_VAR(reg) // reg assigned in a continuous assignment
`TEST_VAR(logic)
`TEST_VAR(integer)
`TEST_WIRE(logic) // wire assigned in a block
`TEST_WIRE(integer) // wire assigned in a block
endmodule
| SystemVerilog | 3 | gudeh/yosys | tests/verilog/wire_and_var.sv | [
"ISC"
] |
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2010-2020. 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.
%%
%% %CopyrightEnd%
%%
-module(relay).
%%
%% An example Diameter relay agent.
%%
%% Simplets usage to connect to a server listening on TCP at
%% 127.0.0.1:3868 and listen for connections on TCP at the same
%% endpoint:
%%
%% relay:start().
%% relay:connect(tcp).
%% relay:listen(sctp).
%%
%% Interface.
-export([start/1,
start/2,
listen/2,
connect/2,
stop/1]).
%% Convenience functions using the default service name.
-export([start/0,
listen/1,
connect/1,
stop/0]).
%% Default service name.
-define(DEF_SVC_NAME, ?MODULE).
%% Service configuration.
-define(SERVICE(Name), [{'Origin-Host', atom_to_list(Name) ++ ".example.com"},
{'Origin-Realm', "example.com"},
{'Vendor-Id', 193},
{'Product-Name', "RelayAgent"},
{'Auth-Application-Id', [16#FFFFFFFF]},
{decode_format, map},
{restrict_connections, false},
{string_decode, false},
{strict_mbit, false},
{application, [{alias, relay},
{dictionary, diameter_gen_relay},
{module, relay_cb},
{call_mutates_state, false}]}]).
%% start/2
start(Name, Opts) ->
Defaults = [T || {K,_} = T <- ?SERVICE(Name),
not lists:keymember(K, 1, Opts)],
diameter:start_service(Name, Opts ++ Defaults).
%% start/1
start(Opts) ->
start(?DEF_SVC_NAME, Opts).
%% start/0
start() ->
start(?DEF_SVC_NAME, []).
%% listen/2
listen(Name, Opts) ->
server:listen(Name, Opts).
%% listen/1
listen(Opts) ->
listen(?DEF_SVC_NAME, Opts).
%% connect/2
connect(Name, Opts) ->
client:connect(Name, Opts).
%% connect/1
connect(Opts) ->
connect(?DEF_SVC_NAME, Opts).
%% stop/1
stop(Name) ->
diameter:stop_service(Name).
%% stop/0
stop() ->
stop(?DEF_SVC_NAME).
| Erlang | 4 | jjhoo/otp | lib/diameter/examples/code/relay.erl | [
"Apache-2.0"
] |
.src-imports-style {
color: tan;
}
| CSS | 1 | laineus/vite | packages/playground/vue/src-import/style.css | [
"MIT"
] |
; Test strict multiplication of two f32s, producing an f64 result.
; FIXME: we do not have a strict version of fpext yet
;
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
declare float @foo()
declare double @llvm.experimental.constrained.fmul.f64(double, double, metadata, metadata)
; Check register multiplication.
define double @f1(float %f1, float %f2) #0 {
; CHECK-LABEL: f1:
; CHECK: mdebr %f0, %f2
; CHECK: br %r14
%f1x = fpext float %f1 to double
%f2x = fpext float %f2 to double
%res = call double @llvm.experimental.constrained.fmul.f64(
double %f1x, double %f2x,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
ret double %res
}
; Check the low end of the MDEB range.
define double @f2(float %f1, float *%ptr) #0 {
; CHECK-LABEL: f2:
; CHECK: mdeb %f0, 0(%r2)
; CHECK: br %r14
%f2 = load float, float *%ptr
%f1x = fpext float %f1 to double
%f2x = fpext float %f2 to double
%res = call double @llvm.experimental.constrained.fmul.f64(
double %f1x, double %f2x,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
ret double %res
}
; Check the high end of the aligned MDEB range.
define double @f3(float %f1, float *%base) #0 {
; CHECK-LABEL: f3:
; CHECK: mdeb %f0, 4092(%r2)
; CHECK: br %r14
%ptr = getelementptr float, float *%base, i64 1023
%f2 = load float, float *%ptr
%f1x = fpext float %f1 to double
%f2x = fpext float %f2 to double
%res = call double @llvm.experimental.constrained.fmul.f64(
double %f1x, double %f2x,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
ret double %res
}
; Check the next word up, which needs separate address logic.
; Other sequences besides this one would be OK.
define double @f4(float %f1, float *%base) #0 {
; CHECK-LABEL: f4:
; CHECK: aghi %r2, 4096
; CHECK: mdeb %f0, 0(%r2)
; CHECK: br %r14
%ptr = getelementptr float, float *%base, i64 1024
%f2 = load float, float *%ptr
%f1x = fpext float %f1 to double
%f2x = fpext float %f2 to double
%res = call double @llvm.experimental.constrained.fmul.f64(
double %f1x, double %f2x,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
ret double %res
}
; Check negative displacements, which also need separate address logic.
define double @f5(float %f1, float *%base) #0 {
; CHECK-LABEL: f5:
; CHECK: aghi %r2, -4
; CHECK: mdeb %f0, 0(%r2)
; CHECK: br %r14
%ptr = getelementptr float, float *%base, i64 -1
%f2 = load float, float *%ptr
%f1x = fpext float %f1 to double
%f2x = fpext float %f2 to double
%res = call double @llvm.experimental.constrained.fmul.f64(
double %f1x, double %f2x,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
ret double %res
}
; Check that MDEB allows indices.
define double @f6(float %f1, float *%base, i64 %index) #0 {
; CHECK-LABEL: f6:
; CHECK: sllg %r1, %r3, 2
; CHECK: mdeb %f0, 400(%r1,%r2)
; CHECK: br %r14
%ptr1 = getelementptr float, float *%base, i64 %index
%ptr2 = getelementptr float, float *%ptr1, i64 100
%f2 = load float, float *%ptr2
%f1x = fpext float %f1 to double
%f2x = fpext float %f2 to double
%res = call double @llvm.experimental.constrained.fmul.f64(
double %f1x, double %f2x,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
ret double %res
}
; Check that multiplications of spilled values can use MDEB rather than MDEBR.
define float @f7(float *%ptr0) #0 {
; CHECK-LABEL: f7:
; CHECK: brasl %r14, foo@PLT
; CHECK: mdeb %f0, 16{{[04]}}(%r15)
; CHECK: br %r14
%ptr1 = getelementptr float, float *%ptr0, i64 2
%ptr2 = getelementptr float, float *%ptr0, i64 4
%ptr3 = getelementptr float, float *%ptr0, i64 6
%ptr4 = getelementptr float, float *%ptr0, i64 8
%ptr5 = getelementptr float, float *%ptr0, i64 10
%ptr6 = getelementptr float, float *%ptr0, i64 12
%ptr7 = getelementptr float, float *%ptr0, i64 14
%ptr8 = getelementptr float, float *%ptr0, i64 16
%ptr9 = getelementptr float, float *%ptr0, i64 18
%ptr10 = getelementptr float, float *%ptr0, i64 20
%val0 = load float, float *%ptr0
%val1 = load float, float *%ptr1
%val2 = load float, float *%ptr2
%val3 = load float, float *%ptr3
%val4 = load float, float *%ptr4
%val5 = load float, float *%ptr5
%val6 = load float, float *%ptr6
%val7 = load float, float *%ptr7
%val8 = load float, float *%ptr8
%val9 = load float, float *%ptr9
%val10 = load float, float *%ptr10
%frob0 = fadd float %val0, %val0
%frob1 = fadd float %val1, %val1
%frob2 = fadd float %val2, %val2
%frob3 = fadd float %val3, %val3
%frob4 = fadd float %val4, %val4
%frob5 = fadd float %val5, %val5
%frob6 = fadd float %val6, %val6
%frob7 = fadd float %val7, %val7
%frob8 = fadd float %val8, %val8
%frob9 = fadd float %val9, %val9
%frob10 = fadd float %val9, %val10
store float %frob0, float *%ptr0
store float %frob1, float *%ptr1
store float %frob2, float *%ptr2
store float %frob3, float *%ptr3
store float %frob4, float *%ptr4
store float %frob5, float *%ptr5
store float %frob6, float *%ptr6
store float %frob7, float *%ptr7
store float %frob8, float *%ptr8
store float %frob9, float *%ptr9
store float %frob10, float *%ptr10
%ret = call float @foo() #0
%accext0 = fpext float %ret to double
%ext0 = fpext float %frob0 to double
%mul0 = call double @llvm.experimental.constrained.fmul.f64(
double %accext0, double %ext0,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra0 = call double @llvm.experimental.constrained.fmul.f64(
double %mul0, double 1.01,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc0 = fptrunc double %extra0 to float
%accext1 = fpext float %trunc0 to double
%ext1 = fpext float %frob1 to double
%mul1 = call double @llvm.experimental.constrained.fmul.f64(
double %accext1, double %ext1,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra1 = call double @llvm.experimental.constrained.fmul.f64(
double %mul1, double 1.11,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc1 = fptrunc double %extra1 to float
%accext2 = fpext float %trunc1 to double
%ext2 = fpext float %frob2 to double
%mul2 = call double @llvm.experimental.constrained.fmul.f64(
double %accext2, double %ext2,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra2 = call double @llvm.experimental.constrained.fmul.f64(
double %mul2, double 1.21,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc2 = fptrunc double %extra2 to float
%accext3 = fpext float %trunc2 to double
%ext3 = fpext float %frob3 to double
%mul3 = call double @llvm.experimental.constrained.fmul.f64(
double %accext3, double %ext3,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra3 = call double @llvm.experimental.constrained.fmul.f64(
double %mul3, double 1.31,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc3 = fptrunc double %extra3 to float
%accext4 = fpext float %trunc3 to double
%ext4 = fpext float %frob4 to double
%mul4 = call double @llvm.experimental.constrained.fmul.f64(
double %accext4, double %ext4,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra4 = call double @llvm.experimental.constrained.fmul.f64(
double %mul4, double 1.41,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc4 = fptrunc double %extra4 to float
%accext5 = fpext float %trunc4 to double
%ext5 = fpext float %frob5 to double
%mul5 = call double @llvm.experimental.constrained.fmul.f64(
double %accext5, double %ext5,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra5 = call double @llvm.experimental.constrained.fmul.f64(
double %mul5, double 1.51,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc5 = fptrunc double %extra5 to float
%accext6 = fpext float %trunc5 to double
%ext6 = fpext float %frob6 to double
%mul6 = call double @llvm.experimental.constrained.fmul.f64(
double %accext6, double %ext6,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra6 = call double @llvm.experimental.constrained.fmul.f64(
double %mul6, double 1.61,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc6 = fptrunc double %extra6 to float
%accext7 = fpext float %trunc6 to double
%ext7 = fpext float %frob7 to double
%mul7 = call double @llvm.experimental.constrained.fmul.f64(
double %accext7, double %ext7,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra7 = call double @llvm.experimental.constrained.fmul.f64(
double %mul7, double 1.71,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc7 = fptrunc double %extra7 to float
%accext8 = fpext float %trunc7 to double
%ext8 = fpext float %frob8 to double
%mul8 = call double @llvm.experimental.constrained.fmul.f64(
double %accext8, double %ext8,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra8 = call double @llvm.experimental.constrained.fmul.f64(
double %mul8, double 1.81,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc8 = fptrunc double %extra8 to float
%accext9 = fpext float %trunc8 to double
%ext9 = fpext float %frob9 to double
%mul9 = call double @llvm.experimental.constrained.fmul.f64(
double %accext9, double %ext9,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%extra9 = call double @llvm.experimental.constrained.fmul.f64(
double %mul9, double 1.91,
metadata !"round.dynamic",
metadata !"fpexcept.strict") #0
%trunc9 = fptrunc double %extra9 to float
ret float %trunc9
}
attributes #0 = { strictfp }
| LLVM | 5 | arunkumarbhattar/llvm | test/CodeGen/SystemZ/fp-strict-mul-02.ll | [
"Apache-2.0"
] |
<%--
Copyright 2012 Netflix, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--%>
<tr class="prop">
<td class="name">Tags:</td>
<td class="value">
<table>
<g:each var="tag" in="${entity.tags}">
<tr class="prop">
<td><pre>${tag.key}</pre></td>
<td>=</td>
<td><pre>${tag.value}</pre></td>
</tr>
</g:each>
</table>
</td>
</tr>
| Groovy Server Pages | 4 | michaelneale/asgard | grails-app/views/common/_showTags.gsp | [
"Apache-2.0"
] |
#
# Copyright (c) 2020-2021 Alex Spataru <https://github.com/alex-spataru>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
TRANSLATIONS += \
$$PWD/translations/en.ts \
$$PWD/translations/es.ts \
$$PWD/translations/zh.ts \
$$PWD/translations/de.ts \
$$PWD/translations/ru.ts
RESOURCES += \
$$PWD/Resources.qrc
DISTFILES += \
$$PWD/qml/Dashboard/DashboardTitle.qml \
$$PWD/qml/Dashboard/ViewOptions.qml \
$$PWD/qml/Dashboard/ViewOptionsDelegate.qml \
$$PWD/qml/Dashboard/WidgetDelegate.qml \
$$PWD/qml/Dashboard/WidgetGrid.qml \
$$PWD/qml/Dashboard/WidgetModel.qml \
$$PWD/qml/JsonEditor/Footer.qml \
$$PWD/qml/JsonEditor/GroupEditor.qml \
$$PWD/qml/JsonEditor/Header.qml \
$$PWD/qml/JsonEditor/JsonDatasetDelegate.qml \
$$PWD/qml/JsonEditor/JsonGroupDelegate.qml \
$$PWD/qml/JsonEditor/TreeView.qml \
$$PWD/qml/Panes/Console.qml \
$$PWD/qml/Panes/Dashboard.qml \
$$PWD/qml/Panes/Setup.qml \
$$PWD/qml/Panes/SetupPanes/MQTT.qml \
$$PWD/qml/Panes/SetupPanes/Network.qml \
$$PWD/qml/Panes/SetupPanes/Serial.qml \
$$PWD/qml/Panes/SetupPanes/Settings.qml \
$$PWD/qml/Panes/Toolbar.qml \
$$PWD/qml/PlatformDependent/DecentMenuItem.qml \
$$PWD/qml/PlatformDependent/Menubar.qml \
$$PWD/qml/PlatformDependent/MenubarMacOS.qml \
$$PWD/qml/Widgets/Icon.qml \
$$PWD/qml/Widgets/JSONDropArea.qml \
$$PWD/qml/Widgets/LED.qml \
$$PWD/qml/Widgets/Shadow.qml \
$$PWD/qml/Widgets/Window.qml \
$$PWD/qml/Windows/About.qml \
$$PWD/qml/Windows/Acknowledgements.qml \
$$PWD/qml/Windows/CsvPlayer.qml \
$$PWD/qml/Windows/Donate.qml \
$$PWD/qml/Windows/JsonEditor.qml \
$$PWD/qml/Windows/MainWindow.qml \
$$PWD/qml/main.qml
| QMake | 1 | Serial-Studio/Serial-Studio | assets/Assets.pri | [
"MIT"
] |
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
MODULE = Hash::Util PACKAGE = Hash::Util
SV*
all_keys(hash,keys,placeholder)
SV* hash
SV* keys
SV* placeholder
PROTOTYPE: \%\@\@
PREINIT:
AV* av_k;
AV* av_p;
HV* hv;
SV *key;
HE *he;
CODE:
if (!SvROK(hash) || SvTYPE(SvRV(hash)) != SVt_PVHV)
croak("First argument to all_keys() must be an HASH reference");
if (!SvROK(keys) || SvTYPE(SvRV(keys)) != SVt_PVAV)
croak("Second argument to all_keys() must be an ARRAY reference");
if (!SvROK(placeholder) || SvTYPE(SvRV(placeholder)) != SVt_PVAV)
croak("Third argument to all_keys() must be an ARRAY reference");
hv = (HV*)SvRV(hash);
av_k = (AV*)SvRV(keys);
av_p = (AV*)SvRV(placeholder);
av_clear(av_k);
av_clear(av_p);
(void)hv_iterinit(hv);
while((he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))!= NULL) {
key=hv_iterkeysv(he);
if (HeVAL(he) == &PL_sv_placeholder) {
SvREFCNT_inc(key);
av_push(av_p, key);
} else {
SvREFCNT_inc(key);
av_push(av_k, key);
}
}
RETVAL=hash;
void
hidden_ref_keys(hash)
SV* hash
PREINIT:
HV* hv;
SV *key;
HE *he;
PPCODE:
if (!SvROK(hash) || SvTYPE(SvRV(hash)) != SVt_PVHV)
croak("First argument to hidden_keys() must be an HASH reference");
hv = (HV*)SvRV(hash);
(void)hv_iterinit(hv);
while((he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))!= NULL) {
key=hv_iterkeysv(he);
if (HeVAL(he) == &PL_sv_placeholder) {
XPUSHs( key );
}
}
void
legal_ref_keys(hash)
SV* hash
PREINIT:
HV* hv;
SV *key;
HE *he;
PPCODE:
if (!SvROK(hash) || SvTYPE(SvRV(hash)) != SVt_PVHV)
croak("First argument to legal_keys() must be an HASH reference");
hv = (HV*)SvRV(hash);
(void)hv_iterinit(hv);
while((he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))!= NULL) {
key=hv_iterkeysv(he);
XPUSHs( key );
}
void
hv_store(hvref, key, val)
SV* hvref
SV* key
SV* val
PROTOTYPE: \%$$
PREINIT:
HV* hv;
CODE:
{
if (!SvROK(hvref) || SvTYPE(SvRV(hvref)) != SVt_PVHV)
croak("First argument to hv_store() must be a hash reference");
hv = (HV*)SvRV(hvref);
SvREFCNT_inc(val);
if (!hv_store_ent(hv, key, val, 0)) {
SvREFCNT_dec(val);
XSRETURN_NO;
} else {
XSRETURN_YES;
}
}
| XS | 3 | vlinhd11/vlinhd11-android-scripting | perl/src/ext/Hash-Util/Util.xs | [
"Apache-2.0"
] |
-- Copyright 2020-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 json = require("json")
name = "CIRCL"
type = "api"
function start()
set_rate_limit(2)
end
function check()
local c
local cfg = datasrc_config()
if cfg ~= nil then
c = cfg.credentials
end
if (c ~= nil and c.username ~= nil and
c.password ~= nil and c.username ~= "" and c.password ~= "") then
return true
end
return false
end
function vertical(ctx, domain)
local c
local cfg = datasrc_config()
if cfg ~= nil then
c = cfg.credentials
end
if (c == nil or c.username == nil or
c.username == "" or c.password == nil or c.password == "") then
return
end
local resp, err = request(ctx, {
['url']="https://www.circl.lu/pdns/query/" .. domain,
id=c['username'],
pass=c['password'],
})
if (err ~= nil and err ~= "") then
log(ctx, "vertical request to service failed: " .. err)
return
end
for line in resp:gmatch("([^\n]*)\n?") do
local j = json.decode(line)
if (j ~= nil and j.rrname ~= nil and j.rrname ~= "") then
new_name(ctx, j.rrname)
if (j.rrtype ~= nil and (j.rrtype == "A" or j.rrtype == "AAAA")) then
new_addr(ctx, j.rdata, domain)
else
send_names(ctx, j.rdata)
end
end
end
end
| Ada | 3 | Elon143/Amass | resources/scripts/api/circl.ads | [
"Apache-2.0"
] |
val x = 0
val hello = "hello world"
val id = fn x => x
fun id' x = x
val () = print "hello world\n"
val _ = let
val hello = "hello"
val world = "world"
in
print (hello ^ " " ^ world ^ "\n")
end
fun isZero n =
if n = 0 then true
else false
fun isTrue b =
case b of
true => true
| false => false
exception Bad_value of string
fun isTrue' b =
case b of
true => true
| _ => raise (Bad_value "value is not true!")
val alwaysTrue =
isTrue' false handle Bad_value _ => true
datatype myBool = True | False
datatype shape = Square of real | Circle of real | Point
signature FOO = sig
val foo : 'a -> 'a
end
structure Foo :> FOO = struct
fun foo x = x
end
| Standard ML | 5 | JesseVermeulen123/bat | tests/syntax-tests/source/SML/sample.sml | [
"Apache-2.0",
"MIT"
] |
if (Ca.test(c.href) || Ba.test(c.href) && /(\\?|&)adurl=/.test(c.href) && !/(\\?|&)q=/.test(c.href)) / (\\ ? | & ) rct = j / .test(c.href) || (d += "&rct=j"), /(\\?|&)q=/.test(c.href) || (d += "&q=" + encodeURIComponent(W("q") || W("as_q") || A), d = d.substring(0, 1948 - c.href.length)), b = !0; | TypeScript | 1 | nilamjadhav/TypeScript | tests/cases/conformance/parser/ecmascript5/RegularExpressions/parserRegularExpression4.ts | [
"Apache-2.0"
] |
17 9 19 37 3 30 10 3 47 36 22 24 16 16 38 40 37 13 3 45
23 33 16 21 48 26 5 35 21 48 26 48 37 8 27 11 23 30 8 16
6 40 45 10 22 45 3 24 44 25 27 43 43 4 23 16 21 41 25 15
2 2 18
5 2 2 1 2 5 1 1 5 1 3 5 5 3 5 3 4 2 1 4
4 1 2 4 4 4 5 5 3 2 4 5 1 2 2 4 1 5 2 5 1 4 2 5 3 5 5 1 1 1
2 3 5 2 2 4 5 5 5 2 3 4 1 3 1 4 5 5 5 2 3 1 2 4 4 4 1 2 5 3
2 2 4 3 2 3 4 3 3 1 5 4 2 3 1 5 3 2 5 3 5 1 3 3 2 2 3 2 2 1
1 3 5 5 5 1 4 1 3 3 5 1 2 4 4 3 5 5 1 3 4 1 3 5 5 5 1 3 3 4
2 1 1 3 3 3 4 3 2 4 1 2 4 2 1 4 5 1 1 5 5 2 3 3 4 1 5 2 1 5
2 1 1 1 4 5 1 5 1 2 5 1 3 4 5 1 2 1 1 1 5 3 4 2 5 1 5 5 5 4
2 5 5 4 5 4 3 3 4 1 4 5 3 4 1 1 4 1 4 4 2 2 1 4 3 1 1 1 2 4
5 2 3 1 3 3 5 2 4 1 3 2 3 3 4 1 2 2 3 3 1 4 1 5 2 3 5 4 5 3
4 3 4 1 2 3 2 2 4 5 3 3 1 5 3 5 1 2 2 3 3 5 5 2 5 5 1 1 1 2
3 3 2 2 2 1 5 1 4 2 4 1 2 3 4 4 3 1 2 4 1 3 3 2 1 3 4 5 4 4
4 1 1 3 4 4 2 2 2 1 4 1 3 3 2 1 1 4 1 2 4 5 1 2 1 3 5 3 3 4
4 5 3 4 2 2 3 2 1 5 4 5 1 4 4 1 1 5 5 2 2 4 2 1 5 3 2 3 4 3
5 3 3 3 5 4 2 2 2 5 1 1 2 3 3 4 3 2 4 4 3 5 1 5 4 1 2 2 2 3
4 5 5 2 1 1 2 3 5 4 2 5 3 5 4 2 2 4 4 2 1 2 4 5 2 2 1 2 1 1
4 3 1 2 4 3 5 1 4 3 3 2 1 1 2 5 1 4 4 1 4 2 4 3 5 2 5 2 2 3
5 5 2 5 5 4 1 1 2 3 4 1 1 2 5 3 5 1 1 1 2 4 3 2 5 2 4 2 5 1
1 2 1 2 3 3 4 5 1 5 4 4 2 2 5 3 4 4 4 2 4 4 3 4 5 1 4 5 4 4
3 1 5 2 4 4 2 1 1 1 5 1 1 3 3 1 5 5 5 5 2 5 2 5 4 1 2 4 2 4
5 1 4 5 3 3 3 2 1 5 4 1 2 2 3 2 5 1 1 5 4 3 3 4 4 2 1 3 4 4
3 1 2 1 5 2 2 4 3 5 4 4 2 2 1 3 3 1 4 3 2 4 3 1 1 2 1 1 3 4
| Matlab | 0 | yinrun/LOPDC-Benchmarks | lofri/matlab/n20-m3-r30-22.matlab | [
"MIT"
] |
fn read_lines_borrowed<'a>() -> Vec<&'a str> {
let raw_lines: Vec<String> = vec!["foo ".to_string(), " bar".to_string()];
raw_lines.iter().map(|l| l.trim()).collect()
//~^ ERROR cannot return value referencing local variable `raw_lines`
}
fn main() {
println!("{:?}", read_lines_borrowed());
}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/dropck/drop-with-active-borrows-2.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
<?xml version="1.0" encoding="UTF-8"?>
<!-- ******************************************************************* -->
<!-- -->
<!-- © Copyright IBM Corp. 2010, 2012 -->
<!-- -->
<!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
<!-- you may not use this file except in compliance with the License. -->
<!-- You may obtain a copy of the License at: -->
<!-- -->
<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
<!-- -->
<!-- Unless required by applicable law or agreed to in writing, software -->
<!-- distributed under the License is distributed on an "AS IS" BASIS, -->
<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -->
<!-- implied. See the License for the specific language governing -->
<!-- permissions and limitations under the License. -->
<!-- -->
<!-- ******************************************************************* -->
<faces-config>
<faces-config-extension>
<namespace-uri>http://www.ibm.com/xsp/coreex</namespace-uri>
<default-prefix>xe</default-prefix>
<designer-extension>
<control-subpackage-name>layout</control-subpackage-name>
</designer-extension>
</faces-config-extension>
<complex-type>
<description>Layout with up to three areas at the top for titles and navigation links, a content area with up to three columns, and up to two footer areas.</description>
<display-name>OneUI Application Configuration</display-name>
<complex-id>com.ibm.xsp.extlib.component.layout.OneUIApplicationConfiguration</complex-id>
<complex-class>com.ibm.xsp.extlib.component.layout.OneUIApplicationConfiguration</complex-class>
<complex-extension>
<base-complex-id>com.ibm.xsp.extlib.component.layout.impl.BasicApplicationConfigurationImpl</base-complex-id>
<tag-name>oneuiApplication</tag-name>
</complex-extension>
</complex-type>
</faces-config>
| XPages | 3 | jesse-gallagher/XPagesExtensionLibrary | extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.oneui/src/com/ibm/xsp/extlib/config/raw-extlib-oneui-layout.xsp-config | [
"Apache-2.0"
] |
#%RAML 1.0
title: API for REST Services used in the RAML tutorials on Baeldung.com
documentation:
- title: Overview
content: |
This document defines the interface for the REST services
used in the popular RAML Tutorial series at Baeldung.com.
- title: Disclaimer
content: |
All names used in this definition are purely fictional.
Any similarities between the names used in this tutorial and those of real persons, whether living or dead, are merely coincidental.
- title: Copyright
content: Copyright 2016 by Baeldung.com. All rights reserved.
uses:
mySecuritySchemes: !include libraries/securitySchemes.raml
myDataTypes: !include libraries/dataTypes.raml
myTraits: !include libraries/traits.raml
myResourceTypes: !include libraries/resourceTypes.raml
version: v1
protocols: [ HTTPS ]
baseUri: http://rest-api.baeldung.com/api/{version}
mediaType: application/json
securedBy: [ mySecuritySchemes.basicAuth ]
annotationTypes:
testCase:
allowedTargets: [ Method ]
allowMultiple: true
usage: |
Use this annotation to declare a test case
within a testSuite declaration.
You may apply this annotation multiple times
within the target testSuite.
properties:
scenario: string
setupScript?: string[]
testScript: string[]
expectedOutput?: string
cleanupScript?: string[]
/foos:
type: myResourceTypes.collection
get:
queryParameters:
name?: string
ownerName?: string
responses:
200:
body:
example: !include examples/Foos.json
(testCase):
scenario: No Foos
setupScript: deleteAllFoosIfAny
testScript: getAllFoos
expectedOutput: ""
(testCase):
scenario: One Foo
setupScript: [ deleteAllFoosIfAny, addInputFoos ]
testScript: getAllFoos
expectedOutput: '[ { "id": 999, "name": Joe } ]'
cleanupScript: deleteInputFoos
(testCase):
scenario: Multiple Foos
setupScript: [ deleteAllFoosIfAny, addInputFoos ]
testScript: getAllFoos
expectedOutput: '[ { "id": 998, "name": "Bob" }, { "id": 999, "name": "Joe", "ownerName": "Bob" } ]'
cleanupScript: deleteInputFoos
post:
responses:
200:
body:
example: !include examples/Foo.json
/{fooId}:
type: myResourceTypes.item
get:
responses:
200:
body:
example: !include examples/Foo.json
put:
responses:
200:
body:
example: !include examples/Foo.json
/foos/name/{name}:
get:
description: Get all Foos with the name {name}
responses:
200:
body:
type: myDataTypes.Foo
404:
body:
type: myDataTypes.Error
/foos/bar/{barId}:
get:
description: Get the Foo for the Bar with barId = {barId}
responses:
200:
body:
example: !include examples/Foo.json
/bars:
type: myResourceTypes.collection
get:
queryParameters:
name?: string
ownerName?: string
responses:
200:
body:
example: !include examples/Bars.json
post:
responses:
200:
body:
example: !include examples/Bar.json
/{barId}:
type: myResourceTypes.item
get:
responses:
200:
body:
example: !include examples/Bar.json
put:
responses:
200:
body:
example: !include examples/Bars.json
| RAML | 4 | zeesh49/tutorials | raml/annotations/api.raml | [
"MIT"
] |
#tag Class
Protected Class UIFeedbackGenerator
Inherits NSObject
#tag Method, Flags = &h21
Private Sub Constructor()
// Calling the overridden superclass constructor.
// Note that this may need modifications if there are multiple constructor choices.
// Possible constructor calls:
// Constructor() -- From NSObject
// Constructor(ref as ptr) -- From NSObject
'Super.Constructor
//Making this private to not instantiate the superclass of UIFeedbackGenerator
End Sub
#tag EndMethod
#tag Method, Flags = &h0, Description = 5072657061726573207468652074617074696320656E67696E65
Sub Prepare()
Declare Sub prepare Lib UIKitLib selector "prepare" (obj_id As ptr)
prepare(self.id)
End Sub
#tag EndMethod
#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/UIKit/UIFeedbackGenerator.xojo_code | [
"MIT"
] |
include("${CMAKE_CURRENT_LIST_DIR}/OpenCV-WinRT.cmake")
# Adding additional using directory for WindowsPhone 8.0 to get Windows.winmd properly
if(WINRT_8_0)
set(OPENCV_EXTRA_CXX_FLAGS "${OPENCV_EXTRA_CXX_FLAGS} /AI\$(WindowsSDK_MetadataPath)")
endif()
| CMake | 3 | thisisgopalmandal/opencv | cmake/platforms/OpenCV-WindowsPhone.cmake | [
"BSD-3-Clause"
] |
MODULE MainModule
! Pose variables
CONST num NUMPOSES := {};
CONST jointtarget poses{{NUMPOSES}} :=
[
{}
];
! Main routine
PROC main()
ConfL\Off;
SingArea\Wrist;
! Go to start position
MoveAbsJ [[0, 0, 0, 0, 0, 0], [9E9, 9E9, 9E9, 9E9, 9E9, 9E9]], v100, fine, tool0;
! Go to programmed positions
FOR i FROM 1 TO NUMPOSES DO
MoveAbsJ poses{{i}}, v100, fine, tool0;
ENDFOR
! Go to end position
MoveAbsJ [[0, 0, 0, 0, 0, 0], [9E9, 9E9, 9E9, 9E9, 9E9, 9E9]], v100, fine, tool0;
Stop;
ENDPROC
ENDMODULE
| xBase | 3 | Bootsmaat/Mimic | mimic/scripts/postproc/ABB/RAPID/template_use_as_vars.prg | [
"MIT"
] |
<!DOCTYPE html>
<html class="{{ htmlClass }}" lang="en">
<head>
<title>{{ title }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="../../css/style.css?{{ cacheBuster }}" media="all" />
<link rel="stylesheet" href="../../css/pattern-scaffolding.css?{{ cacheBuster }}" media="all" />
<!-- Begin Pattern Lab (Required for Pattern Lab to run properly) -->
{{{ patternLabHead }}}
<!-- End Pattern Lab -->
</head>
<body class="{{ bodyClass }}">
| Liquid | 3 | renestalder/patternlab-node | packages/engine-liquid/_meta/_head.liquid | [
"MIT"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.