content stringlengths 4 1.04M | lang stringclasses 358 values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
quarkus.index-dependency.hello-sender.group-id=com.baeldung.quarkus
quarkus.index-dependency.hello-sender.artifact-id=hello-sender-application-properties
| INI | 2 | DBatOWL/tutorials | quarkus-jandex/hello-app/src/main/resources/application.properties | [
"MIT"
] |
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include "textflag.h"
// See memmove Go doc for important implementation constraints.
// Register map
//
// dstin R0
// src R1
// count R2
// dst R3 (same as R0, but gets modified in unaligned cases)
// srcend R4
// dstend R5
// data R6-R17
// tmp1 R14
// Copies are split into 3 main cases: small copies of up to 32 bytes, medium
// copies of up to 128 bytes, and large copies. The overhead of the overlap
// check is negligible since it is only required for large copies.
//
// Large copies use a software pipelined loop processing 64 bytes per iteration.
// The destination pointer is 16-byte aligned to minimize unaligned accesses.
// The loop tail is handled by always copying 64 bytes from the end.
// func memmove(to, from unsafe.Pointer, n uintptr)
TEXT runtime·memmove<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-24
#ifndef GOEXPERIMENT_regabiargs
MOVD to+0(FP), R0
MOVD from+8(FP), R1
MOVD n+16(FP), R2
#endif
CBZ R2, copy0
// Small copies: 1..16 bytes
CMP $16, R2
BLE copy16
// Large copies
CMP $128, R2
BHI copy_long
CMP $32, R2
BHI copy32_128
// Small copies: 17..32 bytes.
LDP (R1), (R6, R7)
ADD R1, R2, R4 // R4 points just past the last source byte
LDP -16(R4), (R12, R13)
STP (R6, R7), (R0)
ADD R0, R2, R5 // R5 points just past the last destination byte
STP (R12, R13), -16(R5)
RET
// Small copies: 1..16 bytes.
copy16:
ADD R1, R2, R4 // R4 points just past the last source byte
ADD R0, R2, R5 // R5 points just past the last destination byte
CMP $8, R2
BLT copy7
MOVD (R1), R6
MOVD -8(R4), R7
MOVD R6, (R0)
MOVD R7, -8(R5)
RET
copy7:
TBZ $2, R2, copy3
MOVWU (R1), R6
MOVWU -4(R4), R7
MOVW R6, (R0)
MOVW R7, -4(R5)
RET
copy3:
TBZ $1, R2, copy1
MOVHU (R1), R6
MOVHU -2(R4), R7
MOVH R6, (R0)
MOVH R7, -2(R5)
RET
copy1:
MOVBU (R1), R6
MOVB R6, (R0)
copy0:
RET
// Medium copies: 33..128 bytes.
copy32_128:
ADD R1, R2, R4 // R4 points just past the last source byte
ADD R0, R2, R5 // R5 points just past the last destination byte
LDP (R1), (R6, R7)
LDP 16(R1), (R8, R9)
LDP -32(R4), (R10, R11)
LDP -16(R4), (R12, R13)
CMP $64, R2
BHI copy128
STP (R6, R7), (R0)
STP (R8, R9), 16(R0)
STP (R10, R11), -32(R5)
STP (R12, R13), -16(R5)
RET
// Copy 65..128 bytes.
copy128:
LDP 32(R1), (R14, R15)
LDP 48(R1), (R16, R17)
CMP $96, R2
BLS copy96
LDP -64(R4), (R2, R3)
LDP -48(R4), (R1, R4)
STP (R2, R3), -64(R5)
STP (R1, R4), -48(R5)
copy96:
STP (R6, R7), (R0)
STP (R8, R9), 16(R0)
STP (R14, R15), 32(R0)
STP (R16, R17), 48(R0)
STP (R10, R11), -32(R5)
STP (R12, R13), -16(R5)
RET
// Copy more than 128 bytes.
copy_long:
ADD R1, R2, R4 // R4 points just past the last source byte
ADD R0, R2, R5 // R5 points just past the last destination byte
MOVD ZR, R7
MOVD ZR, R8
CMP $1024, R2
BLT backward_check
// feature detect to decide how to align
MOVBU runtime·arm64UseAlignedLoads(SB), R6
CBNZ R6, use_aligned_loads
MOVD R0, R7
MOVD R5, R8
B backward_check
use_aligned_loads:
MOVD R1, R7
MOVD R4, R8
// R7 and R8 are used here for the realignment calculation. In
// the use_aligned_loads case, R7 is the src pointer and R8 is
// srcend pointer, which is used in the backward copy case.
// When doing aligned stores, R7 is the dst pointer and R8 is
// the dstend pointer.
backward_check:
// Use backward copy if there is an overlap.
SUB R1, R0, R14
CBZ R14, copy0
CMP R2, R14
BCC copy_long_backward
// Copy 16 bytes and then align src (R1) or dst (R0) to 16-byte alignment.
LDP (R1), (R12, R13) // Load A
AND $15, R7, R14 // Calculate the realignment offset
SUB R14, R1, R1
SUB R14, R0, R3 // move dst back same amount as src
ADD R14, R2, R2
LDP 16(R1), (R6, R7) // Load B
STP (R12, R13), (R0) // Store A
LDP 32(R1), (R8, R9) // Load C
LDP 48(R1), (R10, R11) // Load D
LDP.W 64(R1), (R12, R13) // Load E
// 80 bytes have been loaded; if less than 80+64 bytes remain, copy from the end
SUBS $144, R2, R2
BLS copy64_from_end
loop64:
STP (R6, R7), 16(R3) // Store B
LDP 16(R1), (R6, R7) // Load B (next iteration)
STP (R8, R9), 32(R3) // Store C
LDP 32(R1), (R8, R9) // Load C
STP (R10, R11), 48(R3) // Store D
LDP 48(R1), (R10, R11) // Load D
STP.W (R12, R13), 64(R3) // Store E
LDP.W 64(R1), (R12, R13) // Load E
SUBS $64, R2, R2
BHI loop64
// Write the last iteration and copy 64 bytes from the end.
copy64_from_end:
LDP -64(R4), (R14, R15) // Load F
STP (R6, R7), 16(R3) // Store B
LDP -48(R4), (R6, R7) // Load G
STP (R8, R9), 32(R3) // Store C
LDP -32(R4), (R8, R9) // Load H
STP (R10, R11), 48(R3) // Store D
LDP -16(R4), (R10, R11) // Load I
STP (R12, R13), 64(R3) // Store E
STP (R14, R15), -64(R5) // Store F
STP (R6, R7), -48(R5) // Store G
STP (R8, R9), -32(R5) // Store H
STP (R10, R11), -16(R5) // Store I
RET
// Large backward copy for overlapping copies.
// Copy 16 bytes and then align srcend (R4) or dstend (R5) to 16-byte alignment.
copy_long_backward:
LDP -16(R4), (R12, R13)
AND $15, R8, R14
SUB R14, R4, R4
SUB R14, R2, R2
LDP -16(R4), (R6, R7)
STP (R12, R13), -16(R5)
LDP -32(R4), (R8, R9)
LDP -48(R4), (R10, R11)
LDP.W -64(R4), (R12, R13)
SUB R14, R5, R5
SUBS $128, R2, R2
BLS copy64_from_start
loop64_backward:
STP (R6, R7), -16(R5)
LDP -16(R4), (R6, R7)
STP (R8, R9), -32(R5)
LDP -32(R4), (R8, R9)
STP (R10, R11), -48(R5)
LDP -48(R4), (R10, R11)
STP.W (R12, R13), -64(R5)
LDP.W -64(R4), (R12, R13)
SUBS $64, R2, R2
BHI loop64_backward
// Write the last iteration and copy 64 bytes from the start.
copy64_from_start:
LDP 48(R1), (R2, R3)
STP (R6, R7), -16(R5)
LDP 32(R1), (R6, R7)
STP (R8, R9), -32(R5)
LDP 16(R1), (R8, R9)
STP (R10, R11), -48(R5)
LDP (R1), (R10, R11)
STP (R12, R13), -64(R5)
STP (R2, R3), 48(R0)
STP (R6, R7), 32(R0)
STP (R8, R9), 16(R0)
STP (R10, R11), (R0)
RET
| GAS | 4 | SSSDNSY/go | src/runtime/memmove_arm64.s | [
"BSD-3-Clause"
] |
REBOL [
Title: "Test successful compilations from Red/System programs"
File: %compiles-ok-test.r
License: "BSD-3 - https://github.com/dockimbel/Red/blob/master/BSD-3-License.txt"
]
change-dir %../ ;; revert to tests/ directory from runnable/
~~~start-file~~~ "compiles-ok"
===start-group=== "reported issues"
--test-- "issue #417"
--assert --compiled? {
Red/System[]
{
REBOL []
}
}
===end-group===
~~~end-file~~~
| R | 3 | 0xflotus/red | system/tests/source/compiler/compiles-ok-test.r | [
"BSL-1.0",
"BSD-3-Clause"
] |
#!/bin/bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
cd $DIR
# expose X to the container
xhost +local:root
docker pull ghcr.io/commaai/openpilot-sim:latest
OPENPILOT_DIR="/openpilot"
if ! [[ -z "$MOUNT_OPENPILOT" ]]
then
OPENPILOT_DIR="$(dirname $(dirname $DIR))"
EXTRA_ARGS="-v $OPENPILOT_DIR:$OPENPILOT_DIR -e PYTHONPATH=$OPENPILOT_DIR:$PYTHONPATH"
fi
docker run --net=host\
--name openpilot_client \
--rm \
-it \
--gpus all \
--device=/dev/dri:/dev/dri \
--device=/dev/input:/dev/input \
-v /tmp/.X11-unix:/tmp/.X11-unix \
--shm-size 1G \
-e DISPLAY=$DISPLAY \
-e QT_X11_NO_MITSHM=1 \
-w "$OPENPILOT_DIR/tools/sim" \
$EXTRA_ARGS \
ghcr.io/commaai/openpilot-sim:latest \
/bin/bash -c "./tmux_script.sh $*"
| Shell | 3 | briantran33/openpilot | tools/sim/start_openpilot_docker.sh | [
"MIT"
] |
globals
[
p-valids ; Valid Patches for moving not wall)
Start ; Starting patch
Final-Cost ; The final cost of the path given by A*
]
patches-own
[
father ; Previous patch in this partial path
Cost-path ; Stores the cost of the path to the current patch
visited? ; has the path been visited previously? That is,
; at least one path has been calculated going through this patch
active? ; is the patch active? That is, we have reached it, but
; we must consider it because its children have not been explored
]
; Prepares the world and starting point
to setup
ca
; Initial values of patches for A*
ask patches
[
set father nobody
set Cost-path 0
set visited? false
set active? false
]
; Generation of random obstacles
ask n-of 100 patches
[
set pcolor brown
ask patches in-radius random 10 [set pcolor brown]
]
; Se the valid patches (not wall)
set p-valids patches with [pcolor != brown]
; Create a random start
set Start one-of p-valids
ask Start [set pcolor white]
; Create a turtle to draw the path (when found)
crt 1
[
ht
set size 1
set pen-size 2
set shape "square"
]
end
; Patch report to estimate the total expected cost of the path starting from
; in Start, passing through it, and reaching the #Goal
to-report Total-expected-cost [#Goal]
report Cost-path + Heuristic #Goal
end
; Patch report to reurtn the heuristic (expected length) from the current patch
; to the #Goal
to-report Heuristic [#Goal]
report distance #Goal
end
; A* algorithm. Inputs:
; - #Start : starting point of the search.
; - #Goal : the goal to reach.
; - #valid-map : set of agents (patches) valid to visit.
; Returns:
; - If there is a path : list of the agents of the path.
; - Otherwise : false
to-report A* [#Start #Goal #valid-map]
; clear all the information in the agents
ask #valid-map with [visited?]
[
set father nobody
set Cost-path 0
set visited? false
set active? false
]
; Active the staring point to begin the searching loop
ask #Start
[
set father self
set visited? true
set active? true
]
; exists? indicates if in some instant of the search there are no options to
; continue. In this case, there is no path connecting #Start and #Goal
let exists? true
; The searching loop is executed while we don't reach the #Goal and we think
; a path exists
while [not [visited?] of #Goal and exists?]
[
; We only work on the valid pacthes that are active
let options #valid-map with [active?]
; If any
ifelse any? options
[
; Take one of the active patches with minimal expected cost
ask min-one-of options [Total-expected-cost #Goal]
[
; Store its real cost (to reach it) to compute the real cost
; of its children
let Cost-path-father Cost-path
; and deactivate it, because its children will be computed right now
set active? false
; Compute its valid neighbors
let valid-neighbors neighbors with [member? self #valid-map]
ask valid-neighbors
[
; There are 2 types of valid neighbors:
; - Those that have never been visited (therefore, the
; path we are building is the best for them right now)
; - Those that have been visited previously (therefore we
; must check if the path we are building is better or not,
; by comparing its expected length with the one stored in
; the patch)
; One trick to work with both type uniformly is to give for the
; first case an upper bound big enough to be sure that the new path
; will always be smaller.
let t ifelse-value visited? [ Total-expected-cost #Goal] [2 ^ 20]
; If this temporal cost is worse than the new one, we substitute the
; information in the patch to store the new one (with the neighbors
; of the first case, it will be always the case)
if t > (Cost-path-father + distance myself + Heuristic #Goal)
[
; The current patch becomes the father of its neighbor in the new path
set father myself
set visited? true
set active? true
; and store the real cost in the neighbor from the real cost of its father
set Cost-path Cost-path-father + distance father
set Final-Cost precision Cost-path 3
]
]
]
]
; If there are no more options, there is no path between #Start and #Goal
[
set exists? false
]
]
; After the searching loop, if there exists a path
ifelse exists?
[
; We extract the list of patches in the path, form #Start to #Goal
; by jumping back from #Goal to #Start by using the fathers of every patch
let current #Goal
set Final-Cost (precision [Cost-path] of #Goal 3)
let rep (list current)
While [current != #Start]
[
set current [father] of current
set rep fput current rep
]
report rep
]
[
; Otherwise, there is no path, and we return False
report false
]
end
; Axiliary procedure to lunch the A* algorithm between random patches
to Look-for-Goal
; Take one random Goal
let Goal one-of p-valids
; Compute the path between Start and Goal
let path A* Start Goal p-valids
; If any...
if path != false [
; Take a random color to the drawer turtle
ask turtle 0 [set color (lput 150 (n-values 3 [100 + random 155]))]
; Move the turtle on the path stamping its shape in every patch
foreach path [ p ->
ask turtle 0 [
move-to p
stamp] ]
; Set the Goal and the new Start point
set Start Goal
]
end
; Auxiliary procedure to clear the paths in the world
to clean
cd
ask patches with [pcolor != black and pcolor != brown] [set pcolor black]
ask Start [set pcolor white]
end
@#$#@#$#@
GRAPHICS-WINDOW
210
10
622
423
-1
-1
4.0
1
10
1
1
1
0
0
0
1
0
100
0
100
0
0
1
ticks
30.0
BUTTON
15
10
105
43
NIL
setup
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
BUTTON
110
10
195
43
Next
Look-for-Goal
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
MONITOR
120
400
195
445
NIL
Final-Cost
17
1
11
BUTTON
15
45
195
78
Clean Paths
clean
NIL
1
T
OBSERVER
NIL
NIL
NIL
NIL
1
@#$#@#$#@
@#$#@#$#@
default
true
0
Polygon -7500403 true true 150 5 40 250 150 205 260 250
square
true
0
Rectangle -7500403 true true 0 0 300 300
@#$#@#$#@
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 | 03. Informed Search/A-star patches.nlogo | [
"MIT"
] |
FROM golang:1.13
# setup the working directory
WORKDIR /go/src/github.com/hasura/graphql-engine/cli
| Dockerfile | 2 | gh-oss-contributor/graphql-engine-1 | cli/build/builder.dockerfile | [
"Apache-2.0",
"MIT"
] |
[error] this shouldn't be here
| TOML | 1 | vanillajonathan/julia | stdlib/TOML/test/testfiles/invalid/text-after-table.toml | [
"Zlib"
] |
# Copyright (c) 2022 Fyde Innovations Limited and the openFyde Authors.
# Distributed under the license specified in the root directory of this project.
EAPI="5"
EGIT_REPO_URI="https://github.com/FydeOS/kiosk-demo-app.git"
inherit git-r3
DESCRIPTION="Install demo app for Chromium OS for Raspberry Pi kiosk mode"
HOMEPAGE="https://fydeos.io"
LICENSE="BSD"
SLOT="0"
KEYWORDS="*"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
src_install() {
insinto /usr/local/share/kiosk_app
doins ${FILESDIR}/config.json
insinto /etc/init
doins ${FILESDIR}/system-services.override
insinto /usr/local/share/kiosk_app/kiosk-demo-app
doins -r *
}
| Gentoo Ebuild | 3 | FydeOS/chromium_os_for_raspberry_pi | project-cros-pi/chromeos-base/fyde-kiosk-demo/fyde-kiosk-demo-0.0.1.ebuild | [
"BSD-2-Clause"
] |
// Regression test for #69455: projection predicate was not satisfied.
// Compiler should indicate the correct location of the
// unsatisfied projection predicate
pub trait Test<Rhs = Self> {
type Output;
fn test(self, rhs: Rhs) -> Self::Output;
}
impl Test<u32> for u64 {
type Output = u64;
fn test(self, other: u32) -> u64 {
self + (other as u64)
}
}
impl Test<u64> for u64 {
type Output = u64;
fn test(self, other: u64) -> u64 {
(self + other) as u64
}
}
fn main() {
let xs: Vec<u64> = vec![1, 2, 3];
println!("{}", 23u64.test(xs.iter().sum())); //~ ERROR: type annotations needed
//~^ ERROR type annotations needed
}
| Rust | 4 | ohno418/rust | src/test/ui/issues/issue-69455.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
#!/usr/bin/perl -wT
use strict;
use CGI;
use Time::HiRes qw(sleep);
my $cgi = new CGI;
my $delay = $cgi->param('delay');
$delay = 5000 unless $delay;
# flush the buffers after each print
select (STDOUT);
$| = 1;
print "Content-Type: application/javascript\n";
print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\n";
print "Cache-Control: no-store, no-cache, must-revalidate\n";
print "Pragma: no-cache\n";
print "\n";
sleep $delay / 1000;
| Perl | 3 | zealoussnow/chromium | third_party/blink/web_tests/http/tests/resources/slow-script.pl | [
"BSD-3-Clause-No-Nuclear-License-2014",
"BSD-3-Clause"
] |
! Copyright (C) 2021 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: io.files.acls.macosx io.pathnames system tools.test ;
IN: io.files.acls.macosx.tests
{ } [ vm-path acls. ] unit-test
{ } [ home "Pictures" append-path acls. ] unit-test
| Factor | 3 | melted/factor | extra/io/files/acls/macosx/macosx-tests.factor | [
"BSD-2-Clause"
] |
/// Created with Android Studio.
/// User: 一晟
/// Date: 2019/1/20
/// Time: 上午11:34
/// email: zhu.yan@alibaba-inc.com
/// target: CupertinoIcons 的示例
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_go/resources/icon_names.dart' as icon_names;
// CupertinoIcons 默认的实例
class CupertinoIconsFullDefault extends StatefulWidget {
const CupertinoIconsFullDefault() : super();
@override
State<StatefulWidget> createState() => _CupertinoIconsFullDefault();
}
// CupertinoIcons 默认的实例,有状态
class _CupertinoIconsFullDefault extends State {
final colorsList = [];
final List<Widget> widgetList = [];
Widget rowView(IconData itA, IconData itB) {
//print('itA=====>${itA.fontPackage}');
return Row(
//mainAxisSize:MainAxisSize.max,
//crossAxisAlignment: CrossAxisAlignment.start,
//mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Expanded(
flex: 1,
child: CupertinoButton(
padding: EdgeInsets.only(left: 0),
onPressed: () {},
child: FlatButton.icon(
label: Text('默认按钮', semanticsLabel: 'Add'),
icon: Icon(
itA,
semanticLabel: 'Add',
),
onPressed: () {},
))),
Expanded(
flex: 1,
child: CupertinoButton(
padding: EdgeInsets.zero,
onPressed: () {},
child: FlatButton.icon(
label: Text('默认按钮', semanticsLabel: 'Add'),
icon: Icon(
itB,
semanticLabel: 'Add',
),
onPressed: () {},
))),
],
);
}
@override
void initState() {
super.initState();
final names = icon_names.CupertinoIIconNames.names;
for (var i = 0; i < names.length - 2; i++) {
if (i % 2 == 0) {
widgetList.add(rowView(names[i], names[i + 1]));
}
}
}
@override
Widget build(BuildContext context) {
return Align(
//alignment: Alignment.center,
//width: MediaQuery.of(context).size.width,
child: Column(
//verticalDirection: VerticalDirection.down,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: widgetList));
}
}
| Dart | 3 | kborid/flutter-go | lib/widgets/themes/Cupertino/CupertinoIcons/demo.dart | [
"BSD-3-Clause"
] |
#!/usr/bin/gnuplot -persist
set title "Boehm-GC: Optimized vs. non-Optimized (Full Mode)"
set xlabel "Interval #"
set ylabel "Pause Time [ms]"
set terminal pdfcairo transparent enhanced fontscale 0.5 size 5.00in, 3.00in
set output "GC_bench_full.pdf"
plot "boehm_full.txt" title "full GC" w i, "boehm_full_opt.txt" title "full GC (opt)" w i
set output
# EOF
| Gnuplot | 3 | gamemaker1/v | vlib/v/tests/bench/gcboehm/GC_bench_full.plt | [
"MIT"
] |
/*
* Copyright 2012 The Closure Library Authors. All Rights Reserved.
*
* Use of this source code is governed by the Apache License, Version 2.0.
* See the COPYING file for details.
*/
/*
* styling for goog.ui.menuBar and child buttons.
*
* @author tvykruta@google.com (Tomas Vykruta)
*/
.goog-menubar {
cursor: default;
outline: none;
position: relative;
white-space: nowrap;
background: #fff;
}
.goog-menubar .goog-menu-button {
padding: 1px 1px;
margin: 0px 0px;
outline: none;
border: none;
background: #fff;
/* @alternate */ border: 1px solid #fff;
}
.goog-menubar .goog-menu-button-dropdown {
display: none;
}
.goog-menubar .goog-menu-button-outer-box {
border: none;
}
.goog-menubar .goog-menu-button-inner-box {
border: none;
}
.goog-menubar .goog-menu-button-hover {
background: #eee;
border: 1px solid #eee;
}
.goog-menubar .goog-menu-button-open {
background: #fff;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
}
.goog-menubar .goog-menu-button-disabled {
color: #ccc;
}
| CSS | 3 | maze-runnar/modal-component | modal/node_modules/accessibility-developer-tools/lib/closure-library/closure/goog/css/menubar.css | [
"MIT"
] |
quiet
silent
ninja
loud
| Dogescript | 0 | joeratt/dogescript | test/spec/shh/shh-multi/source.djs | [
"MIT"
] |
0135T231380104121042882201810151120NCitadel Wells Fargo US
100123138010412104288220181015201810151120IGA1 Contact Name 5558675552
20012313801041210428822018101520181015B0 1 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
20012313801041210428822018101520181015B1 2 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
900000020000140000000020000000000000200121042882 201810150
100123138010412104288220181015201810151120IGA2 Contact Name 5558675552
20012313801041210428822018101520181015B1 1 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
20012313801041210428822018101520181015B2 2 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
900000020000140000000020000000000000200121042882 201810150
100123138010412104288220181015201810151120IGA3 Contact Name 5558675552
20012313801041210428822018101520181015B2 1 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
20012313801041210428822018101520181015B3 2 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
900000020000140000000020000000000000200121042882 201810150
100123138010412104288220181015201810151120IGA4 Contact Name 5558675552
20012313801041210428822018101520181015B3 1 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
20012313801041210428822018101520181015B4 2 01
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
25 123456789 031300012 555888100001000001 GD1Y030B
261121042882201810151 938383 01 Test Payee Y10
2711A 00340 CD Addendum B
2802121042882201810151 Y10A 0
501031300012201810150000000000000000000000000000000000000 0
52121042882201810151 1 Sec Orig Name Sec Auth Name SECURE 0 00000 0000001
542202222222 10222222222222
70070000001000000000001000000000100 0
900000020000140000000020000000000000200121042882 201810150
9900000400005626000056000000000080000000 0 | Clean | 0 | DocAdam/imagecashletter | cmd/readImageCashLetter/BNK20181015-A.icl | [
"Apache-2.0"
] |
package com.baeldung.sampleabstract;
import org.springframework.stereotype.Component;
@Component
public class LogRepository {
@Override
public String toString() {
return "logRepository";
}
}
| Java | 4 | DBatOWL/tutorials | spring-core-4/src/main/java/com/baeldung/sampleabstract/LogRepository.java | [
"MIT"
] |
writeln("hello, world");
| Chapel | 1 | jhh67/chapel | test/multilocale/deitz/needMultiLocales/test_unknown_config.chpl | [
"ECL-2.0",
"Apache-2.0"
] |
# Copyright 2021 The Google Research 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.
#!/bin/bash
source gbash.sh || exit
DEFINE_string experiment_dir --required "" "Specify the experimental directory"
DEFINE_string train "ground" "Specify the training type: [parse, ground]"
DEFINE_string hparam_file "./seq2act/ckpt_hparams/grounding/" \
"Specify the hyper-parameter file"
DEFINE_string parser_checkpoint "./seq2act/ckpt_hparams/tuple_extract" \
"Specify the checkpoint of tuple extraction"
DEFINE_string rico_sca_train "./seq2act/data/rico_sca/tfexample/*[!0].tfrecord" \
"Specify the path to rico_sca dataset"
DEFINE_string android_howto_train "./seq2act/data/android_howto/tfexample/*[!0].tfrecord" \
"Specify the path to android_howto dataset"
gbash::init_google "$@"
set -e
set -x
virtualenv -p python3.7 .
source ./bin/activate
pip install tensorflow
pip install -r seq2act/requirements.txt
if (( "${FLAGS_train}" == "parse" )); then
train_file_list="${FLAGS_android_howto_train},${FLAGS_rico_sca_train}"
train_batch_sizes="128,128"
train_source_list="android_howto,rico_sca"
train_steps=1000000
python -m seq2act.bin.seq2act_train_eval --exp_mode "train" \
--experiment_dir "${FLAGS_experiment_dir}" \
--hparam_file "${FLAGS_hparam_file}" \
--train_steps "${train_steps}" \
--train_file_list "${train_file_list}" \
--train_batch_sizes "${train_batch_sizes}" \
--train_source_list "${train_source_list}" \
else
train_file_list="${FLAGS_rico_sca_train}"
train_batch_sizes="64"
train_source_list="rico_sca"
train_steps=250000
python -m seq2act.bin.seq2act_train_eval --exp_mode "train" \
--experiment_dir "${FLAGS_experiment_dir}" \
--hparam_file "${FLAGS_hparam_file}" \
--train_steps "${train_steps}" \
--train_file_list "${train_file_list}" \
--train_batch_sizes "${train_batch_sizes}" \
--train_source_list "${train_source_list}" \
--reference_checkpoint "${FLAGS_parser_checkpoint}"
fi
| Shell | 4 | deepneuralmachine/google-research | seq2act/bin/train_seq2act.sh | [
"Apache-2.0"
] |
import os
import subprocess
class BaseDatabaseClient:
"""Encapsulate backend-specific methods for opening a client shell."""
# This should be a string representing the name of the executable
# (e.g., "psql"). Subclasses must override this.
executable_name = None
def __init__(self, connection):
# connection is an instance of BaseDatabaseWrapper.
self.connection = connection
@classmethod
def settings_to_cmd_args_env(cls, settings_dict, parameters):
raise NotImplementedError(
'subclasses of BaseDatabaseClient must provide a '
'settings_to_cmd_args_env() method or override a runshell().'
)
def runshell(self, parameters):
args, env = self.settings_to_cmd_args_env(self.connection.settings_dict, parameters)
env = {**os.environ, **env} if env else None
subprocess.run(args, env=env, check=True)
| Python | 4 | ShirQUillE-SandE/the-neighborhood-101 | virtual/lib/python3.8/site-packages/django/db/backends/base/client.py | [
"MIT"
] |
interface Blue {
}
| ActionScript | 0 | Sprak1/ruffle | tests/tests/swfs/avm1/extends_chain/Blue.as | [
"Apache-2.0",
"Unlicense"
] |
{
// 本例是为了测试一下小程序的 runtime 模式
version: '1.0.0',
componentsMap: [
{
componentName: 'Card',
package: '@alife/right-design-card',
version: '*',
destructuring: false,
exportName: 'Card',
},
{
componentName: 'View',
package: 'rax-view',
version: '^1.0.0',
destructuring: false,
exportName: 'View',
},
{
componentName: 'Text',
package: 'rax-text',
version: '^1.0.0',
destructuring: false,
exportName: 'Text',
},
{
componentName: 'Image',
package: 'rax-image',
version: '^1.0.0',
destructuring: false,
exportName: 'Image',
},
{
componentName: 'Page',
package: 'rax-view',
version: '^1.0.0',
destructuring: false,
exportName: 'Page',
},
],
componentsTree: [
{
componentName: 'Page',
fileName: 'home',
meta: {
router: '/',
},
state: {},
props: {},
lifeCycles: {},
methods: {},
dataSource: {
list: [],
},
children: [
{
componentName: 'Card',
children: [
{
componentName: 'Text',
props: {},
children: 'This is a demo card.',
},
],
},
],
},
],
utils: [],
css: 'page,body{\n width: 750rpx;\n overflow-x: hidden;\n}',
config: {
sdkVersion: '1.0.3',
historyMode: 'hash',
targetRootID: 'root',
miniAppBuildType: 'runtime',
},
meta: {
name: 'Rax App Demo',
git_group: 'demo-group',
project_name: 'demo-project',
description: '这是一个示例应用',
spma: 'spmademo',
creator: '张三',
},
}
| JSON5 | 4 | raymondtm/lowcode-engine | modules/code-generator/test-cases/rax-app/demo04/schema.json5 | [
"MIT"
] |
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 20 20" height="20" viewBox="0 0 20 20" width="20"><g><rect fill="none" height="20" width="20"/></g><g><g><g><path d="M15.25,14c0.96,0,1.75-0.79,1.75-1.75c0-1.16-1.75-3.06-1.75-3.06s-1.75,1.9-1.75,3.06C13.5,13.21,14.29,14,15.25,14z"/></g><g><rect height="4" width="16" x="2" y="16"/></g><g><path d="M8,13.57L13.57,8l-8-8L4.51,1.06l2.43,2.43L2.43,8L8,13.57z M8,4.56L11.44,8H4.56L8,4.56z"/></g></g></g></svg> | SVG | 1 | Imudassir77/material-design-icons | src/editor/format_color_fill/materialiconssharp/20px.svg | [
"Apache-2.0"
] |
#+TITLE: ui/vi-tilde-fringe
#+DATE: May 22, 2021
#+SINCE: v2.0.5
#+STARTUP: inlineimages nofold
* Table of Contents :TOC_3:noexport:
- [[#description][Description]]
- [[#maintainers][Maintainers]]
- [[#module-flags][Module Flags]]
- [[#plugins][Plugins]]
- [[#prerequisites][Prerequisites]]
- [[#configuration][Configuration]]
* Description
Displays a tilde(~) in the left fringe to indicate an empty line, similar to Vi.
** Maintainers
This module has no dedicated maintainers.
** Module Flags
This module provides no flags.
** Plugins
+ [[https://github.com/syl20bnr/vi-tilde-fringe][vi-tilde-fringe]]
* Prerequisites
This module has no prerequisites.
* Configuration
By default, doom activates ~vi-tilde-fringe-mode~ for ~prog-mode~, ~text-mode~ and ~conf-mode~. To change this to your liking, you can remove any of the modes from the list
#+begin_src emacs-lisp
;; in ~/.doom.d/config.el
(remove-hook 'text-mode-hook #'vi-tilde-fringe-mode)
#+end_src
or add new modes where you would like ~vi-tilde-fringe-mode~ enabled.
#+begin_src emacs-lisp
;; in ~/.doom.d/config.el
(add-hook 'org-mode-hook #'vi-tilde-fringe-mode)
#+end_src
| Org | 4 | leezu/doom-emacs | modules/ui/vi-tilde-fringe/README.org | [
"MIT"
] |
{} (:package |app)
:configs $ {} (:init-fn |app.main/main!) (:reload-fn |app.main/reload!)
:modules $ [] |./test-cond.cirru |./test-gynienic.cirru
, |./test-lens.cirru |./test-list.cirru |./test-macro.cirru |./test-map.cirru
, |./test-math.cirru |./test-recursion.cirru |./test-set.cirru
, |./test-string.cirru |./test-js.cirru |./test-record.cirru
, |./test-nil.cirru |./test-fn.cirru |./test-algebra.cirru
, |./util.cirru
:files $ {}
|app.main $ {}
:ns $ quote
ns app.main $ :require
test-cond.main :as test-cond
test-gynienic.main :as test-gynienic
test-lens.main :as test-lens
test-list.main :as test-list
test-macro.main :as test-macro
test-map.main :as test-map
test-math.main :as test-math
test-recursion.main :as test-recursion
test-set.main :as test-set
test-string.main :as test-string
test-js.main :as test-js
test-record.main :as test-record
test-nil.main :as test-nil
test-fn.main :as test-fn
test-algebra.main :as test-algebra
util.core :refer $ log-title inside-eval: inside-js:
:defs $ {}
|test-keyword $ quote
defn test-keyword ()
; assert "|keyword function" $ =
:a ({} (:a 1))
, 1
; inside-eval:
&let
base $ {} (:a 1)
assert= 1 $ base :a
inside-eval:
assert= ([] 1)
.map
[] $ &{} :a 1
, :a
|test-detects $ quote
defn test-detects ()
assert-detect fn? $ fn () 1
assert-detect not $ bool? $ fn () 1
assert-detect fn? &=
assert-detect macro? cond
assert-detect set? $ #{} 1 2 3
assert= 1 (either nil 1)
assert= 2 (either 2 1)
assert= nil (either nil nil)
assert= false (either false true)
assert= false (either nil false true)
assert= true (either nil true)
assert= true (either nil nil true)
assert= 2 $ either 2
raise "|should not be called"
assert= 2 (def x 2)
assert= false $ and true true false
assert= false $ and true false true
assert= true $ and true true true
assert= false $ or false false false
assert= true $ or false true false
assert= true $ or false false true
assert= true (or false true)
assert= true (or nil true)
assert=
or true (raise "|raise in or")
, true
assert=
and false (raise "|raise in and")
, false
assert= 2
when-not (> 1 2) 1 2
assert= 1
if-not (> 2 1) 2 1
assert= nil
if-not (> 2 1) 2
assert-detect identity
/= 1 2
assert-detect identity
not= 1 2
assert= true $ some-in? ({,} :a 1) ([] :a)
assert= false $ some-in? ({,} :a 1) ([] :b)
assert= false $ some-in? nil ([] :b)
assert= false $ some-in? nil ([])
assert= true $ some-in? ({,} :a ([] 1)) ([] :a 0)
assert= false $ some-in? ({,} :a ([] 1)) ([] :a 1)
assert= false $ some-in? ([] 1 2 3) ([] :a)
|test-if $ quote
fn ()
log-title "|Testing if with nil"
assert= (if false 1) (if nil 1)
assert= (if false 1 2) (if nil 1 2)
|test-display-stack $ quote
fn ()
log-title "|Testing display stack"
&display-stack "|show stack here"
|test-cirru-parser $ quote
fn ()
log-title "|Testing Cirru parser"
assert=
parse-cirru "|def f (a b) $ + a b"
[] $ [] |def |f ([] |a |b)
[] |+ |a |b
assert=
parse-cirru "|{,} :a 1 :b false"
[] $ [] |{,} |:a |1 |:b |false
assert=
parse-cirru-edn "|{} (:a 1) (:b ([] 3 |4 nil))"
{}
:a 1
:b $ [] 3 |4 nil
assert= "|[] |a |b $ [] |c |d"
trim $ format-cirru-edn $ [] |a |b $ [] |c |d
assert= "|a b $ c d"
trim $ format-cirru $ [] $ [] |a |b $ [] |c |d
assert=
{}
:a 1
:b $ []
{}
:c 3
4 5
keywordize-edn $ {}
|a 1
:b $ []
{}
|c 3
4 5
|test-fn $ quote
fn ()
log-title "|Testing fn"
&let
empty-f $ fn ()
assert= nil (empty-f)
&let
coll-f $ fn (& xs) xs
assert=
[] 1 2 3 4 5
coll-f 1 & ([] 2 3 4) 5
|test-arguments $ quote
fn ()
log-title "|Testing arguments"
let
f1 $ fn (a ? b c) $ [] a b c
assert= (f1 :a) ([] :a nil nil)
assert= (f1 :a :b) ([] :a :b nil)
assert= (f1 :a :b :c) ([] :a :b :c)
|test-try $ quote
fn ()
log-title "|Testing try"
assert= :true
try
do (echo "|inside try") :true
fn (error)
assert= :false
try
do (echo "|inside false try")
raise "|error intented" ([] :demo)
, :true
fn (error)
do
echo "|Caught error:" error
, :false
assert= |:a
apply-args () $ fn ()
try
raise |false
fn (error)
str :a
echo "|Finished testing try"
|test-fn-eq $ quote
fn ()
log-title "|Testing equality of functions"
let
a $ fn (x) x
b $ fn (x) x
assert= a a
assert= b b
assert= false (&= a b)
|*ref-demo $ quote
defatom *ref-demo 0
|test-refs $ quote
fn ()
log-title "|Testing refs"
assert= 0 @*ref-demo
add-watch *ref-demo :change $ fn (prev current)
println "|change happened:" prev current
reset! *ref-demo 2
remove-watch *ref-demo :change
assert= 2 @*ref-demo
assert= :ref (type-of *ref-demo)
|%Num $ quote
defrecord %Num :inc :show
|Num $ quote
def Num $ %{} %Num
:inc $ fn (x)
update x 1 inc
:show $ fn (x)
str $ &tuple:nth x 1
|test-method $ quote
fn ()
log-title "|Testing method"
let
a $ :: Num 0
assert=
:: Num 2
-> a .inc .inc
assert= |1
-> a .inc .show
|test-tuple $ quote
fn ()
log-title "|Testing tuple"
assert= :tuple (type-of (:: :a :b))
assert= :a (nth (:: :a :b) 0)
assert= :b (nth (:: :a :b) 1)
assert= 2 (count (:: :a :b))
assert= :a (get (:: :a :b) 0)
assert= :b (get (:: :a :b) 1)
|test-effect $ quote
fn ()
log-title "|Testing effect"
echo "|Env mode:" $ get-env |mode
|reload! $ quote
defn reload! () nil
|main! $ quote
defn main! ()
println $ &get-os
inside-js:
load-console-formatter!
log-title "|Testing keyword function"
test-keyword
util.core/log-title "|Testing detects"
test-detects
test-if
test-display-stack
test-cirru-parser
test-fn
test-macro/main!
test-arguments
test-try
test-fn-eq
test-refs
test-method
test-tuple
test-effect
inside-eval:
test-gynienic/main!
test-cond/main!
test-lens/main!
test-list/main!
test-map/main!
test-math/main!
test-recursion/main!
test-set/main!
test-string/main!
test-record/main!
test-nil/main!
test-fn/main!
test-algebra/main!
inside-js:
test-js/main!
do true
:proc $ quote ()
:configs $ {} (:extension nil)
| Cirru | 4 | calcit-lang/calcit.rs | calcit/test.cirru | [
"MIT"
] |
require "c/int_safe"
lib LibC
fun GetLastError : DWORD
fun SetLastError(dwErrCode : DWORD)
end
| Crystal | 2 | n00p3/crystal | src/lib_c/x86_64-windows-msvc/c/errhandlingapi.cr | [
"Apache-2.0"
] |
this should be matched as boo | Boo | 4 | rohitn/scc | examples/language/boo.boo | [
"MIT",
"Unlicense"
] |
/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/Heap/Heap.h>
#include <LibJS/Heap/MarkedVector.h>
namespace JS {
MarkedVectorBase::MarkedVectorBase(Heap& heap)
: m_heap(heap)
{
m_heap.did_create_marked_vector({}, *this);
}
MarkedVectorBase::MarkedVectorBase(MarkedVectorBase&& other)
: m_heap(other.m_heap)
, m_cells(move(other.m_cells))
{
m_heap.did_create_marked_vector({}, *this);
}
MarkedVectorBase::~MarkedVectorBase()
{
m_heap.did_destroy_marked_vector({}, *this);
}
}
| C++ | 4 | HerrSpace/serenity | Userland/Libraries/LibJS/Heap/MarkedVector.cpp | [
"BSD-2-Clause"
] |
<#macro userProfileFormFields>
<#assign currentGroup="">
<#list profile.attributes as attribute>
<#assign groupName = attribute.group!"">
<#if groupName != currentGroup>
<#assign currentGroup=groupName>
<#if currentGroup != "" >
<div class="${properties.kcFormGroupClass!}">
<#assign groupDisplayHeader=attribute.groupDisplayHeader!"">
<#if groupDisplayHeader != "">
<#assign groupHeaderText=advancedMsg(attribute.groupDisplayHeader)!groupName>
<#else>
<#assign groupHeaderText=groupName>
</#if>
<div class="${properties.kcContentWrapperClass!}">
<label id="header-${groupName}" class="${kcFormGroupHeader!}">${groupHeaderText}</label>
</div>
<#assign groupDisplayDescription=attribute.groupDisplayDescription!"">
<#if groupDisplayDescription != "">
<#assign groupDescriptionText=advancedMsg(attribute.groupDisplayDescription)!"">
<div class="${properties.kcLabelWrapperClass!}">
<label id="description-${groupName}" class="${properties.kcLabelClass!}">${groupDescriptionText}</label>
</div>
</#if>
</div>
</#if>
</#if>
<#nested "beforeField" attribute>
<div class="${properties.kcFormGroupClass!}">
<div class="${properties.kcLabelWrapperClass!}">
<label for="${attribute.name}" class="${properties.kcLabelClass!}">${advancedMsg(attribute.displayName!'')}</label>
<#if attribute.required>*</#if>
</div>
<div class="${properties.kcInputWrapperClass!}">
<#if attribute.annotations.inputHelperTextBefore??>
<div class="${properties.kcInputHelperTextBeforeClass!}" id="form-help-text-before-${attribute.name}" aria-live="polite">${kcSanitize(advancedMsg(attribute.annotations.inputHelperTextBefore))?no_esc}</div>
</#if>
<@inputFieldByType attribute=attribute/>
<#if messagesPerField.existsError('${attribute.name}')>
<span id="input-error-${attribute.name}" class="${properties.kcInputErrorMessageClass!}" aria-live="polite">
${kcSanitize(messagesPerField.get('${attribute.name}'))?no_esc}
</span>
</#if>
<#if attribute.annotations.inputHelperTextAfter??>
<div class="${properties.kcInputHelperTextAfterClass!}" id="form-help-text-after-${attribute.name}" aria-live="polite">${kcSanitize(advancedMsg(attribute.annotations.inputHelperTextAfter))?no_esc}</div>
</#if>
</div>
</div>
<#nested "afterField" attribute>
</#list>
</#macro>
<#macro inputFieldByType attribute>
<#switch attribute.annotations.inputType!''>
<#case 'textarea'>
<@textareaTag attribute=attribute/>
<#break>
<#case 'select'>
<#case 'multiselect'>
<@selectTag attribute=attribute/>
<#break>
<#case 'select-radiobuttons'>
<#case 'multiselect-checkboxes'>
<@inputTagSelects attribute=attribute/>
<#break>
<#default>
<@inputTag attribute=attribute/>
</#switch>
</#macro>
<#macro inputTag attribute>
<input type="<@inputTagType attribute=attribute/>" id="${attribute.name}" name="${attribute.name}" value="${(attribute.value!'')}" class="${properties.kcInputClass!}"
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
<#if attribute.readOnly>disabled</#if>
<#if attribute.autocomplete??>autocomplete="${attribute.autocomplete}"</#if>
<#if attribute.annotations.inputTypePlaceholder??>placeholder="${attribute.annotations.inputTypePlaceholder}"</#if>
<#if attribute.annotations.inputTypePattern??>pattern="${attribute.annotations.inputTypePattern}"</#if>
<#if attribute.annotations.inputTypeSize??>size="${attribute.annotations.inputTypeSize}"</#if>
<#if attribute.annotations.inputTypeMaxlength??>maxlength="${attribute.annotations.inputTypeMaxlength}"</#if>
<#if attribute.annotations.inputTypeMinlength??>minlength="${attribute.annotations.inputTypeMinlength}"</#if>
<#if attribute.annotations.inputTypeMax??>max="${attribute.annotations.inputTypeMax}"</#if>
<#if attribute.annotations.inputTypeMin??>min="${attribute.annotations.inputTypeMin}"</#if>
<#if attribute.annotations.inputTypeStep??>step="${attribute.annotations.inputTypeStep}"</#if>
/>
</#macro>
<#macro inputTagType attribute>
<#compress>
<#if attribute.annotations.inputType??>
<#if attribute.annotations.inputType?starts_with("html5-")>
${attribute.annotations.inputType[6..]}
<#else>
${attribute.annotations.inputType}
</#if>
<#else>
text
</#if>
</#compress>
</#macro>
<#macro textareaTag attribute>
<textarea id="${attribute.name}" name="${attribute.name}" class="${properties.kcInputClass!}"
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
<#if attribute.readOnly>disabled</#if>
<#if attribute.annotations.inputTypeCols??>cols="${attribute.annotations.inputTypeCols}"</#if>
<#if attribute.annotations.inputTypeRows??>rows="${attribute.annotations.inputTypeRows}"</#if>
<#if attribute.annotations.inputTypeMaxlength??>maxlength="${attribute.annotations.inputTypeMaxlength}"</#if>
>${(attribute.value!'')}</textarea>
</#macro>
<#macro selectTag attribute>
<select id="${attribute.name}" name="${attribute.name}" class="${properties.kcInputClass!}"
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
<#if attribute.readOnly>disabled</#if>
<#if attribute.annotations.inputType=='multiselect'>multiple</#if>
<#if attribute.annotations.inputTypeSize??>size="${attribute.annotations.inputTypeSize}"</#if>
>
<#if attribute.annotations.inputType=='select'>
<option value=""></option>
</#if>
<#if attribute.annotations.inputOptionsFromValidation?? && attribute.validators[attribute.annotations.inputOptionsFromValidation]?? && attribute.validators[attribute.annotations.inputOptionsFromValidation].options??>
<#assign options=attribute.validators[attribute.annotations.inputOptionsFromValidation].options>
<#elseif attribute.validators.options?? && attribute.validators.options.options??>
<#assign options=attribute.validators.options.options>
</#if>
<#if options??>
<#list options as option>
<option value="${option}" <#if attribute.values?seq_contains(option)>selected</#if>><@selectOptionLabelText attribute=attribute option=option/></option>
</#list>
</#if>
</select>
</#macro>
<#macro inputTagSelects attribute>
<#if attribute.annotations.inputType=='select-radiobuttons'>
<#assign inputType='radio'>
<#assign classDiv=properties.kcInputClassRadio!>
<#assign classInput=properties.kcInputClassRadioInput!>
<#assign classLabel=properties.kcInputClassRadioLabel!>
<#else>
<#assign inputType='checkbox'>
<#assign classDiv=properties.kcInputClassCheckbox!>
<#assign classInput=properties.kcInputClassCheckboxInput!>
<#assign classLabel=properties.kcInputClassCheckboxLabel!>
</#if>
<#if attribute.annotations.inputOptionsFromValidation?? && attribute.validators[attribute.annotations.inputOptionsFromValidation]?? && attribute.validators[attribute.annotations.inputOptionsFromValidation].options??>
<#assign options=attribute.validators[attribute.annotations.inputOptionsFromValidation].options>
<#elseif attribute.validators.options?? && attribute.validators.options.options??>
<#assign options=attribute.validators.options.options>
</#if>
<#if options??>
<#list options as option>
<div class="${classDiv}">
<input type="${inputType}" id="${attribute.name}-${option}" name="${attribute.name}" value="${option}" class="${classInput}"
aria-invalid="<#if messagesPerField.existsError('${attribute.name}')>true</#if>"
<#if attribute.readOnly>disabled</#if>
<#if attribute.values?seq_contains(option)>checked</#if>
/>
<label for="${attribute.name}-${option}" class="${classLabel}<#if attribute.readOnly> ${properties.kcInputClassRadioCheckboxLabelDisabled!}</#if>"><@selectOptionLabelText attribute=attribute option=option/></label>
</div>
</#list>
</#if>
</select>
</#macro>
<#macro selectOptionLabelText attribute option>
<#compress>
<#if attribute.annotations.inputOptionLabels??>
${advancedMsg(attribute.annotations.inputOptionLabels[option]!option)}
<#else>
<#if attribute.annotations.inputOptionLabelsI18nPrefix??>
${msg(attribute.annotations.inputOptionLabelsI18nPrefix + '.' + option)}
<#else>
${option}
</#if>
</#if>
</#compress>
</#macro> | FreeMarker | 4 | evtr/keycloak | themes/src/main/resources/theme/base/login/user-profile-commons.ftl | [
"Apache-2.0"
] |
[CustomMessages]
sk.IDP_FormCaption =Preberanie súborov
sk.IDP_FormDescription =Prosím čakajte, kým inštalátor prevezme dodatočné súbory...
sk.IDP_TotalProgress =Celkový progres
sk.IDP_CurrentFile =Aktuálny súbor
sk.IDP_File =Súbor:
sk.IDP_Speed =Rýchlosť:
sk.IDP_Status =Stav:
sk.IDP_ElapsedTime =Ubehnutý čas:
sk.IDP_RemainingTime =Zostáva:
sk.IDP_DetailsButton =Detaily
sk.IDP_HideButton =Skryť
sk.IDP_RetryButton =Znova
sk.IDP_IgnoreButton =Ignorovať
sk.IDP_KBs =KB/s
sk.IDP_MBs =MB/s
sk.IDP_X_of_X =%.2f of %.2f
sk.IDP_KB =KB
sk.IDP_MB =MB
sk.IDP_GB =GB
sk.IDP_Initializing =Inicializácia...
sk.IDP_GettingFileInformation=Preberanie informácií o súbore...
sk.IDP_StartingDownload =Začínam prebereť...
sk.IDP_Connecting =Nadväzovanie spojenia...
sk.IDP_Downloading =Preberanie...
sk.IDP_DownloadComplete =Preberanie ukončené
sk.IDP_DownloadFailed =Preberanie zlyhalo
sk.IDP_CannotConnect =Nie je možné nadviazať spojenie
sk.IDP_CancellingDownload =Ukončenie preberania...
sk.IDP_Unknown =Neznáme
sk.IDP_DownloadCancelled =Preberanie zrušené
sk.IDP_RetryNext =Skontrolujte nastavenie siete a kliknite na 'Znova' na opätovné prebratie súborov, alebo kliknite na 'Ďalej' a pokračujte v inštalácii.
sk.IDP_RetryCancel =Skontrolujte nastavenie siete a kliknite na 'Znova' na opätovné prebratie súborov, alebo kliknite na 'Zrušiť' a zrušte inštaláciu.
sk.IDP_FilesNotDownloaded =Nasledujúce súbory neboli stiahnuté:
sk.IDP_HTTPError_X =Chyba HTTP %d
sk.IDP_400 =Nesprávna požiadavka (400)
sk.IDP_401 =Prístup zakázaný (401)
sk.IDP_404 =Súbor nenájdený (404)
sk.IDP_407 =Proxy authentication required (407)
sk.IDP_500 =Chyba servera (500)
sk.IDP_502 =Chyba gateway (502)
sk.IDP_503 =Služba je dočasne nedostupná (503)
| Inno Setup | 1 | thedruz/WPN-XM | bin/innosetup-download-plugin/unicode/idplang/slovak.iss | [
"MIT"
] |
data testing;
begin=0;
end=10;
msg="This is row %x of %y";
do i = begin to end by 1;
drop msg begin end i;
recnum=i;
square=i*i;
desc=tranwrd(tranwrd(msg,"%x",i),"%y",end);
format pctdone percent8.0;
format pctincr percent7.1;
pctdone=divide(i,end);
pctincr=divide(i-1,i);
/* Days / Seconds since Epoc / Seconds since midnight */
format date ddmmyyd10.;
format datetime datetime.;
format time time.;
date=i**4;
datetime=10**i;
time=3**i;
output;
end;
label recnum="Record Number"
square="Square of the Record Number"
desc="Description of the Row"
pctdone="Percent Done"
pctincr="Percent Increment";
run;
%let outpath = /home/tika/testing/sas;
libname out "&outpath";
libname outxpt XPORT "&outpath./testing.xpt";
libname outv6 v6 "&outpath";
libname outxml xmlv2 "&outpath";
data out.testing;
set testing;
run;
data outv6.testv6;
set testing;
run;
data outxml.testxml;
set testing;
run;
proc copy in=out out=outxpt;
select testing;
run;
proc print data=testing;
run;
proc export data=testing label
outfile="&outpath./testing.csv"
dbms=CSV REPLACE;
putnames=yes;
run;
/* Due to SAS Limitations, you will need to manually */
/* style the % and Date/Datetime columns in Excel */
/* You will also need to save-as XLSB to generate that */
proc export data=testing label
outfile="&outpath./testing.xls"
dbms=XLS;
run;
proc export data=testing label
outfile="&outpath./testing.xlsx"
dbms=XLSX;
run;
| SAS | 3 | MC-JY/tika | tika-parsers/tika-parsers-standard/tika-parsers-standard-modules/tika-parser-code-module/src/test/resources/test-documents/testSAS2.sas | [
"Apache-2.0"
] |
debug.sfatext=Arddangos ElasticSearch Ymholiad
banner.sitetitle=Mynegai cyfeiriad
banner.sitetagline=Set ddata daearyddol mwyaf cywir o gyfeiriadau ac eiddo yn y DU
clerical.sfatext=Offeryn clerigol
clerical.addinfo=Gwybodaeth Clerigol Ychwanegol
clerical.logicalstatus=Statws rhesymegol
clerical.elasticscore=sgôr elastig
clerical.parentuprn=UPRN rhieni
clerical.la=Awdurdod lleol
clerical.hierarchy=Lefel hierarchaeth
clerical.ta=Cyfeiriad tokenize
clerical.token_description=Enw Tocyn
clerical.fieldnamePAF=Enw Field (PAF)
clerical.fieldnameNAG=Enw Field (NAG)
clerical.fieldname_derived=Enw Field (PAF or NAG)
clerical.inputdata=Data mewnbwn
clerical.outputdata=Data allbwn
clerical.not_implemented=Heb ei Weithredu
clerical.token.organisation_name=Enw'r Sefydliad
clerical.token.department_name = Enw Adran
clerical.token.sub_building_name = Is Enw'r Adeilad
clerical.token.building_name = Enw Adeiladu
clerical.token.building_number = Rhif yr Adeilad
clerical.token.street_name = Enw Stryd
clerical.token.locality = Ardal
clerical.token.town_name = Enw y Dref
clerical.token.postcode = Côd Post
clerical.token.all=Pob maes
clerical.organisation_name = Enw Sefydliad
clerical.department_name = Enw Adran
clerical.sub_building_name = Is Enw'r Adeilad
clerical.building_name = Enw Adeiladu
clerical.building_number = Rhif yr Adeilad
clerical.thoroughfare = tramwyfa
clerical.welsh_thoroughfare = tramwyfa Cymraeg
clerical.dependent_thoroughfare = tramwyfa Dibynnol
clerical.welsh_dependent_thoroughfare = tramwyfa Dibynnol Cymraeg
clerical.dependent_locality = Ardal Dibynnol
clerical.welsh_dependent_locality = Ardal Dibynnol Cymraeg
clerical.double_dependent_locality = Dwbl Ardal Dibynnol
clerical.welsh_double_dependent_locality = Dwbl Ardal Dibynnol
clerical.post_town = Tref Bost
clerical.welsh_post_town = Tref Cymraeg Post
clerical.paf_all=Paf all
clerical.nag_all=Nag all
clerical.organisation = Sefydliad
clerical.pao_text = Prif Swyddog Cyfrifyddu Text
clerical.pao_start_number = Prif Swyddog Cyfrifyddu Rhif Start
clerical.pao_start_suffix=Prif Swyddog Cyfrifyddu Start Ôl-ddodiad
clerical.pao_end_number=Prif Swyddog Cyfrifyddu Rhif End
clerical.pao_end_suffix=Prif Swyddog Cyfrifyddu End Ôl-ddodiad
clerical.legal_name = Enw Cyfreithiol
clerical.sao_text = Sao Text
clerical.sao_start_number = Sao Rhif Start
clerical.sao_start_suffix = Sao Cychwyn Ôl-ddodiad
clerical.sao_end_number = Sao Rhif End
clerical.sao_end_suffix = Sao End Ôl-ddodiad
clerical.street_descriptor = Street Disgrifydd
clerical.locality = Ardal
clerical.town_name = Enw y Dref
clerical.postcode_locator = Cod post Locator
clerical.postcode_in = Cod post Mewn
clerical.postcode_out = Cod post Out
clerical.ambiguity_penalty=Cosb amwysedd
clerical.subbuildingname=Sub Building Name
clerical.buildingname=Building Name
clerical.buildingnumber=Is Enw''r Adeilad
clerical.street=stryd
clerical.town=tref
clerical.postcode=Cod post
clerical.postcodetype=Math cod post
clerical.deliverypointsuffix=Ôl-ddodiad Cyflenwi Point
clerical.score=sgôr
clerical.param=paramedr
clerical.paramvalue=Gwerth paramedr
clerical.scorevalue=sgôr Gwerth
clerical.building=adeiladu
clerical.sub_building_number=Is Rhif yr Adeilad
clerical.unit=Uned
clerical.townlocality=Ardal Town
clerical.organisation_building_name=Enw'r Adeilad Sefydliad
clerical.detailed_organisation_building_name=Manwl Enw'r Adeilad Sefydliad
clerical.ref_hierarchy=Cyf Hierarchaeth
help.title=Helpu
home.servicetext=Gwasanaeth Paru Cyfeiriad
home.headertext=Mae''r gwasanaeth hwn yn eich galluogi i chwilio am gyfeiriad unigol, neu yn cyd-fynd swp o gyfeiriadau o ffeil mewnbwn.
home.singlehead=Dod o hyd i gyfeiriad
home.singlebody=Mae hyn yn nodwedd yn eich galluogi i gyd-fynd am un cyfeiriad unigol
home.postcodehead=Dod o hyd i gyfeiriad gan cod post
home.postcodebody=Chwilio am un cyfeiriad yn ôl cod post
home.title=mynegai Cyfeiriad demo - Home
home.multihead=Cydweddu cyfeiriadau lluosog
home.multibody=Mae hyn yn nodwedd yn eich galluogi i lwytho swp o gyfeiriadau ar gyfer paru
home.query_debug_head=Debug ymholiad
home.query_debug_body=Dangoswch yr ymholiad a anfonir at elastic Chwilio
home.clericalhead=Offeryn clerigol
home.clericalbody=Ymchwilio i gyfeiriad camgymeriadau paru neu anghysondebau
home.help_head=Helpu
home.help_body=cymorth ar-sgrîn ar gyfer y wefan hon
logical.1=Cymeradwy
logical.5=Ymgeisydd (neilltuo ar gyfer y broses Ymgeisydd NLPG)
logical.6=dro
logical.7=Wrthodwyd Cofnod (o ffynonellau a gadwyd yn allanol ar gyfer y broses Ymgeisydd NLPG)
logical.8=hanesyddol
logical.9=Wrthodwyd Cofnod (ffynhonnell fewnol)
logical.letter1=A
logical.letter6=P
logical.letter8=H
logical.class1=ls-approved
logical.class6=ls-provisional
logical.class8=ls-historical
login.title=Os gwelwch yn dda Mewngofnodi
login.heading=Arwyddo
login.username=enw defnyddiwr
login.password=cyfrinair
login.usernameph=Rhif adnabod y Rhwydwaith ONS
login.passwordph=cyfrinair rhwydwaith
login.login=Arwyddo
login.clear=Glir
login.forgotpassword=Anghofio cyfrinair
main.beta=BETA
main.licence1=Mae''r holl gynnwys ar gael o dan y
main.licence2=Trwydded Llywodraeth Agored
main.licence3=ac eithrio lle nodir yn wahanol
main.licenceurl=https://www.nationalarchives.gov.uk/doc/open-government-licence-cymraeg/version/3/
main.copyright=hawlfraint y Goron
main.goto=Ewch i
multi.sfatext=Cydweddu cyfeiriadau lluosog
navbar.home=Cartref
navbar.singlematch=Chwilio sengl
navbar.postcode=Chwiliad cod post
navbar.multimatch=Match lluosog
navbar.clerical=Offeryn clerigol
navbar.query=Ymholiad arddangos
navbar.help=Helpu
navbar.radius=Chwilio radiws
navbar.developers=</datblygwyr>
navbar.typeahead=Typeahead
single.pleasesupply=Rhowch gyfeiriad
single.sfatext=Chwilio am gyfeiriad
single.searchbut=Chwilio
single.title=Mynd i''r afael mynegai demo - Dod o hyd i gyfeiriad
single.notyet=Paru heb ei weithredu eto
single.uprn=UPRN
single.address=cyfeiriad
single.welsh_version=fersiwn Cymraeg
single.english_version=fersiwn Saesneg
single.matchscore=sgôr ddogfen
single.hopper_score=adeilad / sgôr uned
single.matchscore=Cyfateb Sgôr
single.confidence=hyder
single.found=dod o hyd i gyfeiriadau
single.openmap=Map agored
single.classification=Dosbarthiad
single.intro=I ddechrau, rhowch y cyfeiriad neu god post. Darparu cymaint o'r cyfeiriad ag y bo modd i gael y canlyniadau gorau.
typeahead.title=Typeahead Address Lookup Demo
addressresult.la_address=Cyfeiriad yr awdurdod lleol
addressresult.postal_address_file=Ffeil cyfeiriadau post
addressresult.welsh_language_nag=Iaith Gymraeg (NAG)
addressresult.welsh_language_paf=Iaith Gymraeg (PAF)
addressresult.classification=Dosbarthiad
addressresult.la=Awdurdod lleol
addressresult.la_code=Cod awdurdod lleol
addressresult.address_hierarchy=Hierarchaeth cyfeiriad
addressresult.position_primary=Eiddo sylfaenol
addressresult.position_secondary=Priodweddau eilaidd
addressresult.position_tertiary=Eiddo trydyddol
addressresult.position_quaternary=Eiddo quaternary
addressresult.position_quinary=Eiddo pumol
addressresult.address=Cyfeiriad
addressresult.ni_ab_classification=Mapped AB Classification
addressresult.ni_lps_addressstatus=LPS Address Status
addressresult.ni_lps_classification=LPS Classification
addressresult.ni_lps_buildingstatus=LPS Building Status
postcode.title=Cod post demo-dod o hyd i gyfeiriad gan cod post
postcode.sfatext=Chwilio am gyfeiriad yn ôl cod post
postcode.found=dod o hyd i gyfeiriadau
postcode.foundpre=Rydym wedi darparu arian cyfatebol
postcode.foundpost=cyfeiriadau
postcode.pleasesupply=Rhowch eich cod post
postcode.openmap=Map o'r lleoliad
postcode.intro=I ddechrau, rhowch cod post union.
results.foundatleastpre=Rydym wedi paru o leiaf
results.foundexactpre=Rydym wedi paru
results.foundpost=cyfeiriadau
postcodesearchform.labelsearch=Rhowch gyfeiriad
radius.title=Radiws demo-dod o hyd i gyfeiriad o fewn radiws o
radius.sfatext=Chwilio am gyfeiriad o fewn radiws o
radius.foundpre=Rydym wedi darparu arian cyfatebol
radius.foundpost=cyfeiriadau
radius.pleasesupply=Rhowch tymor radiws a chwilio
radius.openmap=Map o'r lleoliad
radius.intro=I gychwyn arni, llenwch y ffurflen gyda tymor ystod, lledred, hydred a chwilio.
radiussearchform.labelsearch=Rhowch term chwilio
radiussearchform.labelrange=Ystod(km)
radiussearchform.labellat=Lledred
radiussearchform.labellon=Hydred
radiussearchform.labelfilter=Filter (dewisol)
radiussearchform.placeholdersearch=Er enghraifft, recycling
radiussearchform.placeholderfilter=Er enghraifft, residential, commercial, RD06
radiussearchform.placeholderrange=Er enghraifft, 5
radiussearchform.placeholderlat=Er enghraifft, 50.722563
radiussearchform.placeholderlon=Er enghraifft, -3.530171
radiussearchform.labelstartdate=Dyddiad Cychwyn (dewisol)
radiussearchform.labelenddate=Dyddiad Gorffen (dewisol)
radiussearchform.placeholderstartdate=YYYY-MM-DD
radiussearchform.placeholderenddate=YYYY-MM-DD
singlesearchform.placeholder=E.g. 16 James Street Swindon SN1 3HE
postcodesearchform.placeholder=Er enghraifft, EX2 6GA
clericalsearchform.placeholder=E.g. 23 Hopper Street Portsmouth PO4 8AR
debugsearchform.placeholder=E.g. Ground Floor Flat, 45 Jones Avenue Swansea SA4 3DF
singlesearchform.placeholderfilter=E.g. 16 James Street Swindon SN1 3HE
postcodesearchform.placeholderfilter=E.g. residential, commercial, RD06
clericalsearchform.placeholderfilter=E.g. 23 Hopper Street Portsmouth PO4 8AR
debugsearchform.placeholderfilter=E.g. residential, commerical, RD06
singlesearchform.placeholderstartdate=YYYY-MM-DD
singlesearchform.placeholderenddate=YYYY-MM-DD
postcodesearchform.placeholderstartdate=YYYY-MM-DD
postcodesearchform.placeholderenddate=YYYY-MM-DD
singlesearchform.labelfilter=Filter (dewisol)
postcodesearchform.labelfilter=Filter (dewisol)
clericalsearchform.labelfilter=Filter (dewisol)
debugsearchform.labelfilter=Filter (dewisol)
singlesearchform.labelstartdate=Dyddiad Cychwyn (dewisol)
singlesearchform.labelenddate=Dyddiad Gorffen (dewisol)
postcodesearchform.labelstartdate=Dyddiad Cychwyn (dewisol)
postcodesearchform.labelenddate=Dyddiad Gorffen (dewisol)
error.error=gwall
error.detail=Manylion neges
uprn.notfound=UPRN Heb Ganfod
uprn.found=UPRN Wedi dod o hyd
mailto.fallback=Nid yw eich cleient diofyn e-mail yn cael ei sefydlu, cyfeiriwch at y Help dudalen ar gyfer y cyfarwyddiadau neu anfonwch e-mail yn uniongyrchol at ai.users@ons.gov.uk gyda url, mewnbwn ac y disgrifiad o'r broblem
category.notfound = Dosbarthiad Anhysbys
category.C = Masnachol
category.CA = Amaethyddol
category.CA01 = Fferm Dibreswyl Adeilad Cysylltiedig
category.CA02 = Fishery
category.CA02FF = Ffermio Pysgod
category.CA02FH = Deorfa Bysgod
category.CA02FP = Prosesu Pysgod
category.CA02OY = Oyster / cregyn gleision Gwely
category.CA03 = Garddwriaeth
category.CA03SH = Tyddyn
category.CA03VY = Gwinllan
category.CA03WB = Berwr y dŵr Gwely
category.CA04 = Lladd House / Lladd-dy
category.CB = Adeilad Ategol
category.CC = Gwasanaethau Cymunedol
category.CC02 = Llys y Gyfraith
category.CC03 = Carchar
category.CC03HD = Ganolfan Gadw EM
category.CC03PR = Gwasanaeth Carchardai EM
category.CC03SC = Llety Preswyl Diogel
category.CC04 = Neuadd Gyhoeddus / Pentref Cyfleuster Cymunedol / Arall
category.CC04YR = Ieuenctid Hamdden Clwb Cymdeithasol /
category.CC05 = Cyfleusterau Cyhoeddus
category.CC06 = Mynwent / Amlosgfa / Mynwent. Mewn Defnydd Presennol.
category.CC06CB = Columbarium
category.CC06CR = Capel Gorffwys
category.CC06CN = Amlosgfa
category.CC06CY = Mynwent
category.CC06MC = Milwrol
category.CC06MY = Mortiwari
category.CC07 = Neuadd yr Eglwys / Crefyddol Man Cyfarfod / Hall
category.CC08 = Canolfan Gwasanaeth Cymunedol / Swyddfa
category.CC09 = Canolfan Ailgylchu Gwastraff Cartrefi Cyhoeddus (CAGC)
category.CC10 = Safle Ailgylchu
category.CC11 = CCTV
category.CC12 = Ganolfan Waith
category.CE = Addysg
category.CE01 = Coleg
category.CE01FE = Addysg Bellach
category.CE01HE = Addysg Uwch Meithrinfa
category.CE02 = Plant / Crèche
category.CE03 = Paratoadol / First Babanod / Iau / Ysgol / Cynradd / Canol
category.CE03FS = Ysgol yn Gyntaf
category.CE03IS = Ysgol Fabanod
category.CE03JS = Ysgol Iau
category.CE03MS = Ysgol Ganol
category.CE03NP = Ysgol Gynradd y Wladwriaeth Non / Paratoadol
category.CE03PS = Ysgol Gynradd
category.CE04 = Ysgol Uwchradd / Uwchradd
category.CE04NS = Ysgol Uwchradd Non Wladwriaeth
category.CE04SS = Ysgol Uwchradd
category.CE05 = Brifysgol Sefydlu Anghenion
category.CE06 = Arbennig
category.CE07 = Sefydliad Addysgol Arall
category.CH = Gwesty / Motel / Byrddio / Guest House
category.CH01 = Lletya / Guest House / Gwely A Brecwast / Hostel Ieuenctid
category.CH01YH = Hostel Ieuenctid
category.CH02 = Gwyliau Gadewch / Llety / Tymor Byr Let Arall na CH01
category.CH03 = Gwesty / Motel
category.CI = Diwydiannol Gymwys i gweithgynhyrchu, peirianneg, cynnal a chadw, storio / dosbarthu cyfanwerthu a safleoedd echdynnu
category.CI01 = Factory / Gweithgynhyrchu
category.CI01AW = Works Awyrennau
category.CI01BB = Adeiladu Cychod
category.CI01BR = Gwaith Brics
category.CI01BW = Brewery
category.CI01CD = Gweithgynhyrchu Seidr
category.CI01CM = Gweithfeydd Cemegol
category.CI01CW = Gwaith Sment
category.CI01DA = Prosesu Llaeth
category.CI01DY = Distyllfa
category.CI01FL = Melin Flawd
category.CI01FO = Prosesu Bwyd
category.CI01GW = Glassworks
category.CI01MG = Gweithgynhyrchu
category.CI01OH = House Oast
category.CI01OR = Olew Puro
category.CI01PG = Gweithgynhyrchu Crochenwaith
category.CI01PM = Melin Bapur
category.CI01PW = Printing Works
category.CI01YD = Iard Longau
category.CI01SR = Siwgr Purfa
category.CI01SW = Gweithfeydd Dur
category.CI01TL = Mill Goed
category.CI01WN = Winery
category.CI02 = Mwynau / Mwyn Gwaith / Quarry / Mine
category.CI02MA = Mwynau Mwyngloddio / Active
category.CI02MD = Dosbarthu Mwynau / Storio
category.CI02MP = Prosesu Mwynau
category.CI02OA = Olew / Nwy / Active Echdynnu
category.CI02QA = Mwynau Chwarela / Echdynnu Agored / Active
category.CI03 = Gweithdy / Diwydiannol Ysgafn
category.CI03GA = Garej Gwasanaethu
category.CI04 = Warehouse / Siop / Depo Storio
category.CI04CS = Trin Cnydau / Storio
category.CI04PL = Didoli Post / Dosbarthu
category.CI04SO = Storio Tanwydd Solet
category.CI04TS = Storio Timber
category.CI05 = Dosbarthu Cyfanwerthu
category.CI05SF = Dosbarthu Tanwydd Solet
category.CI05TD = Dosbarthu Pren
category.CI06 = Planhigion Ailgylchu
category.CI07 = llosgydd / Gorsaf Trosglwyddo Gwastraff
category.CI08 = Depo Cynnal a Chadw
category.CL = Hamdden - Yn berthnasol i safleoedd hamdden a mentrau
category.CL01 = Amusements
category.CL01LP = Pier Hamdden
category.CL02 = Gwyliau / Safle Gwersylla
category.CL02CG = Gwersylla
category.CL02CV = Carafanio
category.CL02HA = Llety Gwyliau = Canolfan Wyliau category.CL02HO
category.CL02YC = Gwersyll Mudiad Ieuenctid
category.CL03 = Llyfrgell
category.CL03RR = Ystafell Ddarllen
category.CL04 = Amgueddfa / Oriel
category.CL04AC = Art Centre / Gallery
category.CL04AM = Museum Aviation
category.CL04HG = Canolfan Dreftadaeth
category.CL04IM = Amgueddfa Ddiwydiannol
category.CL04MM = Amgueddfa Filwrol
category.CL04SM = Amgueddfa Wyddoniaeth
category.CL04TM = Museum Trafnidiaeth
category.CL04NM = Amgueddfa Forwrol
category.CL06 = Dan Do / Outdoor Leisure / Chwaraeon / Canolfan Gweithgaredd
category.CL06AH = Athletau
category.CL06BF = Bowlio
category.CL06CK = Cyfleuster Criced
category.CL06CU = Cwrlo
category.CL06YF = Chwaraeon Beicio
category.CL06DS = Plymio / Cyfleuster Nofio
category.CL06EQ = Sports Equestrian
category.CL06FB = Pêl-droed
category.CL06FI = Pysgota / Cyfleuster Pysgota
category.CL06GF = Golff
category.CL06GL = Gleidio Cyfleuster
category.CL06GR = Greyhound Racing
category.CL06HF = Cyfleuster Hoci
category.CL06HR = Rasio Ceffylau
category.CL06HV = Llestr Hanesyddol / Awyrennau / Cerbyd
category.CL06LS = Gweithgaredd / Hamdden / Canolfan Chwaraeon
category.CL06ME = Sports Model
category.CL06MF = Chwaraeon Modur
category.CL06PF = Cae Chwarae
category.CL06QS = Cyfleuster Chwaraeon Raced
category.CL06RF = Rygbi
category.CL06RG = Maes Adloniant
category.CL06SI = Shinty
category.CL06SK = Skateboarding
category.CL06SX = Cyfleuster Firing Sifil
category.CL06TB = Bowlio Deg
category.CL06TN = Cwrt Tennis Cyhoeddus
category.CL06WA = Chwaraeon Dwr
category.CL06WP = Chwaraeon Gaeaf
category.CL06WY = Sports Bywyd Gwyllt
category.CL07 = Bingo Hall / Sinema / Cynhadledd / Arddangosfa Canolfan / Theatre / Neuadd Gyngerdd
category.CL07TH = Theatre
category.CL07CI = Sinema
category.CL07EN = Adloniant Cymhleth
category.CL07EX = Gynadledda / Canolfan Arddangos
category.CL08 = Sw / Parc Thema
category.CL08AK = Amusement Park
category.CL08MX = Safle Pentref Model
category.CL08WZ = Bywyd Gwyllt / Parc Sŵolegol
category.CL08AQ = Atyniad Dyfrol
category.CL09 = Beach Hut (Hamdden, Defnyddio Dibreswyl yn Unig)
category.CL10 = Clwb Aelodau Preifat Trwyddedig
category.CL10RE = Hamdden Clwb Cymdeithasol /
category.CL11 = Arena / Stadiwm
category.CL11SD = Stadiwm
category.CL11SJ = Maes y Sioe
category.CM = Meddygol
category.CM01 = Deintydd Meddygfa
category.CM02 = Practis Cyffredinol / Clinig
category.CM02HL = Gwasanaethau Gofal Iechyd
category.CM02HC= Ganolfan Iechyd
category.CM03 = Ysbyty / Hosbis
category.CM03HI = Hosbis
category.CM03HP = Ysbyty
category.CM04 = Meddygol / Profi / Labordy Ymchwil
category.CM05 = Gwasanaeth Meddygol Proffesiynol
category.CM05ZS = Asesu / Gwasanaethau Datblygu
category.CN = Canolfan Anifeiliaid
category.CN01 = Cattery / Kennel
category.CN02 = Gwasanaethau Anifeiliaid
category.CN02AX = cwarantîn Anifeiliaid
category.CN03 = Marchogaeth
category.CN03HB = rasio ceffyl / Bridio Stabl
category.CN03SB = stablau Masnachol / Marchogaeth
category.CN04 = Vet / Animal Triniaeth Feddygol
category.CN05 = Anifeiliaid / Adar / Marine Sanctuary
category.CN05AN = Sanctuary Anifeiliaid
category.CN05MR = Marine Sanctuary
category.CO = Swyddfa
category.CO01 = Swyddfa / Stiwdio Gwaith
category.CO01EM = Llysgenhadaeth / Uchel Gomisiwn / gennad
category.CO01FM = Stiwdio Ffilm
category.CO01GV = Gwasanaeth Llywodraeth Ganolog
category.CO01LG = Gwasanaethau Llywodraeth Leol
category.CO02 = Darlledu (Teledu / Radio)
category.CR = Manwerthu
category.CR01 = Banc / Gwasanaeth Ariannol
category.CR02 = Asiant Gwasanaeth Manwerthu
category.CR02PO = Post Swyddfa''r
category.CR04 = y Farchnad (Dan Do / Awyr Agored)
category.CR04FK = Farchnad Bysgod
category.CR04FV = Ffrwythau / Llysiau Marchnad
category.CR04LV = Farchnad Da Byw y
category.CR05 = Gorsaf Betrol
category.CR06 = Tafarn / Bar / Clwb nos
category.CR07 = Bwyty / Ffreutur
category.CR08 = Siop / Ystafell Arddangos
category.CR08GC = Canolfan Arddio
category.CR09 = Arall Adeilad Trwyddedig / Gwerthwr
category.CR10 = Outlet Bwyd Cyflym / Takeaway (Poeth / Oer)
category.CR11 = Teller Machine Awtomataidd (ATM)
category.CS = Storio Tir
category.CS01 = Cyffredinol Tir Storio
category.CS02 = Adeiladwyr ''Iard
category.CT = Cludiant
category.CT01 = Cyfleuster Seilwaith Maes Awyr / llain lanio / Maes Awyr / Trafnidiaeth Awyr
category.CT01AF = Maes Awyr
category.CT01AY = Terminal Teithwyr Aer
category.CT01AI = Gwasanaethau Isadeiledd Trafnidiaeth Awyr
category.CT01AP = Maes Awyr
category.CT01HS = Gorsaf Hofrennydd
category.CT01HT = Heliport / Helipad
category.CT02 = Shelter Bws
category.CT03 = Car / Hyfforddwr / Cerbyd Masnachol / Tacsi Parcio / Parcio a Theithio Safle
category.CT03PK = Parcio a Theithio Cyhoeddus
category.CT03PP = Parcio Cyhoeddus
category.CT03PU = Parcio Hyfforddwr Cyhoeddus
category.CT03VP = Parcio Cerbydau Masnachol Cyhoeddus
category.CT04 = Trin Nwyddau Cludo Nwyddau / Terminal
category.CT04AE = Cludo Nwyddau Terminal Awyr
category.CT04CF = Cynhwysydd Cludo Nwyddau
category.CT04RH = Road Trafnidiaeth Cludo Nwyddau
category.CT04RT = Rheilffyrdd Trafnidiaeth Cludo Nwyddau
category.CT05 = Marina
category.CT06 = Angorfa
category.CT07 = Asedau Railway
category.CT08 = Gorsaf / Cyfnewidfa / Terminal / Halt
category.CT08BC = Gorsaf Fysiau / Coach
category.CT08RS = Gorsaf Reilffordd
category.CT08VH = Cerbydau Terminal Rail
category.CT09 = Cludiant Trac / Ffordd
category.CT09CL = Rheilffordd Cliff
category.CT09CX = Cadeirydd Lifft / Car Cebl / Tynnu Ski
category.CT09MO = fonoreilffordd
category.CT10 = Storio Cerbydau
category.CT10BG = Storio Cychod
category.CT10BU = Depo Bws / Coach
category.CT11 = Isadeiledd Trafnidiaeth Cysylltiedig
category.CT11AD = Pontcysyllte
category.CT11LK = Lock
category.CT11WE = Weir
category.CT11WG = pont bwyso / Gauge Load
category.CT12 = Dros nos Parc Lorïau
category.CT13 = Harbwr / Port / Doc / Iard Longau / Llithrfa / Glanio Llwyfan / Pier / Glanfa / Pontŵn / Terminal / angori / Cei
category.CT13FR = Teithwyr Fferi Terminal
category.CT13NB = Heb Tancer angori Morwrol
category.CT13NF = Cyfleuster Refuelling Morwrol
category.CT13SA = Slipway
category.CT13SP = Terminal Teithwyr Llong
category.CT13TK = angori Tancer
category.CT13VF = Cerbydau Ferry Terminal
category.CU = Utility
category.CU01 = Trydan Is-Station
category.CU02 = Tirlenwi
category.CU03 = Gorsaf Bŵer Cynhyrchu / Ynni
category.CU03ED = Cyfleuster Dosbarthu Trydan
category.CU03EP = Cyfleuster Cynhyrchu Trydan
category.CU03WF = Fferm Wynt
category.CU03WU = Tyrbin Gwynt
category.CU04 = Pump House Gorsaf Bwmpio Tŵr / / Water
category.CU04WC = Dŵr Rheoli / Pwmpio
category.CU04WD = Dosbarthu Dwr / Pwmpio
category.CU04WM = Monitro Ansawdd Dŵr
category.CU04WS = Storio Water
category.CU04WW = Gwastraff Dosbarthu Dwr / Pwmpio
category.CU06 = Telathrebu
category.CU06TE = Mast Telathrebu
category.CU06TX = Gyfnewidfa Ffôn
category.CU07 = Water / Gwastraff / Carthion Gwaith Trin Dŵr
category.CU07WR = Trin Dŵr Gwastraff
category.CU07WT = Trin Dŵr
category.CU08 = Nwy / Olew Storio / Dosbarthu
category.CU08GG = Llywodraethwr Nwy
category.CU08GH = Holder Nwy
category.CU08OT = Terminal Olew
category.CU09 = Arall Defnydd Utility
category.CU09OV = Arsyllfa
category.CU09RA = Gorsaf Radar
category.CU09SE = Gorsaf Ddaear Lloeren
category.CU09CQ = Gorsaf Terminal Cable
category.CU10 = Rheoli Gwastraff
category.CU11 = Box Ffôn
category.CU11OP = Ffonau Cyhoeddus Eraill
category.CU12 = Dam
category.CX = Gwasanaeth Brys / Achub
category.CX01 = Heddlu / Heddlu Trafnidiaeth / Gorsaf
category.CX01PT = Hyfforddiant yr Heddlu
category.CX02 = Gorsaf Dân
category.CX02FT = Gwasanaeth Tân Hyfforddiant
category.CX03 = Gorsaf Ambiwlans
category.CX03AA = Môr Awyr Achub / Awyr Ambiwlans
category.CX04 = Bad Achub / Gwasanaethau Station
category.CX05 = Gwylwyr y Glannau Achub / Lookout / Station
category.CX06 = Gorsaf Achub Mynydd
category.CX07 = Goleudy
category.CX08 = Heddlu Box / Ciosg
category.CZ = Gwybodaeth
category.CZ01 = Hysbysebu Hysbysfyrddau
category.CZ02 = Croeso Arwyddion
category.CZ02VI = Gwybodaeth i Ymwelwyr
category.CZ03 = Traffig Gwybodaeth Arwyddion
category.L = Tir
category.LA = Amaethyddol - Perthnasol i dir mewn perchnogaeth y fferm ac nid rhedeg fel menter busnes ar wahân
category.LA01 = Tir Pori
category.LA02 = Cnydau Parhaol / Cylchdroi Cnydau
category.LA02OC = Orchard
category.LB = Adeilad Ategol
category.LB99AV = Adardy / Dovecot / Cage
category.LB99BD = Bandstand
category.LB99PI = Pafiliwn / Newid Ystafell
category.LB99SV = Sports Strwythur Edrych ar
category.LC = Mynwent
category.LC01 = Hanesyddol / Segur Mynwent / Mynwent
category.LD = Datblygu
category.LD01 = Safle Datblygu
category.LD01CC = Safle Adeiladu Masnachol
category.LD01CO = Safle Adeiladu Cymunedol
category.LD01RN = Safle Adeiladu Preswyl
category.LD01TC = Safle Adeiladu Trafnidiaeth
category.LF = Coedwigaeth
category.LF02 = Forest / Arboretum / Pinetum (a Reolir / heb eu Rheoli)
category.LF02AU = Arboretum
category.LF03 = Coetir
category.LL = Rhandir
category.LM = Amwynder - ardaloedd agored na denu ymwelwyr
category.LM01 = Cylchfan dirweddu
category.LM02 = Ymyl / Llain Ganol
category.LM02NV = Llain Ganol Naturiol
category.LM02VE = Ymyl Naturiol
category.LM03 = Gynhelir Tir Amwynder
category.LM04 = Gynhelir arwyneb Ardal
category.LM04MV = Archebu Made Canolog
category.LM04PV = Palmant
category.LO = Mannau Agored
category.LO01 = Heath / Moorland
category.LP = Park
category.LP01 = Cyhoeddus Parc / Gardd
category.LP02 = Gwarchodfa Mannau Agored Cyhoeddus / Nature
category.LP03 = Cae Chwarae
category.LP03PA = Maes Chwarae
category.LP03PD = Pwll Padlo
category.LP04 = Preifat Parc / Gardd
category.LU = Tir heb ei ddefnyddio
category.LU01 = Gwag / Tir Diffaith
category.LW = Water
category.LW01 = Llyn / Cronfa Ddŵr
category.LW01BP = Pond Cydbwyso
category.LW01BV = Buried Cronfa Ddŵr
category.LW02 = Enwyd Pond
category.LW02DE = Pond Dew
category.LW02DP = Pond Decoy
category.LW02IW = Static Water
category.LW03 = Dyfrffordd
category.LW03LR = ffrydiau / Rasys
category.LW03DR = Drain
category.M = Milwrol
category.MA = Fyddin
category.MA99AR = Byddin Ystod Milwrol
category.MA99AS = Safle Fyddin
category.MA99AT = Hyfforddiant Milwrol Fyddin
category.MA99AG = Byddin Storio Milwrol
category.MB = Adeilad Ategol
category.MB99TG = Milwrol Targed
category.MF = Llu Awyr
category.MF99UG = Storio Milwrol Llu Awyr
category.MF99UR = Llu Awyr Ystod Milwrol
category.MF99US = Safle Llu Awyr
category.MF99UT = Hyfforddiant Milwrol Llu Awyr
category.MG = Defence Estates
category.MN = Llynges
category.MN99VG = Llynges Storio Milwrol
category.MN99VR = Llynges Ystod Milwrol
category.MN99VS = Naval Safle
category.MN99VT = Hyfforddiant Llynges, y Fyddin
category.O = Arall (Arolwg Ordnans yn Unig)
category.OA = Cymorth I Navigation
category.OA01 = Cymorth I Awyrennol Navigation
category.OA01AL = Awyrennol Navigation Beacon / Light
category.OA01LL = Glanio Light
category.OA01SQ = Square Signal
category.OA01WK = Gwynt Sock / Gwynt Tee
category.OA02 = Cymorth I Nautical Navigation
category.OA02DM = Daymark
category.OA02FG = Rhybudd Niwl Horn
category.OA02NL = Morwrol Navigation Beacon / Light
category.OA03 = Cymorth I Ffordd Navigation
category.OA03GP = Guide Post
category.OC = Amddiffyn yr Arfordir Atal / Llifogydd
category.OC01 = Boulder Wall / Sea Wall
category.OC02 = Flood Gate / Sluice Gate Llifogydd / Falf Llifogydd
category.OC03 = Grwyn
category.OC04 = Rip-Rap
category.OE = Cymorth mewn Argyfwng
category.OE01 = Cyfleuster Swyddfa Beach / Cymorth Cyntaf
category.OE02 = Argyfwng Ffôn (Non Traffordd)
category.OE03 = Strwythur Larymau Tân / Cyfleuster Tower Arsylwi Tân / Beater Tân
category.OE04 = Pwynt Offer Argyfwng / Siren Argyfwng Baner / Warning
category.OE05 = Cyfleuster Lifeguard
category.OE06 = Bywyd / Belt / Bwi / arnawf / Jacket / Rope Diogelwch
category.OF = Street Furniture
category.OG = Cymorth Amaethyddol Gwrthrychau
category.OG01 = Ysgol Pysgod / Lock / Pen / Trap
category.OG02 = Da Byw Pen / Dip
category.OG03 = Currick
category.OG04 = Slyri Gwely / Pit
category.OH = Safle Hanesyddol / Gwrthwynebu
category.OH01 = Strwythur Hanesyddol / Gwrthwynebu
category.OI = Cefnogaeth Diwydiannol
category.OI01 = Adit / Inclein / Lefel
category.OI02 = geson / Doc Sych / Grid
category.OI03 = Sianel / Cludydd / Conduit / Pipe
category.OI04 = Simnai / Ffliw
category.OI05 = Crane / Hoist / Winch / Deunydd Elevator
category.OI06 = Flare Stack
category.OI07 = Hopper / Silo / seston / Tanc
category.OI08 = Grab / Skip / Arall Diwydiannol Gwastraff Peiriannau / Gollwng
category.OI09 = Kiln / Popty / alwminiwm
category.OI10 = tyllau archwilio / Siafft
category.OI11 = Diwydiannol Gorlif / Sluice / Falf / Falf Tai
category.OI12 = Oeri Tŵr
category.OI13 = Solar Panel / Olwyn Ddŵr
category.OI14 = Pole Ffôn / Post
category.OI15 = Dosbarthu Trydan Pole / Peilon
category.ON = Gwrthrych Naturiol Sylweddol
category.ON01 = Ffin / Sylweddol / Hanesyddol Coed / Pollard
category.ON02 = Ffin / Sylweddol craig / Boulder
category.ON03 = Naturiol Hole (Blow / Shake / Swallow)
category.OO = Addurnol / Gwrthwynebu Diwylliannol
category.OO02 = Mausoleum / Bedd / Bedd
category.OO03 = Gwrthrych Addurnol Syml
category.OO04 = Maze
category.OP = Chwaraeon / Cefnogi Hamdden
category.OP01 = Butt / Hide
category.OP02 = Gallop / Theithio
category.OP03 = Rheilffordd Fach
category.OR = Isadeiledd y Post Brenhinol
category.OR01 = Box Post
category.OR02 = Post Cyflenwi Box / Pouch
category.OR03 = Blwch Post
category.OR04 = Mail Ychwanegol / Packet y cyfeiriedig
category.OS = Gwyddonol / Cymorth Arsylwi
category.OS01 = Gorsaf Feteorolegol / Offer
category.OS02 = Radar Seilwaith / Lloeren
category.OS03 = Telesgop / Arsylwi Isadeiledd / Seryddiaeth
category.OT = Cymorth Cludiant
category.OT01 = Gwartheg Grid / Ford
category.OT02 = Elevator / grisiau codi / Camau
category.OT03 = Pont Droed / Walkway
category.OT04 = Pole / Post / Bollard (Cyfyngu Mynediad i Gerbydau)
category.OT05 = Subway / Tanffordd
category.OT06 = Cyfleuster Arolygu Tollau
category.OT07 = Cilfan Gan
category.OT08 = Croesi Lefel
category.OT09 = Mail Pick Up
category.OT10 = Croesfan i Gerddwyr Railway
category.OT11 = Clustogi Railway
category.OT12 = Rail Llusgo
category.OT13 = Gwasanaethau Isadeiledd Rheilffyrdd
category.OT14 = Rail Cilomedr Marker Pellter
category.OT15 = Goleuo Railway
category.OT16 = Rail Mile Marker Pellter
category.OT17 = Turntable Railway
category.OT18 = Rail pont bwyso
category.OT19 = Rail Signalau
category.OT20 = Traverse Railway
category.OT21 = Nwyddau Tramffordd
category.OT22 = Llusgo Road
category.OT23 = Dip Cerbydau
category.OT24 = Road Turntable
category.OT25 = Road Mile Marker Pellter
category.OT26 = Road Cilomedr Marker Pellter
category.OT27 = Gwasanaethau Isadeiledd Road
category.OU = Safle heb Gefnogaeth
category.OU01 = Cyfleuster Parcio Beiciau
category.OU04 = Picnic Barbeciw Safle /
category.OU05 = Teithio Pobl Safle
category.OU08 = Shelter (Heb gynnwys Lloches Bws)
category.P = Rhiant Shell
category.PP = Eiddo Shell
category.PS = Cofnod Street
category.R = Preswyl
category.RB = Adeilad Ategol
category.RC = Gofod Maes Parcio
category.RC01 = Parcio a Ddyrannwyd
category.RD = Annedd
category.RD01 = Carafanau
category.RD02 = Detached
category.RD03 = Lled-Detached
category.RD04 = Teras
category.RD06 = Hunangynhwysol Flat (Yn cynnwys Fflat deulawr / Apartment)
category.RD07 = Boat House
category.RD08 = Llety Gwarchod
category.RD10 = Eiddo Preifat Gwyliau Carafan / Chalets
category.RG = Garej
category.RG02 = Lock-Up Garej / Llys Garej
category.RH = Tŷ Mewn Amlddeiliadaeth
category.RH01 = HMO Rhieni
category.RH02 = HMO Fflat un ystafell / Arall Non Hunan Llety Hunangynhwysol
category.RH03 = HMO Heb Divided Pellach
category.RI = Sefydliad Preswyl
category.RI01 = Gofal Cartref / Nyrsio
category.RI02 = Preswyl Cymunedol
category.RI02NC = Anfasnachol Llety
category.RI02RC = Cymunedol Crefyddol
category.RI03 = Addysg Breswyl
category.U = Annosbarthedig
category.UC = Disgwyl Dosbarthiad
category.UP = Ymchwiliad Mewnol Aros
category.X = Defnydd Deuol
category.Z = Gwrthwynebu o Ddiddordeb
category.ZA = Archeolegol Dig Safle
category.ZM = Monument
category.ZM01 = Obelisg / Carreg Filltir / Maen Hir
category.ZM01OB = Obelisg
category.ZM01ST = Maen Hir
category.ZM02 = Coffa / Market Cross
category.ZM03 = Cerflun
category.ZM04 = Castell / Adfail Hanesyddol
category.ZM05 = Strwythur Arall
category.ZM05BS = Ffin Stone
category.ZM05PN = Arddangos Celf Parhaol / Cerfluniau
category.ZM05CE = Cascade / Fountain
category.ZM05WI = Windmill (Anweithredol)
category.ZS = plasty
category.ZU = Underground Nodwedd
category.ZU01 = Ogof
category.ZU04 = Twll / Twll Naturiol
category.ZV = Nodwedd Underground Arall
category.ZV01 = Cellar
category.ZV02 = Mwyngloddiau Segur
category.ZV02MI = Mwynau Mwyngloddio / Anweithgar
category.ZV02OI = Olew A / Nwy Echdynnu / Anweithgar
category.ZV02QI = Chwarela Mwynau A / Agored Echdynnu / Anweithgar
category.ZV03 = Wel / Gwanwyn
category.ZV03SG = Gwanwyn
category.ZV03WL = Wel
category.ZW = Place Of Addoli
category.ZW99AB = Abbey
category.ZW99CA = Gadeirlan
category.ZW99CH = Church
category.ZW99CP = Capel
category.ZW99GU = Gurdwara
category.ZW99KH = Neuadd y Deyrnas
category.ZW99MQ = Mosg
category.ZW99MT = Minster
category.ZW99SU = Stupa
category.ZW99SY = Synagogue
category.ZW99TP = Temple
category.ZW99LG = Lych Gate
upload=Dangos canlyniadau
upload-download=Canlyniadau lawrlwytho
multi.table.id = ID
multi.table.input.address = Cyfeiriad Mewnbwn
multi.table.matched.address = Cyfeiriad Cyfatebol
multi.table.match.type = Math Match
multi.table.uprn = UPRN
multi.table.score = Sgôr
multi.table.comparable.score = Sgôr cymaradwy
multi.table.confidence.score = Sgôr Hyder
multi.table.actual.score = Sgôr elastig
multi.table.building.score = Building Sgôr
multi.table.unit.score = Sgôr Uned
multi.table.rank = Rank
multi.counter.total = Nifer o gyfeiriadau chwilio cyfateb
multi.counter.single = Sengl
multi.counter.multiple = gemau Lluosog
multi.counter.empty = Dim gêm
multi.table.matched = Cyfatebol?
multi.table.yes = Do
multi.table.no = Naddo
multi.table.all.yes = Dewis pob "YDW"
multi.table.all.no = Dewis pob "Na"
not.found = Heb Ganfod
feedback.link = Adborth
feedback.individual_link = Wedi dod o hyd yn broblem gyda cyfeiriad cyfatebol?
| Cycript | 3 | uk-gov-mirror/ONSdigital.address-index-api | demo-ui/conf/messages.cy | [
"MIT"
] |
(import bin.printenv)
(import sys)
(print sys.path)
| Hy | 1 | josephwillard/hy | tests/resources/relative_import.hy | [
"MIT"
] |
var x{1..2} >= 0 <= 1;
var y >= 0 <= 1;
s.t. c: y <= numberof 1 in ({i in 1..2} x[i]);
| AMPL | 1 | ampl/plugins | test/data/numberof.ampl | [
"BSD-3-Clause"
] |
/* Copyright (c) 2017-2019 Netronome Systems, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
;TEST_INIT_EXEC nfp-reg mereg:i32.me0.XferIn_32=0xf0bf
#include "pkt_ipv6_ext_routing_udp_x80.uc"
#include "actions_rss.uc"
.reg pkt_len
pv_get_length(pkt_len, pkt_vec)
rss_reset_test(pkt_vec)
__actions_rss(pkt_vec)
rss_validate(pkt_vec, NFP_NET_RSS_IPV6_UDP, test_assert_equal, 0x5333e499)
rss_validate_range(pkt_vec, NFP_NET_RSS_IPV6_UDP, excl, 0, (14/* + 8*/))
rss_validate_range(pkt_vec, NFP_NET_RSS_IPV6_UDP, incl, (14 + 8), (14 + 8 + 32))
rss_validate_range(pkt_vec, NFP_NET_RSS_IPV6_UDP, excl, (14 + 8 + 32), (14 + 8 + 32 + 8))
rss_validate_range(pkt_vec, NFP_NET_RSS_IPV6_UDP, incl, (14 + 8 + 32 + 8), (14 + 8 + 32 + 8 + 4))
rss_validate_range(pkt_vec, NFP_NET_RSS_IPV6_UDP, excl, (14 + 8 + 32 + 8 + 4), pkt_len)
test_pass()
PV_SEEK_SUBROUTINE#:
pv_seek_subroutine(pkt_vec)
| UnrealScript | 3 | pcasconnetronome/nic-firmware | test/datapath/actions_rss_ipv6_ext_routing_udp_test.uc | [
"BSD-2-Clause"
] |
Begin Project "Demo", "Reversed Engineered from SQL Server on Windows.School", VC_PROJECT=, AUXPROJPATH=
DATASOURCE=SQL Server on Windows
DATABASE=School
Begin SubProject "Table", "", PATH=.\Table
Begin File "dbo.Course.sql"
PATH=.\Table\dbo.Course.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=0
OBJECTTYPE=36
End File
Begin File "dbo.CourseInstructor.sql"
PATH=.\Table\dbo.CourseInstructor.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=1
OBJECTTYPE=36
End File
Begin File "dbo.Department.sql"
PATH=.\Table\dbo.Department.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=2
OBJECTTYPE=36
End File
Begin File "dbo.OfficeAssignment.sql"
PATH=.\Table\dbo.OfficeAssignment.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=3
OBJECTTYPE=36
End File
Begin File "dbo.OnlineCourse.sql"
PATH=.\Table\dbo.OnlineCourse.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=4
OBJECTTYPE=36
End File
Begin File "dbo.OnsiteCourse.sql"
PATH=.\Table\dbo.OnsiteCourse.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=5
OBJECTTYPE=36
End File
Begin File "dbo.Person.sql"
PATH=.\Table\dbo.Person.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=6
OBJECTTYPE=36
End File
Begin File "dbo.StudentGrade.sql"
PATH=.\Table\dbo.StudentGrade.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=7
OBJECTTYPE=36
End File
Begin File "dbo.sysdiagrams.sql"
PATH=.\Table\dbo.sysdiagrams.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=8
OBJECTTYPE=36
End File
End SubProject
Begin SubProject "ForeignKey", "", PATH=.\ForeignKey
Begin File "dbo.FK_Course_Department.sql"
PATH=.\ForeignKey\dbo.FK_Course_Department.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=9
OBJECTTYPE=51
End File
Begin File "dbo.FK_CourseInstructor_Course.sql"
PATH=.\ForeignKey\dbo.FK_CourseInstructor_Course.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=10
OBJECTTYPE=51
End File
Begin File "dbo.FK_CourseInstructor_Person.sql"
PATH=.\ForeignKey\dbo.FK_CourseInstructor_Person.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=11
OBJECTTYPE=51
End File
Begin File "dbo.FK_OfficeAssignment_Person.sql"
PATH=.\ForeignKey\dbo.FK_OfficeAssignment_Person.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=12
OBJECTTYPE=51
End File
Begin File "dbo.FK_OnlineCourse_Course.sql"
PATH=.\ForeignKey\dbo.FK_OnlineCourse_Course.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=13
OBJECTTYPE=51
End File
Begin File "dbo.FK_OnsiteCourse_Course.sql"
PATH=.\ForeignKey\dbo.FK_OnsiteCourse_Course.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=14
OBJECTTYPE=51
End File
Begin File "dbo.FK_StudentGrade_Course.sql"
PATH=.\ForeignKey\dbo.FK_StudentGrade_Course.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=15
OBJECTTYPE=51
End File
Begin File "dbo.FK_StudentGrade_Student.sql"
PATH=.\ForeignKey\dbo.FK_StudentGrade_Student.sql
DESCRIPTION=
INCLUDE=1
BUILDINDEX=16
OBJECTTYPE=51
End File
End SubProject
End Project
| Ecere Projects | 4 | anilws1/DBPS | Demo/Demo.epj | [
"Apache-2.0"
] |
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports System.Threading.Tasks
Imports Microsoft.CodeAnalysis.Remote.Testing
Namespace Microsoft.CodeAnalysis.Editor.UnitTests.FindReferences
Partial Public Class FindReferencesTests
<WorkItem(529629, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/529629")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestCSharp_Indexer1(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="C#" CommonReferences="true">
<Document>
class C
{
public int {|Definition:$$this|}[int y] { get { } }
}
class D
{
void Goo()
{
var q = new C();
var b = q[||][4];
}
}
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(529629, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/529629")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestBasic_Indexer1(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="Visual Basic" CommonReferences="true">
<Document>
class C
public default readonly property {|Definition:$$Item|}(y as Integer) as Integer
get
return 0
end get
end property
end class
class D
sub Goo()
dim q = new C()
dim b = q[||](4)
end sub
end class
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(545577, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/545577")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestBasic_Indexer2(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="Visual Basic" CommonReferences="true">
<Document>
Class A
Default ReadOnly Property {|Definition:$$Goo|}(ByVal x As Integer) As Integer
Get
End Get
End Property
Shared Sub Main()
Dim x As New A
Dim y = x[||](1)
End Sub
End Class
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(650779, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/650779")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestBasic_Indexer3(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="Visual Basic" CommonReferences="true">
<Document>
Public Class C
Default Public Property {|Definition:$$Item|}(index As Integer) As C
Get
Return Nothing
End Get
Set(value As C)
End Set
End Property
Public Sub Goo(c As C)
c = c.[|Item|](2)
c[||](1) = c
c.[|Item|](1) = c
c[||](1).[|Item|](1) = c
End Sub
End Class
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(661362, "http://vstfdevdiv:8080/DevDiv2/DevDiv/_workitems/edit/661362")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestBasic_Indexer4(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="Visual Basic" CommonReferences="true">
<Document>
Class C
Default Public Property {|Definition:$$Hello|}(x As String) As String
Get
Return Nothing
End Get
Set(value As String)
End Set
End Property
End Class
Module Program
Sub Main(args As String())
Dim x As New C
Dim y = x![||]HELLO
Dim z = x![||]HI
x[||]("HELLO") = ""
End Sub
End Module
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(39847, "https://github.com/dotnet/roslyn/issues/39847")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestCSharp_Indexer_Conditional(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="C#" CommonReferences="true">
<Document>
class A
{
private string[] arr = new T[100];
public string {|Definition:$$this|}[int i]
{
get { return arr[i]; }
set { arr[i] = value; }
}
}
class B
{
private A a;
void M2()
{
var s = a?[||][0];
}
}
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(39847, "https://github.com/dotnet/roslyn/issues/39847")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestBasic_Indexer_Conditional(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="Visual Basic" CommonReferences="true">
<Document>
Public Class C
Default Public Property {|Definition:$$Item|}(index As Integer) As C
Get
Return Nothing
End Get
Set(value As C)
End Set
End Property
Public Sub Goo(c As C)
c = c?.[|Item|](2)
c = c?[||](1)
c = c?.[|Item|](1)
c = c?[||](1)?.[|Item|](1)
End Sub
End Class
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(39847, "https://github.com/dotnet/roslyn/issues/39847")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestCSharp_Indexer_CRef(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="C#" CommonReferences="true">
<Document>
class A
{
private string[] arr = new T[100];
/// <see cref="[||]this[int]"/>
public string {|Definition:$$this|}[int i]
{
get { return arr[i]; }
set { arr[i] = value; }
}
}
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(39847, "https://github.com/dotnet/roslyn/issues/39847")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestBasic_Indexer_Cref(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="Visual Basic" CommonReferences="true">
<Document>
class C
''' <see cref="[|Item|]"/>
public default readonly property {|Definition:$$Item|}(y as Integer) as Integer
get
return 0
end get
end property
end class
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(44288, "https://github.com/dotnet/roslyn/issues/44288")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestIndexerReferenceInGlobalSuppression(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="C#" CommonReferences="true">
<Document>
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Category", "RuleId", Scope = "member", Target = "~P:C.[|Item|](System.Int32)")]
class C
{
public int {|Definition:$$this|}[int y] { get { } }
}
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WorkItem(44288, "https://github.com/dotnet/roslyn/issues/44288")>
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestParameterizedPropertyReferenceInGlobalSuppression(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="Visual Basic" CommonReferences="true">
<Document><")>
Class C
ReadOnly Property {|Definition:$$Goo|}(x As Integer) As Integer
Get
Return 0
End Get
End Property
End Class
]]>
</Document>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
<WpfTheory, CombinatorialData, Trait(Traits.Feature, Traits.Features.FindReferences)>
Public Async Function TestCSharp_IndexerInSourceGeneratedDocument(kind As TestKind, host As TestHost) As Task
Dim input =
<Workspace>
<Project Language="C#" CommonReferences="true">
<Document>
class C
{
public int {|Definition:$$this|}[int y] { get { } }
}
</Document>
<DocumentFromSourceGenerator>
class D
{
void Goo()
{
var q = new C();
var b = q[||][4];
}
}
</DocumentFromSourceGenerator>
</Project>
</Workspace>
Await TestAPIAndFeature(input, kind, host)
End Function
End Class
End Namespace
| Visual Basic | 4 | Cadris/roslyn | src/EditorFeatures/Test2/FindReferences/FindReferencesTests.IndexerSymbols.vb | [
"MIT"
] |
退/null/28211
送/null/48681
适/null/22
逃/null/12414
逄/null/232
逅/null/895
逆/null/5627
选/null/163162
逊/null/7390
逋/null/46
逌/null/9
逍/null/2366
透/null/19668
逐/null/10865
逑/null/288
递/null/5007
途/null/17088
逖/null/182
逗/null/1843
通/null/170230
逛/null/8014
逜/null/6
逝/null/7491
逞/null/1137
邀/null/8702
速/null/80360
造/null/71032
邂/null/1041
逡/null/17
邃/null/345
逢/null/23680
邅/null/15
逤/null/24
邆/null/7
逦/null/40
邈/null/123
邋/null/154
邍/null/13
逭/null/10
逮/null/1407
逯/null/8
邑/null/150
邓/null/4595
邔/null/8
邕/null/20
逴/null/6
逵/null/265
邗/null/9
逶/null/32
邘/null/10
邙/null/12
逸/null/9922
邛/null/10
逻/null/8629
邝/null/200
鄀/null/5
逼/null/7474
邞/null/11
逽/null/17
邟/null/12
鄁/null/11
兀/null/119
逾/null/1514
邠/null/24
鄂/null/79
嗀/null/11
逿/null/25
邡/null/9
鄃/null/7
邢/null/188
鄄/null/17
那/null/610340
鄅/null/12
邥/null/7
鄇/null/7
邦/null/10997
鄈/null/11
邧/null/20
鄋/null/15
邪/null/10263
鄍/null/7
邬/null/114
鄎/null/15
鄏/null/17
邮/null/15910
鄐/null/24
邯/null/52
鄑/null/20
邰/null/278
邱/null/9107
邲/null/16
邳/null/13
邴/null/17
邵/null/1064
鄗/null/8
邶/null/16
鄙/null/1885
邸/null/137
鄚/null/10
邹/null/946
鄛/null/10
邺/null/42
鄜/null/9
邻/null/5737
鄝/null/11
鄞/null/27
醀/null/14
邽/null/15
鄟/null/8
醁/null/17
邾/null/12
鄠/null/13
醂/null/6
邿/null/11
鄡/null/14
鄢/null/74
醄/null/13
鄣/null/16
醅/null/25
鄤/null/12
醆/null/8
醇/null/2173
鄦/null/14
醉/null/11754
鄨/null/9
醊/null/10
鄩/null/5
醋/null/1461
鄪/null/12
鄫/null/11
醍/null/44
鄬/null/9
醏/null/9
鄮/null/10
醐/null/33
鄯/null/5
醑/null/9
醒/null/19742
聂/null/842
鄱/null/16
醓/null/13
聃/null/12
鄳/null/6
聆/null/1703
鄵/null/10
聇/null/9
聈/null/13
醙/null/8
鄸/null/23
醚/null/71
聊/null/34724
鄹/null/15
醛/null/73
聋/null/613
职/null/53031
醝/null/5
聍/null/19
鄻/null/7
聏/null/9
醟/null/19
鈂/null/5
聐/null/10
鄾/null/11
醠/null/8
聑/null/11
鄿/null/15
醡/null/27
聒/null/163
醢/null/18
醣/null/61
联/null/86573
鈆/null/14
醥/null/10
鈇/null/12
醧/null/10
聘/null/3233
醨/null/10
鈊/null/8
醪/null/11
鈌/null/7
聚/null/18174
聜/null/6
醭/null/9
鈏/null/9
聝/null/16
醮/null/82
胀/null/1936
胁/null/4090
醰/null/14
胂/null/10
胃/null/3424
醲/null/12
胄/null/26
醳/null/7
胅/null/14
醴/null/47
鈖/null/7
聤/null/16
胆/null/7982
醵/null/11
鈗/null/9
胇/null/8
胈/null/10
醷/null/19
鈙/null/9
聧/null/6
胉/null/14
鈚/null/10
胊/null/22
醹/null/13
聩/null/18
醺/null/158
鈜/null/32
聪/null/11620
背/null/422
胍/null/13
聬/null/9
胎/null/7627
胏/null/1927
醽/null/16
胐/null/13
醾/null/8
銂/null/121
胑/null/5
聱/null/38
胔/null/9
鈤/null/10
銆/null/8
胕/null/15
銇/null/9
胖/null/12923
銈/null/9
胗/null/23
銊/null/5
胘/null/10
胙/null/13
銋/null/31
聸/null/10
胚/null/422
銌/null/8
胛/null/123
銎/null/13
胜/null/27
鈭/null/13
胝/null/97
胞/null/8509
胠/null/7
鈱/null/17
聿/null/359
胡/null/10
腃/null/12
鈲/null/15
銔/null/13
腄/null/16
胣/null/9
胤/null/262
腆/null/233
銗/null/26
腇/null/5
胥/null/371
鈶/null/12
胦/null/14
銙/null/9
胧/null/632
腊/null/57
腋/null/150
胪/null/24
腌/null/27
銝/null/25
胫/null/103
腍/null/11
錀/null/13
胭/null/161
腏/null/7
錂/null/15
腐/null/4691
瀀/null/11
胯/null/152
腑/null/277
銡/null/10
瀁/null/9
胰/null/39
腒/null/9
銢/null/20
胱/null/192
腓/null/146
胲/null/7
腔/null/3523
銤/null/21
瀄/null/7
胳/null/152
腕/null/1195
胴/null/43
胵/null/7
銧/null/14
錉/null/7
瀇/null/5
胶/null/5012
腘/null/10
錋/null/8
胸/null/8631
錌/null/9
腛/null/5
瀊/null/9
胹/null/12
錍/null/13
胺/null/731
腜/null/11
錎/null/14
瀌/null/10
瀍/null/11
胻/null/14
銮/null/271
瀎/null/9
胼/null/90
腞/null/12
臀/null/425
能/null/668264
錓/null/5
胾/null/8
腠/null/9
臂/null/4251
瀑/null/1514
臃/null/79
錔/null/6
臄/null/5
腢/null/10
臅/null/11
銴/null/15
錖/null/8
瀔/null/7
腤/null/7
臆/null/639
銵/null/17
腥/null/1548
臇/null/15
銶/null/7
瀖/null/22
瀗/null/9
腧/null/19
臊/null/123
腩/null/34
瀙/null/8
臌/null/8
錝/null/11
瀚/null/1351
錞/null/21
鎀/null/10
瀛/null/423
瀜/null/6
腭/null/15
腮/null/169
臐/null/10
鎃/null/12
炀/null/41
腯/null/8
臑/null/12
腰/null/5106
炂/null/8
腱/null/93
錣/null/10
炃/null/5
瀡/null/11
腲/null/13
錤/null/17
炄/null/5
瀢/null/10
臕/null/10
錥/null/10
瀣/null/23
炅/null/47
腴/null/82
鎈/null/8
瀤/null/8
炆/null/18
臗/null/8
錧/null/31
鎉/null/19
腶/null/9
腷/null/8
臙/null/10
炉/null/16
錪/null/10
鎌/null/32
炊/null/779
腹/null/4278
臛/null/11
鎍/null/12
瀩/null/9
腺/null/496
臜/null/19
鎎/null/11
瀪/null/8
腻/null/2042
臝/null/13
錭/null/12
鎏/null/14
瀫/null/18
腼/null/240
臞/null/7
艀/null/17
炎/null/6632
鎑/null/15
腽/null/11
鎒/null/8
腾/null/4576
艂/null/11
瀯/null/9
炑/null/17
腿/null/7973
臡/null/8
炒/null/3364
艄/null/63
鎕/null/24
瀱/null/10
炓/null/11
臣/null/4750
艅/null/10
錴/null/21
炔/null/15
錵/null/28
鎗/null/269
瀳/null/14
炕/null/99
艇/null/2818
瀴/null/15
炖/null/10
臦/null/10
鎙/null/6
瀵/null/14
臧/null/174
艉/null/52
炘/null/168
錹/null/12
瀷/null/7
炙/null/460
臩/null/11
艋/null/257
瀸/null/8
炚/null/18
自/null/462155
鎝/null/11
鐀/null/13
鎞/null/12
瀹/null/7
臬/null/122
艎/null/7
鎟/null/7
瀺/null/10
炜/null/646
臭/null/8107
艏/null/22
錾/null/15
艐/null/5
瀻/null/15
炝/null/32
臮/null/6
瀼/null/24
焀/null/9
艑/null/7
炟/null/7
艒/null/14
鐆/null/7
焂/null/78
艓/null/11
鎤/null/14
瀿/null/9
炡/null/13
臲/null/11
鎥/null/5
鐇/null/9
焄/null/12
至/null/158841
艕/null/6
致/null/3042
艖/null/14
鐉/null/12
焆/null/7
艗/null/15
鐊/null/13
艘/null/1820
鎨/null/14
臷/null/8
鐌/null/11
焉/null/2648
臸/null/10
艚/null/11
鐍/null/18
焊/null/11
臹/null/10
艛/null/12
鐎/null/12
炩/null/12
焋/null/11
艜/null/9
鐏/null/18
焌/null/23
臻/null/654
炫/null/1561
焍/null/10
臼/null/484
艞/null/11
苀/null/11
鐑/null/6
炬/null/762
焎/null/13
艟/null/37
苁/null/11
鎯/null/83
炭/null/787
臾/null/129
苂/null/8
焐/null/5
炮/null/6650
鎱/null/12
炯/null/497
臿/null/7
艡/null/11
苃/null/8
鐕/null/11
炰/null/15
鐖/null/12
炱/null/21
焓/null/11
鎴/null/11
炳/null/1898
焕/null/1716
苇/null/1097
炴/null/9
焖/null/32
苈/null/7
鎷/null/9
炵/null/13
焗/null/82
焘/null/15
艨/null/14
炷/null/34
焙/null/100
艩/null/13
苋/null/17
炸/null/7863
焚/null/1243
苌/null/7
点/null/319559
钀/null/7
焛/null/21
苍/null/16589
焜/null/340
艬/null/10
苎/null/62
艭/null/8
苏/null/23
钃/null/7
艮/null/59
炼/null/1928
焞/null/12
熀/null/14
良/null/34852
苑/null/3067
炽/null/416
焟/null/6
熁/null/11
艰/null/2159
苒/null/56
炾/null/6
钆/null/11
焠/null/14
熂/null/10
苓/null/756
钇/null/14
色/null/108485
苔/null/890
针/null/22
焢/null/137
熄/null/2282
艳/null/719
苕/null/20
焣/null/13
熅/null/12
艴/null/7
苖/null/15
钉/null/2195
熆/null/12
艵/null/9
苗/null/4802
钊/null/421
焥/null/13
熇/null/97
鐩/null/8
钋/null/11
焦/null/7098
苙/null/9
鐪/null/13
钌/null/10
熉/null/11
钍/null/456
焨/null/20
熊/null/18879
艹/null/539
苛/null/1663
鐬/null/14
艺/null/28831
苜/null/42
钏/null/243
钐/null/10
艼/null/13
苞/null/256
荀/null/243
钑/null/9
艽/null/10
苟/null/1055
荁/null/12
鐰/null/12
钒/null/16
熏/null/109
艾/null/7814
苠/null/60
荂/null/34
鐱/null/12
钓/null/7422
焮/null/12
熐/null/15
艿/null/8
苡/null/40
荃/null/258
钔/null/9
焯/null/70
荄/null/10
恀/null/10
钕/null/12
焰/null/676
恁/null/649
钖/null/94
焱/null/36
苣/null/46
荅/null/14
恂/null/18
钗/null/1811
焲/null/7
熔/null/638
苤/null/51
荆/null/706
恃/null/955
钘/null/148
若/null/141796
荇/null/73
恄/null/11
鐷/null/12
钙/null/409
苦/null/53817
荈/null/21
恅/null/9
草/null/29857
鐹/null/15
钛/null/266
然/null/364596
苨/null/11
恇/null/12
熙/null/3247
荋/null/19
鐻/null/15
钝/null/1527
熚/null/10
苪/null/9
荌/null/11
恉/null/11
鐼/null/9
钞/null/1278
销/null/13028
熛/null/14
苫/null/15
荍/null/24
鐽/null/244
钟/null/25928
焺/null/9
锁/null/11741
熜/null/29
苬/null/13
荎/null/65
恋/null/41039
钠/null/157
锂/null/154
熝/null/7
苭/null/23
荏/null/210
恌/null/22
钡/null/330
熞/null/36
荐/null/548
恍/null/1352
钢/null/17392
锄/null/20
苯/null/295
荑/null/20
钣/null/355
锅/null/5848
熟/null/22719
爁/null/12
苰/null/13
荒/null/8322
钤/null/70
锆/null/26
熠/null/82
爂/null/7
英/null/77253
荓/null/18
恐/null/31356
钥/null/7
锇/null/12
熡/null/6
爃/null/11
苲/null/11
荔/null/140
钦/null/5650
锈/null/11
苳/null/127
恒/null/88
钧/null/2980
锉/null/103
爅/null/14
苴/null/10
荖/null/48
恓/null/13
钨/null/114
锊/null/12
熤/null/6
爆/null/19616
苵/null/13
恔/null/23
熥/null/8
爇/null/31
苶/null/7
恕/null/2873
钩/null/1401
锋/null/10369
荙/null/8
钪/null/9
锌/null/141
熧/null/10
荚/null/73
钫/null/6
熨/null/145
爊/null/11
苹/null/111
荛/null/79
恘/null/10
钬/null/5
锎/null/21
熩/null/7
苺/null/41
荜/null/26
恙/null/310
钭/null/11
熪/null/10
爌/null/24
苻/null/52
恚/null/128
钮/null/3697
锐/null/5831
荞/null/91
菀/null/133
钯/null/18
锑/null/23
熬/null/2994
荟/null/183
菁/null/3741
恛/null/27
钰/null/1232
锒/null/88
苾/null/40
荠/null/15
菂/null/11
钱/null/84904
锓/null/9
荡/null/3359
菃/null/13
恝/null/12
恞/null/5
惀/null/7
钲/null/258
锔/null/11
熯/null/15
菄/null/9
惁/null/8
钳/null/418
锕/null/13
熰/null/19
荣/null/27310
菅/null/161
恟/null/12
钴/null/76
锖/null/17
爓/null/11
荤/null/497
菆/null/15
惃/null/9
钵/null/220
锗/null/53
爔/null/11
惄/null/10
钶/null/13
熳/null/14
荥/null/26
菇/null/892
恢/null/6562
情/null/318027
错/null/168867
荦/null/45
菈/null/181
恣/null/542
惆/null/616
钸/null/42
锚/null/270
熵/null/46
荧/null/127
菉/null/16
恤/null/41
惇/null/80
钹/null/53
锛/null/9
荨/null/83
菊/null/2465
惈/null/10
钺/null/49
锜/null/163
爙/null/12
荩/null/16
菋/null/13
恦/null/7
熸/null/5
惉/null/6
钻/null/20
爚/null/10
荪/null/154
菌/null/2020
恧/null/9
惊/null/9
钼/null/21
锞/null/18
熹/null/432
荫/null/41
恨/null/17543
菎/null/5
惋/null/507
钽/null/21
锟/null/91
恩/null/13311
惌/null/9
钾/null/200
锠/null/63
爝/null/12
荭/null/15
菏/null/11
恪/null/118
惍/null/14
钿/null/262
锡/null/2586
熼/null/8
爞/null/18
犀/null/1165
恫/null/191
惎/null/14
锢/null/180
熽/null/14
爟/null/7
犁/null/187
药/null/201
菑/null/25
恬/null/712
惏/null/11
锣/null/2209
恭/null/10148
锤/null/312
恮/null/19
惑/null/11491
锥/null/1251
熿/null/8
菔/null/21
息/null/54380
锦/null/6282
爢/null/15
犄/null/25
荳/null/1570
菕/null/9
恰/null/7158
惓/null/21
锧/null/9
爣/null/11
犅/null/7
荴/null/14
菖/null/31
惔/null/10
犆/null/7
荵/null/12
菗/null/13
恲/null/20
锩/null/5
惕/null/860
荶/null/7
菘/null/42
恳/null/3589
爦/null/10
犈/null/7
荷/null/5260
菙/null/11
爧/null/7
犉/null/10
荸/null/13
惘/null/1423
閍/null/8
爨/null/11
犊/null/143
菛/null/10
恶/null/4734
惙/null/76
锬/null/14
爩/null/13
犋/null/10
荺/null/46
菜/null/14828
惚/null/605
锭/null/92
爪/null/1861
犌/null/8
荻/null/381
菝/null/9
恸/null/498
惛/null/15
键/null/27734
閐/null/9
犍/null/58
荼/null/549
菞/null/16
恹/null/62
葀/null/33
犎/null/5
惜/null/28798
锯/null/867
爬/null/7216
荽/null/22
菟/null/35
恺/null/464
锰/null/62
荾/null/6
菠/null/249
葂/null/6
惝/null/8
锱/null/45
犐/null/8
荿/null/11
菡/null/191
恻/null/172
葃/null/11
慀/null/10
锲/null/50
犑/null/11
菢/null/17
恼/null/7196
葄/null/109
慁/null/5
惟/null/3771
爰/null/195
犒/null/66
菣/null/10
恽/null/9
葅/null/25
菤/null/5
惠/null/15241
锴/null/51
爱/null/262882
犓/null/11
葆/null/305
锵/null/1743
菥/null/12
恿/null/263
葇/null/10
惢/null/18
锶/null/85
犕/null/8
慅/null/12
锷/null/33
惤/null/5
慆/null/11
锸/null/6
爵/null/5723
犗/null/10
菧/null/9
锹/null/55
閛/null/13
父/null/30608
犘/null/67
菨/null/8
惦/null/465
慈/null/9660
锺/null/7000
閜/null/19
爷/null/6775
菩/null/9485
葋/null/8
惧/null/5840
慉/null/30
锻/null/963
爸/null/15817
犚/null/7
菪/null/10
葌/null/13
惨/null/15736
慊/null/13
锼/null/14
閞/null/46
爹/null/2093
阀/null/1153
菫/null/128
葍/null/7
惩/null/2072
锽/null/42
閟/null/21
阁/null/9841
菬/null/11
葎/null/6
慌/null/2301
锾/null/126
爻/null/306
阂/null/188
犝/null/7
惫/null/1048
阃/null/15
犞/null/16
猀/null/6
菮/null/9
葐/null/14
惬/null/254
慎/null/4705
爽/null/32512
阄/null/15
猁/null/18
葑/null/63
惭/null/1484
慏/null/15
阅/null/10982
菰/null/19
惮/null/336
阆/null/18
犡/null/9
猃/null/7
菱/null/19
惯/null/16178
慑/null/20
阇/null/58
菲/null/7217
葔/null/562
惰/null/1570
慒/null/17
阈/null/21
菳/null/15
慓/null/33
阉/null/466
犣/null/17
葖/null/11
慔/null/9
阊/null/17
犤/null/7
菵/null/10
想/null/525378
慕/null/10657
阋/null/318
犥/null/6
猇/null/11
菶/null/10
惴/null/70
慖/null/9
阌/null/10
犦/null/14
猈/null/11
倅/null/19
葙/null/17
惵/null/7
阍/null/11
葚/null/96
倇/null/5
惶/null/1753
阎/null/795
犨/null/9
猊/null/9
菹/null/9
葛/null/10409
惷/null/14
犩/null/18
猋/null/10
菺/null/30
惸/null/9
阏/null/6
犪/null/7
猌/null/12
菻/null/30
葝/null/9
惹/null/5571
慛/null/9
閮/null/10
阐/null/9481
菼/null/11
葞/null/6
惺/null/413
蓁/null/328
阑/null/1170
犬/null/2637
猎/null/3598
菽/null/21
葟/null/11
蓂/null/8
慝/null/19
閰/null/53
阒/null/44
猏/null/14
倌/null/877
菾/null/48
惼/null/59
慞/null/20
阓/null/9
犮/null/29
倍/null/12651
菿/null/7
葡/null/2121
蓄/null/2276
阔/null/5772
犯/null/21825
猑/null/10
倎/null/6
蓅/null/14
懁/null/13
阕/null/358
犰/null/25
猒/null/7
倏/null/252
董/null/3443
惾/null/11
懂/null/42342
阖/null/262
猓/null/12
惿/null/12
蓇/null/11
慡/null/8
懃/null/39
閵/null/6
阗/null/21
葥/null/38
慢/null/42566
阘/null/9
猕/null/133
倒/null/51920
蓉/null/4633
懅/null/8
閷/null/11
阙/null/1235
犴/null/17
猖/null/453
倓/null/7
葧/null/12
蓊/null/430
懆/null/28
阚/null/13
犵/null/8
猗/null/18
倔/null/227
葨/null/12
慥/null/20
阛/null/8
状/null/34746
猘/null/16
倕/null/9
慦/null/12
懈/null/775
閺/null/19
阜/null/177
犷/null/100
葩/null/139
蓌/null/8
慧/null/24112
倗/null/8
蓍/null/20
慨/null/2921
懊/null/607
阞/null/14
犹/null/8446
隀/null/10
猛/null/7890
倘/null/2324
葫/null/449
蓎/null/14
懋/null/890
队/null/112529
犺/null/9
猜/null/22272
候/null/79364
葬/null/2162
蓏/null/7
阠/null/9
猝/null/154
倚/null/14270
葭/null/596
蓐/null/11
阡/null/58
隃/null/21
猞/null/21
葮/null/9
蓑/null/130
慬/null/67
阢/null/15
犽/null/15
玁/null/16
倛/null/9
蓒/null/11
慭/null/25
阣/null/9
隅/null/953
玂/null/16
倜/null/137
葰/null/11
蓓/null/986
阤/null/11
犿/null/7
隆/null/13987
猡/null/69
玃/null/15
葱/null/1631
倞/null/5
蓔/null/7
懑/null/30
隇/null/11
猢/null/36
玄/null/7281
傀/null/723
慰/null/5354
懒/null/21
隈/null/9
猣/null/14
玅/null/9
借/null/21435
葳/null/456
慱/null/5
傂/null/5
蓖/null/8
倠/null/22
葴/null/17
蓗/null/11
慲/null/12
懔/null/80
阨/null/36
倡/null/1683
傃/null/6
葵/null/1323
隋/null/275
猥/null/282
率/null/45566
倢/null/39
葶/null/14
懖/null/17
阪/null/1854
猦/null/10
玈/null/13
傅/null/3730
慵/null/550
隍/null/374
猧/null/11
玉/null/18649
葸/null/10
蓛/null/14
懘/null/18
玊/null/23
倥/null/19
傇/null/11
葹/null/8
慷/null/678
阭/null/29
随/null/49767
猩/null/3099
王/null/119466
倦/null/4691
葺/null/16
蓝/null/24644
阮/null/4447
隐/null/15820
猪/null/24947
倧/null/16
慹/null/11
蕀/null/13
猫/null/90587
倨/null/97
蓟/null/47
慺/null/10
隑/null/12
猬/null/156
玎/null/98
倩/null/1761
傋/null/17
葽/null/19
蓠/null/29
阰/null/8
隒/null/7
猭/null/14
倪/null/1579
傌/null/501
葾/null/353
蕃/null/2037
所/null/558469
阱/null/1177
隓/null/10
献/null/11173
傍/null/1404
蕄/null/13
扁/null/27687
防/null/30067
隔/null/15125
玑/null/137
倬/null/95
傎/null/7
蓣/null/9
蕅/null/15
懠/null/12
扂/null/9
阳/null/48494
猰/null/15
玒/null/7
倭/null/153
阴/null/14299
猱/null/15
玓/null/41
蓥/null/10
蕇/null/9
扃/null/14
阵/null/33507
隗/null/13
猲/null/11
玔/null/20
倯/null/11
蓦/null/821
蕈/null/49
阶/null/16038
隘/null/848
猳/null/8
玕/null/10
倰/null/9
傒/null/39
蕉/null/1600
隙/null/1142
猴/null/3670
玖/null/599
倱/null/8
蓨/null/8
蕊/null/965
懤/null/8
扆/null/23
猵/null/7
玗/null/20
傔/null/11
蓩/null/7
懥/null/9
扇/null/5687
阹/null/8
倳/null/11
傕/null/11
蓪/null/9
懦/null/997
扈/null/113
阺/null/18
障/null/12357
猷/null/179
玙/null/6
懧/null/16
扉/null/471
阻/null/10268
玚/null/32
倵/null/23
蓫/null/10
蕍/null/7
扊/null/13
阼/null/10
隞/null/10
需/null/90154
玛/null/6369
蓬/null/2217
懩/null/15
手/null/236673
阽/null/15
猺/null/6
霁/null/169
倷/null/12
懪/null/6
霂/null/23
玝/null/7
懫/null/8
才/null/304782
阿/null/88578
隡/null/27
猼/null/15
琀/null/7
傛/null/8
蕑/null/12
扎/null/1535
隢/null/10
霄/null/730
玟/null/457
债/null/2424
琁/null/46
傜/null/273
蓰/null/18
懭/null/12
猾/null/193
霅/null/19
玠/null/243
蓱/null/6
懮/null/37
扐/null/9
隤/null/20
猿/null/728
霆/null/756
玡/null/10
球/null/57
傝/null/11
蓲/null/10
蕔/null/16
扑/null/493
震/null/11745
玢/null/26
值/null/57997
琄/null/21
傞/null/17
蓳/null/46
懰/null/35
扒/null/653
霈/null/710
琅/null/182
蕖/null/18
懱/null/9
打/null/233464
隧/null/1483
霉/null/239
玤/null/14
倾/null/8849
理/null/286328
蕗/null/18
扔/null/931
玥/null/63
琇/null/466
儃/null/15
蓶/null/8
隩/null/13
霋/null/7
玦/null/13
琈/null/11
蓷/null/27
蕙/null/1086
傣/null/25
懵/null/295
霍/null/2102
琉/null/1414
儆/null/87
蓹/null/15
蕛/null/10
托/null/8962
隬/null/44
霎/null/488
琊/null/26
傥/null/173
儇/null/9
蓺/null/13
扙/null/41
霏/null/478
玩/null/134519
琋/null/9
蓻/null/11
蕝/null/10
扚/null/9
隮/null/6
霐/null/12
琌/null/9
傧/null/187
蓼/null/102
蕞/null/47
懹/null/16
藀/null/13
扛/null/906
玫/null/8543
储/null/4641
儊/null/13
玬/null/5
扜/null/14
隰/null/33
霒/null/8
琎/null/11
傩/null/249
儋/null/8
蓾/null/5
蕠/null/10
懻/null/11
藂/null/11
玭/null/10
琏/null/174
儌/null/58
蓿/null/17
蕡/null/9
藃/null/12
扞/null/30
霓/null/616
玮/null/3656
琐/null/740
藄/null/10
环/null/49945
催/null/4383
蕣/null/19
藅/null/15
扠/null/9
拂/null/2075
隳/null/21
现/null/31466
蕤/null/143
懿/null/2840
藆/null/13
霖/null/5006
玱/null/23
傮/null/15
藇/null/5
蕥/null/14
扢/null/12
拄/null/120
玲/null/8108
儑/null/12
蕦/null/6
藈/null/20
隶/null/1318
霘/null/14
玳/null/24
傰/null/10
儒/null/6535
玴/null/5
蕧/null/7
藉/null/13010
扣/null/87
担/null/24548
霙/null/30
琖/null/21
傱/null/56
儓/null/14
蕨/null/201
扤/null/18
拆/null/9013
玵/null/10
傲/null/8263
藋/null/12
扥/null/17
拇/null/421
隹/null/194
玶/null/10
扦/null/53
拈/null/352
霜/null/2991
玷/null/98
霝/null/5
蕫/null/26
执/null/55340
拉/null/47785
玸/null/8
琚/null/54
儗/null/10
蕬/null/11
拊/null/30
隼/null/329
霞/null/2399
玹/null/88
琛/null/214
傶/null/16
扩/null/9459
隽/null/658
霟/null/6
玺/null/436
鞁/null/8
藏/null/22926
扪/null/341
拌/null/597
难/null/147058
霠/null/11
玻/null/4566
鞂/null/7
琝/null/29
傸/null/17
儚/null/12
蕮/null/10
藐/null/848
扫/null/9663
拍/null/19462
隿/null/9
玼/null/17
鞃/null/11
璀/null/421
藑/null/19
扬/null/717
拎/null/282
霢/null/16
鞄/null/12
傺/null/21
璁/null/411
儜/null/18
藒/null/7
扭/null/5035
拏/null/23
霣/null/7
玾/null/8
鞅/null/57
琠/null/30
傻/null/13350
冀/null/787
蕱/null/9
藓/null/39
扮/null/4747
拐/null/51
玿/null/14
琡/null/50
璃/null/183
蕲/null/33
扯/null/7783
拑/null/13
霥/null/12
琢/null/329
冁/null/14
藕/null/252
扰/null/16
拒/null/10418
霦/null/16
鞈/null/8
琣/null/57
傽/null/9
璅/null/13
蕴/null/2321
扱/null/31
拓/null/3487
琤/null/44
璆/null/41
儠/null/12
蕵/null/10
藗/null/12
扲/null/9
拔/null/8059
霨/null/16
鞊/null/16
琥/null/190
傿/null/8
璇/null/720
儡/null/993
霩/null/5
蕶/null/5
藘/null/11
扳/null/1394
鞋/null/7928
琦/null/2278
璈/null/7
儢/null/13
内/null/160755
藙/null/9
扴/null/6
拖/null/12492
霪/null/62
蕸/null/11
藚/null/8
拗/null/334
霫/null/12
鞍/null/620
琨/null/1149
璊/null/53
儤/null/9
冇/null/273
蕹/null/16
扶/null/3238
拘/null/4064
霬/null/20
鞎/null/8
儥/null/16
冈/null/2949
蕺/null/7
藜/null/32
扷/null/11
拙/null/1719
霭/null/402
琩/null/21
璋/null/2440
儦/null/22
冉/null/485
蕻/null/13
拚/null/950
霮/null/23
琪/null/6263
蕼/null/16
藞/null/8
批/null/23428
虀/null/31
招/null/30651
霯/null/6
鞑/null/343
琫/null/14
藟/null/6
扺/null/78
拜/null/35481
霰/null/51
琬/null/292
璎/null/76
儩/null/15
册/null/23203
蕾/null/2256
扻/null/18
琭/null/8
再/null/261987
藡/null/7
扼/null/573
虃/null/13
捀/null/122
露/null/16329
鞔/null/10
琮/null/974
璐/null/144
藢/null/13
扽/null/9
拟/null/13172
捁/null/9
冏/null/11
藣/null/12
找/null/166755
捂/null/93
琰/null/49
璒/null/9
儭/null/16
藤/null/428
承/null/27831
虆/null/19
捃/null/7
琱/null/89
儮/null/8
虇/null/5
霵/null/6
冑/null/74
拢/null/2935
捄/null/9
鞗/null/13
琲/null/47
璔/null/16
冒/null/14607
藦/null/8
虈/null/8
拣/null/539
捅/null/302
鞘/null/419
琳/null/4700
璕/null/6
儰/null/59
冓/null/9
捆/null/19
鞙/null/6
琴/null/29126
儱/null/8
冔/null/13
藨/null/9
霸/null/14399
鞚/null/7
琵/null/881
璗/null/66
虋/null/5
冕/null/643
藩/null/531
拥/null/21343
捇/null/10
霹/null/6653
琶/null/787
璘/null/53
儳/null/8
虌/null/97
拦/null/4012
捈/null/17
霺/null/9
鞜/null/9
儴/null/8
冗/null/1081
藫/null/12
虍/null/11
拧/null/139
捉/null/5015
鞝/null/6
璚/null/12
儵/null/15
冘/null/9
藬/null/11
虎/null/26973
拨/null/13638
捊/null/10
鞞/null/43
頀/null/23
写/null/111228
藭/null/14
虏/null/527
择/null/37712
捋/null/45
璜/null/361
虐/null/2221
捌/null/875
霾/null/397
鞠/null/742
霿/null/6
甀/null/9
军/null/70663
拫/null/29
捍/null/1366
鞡/null/10
琼/null/3585
璞/null/1805
农/null/12610
藯/null/13
虑/null/29844
括/null/20687
捎/null/172
鞢/null/9
頄/null/9
璟/null/663
甂/null/7
藰/null/14
虒/null/19
拭/null/1464
捏/null/1464
鞣/null/12
璠/null/84
甃/null/10
冞/null/12
刀/null/26549
藱/null/8
虓/null/18
拮/null/171
捐/null/6649
鞤/null/10
甄/null/2747
刁/null/1380
藲/null/15
虔/null/999
拯/null/1626
捑/null/14
鞥/null/50
儽/null/7
冠/null/22729
拰/null/16
虖/null/10
拱/null/1070
甇/null/10
刃/null/1331
拲/null/12
捔/null/17
鞨/null/13
璥/null/20
儿/null/13
甈/null/15
冢/null/79
拳/null/10349
捕/null/7836
藷/null/66
虙/null/8
拴/null/154
捖/null/11
鞪/null/8
璧/null/710
冤/null/2711
分/null/243477
藸/null/11
虚/null/19729
拵/null/12
捗/null/10
鞫/null/15
頍/null/7
璨/null/270
甋/null/11
冥/null/3381
切/null/58909
拶/null/11
捘/null/8
鞬/null/13
璩/null/78
刈/null/122
拷/null/4423
捙/null/23
鞭/null/2774
璪/null/10
拸/null/5
刉/null/10
藻/null/746
捚/null/10
鞮/null/9
甍/null/12
刊/null/17481
虞/null/1140
拹/null/13
蛀/null/505
鞯/null/11
藽/null/7
拺/null/108
蛁/null/48
甏/null/23
刌/null/10
藾/null/10
拻/null/7
蛂/null/61
璭/null/10
虡/null/5
甐/null/13
刍/null/317
藿/null/27
拼/null/13120
蛃/null/8
捞/null/2092
冬/null/14
刎/null/108
虢/null/19
拽/null/269
蛄/null/19
损/null/11726
鞳/null/13
璯/null/8
甑/null/14
甒/null/5
虣/null/11
拾/null/5764
蛅/null/11
揂/null/35
鞴/null/17
頖/null/6
虤/null/5
刐/null/11
拿/null/80772
蛆/null/178
捡/null/6538
揃/null/53
璱/null/14
甓/null/6
冯/null/1990
刑/null/4795
虥/null/9
蛇/null/4671
换/null/81878
揄/null/107
璲/null/21
甔/null/8
冰/null/16718
划/null/3646
蛈/null/13
捣/null/40
揅/null/25
鞶/null/11
冱/null/21
刓/null/27
蛉/null/24
揆/null/295
鞷/null/20
冲/null/8783
虨/null/10
蛊/null/353
捥/null/15
揇/null/8
甗/null/8
鞹/null/5
决/null/97148
虩/null/12
蛋/null/22656
揈/null/7
頛/null/13
璶/null/11
甘/null/8693
刖/null/31
虪/null/13
蛌/null/11
璷/null/8
况/null/63334
列/null/61352
虫/null/4789
捧/null/3679
揉/null/664
鞻/null/9
頝/null/10
璸/null/9
甚/null/60517
冶/null/492
刘/null/29759
虬/null/44
蛎/null/479
揊/null/10
頞/null/26
颀/null/77
冷/null/32223
则/null/108300
虭/null/9
蛏/null/12
捩/null/115
揋/null/16
璺/null/14
颁/null/2022
甜/null/8051
甝/null/5
刚/null/61146
虮/null/7
蛐/null/26
揌/null/13
頠/null/7
璻/null/8
颂/null/2040
冹/null/7
疀/null/14
创/null/31835
蛑/null/12
揍/null/683
鞿/null/8
颃/null/6
刜/null/19
虰/null/8
揎/null/8
预/null/44980
生/null/601668
冻/null/3583
初/null/45256
捭/null/19
描/null/10918
璾/null/11
颅/null/432
冼/null/44
刞/null/9
劀/null/11
虱/null/169
蛓/null/15
据/null/160
提/null/599147
领/null/36858
甡/null/175
冽/null/235
疄/null/14
劁/null/9
蛔/null/90
捯/null/12
颇/null/10245
冾/null/16
删/null/7613
劂/null/14
虳/null/11
捰/null/33
插/null/20356
颈/null/2342
疆/null/1107
刡/null/14
虴/null/11
蛖/null/6
捱/null/201
揓/null/7
頧/null/8
颉/null/1574
蛗/null/10
頨/null/8
颊/null/904
甥/null/112
蛘/null/45
揕/null/74
頩/null/14
颋/null/12
虷/null/16
蛙/null/5333
揖/null/469
颌/null/61
判/null/28059
蛚/null/7
捵/null/39
揗/null/6
颍/null/151
用/null/2895290
疋/null/1938
虹/null/4300
蛛/null/1654
捶/null/549
揘/null/9
颎/null/11
甩/null/2623
疌/null/13
劈/null/1826
虺/null/22
蛜/null/31
捷/null/7286
揙/null/22
颏/null/25
甪/null/18
虻/null/17
蛝/null/9
捸/null/14
颐/null/480
甫/null/2115
刨/null/8
虼/null/29
蛞/null/17
蝀/null/13
頯/null/7
频/null/14544
甬/null/137
利/null/105611
劋/null/12
虽/null/72668
蛟/null/214
捺/null/159
蝁/null/7
揜/null/16
疏/null/5660
虾/null/5016
捻/null/34
蝂/null/10
揝/null/12
颓/null/14
甭/null/474
疐/null/14
别/null/332
虿/null/16
捼/null/22
蝃/null/13
摀/null/135
颔/null/179
甮/null/16
疑/null/47964
蛢/null/147
捽/null/15
揟/null/11
摁/null/22
刭/null/13
蛣/null/6
揠/null/49
颖/null/3579
田/null/35956
刮/null/123
蛤/null/572
蝆/null/8
握/null/13849
摃/null/201
頵/null/14
颗/null/21646
由/null/163832
疔/null/19
蝇/null/1706
摄/null/10945
题/null/316919
甲/null/40313
疕/null/17
到/null/1310850
蛦/null/13
蝈/null/31
揣/null/1017
摅/null/15
申/null/22385
疖/null/32
刱/null/13
劓/null/12
蝉/null/1601
揤/null/12
摆/null/12606
颙/null/17
疗/null/6888
刲/null/8
蛨/null/11
揥/null/13
摇/null/15391
颚/null/125
电/null/509516
疘/null/12
刳/null/11
蛩/null/21
摈/null/24
颛/null/19
疙/null/365
劖/null/12
蛪/null/28
蝌/null/212
揧/null/14
颜/null/13471
男/null/133706
蝍/null/5
疚/null/717
刵/null/7
劗/null/10
蛫/null/10
揨/null/9
摊/null/4156
额/null/12653
甸/null/521
餀/null/9
制/null/27753
劘/null/12
蛬/null/28
蝎/null/118
颞/null/27
甹/null/22
摋/null/5
刷/null/5762
劙/null/12
蛭/null/124
蝏/null/11
揩/null/126
颟/null/77
町/null/300
餂/null/12
疝/null/136
券/null/2271
蛮/null/32242
蝐/null/17
揪/null/471
颠/null/3126
画/null/77423
瘀/null/406
力/null/247326
蝑/null/7
揫/null/8
摍/null/13
颡/null/16
疟/null/51
刺/null/14544
瘁/null/150
蛰/null/833
蝒/null/18
摎/null/11
颢/null/108
甽/null/14
疠/null/38
刻/null/28243
劝/null/9581
蛱/null/35
蝓/null/16
揭/null/2533
颣/null/83
甾/null/13
疡/null/185
瘃/null/19
办/null/102939
匀/null/1148
蛲/null/29
蝔/null/6
摐/null/10
颤/null/1582
甿/null/7
餇/null/10
疢/null/11
刽/null/231
功/null/111553
揯/null/7
餈/null/7
疣/null/19
瘅/null/15
加/null/205509
蛳/null/11
揰/null/12
摒/null/288
颦/null/245
疤/null/1355
刿/null/14
务/null/72387
蛴/null/19
蝖/null/27
揱/null/18
摓/null/9
颧/null/55
疥/null/45
劢/null/48
蛵/null/11
蝗/null/232
揲/null/14
摔/null/4859
瘈/null/5
劣/null/4643
包/null/60049
蛶/null/9
蝘/null/10
揳/null/7
颩/null/9
疧/null/8
匆/null/4444
蛷/null/13
蝙/null/620
援/null/29206
餍/null/53
瘊/null/11
蛸/null/14
蝚/null/12
揵/null/9
蛹/null/311
蝛/null/10
揶/null/114
摘/null/7990
颬/null/10
蝜/null/5
疪/null/31
瘌/null/18
劦/null/24
匈/null/468
摙/null/8
餐/null/30791
疫/null/1834
匉/null/9
蝝/null/12
疬/null/6
动/null/256817
匊/null/8
蝞/null/7
蟀/null/515
摛/null/11
瘏/null/5
助/null/54145
匋/null/13
蟂/null/5
疮/null/577
瘐/null/99
努/null/24544
蛾/null/411
蝠/null/728
摝/null/19
餔/null/28
劫/null/5241
匍/null/69
蝡/null/17
蟃/null/11
摞/null/25
颲/null/6
匎/null/5
疯/null/18284
瘑/null/8
劬/null/20
蝢/null/7
揽/null/760
疰/null/10
劭/null/338
匏/null/41
蝣/null/102
蟅/null/8
摠/null/55
擂/null/436
餗/null/17
疱/null/63
劮/null/16
匐/null/51
蝤/null/16
揿/null/12
蟆/null/297
摡/null/34
擃/null/22
疲/null/4643
瘔/null/12
匑/null/12
蝥/null/10
疳/null/9
瘕/null/15
匒/null/10
擅/null/1919
瘖/null/517
励/null/9984
蝧/null/13
蟉/null/14
疵/null/1160
瘗/null/10
劲/null/8089
蟊/null/11
摥/null/15
疶/null/7
瘘/null/12
劳/null/12873
匕/null/529
蝩/null/8
蟋/null/469
摦/null/14
瘙/null/11
化/null/119804
蝪/null/8
蟌/null/9
摧/null/2419
擉/null/17
疸/null/19
瘚/null/19
北/null/112186
蝫/null/12
摨/null/7
疹/null/433
瘛/null/16
蝬/null/16
摩/null/14122
餟/null/10
疺/null/20
馁/null/463
瘜/null/36
匙/null/4031
蝭/null/16
蟏/null/16
颽/null/17
疻/null/13
馂/null/11
瘝/null/8
匚/null/8
蝮/null/36
颾/null/7
摫/null/5
疼/null/5767
蝯/null/9
蟑/null/3271
操/null/18369
颿/null/18
疽/null/23
馄/null/145
瘟/null/3112
皁/null/13
匜/null/9
蟒/null/188
摬/null/8
擎/null/9240
疾/null/4628
馅/null/285
瘠/null/87
劻/null/6
皂/null/874
匝/null/210
蟓/null/14
摭/null/35
擏/null/23
餤/null/9
疿/null/7
馆/null/52285
劼/null/24
蟔/null/18
摮/null/9
擐/null/6
餥/null/15
瘢/null/11
的/null/6538132
匟/null/10
蝳/null/12
馈/null/64
瘣/null/12
劾/null/287
匠/null/1657
厂/null/9
蝴/null/2943
摰/null/47
擒/null/991
餧/null/11
瘤/null/744
势/null/33183
皆/null/26852
匡/null/1407
馊/null/303
瘥/null/16
皇/null/12496
匢/null/8
厄/null/921
蝵/null/10
蟗/null/10
摲/null/9
餩/null/7
馋/null/180
瘦/null/2457
皈/null/506
匣/null/1322
厅/null/20640
蝶/null/5868
蟘/null/61
餪/null/14
馌/null/12
皉/null/22
历/null/15
蝷/null/14
蟙/null/13
摴/null/8
擖/null/25
餫/null/6
馍/null/15
瘨/null/11
皊/null/9
摵/null/11
擗/null/47
餬/null/52
馎/null/6
瘩/null/345
皋/null/63
匦/null/29
蝹/null/11
蟛/null/9
擘/null/195
餭/null/7
馏/null/463
瘪/null/224
蝺/null/9
蟜/null/10
摷/null/16
擙/null/8
餮/null/79
馐/null/25
瘫/null/615
厉/null/11526
蝻/null/14
蟝/null/10
摸/null/11879
餯/null/10
馑/null/24
皎/null/290
厊/null/7
蝼/null/67
蟞/null/9
摹/null/354
血/null/36175
擛/null/15
餰/null/10
馒/null/1106
瘭/null/9
皏/null/18
压/null/43377
蟟/null/13
衁/null/44
匪/null/3908
厌/null/16578
蝾/null/63
蟠/null/66
餲/null/9
馔/null/53
瘯/null/7
皑/null/85
厍/null/9
蟡/null/21
衃/null/12
擞/null/511
瘰/null/12
皒/null/10
厎/null/62
蟢/null/19
摽/null/71
衄/null/14
敁/null/7
首/null/53235
厏/null/8
衅/null/1487
馗/null/56
瘱/null/9
皓/null/2657
匮/null/321
蟤/null/12
摿/null/9
敃/null/9
馘/null/13
瘲/null/9
蟥/null/6
擢/null/84
香/null/32674
瘳/null/16
皕/null/86
匰/null/12
厒/null/19
蟦/null/6
衈/null/20
故/null/72033
瘴/null/372
皖/null/77
蟧/null/20
擤/null/89
敆/null/13
厔/null/5
瘵/null/9
蟨/null/11
馜/null/15
厕/null/4874
衋/null/8
擦/null/5532
效/null/36
皙/null/72
匴/null/13
厖/null/9
蟪/null/8
行/null/285867
敉/null/24
馝/null/18
瘸/null/49
厗/null/7
蟫/null/13
衍/null/2307
擨/null/8
敊/null/6
馞/null/8
皛/null/10
厘/null/298
衎/null/9
擩/null/21
皜/null/20
匷/null/6
蟭/null/13
敌/null/23215
皝/null/11
厚/null/9982
擫/null/12
馡/null/14
瘼/null/16
騃/null/19
皞/null/7
匹/null/3185
瘽/null/11
騄/null/58
区/null/169166
省/null/48656
厜/null/12
衒/null/7
馣/null/10
瘾/null/2668
医/null/10
厝/null/687
擭/null/38
敏/null/18600
瘿/null/14
騆/null/13
匼/null/9
眃/null/9
厞/null/16
衔/null/87
馥/null/285
騇/null/15
匽/null/13
眄/null/19
原/null/174329
吁/null/17
蟳/null/23
衕/null/9
救/null/52003
馦/null/8
匾/null/127
眅/null/8
蟴/null/18
衖/null/21
馧/null/12
騉/null/9
皤/null/15
匿/null/2530
吃/null/175
街/null/18525
敓/null/10
馨/null/4093
騊/null/12
眇/null/20
厢/null/2307
各/null/210520
敔/null/8
騋/null/22
皦/null/10
眈/null/188
厣/null/10
擳/null/11
敕/null/388
眉/null/13561
吆/null/242
蟷/null/8
衙/null/271
敖/null/326
馫/null/14
眊/null/8
厥/null/573
吇/null/20
看/null/632561
厦/null/928
合/null/53
蟹/null/10281
皪/null/14
厧/null/12
吉/null/30644
蟺/null/13
教/null/245033
皫/null/9
厨/null/2232
吊/null/644
擸/null/20
馯/null/8
騑/null/11
蟼/null/8
裀/null/19
敛/null/237
馰/null/5
皭/null/11
厩/null/57
吋/null/3566
裁/null/10310
敜/null/7
皮/null/28034
眐/null/11
同/null/395867
蟾/null/1191
裂/null/5753
敝/null/7545
馲/null/15
騔/null/8
皯/null/6
眑/null/15
名/null/278941
蟿/null/10
衡/null/9246
敞/null/1122
旁/null/27695
騕/null/19
眒/null/11
厬/null/11
后/null/530136
衢/null/49
擽/null/10
皱/null/1292
眓/null/12
吏/null/548
衣/null/22367
装/null/78681
旃/null/31
馵/null/12
皲/null/18
厮/null/774
吐/null/7761
擿/null/10
裆/null/184
旄/null/342
向/null/9
补/null/37810
敢/null/40043
旅/null/15733
眕/null/14
裈/null/9
散/null/23231
敤/null/5
旆/null/32
騚/null/11
皴/null/34
吓/null/11970
衧/null/9
裉/null/9
騛/null/6
皵/null/8
表/null/2630
敥/null/7
馺/null/9
騜/null/8
吕/null/8405
衩/null/31
裋/null/10
敦/null/6339
馻/null/6
騝/null/10
眙/null/17
衪/null/58
敧/null/11
騞/null/6
骀/null/12
眚/null/16
吗/null/353524
衫/null/3594
裍/null/6
敨/null/20
旋/null/17
眛/null/472
吘/null/16
衬/null/1303
裎/null/59
旌/null/96
馽/null/16
骁/null/323
吙/null/8
衭/null/24
敪/null/9
旍/null/10
騠/null/15
皻/null/7
骂/null/28923
眝/null/20
衮/null/96
裐/null/49
旎/null/62
骃/null/9
厹/null/6
瞀/null/11
君/null/36180
衯/null/10
敬/null/22557
瞁/null/5
族/null/39730
騢/null/10
皽/null/10
骄/null/3404
真/null/335203
吜/null/11
衰/null/3602
裒/null/15
旐/null/13
皾/null/9
骅/null/162
眠/null/11408
去/null/443547
瞂/null/9
吝/null/6726
衱/null/9
皿/null/182
骆/null/1098
瞃/null/12
吞/null/3112
咀/null/378
衲/null/172
裔/null/833
騥/null/15
骇/null/885
眢/null/18
瞄/null/1686
吟/null/5802
咁/null/272
裕/null/9921
敯/null/15
旒/null/10
骈/null/85
眣/null/13
瞅/null/82
吠/null/1054
咂/null/55
衴/null/9
裖/null/10
数/null/161281
旓/null/11
騧/null/8
骉/null/12
县/null/22480
衵/null/17
裗/null/16
骊/null/88
瞇/null/470
咄/null/442
衶/null/11
裘/null/952
敲/null/4235
騩/null/9
骋/null/821
眦/null/34
瞈/null/14
吣/null/21
衷/null/3798
裙/null/2344
敳/null/8
眧/null/5
旖/null/53
騪/null/14
验/null/72278
瞉/null/25
吤/null/14
咆/null/747
裚/null/6
整/null/75045
旗/null/58
骍/null/22
眨/null/622
吥/null/21
咇/null/10
騬/null/30
骎/null/27
眩/null/558
瞋/null/432
否/null/168690
咈/null/71
裛/null/12
敶/null/12
骏/null/2764
瞌/null/866
吧/null/295069
敷/null/1547
旚/null/11
骐/null/568
瞍/null/20
吨/null/37
旛/null/34
骑/null/39690
眬/null/49
瞎/null/2660
吩/null/418
咋/null/213
衼/null/13
裞/null/44
敹/null/7
骒/null/11
眭/null/44
瞏/null/13
吪/null/8
和/null/333422
衽/null/22
裟/null/62
襁/null/9
旝/null/12
騱/null/13
骓/null/36
衾/null/66
敻/null/11
襂/null/11
旞/null/14
騲/null/10
眯/null/17
瞑/null/314
含/null/28115
咍/null/8
衿/null/314
敼/null/11
裢/null/5
骕/null/6
旟/null/13
晁/null/29
瞒/null/1641
听/null/83
咎/null/910
襄/null/2028
裣/null/5
无/null/368361
騴/null/9
骖/null/305
眱/null/9
吭/null/832
咏/null/4036
旡/null/70
晃/null/4900
騵/null/15
骗/null/17996
眲/null/18
吮/null/328
咐/null/455
裤/null/6035
敿/null/11
既/null/28182
骘/null/13
眳/null/18
瞕/null/12
启/null/25307
咑/null/22
吰/null/5
晅/null/11
骙/null/14
眴/null/23
咒/null/3729
骚/null/6768
吱/null/558
裧/null/6
襉/null/11
日/null/273090
晇/null/11
騹/null/7
骛/null/193
眵/null/11
瞗/null/7
咔/null/20
裨/null/79
騺/null/6
旦/null/8350
骜/null/13
眶/null/505
咕/null/2050
襋/null/9
旧/null/31618
骝/null/31
眷/null/3326
瞙/null/12
吴/null/34275
咖/null/7056
襌/null/34
旨/null/4067
晊/null/22
骞/null/73
眸/null/1080
瞚/null/10
吵/null/13174
裫/null/10
早/null/67132
晋/null/4524
騽/null/17
骟/null/11
眹/null/18
瞛/null/6
吶/null/1747
咘/null/12
裬/null/13
晌/null/220
骠/null/64
眺/null/14
瞜/null/13
吷/null/9
咙/null/693
襐/null/5
眻/null/17
瞝/null/8
吸/null/20676
咚/null/1786
裮/null/12
騿/null/20
骡/null/73
眼/null/71058
鬃/null/13
吹/null/15424
砀/null/12
咛/null/537
裯/null/11
襑/null/12
旬/null/1559
晏/null/449
骢/null/12
眽/null/16
鬄/null/8
瞟/null/53
码/null/45990
裰/null/13
襒/null/19
旭/null/6115
骣/null/11
鬅/null/16
瞠/null/147
吻/null/4244
砂/null/9716
裱/null/244
襓/null/7
旮/null/17
晑/null/12
骤/null/4000
瞡/null/13
吼/null/1694
砃/null/13
裲/null/11
旯/null/15
晒/null/417
骥/null/326
瞢/null/21
吽/null/394
唁/null/25
裳/null/700
襕/null/17
旰/null/14
骦/null/8
鬈/null/30
瞣/null/8
吾/null/8990
砅/null/24
咠/null/11
裴/null/386
晓/null/21478
骧/null/257
砆/null/10
咡/null/10
唃/null/9
襗/null/11
旱/null/491
晔/null/339
骨/null/15411
鬊/null/13
瞥/null/401
咢/null/13
裶/null/12
襘/null/14
旲/null/8
晕/null/2347
鬋/null/7
唅/null/90
裷/null/10
襙/null/8
旳/null/237
晖/null/1338
鬌/null/12
瞧/null/6472
砉/null/106
咤/null/207
唆/null/769
裸/null/1806
襚/null/14
旴/null/21
骫/null/10
瞨/null/13
咥/null/8
唇/null/58
裹/null/1594
襛/null/8
旵/null/12
鬎/null/9
瞩/null/349
咦/null/6444
唈/null/11
裺/null/8
襜/null/11
时/null/658186
晙/null/17
骭/null/8
瞪/null/1258
砌/null/747
咧/null/17663
唉/null/53049
旷/null/1426
瞫/null/5
晚/null/63237
鬐/null/7
砍/null/17552
咨/null/390
唊/null/10
裻/null/13
旸/null/91
晛/null/8
骯/null/679
鬑/null/10
瞬/null/3517
砎/null/8
咩/null/325
唋/null/9
裼/null/17
襞/null/9
见/null/183680
晜/null/17
骰/null/454
鬒/null/15
瞭/null/12167
砏/null/7
咪/null/6696
唌/null/19
襟/null/1531
旺/null/4958
观/null/86794
骱/null/9
鬓/null/384
砐/null/11
咫/null/1110
裾/null/70
旻/null/860
晞/null/174
曀/null/15
砑/null/11
咬/null/6226
唎/null/16
襡/null/8
旼/null/10
规/null/11
晟/null/101
骳/null/18
鬕/null/12
瞰/null/234
砒/null/63
襢/null/16
旽/null/10
觅/null/2969
骴/null/16
鬖/null/8
瞱/null/53
砓/null/12
咭/null/75
唏/null/229
襣/null/6
咮/null/5
视/null/86815
晡/null/142
鬗/null/12
瞲/null/14
研/null/125550
唐/null/8102
觇/null/24
晢/null/66
鬘/null/58
瞳/null/891
咯/null/401
唑/null/9
览/null/6393
骷/null/633
鬙/null/11
瞴/null/63
砖/null/10
咰/null/11
唒/null/10
襦/null/27
觉/null/216291
晤/null/243
骸/null/401
瞵/null/8
砗/null/581
咱/null/10
觊/null/105
晥/null/20
骹/null/7
瞶/null/12
唔/null/2582
觋/null/13
晦/null/1336
曈/null/14
咳/null/3080
襩/null/13
觌/null/9
骻/null/12
瞷/null/8
咴/null/6
晨/null/7903
曊/null/13
骼/null/244
鬞/null/9
鮀/null/150
砚/null/88
唗/null/7
襫/null/10
觎/null/110
曋/null/7
鬟/null/100
咶/null/6
襬/null/34
觏/null/22
晪/null/14
曌/null/23
鬠/null/9
瞺/null/13
鮂/null/8
咷/null/13
襭/null/9
觐/null/66
骿/null/34
瞻/null/998
砝/null/90
咸/null/552
襮/null/17
觑/null/223
晬/null/20
碀/null/10
唛/null/24
角/null/48659
瞽/null/28
砟/null/43
咺/null/13
碁/null/66
觓/null/6
普/null/32256
鬣/null/15
鮅/null/16
砠/null/11
咻/null/451
唝/null/15
襱/null/7
觔/null/148
景/null/29462
鬤/null/8
瞿/null/200
鮆/null/81
砡/null/24
碃/null/7
喀/null/898
觕/null/7
晰/null/1302
曒/null/8
鮇/null/13
砢/null/40
咽/null/302
碄/null/7
喁/null/17
襳/null/7
觖/null/11
晱/null/16
鮈/null/13
砣/null/27
咾/null/44
碅/null/11
唠/null/173
喂/null/2319
晲/null/19
咿/null/400
碆/null/7
唡/null/10
喃/null/1418
砥/null/278
碇/null/274
唢/null/265
善/null/38229
襶/null/16
觙/null/8
砦/null/32
觚/null/12
晴/null/6171
砧/null/84
碉/null/131
唤/null/4432
襹/null/5
觛/null/7
鬫/null/14
砨/null/6
喇/null/7972
觜/null/12
晶/null/8517
曘/null/7
砩/null/17
唦/null/20
喈/null/338
襺/null/14
襻/null/6
晷/null/68
曙/null/674
砪/null/62
碌/null/1509
唧/null/229
喉/null/1841
觞/null/506
晸/null/14
詀/null/13
曚/null/20
砫/null/6
碍/null/7557
喊/null/9483
襼/null/12
晹/null/59
曛/null/41
鬯/null/6
砬/null/19
碎/null/8403
喋/null/185
觟/null/16
智/null/44507
曜/null/907
砭/null/42
碏/null/14
唪/null/35
喌/null/25
觠/null/10
晻/null/10
曝/null/2026
砮/null/10
喍/null/11
襾/null/9
觡/null/14
晼/null/14
曞/null/11
杀/null/60424
鬲/null/22
砯/null/6
碑/null/1957
唬/null/6503
喎/null/50
西/null/121877
觢/null/9
詄/null/88
鬳/null/9
鮕/null/24
砰/null/564
唭/null/10
喏/null/66
解/null/180531
晾/null/199
詅/null/11
杂/null/31573
砱/null/10
碓/null/71
售/null/26751
觤/null/11
权/null/72344
鬵/null/9
碔/null/11
觥/null/15
砳/null/7
碕/null/12
唯/null/22782
喑/null/66
鬷/null/5
触/null/53
詈/null/29
曣/null/9
杅/null/12
破/null/70155
碖/null/21
唰/null/143
曤/null/5
杆/null/1083
砵/null/39
碗/null/5279
唱/null/55158
喓/null/8
觨/null/8
詊/null/14
杇/null/32
鮛/null/9
碘/null/642
唲/null/8
喔/null/92913
觩/null/13
曦/null/726
杈/null/10
鬺/null/12
砷/null/182
碙/null/8
唳/null/86
喕/null/11
詌/null/18
杉/null/4947
鬻/null/26
砸/null/3351
碚/null/7
唴/null/11
觫/null/15
詍/null/10
鬼/null/25145
唵/null/32
唶/null/5
觬/null/11
曩/null/60
杋/null/16
碛/null/13
喘/null/1549
觭/null/5
詏/null/7
杌/null/23
鬾/null/11
鮠/null/15
砺/null/222
碜/null/11
唷/null/6814
喙/null/784
曫/null/13
杍/null/8
鬿/null/8
鮡/null/13
砻/null/29
觯/null/8
詑/null/16
李/null/72434
鮢/null/15
碞/null/7
唹/null/9
觰/null/11
曭/null/18
杏/null/931
鰅/null/6
碟/null/63470
礁/null/858
喜/null/146563
觱/null/5
曮/null/9
材/null/19462
鮤/null/13
砾/null/119
鰆/null/15
碠/null/7
唻/null/17
礂/null/7
喝/null/22191
觲/null/13
村/null/15667
碡/null/8
唼/null/9
嘀/null/109
觳/null/10
曰/null/7315
鮥/null/9
鰇/null/11
碢/null/8
喟/null/148
嘁/null/14
杓/null/61
碣/null/43
唾/null/1685
礅/null/21
嘂/null/25
曲/null/239
碤/null/11
喡/null/12
曳/null/889
杕/null/19
鮨/null/13
碥/null/64
喢/null/73
嘄/null/12
觷/null/13
詙/null/10
更/null/152691
杖/null/1762
鰋/null/10
喣/null/18
碧/null/7930
礉/null/6
喤/null/15
杗/null/14
碨/null/11
喥/null/8
觺/null/5
曶/null/12
鰎/null/6
嘈/null/158
觻/null/11
曷/null/74
杙/null/9
碪/null/17
礌/null/7
喧/null/2204
嘉/null/21507
觼/null/13
諀/null/12
杚/null/9
碫/null/8
喨/null/23
詟/null/14
曹/null/4289
鮯/null/13
碬/null/15
觾/null/8
杜/null/8669
嘌/null/16
杝/null/10
礐/null/11
觿/null/8
曼/null/6616
諃/null/9
杞/null/259
柀/null/37
鰔/null/9
礑/null/15
嘎/null/2465
束/null/21572
柁/null/14
碰/null/17737
礒/null/18
喭/null/11
嘏/null/31
曾/null/93394
諅/null/41
杠/null/48
柂/null/9
碱/null/10
礓/null/10
嘐/null/13
鮵/null/5
替/null/19015
諆/null/6
条/null/59837
柃/null/13
鰗/null/16
碲/null/10
礔/null/8
嘒/null/5
柄/null/1797
碳/null/2500
諈/null/15
柅/null/15
碴/null/427
柆/null/16
鮸/null/11
礗/null/14
喱/null/14
嘓/null/29
詨/null/24
来/null/2812950
鮹/null/11
柈/null/5
喳/null/287
嘕/null/9
柉/null/10
鰝/null/8
杨/null/40360
柊/null/7
鲀/null/16
礛/null/9
喵/null/14450
杩/null/11
柋/null/8
鮽/null/11
鲁/null/8226
礜/null/23
嘘/null/2409
杪/null/22
柌/null/11
鲂/null/6
喷/null/8374
柍/null/10
鮿/null/6
鰡/null/45
碻/null/11
礝/null/9
杬/null/19
柎/null/66
鲄/null/16
礞/null/23
禀/null/501
嘛/null/55429
杭/null/553
柏/null/8866
禁/null/17702
鰤/null/5
諓/null/7
某/null/54845
碾/null/224
喻/null/4122
禂/null/8
嘝/null/11
諔/null/13
杯/null/7539
柑/null/148
礡/null/103
嚁/null/8
諕/null/11
杰/null/4474
柒/null/248
鲈/null/153
喽/null/1889
禄/null/992
嘟/null/2362
喾/null/5
嚂/null/6
詴/null/12
染/null/11830
礣/null/14
禅/null/5337
嚃/null/8
杲/null/31
柔/null/21005
礤/null/11
喿/null/9
嚄/null/22
詶/null/12
諘/null/11
杳/null/171
鲊/null/11
礥/null/13
嚅/null/36
詷/null/6
諙/null/9
杴/null/9
鲋/null/16
禈/null/8
嚆/null/20
杵/null/297
礧/null/10
嘤/null/117
詹/null/3075
杶/null/6
柘/null/62
鰫/null/26
鲍/null/434
礨/null/21
禊/null/6
詺/null/10
鰬/null/17
鲎/null/16
礩/null/13
禋/null/11
詻/null/15
杷/null/79
柙/null/18
嘧/null/18
杸/null/11
譀/null/8
柚/null/626
鲐/null/8
諟/null/18
杹/null/13
柛/null/12
鲑/null/253
諠/null/6
杺/null/8
譂/null/6
柜/null/102
鲒/null/7
礭/null/9
福/null/52055
嘪/null/14
嚍/null/7
杻/null/25
柝/null/30
禐/null/10
嚎/null/816
杼/null/27
柞/null/51
桀/null/148
鲔/null/87
礯/null/7
嘬/null/22
鲕/null/5
嚏/null/190
杽/null/13
柟/null/11
桁/null/30
禒/null/6
松/null/12093
譅/null/17
柠/null/1403
桂/null/3750
鰴/null/26
鲖/null/11
禓/null/6
板/null/10638
桃/null/11651
禔/null/19
譇/null/14
柢/null/78
桄/null/15
鰶/null/11
嚓/null/82
譈/null/8
柣/null/13
桅/null/42
鲙/null/14
禖/null/9
嘱/null/447
柤/null/14
框/null/4235
鲚/null/7
礵/null/13
禗/null/8
嘲/null/1990
諨/null/9
譊/null/13
查/null/52569
鲛/null/109
禘/null/12
譋/null/8
柦/null/8
案/null/77425
鲜/null/9541
嘳/null/42
柧/null/7
桉/null/15
礸/null/11
禚/null/11
嘴/null/14356
嚗/null/10
桊/null/18
鲞/null/24
礹/null/12
鴀/null/7
禛/null/33
嚘/null/26
柩/null/33
桋/null/12
鰽/null/10
鲟/null/29
示/null/63561
禜/null/15
嘶/null/1072
柪/null/68
桌/null/13128
鲠/null/5
嚚/null/11
譐/null/14
柫/null/9
桍/null/24
鰿/null/12
鲡/null/18
礼/null/31007
鴃/null/26
稀/null/4518
諯/null/11
譑/null/20
柬/null/76
桎/null/108
鲢/null/1787
鴄/null/11
嘹/null/120
嚜/null/16
諰/null/9
譒/null/7
柭/null/10
桏/null/7
鲣/null/11
礽/null/27
鴅/null/9
嘺/null/13
嚝/null/36
譓/null/16
柮/null/9
桐/null/754
鲤/null/660
社/null/156267
禠/null/9
嘻/null/11
稂/null/9
礿/null/5
諲/null/13
譔/null/24
柯/null/4646
桑/null/7139
鲥/null/164
禡/null/15
稃/null/7
圁/null/8
譕/null/14
柰/null/102
鲦/null/22
鴈/null/12
禢/null/28
稄/null/13
圂/null/10
諴/null/50
柱/null/3156
桓/null/432
鲧/null/17
嘾/null/13
圃/null/300
諵/null/16
譗/null/15
柲/null/11
桔/null/448
鲨/null/435
禤/null/21
嘿/null/25319
稆/null/31
圄/null/38
柳/null/6440
嚣/null/3643
柴/null/4482
鲩/null/13
圆/null/19328
鲪/null/6
禧/null/1333
柶/null/10
鲫/null/660
禨/null/15
稊/null/19
圈/null/11114
柷/null/34
程/null/197707
嚧/null/23
圉/null/12
諻/null/10
譝/null/10
柸/null/42
鲭/null/16
稌/null/11
圊/null/11
诀/null/2307
鲮/null/9
鴐/null/12
禫/null/8
稍/null/13420
证/null/9379
鲯/null/24
禬/null/13
税/null/9092
嚪/null/9
圌/null/7
譠/null/36
诂/null/43
鲰/null/7
禭/null/11
嚫/null/6
諿/null/9
诃/null/835
鲱/null/9
稐/null/27
嚬/null/12
柼/null/13
评/null/41999
检/null/25143
鲲/null/217
鴔/null/16
稑/null/12
嚭/null/17
譣/null/11
柽/null/24
诅/null/1118
鲳/null/44
稒/null/7
识/null/73392
桠/null/374
棂/null/10
稓/null/14
柿/null/278
桡/null/40
鲵/null/9
鴗/null/46
禲/null/10
稔/null/228
譥/null/14
诇/null/3103
桢/null/238
鲶/null/300
鴘/null/28
禳/null/22
稕/null/7
警/null/33394
诈/null/1479
鲷/null/181
鴙/null/9
禴/null/16
圔/null/7
譧/null/9
诉/null/77163
桤/null/8
棆/null/8
鲸/null/562
稗/null/53
譨/null/14
诊/null/2992
桥/null/16382
棇/null/10
禶/null/17
稘/null/7
诋/null/180
桦/null/1572
棈/null/20
禷/null/9
稙/null/39
譪/null/18
诌/null/188
桧/null/223
棉/null/2096
鲻/null/17
禸/null/11
稚/null/2835
嚵/null/9
词/null/34187
桨/null/397
禹/null/880
鶀/null/9
稛/null/12
譬/null/3597
诎/null/111
桩/null/890
棋/null/11925
鲽/null/34
禺/null/40
鶁/null/16
嚷/null/936
诏/null/439
棌/null/21
鴠/null/18
离/null/18
鶂/null/6
窀/null/9
圚/null/8
诐/null/10
桫/null/16
棍/null/3258
鲿/null/8
稞/null/52
突/null/30729
圛/null/9
译/null/20748
棎/null/8
鴢/null/19
禽/null/1039
鶄/null/8
桭/null/5
圜/null/110
诒/null/196
禾/null/546
鶅/null/10
稠/null/334
诓/null/27
桮/null/15
棐/null/9
鶆/null/7
嚼/null/961
窃/null/2340
圞/null/7
垀/null/8
诔/null/10
桯/null/13
棑/null/39
鴥/null/6
嚽/null/12
窄/null/1765
土/null/45706
试/null/121652
棒/null/65240
鶈/null/11
稢/null/8
嚾/null/15
窅/null/22
圠/null/7
垂/null/4398
诖/null/12
桱/null/20
棓/null/46
稣/null/6958
窆/null/54
垃/null/8328
诗/null/21528
桲/null/17
棔/null/7
窇/null/12
圢/null/7
垄/null/1212
诘/null/1256
棕/null/396
鴩/null/28
鶋/null/11
窈/null/1299
圣/null/12
诙/null/290
桴/null/18
鶌/null/13
稦/null/12
窉/null/9
垆/null/6
诚/null/28547
桵/null/12
窊/null/15
譹/null/13
诛/null/675
桶/null/3607
棘/null/552
稨/null/8
窋/null/9
譺/null/9
诜/null/8
桷/null/7
窌/null/12
譻/null/15
话/null/265861
桸/null/11
棚/null/7212
鴭/null/21
窍/null/1413
在/null/1715554
诞/null/8895
桹/null/88
鴮/null/9
鶐/null/7
稫/null/10
圩/null/8
型/null/73353
诟/null/574
豁/null/642
棜/null/15
窏/null/14
圪/null/7
垌/null/7
诠/null/2951
豂/null/6
鶒/null/21
窐/null/14
譿/null/8
诡/null/3211
桻/null/11
豃/null/13
棝/null/16
鴱/null/18
棞/null/5
窑/null/499
圬/null/46
询/null/16292
桼/null/8
楀/null/13
鶔/null/22
稯/null/9
窒/null/427
圭/null/1473
垏/null/10
诣/null/518
桽/null/12
豅/null/7
楁/null/11
鴳/null/15
稰/null/12
圮/null/28
诤/null/178
桾/null/8
豆/null/13896
棠/null/1038
楂/null/39
窔/null/5
圯/null/33
该/null/216069
豇/null/7
棡/null/12
鶗/null/15
窕/null/1273
地/null/374510
垒/null/33371
详/null/24081
楄/null/20
鴶/null/14
稳/null/16347
窖/null/135
垓/null/240
棣/null/160
楅/null/14
鴷/null/15
鶙/null/14
垔/null/5
窗/null/23081
诧/null/294
豉/null/17
棤/null/13
鴸/null/7
窘/null/575
圳/null/485
垕/null/22
诨/null/40
豊/null/139
鶛/null/13
窙/null/7
圴/null/77
诩/null/176
豋/null/89
棦/null/8
楈/null/10
鶜/null/13
稷/null/187
垗/null/5
诪/null/9
豌/null/63
楉/null/11
鶝/null/12
鸀/null/13
垘/null/9
诫/null/912
豍/null/10
棨/null/10
鶞/null/10
稹/null/107
鸁/null/17
窜/null/1095
诬/null/448
棩/null/12
楋/null/9
鴽/null/38
鶟/null/9
楌/null/5
鸂/null/13
窝/null/8854
垙/null/12
语/null/89329
豏/null/12
棪/null/14
鴾/null/24
鶠/null/16
稻/null/1506
鸃/null/8
窞/null/7
笀/null/6
垚/null/348
诮/null/30
棫/null/7
稼/null/186
楎/null/5
鸄/null/9
窟/null/1344
圹/null/42
笁/null/12
垛/null/301
误/null/44398
鶢/null/15
稽/null/656
鸅/null/6
窠/null/226
场/null/160542
诰/null/35
楏/null/11
鶣/null/24
鸆/null/6
圻/null/74
笃/null/707
垝/null/9
诱/null/3761
森/null/16213
稿/null/6943
窢/null/10
笄/null/10
垞/null/6
堀/null/98
诲/null/657
棯/null/21
楑/null/14
垟/null/12
堁/null/11
诳/null/144
豕/null/82
棰/null/8
楒/null/8
鶦/null/15
鸉/null/23
窣/null/21
圾/null/8302
笅/null/15
垠/null/365
堂/null/31766
说/null/638724
豖/null/8
棱/null/46
鶧/null/20
笆/null/312
诵/null/891
豗/null/10
楔/null/195
鶨/null/15
鸋/null/7
窥/null/12
垢/null/843
堄/null/14
诶/null/40
棳/null/7
窦/null/517
笈/null/569
垣/null/402
请/null/576417
棴/null/11
楖/null/12
鶪/null/8
鸍/null/11
笉/null/13
垤/null/16
堆/null/27788
诸/null/29277
豚/null/789
棵/null/2709
楗/null/16
窨/null/8
笊/null/8
垥/null/8
堇/null/622
诹/null/13
楘/null/6
笋/null/395
垦/null/2399
堈/null/15
诺/null/18719
豜/null/60
棷/null/7
楙/null/37
垧/null/10
堉/null/367
读/null/71735
豝/null/72
棸/null/10
楚/null/43767
鶭/null/9
窫/null/5
鸐/null/18
诼/null/11
棹/null/11
楛/null/36
鸑/null/5
窬/null/14
笎/null/14
垩/null/51
堋/null/13
诽/null/329
豟/null/9
棺/null/2040
楜/null/33
堌/null/5
鸒/null/14
窭/null/15
笏/null/20
课/null/70719
棻/null/97
楝/null/56
鸓/null/9
笐/null/12
垫/null/2775
堍/null/9
诿/null/142
象/null/82336
棼/null/17
楞/null/698
鶱/null/13
鸔/null/12
笑/null/94756
堎/null/48
豢/null/27
笒/null/17
垭/null/22
棽/null/14
楟/null/8
槁/null/171
鶳/null/10
窱/null/8
笓/null/7
垮/null/2215
堐/null/160
豤/null/13
楠/null/1320
槂/null/18
鶵/null/6
鸗/null/11
窲/null/13
笔/null/27690
堑/null/580
豥/null/9
窳/null/44
笕/null/45
豦/null/11
楢/null/7
槄/null/9
鶶/null/11
鸙/null/7
窴/null/14
楣/null/1670
鶷/null/8
窵/null/12
垲/null/24
堔/null/8
豨/null/179
槆/null/13
鶸/null/23
笘/null/35
堕/null/5551
楥/null/13
窷/null/12
笙/null/957
豩/null/10
楦/null/7
窸/null/13
笚/null/9
豪/null/19043
賌/null/7
槉/null/11
麀/null/12
笛/null/5238
垶/null/11
豫/null/2820
槊/null/19
鸟/null/46304
堙/null/21
楩/null/7
笝/null/5
鸠/null/542
麂/null/30
垸/null/11
豭/null/70
賏/null/310
楪/null/18
槌/null/424
鶾/null/8
鸡/null/18754
麃/null/19
笞/null/42
简/null/49903
豮/null/11
楫/null/30
鸢/null/126
垹/null/20
堛/null/13
豯/null/16
楬/null/10
槎/null/15
鸣/null/6662
窾/null/17
笠/null/553
垺/null/8
箂/null/13
堜/null/18
豰/null/13
槏/null/9
鸤/null/13
窿/null/211
麆/null/11
豱/null/12
楮/null/32
槐/null/186
鸥/null/1708
麇/null/7
笢/null/7
垼/null/8
箄/null/8
堞/null/11
墀/null/32
豲/null/8
楯/null/15
鸦/null/2132
麈/null/11
笣/null/7
垽/null/6
箅/null/18
墁/null/30
豳/null/24
楰/null/23
鸧/null/17
麉/null/15
笤/null/14
堠/null/24
墂/null/8
楱/null/13
豵/null/5
鸨/null/86
麊/null/11
垿/null/20
堡/null/4802
境/null/44397
賗/null/9
槔/null/15
鸩/null/69
麋/null/63
笥/null/32
豷/null/5
鸪/null/96
麌/null/13
符/null/17927
箈/null/6
堣/null/19
墅/null/740
楴/null/11
鸫/null/41
麍/null/8
堤/null/36
墆/null/9
豸/null/39
鸬/null/8
麎/null/11
笨/null/20700
箊/null/22
堥/null/10
墇/null/18
豹/null/1923
楶/null/12
鸭/null/4515
墈/null/7
豺/null/273
楷/null/960
槙/null/183
鸮/null/91
笪/null/10
箌/null/8
堧/null/14
墉/null/16
豻/null/13
賝/null/12
楸/null/25
槚/null/14
笫/null/19
箍/null/329
堨/null/17
楹/null/188
赀/null/110
槛/null/481
賟/null/5
豽/null/5
鸯/null/1101
麑/null/15
第/null/202411
箎/null/10
堩/null/15
墋/null/8
楺/null/13
赁/null/111
鸰/null/56
麒/null/901
笭/null/13
堪/null/5637
楻/null/13
赂/null/293
鸱/null/55
麓/null/367
笮/null/12
箐/null/20
楼/null/47232
赃/null/859
橀/null/9
鸲/null/99
麔/null/17
笯/null/15
箑/null/6
堬/null/11
墎/null/26
资/null/1115608
槟/null/1536
橁/null/9
鸳/null/1155
笰/null/8
堭/null/18
墏/null/9
赅/null/50
槠/null/9
赆/null/5
笱/null/8
箓/null/32
堮/null/8
墐/null/9
笲/null/5
鸵/null/350
箔/null/437
墑/null/12
賥/null/10
赇/null/7
鸶/null/689
笳/null/61
箕/null/186
堰/null/41
赈/null/100
槢/null/12
橄/null/815
鸷/null/9
麙/null/6
笴/null/11
箖/null/6
墓/null/3392
赉/null/7
鸸/null/11
麚/null/25
笵/null/13
算/null/142333
堲/null/9
墔/null/11
賨/null/15
赊/null/63
槤/null/87
橆/null/12
麛/null/10
箘/null/21
堳/null/21
赋/null/7653
槥/null/16
橇/null/75
鸹/null/13
麜/null/13
箙/null/8
赌/null/5699
槦/null/11
鸺/null/36
麝/null/48
笸/null/10
堵/null/2194
橉/null/9
鼀/null/7
箛/null/8
堶/null/20
墘/null/29
赍/null/15
鸼/null/10
麟/null/3825
笺/null/8
鼁/null/11
箜/null/23
堷/null/13
墙/null/9
赎/null/1605
鸽/null/1663
麠/null/20
笻/null/11
箝/null/193
堸/null/37
赏/null/26279
鸾/null/238
麡/null/9
笼/null/3152
堹/null/11
赐/null/9505
槫/null/13
橍/null/8
鸿/null/13276
簁/null/13
赑/null/306
槬/null/12
橎/null/16
賰/null/5
笾/null/15
簂/null/11
赒/null/23
槭/null/233
橏/null/10
麤/null/62
鼆/null/19
管/null/15
堻/null/15
簃/null/14
賱/null/10
赓/null/42
槮/null/11
橐/null/19
增/null/34603
赔/null/4107
橑/null/11
麦/null/11018
堽/null/17
簅/null/7
墟/null/366
賳/null/16
赕/null/7
簆/null/5
麧/null/10
箤/null/15
墠/null/17
赖/null/16057
槱/null/11
鼊/null/6
簇/null/375
墡/null/8
夃/null/14
赗/null/12
槲/null/14
橔/null/6
鼋/null/32
箦/null/10
处/null/139649
赘/null/756
橕/null/17
墣/null/15
赙/null/16
槴/null/17
橖/null/9
鼍/null/10
箧/null/31
簉/null/6
夆/null/119
赚/null/12307
鼎/null/3293
箨/null/15
簊/null/10
墥/null/8
备/null/80164
賹/null/7
赛/null/73767
槶/null/9
橘/null/1983
麭/null/17
鼏/null/7
箩/null/239
簋/null/11
墦/null/9
赜/null/13
槷/null/8
橙/null/793
麮/null/12
鼐/null/250
箪/null/59
簌/null/71
赝/null/56
槸/null/11
橚/null/8
箫/null/682
墨/null/6206
赞/null/5297
橛/null/17
麰/null/11
鼒/null/10
箬/null/13
簎/null/9
墩/null/220
赟/null/15
跁/null/10
箭/null/6963
簏/null/10
夌/null/19
赠/null/5528
槻/null/17
跂/null/11
橝/null/13
鼓/null/14563
簐/null/15
墫/null/11
复/null/9
赡/null/54
跃/null/7954
橞/null/70
箯/null/9
墬/null/107
夎/null/9
赢/null/17237
槽/null/3216
跄/null/67
夏/null/16486
赣/null/116
槾/null/14
跅/null/8
橠/null/12
鼖/null/12
箱/null/16885
赤/null/9841
槿/null/23
跆/null/543
橡/null/774
鼗/null/10
墯/null/25
跇/null/9
麶/null/11
鼘/null/13
夒/null/11
赦/null/1008
跈/null/9
麷/null/7
鼙/null/22
箴/null/186
簖/null/8
墱/null/28
赧/null/52
櫅/null/9
麸/null/23
鼚/null/7
箵/null/13
夔/null/52
赨/null/36
橤/null/7
櫆/null/29
鼛/null/17
夕/null/7207
赩/null/11
跋/null/426
橥/null/39
櫇/null/10
鼜/null/5
簙/null/5
箷/null/9
外/null/217422
赪/null/11
跌/null/10708
橦/null/18
麻/null/28311
箸/null/60
夗/null/13
赫/null/3628
跍/null/11
橧/null/10
鼞/null/8
箹/null/6
龀/null/11
跎/null/540
橨/null/11
簜/null/5
橩/null/5
龁/null/7
夙/null/362
櫋/null/9
麾/null/251
鼠/null/14641
龂/null/6
簝/null/11
多/null/542911
赭/null/20
跏/null/63
橪/null/7
櫌/null/7
龃/null/61
粀/null/10
赮/null/11
跐/null/8
櫍/null/11
鼢/null/7
龄/null/8749
簟/null/25
墺/null/7
粁/null/8
夜/null/59755
赯/null/13
跑/null/55821
鼣/null/6
箾/null/13
龅/null/16
簠/null/12
走/null/93148
橭/null/11
櫏/null/6
鼤/null/18
龆/null/8
墼/null/24
妀/null/7
跓/null/12
櫐/null/18
鼥/null/8
龇/null/33
簢/null/20
粄/null/48
赲/null/8
橯/null/12
櫑/null/15
龈/null/223
墽/null/11
粅/null/11
够/null/66056
妁/null/60
赳/null/28
跕/null/10
龉/null/59
如/null/659275
赴/null/2487
跖/null/10
橱/null/549
墿/null/5
鼨/null/13
龊/null/298
簥/null/9
妃/null/803
赵/null/31746
跗/null/10
鼩/null/12
龋/null/12
簦/null/13
粈/null/16
妄/null/3352
赶/null/13
跘/null/21
鼪/null/11
龌/null/329
簧/null/1081
粉/null/6859
妅/null/17
起/null/228817
跙/null/11
鼫/null/11
簨/null/7
粊/null/7
夤/null/127
妆/null/11
赸/null/9
跚/null/174
鼬/null/108
妇/null/8333
赹/null/10
跛/null/412
橶/null/11
櫙/null/5
簩/null/5
鼭/null/10
妈/null/25049
跜/null/6
鼮/null/13
簪/null/62
粌/null/10
大/null/1891383
赻/null/13
距/null/14075
鼯/null/23
龑/null/14
粍/null/6
妊/null/31
跞/null/7
橹/null/16
蹀/null/21
鼰/null/12
龒/null/14
簬/null/17
天/null/569684
赽/null/10
跟/null/112513
蹁/null/17
櫜/null/11
鼱/null/8
簭/null/12
太/null/232918
跠/null/9
蹂/null/342
鼲/null/7
夫/null/114
妍/null/266
橼/null/8
歁/null/16
粑/null/25
夬/null/28
妎/null/7
跢/null/12
蹄/null/791
歂/null/12
鼳/null/7
簰/null/6
粒/null/4622
夭/null/1099
妏/null/22
跣/null/9
橾/null/23
蹅/null/9
櫠/null/13
歃/null/14
央/null/103704
妐/null/9
跤/null/832
橿/null/50
櫡/null/16
粔/null/5
鼵/null/13
夯/null/203
蹇/null/53
歅/null/9
鼶/null/8
龘/null/9
簳/null/13
粕/null/45
妒/null/1712
跦/null/12
蹈/null/2957
歆/null/32
鼷/null/12
龙/null/192863
粖/null/10
失/null/84799
妓/null/2099
跧/null/10
蹉/null/482
鼸/null/12
龚/null/814
粗/null/5947
跨/null/3666
蹊/null/112
歇/null/2061
鼹/null/188
龛/null/37
粘/null/482
跩/null/333
蹋/null/881
歈/null/16
头/null/146705
妖/null/4491
跪/null/1139
歉/null/24532
鼻/null/6595
簸/null/75
妗/null/41
跫/null/54
蹍/null/23
歊/null/14
妘/null/23
跬/null/9
蹎/null/11
歋/null/13
鼽/null/15
龟/null/13579
粜/null/11
夷/null/1728
妙/null/13233
歌/null/80050
鼾/null/211
龠/null/9
簻/null/8
粝/null/8
夸/null/556
跮/null/6
蹐/null/12
歍/null/13
簼/null/9
粞/null/8
夹/null/8
龢/null/13
粟/null/313
夺/null/7067
紁/null/7
路/null/232737
蹑/null/139
跰/null/8
蹒/null/131
龤/null/11
簿/null/1553
粡/null/11
夼/null/10
紃/null/13
妞/null/1055
娀/null/8
跱/null/10
蹓/null/75
櫮/null/11
歑/null/5
粢/null/11
威/null/32216
跲/null/14
蹔/null/62
櫯/null/11
粣/null/11
妠/null/19
跳/null/35617
櫰/null/10
粤/null/852
跴/null/10
蹖/null/9
櫱/null/9
歔/null/28
粥/null/1005
妡/null/16
娃/null/8563
践/null/3301
蹗/null/10
歕/null/36
妢/null/8
娄/null/156
跶/null/112
歖/null/16
妣/null/38
娅/null/18
跷/null/1161
蹙/null/120
粨/null/26
紊/null/487
妤/null/167
娆/null/41
跸/null/14
蹚/null/23
妥/null/5103
娇/null/2589
跹/null/14
蹛/null/132
歙/null/35
粪/null/884
紌/null/15
妦/null/22
娈/null/27
跺/null/138
蹜/null/12
妧/null/9
娉/null/229
跻/null/206
蹝/null/7
櫹/null/5
妨/null/10928
娊/null/11
蹞/null/14
跽/null/5
歜/null/13
紎/null/12
妩/null/182
軂/null/95
紏/null/6
妪/null/21
娌/null/79
跾/null/9
歞/null/11
粮/null/1567
妫/null/12
跿/null/9
蹡/null/6
櫼/null/13
粯/null/5
毁/null/27
紑/null/18
蹢/null/8
歠/null/6
毂/null/32
紒/null/7
娏/null/9
毃/null/10
粱/null/342
妮/null/5930
止/null/36248
毄/null/6
粲/null/62
妯/null/25
娑/null/644
蹥/null/13
正/null/266725
毅/null/5763
粳/null/64
蹦/null/715
軉/null/12
此/null/295670
粴/null/11
妱/null/10
娓/null/304
蹧/null/113
步/null/51305
毇/null/15
妲/null/248
武/null/48104
毈/null/13
妳/null/106116
娕/null/8
蹩/null/53
妴/null/20
娖/null/9
蹪/null/7
歧/null/3005
妵/null/6
娗/null/7
毊/null/7
粹/null/3668
妶/null/6
娘/null/121
蹬/null/193
軏/null/20
毋/null/3073
粺/null/18
娙/null/16
蹭/null/62
歪/null/4592
毌/null/26
粻/null/7
母/null/31843
粼/null/111
紞/null/6
妹/null/38407
綀/null/24
蹯/null/15
粽/null/3723
紟/null/15
妺/null/51
娜/null/3741
蹰/null/28
歭/null/15
每/null/131090
精/null/69858
素/null/30215
妻/null/8546
軓/null/11
毐/null/89
粿/null/87
妼/null/9
娞/null/7
索/null/15309
妽/null/9
綄/null/8
娟/null/4558
蹲/null/1522
毒/null/32195
妾/null/476
綅/null/10
娠/null/18
蹳/null/15
毓/null/1240
媃/null/9
蹴/null/146
軗/null/7
比/null/253132
媄/null/324
軘/null/10
毕/null/52670
蹶/null/210
毖/null/11
紧/null/22470
娣/null/420
紨/null/4
毗/null/241
蹸/null/7
歶/null/8
毘/null/223
紩/null/11
娥/null/583
軜/null/10
毙/null/3410
軝/null/9
毚/null/6
紫/null/10953
綍/null/10
蹻/null/21
軞/null/15
歹/null/2758
毛/null/27053
紬/null/15
綎/null/11
媊/null/21
蹼/null/122
娩/null/144
媋/null/11
軠/null/13
死/null/114694
媌/null/13
軡/null/12
歼/null/933
轃/null/14
毞/null/7
汀/null/943
蹿/null/15
汁/null/2941
累/null/68
媎/null/10
歾/null/8
毠/null/15
求/null/99296
綒/null/9
娭/null/6
媏/null/11
毡/null/81
汃/null/9
娮/null/11
媐/null/8
轇/null/5
軥/null/6
毢/null/7
綔/null/11
軦/null/8
轈/null/7
毣/null/9
媒/null/13216
軧/null/10
毤/null/8
汆/null/7
綖/null/10
娱/null/2626
媓/null/8
軨/null/7
汇/null/1783
娲/null/56
媔/null/7
軩/null/10
轋/null/12
毦/null/11
紶/null/12
娳/null/28
媕/null/8
汉/null/26469
娴/null/12
毨/null/10
汊/null/15
紸/null/15
娵/null/6
媗/null/13
軬/null/9
娶/null/2236
轏/null/12
汋/null/15
娷/null/11
綝/null/5
軮/null/13
轐/null/8
汌/null/6
紻/null/13
娸/null/36
媚/null/3691
軯/null/9
轑/null/11
毫/null/9404
汍/null/11
娹/null/10
媛/null/631
綟/null/5
轒/null/9
紽/null/7
媜/null/48
軱/null/6
轓/null/10
汏/null/12
紾/null/13
媝/null/7
汐/null/1017
綡/null/7
娼/null/231
縃/null/11
媞/null/74
毯/null/856
媟/null/12
嬁/null/17
轕/null/9
毰/null/7
汒/null/19
娾/null/8
嬂/null/12
軴/null/9
轖/null/9
嬃/null/9
軵/null/8
轗/null/8
毲/null/7
汔/null/74
媢/null/12
軶/null/5
轘/null/12
毳/null/16
汕/null/83
綦/null/17
嬅/null/33
轙/null/5
軷/null/12
綧/null/9
轚/null/7
毵/null/10
汗/null/4509
轛/null/8
綩/null/95
媥/null/8
嬇/null/8
毷/null/12
綪/null/75
縌/null/10
媦/null/10
轝/null/8
毸/null/7
縍/null/7
嬉/null/535
縎/null/5
轞/null/7
毹/null/9
汛/null/38
迁/null/5222
汜/null/58
縏/null/10
媩/null/14
轠/null/12
毻/null/10
迂/null/459
汝/null/5218
綮/null/24
媪/null/12
軿/null/6
毼/null/9
汞/null/380
泀/null/7
毽/null/58
迄/null/1733
江/null/33665
媬/null/9
轣/null/12
毾/null/13
迅/null/5239
池/null/10502
泂/null/7
縒/null/9
嬏/null/8
污/null/1485
泃/null/10
縓/null/8
嬐/null/10
过/null/638824
泄/null/488
縔/null/11
车/null/244964
迈/null/6069
泅/null/52
媰/null/11
轧/null/197
迉/null/15
汤/null/8101
泆/null/15
縖/null/12
媱/null/12
嬓/null/13
轨/null/5054
汥/null/6
泇/null/22
媲/null/352
嬔/null/7
轩/null/7731
迋/null/1508
汦/null/9
媳/null/776
轪/null/15
汧/null/12
泉/null/7937
綷/null/44
媴/null/13
嬖/null/9
轫/null/157
迍/null/18
汨/null/242
泊/null/4706
媵/null/10
嬗/null/24
转/null/125171
迎/null/42805
汩/null/31
媶/null/8
轭/null/99
汪/null/9235
泌/null/875
縜/null/11
媷/null/13
媸/null/5
轮/null/23165
运/null/72593
嬚/null/7
媹/null/5
软/null/60057
近/null/115913
汫/null/7
泍/null/10
綼/null/11
纀/null/12
嬛/null/34
轰/null/5732
迒/null/11
媺/null/62
纁/null/11
迓/null/17
汭/null/7
泏/null/7
縠/null/32
媻/null/11
纂/null/96
轲/null/78
返/null/4554
泐/null/11
縡/null/6
嬞/null/7
宁/null/10
轳/null/48
迕/null/15
汯/null/14
泑/null/17
縢/null/9
轴/null/3571
迖/null/11
汰/null/2062
泒/null/20
媾/null/69
嬠/null/20
它/null/160436
汱/null/32
泓/null/1388
縤/null/10
媿/null/11
纆/null/10
宄/null/30
轵/null/8
迗/null/7
汲/null/877
泔/null/11
縥/null/16
宅/null/3439
轶/null/180
还/null/511627
汳/null/14
法/null/370276
嬣/null/12
这/null/986130
汴/null/34
泖/null/9
宇/null/18185
轸/null/48
泗/null/69
嬥/null/11
守/null/36214
轹/null/12
进/null/212481
汶/null/452
縩/null/7
纋/null/10
嬦/null/7
縪/null/4
轺/null/10
远/null/80657
泙/null/12
安/null/103801
轻/null/50407
违/null/13155
汸/null/24
泚/null/17
嬧/null/12
轼/null/406
连/null/127418
汹/null/697
泛/null/596
嬨/null/9
宋/null/11270
载/null/26261
迟/null/9120
泜/null/14
完/null/138826
轾/null/83
迠/null/16
汻/null/13
泝/null/27
轿/null/1314
迡/null/8
泞/null/11
浀/null/14
纑/null/7
宎/null/17
迢/null/563
汽/null/15769
流/null/92482
縰/null/11
嬬/null/23
宏/null/19842
迣/null/49
汾/null/63
泠/null/524
浂/null/13
迤/null/27
泡/null/17478
浃/null/74
嬮/null/12
迥/null/283
波/null/27996
纔/null/110
嬯/null/9
宒/null/17
迦/null/1914
泣/null/4626
浅/null/11210
縳/null/23
纕/null/18
浆/null/2245
宓/null/95
迨/null/79
泥/null/8245
浇/null/1032
纗/null/18
嬲/null/70
迩/null/288
浈/null/13
宕/null/111
迪/null/6384
泧/null/11
浉/null/8
纙/null/11
嬴/null/364
迫/null/11981
注/null/27683
浊/null/2327
縸/null/7
纚/null/21
宗/null/33457
泩/null/13
测/null/42962
纛/null/43
官/null/38147
迭/null/300
泪/null/17323
縺/null/18
嬷/null/199
宙/null/9923
迮/null/10
泫/null/40
浍/null/18
縻/null/25
定/null/322471
泬/null/13
济/null/24848
縼/null/11
缀/null/492
宛/null/1605
述/null/31545
纟/null/146
缁/null/29
宜/null/40410
泭/null/10
浏/null/1283
纠/null/3496
缂/null/13
宝/null/51193
泮/null/26
浐/null/12
縿/null/18
纡/null/25
嬼/null/8
缃/null/12
实/null/264457
封/null/35062
泯/null/269
浑/null/4746
红/null/56845
嬽/null/9
缄/null/139
泰/null/11706
浒/null/405
纣/null/139
缅/null/513
宠/null/2797
尃/null/33
迵/null/104
泱/null/216
浓/null/7474
纤/null/8
嬿/null/169
缆/null/630
审/null/9
射/null/27791
迶/null/9
泲/null/16
浔/null/14
纥/null/19
缇/null/285
客/null/59085
泳/null/7167
浕/null/13
约/null/69741
缈/null/161
宣/null/25133
将/null/206982
迷/null/74216
级/null/95710
缉/null/1119
室/null/93487
迸/null/178
泵/null/121
纨/null/86
缊/null/18
宥/null/175
迹/null/7011
泶/null/13
浘/null/7
纩/null/19
缋/null/13
宦/null/187
尉/null/2101
泷/null/178
浙/null/331
纪/null/28226
缌/null/9
宧/null/10
尊/null/22568
迻/null/6
泸/null/15
浚/null/70
纫/null/43
缍/null/11
宨/null/14
迼/null/25
泹/null/28
纬/null/2157
缎/null/179
追/null/40176
泺/null/7
纭/null/245
缏/null/17
尌/null/10
迾/null/33
泻/null/981
纮/null/92
宪/null/13709
迿/null/15
泼/null/3526
浞/null/6
淀/null/20
纯/null/28912
缑/null/7
宫/null/19968
浟/null/5
泽/null/7931
纰/null/159
缒/null/14
宬/null/24
小/null/530133
泾/null/53
浠/null/16
淂/null/161
纱/null/1196
缓/null/7883
宭/null/13
尐/null/14
浡/null/12
纲/null/5576
缔/null/1538
少/null/206744
浢/null/9
淄/null/22
尒/null/10
浣/null/260
淅/null/141
纳/null/15556
缕/null/563
宰/null/3479
浤/null/22
淆/null/1129
纴/null/12
编/null/38087
尔/null/38126
浥/null/52
淇/null/855
纵/null/11069
缗/null/25
尕/null/6
浦/null/1875
淈/null/9
纶/null/1549
缘/null/32816
害/null/51860
尖/null/9349
浧/null/6
淉/null/7
纷/null/9009
缙/null/41
宴/null/2071
浨/null/18
淊/null/6
纸/null/24519
缚/null/2350
宵/null/3817
尘/null/16193
浩/null/9069
淋/null/3413
纹/null/3656
缛/null/14
家/null/6058
浪/null/34731
淌/null/907
纺/null/646
缜/null/53
尚/null/28869
淍/null/35
纻/null/8
缝/null/2766
宸/null/232
浬/null/231
纼/null/9
缞/null/10
容/null/108060
羁/null/584
浭/null/6
淏/null/20
纽/null/4050
缟/null/74
尝/null/2117
浮/null/15229
淐/null/17
纾/null/341
缠/null/4784
羃/null/18
线/null/88361
缡/null/7
尟/null/12
岁/null/37303
浯/null/220
淑/null/8887
缢/null/42
宽/null/10361
岂/null/8616
浰/null/9
缣/null/11
宾/null/6274
淓/null/10
缤/null/915
宿/null/34166
羇/null/17
尢/null/36
淔/null/11
缥/null/195
淕/null/11
缦/null/44
羉/null/13
尤/null/29292
岆/null/10
浴/null/4238
淖/null/67
缧/null/11
羊/null/11499
尥/null/14
浵/null/6
淗/null/9
缨/null/174
岈/null/8
浶/null/8
淘/null/3120
缩/null/17930
岉/null/5
羌/null/92
尧/null/3685
海/null/88905
淙/null/133
缪/null/493
羍/null/5
尨/null/14
岊/null/15
浸/null/1677
缫/null/13
美/null/173127
岋/null/8
淛/null/9
缬/null/16
淜/null/5
尪/null/387
岌/null/148
浺/null/11
缭/null/123
浻/null/10
淝/null/24
缮/null/911
羑/null/7
岍/null/109
浼/null/44
淞/null/66
湀/null/11
缯/null/36
羒/null/11
尬/null/1871
浽/null/8
淟/null/13
湁/null/6
缰/null/99
岏/null/17
浾/null/10
淠/null/7
缱/null/199
羔/null/649
岐/null/658
浿/null/15
淡/null/21570
湃/null/323
缲/null/9
羕/null/9
岑/null/323
淢/null/11
湄/null/351
缳/null/23
羖/null/14
尰/null/6
岒/null/10
淣/null/10
湅/null/17
缴/null/7952
就/null/803921
岓/null/7
淤/null/481
湆/null/14
岔/null/881
湇/null/13
缵/null/12
尳/null/8
岕/null/7
淦/null/225
缶/null/21
尴/null/1546
岖/null/309
湉/null/21
羚/null/418
岗/null/3791
缸/null/5193
羛/null/11
岘/null/17
湋/null/16
缹/null/7
羜/null/9
岙/null/7
缺/null/29257
羝/null/19
尸/null/401
岚/null/6416
淫/null/99
湍/null/184
羞/null/5666
尹/null/3101
岛/null/23592
淬/null/107
湎/null/17
羟/null/33
尺/null/11878
淭/null/6
羠/null/9
尻/null/122
岝/null/16
淮/null/335
缾/null/6
缿/null/5
羡/null/122
尼/null/18042
崀/null/15
淯/null/37
湑/null/10
尽/null/9665
岟/null/9
崁/null/215
淰/null/11
湒/null/14
尾/null/15029
岠/null/14
崂/null/11
群/null/39731
尿/null/3328
崃/null/29
深/null/67687
湓/null/14
岢/null/19
崄/null/11
淲/null/9
湔/null/10
羦/null/10
岣/null/11
淳/null/1246
湕/null/10
羧/null/11
岤/null/13
崆/null/31
淴/null/10
湖/null/28325
岥/null/14
崇/null/11545
岦/null/58
湘/null/2284
岧/null/10
混/null/22888
岨/null/5
湚/null/13
羬/null/6
岩/null/10
崋/null/16
淹/null/2777
湛/null/999
崌/null/5
羭/null/6
岪/null/6
湜/null/19
岫/null/838
添/null/4500
湝/null/8
滀/null/5
羯/null/4017
岬/null/65
崎/null/2712
淼/null/691
羰/null/15
淽/null/11
湟/null/17
滁/null/8
羱/null/9
岭/null/13
崏/null/7
湠/null/112
滂/null/318
羲/null/499
岮/null/14
湡/null/12
滃/null/18
湢/null/5
羳/null/8
岯/null/6
岰/null/10
崒/null/23
羵/null/6
岱/null/868
湤/null/6
滆/null/9
崔/null/1606
湥/null/8
滇/null/85
岳/null/592
湦/null/16
滈/null/9
羷/null/13
崖/null/1036
滉/null/14
湨/null/5
羸/null/68
岵/null/8
滊/null/7
岶/null/5
羹/null/626
湩/null/17
滋/null/5526
羺/null/14
岷/null/76
羻/null/7
岸/null/10557
崚/null/346
湫/null/11
滍/null/9
羼/null/35
崛/null/310
滏/null/5
羽/null/8817
羾/null/14
崝/null/13
湮/null/192
滐/null/10
羿/null/429
崞/null/15
嶀/null/21
滑/null/11131
滒/null/5
岽/null/9
崟/null/26
嶂/null/50
湱/null/9
滓/null/31
岿/null/10
湲/null/17
滔/null/1608
崣/null/8
湳/null/85
滕/null/166
崤/null/10
嶆/null/11
湴/null/7
滖/null/29
崥/null/8
滗/null/10
崦/null/14
嶈/null/15
滘/null/9
崧/null/216
嶉/null/10
湷/null/24
崨/null/5
嶊/null/14
湸/null/6
滚/null/12305
崩/null/2048
湹/null/7
滜/null/7
嶍/null/17
滞/null/1077
潀/null/56
崭/null/464
滟/null/41
滠/null/5
崮/null/10
湾/null/178502
湿/null/768
满/null/71310
潃/null/18
滢/null/213
崰/null/12
嶒/null/10
崱/null/10
嶓/null/13
滤/null/2884
潆/null/18
崲/null/9
滥/null/5110
潇/null/2967
嶕/null/6
滦/null/23
崴/null/96
崵/null/5
滨/null/2166
崶/null/11
滩/null/1978
潋/null/59
崷/null/13
嶙/null/156
滪/null/12
崸/null/6
嶚/null/10
滫/null/11
潍/null/28
崹/null/12
潎/null/12
崺/null/6
嶜/null/7
滭/null/6
潏/null/6
嶝/null/7
滮/null/97
潐/null/10
崼/null/11
嶞/null/15
崽/null/102
嶟/null/8
币/null/8321
潒/null/11
市/null/105637
滱/null/6
潓/null/29
崿/null/5
嶡/null/11
布/null/16807
帄/null/7
潕/null/14
帅/null/19869
滴/null/7275
帆/null/2933
滵/null/14
潗/null/11
师/null/135409
滶/null/19
潘/null/4300
帊/null/13
潚/null/28
嶩/null/12
滹/null/6
嶪/null/11
希/null/120764
潜/null/8541
潝/null/16
嶬/null/8
帎/null/8
滼/null/14
潞/null/295
激/null/34430
嶭/null/7
帏/null/59
滽/null/12
帐/null/22312
潠/null/11
濂/null/286
潡/null/5
嶯/null/9
帑/null/209
嶰/null/5
潢/null/303
濄/null/10
潣/null/9
嶱/null/14
濆/null/7
嶲/null/6
帔/null/8
濇/null/9
帕/null/2361
潦/null/229
濈/null/7
帖/null/3096
潧/null/9
濉/null/10
嶵/null/9
帗/null/13
濊/null/11
帘/null/148
潩/null/11
濋/null/57
嶷/null/6
帙/null/21
潪/null/13
濌/null/10
帚/null/132
潫/null/9
濍/null/7
帛/null/142
潬/null/8
濎/null/10
帜/null/809
潭/null/3564
濏/null/11
帝/null/41120
潮/null/11709
庀/null/12
濑/null/849
帟/null/10
濒/null/467
帠/null/10
庂/null/10
帡/null/7
潲/null/16
帢/null/19
庄/null/1185
潳/null/38
帣/null/14
潴/null/12
帤/null/12
庆/null/21321
潶/null/5
庇/null/439
带/null/76240
庈/null/16
庉/null/5
帧/null/72
帨/null/12
床/null/11827
潸/null/108
帩/null/17
庋/null/15
庌/null/8
潺/null/278
庍/null/5
潻/null/22
濝/null/10
潼/null/52
濞/null/7
席/null/69
序/null/21328
潽/null/22
帮/null/80023
庐/null/860
潾/null/15
濠/null/94
庑/null/12
濡/null/193
濢/null/7
帱/null/18
库/null/14348
濣/null/22
应/null/246284
底/null/68724
濦/null/7
帴/null/13
庖/null/142
濧/null/13
店/null/33183
濨/null/13
濩/null/15
帷/null/222
庙/null/3963
常/null/185860
庚/null/1485
庛/null/65
府/null/29469
濭/null/10
帻/null/15
濮/null/58
帼/null/175
庞/null/3522
开/null/265943
濯/null/371
帽/null/11470
废/null/17356
弁/null/87
帾/null/17
庠/null/302
异/null/14
弃/null/22563
濲/null/6
庢/null/11
弄/null/25855
庣/null/8
弅/null/15
濴/null/11
庤/null/19
庥/null/27
弇/null/9
度/null/147388
弈/null/64
濷/null/7
座/null/56615
庨/null/13
弊/null/4543
弋/null/430
庪/null/12
濻/null/12
庬/null/18
庭/null/11105
式/null/202729
庮/null/12
濿/null/20
庰/null/16
弒/null/81
庱/null/13
弓/null/2630
庲/null/7
庳/null/56
引/null/74461
庴/null/13
庵/null/24
弗/null/1864
庶/null/549
弘/null/6356
康/null/38252
庸/null/9813
弚/null/13
庹/null/47
弛/null/211
弝/null/8
庼/null/23
往/null/63499
弟/null/141812
征/null/5442
庾/null/83
张/null/134407
徂/null/17
弢/null/10
径/null/1616
弣/null/7
待/null/58350
弤/null/9
徆/null/13
弥/null/1137
徇/null/28
弦/null/2487
很/null/417617
弧/null/970
徉/null/540
弨/null/6
徊/null/1060
弩/null/369
律/null/27377
弪/null/7
弭/null/205
弮/null/10
徐/null/12774
弯/null/7669
弰/null/7
徒/null/21432
乂/null/25
弱/null/13963
乃/null/435
徕/null/267
久/null/75514
徖/null/6
得/null/521836
乇/null/12
弶/null/17
徘/null/1095
么/null/7768
义/null/115744
徙/null/371
弸/null/12
之/null/527444
弹/null/26708
徛/null/218
乌/null/12176
强/null/106
徜/null/677
乍/null/1086
乎/null/76041
弼/null/241
乏/null/7468
徟/null/14
乐/null/168280
御/null/1585
乒/null/239
乓/null/227
乔/null/6151
徥/null/32
徦/null/14
乖/null/20396
徨/null/1063
乘/null/12677
乙/null/11559
循/null/4915
徫/null/30
乜/null/69
徭/null/15
九/null/60561
微/null/32489
乞/null/1137
什/null/276297
徯/null/11
也/null/2712260
仁/null/30825
习/null/48435
仂/null/11
乡/null/23208
仃/null/96
徲/null/9
仄/null/1284
仅/null/22327
仆/null/361
仇/null/5949
徶/null/12
书/null/166626
仈/null/10
德/null/60841
仉/null/7
今/null/143560
乩/null/336
介/null/53811
徻/null/5
仍/null/47529
从/null/160052
徼/null/24
徽/null/1136
徾/null/12
仑/null/544
徿/null/10
买/null/143064
乱/null/51811
仓/null/3902
仔/null/30580
乳/null/3636
仕/null/1816
他/null/635766
仗/null/3632
付/null/25729
仙/null/16789
仚/null/10
仜/null/8
仝/null/385
仞/null/249
仟/null/1341
佁/null/12
乿/null/10
仡/null/12
佃/null/78
代/null/141314
令/null/69051
但/null/362245
以/null/994958
佉/null/25
仨/null/27
仩/null/21
仪/null/10938
佌/null/14
位/null/291403
们/null/571155
低/null/46654
住/null/84509
佐/null/3087
佑/null/1562
佒/null/5
仰/null/9993
仱/null/10
体/null/4229
仲/null/6118
仳/null/41
何/null/394682
仴/null/12
佖/null/11
仵/null/16
佗/null/290
件/null/98128
价/null/29
余/null/5368
佚/null/136
佛/null/3602
作/null/287015
任/null/117100
佝/null/19
佞/null/181
俀/null/7
份/null/99488
佟/null/19
你/null/915385
仿/null/72
佡/null/17
促/null/6018
佢/null/451
俄/null/3950
佣/null/286
俅/null/35
佤/null/5
佥/null/10
俇/null/38
佧/null/13
俉/null/14
俊/null/32096
佩/null/2426
俋/null/11
佪/null/28
佫/null/904
俍/null/15
佬/null/2910
俎/null/177
俏/null/1129
佮/null/1614
俐/null/951
佯/null/379
俑/null/391
佰/null/1234
俓/null/36
俔/null/9
佳/null/39101
佴/null/10
俖/null/10
俗/null/11307
佶/null/134
俘/null/443
佷/null/33
俙/null/15
佸/null/34
俚/null/95
佹/null/7
俛/null/47
佺/null/18
俜/null/13
佻/null/52
保/null/99970
佼/null/497
俞/null/809
佽/null/12
俟/null/479
佾/null/36
使/null/216201
信/null/406628
俣/null/11
俦/null/128
俨/null/569
俩/null/4966
俪/null/451
俬/null/28
俭/null/522
修/null/114
俯/null/32
俱/null/6857
俳/null/44
俴/null/17
俵/null/77
俶/null/8
俷/null/9
俸/null/225
俺/null/1681
俾/null/575
遁/null/859
遂/null/2207
遄/null/47
遇/null/39200
遉/null/24
遍/null/14043
遏/null/323
遐/null/732
遑/null/433
遒/null/22
道/null/386382
遗/null/19703
遘/null/43
遛/null/35
郁/null/2826
遢/null/127
郄/null/918
遣/null/2957
郅/null/58
遥/null/10160
郇/null/25
郈/null/11
遧/null/12
遨/null/2794
郊/null/1811
郋/null/9
遫/null/11
郎/null/17737
遭/null/15597
郏/null/11
遮/null/2678
郐/null/14
遯/null/20
郑/null/15451
遰/null/15
郓/null/12
郔/null/7
遳/null/8
郕/null/15
遴/null/392
郖/null/16
遵/null/4780
郗/null/17
遶/null/63
郘/null/9
郙/null/6
郚/null/8
遹/null/27
郛/null/17
郜/null/34
遻/null/10
郝/null/2554
酀/null/19
遽/null/308
酁/null/7
遾/null/17
郠/null/14
避/null/20858
郡/null/737
酃/null/6
郢/null/155
酄/null/22
郣/null/10
酅/null/8
酆/null/25
郥/null/12
酇/null/22
郦/null/19
郧/null/25
酉/null/325
部/null/176255
酊/null/46
郩/null/20
酋/null/527
郪/null/8
酌/null/1677
郫/null/13
配/null/42778
郬/null/9
酎/null/16
郭/null/24538
酏/null/16
酐/null/13
耀/null/396
郯/null/13
老/null/198538
郰/null/6
酒/null/30999
郱/null/23
酓/null/16
考/null/71
郲/null/7
酕/null/5
耄/null/33
郳/null/10
者/null/283962
郴/null/21
酖/null/24
耆/null/147
酗/null/332
耇/null/8
酘/null/23
郸/null/42
酚/null/72
郹/null/8
耋/null/18
而/null/459507
郺/null/8
耍/null/5783
郻/null/16
酝/null/205
耎/null/15
郼/null/15
耏/null/7
都/null/493206
酟/null/8
酠/null/5
耐/null/13694
郾/null/19
釂/null/9
郿/null/11
酡/null/26
耒/null/20
酢/null/73
酣/null/324
耔/null/6
酤/null/16
釆/null/218
耕/null/2168
酥/null/919
采/null/12
耖/null/8
酦/null/35
耗/null/6573
釉/null/74
酨/null/11
释/null/28042
耘/null/693
酩/null/44
耙/null/509
酪/null/471
里/null/1496
重/null/190069
耛/null/11
酬/null/1991
野/null/43878
耜/null/8
量/null/75841
酮/null/132
耞/null/18
酯/null/202
金/null/108819
耟/null/9
酰/null/43
肂/null/11
酱/null/2872
肃/null/2896
酲/null/22
肄/null/272
酳/null/9
酴/null/24
耤/null/11
肆/null/3104
酵/null/690
肇/null/2531
耦/null/94
酷/null/11827
耧/null/11
肉/null/28277
酸/null/371
釚/null/13
耨/null/488
肊/null/11
酹/null/628
酺/null/5
耩/null/6
肋/null/544
釜/null/178
耪/null/17
肌/null/1908
肏/null/71
酽/null/11
肐/null/14
酾/null/11
酿/null/1476
耰/null/12
肒/null/7
釢/null/8
肓/null/122
耳/null/13349
肕/null/12
耴/null/13
肖/null/1527
耵/null/21
耶/null/73163
肘/null/641
釨/null/10
鉊/null/20
耷/null/12
肙/null/12
釪/null/8
鉌/null/9
耸/null/1356
肚/null/6730
釫/null/17
耹/null/29
肛/null/633
鉎/null/27
肜/null/8
釭/null/56
鉏/null/11
耻/null/8157
肝/null/3945
釮/null/14
鉐/null/28
脀/null/7
耽/null/885
脁/null/15
鉒/null/10
耾/null/11
肠/null/3932
脂/null/1475
釱/null/13
鉓/null/11
耿/null/1744
股/null/17617
鉔/null/14
肢/null/3500
釳/null/10
肣/null/9
釴/null/11
鉖/null/10
肤/null/4000
脆/null/8466
肥/null/8612
脉/null/4812
釸/null/8
脊/null/1080
肩/null/5233
肪/null/425
肫/null/27
脍/null/120
鋀/null/12
釽/null/13
肭/null/10
脏/null/2307
肮/null/12
脐/null/278
鉠/null/8
鉡/null/5
肯/null/17482
脑/null/85822
釿/null/8
鋄/null/7
肱/null/69
脓/null/279
鉣/null/8
育/null/55965
脔/null/40
鋆/null/18
脕/null/218
鉥/null/10
肴/null/55
脖/null/969
鋈/null/9
肵/null/8
鉧/null/11
鋉/null/11
脘/null/18
鋊/null/10
脙/null/9
鋋/null/8
肸/null/10
脚/null/30714
鋍/null/8
鋎/null/6
肺/null/1223
脝/null/7
鋐/null/27
脞/null/22
膀/null/3633
鉯/null/6
鋑/null/9
脟/null/23
鉰/null/14
肾/null/1172
膂/null/35
鋓/null/7
肿/null/1527
脡/null/10
脢/null/61
鋕/null/15
鉴/null/13
脤/null/18
膆/null/18
鋗/null/11
脥/null/14
膇/null/12
鋘/null/28
膈/null/70
脧/null/8
膉/null/14
膊/null/152
鉹/null/26
膋/null/19
膌/null/14
膍/null/5
鉼/null/13
鋞/null/13
脬/null/6
鉽/null/12
脭/null/8
膏/null/1301
鉾/null/9
鋠/null/12
鋡/null/9
灀/null/10
脯/null/153
膑/null/85
灁/null/10
脰/null/9
灂/null/9
脱/null/16953
灅/null/8
灆/null/6
膗/null/9
鋧/null/7
鍉/null/13
脶/null/12
膘/null/22
灈/null/6
膙/null/10
灉/null/9
脸/null/23688
鍌/null/7
灊/null/8
膛/null/764
脺/null/11
膜/null/2902
鍎/null/7
灌/null/40173
膝/null/1438
鍏/null/6
鍐/null/13
膞/null/7
舀/null/129
鍑/null/10
鍒/null/5
灏/null/77
脽/null/13
膟/null/13
舁/null/13
脾/null/2362
舂/null/32
灒/null/20
膢/null/14
舄/null/10
鍕/null/12
膣/null/9
舅/null/1256
鍖/null/8
舆/null/1063
鍗/null/7
灖/null/23
膦/null/13
鋷/null/14
鍙/null/25
灗/null/16
膧/null/11
膨/null/1481
鋹/null/55
舋/null/35
鋺/null/10
鍜/null/13
舌/null/3769
鏀/null/8
灚/null/7
膫/null/144
舍/null/8137
鍞/null/14
灛/null/11
膬/null/10
鋾/null/5
鏂/null/7
鋿/null/5
膮/null/11
舐/null/46
鍡/null/12
鏄/null/19
灞/null/12
舑/null/6
灟/null/12
烁/null/2067
膰/null/16
舒/null/9918
鍣/null/13
灠/null/48
烂/null/35425
膱/null/24
灡/null/7
烃/null/20
膲/null/12
舔/null/436
灢/null/6
膳/null/981
舕/null/8
烅/null/9
膴/null/12
烆/null/31
膵/null/11
鍧/null/11
鏊/null/9
灥/null/16
烇/null/10
灦/null/29
烈/null/19529
膷/null/12
鍪/null/12
灨/null/21
烊/null/133
膹/null/10
舛/null/33
鏎/null/9
烋/null/17
膺/null/495
舜/null/2037
鏏/null/15
灪/null/10
膻/null/19
舝/null/9
鍭/null/15
芀/null/5
火/null/64196
烍/null/7
膼/null/6
舞/null/41993
烎/null/11
舟/null/5897
鏒/null/14
灭/null/19510
舠/null/15
节/null/52773
鍱/null/20
鏔/null/12
灯/null/25149
烑/null/15
舡/null/10
芃/null/51
鏕/null/8
灰/null/9328
烒/null/8
舢/null/79
芄/null/10
鏖/null/97
灱/null/8
烓/null/9
舣/null/12
芅/null/7
烔/null/41
舥/null/9
鏙/null/7
灴/null/10
芈/null/15
鍷/null/7
灵/null/40022
烗/null/6
灶/null/262
烘/null/945
舨/null/58
芊/null/115
鍹/null/8
烙/null/678
芋/null/1635
灸/null/502
烚/null/7
航/null/10189
鍻/null/12
鑀/null/10
烛/null/2074
舫/null/215
芍/null/85
般/null/87661
芎/null/193
灺/null/19
烜/null/316
芏/null/11
烝/null/9
芐/null/16
灼/null/491
烞/null/21
舯/null/16
芑/null/9
鏣/null/10
鑅/null/7
烟/null/1196
煁/null/7
舰/null/11143
芒/null/4888
灾/null/5317
鑆/null/8
烠/null/10
煂/null/6
舱/null/647
芓/null/10
灿/null/4162
鑇/null/15
烡/null/11
煃/null/9
舲/null/20
芔/null/31
烢/null/8
煄/null/14
舳/null/17
鏦/null/11
鑈/null/13
煅/null/18
舴/null/149
鑉/null/6
鏧/null/12
烤/null/5237
舵/null/653
芗/null/24
舶/null/199
芘/null/6
鑋/null/13
烦/null/46473
舷/null/70
芙/null/1672
烧/null/14030
舸/null/12
芚/null/10
烨/null/209
船/null/12875
芛/null/6
鏬/null/16
烩/null/136
煋/null/15
舺/null/64
芜/null/478
鑏/null/8
煌/null/4107
舻/null/14
芝/null/3421
鏮/null/22
鑐/null/13
烫/null/1755
煍/null/13
舼/null/12
芞/null/22
茀/null/18
烬/null/722
煎/null/2671
舽/null/10
芟/null/16
茁/null/958
热/null/52375
芠/null/9
茂/null/4915
煐/null/42
舿/null/7
芡/null/43
范/null/2880
烯/null/138
怀/null/11
烰/null/8
芢/null/26
茄/null/764
态/null/52194
煓/null/7
芣/null/17
茅/null/1043
怂/null/296
鑗/null/7
煔/null/9
芤/null/6
茆/null/40
怃/null/23
鏶/null/5
烳/null/6
芥/null/895
茇/null/7
怄/null/11
芦/null/1299
茈/null/28
怅/null/1140
鏸/null/13
芧/null/16
茉/null/664
怆/null/505
烶/null/11
煘/null/7
芨/null/31
鏺/null/6
烷/null/310
芩/null/145
鏻/null/7
鑝/null/10
烸/null/226
煚/null/723
茌/null/14
怉/null/14
鏼/null/13
烹/null/681
铀/null/190
芫/null/51
茍/null/970
怊/null/16
烺/null/7
铁/null/12
煜/null/689
芬/null/10527
茎/null/935
怋/null/11
煝/null/5
怌/null/5
烻/null/20
铂/null/61
芭/null/4139
茏/null/28
鏾/null/9
铃/null/6587
芮/null/252
怍/null/51
鏿/null/10
烼/null/5
鑢/null/7
铄/null/144
煞/null/8474
燀/null/10
芯/null/547
茑/null/19
怎/null/154174
烽/null/450
铅/null/1826
煟/null/8
芰/null/8
怏/null/51
铆/null/23
煠/null/20
燂/null/7
花/null/101015
怐/null/29
烿/null/15
煡/null/8
燃/null/6378
茔/null/49
怑/null/14
铈/null/13
芳/null/15327
茕/null/63
怒/null/7861
铉/null/86
煣/null/25
燅/null/14
芴/null/91
茖/null/30
怓/null/24
煤/null/934
燆/null/14
芵/null/44
茗/null/432
怔/null/482
鑨/null/10
铊/null/18
燇/null/10
芶/null/9
怕/null/59891
鑩/null/14
铋/null/17
煦/null/473
芷/null/1783
茙/null/13
怖/null/6167
铌/null/15
照/null/131
芸/null/35
怗/null/9
鑫/null/1470
铍/null/25
煨/null/21
燊/null/220
芹/null/1097
茛/null/13
铎/null/1088
燋/null/19
芺/null/18
茜/null/914
怙/null/57
铏/null/14
煪/null/11
鑮/null/11
铐/null/659
芼/null/39
茞/null/11
怚/null/14
鑯/null/25
铑/null/13
燎/null/79
芽/null/1586
莁/null/15
怛/null/63
铒/null/11
燏/null/9
芾/null/29
茠/null/29
怜/null/52
铓/null/18
煮/null/4273
莃/null/7
思/null/101505
铔/null/12
茢/null/9
怞/null/33
悀/null/62
煰/null/5
鑳/null/8
铕/null/9
莅/null/897
悁/null/30
鑴/null/7
铖/null/11
怠/null/1194
鑵/null/22
铗/null/66
煲/null/42
燔/null/27
茤/null/13
莆/null/33
怡/null/8122
悃/null/17
鑶/null/9
燕/null/10
茥/null/12
莇/null/12
怢/null/51
悄/null/4898
莈/null/5
铙/null/43
燖/null/9
茦/null/36
鑸/null/11
铚/null/20
茧/null/14
莉/null/7901
怤/null/6
悆/null/9
铛/null/92
燘/null/12
茨/null/70
急/null/34127
悇/null/11
铜/null/3512
茩/null/40
莋/null/8
怦/null/176
悈/null/9
铝/null/1827
煸/null/17
燚/null/9
茪/null/67
莌/null/11
性/null/199183
悉/null/8090
镀/null/753
燛/null/8
茫/null/6378
莍/null/10
怨/null/12485
悊/null/7
铟/null/14
镁/null/277
茬/null/44
莎/null/5532
怩/null/40
铠/null/828
煻/null/9
镂/null/132
茭/null/8
莏/null/9
怪/null/71713
悌/null/152
铡/null/66
镃/null/13
莐/null/14
怫/null/29
悍/null/1546
铢/null/71
煽/null/1271
镄/null/6
牁/null/11
茯/null/67
怬/null/23
悎/null/10
铣/null/55
镅/null/16
莒/null/852
怭/null/9
铤/null/21
镆/null/19
燠/null/32
牂/null/12
茱/null/569
莓/null/868
怮/null/18
悐/null/23
铥/null/31
镇/null/10526
燡/null/9
莔/null/8
怯/null/839
铦/null/7
镈/null/8
燢/null/10
牄/null/14
茳/null/17
莕/null/6
悒/null/53
铧/null/14
镉/null/283
茴/null/22
铨/null/690
镊/null/23
燤/null/6
茵/null/1614
莗/null/13
怲/null/6
悔/null/14321
铩/null/28
镋/null/10
燥/null/1579
片/null/107600
茶/null/16063
莘/null/691
怳/null/17
悕/null/20
版/null/146807
茷/null/32
莙/null/15
怴/null/14
悖/null/279
牉/null/5
铪/null/21
镌/null/37
燧/null/51
茸/null/217
莚/null/8
怵/null/68
悗/null/9
铫/null/18
镍/null/374
燨/null/7
牊/null/9
茹/null/1259
莛/null/11
铬/null/169
镎/null/15
茺/null/7
莜/null/10
怷/null/15
莝/null/5
铭/null/26579
镏/null/12
牌/null/30757
茻/null/15
悚/null/288
铮/null/724
镐/null/73
牍/null/51
茼/null/58
莞/null/254
怹/null/40
悛/null/14
铯/null/17
镑/null/91
萁/null/38
铰/null/20
镒/null/77
牏/null/22
莠/null/148
悜/null/18
铱/null/18
镓/null/13
燮/null/38
茿/null/11
总/null/101978
萃/null/1067
悝/null/17
愀/null/23
铲/null/302
镔/null/26
怼/null/85
萄/null/2033
愁/null/13655
铳/null/316
镕/null/392
燰/null/11
牒/null/259
莣/null/10
悟/null/7589
铴/null/6
镖/null/582
燱/null/11
牓/null/24
莤/null/24
萆/null/8
悠/null/7625
愃/null/11
铵/null/56
镗/null/49
燲/null/8
莥/null/8
怿/null/83
愄/null/8
银/null/19166
镘/null/10
悢/null/12
愅/null/12
铷/null/13
镙/null/16
牖/null/24
莦/null/8
患/null/4650
萉/null/5
愆/null/56
铸/null/943
铹/null/18
镛/null/290
莨/null/13
愈/null/68
铺/null/626
镜/null/22234
牙/null/12472
莩/null/16
萋/null/73
悦/null/5736
愉/null/7387
铻/null/10
镝/null/14
燸/null/18
牚/null/8
莪/null/37
萌/null/526
愊/null/7
铼/null/28
镞/null/29
燹/null/52
闀/null/15
牛/null/34225
莫/null/27786
萍/null/4392
您/null/185118
愋/null/10
铽/null/9
萎/null/989
镠/null/5
链/null/969
牝/null/41
萏/null/198
愍/null/19
铿/null/157
镡/null/8
牞/null/10
莮/null/16
萐/null/7
悫/null/17
愎/null/178
镢/null/7
燽/null/13
牟/null/738
狁/null/16
莯/null/6
萑/null/12
悬/null/2957
意/null/322755
镣/null/43
闅/null/6
牠/null/11796
狂/null/40001
莰/null/10
萒/null/11
悭/null/72
愐/null/14
镤/null/15
牡/null/4509
狃/null/9
莱/null/7057
萓/null/20
闇/null/1448
莲/null/11039
悯/null/969
愒/null/22
镦/null/6
牢/null/4712
狄/null/1582
莳/null/42
悰/null/10
愓/null/20
镧/null/22
闉/null/13
牣/null/7
狅/null/6
莴/null/56
悱/null/238
愔/null/107
镨/null/10
狆/null/13
悲/null/32912
愕/null/498
莶/null/20
愖/null/15
镪/null/9
牦/null/13
狈/null/300
获/null/2355
悴/null/579
镫/null/34
牧/null/5908
狉/null/15
莸/null/13
萚/null/19
愘/null/9
狊/null/15
莹/null/2364
萛/null/28
镬/null/20
物/null/119523
狋/null/21
莺/null/1451
悷/null/12
愚/null/5458
镭/null/82
牪/null/12
狌/null/9
萝/null/2023
悸/null/1929
悹/null/5
镮/null/30
莼/null/6
镯/null/88
闑/null/12
牬/null/8
狎/null/55
莽/null/975
悺/null/11
蒂/null/2649
愝/null/10
镰/null/193
悻/null/238
镱/null/38
牮/null/17
狐/null/9282
莿/null/22
憀/null/8
牯/null/255
狑/null/7
悼/null/1654
感/null/203436
镳/null/318
牰/null/10
狒/null/249
萣/null/22
蒆/null/6
愠/null/193
镴/null/144
萤/null/25427
悾/null/39
蒇/null/12
憃/null/7
镵/null/13
牲/null/7177
狔/null/7
营/null/38542
悿/null/11
镶/null/314
牳/null/16
萦/null/438
狖/null/5
蒉/null/6
愣/null/746
萧/null/13870
愤/null/3674
牵/null/11519
狗/null/39154
闛/null/7
牶/null/26
狘/null/9
萨/null/9858
蒋/null/7126
愦/null/30
镺/null/7
牷/null/22
狙/null/475
萩/null/93
蒌/null/17
愧/null/4855
憉/null/9
镻/null/9
牸/null/15
狚/null/15
蒍/null/10
镼/null/11
特/null/103567
陀/null/5749
萫/null/11
蒎/null/8
愩/null/14
憋/null/610
镽/null/6
闟/null/7
牺/null/6815
狜/null/14
蒏/null/9
憌/null/11
牻/null/10
陂/null/57
狝/null/14
萭/null/11
愫/null/244
憍/null/60
长/null/237093
牼/null/6
陃/null/15
狞/null/195
獀/null/13
蒑/null/11
愬/null/11
憎/null/703
附/null/55735
狟/null/10
萯/null/7
闣/null/13
牾/null/13
际/null/39814
狠/null/5549
獂/null/6
萰/null/7
愮/null/8
牿/null/15
陆/null/34355
狡/null/793
萱/null/1124
愯/null/10
陇/null/298
偀/null/69
萲/null/27
陈/null/125249
狣/null/17
偁/null/9
萳/null/17
憓/null/32
陉/null/72
萴/null/6
蒗/null/16
愲/null/13
憔/null/511
门/null/89827
陊/null/9
狤/null/12
偃/null/188
蒘/null/8
闩/null/84
陋/null/3807
萶/null/6
蒙/null/30
闪/null/11043
陌/null/3815
狦/null/10
偅/null/10
萷/null/8
蒚/null/7
闫/null/16
降/null/18470
獉/null/12
偆/null/87
萸/null/52
蒛/null/9
愶/null/6
闬/null/11
陎/null/9
狨/null/12
獊/null/10
假/null/65722
萹/null/78
蒜/null/567
闭/null/10087
陏/null/9
狩/null/196
偈/null/677
萺/null/15
蒝/null/7
狪/null/21
獌/null/9
萻/null/6
蔀/null/17
憛/null/10
问/null/601742
限/null/50622
狫/null/12
獍/null/14
偊/null/12
萼/null/272
蒟/null/11
闯/null/3014
陑/null/10
独/null/91993
偋/null/14
落/null/58567
蒠/null/7
愻/null/16
蔂/null/13
憝/null/7
闰/null/886
狭/null/2476
偌/null/236
蒡/null/30
闱/null/39
陓/null/11
狮/null/21193
獐/null/45
偍/null/17
萿/null/17
蒢/null/6
憟/null/27
戁/null/14
闲/null/663
陔/null/11
狯/null/54
獑/null/15
偎/null/958
闳/null/41
陕/null/113
狰/null/165
獒/null/58
偏/null/22239
蒤/null/11
间/null/221727
狱/null/6251
愿/null/1078
蔇/null/26
憡/null/12
戃/null/7
闵/null/914
狲/null/31
偑/null/33
蔈/null/10
憢/null/9
戄/null/9
闶/null/15
狳/null/15
蒧/null/7
蔉/null/7
闷/null/6194
狴/null/25
偓/null/7
蒨/null/236
蔊/null/6
戆/null/82
闸/null/274
獗/null/217
蒩/null/11
蔋/null/13
闹/null/11924
陛/null/114
狶/null/12
獘/null/8
偕/null/683
戈/null/3008
闺/null/337
陜/null/31
狷/null/752
獙/null/12
蒪/null/13
蔌/null/20
憧/null/1149
戉/null/12
闻/null/58075
狸/null/400
獚/null/7
偗/null/10
蒫/null/18
蔍/null/9
憨/null/670
戊/null/655
闼/null/76
雀/null/3727
獛/null/7
蒬/null/12
蔎/null/19
憩/null/585
戋/null/23
闽/null/3502
陟/null/28
狺/null/37
雁/null/2926
蔏/null/9
憪/null/17
戌/null/681
闾/null/187
狻/null/14
雂/null/13
獝/null/8
做/null/186770
蒮/null/9
戍/null/120
闿/null/40
陡/null/699
狼/null/15194
雃/null/58
獞/null/38
珀/null/379
偛/null/8
蒯/null/22
蔑/null/83
憬/null/1098
戎/null/268
院/null/66835
雄/null/68173
獟/null/14
蒰/null/6
蔒/null/12
憭/null/83
戏/null/39504
狾/null/13
雅/null/19823
獠/null/151
珂/null/135
停/null/52109
蒱/null/16
蔓/null/956
成/null/459481
除/null/78924
狿/null/11
集/null/58884
獡/null/7
珃/null/9
偝/null/11
蒲/null/665
憯/null/23
我/null/2584497
雇/null/449
獢/null/19
偞/null/21
蔕/null/5
憰/null/12
戒/null/7180
雈/null/8
珅/null/33
偟/null/6
僁/null/9
蒴/null/12
蔖/null/6
憱/null/6
陧/null/28
雉/null/250
珆/null/8
偠/null/13
獥/null/5
蔗/null/345
陨/null/381
雊/null/7
珇/null/12
偡/null/11
蒶/null/10
蔘/null/113
憳/null/12
戕/null/185
险/null/26216
偢/null/8
僄/null/6
蔙/null/10
憴/null/8
或/null/248845
陪/null/10822
雌/null/481
獦/null/17
珈/null/634
偣/null/8
蒸/null/2124
蔚/null/1459
憵/null/9
戗/null/11
陫/null/12
雍/null/466
獧/null/8
偤/null/11
僆/null/11
蒹/null/581
战/null/113772
陬/null/21
雎/null/128
珊/null/4095
健/null/18841
僇/null/8
蒺/null/23
蔜/null/11
戙/null/10
陭/null/17
雏/null/1237
獩/null/10
珋/null/8
僈/null/20
蒻/null/12
蔝/null/8
憸/null/47
戚/null/16
珌/null/14
薀/null/14
戛/null/40
陯/null/7
珍/null/15526
偨/null/10
僊/null/17
蔟/null/11
憺/null/19
薁/null/6
獬/null/18
偩/null/6
僋/null/10
蔠/null/10
薂/null/7
雒/null/18
獭/null/192
珏/null/26
偪/null/17
陱/null/5
蒿/null/63
蔡/null/20290
憼/null/7
薃/null/11
技/null/54857
雓/null/11
珐/null/37
偫/null/9
薄/null/6434
戟/null/165
抁/null/10
陲/null/215
雔/null/9
獯/null/8
珑/null/1106
偬/null/204
僎/null/24
憾/null/7396
薅/null/14
戠/null/13
雕/null/105
珒/null/27
偭/null/10
像/null/243002
薆/null/4
蔤/null/8
憿/null/14
戡/null/86
抃/null/9
陴/null/25
珓/null/14
偮/null/27
薇/null/2312
陵/null/5046
雗/null/9
珔/null/17
偯/null/17
獳/null/5
戢/null/50
抄/null/7036
陶/null/4648
雘/null/9
偰/null/19
蔧/null/19
薉/null/7
戣/null/6
陷/null/8555
珖/null/6
僓/null/15
蔨/null/12
戤/null/10
抆/null/12
雚/null/10
珗/null/78
偲/null/23
僔/null/11
蔩/null/6
薋/null/7
戥/null/14
抇/null/14
獶/null/12
珘/null/13
偳/null/9
蔪/null/7
抈/null/13
珙/null/11
僖/null/24
蔫/null/269
薍/null/9
抉/null/1423
雝/null/9
珚/null/10
僗/null/15
把/null/197579
陼/null/9
珛/null/8
偶/null/20103
蔬/null/541
薎/null/9
雟/null/10
珜/null/7
偷/null/19
薏/null/234
截/null/8368
抌/null/14
陾/null/6
雠/null/48
珝/null/6
僚/null/1776
蔮/null/7
薐/null/16
戫/null/8
雡/null/10
靃/null/11
珞/null/94
瑀/null/78
僛/null/10
蔯/null/16
戬/null/14
抎/null/19
獽/null/11
瑁/null/31
蔰/null/9
戭/null/61
抏/null/8
獾/null/16
珠/null/7587
偻/null/28
瑂/null/12
僝/null/10
蔱/null/12
戮/null/557
獿/null/8
兀/null/463
抑/null/4322
雥/null/7
靇/null/18
瑄/null/1183
允/null/5483
薕/null/11
抒/null/1861
珣/null/147
僠/null/5
薖/null/11
抓/null/37600
偾/null/23
瑆/null/8
元/null/100523
抔/null/19
雨/null/35918
珥/null/28
偿/null/3388
兄/null/89901
戳/null/1237
投/null/94384
雩/null/243
靋/null/22
充/null/29996
蔷/null/791
薙/null/42
戴/null/12139
抖/null/3140
雪/null/20246
珧/null/15
僣/null/9
兆/null/3268
薚/null/12
抗/null/20511
僤/null/7
蔹/null/18
薛/null/2218
折/null/682
珨/null/18
瑊/null/14
先/null/172122
蔺/null/433
薜/null/48
户/null/12704
珩/null/67
僦/null/25
光/null/145520
蔻/null/129
薝/null/9
抚/null/2602
珪/null/102
僧/null/3158
蔼/null/674
薞/null/8
抛/null/5467
雯/null/4996
珫/null/13
瑍/null/7
克/null/1618
蔽/null/1312
戺/null/10
蘁/null/19
雰/null/52
青/null/44152
瑎/null/15
僩/null/11
瑏/null/5
蔾/null/8
薠/null/8
雱/null/336
靓/null/386
班/null/74297
僪/null/8
免/null/48015
薡/null/10
挀/null/34
瑐/null/7
薢/null/9
戽/null/80
抟/null/58
持/null/95656
瑑/null/11
僬/null/11
薣/null/15
戾/null/318
蘅/null/26
抠/null/642
挂/null/1026
雳/null/6396
珰/null/33
僭/null/43
薤/null/9
房/null/30239
抡/null/85
挃/null/17
靖/null/5514
僮/null/165
兑/null/771
抢/null/9746
雵/null/15
珲/null/64
瑔/null/12
僯/null/36
零/null/15588
靘/null/20
瑕/null/1010
僰/null/10
薧/null/10
蘉/null/17
雷/null/24053
静/null/33948
珴/null/9
兔/null/6103
薨/null/50
护/null/38012
雸/null/7
珵/null/9
瑗/null/65
兕/null/13
报/null/125240
指/null/123022
雹/null/100
靛/null/104
珶/null/8
僳/null/12
兖/null/63
薪/null/7623
蘌/null/8
挈/null/43
雺/null/16
瑙/null/178
按/null/38098
珸/null/8
瑚/null/471
僵/null/1546
抨/null/639
非/null/128617
瑛/null/1462
僶/null/10
抩/null/7
挋/null/9
雽/null/19
珺/null/35
瑜/null/6320
僸/null/5
抪/null/16
挌/null/12
雾/null/6860
靠/null/28286
党/null/60
瓀/null/5
薮/null/130
披/null/5255
挍/null/11
雿/null/10
靡/null/779
珼/null/14
瑞/null/20193
薯/null/2027
蘑/null/73
抬/null/5618
挎/null/35
面/null/11155
珽/null/39
韄/null/8
瑟/null/2931
瓁/null/9
兜/null/1756
抭/null/29
挏/null/12
韅/null/15
僻/null/920
瓂/null/7
净/null/11522
薱/null/17
抮/null/11
挐/null/15
珿/null/8
瓃/null/63
抯/null/18
挑/null/18981
靥/null/621
韇/null/12
瑢/null/48
僽/null/13
兟/null/24
薳/null/10
抰/null/8
瓅/null/15
薴/null/30
抱/null/34049
挓/null/143
僾/null/7
挔/null/5
薵/null/17
蘗/null/17
僿/null/16
凄/null/60
薶/null/14
蘘/null/14
抳/null/8
挕/null/10
革/null/10254
兢/null/525
凅/null/9
薷/null/10
蘙/null/15
抴/null/484
挖/null/6500
靪/null/9
瑧/null/59
准/null/9958
薸/null/9
抵/null/19
薹/null/9
蘛/null/12
抶/null/7
靬/null/16
韎/null/9
瓋/null/15
入/null/167507
凈/null/77
蘜/null/18
韏/null/12
凉/null/8615
抸/null/11
挚/null/2147
靮/null/8
韐/null/13
凊/null/92
抹/null/8447
蚀/null/1263
挛/null/95
全/null/207034
凋/null/1495
薽/null/9
蘟/null/11
蚁/null/23
挜/null/11
靰/null/6
凌/null/118
薾/null/45
蘠/null/9
抻/null/23
蚂/null/3666
挝/null/17
瑭/null/23
蘡/null/5
薿/null/5
押/null/1668
挞/null/80
掀/null/1067
靲/null/10
韔/null/6
瑮/null/76
八/null/85474
凎/null/49
抽/null/17572
挟/null/760
掁/null/25
靳/null/114
韕/null/7
公/null/195727
减/null/18369
蘣/null/10
抾/null/29
蚅/null/7
挠/null/515
掂/null/63
瑰/null/7583
瓒/null/92
六/null/71823
凐/null/41
蘤/null/6
抿/null/45
蚆/null/16
挡/null/10
靴/null/386
韖/null/13
瑱/null/25
兮/null/18079
凑/null/3466
蘥/null/8
蚇/null/10
挢/null/28
韗/null/10
蘦/null/18
挣/null/2985
掅/null/47
靶/null/1174
韘/null/10
瑳/null/17
瓕/null/11
兰/null/32884
蘧/null/10
挤/null/6394
靷/null/10
瓖/null/19
共/null/89634
凔/null/12
蚊/null/3177
挥/null/20429
掇/null/62
靸/null/36
瑵/null/17
瓗/null/20
蘩/null/12
蚋/null/41
瑶/null/1155
瓘/null/11
关/null/222896
蘪/null/11
蚌/null/228
挦/null/6
授/null/30016
靺/null/11
瑷/null/49
瓙/null/12
兴/null/105059
凗/null/13
蚍/null/9
掉/null/75299
靻/null/11
兵/null/44572
蚎/null/5
凘/null/7
蘬/null/7
挨/null/2248
掊/null/10
靼/null/106
瑹/null/15
瓛/null/11
其/null/317897
顁/null/4
挩/null/16
靽/null/11
韟/null/21
瓜/null/11982
具/null/45052
瓝/null/5
蘮/null/19
蚐/null/13
挪/null/1796
掌/null/19080
靾/null/7
典/null/30356
畀/null/96
凛/null/602
蚑/null/9
挫/null/3156
掍/null/10
靿/null/11
韡/null/24
瑼/null/20
顃/null/7
瓞/null/19
兹/null/176
挬/null/12
掎/null/9
瑽/null/9
顄/null/10
瓟/null/15
顅/null/5
凝/null/5527
挭/null/14
掏/null/1682
韣/null/9
瑾/null/534
瓠/null/58
养/null/36306
凞/null/13
剀/null/30
蘱/null/8
蚓/null/366
掐/null/328
瑿/null/10
瓡/null/13
兼/null/9879
剁/null/187
蘲/null/12
蚔/null/8
振/null/15639
掑/null/16
韥/null/13
瓢/null/774
兽/null/8572
畅/null/4502
几/null/3882
剂/null/4489
蘳/null/13
蚕/null/9
排/null/61011
韦/null/2372
顈/null/10
瓣/null/806
凡/null/20171
剃/null/2307
蘴/null/31
蚖/null/24
韧/null/645
顉/null/13
瓤/null/15
韨/null/5
畇/null/14
蘵/null/11
蚗/null/9
挲/null/31
掔/null/97
顊/null/7
瓥/null/8
畈/null/18
蘶/null/39
蚘/null/10
挳/null/35
韩/null/7912
瓦/null/5660
蚙/null/6
挴/null/54
掖/null/56
韪/null/40
凤/null/218326
剆/null/7
蘸/null/41
蚚/null/15
韫/null/22
瓨/null/16
畋/null/20
蘹/null/9
挶/null/28
掘/null/1492
韬/null/721
界/null/78850
蚜/null/106
韭/null/144
蘻/null/6
剉/null/43
蚝/null/9
挸/null/7
顐/null/13
削/null/2273
蘼/null/17
蚞/null/12
挹/null/133
蜀/null/1132
顑/null/19
掜/null/5
畎/null/18
挺/null/5478
蜁/null/24
韰/null/7
瓬/null/9
畏/null/2427
剌/null/268
蘾/null/12
挻/null/33
蜂/null/5697
掝/null/8
韱/null/16
凫/null/27
前/null/339595
蚡/null/7
挼/null/9
蜃/null/235
掞/null/55
搀/null/103
瓮/null/11
剎/null/2698
蚢/null/18
挽/null/76
蜄/null/6
掟/null/10
搁/null/1172
音/null/170924
瓯/null/89
凭/null/10573
蚣/null/380
蜅/null/10
掠/null/1648
搂/null/727
剐/null/60
蚤/null/979
韵/null/6118
顗/null/41
畔/null/2389
凯/null/11739
剑/null/30674
蚥/null/12
蜇/null/80
探/null/14221
凰/null/211767
剒/null/9
蜈/null/364
掣/null/115
搅/null/1698
韶/null/608
蚧/null/10
蜉/null/86
掤/null/61
瓴/null/11
剔/null/486
蚨/null/10
蜊/null/14
接/null/137368
韸/null/10
瓵/null/23
凳/null/1473
剕/null/16
蚩/null/50
蜋/null/20
韹/null/10
瓶/null/15600
留/null/70864
剖/null/1418
蚪/null/196
蜌/null/11
控/null/32500
搉/null/19
韺/null/15
顜/null/9
瓷/null/760
畚/null/65
凵/null/9
蜍/null/360
顝/null/8
畛/null/18
凶/null/1803
蚬/null/28
蜎/null/16
推/null/64630
搊/null/17
飁/null/7
畜/null/1010
掩/null/4122
搋/null/8
韽/null/12
顟/null/16
飂/null/8
凸/null/1661
剚/null/11
措/null/5145
搌/null/27
韾/null/27
顠/null/13
瓻/null/11
凹/null/1195
痀/null/13
蚯/null/359
蜑/null/15
掫/null/12
畟/null/8
出/null/1557
痁/null/21
剜/null/40
蚰/null/17
蜒/null/157
掬/null/208
搎/null/10
瓽/null/14
击/null/51164
痂/null/55
蚱/null/678
蜓/null/514
掭/null/8
搏/null/1171
顣/null/7
瓾/null/14
剞/null/10
勀/null/10
掮/null/37
搐/null/44
顤/null/9
瓿/null/16
函/null/10317
痄/null/8
剟/null/7
掯/null/11
畣/null/10
病/null/38013
勂/null/10
蚳/null/19
蜕/null/614
掰/null/2800
搒/null/7
飉/null/21
畤/null/15
凿/null/459
剡/null/14
勃/null/3134
蚴/null/13
掱/null/25
搓/null/806
略/null/23410
症/null/448
剢/null/12
蚵/null/670
蜗/null/1411
搔/null/626
畦/null/123
痈/null/22
蚶/null/10
蜘/null/1355
掳/null/351
搕/null/34
顩/null/14
飋/null/9
飌/null/5
痉/null/113
蚷/null/13
蜙/null/9
掴/null/102
顪/null/9
痊/null/570
蚸/null/22
蜚/null/33
痋/null/14
剥/null/2546
勇/null/21693
蚹/null/15
蜛/null/10
搘/null/12
风/null/182757
番/null/9352
痌/null/20
蚺/null/18
蜜/null/8152
掷/null/1276
痍/null/84
剧/null/34177
勉/null/7079
蚻/null/22
掸/null/18
搚/null/14
飐/null/12
畬/null/75
痎/null/14
蚼/null/39
蜞/null/21
螀/null/19
搛/null/16
飑/null/10
痏/null/11
剩/null/100
勋/null/491
蚽/null/13
掺/null/312
螁/null/16
搜/null/1237
飒/null/188
剪/null/7487
蚾/null/9
蜠/null/7
螂/null/3200
飓/null/66
痐/null/36
剫/null/14
勍/null/13
蚿/null/10
蜡/null/18
掼/null/21
螃/null/1130
搞/null/30263
顲/null/7
飔/null/14
畯/null/41
痑/null/7
剬/null/12
蜢/null/746
掽/null/13
搟/null/11
飕/null/95
痒/null/51
剭/null/9
蜣/null/14
掾/null/9
螅/null/21
搠/null/18
撂/null/100
飖/null/18
蜤/null/15
搡/null/15
页/null/14018
飗/null/10
螇/null/5
畲/null/74
痔/null/409
副/null/14767
蜥/null/563
搢/null/31
撄/null/18
顶/null/18957
飘/null/11252
痕/null/5113
勒/null/10656
蜦/null/7
螈/null/51
搣/null/10
撅/null/32
顷/null/1803
飙/null/4474
畴/null/635
勓/null/6
蜧/null/11
螉/null/8
搤/null/18
痗/null/16
割/null/7806
蜨/null/11
搥/null/272
撇/null/2069
顸/null/108
痘/null/825
蜩/null/7
搦/null/14
项/null/39517
畷/null/17
勖/null/13
蜪/null/8
搧/null/370
撉/null/15
顺/null/44024
畸/null/662
痚/null/18
融/null/6562
搨/null/14
撊/null/7
须/null/565
畹/null/56
痛/null/38864
勘/null/933
蜬/null/7
撋/null/28
顼/null/15
飞/null/71452
蜭/null/9
螏/null/8
顽/null/5538
食/null/22222
痝/null/14
剸/null/11
勚/null/11
蜮/null/17
螐/null/6
搪/null/766
撌/null/6
顾/null/23773
痞/null/2959
螑/null/10
搫/null/11
顿/null/10055
畽/null/14
痟/null/40
剺/null/17
蜰/null/11
螒/null/7
搬/null/12118
畾/null/28
剻/null/11
蜱/null/18
螓/null/17
搭/null/13371
剼/null/5
畿/null/43
痡/null/11
癃/null/11
蜲/null/17
螔/null/14
搮/null/16
饇/null/8
痢/null/146
剽/null/249
募/null/2824
十/null/222525
蜳/null/7
搯/null/19
撑/null/6444
痣/null/256
搰/null/33
撒/null/4790
痤/null/21
剿/null/401
千/null/182
蜴/null/573
螖/null/12
飧/null/27
蜵/null/10
螗/null/13
飨/null/735
痦/null/9
癈/null/162
卅/null/1428
搳/null/27
撕/null/3658
痧/null/174
勤/null/7587
蜷/null/14
搴/null/21
撖/null/9
螚/null/5
痨/null/34
升/null/328
蜸/null/9
搵/null/87
撗/null/34
饎/null/10
螛/null/7
撘/null/54
痪/null/424
癌/null/2059
午/null/33188
蜺/null/10
螜/null/7
搷/null/24
撙/null/19
饐/null/14
痫/null/25
卉/null/421
蜻/null/535
螝/null/7
半/null/69801
蜼/null/11
搹/null/23
蠀/null/11
痭/null/17
螟/null/52
携/null/4474
蠁/null/8
撜/null/59
饓/null/8
癐/null/11
卌/null/59
蜾/null/12
蠂/null/24
撝/null/11
饔/null/13
痯/null/9
勫/null/6
卍/null/307
蜿/null/220
蠃/null/13
撞/null/11534
攀/null/1908
饕/null/329
华/null/260565
搽/null/29
攁/null/16
饖/null/14
痰/null/255
协/null/23872
螣/null/10
撠/null/10
痱/null/49
癓/null/6
螤/null/13
搿/null/11
攃/null/12
饘/null/6
痲/null/501
勯/null/7
卑/null/3487
撢/null/29
飶/null/13
饙/null/9
痳/null/35
勰/null/28
卒/null/5266
蠈/null/9
痴/null/7565
癖/null/446
卓/null/3719
蠉/null/8
撤/null/3569
饛/null/10
痵/null/9
癗/null/12
蠊/null/17
攇/null/9
飹/null/6
痶/null/5
单/null/116886
蠋/null/120
撦/null/8
痷/null/19
癙/null/15
勴/null/14
卖/null/65227
螪/null/11
蠌/null/10
攉/null/18
飺/null/11
痸/null/7
癚/null/7
南/null/77470
螫/null/244
痹/null/57
螬/null/14
撩/null/411
饟/null/12
癜/null/11
勷/null/14
螭/null/8
攌/null/13
攍/null/5
螮/null/5
痻/null/9
駂/null/16
博/null/39094
饡/null/8
痼/null/40
駃/null/13
癞/null/164
螯/null/63
痽/null/9
勺/null/145
卜/null/1371
螰/null/10
撬/null/115
攎/null/12
痾/null/72
癠/null/11
盂/null/52
蠓/null/40
播/null/26108
饤/null/7
痿/null/36
勼/null/16
卞/null/132
螲/null/12
撮/null/370
攐/null/11
饥/null/663
駇/null/7
盄/null/14
螳/null/340
蠕/null/121
饦/null/10
癣/null/88
勾/null/4383
盅/null/136
占/null/4124
参/null/6
螴/null/10
蠖/null/6
撰/null/2041
攒/null/9
蠗/null/5
螵/null/5
駉/null/5
饧/null/8
勿/null/9734
盆/null/2519
卡/null/90309
撱/null/9
攓/null/15
饨/null/111
卢/null/3680
饩/null/6
駋/null/12
盈/null/4818
卣/null/6
螶/null/10
攕/null/17
饪/null/446
駌/null/13
盉/null/12
卤/null/157
叆/null/32
螷/null/9
蠙/null/12
饫/null/26
駍/null/8
益/null/28706
叇/null/31
螸/null/15
撵/null/69
攗/null/10
饬/null/51
駎/null/12
卦/null/1663
又/null/249806
螹/null/12
蠛/null/8
攘/null/410
饭/null/19113
駏/null/12
癪/null/10
卧/null/10231
叉/null/4792
螺/null/2675
蠜/null/10
撷/null/644
饮/null/9855
癫/null/324
盍/null/53
蠝/null/9
撸/null/27
饯/null/232
盎/null/587
及/null/193509
螼/null/10
袀/null/7
饰/null/6526
盏/null/1887
友/null/214814
螽/null/26
撺/null/17
袁/null/3152
饱/null/6673
駓/null/7
盐/null/2415
双/null/57210
螾/null/7
蠠/null/10
袂/null/1546
饲/null/1829
癯/null/9
监/null/9152
卫/null/26635
反/null/114332
蠡/null/48
撼/null/1502
袃/null/17
斀/null/13
盒/null/4860
卬/null/91
蠢/null/4049
撽/null/70
袄/null/37
斁/null/14
攠/null/6
饴/null/145
駖/null/45
盓/null/15
袅/null/42
饵/null/953
駗/null/7
卮/null/19
蠤/null/10
袆/null/11
攡/null/10
蠥/null/5
饶/null/3025
盔/null/680
卯/null/883
发/null/13606
斄/null/6
饷/null/162
印/null/50702
蠦/null/20
袈/null/65
盖/null/20590
危/null/15900
袉/null/16
癵/null/15
盗/null/9387
卲/null/49
叔/null/5047
攥/null/43
文/null/651140
饺/null/1101
駜/null/7
盘/null/203
即/null/84346
蠩/null/8
袋/null/8689
攦/null/13
却/null/112237
取/null/119840
蠪/null/21
袌/null/13
癸/null/647
盚/null/14
卵/null/1907
受/null/116232
蠫/null/10
袍/null/3895
饼/null/5596
癹/null/13
盛/null/11909
变/null/122633
蠬/null/7
袎/null/6
斋/null/10140
饽/null/15
卷/null/6417
叙/null/4193
斌/null/3717
盝/null/5
饾/null/7
登/null/32345
卸/null/3897
蠮/null/9
攫/null/176
饿/null/3346
着/null/210770
叛/null/3913
蠯/null/15
袑/null/10
白/null/104398
盟/null/13792
卺/null/15
睁/null/2223
蠰/null/14
袒/null/580
攭/null/13
駣/null/6
百/null/64888
袓/null/148
駤/null/12
癿/null/14
驆/null/11
卼/null/14
呀/null/44977
蠲/null/20
攮/null/10
斐/null/1368
駥/null/12
睄/null/10
叟/null/183
呁/null/12
蠳/null/12
袕/null/9
支/null/92264
斑/null/2757
驈/null/8
睅/null/21
袖/null/3706
斒/null/10
駧/null/6
驉/null/17
卿/null/3658
睆/null/7
叡/null/4555
呃/null/1408
蠵/null/7
袗/null/12
斓/null/83
盥/null/278
睇/null/123
袘/null/7
攲/null/14
斔/null/9
駩/null/15
盦/null/55
口/null/88727
呅/null/35
蠷/null/11
袙/null/12
攳/null/14
駪/null/17
古/null/51625
呆/null/209
斖/null/8
睊/null/25
句/null/41088
呇/null/17
蠸/null/8
袚/null/8
斗/null/5641
駬/null/12
驎/null/25
盩/null/13
睋/null/10
另/null/83262
呈/null/4717
蠹/null/466
袛/null/20
收/null/71165
睌/null/23
袜/null/1401
料/null/84954
驐/null/8
睍/null/11
叨/null/340
告/null/153380
攸/null/769
盬/null/11
睎/null/12
叩/null/1059
蠼/null/18
改/null/128407
斛/null/79
驒/null/36
盭/null/19
蠽/null/10
袟/null/7
褁/null/7
斜/null/4875
驓/null/10
目/null/157966
睐/null/366
只/null/125
蠾/null/10
攻/null/33870
褂/null/47
斝/null/6
斞/null/5
昀/null/628
驔/null/10
盯/null/1210
睑/null/82
叫/null/100049
蠿/null/8
袡/null/11
盰/null/12
睒/null/42
召/null/7837
呎/null/739
袢/null/15
攽/null/9
斟/null/893
昂/null/3527
駴/null/11
驖/null/12
盱/null/17
叭/null/8189
呏/null/14
放/null/126684
褅/null/9
斠/null/9
昃/null/100
盲/null/3315
睔/null/10
叮/null/3687
袤/null/28
政/null/134882
褆/null/7
斡/null/94
昄/null/19
駶/null/11
盳/null/9
睕/null/33
可/null/992842
斢/null/12
昅/null/12
駷/null/8
驙/null/17
台/null/1040
呒/null/2085
昆/null/942
直/null/125478
睖/null/13
叱/null/282
呓/null/193
袧/null/16
褉/null/147
斤/null/3032
駹/null/7
盵/null/8
史/null/43277
呔/null/26
袨/null/21
褊/null/85
斥/null/4420
昈/null/9
駺/null/7
右/null/39017
呕/null/1313
褋/null/12
昉/null/67
駻/null/12
盷/null/34
睙/null/12
呖/null/17
袪/null/64
斧/null/1531
昊/null/262
駼/null/6
驞/null/11
相/null/224206
髀/null/16
睚/null/29
叵/null/54
呗/null/265
被/null/197413
斨/null/11
昋/null/10
駽/null/9
盹/null/91
髁/null/9
睛/null/10115
叶/null/26791
员/null/109155
袬/null/13
褎/null/13
斩/null/3220
昌/null/10225
盺/null/10
号/null/140616
呙/null/11
袭/null/4261
斪/null/8
昍/null/17
駾/null/17
驠/null/10
盻/null/66
髂/null/10
司/null/49008
褐/null/432
斫/null/42
明/null/234613
盼/null/7518
叹/null/1975
呛/null/526
袯/null/8
褑/null/10
昏/null/7761
睟/null/11
呜/null/42327
褒/null/482
断/null/50421
昐/null/29
盾/null/7771
髅/null/565
睠/null/14
叻/null/25
矂/null/16
袱/null/1270
褓/null/177
斮/null/10
昑/null/23
髆/null/13
睡/null/33220
叼/null/144
哀/null/13603
袲/null/7
褔/null/440
斯/null/54548
矄/null/5
髇/null/16
睢/null/52
叽/null/829
品/null/72832
褕/null/22
昒/null/20
督/null/23871
呠/null/14
哂/null/74
褖/null/11
新/null/334204
易/null/63406
驧/null/8
呡/null/12
哃/null/12
褗/null/7
昔/null/2715
驨/null/8
髊/null/12
睥/null/74
呢/null/217180
哄/null/284
袶/null/13
斲/null/56
哅/null/5
昕/null/403
驩/null/19
髋/null/33
睦/null/425
呣/null/124
袷/null/13
褙/null/16
斳/null/6
髌/null/11
睧/null/15
矉/null/14
呤/null/34
哆/null/127
袸/null/11
褚/null/597
髍/null/24
睨/null/172
矊/null/15
呥/null/8
哇/null/42443
袹/null/6
褛/null/103
马/null/88333
睩/null/15
呦/null/4870
哈/null/125750
斶/null/9
呧/null/5
昙/null/639
驭/null/264
睪/null/174
矌/null/32
哉/null/5742
袺/null/11
驮/null/164
髐/null/23
睫/null/246
矍/null/15
周/null/31546
斸/null/14
驯/null/925
髑/null/22
睬/null/649
矎/null/11
袼/null/11
褞/null/6
方/null/310681
要/null/1034142
昜/null/22
驰/null/3248
睭/null/323
矏/null/14
袽/null/18
褟/null/105
覂/null/13
昝/null/108
驱/null/12
髓/null/1963
睮/null/7
矐/null/13
呫/null/10
响/null/49816
袾/null/13
斻/null/11
覃/null/74
暀/null/12
驲/null/15
睯/null/8
褡/null/57
星/null/128833
驳/null/11
呬/null/13
哎/null/5596
褢/null/12
施/null/26632
哏/null/5
覅/null/8
映/null/13347
暂/null/14391
驴/null/2440
褣/null/7
覆/null/13711
昡/null/10
驵/null/8
矔/null/10
斿/null/15
昢/null/6
暄/null/175
驶/null/5987
高/null/251576
矕/null/115
呯/null/12
哑/null/1575
褥/null/82
驷/null/168
呰/null/16
哒/null/239
褦/null/14
暆/null/5
昤/null/12
驸/null/19
矗/null/387
呱/null/1165
哓/null/22
褧/null/14
春/null/40107
暇/null/1397
驹/null/637
呲/null/40
哔/null/1337
昦/null/9
驺/null/14
髜/null/13
矘/null/49
味/null/42200
哕/null/9
褩/null/8
昧/null/3204
驻/null/5707
矙/null/17
呴/null/32
哖/null/53
褪/null/629
昨/null/27059
暊/null/12
驼/null/2716
呵/null/99062
哗/null/225
褫/null/55
褬/null/5
暋/null/45
驽/null/174
髟/null/8
睹/null/3740
魁/null/2648
矛/null/6355
呶/null/30
暌/null/30
驾/null/7898
魂/null/9961
矜/null/588
呷/null/241
哙/null/31
褭/null/22
昫/null/19
暍/null/35
驿/null/527
髡/null/23
魃/null/23
呸/null/750
褮/null/11
睼/null/11
矞/null/15
础/null/6876
褯/null/12
昭/null/13816
睽/null/334
魄/null/2040
呺/null/25
硁/null/13
哜/null/15
褰/null/18
昮/null/8
暐/null/376
髣/null/16
睾/null/16
魅/null/5188
矠/null/6
呻/null/2076
哝/null/64
褱/null/17
是/null/3200626
暑/null/15910
睿/null/868
魆/null/9
呼/null/24343
哞/null/297
啀/null/18
覕/null/8
魇/null/221
矢/null/2250
命/null/87293
哟/null/4049
啁/null/61
昱/null/3081
髦/null/295
魈/null/35
矣/null/5225
呾/null/9
硅/null/28
哠/null/29
褴/null/77
覗/null/10
髧/null/11
魉/null/969
呿/null/9
啃/null/807
褵/null/17
昲/null/11
暔/null/15
魊/null/12
知/null/434311
啄/null/1030
褶/null/61
昳/null/14
暕/null/9
魋/null/16
硈/null/14
啅/null/7
褷/null/16
昴/null/176
暖/null/59
魌/null/10
矧/null/16
硉/null/15
哤/null/6
商/null/59657
矨/null/5
覛/null/7
昵/null/29
暗/null/24382
髫/null/12
魍/null/50
硊/null/10
哥/null/60956
昶/null/706
髬/null/9
矩/null/3275
哦/null/25127
啈/null/12
覝/null/15
暙/null/12
髭/null/18
魏/null/3872
硌/null/15
哧/null/77
矫/null/1042
硍/null/9
哨/null/1492
啊/null/164734
覞/null/20
昹/null/10
言/null/136534
髯/null/75
魑/null/60
矬/null/130
硎/null/9
哩/null/15463
啋/null/19
褼/null/15
覟/null/9
昺/null/20
魒/null/14
短/null/23341
哪/null/93877
褽/null/24
暝/null/184
髱/null/11
矮/null/3071
硐/null/110
哫/null/12
啍/null/33
褾/null/7
昼/null/874
最/null/335527
髲/null/21
魔/null/42586
啎/null/27
覢/null/5
昽/null/9
訄/null/45
暟/null/21
朁/null/20
髳/null/12
魕/null/12
矰/null/8
硒/null/16
哭/null/16491
覣/null/11
显/null/46026
暠/null/14
魖/null/15
矱/null/11
覤/null/8
暡/null/12
矲/null/13
哮/null/244
啐/null/216
訇/null/29
朄/null/11
髶/null/10
石/null/37521
硕/null/20230
啑/null/14
朅/null/24
髷/null/15
魙/null/34
硖/null/17
啒/null/12
硗/null/8
哱/null/7
髹/null/21
矶/null/667
哲/null/15596
月/null/177519
髺/null/13
矷/null/11
硙/null/9
哳/null/10
啕/null/83
暧/null/917
有/null/2289333
髻/null/95
啖/null/25
暨/null/2209
朊/null/31
髼/null/6
矸/null/33
硚/null/20
暩/null/6
朋/null/85775
髽/null/9
魟/null/19
矹/null/17
暪/null/39
髾/null/9
魠/null/38
矺/null/9
哷/null/11
覭/null/12
服/null/71299
魡/null/9
矻/null/27
鯃/null/15
硝/null/601
哸/null/7
覮/null/9
鯄/null/5
訑/null/7
矼/null/11
硞/null/39
朏/null/5
哺/null/618
磁/null/25440
啜/null/255
暮/null/4284
朐/null/8
矾/null/29
硠/null/17
哻/null/8
嗀/null/5
暯/null/7
魤/null/11
矿/null/1939
鯆/null/10
哼/null/2911
磃/null/6
磄/null/5
暰/null/11
朒/null/9
硢/null/11
哽/null/226
朓/null/19
魦/null/9
鯈/null/15
磅/null/958
嗂/null/9
暲/null/9
朔/null/823
魧/null/17
哿/null/20
啡/null/6641
嗃/null/9
朕/null/479
硥/null/10
嗄/null/111
覶/null/7
磈/null/8
嗅/null/362
暴/null/29856
磉/null/10
啤/null/1619
暵/null/15
朗/null/5388
磊/null/1692
啥/null/34124
覹/null/13
朘/null/18
魬/null/12
硩/null/11
磋/null/983
啦/null/177091
嗈/null/489
暷/null/13
硪/null/9
磌/null/14
啧/null/489
嗉/null/27
訞/null/10
暸/null/772
硫/null/797
磍/null/14
暹/null/71
誁/null/6
望/null/155460
硬/null/54667
磎/null/6
嗋/null/7
暺/null/10
魰/null/12
硭/null/20
磏/null/9
啪/null/9800
嗌/null/13
暻/null/10
誂/null/10
朝/null/23108
魱/null/21
鯓/null/16
确/null/10
嗍/null/12
覾/null/7
誃/null/15
啬/null/202
暽/null/10
期/null/168934
极/null/20
硰/null/14
啭/null/46
嗏/null/15
暾/null/150
朠/null/8
硱/null/6
啮/null/26
嗐/null/65
朡/null/12
枃/null/11
魵/null/9
磔/null/12
嗑/null/90
朢/null/15
构/null/10
魶/null/11
磕/null/384
朣/null/11
枅/null/8
鯙/null/20
啰/null/25473
嗒/null/62
枆/null/5
訧/null/35
誉/null/6039
鯚/null/7
嗓/null/684
誊/null/83
枇/null/57
嗔/null/367
鯜/null/5
誋/null/10
朦/null/1589
嗕/null/8
枉/null/3660
魻/null/14
啴/null/9
嗖/null/254
鯞/null/5
木/null/39692
魼/null/11
硹/null/13
鱀/null/11
磛/null/12
啵/null/153
訬/null/7
枋/null/271
魽/null/47
鱁/null/16
啶/null/14
誏/null/95
未/null/97286
枌/null/11
魾/null/12
鯠/null/9
啷/null/120
嗙/null/229
末/null/20573
枍/null/15
硻/null/8
磝/null/9
啸/null/1806
本/null/353034
枎/null/7
硼/null/66
鱄/null/22
磞/null/24
祀/null/215
嗛/null/8
訰/null/8
札/null/15
磟/null/8
祁/null/588
嗜/null/1520
磠/null/5
誓/null/6960
朮/null/1062
析/null/16630
硾/null/9
鱆/null/34
啻/null/189
祂/null/4637
嗝/null/192
鯥/null/5
枑/null/5
术/null/65266
硿/null/16
磡/null/12
啼/null/1092
噀/null/18
枒/null/24
磢/null/9
啽/null/18
祄/null/9
嗟/null/200
誖/null/8
朱/null/67
枓/null/37
鯦/null/9
啾/null/675
祅/null/16
噂/null/18
枔/null/5
啿/null/13
祆/null/35
嗡/null/876
朳/null/11
枕/null/2303
鱊/null/14
磥/null/10
祇/null/1847
嗢/null/9
誙/null/9
朴/null/370
鱋/null/11
祈/null/3076
嗣/null/274
朵/null/8005
林/null/116983
鱌/null/22
祉/null/763
嗤/null/690
噆/null/22
訹/null/11
鱍/null/7
磨/null/7481
祊/null/11
嗥/null/29
枘/null/14
鯬/null/8
鱎/null/10
磩/null/8
祋/null/9
嗦/null/300
噈/null/6
枙/null/8
磪/null/20
祌/null/20
噉/null/66
噊/null/5
朸/null/20
枚/null/1993
鱐/null/7
嗨/null/6622
朹/null/5
磬/null/48
祎/null/25
訾/null/29
机/null/470
果/null/324143
磭/null/9
祏/null/10
噌/null/50
訿/null/5
朻/null/17
枝/null/5783
嗫/null/85
朼/null/13
枞/null/19
栀/null/44
祑/null/13
噎/null/927
朽/null/1019
枟/null/10
鱕/null/7
祒/null/10
朾/null/11
祓/null/10
朿/null/22
謆/null/11
磲/null/38
祔/null/17
嗯/null/50941
謇/null/18
枢/null/17300
磳/null/25
謈/null/15
枣/null/303
栅/null/1733
鱙/null/9
磴/null/64
祖/null/14208
誧/null/22
鯸/null/10
祗/null/86
枥/null/51
标/null/92618
嗲/null/94
謋/null/19
栈/null/558
磷/null/48
嗳/null/408
栉/null/49
祚/null/103
誫/null/10
謍/null/25
枨/null/16
栊/null/21
鱞/null/9
磹/null/12
鳀/null/12
祛/null/32
噗/null/504
栋/null/4583
磺/null/214
祜/null/40
噘/null/46
謏/null/16
枪/null/10111
栌/null/6
磻/null/8
祝/null/21276
嗷/null/158
噙/null/30
枫/null/6279
鳃/null/72
噚/null/7
謑/null/10
栎/null/24
鱢/null/11
磼/null/9
鳄/null/535
神/null/119932
嗹/null/8
秀/null/20948
謒/null/12
枭/null/510
栏/null/9651
鳅/null/200
祟/null/785
嗺/null/13
私/null/21082
噜/null/1299
謓/null/5
枮/null/16
磾/null/16
鳆/null/9
祠/null/573
鳇/null/5
磿/null/5
枯/null/2803
树/null/27496
祡/null/9
嗼/null/8
秃/null/2552
噞/null/9
鱦/null/5
謕/null/8
枰/null/141
栒/null/8
祢/null/35
嗽/null/534
栓/null/216
祣/null/7
嗾/null/27
秅/null/30
囃/null/8
枲/null/7
栔/null/19
祤/null/42
嗿/null/13
秆/null/37
謘/null/11
枳/null/37
祥/null/9403
噢/null/1559
栖/null/23
噣/null/10
囆/null/6
誸/null/29
枵/null/42
栗/null/430
鳌/null/58
祧/null/13
秉/null/2094
噤/null/136
架/null/24796
栘/null/58
鳍/null/224
票/null/67677
誺/null/5
謜/null/11
枷/null/608
鳎/null/8
祩/null/11
秋/null/199
誻/null/11
鳏/null/61
祪/null/8
囊/null/2318
謞/null/17
枸/null/58
栚/null/7
鱮/null/8
鳐/null/9
祫/null/13
种/null/76
器/null/77660
囋/null/20
誽/null/7
枹/null/9
秎/null/7
噩/null/527
誾/null/21
枺/null/21
讂/null/11
栜/null/9
鳒/null/11
祭/null/3897
秏/null/37
噪/null/114
囍/null/99
枻/null/14
栝/null/20
鱱/null/7
鳓/null/16
噫/null/587
謢/null/112
讄/null/9
梀/null/11
鳔/null/25
祯/null/1499
科/null/311419
噬/null/429
祰/null/5
謣/null/17
栟/null/25
梁/null/3531
鱳/null/20
鳕/null/279
秒/null/8827
噭/null/21
栠/null/12
梂/null/19
鱴/null/10
鳖/null/1556
噮/null/9
謤/null/15
讆/null/10
校/null/192451
梃/null/18
鱵/null/10
鳗/null/354
祲/null/9
謥/null/7
祳/null/11
秕/null/19
噰/null/13
囓/null/81
謦/null/11
讈/null/11
梅/null/25172
祴/null/13
秖/null/11
噱/null/800
謧/null/5
囔/null/60
梆/null/180
栥/null/13
梇/null/17
鱹/null/10
鳛/null/10
秘/null/5020
噳/null/7
栦/null/9
鳜/null/26
祷/null/2658
謪/null/11
梉/null/11
鳝/null/85
祸/null/6519
梊/null/5
囗/null/34
栨/null/21
鱼/null/49608
鳞/null/827
祹/null/14
鵀/null/16
梋/null/5
栩/null/249
鱽/null/19
鳟/null/54
祺/null/1745
鵁/null/8
秜/null/9
噶/null/487
株/null/1864
梌/null/15
秝/null/79
噷/null/15
囚/null/1091
謮/null/48
栫/null/12
鱿/null/271
祼/null/52
秞/null/14
四/null/165306
謯/null/9
鳢/null/73
祽/null/14
租/null/15048
謰/null/12
栭/null/19
梏/null/89
鳣/null/13
鵅/null/11
謱/null/5
囝/null/450
栮/null/9
梐/null/9
秠/null/12
回/null/11557
址/null/65
讔/null/7
栯/null/16
梑/null/11
穄/null/11
囟/null/13
坁/null/8
梒/null/14
鳦/null/12
因/null/326759
栱/null/171
梓/null/828
秣/null/25
噾/null/8
謵/null/5
穆/null/1169
囡/null/1183
栲/null/90
鵊/null/8
秤/null/5135
噿/null/8
穇/null/7
团/null/209
謶/null/12
讘/null/9
栳/null/28
鵋/null/10
穈/null/17
坅/null/13
謷/null/11
讙/null/26
栴/null/41
梖/null/311
秦/null/5328
囤/null/181
栵/null/11
梗/null/272
鳪/null/15
鵌/null/10
秧/null/167
穊/null/9
囥/null/88
均/null/24957
穋/null/6
謺/null/9
样/null/301165
秩/null/4115
囧/null/15
坉/null/11
謻/null/6
核/null/19
鳭/null/9
鵏/null/13
秪/null/11
秫/null/5
坊/null/2511
謼/null/10
根/null/59387
谀/null/132
梛/null/16
坋/null/11
謽/null/11
讟/null/7
谁/null/132063
秬/null/12
坌/null/17
栺/null/17
谂/null/34
梜/null/6
秭/null/10
囫/null/45
坍/null/240
计/null/137149
栻/null/9
调/null/61916
鳱/null/9
秮/null/10
穑/null/17
坎/null/2649
订/null/17148
格/null/85698
谄/null/475
鵔/null/17
积/null/20369
园/null/58048
坏/null/68
讣/null/16
栽/null/1837
谅/null/10963
椁/null/23
称/null/58681
囮/null/11
坐/null/32688
认/null/153895
栾/null/500
谆/null/290
梠/null/26
鵖/null/14
鵗/null/5
穔/null/17
坑/null/11
讥/null/841
谇/null/23
梡/null/10
鳵/null/12
困/null/738
坒/null/9
梢/null/524
椄/null/44
鵘/null/10
穖/null/23
囱/null/117
讦/null/506
谈/null/65267
梣/null/9
椅/null/5289
鳷/null/11
鵙/null/8
穗/null/2922
讧/null/42
梤/null/14
椆/null/101
鵚/null/10
穘/null/5
讨/null/108614
谊/null/16173
椇/null/31
鳹/null/9
鵛/null/9
秶/null/9
围/null/21140
让/null/166049
谋/null/6845
梦/null/71231
椈/null/11
鳺/null/11
秷/null/15
穚/null/30
囵/null/42
块/null/26543
讪/null/614
谌/null/65
梧/null/477
鳻/null/8
秸/null/9
穛/null/8
讫/null/107
谍/null/1307
梨/null/1940
椊/null/9
鳼/null/9
穜/null/20
谎/null/3890
梩/null/13
椋/null/18
鳽/null/19
鵟/null/53
秺/null/10
囷/null/11
训/null/24678
谏/null/225
梪/null/7
椌/null/10
移/null/20647
竀/null/8
坚/null/16523
议/null/103289
谐/null/2988
梫/null/12
植/null/7582
鳿/null/8
鷃/null/8
穟/null/9
囹/null/44
竁/null/11
坛/null/156
讯/null/448759
谑/null/236
梬/null/10
椎/null/819
秽/null/927
固/null/13557
坜/null/6599
记/null/141428
谒/null/126
梭/null/3453
秾/null/49
鷅/null/13
坝/null/637
讱/null/10
谓/null/35793
梮/null/17
椐/null/14
坞/null/498
讲/null/77918
谔/null/37
梯/null/6264
椑/null/26
鷇/null/8
国/null/430450
坟/null/1629
埁/null/13
讳/null/704
谕/null/470
械/null/15832
椒/null/979
鷈/null/36
鵧/null/4
图/null/74216
坠/null/2681
埂/null/106
讴/null/126
谖/null/105
椓/null/7
囿/null/99
坡/null/7863
埃/null/3662
讵/null/41
谗/null/93
梲/null/13
椔/null/16
鵨/null/10
鵩/null/5
坢/null/13
讶/null/3138
谘/null/2024
梳/null/868
椕/null/16
鷋/null/18
讷/null/387
谙/null/341
梴/null/8
鷌/null/16
鷍/null/4
穧/null/19
坤/null/5638
埆/null/15
许/null/145559
谚/null/420
梵/null/1390
椗/null/18
鵫/null/6
埇/null/26
讹/null/453
谛/null/1350
立/null/158292
坦/null/8188
论/null/193909
谜/null/4124
鷎/null/9
谝/null/15
鷏/null/10
坨/null/55
讼/null/456
谞/null/7
貀/null/11
鷐/null/11
穬/null/10
坩/null/27
埋/null/4540
讽/null/2997
谟/null/218
貁/null/7
鷑/null/8
坪/null/7643
埌/null/12
设/null/125381
谠/null/20
貂/null/1076
鵰/null/1808
鷒/null/13
穮/null/22
坫/null/24
访/null/9912
谡/null/39
鵱/null/7
竑/null/368
城/null/257697
谢/null/274523
梼/null/16
貄/null/8
穰/null/10
坭/null/11
埏/null/19
谣/null/5014
貅/null/16
椟/null/37
鵳/null/8
鷕/null/9
穱/null/5
埐/null/10
谤/null/1093
梾/null/10
貆/null/7
椠/null/7
概/null/59558
鵴/null/14
坯/null/41
谥/null/17
榃/null/9
鵵/null/7
鷘/null/5
埒/null/10
谦/null/3729
榄/null/807
穴/null/3218
竖/null/1778
坱/null/14
谧/null/214
貉/null/84
穵/null/15
坲/null/7
埔/null/3889
椤/null/11
榆/null/285
鵸/null/11
鷛/null/5
究/null/99256
竘/null/10
坳/null/109
埕/null/185
谨/null/4213
貊/null/17
椥/null/12
榇/null/58
鵹/null/7
穷/null/8093
站/null/446241
坴/null/9
谩/null/350
榈/null/58
鷜/null/9
穸/null/11
坵/null/131
谪/null/163
貌/null/6659
榉/null/52
鵻/null/15
鷝/null/13
穹/null/9675
坶/null/12
埘/null/9
谫/null/7
鷞/null/11
空/null/113648
鹁/null/13
坷/null/335
埙/null/26
谬/null/3290
鵽/null/13
鷟/null/15
穻/null/18
鹂/null/375
谭/null/1504
貏/null/11
椪/null/20
鹃/null/706
竞/null/11550
筀/null/10
埚/null/29
谮/null/9
貐/null/6
榍/null/14
鵿/null/7
鷡/null/8
貑/null/5
鹄/null/132
竟/null/58426
谯/null/309
榎/null/9
鷢/null/8
鷣/null/5
穾/null/7
鹅/null/5069
章/null/391052
埜/null/15
谰/null/11
貒/null/16
椭/null/291
穿/null/24088
鹆/null/74
坻/null/150
谱/null/12240
榐/null/11
鷤/null/11
鹇/null/11
坼/null/21
筄/null/9
谲/null/410
貔/null/8
椯/null/11
榑/null/25
鹈/null/24
竣/null/416
坽/null/8
筅/null/11
域/null/12877
谳/null/16
貕/null/8
椰/null/15110
鹉/null/584
埠/null/799
谴/null/1931
榓/null/7
鹊/null/386
竤/null/54
谵/null/24
貗/null/17
椲/null/25
榔/null/1407
鷨/null/16
童/null/17987
筇/null/7
埢/null/18
谶/null/79
貘/null/56
椳/null/36
榕/null/1136
鷩/null/8
鹌/null/19
竦/null/23
筈/null/10
埣/null/9
谷/null/410
貙/null/9
椴/null/11
榖/null/58
鹍/null/7
等/null/177504
埤/null/194
貚/null/9
椵/null/6
榗/null/11
鹎/null/22
筊/null/102
埥/null/48
谹/null/17
鷬/null/10
鹏/null/2272
筋/null/6550
塈/null/12
貜/null/21
椷/null/26
榙/null/6
鷭/null/9
筌/null/103
埧/null/8
塉/null/15
谻/null/9
椸/null/7
榚/null/74
鷮/null/5
竫/null/58
谼/null/7
椹/null/13
贀/null/112
榛/null/137
鹑/null/30
筎/null/6
埩/null/19
谽/null/15
榜/null/11119
鹒/null/7
竭/null/1694
筏/null/248
塌/null/977
谾/null/8
椻/null/8
贂/null/8
鹓/null/11
竮/null/18
筐/null/260
塍/null/10
椼/null/7
榞/null/17
樀/null/8
鹔/null/11
端/null/12
筑/null/585
埬/null/9
塎/null/10
椽/null/27
鹕/null/14
筒/null/3614
埭/null/9
貣/null/7
貤/null/5
鹖/null/42
埮/null/22
贆/null/22
榠/null/16
鹗/null/45
答/null/68517
埯/null/8
塑/null/4635
貥/null/8
椿/null/159
榡/null/13
鷵/null/9
鹘/null/49
樄/null/21
鷶/null/19
鷷/null/5
鹙/null/41
策/null/25152
埱/null/6
塓/null/6
贉/null/10
榣/null/20
鹚/null/13
埲/null/11
塔/null/10107
榤/null/10
樆/null/6
筘/null/11
埳/null/6
塕/null/6
榥/null/23
樇/null/11
鹜/null/96
竷/null/12
埴/null/14
樈/null/7
鷻/null/6
鹝/null/14
筚/null/46
埵/null/212
榧/null/10
樉/null/12
鹞/null/41
竹/null/96078
黀/null/15
筛/null/603
埶/null/12
塘/null/778
榨/null/99
樊/null/345
鹟/null/16
竺/null/502
筜/null/11
塙/null/12
榩/null/8
鷽/null/19
鹠/null/32
竻/null/6
黂/null/9
筝/null/2700
埸/null/496
鷾/null/11
鹡/null/29
培/null/8712
塛/null/8
榫/null/50
樍/null/13
鷿/null/36
鹢/null/17
竽/null/317
黄/null/88187
篁/null/54
榬/null/7
鹣/null/38
筠/null/1451
基/null/81818
榭/null/110
樏/null/7
鹤/null/4863
竿/null/2741
筡/null/9
埻/null/14
塝/null/9
鹥/null/7
埼/null/89
塞/null/12591
榯/null/9
鹦/null/593
黈/null/9
筣/null/14
埽/null/11
壁/null/7434
贕/null/11
榰/null/10
鹧/null/104
黉/null/225
筤/null/14
篆/null/181
壂/null/24
榱/null/9
鹨/null/17
筥/null/15
篇/null/49397
貵/null/8
樔/null/15
鹩/null/11
榳/null/7
樕/null/180
筦/null/5
塣/null/5
鹪/null/34
壅/null/126
贙/null/15
榴/null/568
樖/null/21
鹫/null/178
黍/null/63
壆/null/63
榵/null/14
樗/null/10
鹬/null/195
黎/null/6431
篊/null/13
塥/null/7
貹/null/8
榶/null/8
樘/null/11
鹭/null/784
黏/null/2958
筩/null/9
壈/null/12
榷/null/377
黐/null/9
篌/null/26
壉/null/11
贝/null/15970
鹯/null/14
黑/null/64983
塨/null/8
贞/null/5040
榹/null/10
趀/null/8
樛/null/8
篎/null/11
负/null/43549
趁/null/4733
鹰/null/22697
筭/null/17
貾/null/9
榻/null/309
樝/null/17
黓/null/11
筮/null/23
填/null/10810
贡/null/6620
榼/null/7
檀/null/356
榽/null/5
鹲/null/14
黔/null/115
篑/null/373
财/null/17159
趄/null/17
樟/null/555
鹳/null/25
黕/null/14
筰/null/12
塭/null/31
壏/null/12
责/null/44701
榾/null/6
超/null/73305
樠/null/10
黖/null/17
筱/null/1008
篓/null/99
贤/null/17005
模/null/560
檃/null/8
篔/null/5
筲/null/23
塯/null/10
壑/null/126
败/null/40871
壒/null/5
默/null/17823
筳/null/13
篕/null/13
账/null/346
檄/null/24
塱/null/5
筴/null/21
货/null/19754
趉/null/7
檅/null/12
黚/null/10
筵/null/98
壔/null/14
质/null/53139
越/null/32466
黛/null/1352
筶/null/10
篘/null/13
壕/null/94
贩/null/4357
趋/null/5244
樥/null/10
檇/null/12
黜/null/34
筷/null/776
篙/null/39
塴/null/13
壖/null/6
贪/null/7044
趌/null/13
樦/null/6
黝/null/268
筸/null/6
篚/null/11
贫/null/3291
趍/null/9
樧/null/7
筹/null/9137
齀/null/34
塶/null/11
樨/null/57
篜/null/5
黟/null/13
齁/null/239
贬/null/1595
趎/null/8
鹾/null/14
黠/null/85
齂/null/10
篝/null/27
购/null/22348
趏/null/6
横/null/12569
檌/null/7
鹿/null/5200
黡/null/10
齃/null/13
篞/null/11
籀/null/18
壛/null/8
贮/null/268
趐/null/107
檍/null/10
齄/null/10
篟/null/20
塺/null/12
籁/null/269
贯/null/5585
趑/null/10
檎/null/9
签/null/4102
塻/null/15
壝/null/20
贰/null/2075
趒/null/33
黤/null/19
齆/null/7
篡/null/270
贱/null/5106
趓/null/10
檐/null/63
黥/null/18
篢/null/13
奀/null/15
贲/null/101
趔/null/17
樯/null/19
檑/null/8
黦/null/10
齈/null/9
篣/null/11
塽/null/39
籅/null/22
奁/null/12
贳/null/10
檒/null/7
黧/null/82
齉/null/18
塾/null/507
奂/null/81
贴/null/24507
趖/null/31
樱/null/4749
檓/null/7
篥/null/10
塿/null/14
籇/null/31
贵/null/43668
樲/null/8
檔/null/107742
黩/null/38
篦/null/13
籈/null/9
奄/null/565
贶/null/9
檕/null/14
奅/null/5
黪/null/21
齌/null/16
篧/null/9
籉/null/24
壣/null/6
贷/null/1563
樴/null/9
檖/null/6
黫/null/8
齍/null/17
壤/null/972
贸/null/3881
樵/null/1155
檗/null/31
篨/null/12
籊/null/14
奇/null/73699
费/null/73882
趛/null/7
黭/null/17
奈/null/12708
贺/null/12551
趜/null/14
檚/null/5
黮/null/9
齐/null/12418
篪/null/16
壧/null/14
奉/null/6590
贻/null/289
黯/null/1830
齑/null/10
篫/null/37
籍/null/16527
壨/null/23
奊/null/14
贼/null/4188
踀/null/11
檛/null/12
黰/null/9
奋/null/9519
贽/null/7
趟/null/2521
贾/null/1935
趠/null/11
樻/null/12
踂/null/14
欀/null/13
篮/null/20137
士/null/113982
贿/null/3044
趡/null/7
樼/null/16
踃/null/7
檞/null/14
壬/null/288
奎/null/961
樽/null/932
踄/null/9
欂/null/10
黳/null/8
篰/null/11
奏/null/27644
趣/null/49894
樾/null/6
踅/null/454
檠/null/14
欃/null/13
齖/null/8
篱/null/15
籓/null/20
壮/null/8274
樿/null/10
踆/null/9
檡/null/13
黵/null/11
篲/null/10
籔/null/7
契/null/5735
趥/null/7
踇/null/11
齘/null/8
声/null/110548
篴/null/8
奓/null/17
趧/null/11
踉/null/78
籗/null/9
奔/null/7254
踊/null/48
檤/null/12
黹/null/31
齛/null/13
壳/null/5885
奕/null/1404
檥/null/19
欈/null/6
黺/null/16
篷/null/324
壴/null/7
奖/null/23436
趪/null/9
踌/null/514
檦/null/9
欉/null/104
黻/null/23
齝/null/8
篸/null/31
籚/null/11
套/null/31711
趫/null/10
踍/null/12
黼/null/10
齞/null/8
篹/null/12
籛/null/10
壶/null/2933
奘/null/65
趬/null/11
檨/null/16
欋/null/6
趭/null/6
踏/null/10740
檩/null/11
黾/null/76
篻/null/14
壸/null/107
奚/null/335
壹/null/3679
趮/null/11
篽/null/13
糁/null/12
奜/null/23
趯/null/8
踑/null/16
檬/null/1524
篾/null/88
踒/null/11
檭/null/10
欐/null/16
齤/null/10
篿/null/12
姀/null/13
趱/null/7
踓/null/14
踔/null/5
齥/null/9
姁/null/9
籣/null/30
糅/null/10
足/null/47014
踕/null/7
欓/null/12
壾/null/9
奠/null/526
趴/null/1077
踖/null/14
姃/null/5
壿/null/9
糇/null/11
奡/null/16
趵/null/8
踗/null/15
籦/null/12
糈/null/6
奢/null/1210
趶/null/10
踘/null/8
趷/null/5
籧/null/11
姅/null/10
踙/null/9
檴/null/12
欗/null/18
齫/null/7
糊/null/10050
姆/null/7459
趸/null/12
踚/null/11
欘/null/8
糋/null/6
奥/null/10147
姇/null/11
趹/null/15
踛/null/7
檶/null/11
欙/null/11
姈/null/12
趺/null/112
踜/null/18
檷/null/9
欚/null/13
齮/null/13
糌/null/12
踝/null/284
籫/null/5
齯/null/11
姊/null/10618
趼/null/11
踞/null/211
檹/null/7
齰/null/89
始/null/72626
踟/null/48
檺/null/16
躁/null/913
齱/null/13
姌/null/7
趾/null/628
踠/null/7
殀/null/7
糐/null/10
奫/null/7
趿/null/14
殁/null/119
籯/null/11
糑/null/9
姎/null/8
踢/null/7037
檽/null/6
躄/null/237
欠/null/4705
殂/null/60
糒/null/6
奭/null/42
姏/null/7
踣/null/9
躅/null/169
次/null/236297
殃/null/809
齴/null/9
姐/null/28608
踤/null/17
躆/null/9
欢/null/16
殄/null/46
齵/null/14
糔/null/16
姑/null/8945
踥/null/7
躇/null/525
欣/null/462
米/null/18398
糕/null/5894
奰/null/10
姒/null/162
踦/null/16
躈/null/10
踧/null/4
欤/null/50
殆/null/476
籴/null/9
糖/null/4381
奱/null/24
姓/null/21573
欥/null/10
殇/null/288
齸/null/7
籵/null/12
糗/null/961
奲/null/79
委/null/29585
齹/null/9
女/null/245920
踩/null/4362
殈/null/13
齺/null/13
糙/null/779
奴/null/2456
姖/null/12
踪/null/6086
躌/null/11
欧/null/17225
殉/null/368
齻/null/27
籸/null/12
姗/null/214
踫/null/92
欨/null/11
殊/null/10621
籹/null/9
奶/null/18
姘/null/58
踬/null/26
躎/null/8
残/null/13412
籺/null/7
糜/null/242
奷/null/12
躏/null/346
殌/null/9
齾/null/12
类/null/78205
奸/null/2155
姚/null/1354
踮/null/449
躐/null/8
殍/null/8
齿/null/6149
籼/null/10
她/null/211517
姛/null/7
踯/null/166
欬/null/12
殎/null/15
籽/null/372
糟/null/7974
絁/null/11
姜/null/520
殏/null/5
欭/null/11
糠/null/98
奻/null/16
姝/null/160
踰/null/73
籿/null/7
奼/null/42
姞/null/10
婀/null/107
踱/null/232
欯/null/23
殑/null/11
好/null/860232
躔/null/10
踳/null/5
殒/null/73
奾/null/8
絅/null/12
姠/null/12
婂/null/8
欱/null/19
殓/null/60
奿/null/6
姡/null/9
婃/null/20
躖/null/13
躗/null/6
欲/null/5190
殔/null/8
絇/null/21
踵/null/210
欳/null/11
殕/null/23
婄/null/20
踶/null/8
躘/null/9
欴/null/13
殖/null/3570
姣/null/171
殗/null/17
糨/null/15
絊/null/12
姤/null/16
婆/null/17697
踸/null/7
婇/null/5
欶/null/30
姥/null/459
踹/null/750
欷/null/72
殙/null/13
糪/null/16
婈/null/9
躜/null/28
欸/null/324
殚/null/32
婉/null/3039
躝/null/44
欹/null/19
輀/null/13
殛/null/70
姨/null/1213
婊/null/585
踼/null/257
躞/null/17
輁/null/5
欺/null/8149
糬/null/58
姩/null/9
踽/null/127
躟/null/24
欻/null/14
輂/null/10
婌/null/19
踾/null/8
躠/null/11
踿/null/5
欼/null/9
氀/null/7
糮/null/13
婍/null/12
氁/null/5
殟/null/9
糯/null/287
絑/null/13
姬/null/2371
姭/null/5
款/null/14902
殠/null/9
絒/null/7
躣/null/12
躤/null/6
欿/null/7
輆/null/12
殡/null/166
氃/null/7
糱/null/13
絓/null/7
姮/null/12
婐/null/37
殢/null/11
氄/null/11
絔/null/9
婑/null/12
殣/null/7
氅/null/19
婒/null/10
氆/null/12
絖/null/9
姱/null/9
婓/null/99
姲/null/5
殥/null/11
氇/null/8
躨/null/7
輋/null/11
殦/null/8
絘/null/9
姳/null/6
婕/null/47
躩/null/19
殧/null/8
氉/null/9
糷/null/20
姴/null/6
婖/null/17
輍/null/10
姵/null/32
婗/null/17
身/null/141638
輎/null/13
姶/null/20
婘/null/10
躬/null/921
氋/null/12
絜/null/9
姷/null/12
輐/null/7
殪/null/11
系/null/4633
婚/null/22509
輑/null/8
氍/null/7
緀/null/7
婛/null/11
躯/null/1219
糽/null/16
絟/null/6
姺/null/10
緁/null/9
婜/null/7
緂/null/5
婝/null/5
殭/null/505
氏/null/6761
姻/null/3544
婞/null/5
氐/null/112
姼/null/25
嫀/null/9
民/null/211274
姽/null/38
婟/null/18
嫁/null/3977
躲/null/7443
婠/null/5
殰/null/14
絣/null/56
姾/null/9
緅/null/9
嫂/null/774
輖/null/13
氓/null/2004
姿/null/6072
緆/null/10
輗/null/9
气/null/20
婢/null/170
嫄/null/43
輘/null/9
殳/null/20
氕/null/7
殴/null/918
氖/null/55
絧/null/8
緉/null/15
輚/null/14
段/null/62173
婤/null/9
嫆/null/8
殶/null/9
氘/null/36
絩/null/19
婥/null/10
嫇/null/22
殷/null/84
氙/null/11
絪/null/9
緌/null/6
嫈/null/41
躺/null/3535
氚/null/10
絫/null/13
婧/null/12
嫉/null/750
辀/null/7
氛/null/5013
緎/null/11
嫊/null/8
辁/null/10
絭/null/10
婩/null/10
躽/null/7
輠/null/9
辂/null/23
氝/null/17
婪/null/390
嫌/null/7446
较/null/161783
沀/null/6
絮/null/1088
嫍/null/16
殽/null/7
辄/null/1153
氟/null/137
沁/null/534
絯/null/20
輣/null/7
辅/null/18716
氠/null/7
沂/null/343
輤/null/13
殿/null/3733
辆/null/8767
氡/null/49
沃/null/266
辇/null/245
氢/null/763
沄/null/12
辈/null/18029
沅/null/182
婰/null/7
嫒/null/27
辉/null/254
氤/null/41
沆/null/26
辊/null/21
氥/null/12
沇/null/9
嫔/null/34
辋/null/17
氦/null/130
沈/null/13634
婳/null/10
嫕/null/13
辌/null/11
氧/null/2453
沉/null/14364
絷/null/17
婴/null/2169
嫖/null/1018
辍/null/107
氨/null/166
沊/null/15
婵/null/462
辎/null/57
氩/null/28
沋/null/10
緛/null/10
婶/null/197
嫘/null/29
辏/null/16
絺/null/15
婷/null/2923
嫙/null/12
輮/null/10
辐/null/2841
氪/null/14
沌/null/1704
絻/null/44
婸/null/8
嫚/null/47
繀/null/5
辑/null/31881
絼/null/9
嫛/null/17
辒/null/9
沎/null/7
絽/null/20
緟/null/8
婺/null/16
繁/null/8243
嫜/null/24
输/null/52871
沏/null/41
婻/null/10
繂/null/11
嫝/null/12
輲/null/8
辔/null/44
氮/null/387
沐/null/727
絿/null/29
婼/null/15
嫞/null/10
孀/null/34
辕/null/862
氯/null/410
婽/null/32
繄/null/17
嫟/null/10
氰/null/125
嫠/null/11
輴/null/8
辖/null/1530
沓/null/22
婿/null/407
嫡/null/143
輵/null/8
辗/null/1373
氲/null/31
沔/null/13
繇/null/30
嫢/null/6
輶/null/9
辘/null/121
沕/null/9
嫣/null/631
孅/null/23
輷/null/7
辙/null/687
水/null/186822
緧/null/16
繉/null/16
辚/null/24
嫥/null/10
孇/null/6
輹/null/8
辛/null/18232
氶/null/38
沘/null/9
辜/null/3610
沙/null/23234
緪/null/7
繌/null/16
嫦/null/163
孈/null/10
永/null/61245
沚/null/147
辞/null/8835
沛/null/1788
嫨/null/10
孋/null/5
辟/null/432
沜/null/17
嫩/null/848
氻/null/32
沝/null/125
緮/null/17
繐/null/13
嫪/null/13
洀/null/5
孍/null/6
繑/null/10
嫫/null/8
沟/null/11378
洁/null/56
嫬/null/7
孎/null/14
緰/null/5
辣/null/3190
嫭/null/69
氿/null/10
没/null/638184
洃/null/21
繓/null/8
嫮/null/7
子/null/459460
洄/null/256
孑/null/114
沣/null/20
緳/null/9
沤/null/11
嫱/null/18
孓/null/76
辨/null/7746
沥/null/379
洇/null/18
繗/null/8
孔/null/8556
辩/null/13219
沦/null/2550
洈/null/23
繘/null/12
嫳/null/7
孕/null/3953
沧/null/7147
洉/null/14
緷/null/9
嫴/null/11
孖/null/22
辫/null/453
沨/null/12
洊/null/9
字/null/135740
沩/null/18
洋/null/25325
嫶/null/6
存/null/64502
沪/null/153
洌/null/48
緺/null/13
繜/null/13
嫷/null/9
孙/null/11817
沫/null/1325
洍/null/70
嫸/null/12
孚/null/287
嫹/null/10
绀/null/36
孛/null/24
辰/null/2923
沬/null/261
洎/null/22
繟/null/14
绁/null/8
孜/null/309
辱/null/5389
沭/null/10
洏/null/24
繠/null/8
绂/null/7
孝/null/6022
寀/null/15
沮/null/1277
洐/null/132
练/null/49683
寁/null/7
洑/null/14
嫽/null/14
组/null/96711
孟/null/10216
寂/null/14283
辴/null/13
沰/null/13
洒/null/433
繣/null/15
绅/null/1115
沱/null/489
细/null/41672
寄/null/25925
织/null/15287
孢/null/50
寅/null/369
河/null/22976
终/null/50989
季/null/22542
洖/null/5
密/null/33263
沴/null/17
绉/null/32
孤/null/20746
寇/null/2036
沵/null/28
洗/null/18637
繨/null/18
绊/null/1261
孥/null/60
边/null/73304
沶/null/14
洘/null/42
绋/null/12
学/null/806783
沷/null/6
洙/null/26
绌/null/64
沸/null/1101
洚/null/9
绍/null/29836
寊/null/10
油/null/52331
洛/null/7470
绎/null/399
寋/null/14
辽/null/2032
沺/null/24
经/null/282242
孩/null/80204
富/null/20968
达/null/68312
治/null/62946
洝/null/12
绐/null/20
孪/null/37
寍/null/25
辿/null/26
沼/null/613
洞/null/12858
涀/null/7
绑/null/2091
寎/null/13
沽/null/271
洟/null/9
绒/null/9
孬/null/31
沾/null/83
洠/null/9
涂/null/2883
结/null/129335
涃/null/5
寐/null/386
沿/null/5129
孮/null/10
寑/null/73
洢/null/12
涄/null/14
繲/null/26
寒/null/15884
涅/null/1382
绕/null/6808
孰/null/1286
寓/null/1803
涆/null/11
繴/null/15
绖/null/13
孱/null/36
寔/null/7
津/null/4838
繵/null/7
绗/null/11
孲/null/7
消/null/57326
繶/null/11
绘/null/6695
孳/null/62
寖/null/11
洧/null/25
涉/null/6957
繷/null/11
给/null/189973
洨/null/16
涊/null/9
繸/null/19
绚/null/597
孵/null/486
寘/null/39
涋/null/13
绛/null/119
孷/null/5
寙/null/18
洪/null/15396
涌/null/241
繺/null/11
络/null/31927
洫/null/13
涍/null/11
繻/null/10
绝/null/59291
洬/null/9
涎/null/157
绞/null/635
洭/null/23
统/null/141769
孺/null/388
罂/null/11
寝/null/12845
绠/null/7
孻/null/9
罃/null/8
寞/null/10569
局/null/24
洮/null/51
涐/null/10
绡/null/49
罄/null/115
察/null/20535
屁/null/11781
洯/null/8
涑/null/21
绢/null/200
孽/null/1137
寠/null/5
罅/null/18
层/null/22305
洰/null/10
涒/null/7
绣/null/1340
寡/null/4170
屃/null/12
洱/null/132
涓/null/665
绤/null/8
屄/null/104
洲/null/21420
涔/null/95
绥/null/237
寣/null/20
居/null/35883
洳/null/20
涕/null/1281
绦/null/18
寤/null/92
洴/null/13
继/null/28491
罊/null/12
寥/null/1016
屇/null/19
洵/null/91
涗/null/33
绨/null/19
屈/null/3806
涘/null/151
绩/null/19
屉/null/708
洷/null/7
绪/null/9713
寨/null/327
届/null/18051
洸/null/384
绫/null/479
罍/null/33
屋/null/12885
洹/null/412
涛/null/16177
洺/null/19
续/null/49681
寪/null/13
屌/null/704
活/null/125568
涝/null/31
绮/null/1467
罐/null/4182
洼/null/18
涞/null/19
渀/null/11
绯/null/237
网/null/50
屎/null/2607
洽/null/10902
涟/null/549
绰/null/1739
屏/null/5712
派/null/24951
涠/null/8
寮/null/3566
屐/null/1111
洿/null/9
涡/null/873
渃/null/20
绲/null/10
罔/null/354
寯/null/21
屑/null/2966
涢/null/10
绳/null/1650
罕/null/1513
寰/null/1184
涣/null/167
清/null/302588
寱/null/8
涤/null/210
维/null/34363
寲/null/11
屔/null/6
绵/null/4124
罗/null/488
展/null/56225
润/null/3359
绶/null/70
罘/null/19
屖/null/10
涧/null/256
绷/null/654
涨/null/5107
渊/null/3268
绸/null/309
罚/null/9363
屘/null/15
涩/null/1487
绹/null/10
罛/null/16
屙/null/47
涪/null/123
渌/null/16
绺/null/13
罜/null/14
寸/null/4930
涫/null/7
渍/null/337
绻/null/184
罝/null/27
对/null/500435
翀/null/7
涬/null/7
渎/null/337
综/null/6113
罞/null/8
寺/null/3515
翁/null/7228
绽/null/1311
罟/null/21
寻/null/36745
翂/null/18
屝/null/26
涮/null/44
渐/null/17443
绾/null/46
罠/null/10
导/null/62860
翃/null/19
属/null/41089
涯/null/6964
渑/null/27
绿/null/17990
罡/null/106
罢/null/24233
翅/null/4894
屠/null/6824
罣/null/447
寿/null/6786
屡/null/1976
峃/null/6
翇/null/10
峄/null/12
液/null/5079
渔/null/2789
罥/null/11
屣/null/67
涳/null/10
罦/null/10
翉/null/9
峆/null/31
涴/null/11
渖/null/46
罧/null/16
翊/null/411
履/null/2160
峇/null/32
涵/null/6870
渗/null/993
罨/null/8
翋/null/14
屦/null/27
峈/null/70
罩/null/3932
翌/null/187
屧/null/10
峉/null/14
涷/null/10
罪/null/26900
翍/null/7
峊/null/19
涸/null/95
渚/null/442
罫/null/6
屩/null/5
翎/null/415
峋/null/151
罬/null/16
涺/null/5
翏/null/15
屪/null/14
峌/null/13
渜/null/11
罭/null/11
涻/null/5
翐/null/6
渝/null/1336
置/null/28732
翑/null/5
峎/null/18
涽/null/12
渟/null/80
峏/null/31
涾/null/8
渠/null/465
峐/null/5
翔/null/10156
屮/null/13
涿/null/19
渡/null/8792
溃/null/1702
署/null/6918
翕/null/73
屯/null/1101
罳/null/20
峒/null/38
渣/null/1121
溅/null/321
罴/null/27
翗/null/7
山/null/131818
峓/null/46
渤/null/125
溆/null/10
峔/null/12
渥/null/315
溇/null/9
翘/null/5558
屳/null/13
罶/null/6
翙/null/26
屴/null/6
峖/null/23
渧/null/26
溉/null/1240
翚/null/7
峗/null/54
渨/null/12
翛/null/13
峘/null/290
温/null/36448
罹/null/425
翜/null/5
峙/null/923
罺/null/6
峚/null/16
渫/null/10
溍/null/6
罻/null/19
翞/null/10
屹/null/229
峛/null/13
溎/null/15
罼/null/10
翟/null/1195
屺/null/12
渭/null/120
溏/null/33
罽/null/17
翠/null/4129
屻/null/14
渮/null/6
源/null/48575
罾/null/11
翡/null/518
屼/null/7
峞/null/15
嵀/null/6
港/null/20031
罿/null/17
渰/null/5
翢/null/6
峟/null/23
嵁/null/12
溒/null/8
翣/null/6
屾/null/11
嵂/null/15
渱/null/16
溓/null/10
屿/null/1815
峡/null/2325
嵃/null/16
翥/null/20
渲/null/510
溔/null/9
翦/null/74
峣/null/7
嵅/null/28
渳/null/8
峤/null/77
渴/null/4610
翨/null/18
峥/null/363
嵇/null/17
渵/null/7
溗/null/6
翩/null/2089
峦/null/603
渶/null/13
溘/null/17
翪/null/18
嵉/null/7
溙/null/7
翫/null/11
峨/null/668
嵊/null/21
游/null/23431
嵋/null/176
渹/null/10
溛/null/8
翭/null/15
峪/null/21
嵌/null/219
渺/null/2271
溜/null/12
翮/null/16
渻/null/19
翯/null/14
峬/null/8
嵎/null/43
渼/null/37
溞/null/16
漀/null/9
翰/null/3686
峭/null/360
渽/null/9
溟/null/43
翱/null/524
溠/null/7
漂/null/20978
漃/null/5
溡/null/5
渿/null/5
峮/null/5
翲/null/13
翳/null/96
嵑/null/10
溢/null/1422
翴/null/10
峰/null/15287
嵒/null/7
溣/null/12
漅/null/10
翵/null/12
峱/null/16
溤/null/11
漆/null/3103
溥/null/82
漇/null/6
嵕/null/5
翷/null/9
溦/null/7
漈/null/6
溧/null/26
漉/null/87
翸/null/11
嵘/null/678
峷/null/6
嵙/null/11
溪/null/36
翻/null/20
峸/null/14
嵚/null/34
漍/null/8
翼/null/6752
峹/null/8
嵛/null/9
漎/null/27
漏/null/8914
翾/null/35
峻/null/1291
嵝/null/12
翿/null/11
嵞/null/14
巀/null/6
溯/null/1706
溰/null/11
漒/null/11
巂/null/8
溱/null/30
漓/null/44
峿/null/8
巃/null/9
溲/null/13
演/null/20
嵢/null/13
漕/null/60
嵣/null/12
巅/null/546
巆/null/9
溴/null/27
嵥/null/9
巇/null/10
溶/null/2532
漘/null/17
嵧/null/9
巉/null/15
溷/null/15
漙/null/13
嵨/null/26
嵩/null/599
溹/null/7
溺/null/1107
漜/null/15
嵫/null/9
巍/null/1062
嵬/null/16
漞/null/15
巏/null/9
溽/null/19
漟/null/10
溾/null/9
漠/null/5025
巑/null/5
嵯/null/26
溿/null/9
漡/null/27
澄/null/9
澅/null/17
嵱/null/11
嵲/null/11
漥/null/15
巕/null/7
漦/null/8
澈/null/988
漧/null/22
澉/null/9
巘/null/8
漩/null/404
澋/null/7
嵷/null/9
漪/null/456
澌/null/8
漫/null/29193
澍/null/148
嵹/null/15
澎/null/4366
嵺/null/10
漭/null/32
川/null/12738
漮/null/6
澐/null/16
嵼/null/10
州/null/10405
漯/null/38
嵽/null/16
巟/null/36
幁/null/8
漰/null/26
澒/null/16
嵾/null/8
巠/null/8
幂/null/59
漱/null/408
澓/null/7
嵿/null/12
巡/null/5165
澔/null/50
巢/null/1968
幄/null/123
漳/null/299
澕/null/12
幅/null/6499
澖/null/19
工/null/521467
左/null/40106
漶/null/12
巧/null/24208
漷/null/14
巨/null/735
幊/null/11
巩/null/681
幋/null/9
漹/null/15
幌/null/502
漺/null/18
澜/null/929
巫/null/7709
幍/null/17
漻/null/8
幎/null/6
漼/null/41
澞/null/8
幏/null/10
差/null/76057
漾/null/422
巯/null/13
澡/null/3203
澢/null/31
己/null/228330
幓/null/9
澣/null/19
已/null/235726
幔/null/98
澥/null/14
巳/null/650
幕/null/32840
巴/null/31055
澧/null/69
澨/null/5
巷/null/11381
幙/null/10
澪/null/41
澫/null/16
幛/null/14
澬/null/18
幜/null/13
澭/null/9
幝/null/12
澯/null/5
幞/null/8
巽/null/60
澰/null/10
巾/null/1208
幠/null/10
巿/null/230
幡/null/144
澲/null/14
幢/null/468
澳/null/3519
廅/null/8
澴/null/26
廆/null/24
廇/null/11
澶/null/12
幦/null/10
幧/null/8
廉/null/6691
幨/null/8
廊/null/1755
澸/null/14
幩/null/12
廋/null/36
澹/null/299
幪/null/15
廌/null/69
澺/null/15
澼/null/17
幭/null/19
澽/null/13
幮/null/12
幯/null/9
廑/null/8
澿/null/11
幰/null/11
廒/null/15
廓/null/949
干/null/29
廔/null/18
平/null/110325
年/null/343135
廖/null/8776
幵/null/18
廗/null/13
并/null/2789
廘/null/6
廙/null/7
幸/null/835
廛/null/13
廜/null/5
幻/null/23331
幼/null/7818
廞/null/9
彀/null/18
幽/null/9475
广/null/46522
彃/null/9
彄/null/17
廥/null/9
廦/null/9
廧/null/11
彉/null/11
廨/null/14
彋/null/9
廪/null/31
彏/null/13
廮/null/5
一/null/2542556
廯/null/12
丁/null/13648
归/null/26976
廱/null/6
当/null/20
七/null/62853
廲/null/9
彔/null/8
录/null/82888
彖/null/19
彗/null/1066
万/null/322
丈/null/5182
延/null/13893
彘/null/38
三/null/301762
廷/null/6457
上/null/828394
下/null/589356
丌/null/9694
建/null/128612
不/null/2831612
彝/null/83
与/null/635768
忀/null/8
丏/null/11
忁/null/9
丐/null/1256
廾/null/34
丑/null/1246
廿/null/2475
心/null/445610
形/null/80289
专/null/82677
必/null/112173
彤/null/480
忆/null/29345
且/null/128957
丕/null/412
彦/null/7903
世/null/116862
彧/null/171
忉/null/116
丘/null/3116
彩/null/148
丙/null/5272
彪/null/444
忌/null/8216
业/null/112036
忍/null/23037
丛/null/3495
彬/null/7594
东/null/183624
彭/null/5481
忏/null/10
丝/null/16204
忐/null/169
丞/null/1308
彯/null/7
忑/null/170
彰/null/9406
忒/null/93
影/null/110761
亃/null/21
忔/null/10
丢/null/20121
亄/null/38
彳/null/62
忕/null/6
彴/null/9
忖/null/186
两/null/206181
了/null/1507218
志/null/19351
严/null/33480
彶/null/8
忘/null/57999
予/null/15645
彷/null/1014
忙/null/34193
丧/null/4862
争/null/44699
彸/null/11
事/null/312553
役/null/11706
个/null/211
二/null/260189
丫/null/601
亍/null/66
彻/null/6856
忝/null/200
丬/null/151
于/null/10333
彼/null/18061
忞/null/22
中/null/1322363
亏/null/5791
彽/null/17
丮/null/6
彾/null/19
忠/null/20273
云/null/6741
忡/null/288
丰/null/1128
互/null/19113
丱/null/5
亓/null/25
忣/null/8
串/null/8282
五/null/122901
忤/null/64
丳/null/9
井/null/12829
忥/null/10
临/null/18552
忧/null/13130
忨/null/9
亘/null/343
忪/null/167
丸/null/9938
亚/null/33773
快/null/159776
丹/null/7705
些/null/304517
为/null/847332
忭/null/9
主/null/224073
忮/null/44
丼/null/17
伀/null/17
忯/null/34
丽/null/31237
亟/null/1431
企/null/14761
伂/null/5
举/null/51086
忱/null/599
亡/null/15636
亢/null/574
伄/null/17
忳/null/12
伅/null/11
忴/null/11
交/null/728005
念/null/18426
亥/null/814
亦/null/42217
伈/null/26
忷/null/6
产/null/57950
伉/null/53
忸/null/87
亨/null/7495
伊/null/14371
亩/null/271
伋/null/27
忺/null/11
享/null/24727
伍/null/11666
忻/null/93
京/null/13353
伎/null/247
亭/null/3112
伏/null/4648
忽/null/15002
亮/null/31253
伐/null/2395
忾/null/94
休/null/19366
忿/null/1353
伒/null/8
伓/null/26
亲/null/51866
伔/null/18
亳/null/111
亵/null/460
众/null/44803
亶/null/11
优/null/40
伙/null/5288
亸/null/12
会/null/894569
亹/null/15
伛/null/26
人/null/1598855
伝/null/146
伞/null/7
侀/null/14
伟/null/25371
侁/null/7
传/null/101724
侂/null/9
亿/null/8198
侃/null/718
伢/null/19
侄/null/77
侅/null/5
伤/null/61254
伥/null/60
侇/null/9
伦/null/15400
侈/null/439
伧/null/21
侉/null/11
例/null/53106
伪/null/3301
伫/null/3336
侍/null/1858
伬/null/15
伭/null/14
侏/null/1055
侐/null/5
伯/null/22436
侑/null/60
估/null/8551
侒/null/13
侔/null/18
伳/null/11
侕/null/23
伴/null/18685
侗/null/33
伶/null/1445
侘/null/10
伸/null/8263
侚/null/20
供/null/59310
伺/null/2257
侜/null/14
伻/null/5
依/null/50589
似/null/75146
侞/null/16
伽/null/914
伾/null/14
侠/null/18834
伿/null/13
侣/null/4159
侥/null/517
侦/null/5311
侧/null/6237
侨/null/6872
侩/null/49
侪/null/979
侬/null/4421
侮/null/1980
侯/null/6513
侲/null/20
侳/null/10
侵/null/7634
侹/null/7
侺/null/8
侻/null/14
便/null/114674
档/null/25542
著/null/9632
| Lex | 0 | abrookins/RediSearch | src/dep/cndict/lex/lex-chars.lex | [
"Apache-2.0",
"Ruby",
"BSD-3-Clause",
"MIT"
] |
=head1 DESCRIPTION
boarddata.pir - a tetris board data class
=head1 SYNOPSIS
# create the board data
data = new "BoardData"
data."new"( 10, 20 )
# fill the board
data."fill"( 0 )
=head1 CLASS INFORMATION
This is the base class of the Board class.
=cut
.namespace ["Tetris::BoardData"]
.sub __onload :load
$P0 = get_class "Tetris::BoardData"
unless null $P0 goto END
newclass $P0, "Tetris::BoardData"
addattribute $P0, "data"
addattribute $P0, "width"
addattribute $P0, "height"
END:
.end
=head1 FUNCTIONS
=over 4
=item data = data."init"( width, height )
Initializes the BoardData object.
=over 4
=item parameter C<width>
The width of the board to create.
=item parameter C<height>
The height of the board to create.
=back
Returns the created data object.
=cut
.sub init :method
.param int w
.param int h
.local pmc data
.local pmc temp
.local int i
# create the data array
new data, 'ResizablePMCArray'
setattribute self, 'data', data
# calculate the array size
set i, w
mul i, h
# resize the array
set data, i
# store the width
new temp, 'Integer'
set temp, w
setattribute self, 'width', temp
# store the height
new temp, 'Integer'
set temp, h
setattribute self, 'height', temp
.end
=back
=head1 METHODS
=over 4
=item data."fill"( val )
Fill the data array with the specified value
=over 4
=item parameter C<val>
The value the board will be filled with.
=back
This method returns nothing.
=cut
.sub fill :method
.param int val
.local pmc data
.local int i
getattribute data, self, 'data'
# get data size
set i, data
# fill the data
WHILE:
dec i
if i < 0 goto END
set data[i], val
branch WHILE
END:
.end
.sub __get_integer :method
getattribute $P0, self, 'data'
$I0 = $P0
.return ($I0)
.end
.sub __get_integer_keyed :method
.param pmc key
getattribute $P0, self, 'data'
$I0 = key
$I1 = $P0
if $I0 < $I1 goto OK
print "error: out of bounds ("
print $I0
print "; "
print $I1
print ")!\n"
sleep 0.1
OK:
$I0 = $P0[$I0]
.return ($I0)
.end
.sub __set_integer_keyed :method
.param pmc key
.param int val
getattribute $P0, self, 'data'
$P0[key] = val
.end
.sub __set_integer_native :method
.param int val
getattribute $P0, self, 'data'
$P0 = val
.end
.sub __push_integer :method
.param int val
getattribute $P0, self, 'data'
push $P0, val
.end
=item width = data."width"( self )
Returns the width (number of blocks in one row) of the board.
=cut
.sub width :method
getattribute $P0, self, 'width'
$I0 = $P0
.return ($I0)
.end
=item height = data."height"()
Returns the height (number of blocks in one column) of the board.
=cut
.sub height :method
getattribute $P0, self, 'height'
$I0 = $P0
.return ($I0)
.end
=item (width, height) = data."dimensions"()
Returns the width and height of the board.
=cut
.sub dimensions :method
.local int w
.local int h
.local pmc temp
getattribute $P0, self, 'width'
w = $P0
getattribute $P0, self, 'height'
h = $P0
.return (w, h)
.end
=back
=head1 AUTHOR
Jens Rieks E<lt>parrot at jensbeimsurfen dot deE<gt> is the author
and maintainer.
Please send patches and suggestions to the Perl 6 Internals mailing list.
=head1 COPYRIGHT
Copyright (C) 2004-2008, Parrot Foundation.
=cut
# Local Variables:
# mode: pir
# fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir:
| Parrot Internal Representation | 5 | winnit-myself/Wifie | examples/sdl/tetris/boarddata.pir | [
"Artistic-2.0"
] |
--TEST--
Feature Request #50283 (allow base in gmp_strval to use full range: 2 to 62, and -2 to -36)
--EXTENSIONS--
gmp
--FILE--
<?php
$a = gmp_init("0x41682179fbf5");
printf("Decimal: %s, -36-based: %s\n", gmp_strval($a), gmp_strval($a,-36));
printf("Decimal: %s, 36-based: %s\n", gmp_strval($a), gmp_strval($a,36));
try {
printf("Decimal: %s, -1-based: %s\n", gmp_strval($a), gmp_strval($a,-1));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
try {
printf("Decimal: %s, 1-based: %s\n", gmp_strval($a), gmp_strval($a,1));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
try {
printf("Decimal: %s, -37-based: %s\n", gmp_strval($a), gmp_strval($a,-37));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
printf("Decimal: %s, 37-based: %s\n", gmp_strval($a), gmp_strval($a,37));
printf("Decimal: %s, 62-based: %s\n", gmp_strval($a), gmp_strval($a,62));
try {
printf("Decimal: %s, 63-based: %s\n\n", gmp_strval($a), gmp_strval($a,63));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
printf("Base 32 and 62-based: %s\n", gmp_strval(gmp_init("gh82179fbf5", 32), 62));
?>
--EXPECT--
Decimal: 71915494046709, -36-based: PHPISCOOL
Decimal: 71915494046709, 36-based: phpiscool
gmp_strval(): Argument #2 ($base) must be between 2 and 62, or -2 and -36
gmp_strval(): Argument #2 ($base) must be between 2 and 62, or -2 and -36
gmp_strval(): Argument #2 ($base) must be between 2 and 62, or -2 and -36
Decimal: 71915494046709, 37-based: KHKATELJF
Decimal: 71915494046709, 62-based: KQ6yq741
gmp_strval(): Argument #2 ($base) must be between 2 and 62, or -2 and -36
Base 32 and 62-based: 1NHkAcdIiD
| PHP | 3 | NathanFreeman/php-src | ext/gmp/tests/bug50283.phpt | [
"PHP-3.01"
] |
#!/bin/tcsh
set nl=10
set M=1024
set N=1024
echo nl=$nl
echo N=$N
echo M=$M
#compile syr2k
chpl --fast syr2k.chpl -o syr2k
echo 'Cyclic (C)'
./syr2k -nl $nl --dist=C --M=$M --N=$N --messages
./syr2k -nl $nl --dist=C --M=$M --N=$N --timeit
echo 'Cyclic with modulo unrolling (CM)'
./syr2k -nl $nl --dist=CM --M=$M --N=$N --correct
./syr2k -nl $nl --dist=CM --M=$M --N=$N --messages
./syr2k -nl $nl --dist=CM --M=$M --N=$N --timeit
echo 'Block (B)'
./syr2k -nl $nl --dist=B --M=$M --N=$N --messages
./syr2k -nl $nl --dist=B --M=$M --N=$N --timeit
echo 'No distribution (NONE)'
./syr2k -nl $nl --dist=NONE --M=$M --N=$N --timeit
| Tcsh | 3 | jhh67/chapel | test/users/aroonsharma/LinearAlgebra/dosyr2kbench.tcsh | [
"ECL-2.0",
"Apache-2.0"
] |
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
module Handler.UserSpec (spec) where
import TestImport
spec :: Spec
spec = withApp $ do
describe "postUserR" $
it "returns 501 Not Implemented" $ do
post UserR
statusIs 501
describe "postUserCreateWithArrayR" $
it "returns 501 Not Implemented" $ do
post UserCreateWithArrayR
statusIs 501
describe "postUserCreateWithListR" $
it "returns 501 Not Implemented" $ do
post UserCreateWithListR
statusIs 501
describe "deleteUserByTextR" $
it "returns 501 Not Implemented" $ do
performMethod "DELETE" $ UserByTextR "username_example"
statusIs 501
describe "getUserByTextR" $
it "returns 501 Not Implemented" $ do
get $ UserByTextR "username_example"
statusIs 501
describe "getUserLoginR" $
it "returns 501 Not Implemented" $ do
get UserLoginR
statusIs 501
describe "getUserLogoutR" $
it "returns 501 Not Implemented" $ do
get UserLogoutR
statusIs 501
describe "putUserByTextR" $
it "returns 501 Not Implemented" $ do
performMethod "PUT" $ UserByTextR "username_example"
statusIs 501
| Haskell | 4 | JigarJoshi/openapi-generator | samples/server/petstore/haskell-yesod/test/Handler/UserSpec.hs | [
"Apache-2.0"
] |
&::&-:0`#v_v
v -<
v \-<
>::&-:0`#v_v
v -<
v \-<
>$:*\:*+ .@
# 11/10/2018
| Befunge | 0 | tlgs/dailyprogrammer | Befunge/easy/e034.befunge | [
"Unlicense"
] |
<tags-show-page :tag-ref="#{@tag_serialized}" namespace-path="#{namespace_path(@namespace)}" namespace-name="#{@namespace.name}" repository-path="#{repository_path(@repository)}" repository-name="#{@repository.name}"></tags-show-page>
| Slim | 2 | xybots/Portus | app/views/tags/show.html.slim | [
"Apache-2.0"
] |
.PHONY: all
all: stage1.js
stage1.js: stage1.asm
@nasm -o stage1.bin stage1.asm
| Makefile | 3 | OsmanDere/metasploit-framework | external/source/exploits/CVE-2018-4404/stage1/Makefile | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
"""Provide info to system health."""
from __future__ import annotations
from typing import Any, Final
from homeassistant.components import system_health
from homeassistant.core import HomeAssistant, callback
API_ENDPOINT: Final = "http://api.gios.gov.pl/"
@callback
def async_register(
hass: HomeAssistant, register: system_health.SystemHealthRegistration
) -> None:
"""Register system health callbacks."""
register.async_register_info(system_health_info)
async def system_health_info(hass: HomeAssistant) -> dict[str, Any]:
"""Get info for the info page."""
return {
"can_reach_server": system_health.async_check_can_reach_url(hass, API_ENDPOINT)
}
| Python | 4 | MrDelik/core | homeassistant/components/gios/system_health.py | [
"Apache-2.0"
] |
(set-info :smt-lib-version 2.6)
(set-logic QF_UFLRA)
(set-info :source |CPAchecker with k-induction on SV-COMP14 program using MathSAT5, submitted by Philipp Wendler, http://cpachecker.sosy-lab.org|)
(set-info :category "industrial")
(set-info :status unsat)
(declare-fun ldv_spin@1 () Real)
(declare-fun |main::ldv_s_pcap_keys_device_driver_platform_driver@1| () Real)
(define-fun _7 () Real 0)
(define-fun _541 () Real |main::ldv_s_pcap_keys_device_driver_platform_driver@1|)
(define-fun _542 () Bool (= _541 _7))
(define-fun _991 () Real ldv_spin@1)
(define-fun _992 () Bool (= _991 _7))
(define-fun _993 () Bool (and _542 _992))
(define-fun _2 () Bool false)
(assert _993)
(assert _2)
(check-sat)
(exit)
| SMT | 2 | livinlife6751/infer | sledge/test/smt/QF_UFLRA/cpachecker-induction-svcomp14/cpachecker-induction.43_1a_cilled_true-unreach-call_ok_nondet_linux-43_1a-drivers--input--misc--pcap_keys.ko-ldv_main0_sequence_infinite_withcheck_stateful.cil.out.c.smt2 | [
"MIT"
] |
// build-pass (FIXME(62277): could be check-pass?)
#![allow(unused)]
struct S;
impl S {
fn early_and_type<'a, T>(self) -> &'a T { loop {} }
}
fn test() {
S.early_and_type::<u16>();
}
fn main() {}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/methods/method-call-lifetime-args-subst-index.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
--TEST--
__wakeup can only declare return void
--FILE--
<?php
class Foo {
public function __wakeup(): bool {}
}
?>
--EXPECTF--
Fatal error: Foo::__wakeup(): Return type must be void when declared in %s on line %d
| PHP | 2 | NathanFreeman/php-src | Zend/tests/return_types/041.phpt | [
"PHP-3.01"
] |
# Copyright Project Harbor 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
*** Settings ***
Documentation This resource provides any keywords related to the Harbor private registry appliance
*** Variables ***
${new_sys_robot_account_btn} //system-robot-accounts//button/span/span[contains(.,'NEW ROBOT ACCOUNT')]
${sys_robot_account_name_input} //*[@id='name']
${sys_robot_account_expiration_type_select} //*[@id='expiration-type']
${sys_robot_account_expiration_input} //*[@id='robotTokenExpiration']
${sys_robot_account_description_textarea} //*[@id='description']
${sys_robot_account_coverall_chb_input} xpath=//input[@id='coverAll']
${sys_robot_account_coverall_chb} //clr-checkbox-wrapper[contains(@class, 'clr-checkbox-wrapper')]/label[contains(@for, 'coverAll')]
${sys_robot_account_permission_list_btn} //form/section//clr-dropdown/button
${save_sys_robot_account_btn} //*[@id='system-robot-save']
${save_sys_robot_project_filter_chb} //clr-dg-string-filter/clr-dg-filter//cds-icon
${save_sys_robot_project_filter_input} //input[contains(@name, 'search')]
${save_sys_robot_project_filter_close_btn} //button/cds-icon[contains(@title, 'Close')]
${save_sys_robot_project_paste_icon} //hbr-copy-input//clr-icon
| RobotFramework | 4 | yxxhero/harbor | tests/resources/Harbor-Pages/Robot_Account_Elements.robot | [
"Apache-2.0"
] |
require ttf.inc
SUMMARY = "Ipa fonts - TTF Version"
HOMEPAGE = "https://moji.or.jp/ipafont"
LICENSE = "IPA"
LICENSE_URL = "https://moji.or.jp/ipafont/license/"
LIC_FILES_CHKSUM = "file://IPA_Font_License_Agreement_v1.0.txt;md5=6cd3351ba979cf9db1fad644e8221276 \
"
SRC_URI = "https://moji.or.jp/wp-content/ipafont/IPAfont/IPAfont00303.zip "
SRC_URI[sha256sum] = "f755ed79a4b8e715bed2f05a189172138aedf93db0f465b4e20c344a02766fe5"
S = "${WORKDIR}/IPAfont00303"
PACKAGES = "ttf-ipag ttf-ipagp ttf-ipam ttf-ipamp"
FONT_PACKAGES = "ttf-ipag ttf-ipagp ttf-ipam ttf-ipamp"
FILES:ttf-ipag = "${datadir}/fonts/truetype/ipag.ttf"
FILES:ttf-ipagp = "${datadir}/fonts/truetype/ipagp.ttf"
FILES:ttf-ipam = "${datadir}/fonts/truetype/ipam.ttf"
FILES:ttf-ipamp = "${datadir}/fonts/truetype/ipamp.ttf"
| BitBake | 2 | shipinglinux/meta-openembedded | meta-oe/recipes-graphics/ttf-fonts/ttf-ipa_003.03.01.bb | [
"MIT"
] |
from caffe2.python import core
import caffe2.python.hypothesis_test_util as hu
import caffe2.python.serialized_test.serialized_test_util as serial
import hypothesis.strategies as st
from hypothesis import given, settings
import numpy as np
class TestFindOperator(serial.SerializedTestCase):
@given(n=st.sampled_from([1, 4, 8, 31, 79, 150]),
idxsize=st.sampled_from([2, 4, 8, 1000, 5000]),
**hu.gcs)
@settings(deadline=10000)
def test_find(self, n, idxsize, gc, dc):
maxval = 10
def findop(idx, X):
res = []
for j in list(X.flatten()):
i = np.where(idx == j)[0]
if len(i) == 0:
res.append(-1)
else:
res.append(i[-1])
print("Idx: {} X: {}".format(idx, X))
print("Res: {}".format(res))
return [np.array(res).astype(np.int32)]
X = (np.random.rand(n) * maxval).astype(np.int32)
idx = (np.random.rand(idxsize) * maxval).astype(np.int32)
op = core.CreateOperator(
"Find",
["idx", "X"],
["y"],
)
self.assertReferenceChecks(
device_option=gc,
op=op,
inputs=[idx, X],
reference=findop,
)
| Python | 4 | Hacky-DH/pytorch | caffe2/python/operator_test/find_op_test.py | [
"Intel"
] |
--TEST--
Bug #55399 (parse_url() incorrectly treats ':' as a valid path)
--FILE--
<?php
var_dump(parse_url(":"));
?>
--EXPECT--
bool(false)
| PHP | 3 | guomoumou123/php5.5.10 | ext/standard/tests/url/bug55399.phpt | [
"PHP-3.01"
] |
module Language.PureScript.CST.Traversals where
import Prelude
import Language.PureScript.CST.Types
everythingOnSeparated :: (r -> r -> r) -> (a -> r) -> Separated a -> r
everythingOnSeparated op k (Separated hd tl) = go hd tl
where
go a [] = k a
go a (b : bs) = k a `op` go (snd b) bs
| Haskell | 4 | andys8/purescript | lib/purescript-cst/src/Language/PureScript/CST/Traversals.hs | [
"BSD-3-Clause"
] |
const QUERY = 'enum:Option';
const EXPECTED = {
'others': [
{ 'path': 'std::option', 'name': 'Option' },
],
};
| JavaScript | 2 | Eric-Arellano/rust | src/test/rustdoc-js-std/enum-option.js | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
const A: isize = Foo::B as isize;
enum Foo {
B = A, //~ ERROR E0391
}
fn main() {}
| Rust | 2 | Eric-Arellano/rust | src/test/ui/issues/issue-36163.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
{
"@context": [
"e054-context-1.jsonld",
"e054-context-2.jsonld"
],
"@id": "ex:id"
}
| JSONLD | 1 | donbowman/rdflib | test/jsonld/1.1/expand/e054-in.jsonld | [
"BSD-3-Clause"
] |
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js ar - lighting estimation</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link type="text/css" rel="stylesheet" href="main.css">
</head>
<body>
<div id="info">
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> ar - Lighting Estimation<br/>
(Chrome Android 90+)
</div>
<script type="module">
import * as THREE from '../build/three.module.js';
import { RGBELoader } from './jsm/loaders/RGBELoader.js';
import { ARButton } from './jsm/webxr/ARButton.js';
import { XREstimatedLight } from './jsm/webxr/XREstimatedLight.js';
let camera, scene, renderer;
let controller;
let defaultEnvironment;
init();
animate();
function init() {
const container = document.createElement( 'div' );
document.body.appendChild( container );
scene = new THREE.Scene();
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 0.01, 20 );
const defaultLight = new THREE.AmbientLight( 0xffffff );
scene.add( defaultLight );
//
renderer = new THREE.WebGLRenderer( { antialias: true, alpha: true } );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
renderer.outputEncoding = THREE.sRGBEncoding;
renderer.physicallyCorrectLights = true;
renderer.xr.enabled = true;
container.appendChild( renderer.domElement );
// Don't add the XREstimatedLight to the scene initially.
// It doesn't have any estimated lighting values until an AR session starts.
const xrLight = new XREstimatedLight( renderer );
xrLight.addEventListener( 'estimationstart', () => {
// Swap the default light out for the estimated one one we start getting some estimated values.
scene.add( xrLight );
scene.remove( defaultLight );
// The estimated lighting also provides an environment cubemap, which we can apply here.
if ( xrLight.environment ) {
updateEnvironment( xrLight.environment );
}
} );
xrLight.addEventListener( 'estimationend', () => {
// Swap the lights back when we stop receiving estimated values.
scene.add( defaultLight );
scene.remove( xrLight );
// Revert back to the default environment.
updateEnvironment( defaultEnvironment );
} );
//
new RGBELoader()
.setPath( 'textures/equirectangular/' )
.load( 'royal_esplanade_1k.hdr', function ( texture ) {
texture.mapping = THREE.EquirectangularReflectionMapping;
defaultEnvironment = texture;
updateEnvironment( defaultEnvironment );
} );
//
// In order for lighting estimation to work, 'light-estimation' must be included as either an optional or required feature.
document.body.appendChild( ARButton.createButton( renderer, { optionalFeatures: [ 'light-estimation' ] } ) );
//
const ballGeometry = new THREE.SphereBufferGeometry( 0.175, 32, 32 );
const ballGroup = new THREE.Group();
ballGroup.position.z = - 2;
const rows = 1;
const cols = 4;
for ( let i = 0; i < rows; i ++ ) {
for ( let j = 0; j < cols; j ++ ) {
const ballMaterial = new THREE.MeshPhongMaterial( {
color: 0xdddddd,
reflectivity: j / cols
} );
const ballMesh = new THREE.Mesh( ballGeometry, ballMaterial );
ballMesh.position.set( ( i + 0.5 - rows * 0.5 ) * 0.4, ( j + 0.5 - cols * 0.5 ) * 0.4, 0 );
ballGroup.add( ballMesh );
}
}
scene.add( ballGroup );
//
function onSelect() {
ballGroup.position.set( 0, 0, - 2 ).applyMatrix4( controller.matrixWorld );
ballGroup.quaternion.setFromRotationMatrix( controller.matrixWorld );
}
controller = renderer.xr.getController( 0 );
controller.addEventListener( 'select', onSelect );
scene.add( controller );
//
window.addEventListener( 'resize', onWindowResize );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
//
function animate() {
renderer.setAnimationLoop( render );
}
function render() {
renderer.render( scene, camera );
}
function updateEnvironment( envMap ) {
scene.traverse( function ( object ) {
if ( object.isMesh ) object.material.envMap = envMap;
} );
}
</script>
</body>
</html>
| HTML | 4 | omgEn/threeJs | examples/webxr_ar_lighting.html | [
"MIT"
] |
%% -*- prolog -*-
%%=============================================================================
%% Copyright (C) 2011 by Denys Duchier
%%
%% This program is free software: you can redistribute it and/or modify it
%% under the terms of the GNU Lesser General Public License as published by the
%% Free Software Foundation, either version 3 of the License, or (at your
%% option) any later version.
%%
%% This program is distributed in the hope that it will be useful, but WITHOUT
%% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
%% FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
%% more details.
%%
%% You should have received a copy of the GNU Lesser General Public License
%% along with this program. If not, see <http://www.gnu.org/licenses/>.
%%=============================================================================
is_IntRelType_('IRT_EQ').
is_IntRelType_('IRT_NQ').
is_IntRelType_('IRT_LQ').
is_IntRelType_('IRT_LE').
is_IntRelType_('IRT_GQ').
is_IntRelType_('IRT_GR').
is_IntRelType_('IRT_EQ','IRT_EQ').
is_IntRelType_('IRT_NQ','IRT_NQ').
is_IntRelType_('IRT_LQ','IRT_LQ').
is_IntRelType_('IRT_LE','IRT_LE').
is_IntRelType_('IRT_GQ','IRT_GQ').
is_IntRelType_('IRT_GR','IRT_GR').
is_IntRelType(X,Y) :- nonvar(X), is_IntRelType_(X,Y).
is_IntRelType(X) :- is_IntRelType(X,_).
is_BoolOpType_('BOT_AND').
is_BoolOpType_('BOT_OR').
is_BoolOpType_('BOT_IMP').
is_BoolOpType_('BOT_EQV').
is_BoolOpType_('BOT_XOR').
is_BoolOpType_('BOT_AND','BOT_AND').
is_BoolOpType_('BOT_OR','BOT_OR').
is_BoolOpType_('BOT_IMP','BOT_IMP').
is_BoolOpType_('BOT_EQV','BOT_EQV').
is_BoolOpType_('BOT_XOR','BOT_XOR').
is_BoolOpType(X,Y) :- nonvar(X), is_BoolOpType_(X,Y).
is_BoolOpType(X) :- is_BoolOpType(X,_).
is_IntConLevel_('ICL_VAL').
is_IntConLevel_('ICL_BND').
is_IntConLevel_('ICL_DOM').
is_IntConLevel_('ICL_DEF').
is_IntConLevel_('ICL_VAL','ICL_VAL').
is_IntConLevel_('ICL_BND','ICL_BND').
is_IntConLevel_('ICL_DOM','ICL_DOM').
is_IntConLevel_('ICL_DEF','ICL_DEF').
is_IntConLevel(X,Y) :- nonvar(X), is_IntConLevel_(X,Y).
is_IntConLevel(X) :- is_IntConLevel(X,_).
is_TaskType_('TT_FIXP').
is_TaskType_('TT_FIXS').
is_TaskType_('TT_FIXE').
is_TaskType_('TT_FIXP','TT_FIXP').
is_TaskType_('TT_FIXS','TT_FIXS').
is_TaskType_('TT_FIXE','TT_FIXE').
is_TaskType(X,Y) :- nonvar(X), is_TaskType_(X,Y).
is_TaskType(X) :- is_TaskType(X,_).
is_ExtensionalPropKind_('EPK_DEF').
is_ExtensionalPropKind_('EPK_SPEED').
is_ExtensionalPropKind_('EPK_MEMORY').
is_ExtensionalPropKind_('EPK_DEF','EPK_DEF').
is_ExtensionalPropKind_('EPK_SPEED','EPK_SPEED').
is_ExtensionalPropKind_('EPK_MEMORY','EPK_MEMORY').
is_ExtensionalPropKind(X,Y) :- nonvar(X), is_ExtensionalPropKind_(X,Y).
is_ExtensionalPropKind(X) :- is_ExtensionalPropKind(X,_).
is_IntVarBranch_('INT_VAR_NONE').
is_IntVarBranch_('INT_VAR_RND').
is_IntVarBranch_('INT_VAR_DEGREE_MIN').
is_IntVarBranch_('INT_VAR_DEGREE_MAX').
is_IntVarBranch_('INT_VAR_AFC_MIN').
is_IntVarBranch_('INT_VAR_AFC_MAX').
is_IntVarBranch_('INT_VAR_MIN_MIN').
is_IntVarBranch_('INT_VAR_MIN_MAX').
is_IntVarBranch_('INT_VAR_MAX_MIN').
is_IntVarBranch_('INT_VAR_MAX_MAX').
is_IntVarBranch_('INT_VAR_SIZE_MIN').
is_IntVarBranch_('INT_VAR_SIZE_MAX').
is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN').
is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX').
is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN').
is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX').
is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN').
is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX').
is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN').
is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX').
is_IntVarBranch_('INT_VAR_NONE','INT_VAR_NONE').
is_IntVarBranch_('INT_VAR_RND','INT_VAR_RND').
is_IntVarBranch_('INT_VAR_DEGREE_MIN','INT_VAR_DEGREE_MIN').
is_IntVarBranch_('INT_VAR_DEGREE_MAX','INT_VAR_DEGREE_MAX').
is_IntVarBranch_('INT_VAR_AFC_MIN','INT_VAR_AFC_MIN').
is_IntVarBranch_('INT_VAR_AFC_MAX','INT_VAR_AFC_MAX').
is_IntVarBranch_('INT_VAR_MIN_MIN','INT_VAR_MIN_MIN').
is_IntVarBranch_('INT_VAR_MIN_MAX','INT_VAR_MIN_MAX').
is_IntVarBranch_('INT_VAR_MAX_MIN','INT_VAR_MAX_MIN').
is_IntVarBranch_('INT_VAR_MAX_MAX','INT_VAR_MAX_MAX').
is_IntVarBranch_('INT_VAR_SIZE_MIN','INT_VAR_SIZE_MIN').
is_IntVarBranch_('INT_VAR_SIZE_MAX','INT_VAR_SIZE_MAX').
is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MIN','INT_VAR_SIZE_DEGREE_MIN').
is_IntVarBranch_('INT_VAR_SIZE_DEGREE_MAX','INT_VAR_SIZE_DEGREE_MAX').
is_IntVarBranch_('INT_VAR_SIZE_AFC_MIN','INT_VAR_SIZE_AFC_MIN').
is_IntVarBranch_('INT_VAR_SIZE_AFC_MAX','INT_VAR_SIZE_AFC_MAX').
is_IntVarBranch_('INT_VAR_REGRET_MIN_MIN','INT_VAR_REGRET_MIN_MIN').
is_IntVarBranch_('INT_VAR_REGRET_MIN_MAX','INT_VAR_REGRET_MIN_MAX').
is_IntVarBranch_('INT_VAR_REGRET_MAX_MIN','INT_VAR_REGRET_MAX_MIN').
is_IntVarBranch_('INT_VAR_REGRET_MAX_MAX','INT_VAR_REGRET_MAX_MAX').
is_IntVarBranch(X,Y) :- nonvar(X), is_IntVarBranch_(X,Y).
is_IntVarBranch(X) :- is_IntVarBranch(X,_).
is_IntValBranch_('INT_VAL_MIN').
is_IntValBranch_('INT_VAL_MED').
is_IntValBranch_('INT_VAL_MAX').
is_IntValBranch_('INT_VAL_RND').
is_IntValBranch_('INT_VAL_SPLIT_MIN').
is_IntValBranch_('INT_VAL_SPLIT_MAX').
is_IntValBranch_('INT_VAL_RANGE_MIN').
is_IntValBranch_('INT_VAL_RANGE_MAX').
is_IntValBranch_('INT_VALUES_MIN').
is_IntValBranch_('INT_VALUES_MAX').
is_IntValBranch_('INT_VAL_MIN','INT_VAL_MIN').
is_IntValBranch_('INT_VAL_MED','INT_VAL_MED').
is_IntValBranch_('INT_VAL_MAX','INT_VAL_MAX').
is_IntValBranch_('INT_VAL_RND','INT_VAL_RND').
is_IntValBranch_('INT_VAL_SPLIT_MIN','INT_VAL_SPLIT_MIN').
is_IntValBranch_('INT_VAL_SPLIT_MAX','INT_VAL_SPLIT_MAX').
is_IntValBranch_('INT_VAL_RANGE_MIN','INT_VAL_RANGE_MIN').
is_IntValBranch_('INT_VAL_RANGE_MAX','INT_VAL_RANGE_MAX').
is_IntValBranch_('INT_VALUES_MIN','INT_VALUES_MIN').
is_IntValBranch_('INT_VALUES_MAX','INT_VALUES_MAX').
is_IntValBranch(X,Y) :- nonvar(X), is_IntValBranch_(X,Y).
is_IntValBranch(X) :- is_IntValBranch(X,_).
is_IntAssign_('INT_ASSIGN_MIN').
is_IntAssign_('INT_ASSIGN_MED').
is_IntAssign_('INT_ASSIGN_MAX').
is_IntAssign_('INT_ASSIGN_RND').
is_IntAssign_('INT_ASSIGN_MIN','INT_ASSIGN_MIN').
is_IntAssign_('INT_ASSIGN_MED','INT_ASSIGN_MED').
is_IntAssign_('INT_ASSIGN_MAX','INT_ASSIGN_MAX').
is_IntAssign_('INT_ASSIGN_RND','INT_ASSIGN_RND').
is_IntAssign(X,Y) :- nonvar(X), is_IntAssign_(X,Y).
is_IntAssign(X) :- is_IntAssign(X,_).
is_SetRelType_('SRT_EQ').
is_SetRelType_('SRT_NQ').
is_SetRelType_('SRT_SUB').
is_SetRelType_('SRT_SUP').
is_SetRelType_('SRT_DISJ').
is_SetRelType_('SRT_CMPL').
is_SetRelType_('SRT_LQ').
is_SetRelType_('SRT_LE').
is_SetRelType_('SRT_GQ').
is_SetRelType_('SRT_GR').
is_SetRelType_('SRT_EQ','SRT_EQ').
is_SetRelType_('SRT_NQ','SRT_NQ').
is_SetRelType_('SRT_SUB','SRT_SUB').
is_SetRelType_('SRT_SUP','SRT_SUP').
is_SetRelType_('SRT_DISJ','SRT_DISJ').
is_SetRelType_('SRT_CMPL','SRT_CMPL').
is_SetRelType_('SRT_LQ','SRT_LQ').
is_SetRelType_('SRT_LE','SRT_LE').
is_SetRelType_('SRT_GQ','SRT_GQ').
is_SetRelType_('SRT_GR','SRT_GR').
is_SetRelType(X,Y) :- nonvar(X), is_SetRelType_(X,Y).
is_SetRelType(X) :- is_SetRelType(X,_).
is_SetOpType_('SOT_UNION').
is_SetOpType_('SOT_DUNION').
is_SetOpType_('SOT_INTER').
is_SetOpType_('SOT_MINUS').
is_SetOpType_('SOT_UNION','SOT_UNION').
is_SetOpType_('SOT_DUNION','SOT_DUNION').
is_SetOpType_('SOT_INTER','SOT_INTER').
is_SetOpType_('SOT_MINUS','SOT_MINUS').
is_SetOpType(X,Y) :- nonvar(X), is_SetOpType_(X,Y).
is_SetOpType(X) :- is_SetOpType(X,_).
is_SetVarBranch_('SET_VAR_NONE').
is_SetVarBranch_('SET_VAR_RND').
is_SetVarBranch_('SET_VAR_DEGREE_MIN').
is_SetVarBranch_('SET_VAR_DEGREE_MAX').
is_SetVarBranch_('SET_VAR_AFC_MIN').
is_SetVarBranch_('SET_VAR_AFC_MAX').
is_SetVarBranch_('SET_VAR_MIN_MIN').
is_SetVarBranch_('SET_VAR_MIN_MAX').
is_SetVarBranch_('SET_VAR_MAX_MIN').
is_SetVarBranch_('SET_VAR_MAX_MAX').
is_SetVarBranch_('SET_VAR_SIZE_MIN').
is_SetVarBranch_('SET_VAR_SIZE_MAX').
is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN').
is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX').
is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN').
is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX').
is_SetVarBranch_('SET_VAR_NONE','SET_VAR_NONE').
is_SetVarBranch_('SET_VAR_RND','SET_VAR_RND').
is_SetVarBranch_('SET_VAR_DEGREE_MIN','SET_VAR_DEGREE_MIN').
is_SetVarBranch_('SET_VAR_DEGREE_MAX','SET_VAR_DEGREE_MAX').
is_SetVarBranch_('SET_VAR_AFC_MIN','SET_VAR_AFC_MIN').
is_SetVarBranch_('SET_VAR_AFC_MAX','SET_VAR_AFC_MAX').
is_SetVarBranch_('SET_VAR_MIN_MIN','SET_VAR_MIN_MIN').
is_SetVarBranch_('SET_VAR_MIN_MAX','SET_VAR_MIN_MAX').
is_SetVarBranch_('SET_VAR_MAX_MIN','SET_VAR_MAX_MIN').
is_SetVarBranch_('SET_VAR_MAX_MAX','SET_VAR_MAX_MAX').
is_SetVarBranch_('SET_VAR_SIZE_MIN','SET_VAR_SIZE_MIN').
is_SetVarBranch_('SET_VAR_SIZE_MAX','SET_VAR_SIZE_MAX').
is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MIN','SET_VAR_SIZE_DEGREE_MIN').
is_SetVarBranch_('SET_VAR_SIZE_DEGREE_MAX','SET_VAR_SIZE_DEGREE_MAX').
is_SetVarBranch_('SET_VAR_SIZE_AFC_MIN','SET_VAR_SIZE_AFC_MIN').
is_SetVarBranch_('SET_VAR_SIZE_AFC_MAX','SET_VAR_SIZE_AFC_MAX').
is_SetVarBranch(X,Y) :- nonvar(X), is_SetVarBranch_(X,Y).
is_SetVarBranch(X) :- is_SetVarBranch(X,_).
is_SetValBranch_('SET_VAL_MIN_INC').
is_SetValBranch_('SET_VAL_MIN_EXC').
is_SetValBranch_('SET_VAL_MED_INC').
is_SetValBranch_('SET_VAL_MED_EXC').
is_SetValBranch_('SET_VAL_MAX_INC').
is_SetValBranch_('SET_VAL_MAX_EXC').
is_SetValBranch_('SET_VAL_RND_INC').
is_SetValBranch_('SET_VAL_RND_EXC').
is_SetValBranch_('SET_VAL_MIN_INC','SET_VAL_MIN_INC').
is_SetValBranch_('SET_VAL_MIN_EXC','SET_VAL_MIN_EXC').
is_SetValBranch_('SET_VAL_MED_INC','SET_VAL_MED_INC').
is_SetValBranch_('SET_VAL_MED_EXC','SET_VAL_MED_EXC').
is_SetValBranch_('SET_VAL_MAX_INC','SET_VAL_MAX_INC').
is_SetValBranch_('SET_VAL_MAX_EXC','SET_VAL_MAX_EXC').
is_SetValBranch_('SET_VAL_RND_INC','SET_VAL_RND_INC').
is_SetValBranch_('SET_VAL_RND_EXC','SET_VAL_RND_EXC').
is_SetValBranch(X,Y) :- nonvar(X), is_SetValBranch_(X,Y).
is_SetValBranch(X) :- is_SetValBranch(X,_).
is_SetAssign_('SET_ASSIGN_MIN_INC').
is_SetAssign_('SET_ASSIGN_MIN_EXC').
is_SetAssign_('SET_ASSIGN_MED_INC').
is_SetAssign_('SET_ASSIGN_MED_EXC').
is_SetAssign_('SET_ASSIGN_MAX_INC').
is_SetAssign_('SET_ASSIGN_MAX_EXC').
is_SetAssign_('SET_ASSIGN_RND_INC').
is_SetAssign_('SET_ASSIGN_RND_EXC').
is_SetAssign_('SET_ASSIGN_MIN_INC','SET_ASSIGN_MIN_INC').
is_SetAssign_('SET_ASSIGN_MIN_EXC','SET_ASSIGN_MIN_EXC').
is_SetAssign_('SET_ASSIGN_MED_INC','SET_ASSIGN_MED_INC').
is_SetAssign_('SET_ASSIGN_MED_EXC','SET_ASSIGN_MED_EXC').
is_SetAssign_('SET_ASSIGN_MAX_INC','SET_ASSIGN_MAX_INC').
is_SetAssign_('SET_ASSIGN_MAX_EXC','SET_ASSIGN_MAX_EXC').
is_SetAssign_('SET_ASSIGN_RND_INC','SET_ASSIGN_RND_INC').
is_SetAssign_('SET_ASSIGN_RND_EXC','SET_ASSIGN_RND_EXC').
is_SetAssign(X,Y) :- nonvar(X), is_SetAssign_(X,Y).
is_SetAssign(X) :- is_SetAssign(X,_).
unary(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_TaskTypeArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> (is_BoolVarArgs(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_unary_357(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_BoolVarArgs(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_unary_353(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=2))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4,X5),arg=1))).
nvalues(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_nvalues_255(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_nvalues_257(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_nvalues_251(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_nvalues_253(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=2))))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3,X4),arg=1))).
max(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_max_218(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_max_217(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> gecode_constraint_max_221(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=2)))))
; throw(gecode_argument_error(max(X0,X1,X2,X3),arg=1))).
dom(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_dom_139(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_SetRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_int(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> gecode_constraint_dom_149(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=2))))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4,X5),arg=1))).
convex(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVar(X1,Y1)
-> (is_SetVar(X2,Y2)
-> gecode_constraint_convex_51(Y0,Y1,Y2)
; throw(gecode_argument_error(convex(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(convex(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(convex(X0,X1,X2),arg=1))).
nooverlap(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> gecode_constraint_nooverlap_242(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4),arg=1))).
assign(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_BoolVarArgs(X1,Y1)
-> (is_IntAssign(X2,Y2)
-> gecode_constraint_assign_4(Y0,Y1,Y2)
; throw(gecode_argument_error(assign(X0,X1,X2),arg=3)))
; (is_BoolVar(X1,Y1)
-> (is_IntAssign(X2,Y2)
-> gecode_constraint_assign_3(Y0,Y1,Y2)
; throw(gecode_argument_error(assign(X0,X1,X2),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntAssign(X2,Y2)
-> gecode_constraint_assign_5(Y0,Y1,Y2)
; throw(gecode_argument_error(assign(X0,X1,X2),arg=3)))
; (is_IntVar(X1,Y1)
-> (is_IntAssign(X2,Y2)
-> gecode_constraint_assign_7(Y0,Y1,Y2)
; throw(gecode_argument_error(assign(X0,X1,X2),arg=3)))
; (is_SetVarArgs(X1,Y1)
-> (is_SetAssign(X2,Y2)
-> gecode_constraint_assign_6(Y0,Y1,Y2)
; throw(gecode_argument_error(assign(X0,X1,X2),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_SetAssign(X2,Y2)
-> gecode_constraint_assign_8(Y0,Y1,Y2)
; throw(gecode_argument_error(assign(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(assign(X0,X1,X2),arg=2))))))))
; throw(gecode_argument_error(assign(X0,X1,X2),arg=1))).
element(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_element_158(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_element_162(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_element_152(Y0,Y1,Y2,Y3)
; (is_BoolVar(X3,Y3)
-> gecode_constraint_element_150(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=3)))
; (is_IntSetArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_SetVar(X3,Y3)
-> gecode_constraint_element_157(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=3)))
; (is_SetVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_SetVar(X3,Y3)
-> gecode_constraint_element_165(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_element_168(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_element_174(Y0,Y1,Y2,Y3)
; (is_BoolVar(X3,Y3)
-> gecode_constraint_element_166(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=4)))))
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=2)))))))
; throw(gecode_argument_error(element(X0,X1,X2,X3),arg=1))).
sequence(X0,X1) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVarArgs(X1,Y1)
-> gecode_constraint_sequence_338(Y0,Y1)
; throw(gecode_argument_error(sequence(X0,X1),arg=2)))
; throw(gecode_argument_error(sequence(X0,X1),arg=1))).
notMax(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_notMax_248(Y0,Y1,Y2)
; throw(gecode_argument_error(notMax(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(notMax(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(notMax(X0,X1,X2),arg=1))).
unary(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntArgs(X2,Y2)
-> gecode_constraint_unary_350(Y0,Y1,Y2)
; throw(gecode_argument_error(unary(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(unary(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(unary(X0,X1,X2),arg=1))).
circuit(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_circuit_45(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_circuit_36(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3),arg=2))))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3),arg=1))).
dom(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_dom_138(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_dom_143(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=5))))
; (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_dom_137(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=4))))
; (is_IntSet(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_dom_133(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=3))))
; (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_dom_131(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_SetRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_dom_148(Y0,Y1,Y2,Y3,Y4)
; (is_BoolVar(X4,Y4)
-> gecode_constraint_dom_147(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=5))))
; (is_IntSet(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_dom_145(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=2)))))
; throw(gecode_argument_error(dom(X0,X1,X2,X3,X4),arg=1))).
channel(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_BoolVar(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_channel_32(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_channel_27(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_channel_23(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=3)))
; (is_BoolVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_channel_21(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=2))))))
; throw(gecode_argument_error(channel(X0,X1,X2,X3),arg=1))).
nooverlap(X0,X1,X2,X3,X4,X5,X6,X7) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntVarArgs(X6,Y6)
-> (is_BoolVarArgs(X7,Y7)
-> gecode_constraint_nooverlap_244(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; (is_IntConLevel(X7,Y7)
-> gecode_constraint_nooverlap_247(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=8))))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=3)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=2)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7),arg=1))).
element(X0,X1,X2,X3,X4,X5,X6) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_IntVar(X6,Y6)
-> gecode_constraint_element_160(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_BoolVar(X6,Y6)
-> gecode_constraint_element_154(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; (is_IntSetArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_SetVar(X6,Y6)
-> gecode_constraint_element_156(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; (is_SetVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_SetVar(X6,Y6)
-> gecode_constraint_element_164(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_IntVar(X6,Y6)
-> gecode_constraint_element_172(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; (is_BoolVar(X6,Y6)
-> gecode_constraint_element_170(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=7))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=2)))))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6),arg=1))).
max(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_max_216(Y0,Y1,Y2)
; throw(gecode_argument_error(max(X0,X1,X2),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_max_220(Y0,Y1,Y2)
; throw(gecode_argument_error(max(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(max(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(max(X0,X1,X2),arg=1))).
unshare(X0,X1) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> gecode_constraint_unshare_362(Y0,Y1)
; (is_BoolVarArgs(X1,Y1)
-> gecode_constraint_unshare_360(Y0,Y1)
; throw(gecode_argument_error(unshare(X0,X1),arg=2))))
; throw(gecode_argument_error(unshare(X0,X1),arg=1))).
path(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> gecode_constraint_path_268(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_path_267(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=2))))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4),arg=1))).
mult(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_mult_238(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(mult(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(mult(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(mult(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(mult(X0,X1,X2,X3),arg=1))).
clause(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_BoolOpType(X1,Y1)
-> (is_BoolVarArgs(X2,Y2)
-> (is_BoolVarArgs(X3,Y3)
-> (is_int(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_clause_49(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4,X5),arg=6)))
; (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_clause_47(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4,X5),arg=2)))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4,X5),arg=1))).
precede(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_precede_273(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(precede(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(precede(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(precede(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(precede(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(precede(X0,X1,X2,X3,X4),arg=1))).
distinct(X0,X1) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> gecode_constraint_distinct_120(Y0,Y1)
; throw(gecode_argument_error(distinct(X0,X1),arg=2)))
; throw(gecode_argument_error(distinct(X0,X1),arg=1))).
member(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> gecode_constraint_member_226(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_member_229(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(member(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(member(X0,X1,X2,X3),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_BoolVar(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> gecode_constraint_member_222(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_member_225(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(member(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(member(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(member(X0,X1,X2,X3),arg=2))))
; throw(gecode_argument_error(member(X0,X1,X2,X3),arg=1))).
mod(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_mod_237(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(mod(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(mod(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(mod(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(mod(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(mod(X0,X1,X2,X3,X4),arg=1))).
cardinality(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_cardinality_18(Y0,Y1,Y2)
; throw(gecode_argument_error(cardinality(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(cardinality(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(cardinality(X0,X1,X2),arg=1))).
atmostOne(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> gecode_constraint_atmostOne_9(Y0,Y1,Y2)
; throw(gecode_argument_error(atmostOne(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(atmostOne(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(atmostOne(X0,X1,X2),arg=1))).
channelSorted(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_SetVar(X2,Y2)
-> gecode_constraint_channelSorted_33(Y0,Y1,Y2)
; throw(gecode_argument_error(channelSorted(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(channelSorted(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(channelSorted(X0,X1,X2),arg=1))).
linear(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_linear_210(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_linear_214(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(linear(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_linear_186(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_linear_190(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(linear(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3),arg=2))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3),arg=1))).
circuit(X0,X1) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> gecode_constraint_circuit_42(Y0,Y1)
; throw(gecode_argument_error(circuit(X0,X1),arg=2)))
; throw(gecode_argument_error(circuit(X0,X1),arg=1))).
rel(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_BoolVar(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_288(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_291(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5))))
; (is_BoolVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_284(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_287(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4))))
; (is_BoolOpType(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_rel_282(Y0,Y1,Y2,Y3,Y4)
; (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_280(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=3))))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_299(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; (is_BoolVarArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_295(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_293(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4)))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=3)))
; (is_SetOpType(X1,Y1)
-> (is_SetVarArgs(X2,Y2)
-> (is_IntSet(X3,Y3)
-> (is_SetVar(X4,Y4)
-> gecode_constraint_rel_323(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntSet(X3,Y3)
-> (is_SetVar(X4,Y4)
-> gecode_constraint_rel_321(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=3))))
; (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_307(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_309(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; (is_IntVarArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_303(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4)))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=3)))
; (is_IntVar(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_310(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_313(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5))))
; (is_IntVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_314(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_317(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4))))
; (is_SetRelType(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_320(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=3))))
; (is_SetVar(X1,Y1)
-> (is_SetRelType(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_331(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; (is_SetVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_rel_333(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=3)))
; (is_BoolOpType(X1,Y1)
-> (is_BoolVarArgs(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_279(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_rel_277(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=2)))))))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4),arg=1))).
min(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_min_232(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_min_231(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> gecode_constraint_min_235(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=2)))))
; throw(gecode_argument_error(min(X0,X1,X2,X3),arg=1))).
cardinality(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVar(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_cardinality_19(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(cardinality(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(cardinality(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(cardinality(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(cardinality(X0,X1,X2,X3),arg=1))).
count(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_count_69(Y0,Y1,Y2,Y3)
; (is_IntArgs(X3,Y3)
-> gecode_constraint_count_66(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(count(X0,X1,X2,X3),arg=4))))
; (is_IntSet(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> gecode_constraint_count_60(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(count(X0,X1,X2,X3),arg=4)))
; (is_IntSetArgs(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_count_59(Y0,Y1,Y2,Y3)
; (is_IntArgs(X3,Y3)
-> gecode_constraint_count_56(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(count(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(count(X0,X1,X2,X3),arg=3)))))
; throw(gecode_argument_error(count(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(count(X0,X1,X2,X3),arg=1))).
sqrt(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_sqrt_346(Y0,Y1,Y2)
; throw(gecode_argument_error(sqrt(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(sqrt(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(sqrt(X0,X1,X2),arg=1))).
cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_117(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_115(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_113(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_111(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=5)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=4))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_109(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_107(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_105(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_cumulatives_103(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=5)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=4))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=3)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=2))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=1))).
nvalues(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_nvalues_254(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_nvalues_256(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_nvalues_250(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_nvalues_252(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3),arg=2))))
; throw(gecode_argument_error(nvalues(X0,X1,X2,X3),arg=1))).
binpacking(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> gecode_constraint_binpacking_10(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3),arg=1))).
linear(X0,X1,X2,X3,X4,X5,X6) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_linear_201(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; (is_IntVar(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_linear_205(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; (is_BoolVarArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_linear_193(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; (is_IntVar(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_linear_197(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=3))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=2)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5,X6),arg=1))).
abs(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_abs_2(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(abs(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(abs(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(abs(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(abs(X0,X1,X2,X3),arg=1))).
convex(X0,X1) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVar(X1,Y1)
-> gecode_constraint_convex_50(Y0,Y1)
; throw(gecode_argument_error(convex(X0,X1),arg=2)))
; throw(gecode_argument_error(convex(X0,X1),arg=1))).
div(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_div_122(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(div(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(div(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(div(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(div(X0,X1,X2,X3),arg=1))).
rel(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_rel_311(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_rel_315(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=4))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_IntSet(X1,Y1)
-> (is_SetOpType(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetRelType(X4,Y4)
-> (is_IntSet(X5,Y5)
-> gecode_constraint_rel_300(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_SetVar(X5,Y5)
-> gecode_constraint_rel_301(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_BoolVar(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_rel_289(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5)))
; (is_BoolVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_rel_285(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=4))))
; (is_BoolOpType(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> (is_int(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_rel_283(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6)))
; (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_rel_281(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=3))))
; (is_SetVar(X1,Y1)
-> (is_SetOpType(X2,Y2)
-> (is_IntSet(X3,Y3)
-> (is_SetRelType(X4,Y4)
-> (is_IntSet(X5,Y5)
-> gecode_constraint_rel_326(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_SetVar(X5,Y5)
-> gecode_constraint_rel_327(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5)))
; (is_SetVar(X3,Y3)
-> (is_SetRelType(X4,Y4)
-> (is_IntSet(X5,Y5)
-> gecode_constraint_rel_328(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_SetVar(X5,Y5)
-> gecode_constraint_rel_329(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=4))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=2))))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3,X4,X5),arg=1))).
weights(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_IntArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> gecode_constraint_weights_364(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(weights(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(weights(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(weights(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(weights(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(weights(X0,X1,X2,X3,X4),arg=1))).
max(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_max_219(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(max(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(max(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(max(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(max(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(max(X0,X1,X2,X3,X4),arg=1))).
path(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntVar(X5,Y5)
-> (is_IntVarArgs(X6,Y6)
-> (is_IntVar(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_path_263(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=6)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=3)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=2)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=1))).
unary(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_TaskTypeArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> gecode_constraint_unary_358(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(unary(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> gecode_constraint_unary_354(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(unary(X0,X1,X2,X3),arg=4)))
; (is_IntArgs(X2,Y2)
-> (is_BoolVarArgs(X3,Y3)
-> gecode_constraint_unary_348(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_unary_351(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(unary(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3),arg=3))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3),arg=2))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3),arg=1))).
sorted(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_sorted_341(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(sorted(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(sorted(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(sorted(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(sorted(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(sorted(X0,X1,X2,X3,X4),arg=1))).
circuit(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVar(X4,Y4)
-> gecode_constraint_circuit_40(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_circuit_37(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=5)))
; (is_IntVarArgs(X3,Y3)
-> (is_IntVar(X4,Y4)
-> gecode_constraint_circuit_34(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=3))))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4),arg=1))).
dom(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_dom_142(Y0,Y1,Y2,Y3)
; (is_BoolVar(X3,Y3)
-> gecode_constraint_dom_136(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_dom_141(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=4)))))
; (is_IntSet(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> gecode_constraint_dom_132(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_dom_135(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=3))))
; (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_dom_130(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_dom_129(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=4))))
; (is_IntSet(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_dom_127(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=3))))
; (is_SetVar(X1,Y1)
-> (is_SetRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_dom_146(Y0,Y1,Y2,Y3)
; (is_IntSet(X3,Y3)
-> gecode_constraint_dom_144(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=2)))))
; throw(gecode_argument_error(dom(X0,X1,X2,X3),arg=1))).
abs(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_abs_1(Y0,Y1,Y2)
; throw(gecode_argument_error(abs(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(abs(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(abs(X0,X1,X2),arg=1))).
channel(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_channel_29(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_channel_24(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=2))))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4),arg=1))).
rel(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> gecode_constraint_rel_304(Y0,Y1,Y2)
; throw(gecode_argument_error(rel(X0,X1,X2),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> gecode_constraint_rel_296(Y0,Y1,Y2)
; throw(gecode_argument_error(rel(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(rel(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(rel(X0,X1,X2),arg=1))).
path(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_path_266(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(path(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(path(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(path(X0,X1,X2,X3),arg=1))).
branch(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarBranch(X2,Y2)
-> (is_IntValBranch(X3,Y3)
-> gecode_constraint_branch_14(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVarBranch(X2,Y2)
-> (is_IntValBranch(X3,Y3)
-> gecode_constraint_branch_13(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=3)))
; (is_SetVarArgs(X1,Y1)
-> (is_SetVarBranch(X2,Y2)
-> (is_SetValBranch(X3,Y3)
-> gecode_constraint_branch_15(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=2)))))
; throw(gecode_argument_error(branch(X0,X1,X2,X3),arg=1))).
mult(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_mult_239(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(mult(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(mult(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(mult(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(mult(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(mult(X0,X1,X2,X3,X4),arg=1))).
circuit(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_circuit_41(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=6)))
; (is_IntVarArgs(X4,Y4)
-> (is_IntVar(X5,Y5)
-> gecode_constraint_circuit_38(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_circuit_35(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=3))))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=2)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5),arg=1))).
clause(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_BoolOpType(X1,Y1)
-> (is_BoolVarArgs(X2,Y2)
-> (is_BoolVarArgs(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_clause_48(Y0,Y1,Y2,Y3,Y4)
; (is_BoolVar(X4,Y4)
-> gecode_constraint_clause_46(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(clause(X0,X1,X2,X3,X4),arg=1))).
precede(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_precede_275(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(precede(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(precede(X0,X1,X2,X3),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_precede_272(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(precede(X0,X1,X2,X3),arg=4)))
; (is_IntArgs(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_precede_271(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(precede(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(precede(X0,X1,X2,X3),arg=3))))
; throw(gecode_argument_error(precede(X0,X1,X2,X3),arg=2))))
; throw(gecode_argument_error(precede(X0,X1,X2,X3),arg=1))).
channel(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_int(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_channel_30(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4,X5),arg=2)))
; throw(gecode_argument_error(channel(X0,X1,X2,X3,X4,X5),arg=1))).
cumulative(X0,X1,X2,X3,X4,X5,X6) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_TaskTypeArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> gecode_constraint_cumulative_86(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; (is_IntConLevel(X6,Y6)
-> gecode_constraint_cumulative_89(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=7))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> gecode_constraint_cumulative_82(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; (is_IntConLevel(X6,Y6)
-> gecode_constraint_cumulative_85(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=7))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_BoolVarArgs(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_cumulative_79(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=4))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=3))))
; (is_IntVar(X1,Y1)
-> (is_TaskTypeArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> gecode_constraint_cumulative_98(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; (is_IntConLevel(X6,Y6)
-> gecode_constraint_cumulative_101(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=7))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> gecode_constraint_cumulative_94(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; (is_IntConLevel(X6,Y6)
-> gecode_constraint_cumulative_97(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=7))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_BoolVarArgs(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_cumulative_91(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=4))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=3))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=2))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6),arg=1))).
distinct(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntConLevel(X2,Y2)
-> gecode_constraint_distinct_121(Y0,Y1,Y2)
; throw(gecode_argument_error(distinct(X0,X1,X2),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> gecode_constraint_distinct_118(Y0,Y1,Y2)
; throw(gecode_argument_error(distinct(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(distinct(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(distinct(X0,X1,X2),arg=1))).
member(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_member_227(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_BoolVar(X2,Y2)
-> (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_member_223(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=2))))
; throw(gecode_argument_error(member(X0,X1,X2,X3,X4),arg=1))).
mod(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_mod_236(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(mod(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(mod(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(mod(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(mod(X0,X1,X2,X3),arg=1))).
sqr(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_sqr_344(Y0,Y1,Y2)
; throw(gecode_argument_error(sqr(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(sqr(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(sqr(X0,X1,X2),arg=1))).
sequence(X0,X1,X2,X3,X4,X5,X6) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntSet(X2,Y2)
-> (is_int(X3,Y3)
-> (is_int(X4,Y4)
-> (is_int(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_sequence_337(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntSet(X2,Y2)
-> (is_int(X3,Y3)
-> (is_int(X4,Y4)
-> (is_int(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_sequence_335(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=2))))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5,X6),arg=1))).
path(X0,X1,X2,X3,X4,X5,X6) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntVar(X5,Y5)
-> (is_IntVar(X6,Y6)
-> gecode_constraint_path_264(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntVar(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_path_261(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; (is_IntVarArgs(X5,Y5)
-> (is_IntVar(X6,Y6)
-> gecode_constraint_path_258(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=6))))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=3))))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=2)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6),arg=1))).
divmod(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_divmod_125(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4,X5),arg=2)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4,X5),arg=1))).
sorted(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> gecode_constraint_sorted_342(Y0,Y1,Y2)
; throw(gecode_argument_error(sorted(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(sorted(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(sorted(X0,X1,X2),arg=1))).
circuit(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> gecode_constraint_circuit_44(Y0,Y1,Y2)
; throw(gecode_argument_error(circuit(X0,X1,X2),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntConLevel(X2,Y2)
-> gecode_constraint_circuit_43(Y0,Y1,Y2)
; throw(gecode_argument_error(circuit(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(circuit(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(circuit(X0,X1,X2),arg=1))).
channel(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_BoolVar(X2,Y2)
-> gecode_constraint_channel_31(Y0,Y1,Y2)
; throw(gecode_argument_error(channel(X0,X1,X2),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_SetVarArgs(X2,Y2)
-> gecode_constraint_channel_28(Y0,Y1,Y2)
; (is_IntVarArgs(X2,Y2)
-> gecode_constraint_channel_26(Y0,Y1,Y2)
; throw(gecode_argument_error(channel(X0,X1,X2),arg=3))))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_channel_22(Y0,Y1,Y2)
; (is_SetVar(X2,Y2)
-> gecode_constraint_channel_25(Y0,Y1,Y2)
; throw(gecode_argument_error(channel(X0,X1,X2),arg=3))))
; (is_BoolVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_channel_20(Y0,Y1,Y2)
; throw(gecode_argument_error(channel(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(channel(X0,X1,X2),arg=2))))))
; throw(gecode_argument_error(channel(X0,X1,X2),arg=1))).
count(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_count_52(Y0,Y1,Y2,Y3,Y4)
; (is_IntVar(X4,Y4)
-> gecode_constraint_count_54(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=4)))
; (is_int(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_count_70(Y0,Y1,Y2,Y3,Y4)
; (is_IntVar(X4,Y4)
-> gecode_constraint_count_72(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=4)))
; (is_IntSet(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_count_62(Y0,Y1,Y2,Y3,Y4)
; (is_IntVar(X4,Y4)
-> gecode_constraint_count_64(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=5))))
; (is_IntArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_count_61(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=4))))
; (is_IntSetArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_count_57(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_count_67(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=4)))
; (is_IntVar(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_count_74(Y0,Y1,Y2,Y3,Y4)
; (is_IntVar(X4,Y4)
-> gecode_constraint_count_76(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=3))))))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4),arg=1))).
cumulatives(X0,X1,X2,X3,X4,X5,X6,X7) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_116(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_114(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_112(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_110(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=4))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_108(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_106(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_104(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; (is_IntArgs(X5,Y5)
-> (is_IntArgs(X6,Y6)
-> (is_bool(X7,Y7)
-> gecode_constraint_cumulatives_102(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=6))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=4))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=3)))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=2))))
; throw(gecode_argument_error(cumulatives(X0,X1,X2,X3,X4,X5,X6,X7),arg=1))).
binpacking(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_binpacking_11(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(binpacking(X0,X1,X2,X3,X4),arg=1))).
linear(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_209(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_213(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=4))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_185(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_189(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=4))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> gecode_constraint_linear_200(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_203(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6))))
; (is_IntVar(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> gecode_constraint_linear_204(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_207(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_BoolVarArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> gecode_constraint_linear_192(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_195(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6))))
; (is_IntVar(X4,Y4)
-> (is_BoolVar(X5,Y5)
-> gecode_constraint_linear_196(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_IntConLevel(X5,Y5)
-> gecode_constraint_linear_199(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=3))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=2)))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4,X5),arg=1))).
nooverlap(X0,X1,X2,X3,X4,X5,X6) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntVarArgs(X6,Y6)
-> gecode_constraint_nooverlap_246(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; (is_IntArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_BoolVarArgs(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_nooverlap_241(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=3))))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=2)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6),arg=1))).
div(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_div_123(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(div(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(div(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(div(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(div(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(div(X0,X1,X2,X3,X4),arg=1))).
sqr(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_sqr_345(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(sqr(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(sqr(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(sqr(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(sqr(X0,X1,X2,X3),arg=1))).
path(X0,X1,X2,X3,X4,X5,X6,X7) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntVar(X5,Y5)
-> (is_IntVar(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_path_265(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; (is_IntVarArgs(X6,Y6)
-> (is_IntVar(X7,Y7)
-> gecode_constraint_path_262(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=7))))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntVar(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_path_259(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=3))))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=2)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5,X6,X7),arg=1))).
unary(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_TaskTypeArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> (is_BoolVarArgs(X4,Y4)
-> gecode_constraint_unary_356(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_unary_359(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_BoolVarArgs(X4,Y4)
-> gecode_constraint_unary_352(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_unary_355(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=4)))
; (is_IntArgs(X2,Y2)
-> (is_BoolVarArgs(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_unary_349(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=3))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=2))))
; throw(gecode_argument_error(unary(X0,X1,X2,X3,X4),arg=1))).
sorted(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> gecode_constraint_sorted_340(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_sorted_343(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(sorted(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(sorted(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(sorted(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(sorted(X0,X1,X2,X3),arg=1))).
element(X0,X1,X2,X3,X4,X5,X6,X7) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_IntVar(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_element_161(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_BoolVar(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_element_155(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_int(X5,Y5)
-> (is_IntVar(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_element_173(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; (is_BoolVar(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_element_171(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=7))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=3)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=2)))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5,X6,X7),arg=1))).
element(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_element_159(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_element_163(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_element_153(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_element_151(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=3)))
; (is_SetOpType(X1,Y1)
-> (is_SetVarArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> gecode_constraint_element_182(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> gecode_constraint_element_180(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=4)))
; (is_IntSetArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> gecode_constraint_element_178(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=4)))
; (is_IntArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> gecode_constraint_element_176(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=3))))))
; (is_IntArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_int(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_element_169(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_element_175(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; (is_BoolVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_element_167(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=4)))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=2))))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4),arg=1))).
sequence(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVarArgs(X1,Y1)
-> (is_SetVar(X2,Y2)
-> gecode_constraint_sequence_339(Y0,Y1,Y2)
; throw(gecode_argument_error(sequence(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(sequence(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(sequence(X0,X1,X2),arg=1))).
circuit(X0,X1,X2,X3,X4,X5,X6) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVar(X5,Y5)
-> (is_IntConLevel(X6,Y6)
-> gecode_constraint_circuit_39(Y0,Y1,Y2,Y3,Y4,Y5,Y6)
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5,X6),arg=7)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5,X6),arg=6)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5,X6),arg=5)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5,X6),arg=4)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5,X6),arg=3)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5,X6),arg=2)))
; throw(gecode_argument_error(circuit(X0,X1,X2,X3,X4,X5,X6),arg=1))).
precede(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVarArgs(X1,Y1)
-> (is_IntArgs(X2,Y2)
-> gecode_constraint_precede_274(Y0,Y1,Y2)
; throw(gecode_argument_error(precede(X0,X1,X2),arg=3)))
; (is_IntVarArgs(X1,Y1)
-> (is_IntArgs(X2,Y2)
-> gecode_constraint_precede_270(Y0,Y1,Y2)
; throw(gecode_argument_error(precede(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(precede(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(precede(X0,X1,X2),arg=1))).
cumulative(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_TaskTypeArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> gecode_constraint_cumulative_88(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> gecode_constraint_cumulative_84(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_BoolVarArgs(X5,Y5)
-> gecode_constraint_cumulative_78(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_IntConLevel(X5,Y5)
-> gecode_constraint_cumulative_81(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=4))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=3))))
; (is_IntVar(X1,Y1)
-> (is_TaskTypeArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> gecode_constraint_cumulative_100(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> gecode_constraint_cumulative_96(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=5)))
; (is_IntArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_BoolVarArgs(X5,Y5)
-> gecode_constraint_cumulative_90(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_IntConLevel(X5,Y5)
-> gecode_constraint_cumulative_93(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=4))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=3))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=2))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5),arg=1))).
distinct(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_distinct_119(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(distinct(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(distinct(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(distinct(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(distinct(X0,X1,X2,X3),arg=1))).
min(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_min_230(Y0,Y1,Y2)
; throw(gecode_argument_error(min(X0,X1,X2),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_min_234(Y0,Y1,Y2)
; throw(gecode_argument_error(min(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(min(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(min(X0,X1,X2),arg=1))).
sqrt(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntConLevel(X3,Y3)
-> gecode_constraint_sqrt_347(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(sqrt(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(sqrt(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(sqrt(X0,X1,X2,X3),arg=2)))
; throw(gecode_argument_error(sqrt(X0,X1,X2,X3),arg=1))).
sequence(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntSet(X2,Y2)
-> (is_int(X3,Y3)
-> (is_int(X4,Y4)
-> (is_int(X5,Y5)
-> gecode_constraint_sequence_336(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntSet(X2,Y2)
-> (is_int(X3,Y3)
-> (is_int(X4,Y4)
-> (is_int(X5,Y5)
-> gecode_constraint_sequence_334(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=2))))
; throw(gecode_argument_error(sequence(X0,X1,X2,X3,X4,X5),arg=1))).
unshare(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntConLevel(X2,Y2)
-> gecode_constraint_unshare_363(Y0,Y1,Y2)
; throw(gecode_argument_error(unshare(X0,X1,X2),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntConLevel(X2,Y2)
-> gecode_constraint_unshare_361(Y0,Y1,Y2)
; throw(gecode_argument_error(unshare(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(unshare(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(unshare(X0,X1,X2),arg=1))).
path(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_path_269(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> (is_IntVar(X5,Y5)
-> gecode_constraint_path_260(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=2))))
; throw(gecode_argument_error(path(X0,X1,X2,X3,X4,X5),arg=1))).
divmod(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntVar(X4,Y4)
-> gecode_constraint_divmod_124(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(divmod(X0,X1,X2,X3,X4),arg=1))).
nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntVarArgs(X5,Y5)
-> (is_IntVarArgs(X6,Y6)
-> (is_BoolVarArgs(X7,Y7)
-> (is_IntConLevel(X8,Y8)
-> gecode_constraint_nooverlap_245(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8)
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=9)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=8)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=7)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=6)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=5)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=4)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=3)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=2)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5,X6,X7,X8),arg=1))).
cumulative(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> gecode_constraint_cumulative_80(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=3)))
; (is_IntVar(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> gecode_constraint_cumulative_92(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=2))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4),arg=1))).
member(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_member_228(Y0,Y1,Y2)
; throw(gecode_argument_error(member(X0,X1,X2),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_BoolVar(X2,Y2)
-> gecode_constraint_member_224(Y0,Y1,Y2)
; throw(gecode_argument_error(member(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(member(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(member(X0,X1,X2),arg=1))).
count(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_71(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_73(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntVar(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_75(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_77(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntSet(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_63(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_65(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_53(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; (is_IntVar(X4,Y4)
-> (is_IntConLevel(X5,Y5)
-> gecode_constraint_count_55(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=5))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=3))))))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=2)))
; throw(gecode_argument_error(count(X0,X1,X2,X3,X4,X5),arg=1))).
notMin(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> gecode_constraint_notMin_249(Y0,Y1,Y2)
; throw(gecode_argument_error(notMin(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(notMin(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(notMin(X0,X1,X2),arg=1))).
cumulative(X0,X1,X2,X3,X4,X5,X6,X7) :-
(is_Space_or_Clause(X0,Y0)
-> (is_int(X1,Y1)
-> (is_TaskTypeArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_cumulative_87(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_cumulative_83(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=3))))
; (is_IntVar(X1,Y1)
-> (is_TaskTypeArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_cumulative_99(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntVarArgs(X4,Y4)
-> (is_IntArgs(X5,Y5)
-> (is_BoolVarArgs(X6,Y6)
-> (is_IntConLevel(X7,Y7)
-> gecode_constraint_cumulative_95(Y0,Y1,Y2,Y3,Y4,Y5,Y6,Y7)
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=8)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=7)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=6)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=5)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=4)))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=3))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=2))))
; throw(gecode_argument_error(cumulative(X0,X1,X2,X3,X4,X5,X6,X7),arg=1))).
branch(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntValBranch(X2,Y2)
-> gecode_constraint_branch_16(Y0,Y1,Y2)
; throw(gecode_argument_error(branch(X0,X1,X2),arg=3)))
; (is_BoolVar(X1,Y1)
-> (is_IntValBranch(X2,Y2)
-> gecode_constraint_branch_12(Y0,Y1,Y2)
; throw(gecode_argument_error(branch(X0,X1,X2),arg=3)))
; (is_SetVar(X1,Y1)
-> (is_SetValBranch(X2,Y2)
-> gecode_constraint_branch_17(Y0,Y1,Y2)
; throw(gecode_argument_error(branch(X0,X1,X2),arg=3)))
; throw(gecode_argument_error(branch(X0,X1,X2),arg=2)))))
; throw(gecode_argument_error(branch(X0,X1,X2),arg=1))).
dom(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_int(X2,Y2)
-> gecode_constraint_dom_140(Y0,Y1,Y2)
; (is_IntSet(X2,Y2)
-> gecode_constraint_dom_134(Y0,Y1,Y2)
; throw(gecode_argument_error(dom(X0,X1,X2),arg=3))))
; (is_IntVarArgs(X1,Y1)
-> (is_int(X2,Y2)
-> gecode_constraint_dom_128(Y0,Y1,Y2)
; (is_IntSet(X2,Y2)
-> gecode_constraint_dom_126(Y0,Y1,Y2)
; throw(gecode_argument_error(dom(X0,X1,X2),arg=3))))
; throw(gecode_argument_error(dom(X0,X1,X2),arg=2))))
; throw(gecode_argument_error(dom(X0,X1,X2),arg=1))).
linear(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_linear_208(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_linear_211(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=5))))
; (is_IntVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_linear_212(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_linear_215(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_linear_184(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_linear_187(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=5))))
; (is_IntVar(X3,Y3)
-> (is_BoolVar(X4,Y4)
-> gecode_constraint_linear_188(Y0,Y1,Y2,Y3,Y4)
; (is_IntConLevel(X4,Y4)
-> gecode_constraint_linear_191(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=4))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=3)))
; (is_IntArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_linear_202(Y0,Y1,Y2,Y3,Y4)
; (is_IntVar(X4,Y4)
-> gecode_constraint_linear_206(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=4)))
; (is_BoolVarArgs(X2,Y2)
-> (is_IntRelType(X3,Y3)
-> (is_int(X4,Y4)
-> gecode_constraint_linear_194(Y0,Y1,Y2,Y3,Y4)
; (is_IntVar(X4,Y4)
-> gecode_constraint_linear_198(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=5))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=3))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=2)))))
; throw(gecode_argument_error(linear(X0,X1,X2,X3,X4),arg=1))).
nooverlap(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntArgs(X2,Y2)
-> (is_IntVarArgs(X3,Y3)
-> (is_IntArgs(X4,Y4)
-> (is_BoolVarArgs(X5,Y5)
-> gecode_constraint_nooverlap_240(Y0,Y1,Y2,Y3,Y4,Y5)
; (is_IntConLevel(X5,Y5)
-> gecode_constraint_nooverlap_243(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5),arg=6))))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5),arg=3)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5),arg=2)))
; throw(gecode_argument_error(nooverlap(X0,X1,X2,X3,X4,X5),arg=1))).
element(X0,X1,X2,X3,X4,X5) :-
(is_Space_or_Clause(X0,Y0)
-> (is_SetOpType(X1,Y1)
-> (is_SetVarArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> (is_IntSet(X5,Y5)
-> gecode_constraint_element_183(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> (is_IntSet(X5,Y5)
-> gecode_constraint_element_181(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntSetArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> (is_IntSet(X5,Y5)
-> gecode_constraint_element_179(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=4)))
; (is_IntArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> (is_SetVar(X4,Y4)
-> (is_IntSet(X5,Y5)
-> gecode_constraint_element_177(Y0,Y1,Y2,Y3,Y4,Y5)
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=6)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=5)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=4)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=3))))))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=2)))
; throw(gecode_argument_error(element(X0,X1,X2,X3,X4,X5),arg=1))).
rel(X0,X1,X2,X3) :-
(is_Space_or_Clause(X0,Y0)
-> (is_BoolVar(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_rel_290(Y0,Y1,Y2,Y3)
; (is_BoolVar(X3,Y3)
-> gecode_constraint_rel_286(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=3)))
; (is_BoolVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_rel_298(Y0,Y1,Y2,Y3)
; (is_BoolVarArgs(X3,Y3)
-> gecode_constraint_rel_294(Y0,Y1,Y2,Y3)
; (is_BoolVar(X3,Y3)
-> gecode_constraint_rel_292(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_rel_297(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4))))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=3)))
; (is_SetOpType(X1,Y1)
-> (is_SetVarArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> gecode_constraint_rel_324(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4)))
; (is_IntVarArgs(X2,Y2)
-> (is_SetVar(X3,Y3)
-> gecode_constraint_rel_322(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=3))))
; (is_IntVarArgs(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_rel_306(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_rel_308(Y0,Y1,Y2,Y3)
; (is_IntVarArgs(X3,Y3)
-> gecode_constraint_rel_302(Y0,Y1,Y2,Y3)
; (is_IntConLevel(X3,Y3)
-> gecode_constraint_rel_305(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4))))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=3)))
; (is_IntVar(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_rel_312(Y0,Y1,Y2,Y3)
; (is_IntVar(X3,Y3)
-> gecode_constraint_rel_316(Y0,Y1,Y2,Y3)
; (is_SetVar(X3,Y3)
-> gecode_constraint_rel_318(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4)))))
; (is_SetRelType(X2,Y2)
-> (is_SetVar(X3,Y3)
-> gecode_constraint_rel_319(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=3))))
; (is_SetVar(X1,Y1)
-> (is_IntRelType(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_rel_325(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4)))
; (is_SetRelType(X2,Y2)
-> (is_IntVar(X3,Y3)
-> gecode_constraint_rel_330(Y0,Y1,Y2,Y3)
; (is_SetVar(X3,Y3)
-> gecode_constraint_rel_332(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=3))))
; (is_BoolOpType(X1,Y1)
-> (is_BoolVarArgs(X2,Y2)
-> (is_int(X3,Y3)
-> gecode_constraint_rel_278(Y0,Y1,Y2,Y3)
; (is_BoolVar(X3,Y3)
-> gecode_constraint_rel_276(Y0,Y1,Y2,Y3)
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=4))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=3)))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=2)))))))))
; throw(gecode_argument_error(rel(X0,X1,X2,X3),arg=1))).
min(X0,X1,X2,X3,X4) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVar(X1,Y1)
-> (is_IntVar(X2,Y2)
-> (is_IntVar(X3,Y3)
-> (is_IntConLevel(X4,Y4)
-> gecode_constraint_min_233(Y0,Y1,Y2,Y3,Y4)
; throw(gecode_argument_error(min(X0,X1,X2,X3,X4),arg=5)))
; throw(gecode_argument_error(min(X0,X1,X2,X3,X4),arg=4)))
; throw(gecode_argument_error(min(X0,X1,X2,X3,X4),arg=3)))
; throw(gecode_argument_error(min(X0,X1,X2,X3,X4),arg=2)))
; throw(gecode_argument_error(min(X0,X1,X2,X3,X4),arg=1))).
count(X0,X1,X2) :-
(is_Space_or_Clause(X0,Y0)
-> (is_IntVarArgs(X1,Y1)
-> (is_IntVarArgs(X2,Y2)
-> gecode_constraint_count_68(Y0,Y1,Y2)
; (is_IntSetArgs(X2,Y2)
-> gecode_constraint_count_58(Y0,Y1,Y2)
; throw(gecode_argument_error(count(X0,X1,X2),arg=3))))
; throw(gecode_argument_error(count(X0,X1,X2),arg=2)))
; throw(gecode_argument_error(count(X0,X1,X2),arg=1))).
| Prolog | 4 | ryandesign/yap | packages/gecode/3.7.3/gecode_yap_auto_generated.yap | [
"Artistic-1.0-Perl",
"ClArtistic"
] |
#!/usr/bin/env bash
echo "Install SDKMan"
sudo apt-get update
sudo apt-get install unzip zip -y
sudo curl -s get.sdkman.io | bash
sudo source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk version
echo "Install Spring Dependencies"
sudo sdk install groovy
sudo sdk install java
sudo sdk install maven
echo "Install Spring Boot"
sudo sdk install springboot
spring --version
# Spring Boot CLI Proper
# sdk install springboot dev /path/to/spring-boot/spring-boot-cli/target/spring-boot-cli-2.0.0.RELEASE-bin/spring-2.0.0.RELEASE/
# sdk default springboot dev
# spring --version
| Shell | 3 | zeesh49/tutorials | spring-boot-cli/bash/setup.sh | [
"MIT"
] |
use Datascope;
if( $#ARGV != 0 ) { die("Usage: $0 dbname\n" );}
@db = dbopen($ARGV[0], "r+" );
@db = dblookup( @db, "", "origin", "", "" );
$nrecs = dbquery( @db, "dbRECORD_COUNT" );
$jdate_old = -1;
$count = 0;
for( $db[3]=0; $db[3]<$nrecs; $db[3]++ ) {
($jdate) = dbgetv( @db, "jdate" );
if( $jdate != $jdate_old ) {
$jdate_old = $jdate;
$count = 1;
} else {
++$count;
}
$orid = ($jdate - 1900000)*1000 + $count;
print "$jdate $count $orid\n";
dbputv( @db, "orid", $orid );
}
| XProc | 3 | jreyes1108/antelope_contrib | nobuild/bin/import/set_pde_orids/set_pde_orids.xpl | [
"BSD-2-Clause",
"MIT"
] |
/* Copyright (C) 1989, 1991, California Institute of Technology.
U. S. Government Sponsorship under NASA Contract NAS7-918
is acknowledged. */
/*
* $Log: twsys.dcl,v $
Revision 1.4 91/12/27 08:50:34 reiher
Added declaration of findPhaseInDeadQ
Revision 1.3 91/07/17 15:15:02 judy
New copyright notice.
Revision 1.2 91/07/17 09:05:54 configtw
Fix for redefinition of bytcmp() on Sun4.
Revision 1.1 90/08/07 15:41:38 configtw
Initial revision
*/
#ifdef BF_PLUS /* Unfortunate kludge because of illegal */
#define BBN /* redefinitions if we include 'machdep.h */
#endif /* and stdio.h'. */
#ifdef BF_MACH
#define BBN
#endif
FUNCTION List_hdr * l_create () ;
FUNCTION List_hdr * l_hcreate () ;
FUNCTION List_hdr * l_next () ;
FUNCTION List_hdr * l_prev () ;
FUNCTION List_hdr * l_remove () ;
FUNCTION Byte * m_allocate () ;
FUNCTION Char *strcat () ;
FUNCTION Char *strchr () ;
FUNCTION Char *strcpy () ;
FUNCTION Char *strncat () ;
FUNCTION Char *strncpy () ;
FUNCTION Char *strrchr () ;
FUNCTION Char *itoa ();
FUNCTION char toupper();
FUNCTION int ocbcmp ();
FUNCTION int uidcmp ();
#if !SUN4
FUNCTION int bytcmp ();
#endif
FUNCTION int imcmp ();
FUNCTION int omcmp ();
FUNCTION int priocmp ();
FUNCTION int statecmp ();
FUNCTION Msgh * mkimsg () ;
FUNCTION Msgh * mkomsg () ;
FUNCTION Msgh * make_message ();
FUNCTION Msgh * make_static_msg() ;
FUNCTION Msgh * nthgrp () ;
FUNCTION Mem_hdr * m_memory () ;
FUNCTION Msgh * get_memory_or_denymsg();
FUNCTION Msgh * next_unprocessed_message () ;
FUNCTION Msgh * earliest_later_inputbundle () ;
FUNCTION Msgh * specified_outputbundle () ;
FUNCTION Msgh * fstactivegb () ;
FUNCTION Byte * m_create () ;
FUNCTION Msgh * msgfind () ;
FUNCTION Msgh * fstigb () ;
FUNCTION Msgh * nxtimg () ;
FUNCTION Msgh * nxtigb () ;
FUNCTION Msgh * nxtibq () ;
FUNCTION Msgh * prvigb () ;
FUNCTION Msgh * prvibq () ;
FUNCTION Msgh * fstomb () ;
FUNCTION Msgh * nxtomb () ;
FUNCTION Msgh * nxtobq () ;
FUNCTION Msgh * nxtomg () ;
FUNCTION Msgh * prvobq () ;
FUNCTION Byte * find () ;
FUNCTION Msgh * sysbuf () ;
FUNCTION Msgh * output_buf ();
FUNCTION Ocb * mkocb () ;
FUNCTION State * latest_earlier_state () ;
FUNCTION State * mk_savedstate () ;
FUNCTION State * mk_workingstate () ;
FUNCTION State * statefind () ;
FUNCTION Typtbl * find_object_type () ;
FUNCTION int l_maxelt () ;
FUNCTION int m_available () ;
FUNCTION int m_contiguous () ;
FUNCTION int m_next () ;
FUNCTION int percent_free () ;
FUNCTION int percent_used () ;
FUNCTION long bytes_free () ;
FUNCTION long uniq () ;
FUNCTION Objloc *Replace();
FUNCTION Objloc *GetLocation();
FUNCTION Cache_entry *FindInCache();
FUNCTION Cache_entry *CacheReplace();
FUNCTION Cache_entry *ChoosePosition();
FUNCTION Pending_entry *FindInPendingList();
FUNCTION int NullRestart();
FUNCTION int FinishDeliver();
FUNCTION struct HomeList_str *FindInHomeList();
FUNCTION struct HomeList_str *AddToHomeList();
FUNCTION Ocb * FindInSchedQueue();
FUNCTION Ocb * MakeObject();
FUNCTION Ocb * createproc();
FUNCTION Typtbl * ChangeType();
#ifndef MARK3
FUNCTION long clock () ;
#endif
VTime migr_min ();
VTime MinPendingList ();
#ifdef BBN
VTime butterfly_min ();
#endif
FUNCTION Ocb * split_object ();
FUNCTION Ocb * splitNearFuture ();
FUNCTION Ocb * splitMinimal ();
FUNCTION Ocb * splitLimitEMsgs ();
struct HomeList_str *SplitHomeListEntry();
FUNCTION Ocb * bestFit ();
FUNCTION Ocb * nextBestFit ();
float calculateUtilization() ;
Ocb *chooseObject();
FUNCTION deadOcb * findPhaseInDeadQ ();
| Clean | 2 | rebcabin/colliding-pucks | historical implementations/TWOS/TWOS Source Code/tape-contents/twcur/tw/twsys.dcl | [
"MIT"
] |
#pragma once
#include <torch/csrc/WindowsTorchApiMacro.h>
#include <torch/csrc/jit/api/module.h>
#include <cstdint>
namespace torch {
namespace jit {
// Maps the given symbol into an implementation of its behavior at the
// given version.
// See note [Versioned Symbols]
TORCH_API Symbol
get_symbol_for_version(const Symbol name, const uint64_t version);
// Maps the given kind to the minimum version that supports it.
// See note [Dynamic Versions and torch.jit.save vs. torch.save]
TORCH_API uint64_t get_min_version_for_kind(const NodeKind& kind);
} // namespace jit
} // namespace torch
| C | 4 | Hacky-DH/pytorch | torch/csrc/jit/frontend/versioned_symbols.h | [
"Intel"
] |
use "lib:small-finalisers-additional"
use @codegentest_small_finalisers_increment_num_objects[None]()
class _Final
fun _final() =>
@codegentest_small_finalisers_increment_num_objects()
actor Main
new create(env: Env) =>
var i: U64 = 0
while i < 42 do
_Final
i = i + 1
end
| Pony | 2 | rtpax/ponyc | test/libponyc-run/small-finalisers/main.pony | [
"BSD-2-Clause"
] |
/// <reference path='fourslash.ts' />
////export function complex(item: string, another: string, ...rest: [] | [settings: object, errorHandler: (err: Error) => void] | [errorHandler: (err: Error) => void, ...mixins: object[]]) {
////
////}
////
////complex(/*1*/);
////complex("ok", "ok", /*2*/);
////complex("ok", "ok", e => void e, {}, /*3*/);
verify.signatureHelp(
{
marker: "1",
text: "complex(item: string, another: string): void",
overloadsCount: 3,
parameterCount: 2,
parameterName: "item",
parameterSpan: "item: string",
isVariadic: false,
},
{
marker: "2",
text: "complex(item: string, another: string, settings: object, errorHandler: (err: Error) => void): void",
overloadsCount: 3,
parameterCount: 4,
parameterName: "settings",
parameterSpan: "settings: object",
isVariadic: false,
},
{
marker: "3",
text: "complex(item: string, another: string, errorHandler: (err: Error) => void, ...mixins: object[]): void",
overloadsCount: 3,
isVariadic: true,
},
);
| TypeScript | 5 | monciego/TypeScript | tests/cases/fourslash/signatureHelpExpandedRestTuples.ts | [
"Apache-2.0"
] |
func returns_tuple() : (Nat, Nat) = (1,2);
assert ((if true { returns_tuple() } else { returns_tuple() }) == (1,2));
| Modelica | 4 | ulan/motoko | test/run/multi-value.mo | [
"Apache-2.0"
] |
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Samuel Attard <samuel.r.attard@gmail.com>
Date: Wed, 14 Apr 2021 17:19:23 -0700
Subject: add setter for BrowserMainLoop::result_code_
After a recent refactor
(https://chromium-review.googlesource.com/c/chromium/src/+/2725153) the
result_code_ pointer is no longer provided to embedders, but their are
valid use cases for setting custom exit codes of the main loop. This
exposes a simple setter that embedders can call.
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
index 5d41104a616c53d93ff8eb68ce2f87b1c2be7025..21223accc340242d2e0e301e92d7dafd01023e23 100644
--- a/content/browser/browser_main_loop.h
+++ b/content/browser/browser_main_loop.h
@@ -161,6 +161,10 @@ class CONTENT_EXPORT BrowserMainLoop {
int GetResultCode() const { return result_code_; }
+ void SetResultCode(int code) {
+ result_code_ = code;
+ }
+
media::AudioManager* audio_manager() const;
bool AudioServiceOutOfProcess() const;
media::AudioSystem* audio_system() const { return audio_system_.get(); }
| Diff | 3 | tylerkahn/electron | patches/chromium/add_setter_for_browsermainloop_result_code.patch | [
"MIT"
] |
/* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
// Functions to read images in GIF format.
#include "tensorflow/core/lib/gif/gif_io.h"
#include <algorithm>
#include "absl/strings/str_cat.h"
#include "tensorflow/core/lib/gtl/cleanup.h"
#include "tensorflow/core/platform/gif.h"
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/mem.h"
#include "tensorflow/core/platform/types.h"
namespace tensorflow {
namespace gif {
struct InputBufferInfo {
const uint8_t* buf;
int bytes_left;
};
int input_callback(GifFileType* gif_file, GifByteType* buf, int size) {
InputBufferInfo* const info =
reinterpret_cast<InputBufferInfo*>(gif_file->UserData);
if (info != nullptr) {
if (size > info->bytes_left) size = info->bytes_left;
memcpy(buf, info->buf, size);
info->buf += size;
info->bytes_left -= size;
return size;
}
return 0;
}
static const char* GifErrorStringNonNull(int error_code) {
const char* error_string = GifErrorString(error_code);
if (error_string == nullptr) {
return "Unknown error";
}
return error_string;
}
uint8* Decode(const void* srcdata, int datasize,
const std::function<uint8*(int, int, int, int)>& allocate_output,
string* error_string, bool expand_animations) {
int error_code = D_GIF_SUCCEEDED;
InputBufferInfo info = {reinterpret_cast<const uint8*>(srcdata), datasize};
GifFileType* gif_file =
DGifOpen(static_cast<void*>(&info), &input_callback, &error_code);
const auto cleanup = gtl::MakeCleanup([gif_file]() {
int error_code = D_GIF_SUCCEEDED;
if (gif_file && DGifCloseFile(gif_file, &error_code) != GIF_OK) {
LOG(WARNING) << "Fail to close gif file, reason: "
<< GifErrorStringNonNull(error_code);
}
});
if (error_code != D_GIF_SUCCEEDED) {
*error_string = absl::StrCat("failed to open gif file: ",
GifErrorStringNonNull(error_code));
return nullptr;
}
if (DGifSlurp(gif_file) != GIF_OK) {
*error_string = absl::StrCat("failed to slurp gif file: ",
GifErrorStringNonNull(gif_file->Error));
return nullptr;
}
if (gif_file->ImageCount <= 0) {
*error_string = "gif file does not contain any image";
return nullptr;
}
int target_num_frames = gif_file->ImageCount;
// Don't request more memory than needed for each frame, preventing OOM
int max_frame_width = 0;
int max_frame_height = 0;
for (int k = 0; k < target_num_frames; k++) {
SavedImage* si = &gif_file->SavedImages[k];
if (max_frame_height < si->ImageDesc.Height)
max_frame_height = si->ImageDesc.Height;
if (max_frame_width < si->ImageDesc.Width)
max_frame_width = si->ImageDesc.Width;
}
const int width = max_frame_width;
const int height = max_frame_height;
const int channel = 3;
if (!expand_animations) target_num_frames = 1;
uint8* const dstdata =
allocate_output(target_num_frames, width, height, channel);
if (!dstdata) return nullptr;
for (int k = 0; k < target_num_frames; k++) {
uint8* this_dst = dstdata + k * width * channel * height;
SavedImage* this_image = &gif_file->SavedImages[k];
GifImageDesc* img_desc = &this_image->ImageDesc;
// The Graphics Control Block tells us which index in the color map
// correspond to "transparent color", i.e. no need to update the pixel
// on the canvas. The "transparent color index" is specific to each
// sub-frame.
GraphicsControlBlock gcb;
DGifSavedExtensionToGCB(gif_file, k, &gcb);
int imgLeft = img_desc->Left;
int imgTop = img_desc->Top;
int imgRight = img_desc->Left + img_desc->Width;
int imgBottom = img_desc->Top + img_desc->Height;
if (k > 0) {
uint8* last_dst = dstdata + (k - 1) * width * channel * height;
for (int i = 0; i < height; ++i) {
uint8* p_dst = this_dst + i * width * channel;
uint8* l_dst = last_dst + i * width * channel;
for (int j = 0; j < width; ++j) {
p_dst[j * channel + 0] = l_dst[j * channel + 0];
p_dst[j * channel + 1] = l_dst[j * channel + 1];
p_dst[j * channel + 2] = l_dst[j * channel + 2];
}
}
}
if (img_desc->Left != 0 || img_desc->Top != 0 || img_desc->Width != width ||
img_desc->Height != height) {
// If the first frame does not fill the entire canvas then fill the
// unoccupied canvas with zeros (black).
if (k == 0) {
for (int i = 0; i < height; ++i) {
uint8* p_dst = this_dst + i * width * channel;
for (int j = 0; j < width; ++j) {
p_dst[j * channel + 0] = 0;
p_dst[j * channel + 1] = 0;
p_dst[j * channel + 2] = 0;
}
}
}
imgLeft = std::max(imgLeft, 0);
imgTop = std::max(imgTop, 0);
imgRight = std::min(imgRight, width);
imgBottom = std::min(imgBottom, height);
}
ColorMapObject* color_map = this_image->ImageDesc.ColorMap
? this_image->ImageDesc.ColorMap
: gif_file->SColorMap;
if (color_map == nullptr) {
*error_string = absl::StrCat("missing color map for frame ", k);
return nullptr;
}
for (int i = imgTop; i < imgBottom; ++i) {
uint8* p_dst = this_dst + i * width * channel;
for (int j = imgLeft; j < imgRight; ++j) {
GifByteType color_index =
this_image->RasterBits[(i - img_desc->Top) * (img_desc->Width) +
(j - img_desc->Left)];
if (color_index >= color_map->ColorCount) {
*error_string = absl::StrCat("found color index ", color_index,
" outside of color map range ",
color_map->ColorCount);
return nullptr;
}
if (color_index == gcb.TransparentColor) {
// Use the pixel from the previous frame. In other words, no need to
// update our canvas for this pixel.
continue;
}
const GifColorType& gif_color = color_map->Colors[color_index];
p_dst[j * channel + 0] = gif_color.Red;
p_dst[j * channel + 1] = gif_color.Green;
p_dst[j * channel + 2] = gif_color.Blue;
}
}
}
return dstdata;
}
} // namespace gif
} // namespace tensorflow
| C++ | 4 | EricRemmerswaal/tensorflow | tensorflow/core/lib/gif/gif_io.cc | [
"Apache-2.0"
] |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
<g class="nc-icon-wrapper" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="#000000" stroke="#000000"><line fill="none" stroke="#000000" stroke-miterlimit="10" x1="14" y1="4" x2="23" y2="4"/> <line fill="none" stroke="#000000" stroke-miterlimit="10" x1="1" y1="4" x2="4" y2="4"/> <line data-color="color-2" fill="none" stroke-miterlimit="10" x1="22" y1="12" x2="23" y2="12"/> <line data-color="color-2" fill="none" stroke-miterlimit="10" x1="1" y1="12" x2="12" y2="12"/> <line fill="none" stroke="#000000" stroke-miterlimit="10" x1="14" y1="20" x2="23" y2="20"/> <line fill="none" stroke="#000000" stroke-miterlimit="10" x1="1" y1="20" x2="4" y2="20"/> <circle fill="none" stroke="#000000" stroke-miterlimit="10" cx="7" cy="4" r="3"/> <circle data-color="color-2" fill="none" stroke-miterlimit="10" cx="15" cy="12" r="3"/> <circle fill="none" stroke="#000000" stroke-miterlimit="10" cx="7" cy="20" r="3"/></g>
</svg>
| SVG | 2 | tobetobe/Motrix | src/renderer/assets/icons/menu-preference.svg | [
"MIT"
] |
; Surface indents like HTML, with the addition of blocks
[
(component)
(tag)
(block)
] @indent
; Dedent at the end of each tag, as well as a subblock
[
(end_tag)
(end_component)
(end_block)
(subblock)
] @branch
| Scheme | 2 | hmac/nvim-treesitter | queries/surface/indents.scm | [
"Apache-2.0"
] |
class(x : 'i32) { this }
a : heap ([heap class(1), heap class(2), heap class(3)])
c : a[0]
c.x | Objective-J | 3 | justinmann/sj | tests/array3.sj | [
"Apache-2.0"
] |
@article{lepetit2009epnp,
title={Epnp: An accurate o (n) solution to the pnp problem},
author={Lepetit, Vincent and Moreno-Noguer, Francesc and Fua, Pascal},
journal={International journal of computer vision},
volume={81},
number={2},
pages={155--166},
year={2009},
publisher={Springer}
}
@article{gao2003complete,
title={Complete solution classification for the perspective-three-point problem},
author={Gao, Xiao-Shan and Hou, Xiao-Rong and Tang, Jianliang and Cheng, Hang-Fei},
journal={Pattern Analysis and Machine Intelligence, IEEE Transactions on},
volume={25},
number={8},
pages={930--943},
year={2003},
publisher={IEEE}
}
@inproceedings{hesch2011direct,
title={A direct least-squares (DLS) method for PnP},
author={Hesch, Joel and Roumeliotis, Stergios and others},
booktitle={Computer Vision (ICCV), 2011 IEEE International Conference on},
pages={383--390},
year={2011},
organization={IEEE}
}
@article{penate2013exhaustive,
title={Exhaustive linearization for robust camera pose and focal length estimation},
author={Penate-Sanchez, Adrian and Andrade-Cetto, Juan and Moreno-Noguer, Francesc},
journal={Pattern Analysis and Machine Intelligence, IEEE Transactions on},
volume={35},
number={10},
pages={2387--2400},
year={2013},
publisher={IEEE}
}
@inproceedings{Terzakis2020SQPnP,
title={A Consistently Fast and Globally Optimal Solution to the Perspective-n-Point Problem},
author={George Terzakis and Manolis Lourakis},
booktitle={European Conference on Computer Vision},
pages={478--494},
year={2020},
publisher={Springer International Publishing}
}
@inproceedings{strobl2011iccv,
title={More accurate pinhole camera calibration with imperfect planar target},
author={Strobl, Klaus H. and Hirzinger, Gerd},
booktitle={2011 IEEE International Conference on Computer Vision (ICCV)},
pages={1068-1075},
month={Nov},
year={2011},
address={Barcelona, Spain},
publisher={IEEE},
url={https://elib.dlr.de/71888/1/strobl_2011iccv.pdf},
doi={10.1109/ICCVW.2011.6130369}
}
| TeX | 0 | yash112-lang/opencv | modules/calib3d/doc/calib3d.bib | [
"Apache-2.0"
] |
/*******************************************************************************
* This file is owned and controlled by Xilinx and must be used *
* solely for design, simulation, implementation and creation of *
* design files limited to Xilinx devices or technologies. Use *
* with non-Xilinx devices or technologies is expressly prohibited *
* and immediately terminates your license. *
* *
* XILINX IS PROVIDING THIS DESIGN, CODE, OR INFORMATION "AS IS" *
* SOLELY FOR USE IN DEVELOPING PROGRAMS AND SOLUTIONS FOR *
* XILINX DEVICES. BY PROVIDING THIS DESIGN, CODE, OR INFORMATION *
* AS ONE POSSIBLE IMPLEMENTATION OF THIS FEATURE, APPLICATION *
* OR STANDARD, XILINX IS MAKING NO REPRESENTATION THAT THIS *
* IMPLEMENTATION IS FREE FROM ANY CLAIMS OF INFRINGEMENT, *
* AND YOU ARE RESPONSIBLE FOR OBTAINING ANY RIGHTS YOU MAY REQUIRE *
* FOR YOUR IMPLEMENTATION. XILINX EXPRESSLY DISCLAIMS ANY *
* WARRANTY WHATSOEVER WITH RESPECT TO THE ADEQUACY OF THE *
* IMPLEMENTATION, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR *
* REPRESENTATIONS THAT THIS IMPLEMENTATION IS FREE FROM CLAIMS OF *
* INFRINGEMENT, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS *
* FOR A PARTICULAR PURPOSE. *
* *
* Xilinx products are not intended for use in life support *
* appliances, devices, or systems. Use in such applications are *
* expressly prohibited. *
* *
* (c) Copyright 1995-2009 Xilinx, Inc. *
* All rights reserved. *
*******************************************************************************/
// The following must be inserted into your Verilog file for this
// core to be instantiated. Change the instance name and port connections
// (in parentheses) to your own signal names.
//----------- Begin Cut here for INSTANTIATION Template ---// INST_TAG
InstructionMem YourInstanceName (
.clka(clka),
.addra(addra), // Bus [8 : 0]
.douta(douta)); // Bus [15 : 0]
// INST_TAG_END ------ End INSTANTIATION Template ---------
// You must compile the wrapper file InstructionMem.v when simulating
// the core, InstructionMem. When compiling the wrapper file, be sure to
// reference the XilinxCoreLib Verilog simulation library. For detailed
// instructions, please refer to the "CORE Generator Help".
| Verilog | 4 | davidov541/BitEpicness | BitEpicness/ipcore_dir/InstructionMem.veo | [
"Apache-2.0"
] |
<%= link title: "Play Video",
to: @item.url,
data: [youtube: @id],
role: "button",
class: "news_item-toolbar-video_button" do %>
<span>Play</span>
<% end %>
| HTML+EEX | 3 | PsOverflow/changelog.com | lib/changelog_web/templates/news_item/toolbar/_button_video.html.eex | [
"MIT"
] |
# encoding: UTF-8
module TZInfo
module Format1
# Instances of {Format1::CountryDefiner} are yielded to the format 1 version
# of `TZInfo::Data::Indexes::Countries` by {CountryIndexDefinition} to allow
# the zones of a country to be specified.
#
# @private
class CountryDefiner < Format2::CountryDefiner #:nodoc:
# Initializes a new {CountryDefiner}.
def initialize(identifier_deduper, description_deduper)
super(nil, identifier_deduper, description_deduper)
end
end
end
end
| Ruby | 4 | puzzle/nochmal | spec/dummy/vendor/bundle/ruby/2.7.0/gems/tzinfo-2.0.4/lib/tzinfo/format1/country_definer.rb | [
"MIT"
] |
domain: "[_PB_M, _PB_N] -> { S_0[Id1, Id2, Id3] : _PB_M >= 2 and Id1 >= 0 and 4Id1 < _PB_N and 2Id2 >= -_PB_M and 4Id2 <= -_PB_M and Id3 <= 0 and 4Id3 >= -3 + _PB_M + 4Id2 and 4Id3 >= -1 - _PB_M; S_1[Id1, Id2, Id3] : _PB_M >= 2 and Id1 >= 0 and 4Id1 < _PB_N and -_PB_M <= 2Id2 <= 1 - _PB_M and Id3 <= 0 and 4Id3 >= -1 - _PB_M }"
child:
schedule: "[_PB_M, _PB_N] -> [{ S_0[Id1, Id2, Id3] -> [(Id1)]; S_1[Id1, Id2, Id3] -> [(Id1)] }, { S_0[Id1, Id2, Id3] -> [(-Id2)]; S_1[Id1, Id2, Id3] -> [(_PB_M)] }, { S_0[Id1, Id2, Id3] -> [(-Id3)]; S_1[Id1, Id2, Id3] -> [(-Id3)] }]"
permutable: 1
coincident: [ 1, 1, 1 ]
| Smalltalk | 2 | mkinsner/llvm | polly/lib/External/isl/test_inputs/schedule/poliwoda.st | [
"Apache-2.0"
] |
/* shared scalar */
shared int global_counter;
| Unified Parallel C | 0 | ouankou/rose | tests/nonsmoke/functional/CompileTests/UPC_tests/test2018_01.upc | [
"BSD-3-Clause"
] |
Add final declarations for constants.
| Cucumber | 1 | ikrivosheev/aiohttp | CHANGES/5275.feature | [
"Apache-2.0"
] |
/*
Copyright (c) Microsoft Corporation.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
.tabbed-pane {
display: flex;
flex: auto;
overflow: hidden;
}
.tabbed-pane-tab-content {
display: flex;
flex: auto;
overflow: hidden;
}
.tabbed-pane-tab-strip {
display: flex;
align-items: center;
padding-right: 10px;
flex: none;
width: 100%;
z-index: 2;
font-size: 14px;
line-height: 32px;
color: var(--color-fg-default);
height: 48px;
min-width: 70px;
box-shadow: inset 0 -1px 0 var(--color-border-muted) !important;
}
.tabbed-pane-tab-strip:focus {
outline: none;
}
.tabbed-pane-tab-element {
padding: 4px 8px 0 8px;
margin-right: 4px;
cursor: pointer;
display: flex;
flex: none;
align-items: center;
justify-content: center;
user-select: none;
border-bottom: 2px solid transparent;
outline: none;
height: 100%;
}
.tabbed-pane-tab-label {
max-width: 250px;
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
}
.tabbed-pane-tab-element.selected {
border-bottom-color: #666;
}
.tabbed-pane-tab-element:hover {
color: #333;
}
| CSS | 3 | burner/playwright | packages/html-reporter/src/tabbedPane.css | [
"Apache-2.0"
] |
(set-logic QF_AUFBV)
(declare-fun SymVar_0 () (_ BitVec 64))
(declare-fun SymVar_1 () (_ BitVec 64))
(declare-fun SymVar_2 () (_ BitVec 64))
(assert (= ((_ extract 63 63)(bvand (bvxor SymVar_0 (bvnot SymVar_1)) (bvxor SymVar_0 SymVar_2))) (_ bv1 1)))
(check-sat)
(get-model)
| SMT | 3 | o2e/Triton | src/samples/smt/of.smt2 | [
"Apache-2.0"
] |
#!/bin/bash
case $(uname) in
Linux)
bin_abs_path=$(readlink -f $(dirname $0))
;;
*)
bin_abs_path=$(cd $(dirname $0) ||exit ; pwd)
;;
esac
sh "$bin_abs_path"/stop.sh
sh "$bin_abs_path"/startup.sh
| Shell | 3 | mclubing/canal | client-adapter/launcher/src/main/bin/restart.sh | [
"Apache-2.0"
] |
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Widget.h>
namespace GUI {
class ResizeCorner : public Widget {
C_OBJECT(ResizeCorner)
public:
virtual ~ResizeCorner() override;
protected:
ResizeCorner();
virtual void paint_event(PaintEvent&) override;
virtual void mousedown_event(MouseEvent&) override;
};
}
| C | 3 | r00ster91/serenity | Userland/Libraries/LibGUI/ResizeCorner.h | [
"BSD-2-Clause"
] |
### 请求 /system/user/page 接口 => 没有权限
GET {{baseUrl}}/system/user/page?pageNo=1&pageSize=10
Authorization: Bearer test104 # 使用测试账号
| HTTP | 3 | TFdream/ruoyi-vue-pro | src/main/java/cn/iocoder/dashboard/modules/system/controller/user/SysUserController.http | [
"MIT"
] |
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m1 xl7 offset-xl1">
<div id="introduction" class="section scrollspy">
<h4>Introduction</h4>
<p class="caption">Waves is an external library that we've included in Materialize to allow us to create the ink effect outlined in Material Design.</p>
<a class="waves-effect waves-light btn" href="#!">Wave</a>
</div>
<div id="applying-waves" class="section scrollspy">
<h4>Applying Waves</h4>
<p>The waves effect can be applied to any element. To put the waves effect on buttons, you just have to put the class <code class="language-markup">waves-effect</code> on to the buttons. If you want the waves effect to be white instead, add both <code class="language-markup">waves-effect waves-light</code> as classes.</p>
<pre><code class="language-markup">
<a class="waves-effect waves-light btn-large" href="#">Wave</a>
</code></pre>
</div>
<div id="customization" class="section scrollspy">
<!-- Customization -->
<h4>Customization</h4>
<p>There are several ways to customize waves, you can either use pre-created classes, or you can define your own color by creating a new class.</p>
<div class="row">
<div class="col s12 l6">
<h5 class="light">Available Colors</h5>
<p>To use these, just add the corresponding class to your button. Play around with changing the background color of butons and the waves effect to create something cool!</p>
<pre><code class="language-markup">
<a href="#!" class="btn waves-effect waves-teal">Send</a>
</code></pre>
<div class="collection waves-color-demo">
<div class="collection-item">Default<a href="#!" class="waves-effect btn secondary-content">Send</a></div>
<div class="collection-item"><code class="language-markup">waves-light</code><a href="#!" class="waves-effect waves-light btn secondary-content">Send</a></div>
<div class="collection-item"><code class="language-markup">waves-red</code><a href="#!" class="waves-effect waves-red btn secondary-content">Send</a></div>
<div class="collection-item"><code class="language-markup">waves-yellow</code><a href="#!" class="waves-effect waves-yellow btn secondary-content">Send</a></div>
<div class="collection-item"><code class="language-markup">waves-orange</code><a href="#!" class="waves-effect waves-orange btn secondary-content">Send</a></div>
<div class="collection-item"><code class="language-markup">waves-purple</code><a href="#!" class="waves-effect waves-purple btn secondary-content">Send</a></div>
<div class="collection-item"><code class="language-markup">waves-green</code><a href="#!" class="waves-effect waves-green btn secondary-content">Send</a></div>
<div class="collection-item"><code class="language-markup">waves-teal</code><a href="#!" class="waves-effect waves-teal btn secondary-content">Send</a></div>
</div>
</div>
<div class="col s12 l6">
<h5 class="light">Custom Colors</h5>
<p>If the color you want is not already available, you can easily make your own waves color by creating a custom CSS class. Take a look at the example below where we add a waves brown effect.</p>
<pre><code class="language-css">
/*
When creating your CSS selector,
change "brown" to something of your choosing
*/
.waves-effect.waves-brown .waves-ripple {
/* The alpha value allows the text and background color
of the button to still show through. */
background-color: rgba(121, 85, 72, 0.65);
}
</code></pre>
</div>
</div>
</div>
<div id="circle" class="section scrollspy">
<!-- Circle -->
<h4>Circle</h4>
<p>If you want waves to form to a non rectangular shape, there is an option for circular waves. Just add the <code class="language-markup">waves-circle</code> in addition to <code class="language-markup">waves-effect</code>.</p>
<div class="row">
<div class="col s12">
<h5 class="light">HTML Markup</h5>
<pre><code class="language-markup">
<a href="#!" class="waves-effect waves-circle waves-light btn-floating secondary-content">
<i class="material-icons">add</i>
</a>
</code></pre>
<div class="collection waves-color-demo">
<div class="collection-item">Default<a href="#!" class="waves-effect waves-circle btn-floating secondary-content"><i class="material-icons">add</i></a></div>
<div class="collection-item"><code class="language-markup">waves-light</code><a href="#!" class="waves-effect waves-circle waves-light btn-floating secondary-content"><i class="material-icons">add</i></a></div>
</div>
</div>
</div>
</div>
</div>
<!-- Table of Contents -->
<div class="col hide-on-small-only m3 xl3 offset-xl1">
<div class="toc-wrapper">
<div class="buysellads hide-on-small-only">
<!-- CarbonAds Zone Code -->
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CKYIK27J&placement=materializecss" id="_carbonads_js"></script>
</div>
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#introduction">Introduction</a></li>
<li><a href="#applying-waves">Applying Waves</a></li>
<li><a href="#customization">Customization</a></li>
<li><a href="#circle">Circle Waves</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
| HTML | 5 | afzalsayed96/materialize | jade/page-contents/waves_content.html | [
"MIT"
] |
import * as React from 'react';
import Skeleton from '@mui/material/Skeleton';
import Stack from '@mui/material/Stack';
export default function Variants() {
return (
<Stack spacing={1}>
<Skeleton variant="text" />
<Skeleton variant="circular" width={40} height={40} />
<Skeleton variant="rectangular" width={210} height={118} />
</Stack>
);
}
| TypeScript | 4 | dany-freeman/material-ui | docs/data/material/components/skeleton/Variants.tsx | [
"MIT"
] |
// Shader used to indicate something went wrong during shader loading
Texture2D shaderTexture;
SamplerState samplerState;
cbuffer PixelShaderSettings {
float Time;
float Scale;
float2 Resolution;
float4 Background;
};
float4 main(float4 pos : SV_POSITION, float2 tex : TEXCOORD) : SV_TARGET
{
float4 color = shaderTexture.Sample(samplerState, tex);
float bars = 0.5+0.5*sin(tex.y*100);
color.x += pow(bars, 20.0);
return color;
} | HLSL | 4 | hessedoneen/terminal | samples/PixelShaders/Error.hlsl | [
"MIT"
] |
input#toggle-all
type = 'checkbox'
checked = '~[bind: status.todoCount == 0 ? "checked" ]'
x-signal = 'click: toggleAll'
// bind and hide/show accordingly
xx-visible = 'status.count'
;
label for = 'toggle-all' >
'Mark all as complete'
ul#todo-list {
// binded todos array
%% each = '.' >
:todoTask;
} | Mask | 3 | lightspread/todomvc | labs/architecture-examples/atmajs/js/compo/todoList/todoList.mask | [
"MIT"
] |
Changelog
=========
Unreleased
----------
Fixed bugs
^^^^^^^^^^
- `#1653 <https://github.com/3b1b/manim/pull/1653>`__: Fixed ``Mobject.stretch_to_fit_depth``
New Features
^^^^^^^^^^^^
- `e10f850 <https://github.com/3b1b/manim/commit/e10f850d0d9f971931cc85d44befe67dc842af6d>`__: Added CLI flag ``--log-level`` to specify log level
v1.2.0
------
Fixed bugs
^^^^^^^^^^
- `#1592 <https://github.com/3b1b/manim/pull/1592>`__: Fixed ``put_start_and_end_on`` in 3D
- `#1601 <https://github.com/3b1b/manim/pull/1601>`__: Fixed ``DecimalNumber``'s scaling issue
- `56df154 <https://github.com/3b1b/manim/commit/56df15453f3e3837ed731581e52a1d76d5692077>`__: Fixed bug with common range array used for all coordinate systems
- `8645894 <https://github.com/3b1b/manim/commit/86458942550c639a241267d04d57d0e909fcf252>`__: Fixed ``CoordinateSystem`` init bug
- `0dc096b <https://github.com/3b1b/manim/commit/0dc096bf576ea900b351e6f4a80c13a77676f89b>`__: Fixed bug for single-valued ``ValueTracker``
- `54ad355 <https://github.com/3b1b/manim/commit/54ad3550ef0c0e2fda46b26700a43fa8cde0973f>`__: Fixed bug with SVG rectangles
- `d45ea28 <https://github.com/3b1b/manim/commit/d45ea28dc1d92ab9c639a047c00c151382eb0131>`__: Fixed ``DotCloud.set_radii``
- `b543cc0 <https://github.com/3b1b/manim/commit/b543cc0e32d45399ee81638b6d4fb631437664cd>`__: Temporarily fixed bug for ``PMobject`` array resizing
- `5f878a2 <https://github.com/3b1b/manim/commit/5f878a2c1aa531b7682bd048468c72d2835c7fe5>`__: Fixed ``match_style``
- `719c81d <https://github.com/3b1b/manim/commit/719c81d72b00dcf49f148d7c146774b22e0fe348>`__: Fixed negative ``path_arc`` case
- `c726eb7 <https://github.com/3b1b/manim/commit/c726eb7a180b669ee81a18555112de26a8aff6d6>`__: Fixed bug with ``CoordinateSystem.get_lines_parallel_to_axis``
- `7732d2f <https://github.com/3b1b/manim/commit/7732d2f0ee10449c5731499396d4911c03e89648>`__: Fixed ``ComplexPlane`` -i display bug
New Features
^^^^^^^^^^^^
- `#1598 <https://github.com/3b1b/manim/pull/1598>`__: Supported the elliptical arc command ``A`` for ``SVGMobject``
- `#1607 <https://github.com/3b1b/manim/pull/1607>`__: Added ``FlashyFadeIn``
- `#1607 <https://github.com/3b1b/manim/pull/1607>`__: Save triangulation
- `#1625 <https://github.com/3b1b/manim/pull/1625>`__: Added new ``Code`` mobject
- `#1637 <https://github.com/3b1b/manim/pull/1637>`__: Add warnings and use rich to display log
- `bd356da <https://github.com/3b1b/manim/commit/bd356daa99bfe3134fcb192a5f72e0d76d853801>`__: Added ``VCube``
- `6d72893 <https://github.com/3b1b/manim/commit/6d7289338234acc6658b9377c0f0084aa1fa7119>`__: Supported ``ValueTracker`` to track vectors
- `3bb8f3f <https://github.com/3b1b/manim/commit/3bb8f3f0422a5dfba0da6ef122dc0c01f31aff03>`__: Added ``set_max_width``, ``set_max_height``, ``set_max_depth`` to ``Mobject``
- `a35dd5a <https://github.com/3b1b/manim/commit/a35dd5a3cbdeffa3891d5aa5f80287c18dba2f7f>`__: Added ``TracgTail``
- `acba13f <https://github.com/3b1b/manim/commit/acba13f4991b78d54c0bf93cce7ca3b351c25476>`__: Added ``Scene.point_to_mobject``
- `f84b8a6 <https://github.com/3b1b/manim/commit/f84b8a66fe9e8b3872e5c716c5c240c14bb555ee>`__: Added poly_fractal shader
- `b24ba19 <https://github.com/3b1b/manim/commit/b24ba19dec48ba4e38acbde8eec6d3a308b6ab83>`__: Added kwargs to ``TipableVMobject.set_length``
- `17c2772 <https://github.com/3b1b/manim/commit/17c2772b84abf6392a4170030e36e981de4737d0>`__: Added ``Mobject.replicate``
- `33fa76d <https://github.com/3b1b/manim/commit/33fa76dfac36e70bb5fad69dc6a336800c6dacce>`__: Added mandelbrot_fractal shader
- `f22a341 <https://github.com/3b1b/manim/commit/f22a341e8411eae9331d4dd976b5e15bc6db08d9>`__: Saved state before each embed
- `e10a752 <https://github.com/3b1b/manim/commit/e10a752c0001e8981038faa03be4de2603d3565f>`__: Allowed releasing of Textures
- `14fbed7 <https://github.com/3b1b/manim/commit/14fbed76da4b493191136caebb8a955e2d41265b>`__: Consolidated and renamed newton_fractal shader
- `6cdbe0d <https://github.com/3b1b/manim/commit/6cdbe0d67a11ab14a6d84840a114ae6d3af10168>`__: Hade ``ImageMoject`` remember the filepath to the Image
Refactor
^^^^^^^^
- `#1601 <https://github.com/3b1b/manim/pull/1601>`__: Changed back to simpler ``Mobject.scale`` implementation
- `b667db2 <https://github.com/3b1b/manim/commit/b667db2d311a11cbbca2a6ff511d2c3cf1675486>`__: Simplified ``Square``
- `40290ad <https://github.com/3b1b/manim/commit/40290ada8343f10901fa9151cbdf84689667786d>`__: Removed unused parameter ``triangulation_locked``
- `8647a64 <https://github.com/3b1b/manim/commit/8647a6429dd0c52cba14e971b8c09194a93cfd87>`__: Reimplemented ``Arrow``
- `d8378d8 <https://github.com/3b1b/manim/commit/d8378d8157040cd797cc47ef9576beffd8607863>`__: Used ``make_approximately_smooth`` for ``set_points_smoothly`` by default
- `7b4199c <https://github.com/3b1b/manim/commit/7b4199c674e291f1b84678828b63b6bd4fcc6b17>`__: Refactored to call ``_handle_scale_side_effects`` after scaling takes place
- `7356a36 <https://github.com/3b1b/manim/commit/7356a36fa70a8279b43ae74e247cbd43b2bfd411>`__: Refactored to only call ``throw_error_if_no_points`` once for ``get_start_and_end``
- `0787c4f <https://github.com/3b1b/manim/commit/0787c4f36270a6560b50ce3e07b30b0ec5f2ba3e>`__: Made sure framerate is 30 for previewed scenes
- `c635f19 <https://github.com/3b1b/manim/commit/c635f19f2a33e916509e53ded46f55e2afa8f5f2>`__: Pushed ``pixel_coords_to_space_coords`` to ``Window``
- `d5a88d0 <https://github.com/3b1b/manim/commit/d5a88d0fa457cfcf4cb9db417a098c37c95c7051>`__: Refactored to pass tuples and not arrays to uniforms
- `9483f26 <https://github.com/3b1b/manim/commit/9483f26a3b056de0e34f27acabd1a946f1adbdf9>`__: Refactored to copy uniform arrays in ``Mobject.copy``
- `ed1fc4d <https://github.com/3b1b/manim/commit/ed1fc4d5f94467d602a568466281ca2d0368b506>`__: Added ``bounding_box`` as exceptional key to point_cloud mobject
- `329d2c6 <https://github.com/3b1b/manim/commit/329d2c6eaec3d88bfb754b555575a3ea7c97a7e0>`__: Made sure stroke width is always a float
v1.1.0
-------
Fixed bugs
^^^^^^^^^^
- Fixed the bug of :func:`~manimlib.utils.iterables.resize_with_interpolation` in the case of ``length=0``
- Fixed the bug of ``__init__`` in :class:`~manimlib.mobject.geometry.Elbow`
- If chosen monitor is not available, choose one that does exist
- Make sure mobject data gets unlocked after animations
- Fixed a bug for off-center vector fields
- Had ``Mobject.match_points`` return self
- Fixed chaining animation in example scenes
- Fixed the default color of tip
- Fixed a typo in ``ShowPassingFlashWithThinningStrokeWidth``
- Fixed the default size of ``Text``
- Fixed a missing import line in ``mobject.py``
- Fixed the bug in ControlsExample
- Make sure frame is added to the scene when initialization
- Fixed zooming directions
- Rewrote ``earclip_triangulation`` to fix triangulation
- Allowed sound_file_name to be taken in without extensions
New Features
^^^^^^^^^^^^
- Added :class:`~manimlib.animation.indication.VShowPassingFlash`
- Added ``COLORMAP_3B1B``
- Added some methods to coordinate system to access all axes ranges
- :meth:`~manimlib.mobject.coordinate_systems.CoordinateSystem.get_origin`
- :meth:`~manimlib.mobject.coordinate_systems.CoordinateSystem.get_all_ranges`
- Added :meth:`~manimlib.mobject.mobject.Mobject.set_color_by_rgba_func`
- Updated :class:`~manimlib.mobject.vector_field.VectorField` and :class:`~manimlib.mobject.vector_field.StreamLines`
- Allow ``3b1b_colormap`` as an option for :func:`~manimlib.utils.color.get_colormap_list`
- Return ``stroke_width`` as 1d array
- Added :meth:`~manimlib.mobject.svg.text_mobject.Text.get_parts_by_text`
- Use Text not TexText for Brace
- Update to Cross to make it default to variable stroke width
- Added :class:`~manimlib.animation.indication.FlashAround` and :class:`~manimlib.animation.indication.FlashUnder`
- Allowed configuration in ``Brace.get_text``
- Added :meth:`~manimlib.camera.camera.CameraFrame.reorient` for quicker changes to frame angle
- Added ``units`` to :meth:`~manimlib.camera.camera.CameraFrame.set_euler_angles`
- Allowed any ``VMobject`` to be passed into ``TransformMatchingTex``
- Removed double brace convention in ``Tex`` and ``TexText``
- Added support for debugger launch
- Added CLI flag ``--config_file`` to load configuration file manually
- Added ``tip_style`` to ``tip_config``
- Added ``MarkupText``
- Take in ``u_range`` and ``v_range`` as arguments to ``ParametricSurface``
- Added ``TrueDot`` | reStructuredText | 2 | OrKedar/geo-manimgl-app | docs/source/development/changelog.rst | [
"MIT"
] |
<template>
<div>
<h1>
patch: <i data-date-patch>
{{ date }}
</i>
</h1>
<NuxtChild />
</div>
</template>
<script>
export default {
layout: 'patch',
asyncData () {
return {
date: Date.now()
}
}
}
</script>
| Vue | 3 | ardyno/nuxt.js | test/fixtures/children/pages/patch.vue | [
"MIT"
] |
;; -*- no-byte-compile: t; -*-
;;; lang/purescript/packages.el
(package! psc-ide :pin "ce97d719458ea099b40c02f05b6609601c727e66")
(package! purescript-mode :pin "0acd1af446424ba855153161fe07a20f67dc0a89")
(package! psci :pin "95fb5d14033add8fe9c8c6b4379758beb88af1d0")
| Emacs Lisp | 1 | leezu/doom-emacs | modules/lang/purescript/packages.el | [
"MIT"
] |
{
"Version" : 0.2,
"ModuleName" : "test1",
"Options" : {
"Warnings" : "All",
"PreprocessorDefinitions" : [
"IMPORT_STATIC=\"\""
],
"IncludeDirs" : [
"$(ECERE_SDK_SRC)/ecere/src/gfx/drivers/gl3",
"$(ECERE_SDK_SRC)/butterbur/src/tesselation",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc",
"$(ECERE_SDK_SRC)/deps/libtess",
"/usr/include/freetype2"
],
"TargetType" : "Executable",
"TargetFileName" : "test1",
"Libraries" : [
"ecere",
"freetype",
"m",
"GL"
]
},
"Configurations" : [
{
"Name" : "Debug",
"Options" : {
"Debug" : true,
"Optimization" : "None",
"PreprocessorDefinitions" : [
"_DEBUG"
],
"FastMath" : false
}
},
{
"Name" : "Release",
"Options" : {
"Debug" : false,
"Optimization" : "Speed",
"FastMath" : true
}
}
],
"Files" : [
{
"Folder" : "graphics",
"Files" : [
{
"Folder" : "opengl",
"Files" : [
"$(ECERE_SDK_SRC)/butterbur/src/opengl/ButterburShader.ec",
"$(ECERE_SDK_SRC)/butterbur/src/opengl/GLMultiDraw.ec",
"$(ECERE_SDK_SRC)/butterbur/src/opengl/VersionedShader.ec",
"$(ECERE_SDK_SRC)/ecere/src/gfx/drivers/gl3/gl_compat_4_4.c"
]
},
{
"Folder" : "presentation",
"Files" : [
"$(ECERE_SDK_SRC)/butterbur/src/presentation/Presentation.ec",
"$(ECERE_SDK_SRC)/butterbur/src/presentation/TIManager.ec",
"$(ECERE_SDK_SRC)/butterbur/src/presentation/DrawingManager.ec",
"$(ECERE_SDK_SRC)/butterbur/src/presentation/AnchoredPresentation.ec",
"$(ECERE_SDK_SRC)/butterbur/src/presentation/GraphicalPresentation.ec",
"$(ECERE_SDK_SRC)/butterbur/src/presentation/GraphicalSurface.ec"
]
},
{
"Folder" : "imagesAndText",
"Files" : [
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/drawmanager.c",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/drawmanager.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/cpusimd.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/atlasbuilder.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/cpusimd.c",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/img.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/fontrenderer.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/atlasbuilder.c",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/texturemanager.c",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/imgdistmap.c",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/fontmanager.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/texturemanager.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/fontmanager.c",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/imgdistmap.h",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/fontrenderer.c",
"$(ECERE_SDK_SRC)/butterbur/src/imagesAndText/img.c"
]
},
{
"Folder" : "tesselation",
"Files" : [
"$(ECERE_SDK_SRC)/butterbur/src/tesselation/shapesTesselation.ec",
"$(ECERE_SDK_SRC)/butterbur/src/tesselation/tesselation3D.ec",
"$(ECERE_SDK_SRC)/butterbur/src/tesselation/tesselation.ec"
]
},
{
"Folder" : "eccss",
"Files" : [
"$(ECERE_SDK_SRC)/compiler/eccss/astNode.ec",
"$(ECERE_SDK_SRC)/compiler/eccss/lexing.ec",
"$(ECERE_SDK_SRC)/compiler/eccss/expressions.ec",
"$(ECERE_SDK_SRC)/compiler/eccss/eccss.ec"
]
},
"$(ECERE_SDK_SRC)/butterbur/src/GraphicalElement.ec",
"$(ECERE_SDK_SRC)/butterbur/src/GraphicalStyle.ec"
]
},
{
"Folder" : "cc",
"Files" : [
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmhash.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmthread.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/ccstr.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/ccstr.c",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmbitmap.c",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mm.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmatomic.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmhash.c",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mm.c",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/cpuconfig.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmbitmap.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/cchybridsort.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmhashinline.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/cc.c",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/mmhashinternal.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/ccmergesort.h",
"$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/cc.h"
]
},
{
"Folder" : "tess",
"Files" : [
"$(ECERE_SDK_SRC)/deps/libtess/sweep.h",
"$(ECERE_SDK_SRC)/deps/libtess/geom.h",
"$(ECERE_SDK_SRC)/deps/libtess/tessmono.c",
"$(ECERE_SDK_SRC)/deps/libtess/priorityq.h",
"$(ECERE_SDK_SRC)/deps/libtess/mesh.h",
"$(ECERE_SDK_SRC)/deps/libtess/normal.h",
"$(ECERE_SDK_SRC)/deps/libtess/gluos.h",
"$(ECERE_SDK_SRC)/deps/libtess/normal.c",
"$(ECERE_SDK_SRC)/deps/libtess/tessmono.h",
"$(ECERE_SDK_SRC)/deps/libtess/dict.c",
"$(ECERE_SDK_SRC)/deps/libtess/tess.c",
"$(ECERE_SDK_SRC)/deps/libtess/mesh.c",
"$(ECERE_SDK_SRC)/deps/libtess/sweep.c",
"$(ECERE_SDK_SRC)/deps/libtess/tess.h",
"$(ECERE_SDK_SRC)/deps/libtess/render.h",
"$(ECERE_SDK_SRC)/deps/libtess/glutess.h",
"$(ECERE_SDK_SRC)/deps/libtess/priorityqSort.h",
"$(ECERE_SDK_SRC)/deps/libtess/render.c",
"$(ECERE_SDK_SRC)/deps/libtess/dict.h",
"$(ECERE_SDK_SRC)/deps/libtess/dictList.h",
"$(ECERE_SDK_SRC)/deps/libtess/memalloc.h",
"$(ECERE_SDK_SRC)/deps/libtess/priorityq.c",
"$(ECERE_SDK_SRC)/deps/libtess/geom.c"
]
},
{
"Folder" : "gui",
"Files" : [
"$(ECERE_SDK_SRC)/butterbur/src/gui/autoLayout.ec"
]
},
"test1.ec"
],
"ResourcesPath" : "",
"Resources" : [
"$(ECERE_SDK_SRC)/butterbur/src/opengl/shaders/butterbur.frag",
"$(ECERE_SDK_SRC)/butterbur/src/opengl/shaders/butterbur.vert"
]
}
| Ecere Projects | 2 | redj/ecere-sdk | butterbur/tests/gui/test.epj | [
"BSD-3-Clause"
] |
import React from 'react';
import Landing from '../components/landing';
function IndexPage(): JSX.Element {
return <Landing />;
}
IndexPage.displayName = 'IndexPage';
export default IndexPage;
| TypeScript | 4 | fcastillo-serempre/freeCodeCamp | client/src/pages/index.tsx | [
"BSD-3-Clause"
] |
/*
*
* Copyright 2015 gRPC authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef GRPC_TEST_CPP_UTIL_BENCHMARK_CONFIG_H
#define GRPC_TEST_CPP_UTIL_BENCHMARK_CONFIG_H
#include <memory>
#include "test/cpp/qps/report.h"
namespace grpc {
namespace testing {
/** Returns the benchmark Reporter instance.
*
* The returned instance will take care of generating reports for all the actual
* reporters configured via the "enable_*_reporter" command line flags (see
* benchmark_config.cc). */
std::shared_ptr<Reporter> GetReporter();
} // namespace testing
} // namespace grpc
#endif // GRPC_TEST_CPP_UTIL_BENCHMARK_CONFIG_H
| C | 3 | samotarnik/grpc | test/cpp/qps/benchmark_config.h | [
"Apache-2.0"
] |
package com.alibaba.json.bvt.serializer;
import org.junit.Assert;
import junit.framework.TestCase;
import com.alibaba.fastjson.JSON;
public class TestPivateStaticClass extends TestCase {
public void test_inner() throws Exception {
VO vo = new VO();
String text = JSON.toJSONString(vo);
Assert.assertEquals("{\"value\":234}", text);
VO v1 = JSON.parseObject(text, VO.class);
}
private static class VO {
private int value = 234;
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
}
}
| Java | 4 | Czarek93/fastjson | src/test/java/com/alibaba/json/bvt/serializer/TestPivateStaticClass.java | [
"Apache-2.0"
] |
% Consistent renaming - Python blocks
% Jim Cordy, May 2010
% Using Python grammar
include "python.grm"
% Redefinition for potential clones
define potential_clone
[block]
end define
redefine indent
[opt newline] 'INDENT [IN]
end redefine
redefine dedent
[EX] 'DEDENT [newline]
end redefine
% Generic consistent renaming
include "generic-rename-consistent.txl"
% Specialize for Python
redefine xml_source_coordinate
'< [SPOFF] 'source [SP] 'file=[stringlit] [SP] 'startline=[stringlit] [SP] 'endline=[stringlit] '> [SPON] [newline]
end redefine
redefine end_xml_source_coordinate
'< [SPOFF] '/ 'source '> [SPON] [newline]
end redefine
| TXL | 3 | coder-chenzhi/SQA | SourcererCC/parser/java/txl/py-rename-consistent-blocks.txl | [
"Apache-2.0"
] |
module Svc {
@ A component that provides statically allocated memory
passive component StaticMemory {
@ Mutexed buffer deallocate input port
guarded input port bufferDeallocate: [StaticMemoryAllocations] Fw.BufferSend
@ Mutexed buffer allocate input port
guarded input port bufferAllocate: [StaticMemoryAllocations] Fw.BufferGet
}
}
| FORTRAN | 3 | AlperenCetin0/fprime | Svc/StaticMemory/StaticMemory.fpp | [
"Apache-2.0"
] |
$(OBJDIR)/dominators.cmi: $(OBJDIR)/inthash.cmi $(OBJDIR)/cil.cmi
| D | 1 | heechul/crest-z3 | cil/obj/.depend/dominators.di | [
"BSD-3-Clause"
] |
##! Benchmark DNS
# Contributed by Reservoir Labs, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
module DnsTrack;
export {
redef enum Log::ID += { LOG };
type Info: record {
timestamp: time &log;
worker: string &log;
id: count &log;
sel_cap: double &log;
opcode: count &log;
query: string &log;
};
global log_dns_track: event(rec: Info);
}
global dns_track_numconns: count;
global dns_track_numconns_last: count;
global dns_track_time_last: time;
const REPORTING_PERIOD = 1;
event bro_init() &priority=5
{
Log::create_stream(DnsTrack::LOG, [$columns=Info, $ev=log_dns_track]);
dns_track_numconns = 0;
dns_track_numconns_last = 0;
dns_track_time_last = network_time();
}
type dns_session_info: record
{
opcode: count &default=0;
query: string &default="";
};
global conn_info: table[conn_id] of dns_session_info
&read_expire=5mins
&redef;
event dns_request(c: connection, msg: dns_msg, query: string, qtype: count, qclass: count)
{
local this_timestamp: time;
local this_sel_cap: double;
local id = c$id;
if ( c$id !in conn_info )
{
local x: dns_session_info;
conn_info[c$id] = x;
}
local sess_ext = conn_info[c$id];
sess_ext$opcode = msg$opcode;
sess_ext$query = query;
mcore_shunt_conn(addr_to_count(id$orig_h),
port_to_count(id$orig_p),
addr_to_count(id$resp_h),
port_to_count(id$resp_p));
dns_track_numconns = dns_track_numconns + 1;
if(modulo(dns_track_numconns, REPORTING_PERIOD) == 0)
{
this_sel_cap = (dns_track_numconns - dns_track_numconns_last) / (time_to_double(network_time())-time_to_double(dns_track_time_last));
local this_worker : string;
if(Cluster::node != "")
this_worker = Cluster::node;
else
this_worker = "[Standalone worker]";
this_timestamp = network_time();
local rec: DnsTrack::Info = [$timestamp=this_timestamp,
$worker=this_worker,
$opcode=sess_ext$opcode,
$query=sess_ext$query,
$id=dns_track_numconns,
$sel_cap=this_sel_cap];
Log::write(DnsTrack::LOG, rec);
dns_track_time_last = network_time();
dns_track_numconns_last = dns_track_numconns;
}
}
| Bro | 5 | reservoirlabs/bro-scripts | bench/benchDns.bro | [
"Apache-2.0"
] |
(/
(max
(max 5.291710918926604 1.1928108739910326 1.429136489345783)
(+ 3.134401165869889)
(tan 1.5306769261091948))
(unsafe-fl/ (unsafe-fl+ 0.0 0.0) (fl+ 0.0 -1.4988550184671405)))
(log (log 0.72188586f0))
(/ +inf.0 +inf.0 +inf.0)
(/ (max 0.09531933367867522 +inf.0) (flmax +inf.0 1.976262583365e-323))
(* 1/5 0.0f0 (max +inf.0 0.0 -18.8335626447589))
(/ (max -11/2 -0.6208988f0 0))
(fl* -0.0 -0.0)
(/ (min -inf.0 -1/2 0.19923423380607755))
(/ (abs (min -inf.0 -6.810114f+25 0)))
(/ (max 1.5005304f+34 -9/2 +inf.0))
(fltruncate (unsafe-fl* -0.0 -0.0))
(/ (max -0.0 0.0f0 -4/3))
(flexpt (ceiling 0.23308186803037037) -inf.0)
(flexpt (ceiling 0.1819412186378086) (flexpt +inf.0 0.24507424933264124))
(/ (max (sqrt +inf.0) (min 0.03663685909017611 0.04795201378269561 -1)))
(* 0.0f0 +inf.f)
(/ (max -7/11 0.0f0 -0.1725517f0))
(/ (max 0 +inf.0))
(- -2.2560916f0 -1/3 0.001284063623073798)
(-
(- 3 -1.069543f0 6.562867812465617e-183)
(* 4.616255654942392)
0.1086093691621788)
(/ 4/3 2.460332f+31 (flexp 0.08423293999406778))
(floor (/ 1.7976931348623143e+308 (floor 1/4)))
(+ -0.25350437f0 1/7 (+ 1.721845751120134e-95 0.0 9.8813129168249e-324))
(* 0 (/ 1.0948245f+22 0 -676958.4f0))
(* (- 0) 0 (/ 0.0 0 +inf.f))
(round +nan.f)
(sqrt +nan.f)
(* 0 (/ 0.24441261818581836 0))
(* (/ -0.09734836534558132 0) (abs 0))
(cosh
(+
(cosh (- 3))
(/ (real->double-flonum 746128.75f0))
(max 2.3177779f0 0 1.1257266f+09)))
(tanh
(*
(lcm (exact-round 6) (exact-round -2.1790001f-30))
(bitwise-not (exact-round 0))))
(tanh (abs (remainder (exact-round 6) (exact-round -1))))
(sinh (sqr (max (exact-round 1/2) (exact-round 0))))
(sinh (- (min 0)))
(tanh (min (remainder (exact-round 1/2) (exact-round 1.1763921f0))))
(sinh (floor (max (exact-round 0.36314553f0))))
(sinh (round (- (exact-round -1/6) (exact-round 0))))
(sinh (- 0))
(sinh (sqr (bitwise-xor (exact-round -1/3))))
(tanh (* (round (exact-round 3.4584595208887e-323))))
(+ (sinh (- 0)) 1.213183f-20)
(sinh (- (* (exact-round -1.4821969375237e-323) (exact-round 1.5342411f+31))))
(tanh (truncate -1/2))
(sinh (round (gcd (exact-round 2.7844077f-14) (exact-round 0.0))))
(sinh (- 0))
(sinh (truncate (max (exact-round -1/5))))
(tanh (- 0))
(tanh
(abs (quotient (exact-round -2/3) (exact-round -2.2804670485636814e+98))))
(sinh
(abs
(bitwise-ior
(exact-round -1.976262583365e-323)
(exact-round 0)
(exact-round 0.24133845f0))))
(/
2.3454025f0
(flmin
(real->double-flonum 1.797693134862315e+308)
(real->double-flonum -1.2848677f+32))
(make-rectangular +nan.0 0.0))
(- (sqrt 1) -6.249515f+17 (tanh (min 0 19/9 0)))
(sinh (- 0))
(* (sinh (round 1/5)))
(tanh (ceiling -6/7))
(*
(+ 15/4 -inf.0)
(tanh (min 1 0 2))
(min (real->double-flonum 17/8) (real->double-flonum 3)))
(exp (sinh (truncate -4/5)))
(tanh (round (- (exact-round -2.2143375f-34))))
(sinh (floor (bitwise-xor (exact-round -5.592468f-24))))
(/
(fl/ (real->double-flonum 1) (real->double-flonum 2.267724318104924))
(make-rectangular -inf.f -1.2723509554070223)
2.4891517f-05)
(tanh (min (sub1 (exact-round 2)) (round -1/2)))
(tanh (add1 (bitwise-ior (exact-round -6.327578f0) (exact-round -1))))
(tanh (- (sqr (exact-round 0.0f0))))
(sinh
(-
(* (exact-round 131245384.0f0) (exact-round 1/19) (exact-round 3))
(quotient (exact-round 0) (exact-round 1))))
(/
(+ (real->double-flonum 0.41378116537811604) (real->double-flonum 1))
(round (real->double-flonum 1.8869765f0))
(make-rectangular -1/2 1.7976931348623157e+308))
(sin (sinh (- 0)))
(tanh (+ (* (exact-round 1/2) (exact-round 1.51136f-11))))
(sinh
(min
(*
(exact-round 9.8813129168249e-324)
(exact-round 1.7800292572466936e+144))))
(tanh (abs (remainder (exact-round -2/7) (exact-round 1))))
(-
(* 1 7 -inf.f)
(log -1.6259106f0)
(make-rectangular 1.0812368f0 -1.7976931348623157e+308))
(make-polar (sinh (add1 -1)) (abs 2.709792f-24))
(tanh (- (abs (exact-round 2/7))))
(tanh (sinh (+ (arithmetic-shift (exact-round 1/13) (exact-round 6)))))
(tanh (* (min (exact-round 0) (exact-round 0) (exact-round -1.08295304f-29))))
(sinh (floor (bitwise-and (exact-round 4.9406564584125e-324))))
(sinh (tanh (round -1/4)))
(sinh
(max (ceiling (exact-round -23/6)) (round (exact-round 1.976262583365e-323))))
(sinh (round (round 1/9)))
(sinh (round (integer-length (exact-round 0.23142774f0))))
(tanh (min (* +inf.f 0) (integer-length (exact-round -1/6)) (ceiling 27)))
(tanh (round -1/2))
(tanh (- (round (exact-round 0.02347728403277505))))
(sinh (sqr (ceiling (exact-round -1/2))))
(sinh (max (round (exact-round 6.9156096f-34))))
(tanh (* (max (exact-round -7) (exact-round 1/3))))
(tanh (tanh (* (min (exact-round 13.884806f0)) (sqr (exact-round 1/2)))))
(tanh (min 1/7 0))
(sinh (truncate 11/26))
(sinh (add1 -1))
(sinh (- (+ 0)))
(tanh (- 0))
(sinh
(+
(make-polar 4.8063810141303426e-57 -1.9082319f0)
(sin (real->double-flonum -1))))
(tanh (- (lcm (exact-round 5.928787750095e-323))))
(sinh (- (lcm (exact-round -2.2155745000357632e-178) (exact-round 1))))
(sinh (* (truncate (exact-round 5/48))))
(- (tanh (- 0)))
(/ (make-rectangular 1/7 +inf.0))
(tanh
(min
(max (exact-round -7.765142f-15))
(sqr (exact-round 0))
(quotient (exact-round 1) (exact-round -1.7159756280409113))))
(/
(/
(real->double-flonum 4/7)
(real->double-flonum -4.2317797f-37)
(real->double-flonum -1/6))
-11.191491f0
(make-rectangular 5 +inf.0))
(tanh (round (min 0 12 0)))
(tanh (* (gcd (exact-round 3.5735087f-33))))
(tanh (truncate (lcm (exact-round -0.29972658f0))))
(tanh (max (max (exact-round 0.0031026218f0) (exact-round -4/3)) 0))
(tanh (- 0))
(tanh
(abs
(min
(exact-round 0.0)
(exact-round -1/9)
(exact-round 4.033356541333312e-08))))
(sinh
(min (quotient (exact-round -9.232606568676525) (exact-round 10.016169f0))))
(tanh (- (lcm (exact-round 2.2755875663910166e-147))))
(tanh (abs (ceiling -1/2)))
(tanh (tanh (floor (- -1/4))))
(round (bitwise-and (exact-round -1) (exact-round 3.4055861964043973e+281)))
(sinh (abs (bitwise-xor (exact-round 2) (exact-round 2.352828872943168))))
(sinh (- (remainder (exact-round -1.8771651f0) (exact-round -2))))
(tanh (max 0 (sub1 (exact-round -4.67788658365992e-41))))
(sinh (min 0 2 0))
(tanh (min (add1 (exact-round 5.477436111395335e+112)) (- (exact-round 0))))
(tanh
(*
(truncate (exact-round 5))
(* (exact-round 7) (exact-round 6) (exact-round 0.1389169448941857))
(gcd (exact-round 2) (exact-round 3) (exact-round -1.9134427f0))))
(sinh (+ (* (exact-round -1/4)) 0))
(sinh
(sqr
(bitwise-and
(exact-round -1.7976931348623157e+308)
(exact-round 13.534782f0)
(exact-round 10))))
(tanh (- 0))
(sinh (- (bitwise-and (exact-round 3.3552675f-07) (exact-round -0.0))))
(tanh (sqr (gcd (exact-round -1.9518888f-30))))
(tanh (- 0))
(tanh (/ (max (exact-round 7.6979246f-32)) 4))
(tanh
(min
(min (exact-round 3) (exact-round 0))
(lcm (exact-round -8.50503736511622e+249))
(sub1 (exact-round 3))))
(tanh (min (lcm (exact-round -5.2226904f+10) (exact-round 6.9677464f+15)) 0))
(sinh (- 0))
(tanh (* -1 (- (exact-round 0.0f0))))
(sinh (min (sub1 (exact-round 10)) (* (exact-round 1.797693134862315e+308)) 0))
(*
(tanh (truncate -2/5))
(flmin (real->double-flonum -inf.0) (real->double-flonum 2)))
(sinh
(min
(min
(exact-round 5.4347221042537e-323)
(exact-round 1.7976931348623157e+308))))
(sinh
(-
(min
(exact-round 1.0995611268076682e-78)
(exact-round 14.208988f0)
(exact-round 1.7976931348623151e+308))))
(tanh (* (min 9 0) (* (exact-round 14) (exact-round 9.8813129168249e-324))))
(tanh (- 0))
(abs (sinh (truncate 2/7)))
(tanh (min 2 0))
(/ (make-rectangular -inf.f 1.4821969375237e-323))
(sinh (sqr (arithmetic-shift (exact-round -8.2284605f-38) (exact-round 1))))
(sinh (max 0 (* -2)))
(tanh (min (* (exact-round 1/2) (exact-round 17))))
(sinh (- (tan 0)))
(/ 1/7 (make-rectangular +inf.0 6) (- 0 1/2))
(tanh (max (- (exact-round 0))))
(tanh
(tanh
(round
(modulo (exact-round 1.4821969375237e-323) (exact-round -1.5959707f0)))))
(tanh (- 0))
(/ (make-rectangular 9.8813129168249e-324 +inf.0))
(tanh (round (lcm (exact-round 2/7) (exact-round -1.6457217893840803))))
(tanh (max (min (exact-round 4) (exact-round 0) (exact-round 0.0))))
(tanh (+ (min (exact-round 0.008915729f0)) 0))
(tanh (tanh (+ (integer-length (exact-round 0.28622946f0)))))
(sinh (sqr (+ (exact-round 2.7228466658514113e-107))))
(/
(+ (exact-round 1.8655746f+35) (exact-round 1))
2.0324421f-21
(make-rectangular 4 1.7976931348623157e+308))
(sinh (truncate 1/3))
(tanh
(tanh
(floor
(arithmetic-shift (exact-round 0) (exact-round 2.9643938750475e-323)))))
(tanh (min 0 0 1/2))
(sinh
(sqr
(arithmetic-shift
(exact-round 0.40748192417299584)
(exact-round -10.049699650875125))))
(sinh
(*
(*
(exact-round -21.934877f0)
(exact-round -1/4)
(exact-round -1.0979695f0))))
(tanh (truncate -1/2))
(sinh (max (round (exact-round -9)) (min (exact-round -1/5) (exact-round 3))))
(sinh (max (min (exact-round 0) (exact-round -2.8196778f-13))))
(sinh (min 7 1/5 0))
(sinh
(max (min -8/5 6) (min (exact-round 3) (exact-round 0) (exact-round 0.0f0))))
(tanh (round -1/4))
(sinh (- (remainder (exact-round 4/3) (exact-round 1))))
(sinh
(*
(- (exact-round 0))
(max (exact-round 2) (exact-round 3.95252516673e-323))))
(sinh (/ (- (exact-round -13/42)) 7))
(sinh (ceiling (quotient (exact-round 4.4465908125712e-323) (exact-round 1))))
(/
(make-polar
(ceiling +inf.0)
(fl- (real->double-flonum 9) (real->double-flonum -0.0f0)))
(exp 0.0f0))
(/
(make-rectangular -7.403526f0 -1.7976931348623143e+308)
(/ -4 1.9067208f+09)
(flabs (real->double-flonum 1/7)))
(/
(make-rectangular -inf.f -inf.0)
(flceiling (real->double-flonum -1.797693134862315e+308)))
(sinh (* (* (exact-round 2) (exact-round 0.09098263f0))))
(tanh (+ (truncate (exact-round 1/2))))
(sinh (min 0 (max 1 3 -1) (abs (exact-round 0))))
(/
(bitwise-not (exact-round 0.9279912613796584))
(flcos (real->double-flonum -1))
(+ (make-rectangular 1 3.95252516673e-323)))
(sinh (* (arithmetic-shift (exact-round 0.0) (exact-round 5))))
(- (tanh (min 0 3/10 3)))
(sinh (min (bitwise-xor (exact-round 0) (exact-round 1.976262583365e-323))))
(tanh (min 0 5))
(tanh (abs (arithmetic-shift (exact-round -0.0f0) (exact-round 3))))
(sinh (ceiling (bitwise-xor (exact-round 2.8510355038856043e-154))))
(sinh (max -1 0))
(sinh
(abs (quotient (exact-round 3.0935251079895583) (exact-round -1.635804f+33))))
(sinh (- (bitwise-and (exact-round 24) (exact-round 0))))
(+
1.5245886f+12
(max (exact-round 2) (exact-round 5/4))
(tanh (make-rectangular 1.4291365847030308e-64 -0.76987815f0)))
(/ -1/4 (make-rectangular -inf.0 -2))
(sinh (max (ceiling 0) (integer-length (exact-round 0))))
(sinh
(sqr
(min
(exact-round 1/2)
(exact-round 0)
(exact-round -5.524229786036656e-164))))
(tanh (round 1/10))
(sin (sinh (truncate -1/2)))
(sinh
(min
(max (exact-round 0) (exact-round -8.157221982588571e+43))
(gcd (exact-round 2) (exact-round 9.8813129168249e-324) (exact-round 1))
(abs -2)))
(sinh (truncate (* (exact-round 1/5))))
(/ (make-rectangular -1.7976931348623157e+308 -1.0118355f-14))
(tanh (- (max (exact-round 0.0))))
(+
(cos 1)
(* -1.338113f+27 -29.544191f0)
(make-polar 9.8813129168249e-324 8.389207776771219))
(cosh
(/
(make-rectangular +inf.0 1.9165856529632936)
(fltan (real->double-flonum 1))))
(sinh (- (bitwise-ior (exact-round 0))))
(/
(max -4.4064098f+24 -inf.0 1/3)
(make-rectangular 4.971020894390071e+51 +inf.0)
-1.709600729934065)
(- (tanh (round 1/2)))
(sinh
(min
(max 0)
(ceiling (exact-round -2.5244543529738035e-23))
(* (exact-round -1) (exact-round 0) (exact-round -1.6624979f0))))
(tanh (ceiling (+ (exact-round 4.9406564584125e-324))))
(tanh (floor (max -1/3 0)))
(sinh (round (remainder (exact-round 5.75456f0) (exact-round -1.5700808f0))))
(tanh (min (floor (exact-round 0)) 1 (max (exact-round 11))))
(tanh
(round (remainder (exact-round 0.0) (exact-round 1.048512178375371e+274))))
(sinh (- 0))
(sinh (max (gcd (exact-round 0)) -2))
(tanh (* (modulo (exact-round -2.552142604920734e-296) (exact-round 3))))
(tanh (- (+ 0)))
(tanh (+ (bitwise-xor (exact-round 8.414699f-29) (exact-round 0))))
(+
(flround (real->double-flonum 1.60541635f-24))
(make-polar -2.4861934f+36 7.734753f-36))
(tanh
(floor
(arithmetic-shift (exact-round 1) (exact-round -2.018803398217005e+278))))
(tanh (+ (* 0 -4.844077f0 4.659485590796607e+264) (abs (exact-round -1/3)) 0))
(sinh (+ (min (exact-round 9.8813129168249e-324) (exact-round 10))))
(tanh (sinh (floor 2/5)))
(tanh (- (- (exact-round 0))))
(/ (make-rectangular -5 1.976262583365e-323))
(tanh
(round
(bitwise-and (exact-round -4.9406564584125e-324) (exact-round 13.596185f0))))
(tanh (max (round (exact-round 2.4703282292062e-323))))
(tanh
(min
(gcd (exact-round -2) (exact-round -5.094050997695298) (exact-round 5/4))
(ceiling 0)))
(sinh (- (+ 0)))
(sinh (ceiling -3/4))
(sinh (+ 0 (gcd (exact-round 1/4)) 0))
(sinh (- (* (exact-round 4.070678f-34) (exact-round 1.7976931348623155e+308))))
(sinh
(min
(min
(exact-round 0.14853434f0)
(exact-round 4.9406564584125e-324)
(exact-round 2.4760883f0))))
(sinh (round -1/25))
(/
-1144.6757051834838
1.8702761f-23
(make-rectangular 9.8813129168249e-324 -16.04883f0))
(sinh
(max
(lcm
(exact-round -1.4676713532377365e+205)
(exact-round -7.029835175908767e-40))))
(/ (make-rectangular -inf.0 -1.8590675f-10) 7.1919174f+11)
(sinh (- 0))
(sinh
(- (bitwise-ior (exact-round 0) (exact-round 1) (exact-round 1)) (max 1)))
(sinh (- (integer-length (exact-round -1/2))))
(sinh (* (bitwise-and (exact-round 1/2))))
(/ (make-rectangular -inf.f -7.936336217209017e-143))
(sinh (truncate (lcm (exact-round -1.2922209f-34))))
(sinh (- 0))
(sinh (min 2 0))
(/ (make-rectangular +inf.0 7))
(*
(/
(make-rectangular +inf.f -1.3086925781062948e-124)
(exp 2)
(bitwise-and (exact-round -3/11)))
-4.880003479031522e-08)
(sinh
(floor
(min
(exact-round -4.593328323419585e-295)
(exact-round 6.49027206399e-09)
(exact-round -0.0))))
(* -1/3 (sinh (- 0)))
(/
(make-rectangular
(sqr (real->double-flonum +inf.0))
(max
(real->double-flonum 4)
(real->double-flonum -2)
(real->double-flonum 5))))
(+
(make-rectangular -1.7976931348623151e+308 1/15)
(make-polar -12/43 0.008068093f0)
(tan (real->double-flonum 1)))
(+ (make-polar 1.4128605f0 2.973313f-33) (max (real->double-flonum 2)))
(/ 4 (cosh (make-rectangular 1 9.8813129168249e-324)))
(/
1.7976931348623141e+308
(make-rectangular
(min 1.4821969375237e-323 +inf.0 -1.7976931348623147e+308)
-0.766481613292698)
(unsafe-fl+
(sub1 (real->double-flonum 0.6712944f0))
(real->double-flonum 0.0)))
(/
-1.797693134862314e+308
(flexp (real->double-flonum 0))
(make-rectangular (sqrt 5.0788827f0) (min 1.976262583365e-323)))
(/
(fl+ (real->double-flonum 2) (real->double-flonum 1.5539016f+30))
(make-rectangular 3 +inf.0)
(unsafe-flmin (real->double-flonum -inf.f) (real->double-flonum +inf.0)))
(sub1 (/ (make-rectangular -inf.0 2) 7/10))
(/ (make-rectangular +inf.f -27.89912133921971))
(round
(bitwise-and
(exact-round -1)
(exact-round -1.7976931348623143e+308)
(exact-round -1)))
(/
(make-rectangular 1 -3.307846703506794e-41)
4.9406564584125e-324
(- (real->double-flonum -6.579934f0) (real->double-flonum 3.0113332f0)))
(*
(make-rectangular -inf.0 -inf.f)
(* (real->double-flonum 1) (real->double-flonum -6.307696920933362e-113))
(max -1 -1.5933586f+34 -1/5))
(/ (flcos (real->double-flonum 0)) (make-rectangular 4 +inf.0))
(/ 0.1758998f0 (make-rectangular 1.4373878f0 -inf.0))
(/ (make-rectangular 2 -inf.0) (cos (real->double-flonum 1)) -8/5)
(round
(bitwise-and (+ (exact-round -5.2906824815254385e+300)) (exact-round -7)))
(sinh (truncate (remainder (exact-round 3) (exact-round 1))))
(tanh (- 0))
(tanh (floor 1/2))
(sinh (round (truncate (exact-round 1/5))))
(sinh (- (sqr (exact-round -2.2115127f-07))))
(tanh (max (lcm (exact-round 0.16265454825991324))))
(*
(unsafe-fl- (real->double-flonum 1) (flfloor (real->double-flonum 4)))
-21219.082f0
(-
(make-polar +inf.0 4.660871016258741e+149)
(gcd (exact-round -4/31))
(truncate -18)))
(tanh (round (integer-length (exact-round 0))))
(/
(make-rectangular
(max 1)
(*
(real->double-flonum -9.68355657230973e-272)
(real->double-flonum 9.721236f0)))
(+ (flexpt (real->double-flonum 0) (real->double-flonum 3.940896f-15)))
-0.17994110264724025)
(*
(make-rectangular 1.7976931348623151e+308 +nan.f)
-4.170927f+08
(* (real->double-flonum 1.4846453277988332) (real->double-flonum 4)))
(floor (bitwise-and (exact-round -5) (exact-round 6.29660329082445e+147)))
(/
(make-polar
0.0
(max (real->double-flonum 2) (real->double-flonum 30.317604f0))))
(max (bitwise-and (exact-round 1.7976931348623157e+308) (exact-round -29)))
(/
(make-rectangular +nan.0 (max 10 2 0))
(fl*
(+ (real->double-flonum -1.4821969375237e-323))
(sin (real->double-flonum -1.2086458f0)))
(-
(* (real->double-flonum -1.7976931348623153e+308))
(min (exact-round 3/4) (exact-round 1.9591119f0))))
(/ (floor -6) (make-rectangular +inf.0 -1.3982029f+20) -2)
(+
(sin -14.41533f0)
(make-rectangular 2 1.976262583365e-323)
(* -3.0656253f-24 -7.1026087f0 +nan.0))
(*
(min -25.716513f0 (min -17/3 2))
-1.7976931348623157e+308
(make-rectangular (abs +inf.0) (max (real->double-flonum 1))))
(/
(make-rectangular
(log 1.0697606688604438e+256)
(* -inf.0 -1.6213031f-11 -0.41536245f0))
3)
(*
(+ (real->double-flonum 1.2021859f0) (fltruncate (real->double-flonum -0.0)))
4
(make-rectangular
(+ (real->double-flonum +inf.f) (real->double-flonum 0.0))
-inf.0))
(*
(make-rectangular (abs (real->double-flonum +inf.0)) 5)
(* (* (real->double-flonum 3/2)) 4.3061695f0))
(/
-8.302019f-06
(make-polar 0.0 5.560084769914483)
(abs (real->double-flonum 0)))
(tanh
(/
(make-rectangular -inf.0 -0.30725425f0)
3
(sub1 (real->double-flonum 7.148287f+31))))
(/ (sqrt (make-rectangular +inf.0 -5/3)) 5)
(/ (make-rectangular -inf.0 1/2))
(+ (make-polar -1.901861929168266e+59 3.8788676f0) -7.957793388226727e-60)
(+
(make-rectangular
(min 9 4.9406564584125e-324)
(sin (real->double-flonum -1.486133178603394)))
(exp (sqr 15.821825f0))
(max
(real->double-flonum -4.6717093f-17)
(*
(real->double-flonum 1)
(real->double-flonum 5/28)
(real->double-flonum -2.032631686775097))
(- (real->double-flonum -2.4329875f0))))
(/
(* 0.0f0 (make-rectangular -7 5.928787750095e-323) -1.7976931348623155e+308))
(/
8.3991159793012e-323
(make-rectangular
(cos (real->double-flonum -3))
(add1 (real->double-flonum +inf.0))))
(/
(+
(make-rectangular 2.4703282292062e-323 -1/2)
(* (exact-round 0) (exact-round -6.85372f0) (exact-round -1/2))))
(/
(flabs
(min
(real->double-flonum 3)
(real->double-flonum 7.089624754923938)
(real->double-flonum 2)))
(make-rectangular
(flmin (real->double-flonum 3) (real->double-flonum -inf.0))
-3))
(+ (make-polar -3.0679216f+17 35810724.0f0) (- 1 0.0 -2.2785807f-28))
(+
(+ (real->double-flonum 0.0) (real->double-flonum 0.0f0))
(make-polar -62.260838f0 0.110367715f0))
(/
(make-rectangular -inf.f -1.7976931348623157e+308)
(flceiling (real->double-flonum 4)))
(+ (sinh (tanh (make-polar 0.368395f0 +nan.f))) -2.2694893972124115)
(/ (make-rectangular 2.1481019965316337 9.8813129168249e-324))
(/
(+ (real->double-flonum -9.6051934f-29) (real->double-flonum 0))
(make-rectangular 1.4821969375237e-323 4))
(+
(flceiling (real->double-flonum 4.9406564584125e-323))
(make-polar -1.3426063f0 6.686688f0))
(/ (make-rectangular 8.667342f-16 +inf.0))
(/
(make-rectangular -0.13919233954185614 -2.305314f0)
(tanh (+ -0.0f0 0))
(sub1 1.976262583365e-323))
(* (min 3/4) 0.9845773f0 (make-rectangular 3 0.0))
(/ (make-rectangular 6.019296f+12 9.8813129168249e-324))
(/
(fllog (real->double-flonum 1.976262583365e-323))
(make-rectangular 3.526483f-38 -inf.0))
(/ -5 2/7 (make-polar -0.0 (fltan (real->double-flonum -3.833043f+21))))
(floor (bitwise-and (exact-round 2.713926459459902e+100) (exact-round -1)))
(log (make-rectangular 2.275169f+11 (ceiling -inf.f)))
(max (bitwise-and (- (exact-round 1)) (exact-round 1.7976931348623151e+308)))
(/
(make-rectangular
(round (exact-round 3))
(flround (real->double-flonum -inf.0))))
(max
0
(bitwise-and
(bitwise-ior (exact-round -1) (exact-round 3) (exact-round 3))
(exact-round 2.967380117744804e+112))
7)
(/ (make-rectangular +inf.0 1.7976931348623155e+308) 1.1622358f+24)
(/
(min
(real->double-flonum 3)
(real->double-flonum -1.7976931348623157e+308)
(real->double-flonum 3/2))
(make-rectangular 1.976262583365e-323 1.9796724097581277e+19))
(/
(tan (real->double-flonum 9))
3.3626845f-27
(make-rectangular 1 3.95252516673e-323))
(log (make-rectangular +inf.f +inf.f))
(/ (make-rectangular +inf.0 1))
(/
(/
9.8813129168249e-324
(make-rectangular 4 -1.7976931348623145e+308)
(add1 (exact-round -0.0f0))))
(/ (make-polar -0.0 -0.0))
(+
(- 6.4228533959362e-323 2)
(make-polar -1.7976931348623157e+308 8.055967f+24))
(/
(sinh (sqr 2))
(make-rectangular
(max
(real->double-flonum 21/40)
(real->double-flonum 2)
(real->double-flonum -1))
(/ 5.928787750095e-323 -15/13))
(unsafe-fl*
(real->double-flonum 1)
(flatan (real->double-flonum 7.9906573f+31))))
(min
(integer-length (exact-round 6))
(flexpt (real->double-flonum -0.0f0) (real->double-flonum -1)))
(/ 0.0 (make-rectangular +inf.0 -7/2))
(/
-4.138431f+16
(+
(make-rectangular -1.350358540579664e-118 +inf.0)
(flcos (real->double-flonum 1))
(tan 15)))
(max 0 (bitwise-and (exact-round 9.574622f+23) (exact-round -1)))
(/
(make-rectangular
(/ (real->double-flonum 3.9599206f-16))
(unsafe-flabs (real->double-flonum 9.8813129168249e-324))))
(/ (make-rectangular (floor 4.9406564584125e-324) -0.0))
(/ (make-rectangular 3 -inf.0))
(/ (* 1/4 (make-rectangular 3/4 -inf.0)))
(/ (make-rectangular -inf.0 1.5261126408157696e+164))
(log (make-rectangular +inf.f -0.908023f0))
(/
(* (make-rectangular +inf.0 1) (+ 4))
(fl-
(real->double-flonum 6.578783783780891e+298)
(real->double-flonum -2.06074474904966e+82))
3)
(min (flexpt (real->double-flonum -0.0) (real->double-flonum -3)) (add1 0))
(/ (make-rectangular 1.0118036f0 4.9406564584125e-324))
(*
1.4229359f-35
(truncate (exact-round 4))
(make-rectangular
31/5
(*
(real->double-flonum 2)
(real->double-flonum -inf.0)
(real->double-flonum +nan.f))))
(+
(make-polar 1.7976931348623157e+308 -128012.13f0)
(unsafe-fl-
(real->double-flonum 4.9406564584125e-324)
(real->double-flonum -1.003056287745491)))
(/
(+
(max (real->double-flonum 23.939516f0))
(make-polar -1.1404732f-16 -4474.371f0))
1
(tan (real->double-flonum 3.703682f0)))
(/
(make-rectangular
(*
(real->double-flonum 0.0f0)
(real->double-flonum 3)
(real->double-flonum +nan.f))
(/ (real->double-flonum 1.5019045589416252e-161)))
(round (real->double-flonum 1))
(abs (real->double-flonum 1.797693134862315e+308)))
(/ (make-rectangular -inf.0 0.0) (tanh (add1 0)) -inf.0)
(/ (make-rectangular 6.182307412485337e+191 +nan.f) 4 1)
(* (exp +inf.0) 9.8813129168249e-324 (make-rectangular 0.0 2))
(/
(make-rectangular 1 +inf.0)
(unsafe-fl* (real->double-flonum -0.08482114f0) (real->double-flonum 0)))
(- (make-rectangular +inf.0 -1) (* 0 +inf.f))
(/
(make-polar +inf.0 0.0)
-1.6486595f-17
(max (real->double-flonum -1.10778723613903e+146)))
(/ (min 4 -1) (make-rectangular -1.7976931348623157e+308 -0.48362154f0))
(/
(*
(make-rectangular +nan.f -1.6753775871463176e-193)
(ceiling -1.7976931348623155e+308))
(fl* (real->double-flonum 2) (real->double-flonum 0)))
(/
(unsafe-flmin (real->double-flonum 1) (real->double-flonum 5/8))
(/ 1 -32/3)
(make-rectangular 1.4821969375237e-323 3))
(/ (make-rectangular 4 +inf.0))
(/
(cosh (make-rectangular 2.7238666f+38 -2.7298811032891e-78))
(unsafe-flsqrt (real->double-flonum 1.7976931348623157e+308)))
(/
(make-polar
(max (real->double-flonum 0.0) (real->double-flonum -240026434170169.5))
(- (real->double-flonum 3) (real->double-flonum 1/2))))
(+
(exp -7.7010645f-06)
2.3587394f-23
(make-rectangular 8.450573606704089e-141 1))
(/
(make-rectangular (abs +inf.0) 1)
(flround (flfloor (real->double-flonum 9.063922f+14)))
(-
(flatan (real->double-flonum 3.4584595208887e-323))
(real->double-flonum 2)
(real->double-flonum 1.0189711f0)))
(/ (make-rectangular -1.8358519442157564 (floor +nan.0)) 9)
(/ (make-rectangular 2 +nan.0) 2.330923f-33 -0.3978028959794585)
(+
(bitwise-and (exact-round -1) (exact-round 8.017544067804913e+303))
(truncate (exact-round 0.0f0)))
(/
(make-rectangular 3 -0.0)
2.9643938750475e-323
(fl- (real->double-flonum 4) (real->double-flonum -4)))
(floor
(bitwise-and
(bitwise-xor (exact-round 1) (exact-round 4.3507125f+19))
(+ (exact-round -4))))
(/ (make-rectangular -5.919837783850634e+144 +inf.0))
(floor
(bitwise-and (floor (exact-round -3)) (exact-round -1.6259864356593537e+109)))
(/ 7.8307104f0 (make-rectangular 2602856.5f0 +inf.0))
(log (make-rectangular 0.60501945f0 -inf.f))
(-
(flfloor (flfloor (real->double-flonum +inf.f)))
(* (ceiling (exact-round -27/8)) 0 (fllog (real->double-flonum -2/3)))
(make-rectangular 9.797624f0 (- (real->double-flonum -0.0f0))))
(*
5
+inf.0
(cosh (make-rectangular -1.7976931348623153e+308 -1.7976931348623157e+308)))
(/
(make-rectangular +inf.0 -5.1303835f0)
(max (exact-round 1.4821969375237e-323) (exact-round 4)))
(/
(cosh (make-rectangular -inf.0 -1.685847f-33))
(flsin (real->double-flonum -3)))
(/
(make-polar -inf.0 -8.389017008941602e+214)
(+ -9.911437636709605e+41)
(max (exact-round 2.8164606531844925) (exact-round 3)))
(/
(add1 (make-rectangular +nan.f 2.4703282292062e-323))
(min
(*
(real->double-flonum 16)
(real->double-flonum -6.5616974f+10)
(real->double-flonum -3.1764786f0))
(- 4 6.4228533959362e-323 8/15)
-17.72646330884845))
(/ (make-rectangular 1.7665469642760404e+304 -inf.0))
(* (bitwise-and (exact-round 5.9043345f+30) (sub1 (exact-round 0))))
(+
(make-polar 8.70392880401687 0.0047191866f0)
(tan (real->double-flonum 4.9406564584125e-324)))
(/ (make-rectangular -2.581724777672763 +inf.0) (* +inf.0 -1/7))
(/ (make-rectangular +nan.0 9.8813129168249e-324) (floor -3.5503556f-28))
(* (flsqrt (real->double-flonum 0)) 2 (make-rectangular -inf.0 7))
(/ (make-rectangular +inf.0 2.7017850815907883e+25) (sub1 -inf.f))
(log (make-polar -inf.f 8.599268f-22))
(/ (make-rectangular 4/5 1.797693134862315e+308))
(/
(make-rectangular -1.266485546972744e-185 -inf.f)
(+
(real->double-flonum 4.5108434f-10)
(real->double-flonum 1.1956617400792416e+205))
-inf.f)
(+
(floor (+ (exact-round -25.263502f0) (exact-round -1/2)))
(- (min (real->double-flonum 0)) 16 (make-rectangular -inf.0 0.0))
+nan.0)
(/
(sqr 3)
(make-rectangular 1.7976931348623151e+308 (cos 1.7976931348623147e+308)))
(ceiling (flexpt (real->double-flonum -0.0f0) (real->double-flonum -11)))
(/ (make-rectangular -65578.32f0 -inf.0) 1 -5.065710475407155e+64)
(/
(sub1 0.8550388f0)
(+
(+ 5.5293337f-15 1.6585703248349453)
(gcd (exact-round 0) (exact-round 1))
(+ (real->double-flonum 2) (real->double-flonum -1/2)))
(sin (make-rectangular 0.0 8.3991159793012e-323)))
(/
3.2993203f+37
(floor -2.2441852f0)
(make-polar 0.42484267570553375 4.940078147009648))
(ceiling (bitwise-and (exact-round 8.48463f+10) (exact-round -1)))
(/
(make-rectangular
(- (real->double-flonum 2.3104787099047715e+119))
(+ 2.2895064f0 0.5689070788001137 -1.7976931348623131e+308))
(fllog (fl+ (real->double-flonum 1) (real->double-flonum 9.2728725f-10)))
5)
(-
(+ 1 -0.17853218f0)
(bitwise-ior (max (exact-round 3)) (exact-round 0.0f0))
(make-rectangular (log 7.4109846876187e-323) (abs -inf.0)))
(/
(flcos (real->double-flonum 0))
(make-rectangular -1.7976931348623157e+308 1.4821969375237e-323))
(/ (make-rectangular -inf.0 -1.7976931348623153e+308))
(* (bitwise-and (exact-round -3) (exact-round -1.7976931348623157e+308)))
(ceiling (bitwise-and (exact-round 1.0015169f+14) (exact-round -1)))
(/ (make-rectangular 1.7976931348623157e+308 +inf.0))
(/
(make-rectangular
(fllog (real->double-flonum 0))
(min 1.797693134862312e+308)))
(/
(* -5/4 -1 -1/2)
(flmax (real->double-flonum -14/59) (real->double-flonum +inf.0))
(make-rectangular -inf.0 -6.6653183907507665e+125))
(/ (make-rectangular 5.2141701976361275e+241 +inf.f))
(min
(flexpt
(real->double-flonum -0.0f0)
(min
(real->double-flonum -3)
(real->double-flonum 24)
(real->double-flonum 1.0947034325260547e-254))))
(/
(/ (real->double-flonum -1.4275423f0))
(make-rectangular -2.85069689139348e-54 -1.7976931348623151e+308))
(truncate
(bitwise-and
(- (exact-round 0) (exact-round 4))
(ceiling (exact-round 7.27468f+19))))
(/
(* (make-rectangular +nan.0 3/2))
(unsafe-flsqrt (real->double-flonum 9))
(unsafe-fl/
(real->double-flonum +inf.0)
(real->double-flonum -1.7976931348623153e+308)))
(/
(cosh (make-rectangular -4.9474984f+19 -4.76630879186772e-155))
(+ 2.6386206f-06))
(/
(round -1)
(flmin
(real->double-flonum -1.7976931348623151e+308)
(real->double-flonum -1/5))
(make-rectangular -inf.f 7.165422052747097e+265))
(/
(+ (real->double-flonum 0.0f0))
(unsafe-fl+ (real->double-flonum -2/3) (real->double-flonum 10))
(make-rectangular 5.4347221042537e-323 -inf.0))
(*
2
(make-rectangular
(unsafe-fl* (real->double-flonum 1) (real->double-flonum 1))
(min
(real->double-flonum -inf.0)
(real->double-flonum -26.347204f0)
(real->double-flonum 3))))
(floor (bitwise-and (exact-round -1) (exact-round -1.7976931348623147e+308)))
(*
(make-rectangular (* +inf.0 -13/10 3) 23)
(- (real->double-flonum 0))
(cosh (max 5 0 0)))
(*
(make-rectangular
(flsin (real->double-flonum -inf.f))
(bitwise-ior (exact-round 0) (exact-round -1)))
2
(+ 0.18365704f0))
(*
(+ (exact-round 5))
(make-polar
(unsafe-fl* (real->double-flonum -inf.f) (real->double-flonum -5/2))
(sin (real->double-flonum 2))))
(*
(cosh (cosh (make-rectangular 17.431166f0 1.0615060122404165)))
(fltruncate (unsafe-fl* (real->double-flonum 1) (real->double-flonum -3))))
(*
(fltan (flsqrt (real->double-flonum 0)))
(make-rectangular (- -5.9265747f0 +nan.0) 1.0339303925070463e-232))
(/
(make-rectangular +nan.0 1)
(-
(real->double-flonum 1)
(real->double-flonum 0.06738663f0)
(real->double-flonum 7.9050503334599e-323)))
(* (make-rectangular 4 +inf.0) 2 (add1 (exact-round 0.8167418f0)))
(*
(make-rectangular 1.7976931348623151e+308 14/3)
(+
(real->double-flonum 3)
(real->double-flonum -6.994152f0)
(real->double-flonum 1))
1)
(/
(make-rectangular 9.5256185f-35 -inf.0)
(+
(real->double-flonum 7)
(real->double-flonum 3)
(real->double-flonum 1.976262583365e-323))
(unsafe-fl+ (real->double-flonum 0) (real->double-flonum 3)))
(ceiling (bitwise-and (exact-round 7.949443893444532e+177) (exact-round -1)))
(*
(make-rectangular 0.0 +inf.0)
(ceiling (real->double-flonum -4.1434605f+37))
(min (real->double-flonum 0) (real->double-flonum 2)))
(*
-0.0
(/ (make-rectangular -4.9406564584125e-324 0.02826022f0))
-0.03135514535167072)
(*
(make-rectangular 1.7976931348623155e+308 1.7976931348623157e+308)
(- 1 -inf.0)
6)
(/
(min -1.4811229f-36 0.0f0)
(+ (real->double-flonum -5/2))
(make-rectangular +inf.0 0.5895755447157006))
(truncate (bitwise-and (exact-round -2) (exact-round -1.7021951f+12)))
(* (floor 6) (make-rectangular 8.3991159793012e-323 +inf.f))
(*
(fl+
(real->double-flonum -1.302416064314125e-293)
(real->double-flonum 4.9406564584125e-324))
(make-rectangular -9.038323f+37 -inf.0))
(*
(make-rectangular 2.644920489625189 +nan.f)
(unsafe-flsqrt (real->double-flonum 5)))
(/
2
(make-rectangular 1.7976931348623155e+308 1)
(sub1 (real->double-flonum 0.034460585393126276)))
(/
(flmin (real->double-flonum -15) (real->double-flonum -51.424126f0))
(add1 4)
(make-rectangular 1.976262583365e-323 2))
(-
(cos (min (exact-round -9/5) (exact-round 7)))
(/
3.9495411046506046
(flceiling (real->double-flonum 3))
(make-rectangular -1/4 1.4821969375237e-323)))
(-
(/
-0.3713432f0
(make-rectangular 4.9406564584125e-324 -1.797693134862315e+308))
(flexpt (max (real->double-flonum 1.4994744f-21)) (real->double-flonum -3)))
(/ (+ 0.058817342f0) (* (make-rectangular 3 -inf.0) (* 1/2 2/7 0.86800987f0)))
(max
(bitwise-ior
(bitwise-and (exact-round -2) (exact-round 7.669307791808228e+258))
(bitwise-xor (exact-round 0))
(exact-round 0.0f0)))
(+
(* (bitwise-ior (exact-round 1) (exact-round -1.3416489f0) (exact-round 1)))
(min 4/3 (+ (exact-round 1.7976931348623105e+308)))
(make-rectangular
(max (real->double-flonum 0.0))
(min 3.966231810699627 -1.9801397340231746 -1/4)))
(/ (make-rectangular -0.47108743f0 -inf.0) (max 1.7976931348623155e+308 -2 0))
(ceiling (flexpt (real->double-flonum -0.0f0) (real->double-flonum -5)))
(min (flexpt (real->double-flonum -0.0) (real->double-flonum -3)) 0)
(*
(unsafe-fl/ (real->double-flonum 0) (real->double-flonum -8.045241f+20))
(make-rectangular -inf.0 -5)
(max (exact-round 3) (exact-round 14)))
(*
(/
(max (real->double-flonum -1/3))
(/ (real->double-flonum -1.7976931348623153e+308) (real->double-flonum 3)))
(min
(min -1.7976931348623155e+308 5)
(min (real->double-flonum 9) (real->double-flonum -3.562195657145329e-280))
(unsafe-fl*
(real->double-flonum -1)
(real->double-flonum 1.9587062593936307e-295)))
(make-rectangular
(flcos (real->double-flonum +nan.0))
(/ (real->double-flonum 13) (real->double-flonum -1))))
(/
(unsafe-flsqrt (real->double-flonum 7))
(make-polar
(unsafe-fl* (real->double-flonum 0) (real->double-flonum 1.3238051f-30))
(ceiling (real->double-flonum 3))))
(*
(make-rectangular -12.170922722958942 -1.7976931348623145e+308)
-10.408284f0
(unsafe-fl+ (real->double-flonum 4) (real->double-flonum 2.648344f+07)))
(* (tanh (sub1 2.2812761f+24)) (make-rectangular +nan.0 8.968231276783684e+62))
(/
(max (exact-round -3) (exact-round 1))
2
(make-polar 0.0 (fltan (real->double-flonum 0))))
(*
(make-rectangular
(+ (real->double-flonum -2.139004f+35))
(- 0.5136155697966388 7.609600636085995 -inf.0))
(+
(flsin (real->double-flonum 0))
(+ -17/2 -1.505352392179396e-214 4.9406564584125e-324)))
(*
(round (min (real->double-flonum 3/2)))
(make-polar
(min
(real->double-flonum 1.7485642f+27)
(real->double-flonum -1.7976931348623155e+308)
(real->double-flonum 1.9078022f0))
(sub1 (real->double-flonum 1.5208878098163798e+223)))
(sin (real->double-flonum -5/13)))
(*
(min (max -0.0f0 +inf.0 -7/11))
-4/13
(make-rectangular -1.7976931348623157e+308 +inf.0))
(+ (bitwise-and (exact-round -1) (exact-round -8.831564405434159e+135)))
(* (make-rectangular -inf.0 -3) (sin (real->double-flonum 8)))
(max (bitwise-and (exact-round 2.5832200494955715e+82) (exact-round -4)) -6)
(/
(make-rectangular -9.8813129168249e-324 2)
(sqr (real->double-flonum 0.0f0))
-1/2)
(log (log (make-rectangular -inf.f +inf.f)))
(/
(cos (real->double-flonum 2))
(make-rectangular
(flmin (real->double-flonum -7.4815276f-19) (real->double-flonum 3/2))
(ceiling -1.7976931348623157e+308)))
(+ (flexpt (real->double-flonum -0.0f0) (flfloor (real->double-flonum -1))) 0)
(sinh (flexpt (real->double-flonum -0.0f0) (real->double-flonum -1)))
(*
(lcm (bitwise-not (exact-round 8)))
(make-rectangular 1.9982868116199189e+71 (add1 (real->double-flonum +inf.0))))
(sqrt
(flexpt
(real->double-flonum -0.0)
(floor (real->double-flonum -2.8978367843122523))))
(/
(real->single-flonum 0)
(make-rectangular
(sub1 -0.013669635f0)
(unsafe-flsqrt (real->double-flonum +inf.f)))
(/ (real->single-flonum 0)))
(*
(sqr (make-rectangular +inf.0 -0.0))
5
(fl+
(unsafe-flsqrt (real->double-flonum 0.17498136f0))
(real->double-flonum 6.5786315f+16)))
(log (make-rectangular (real->single-flonum +inf.f) 5335.7827f0))
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(expt
(real->single-flonum -0.0)
(flmin (real->double-flonum -3) (ceiling (real->double-flonum -1/10))))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(truncate (round (abs (real->double-flonum -0.0f0))))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs -0.0f0)
(abs (flround (ceiling (real->double-flonum -0.0))))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0f0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0f0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs (abs (truncate (real->double-flonum -0.0f0))))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0)
(abs (truncate (unsafe-flsqrt (real->double-flonum -0.0))))
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (sqrt (round -0.0)))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs (abs (floor (real->double-flonum -0.0))))
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(expt
(real->single-flonum -8.665778974912815e+107)
(bitwise-not (exact-round 6.774601151951068e+128)))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(floor (abs (real->double-flonum -0.0)))
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(truncate (abs (sqrt -0.0f0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(expt
(sin +inf.f)
(make-polar
(fltruncate (real->double-flonum 2.531945015125194e+76))
(flceiling (real->double-flonum +inf.0))))
(abs -0.0f0)
(abs -0.0)
(add1 (fl/ (real->double-flonum 1/4) (real->double-flonum -0.0f0)))
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (flceiling (flsqrt (real->double-flonum -0.0f0))))
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->double-flonum (real->single-flonum -0.0))))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs (real->double-flonum (real->double-flonum (real->single-flonum -0.0f0))))
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs -0.0f0)
(expt (real->single-flonum -0.0) (bitwise-not (bitwise-ior)))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(/
(gcd (sqr (exact-round -1)) (integer-length (exact-round 0)))
(real->single-flonum -0.0)
(flexp (flfloor (real->double-flonum 1))))
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (round (real->double-flonum -0.0f0)))
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->single-flonum -0.0))
(sqrt
(fl/ (real->double-flonum 1.3207776839674341) (real->double-flonum -0.0)))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0f0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(/
(real->single-flonum -2.0240654f+33)
(+
(fl/ (real->double-flonum 0) (real->double-flonum 2))
(truncate (real->double-flonum -0.0))
(flasin (real->double-flonum 0.0f0)))
(make-rectangular (flasin (real->double-flonum 0)) 5)
(*)
(ceiling (real->double-flonum -1.0104585998150004e+126)))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs
(sqrt
(unsafe-fl/
(real->double-flonum 1.554261f-24)
(real->double-flonum -0.0f0))))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(truncate (bitwise-and (bitwise-and) (exact-round -1.7976931348623155e+308)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0)
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0)
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs -0.0)
(abs -0.0)
(abs (real->double-flonum (real->single-flonum -0.0f0)))
(abs -0.0)
(abs -0.0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs (real->single-flonum -0.0f0))
(abs (real->single-flonum -0.0))
(abs (real->double-flonum (real->single-flonum -0.0)))
(abs -0.0f0)
(abs (real->single-flonum -0.0))
(abs -0.0f0)
(abs -0.0)
(abs (real->single-flonum -0.0f0))
(abs -0.0)
(abs -0.0f0)
(add1
(fltruncate
(unsafe-fl/ (real->double-flonum 2) (real->double-flonum -0.0f0))))
(expt
(make-polar (floor 6.468476f+31) (tanh +nan.f))
(flexpt
(sub1 (real->double-flonum 0))
(real->double-flonum 7.155251486063204)))
(tanh (fl/ (real->double-flonum 2) (real->double-flonum -0.0f0)))
(tanh (unsafe-fl/ (real->double-flonum +inf.0) (real->double-flonum -0.0f0)))
(add1 (fl/ (real->double-flonum 2) (real->double-flonum -0.0)))
(log
(make-rectangular
(real->single-flonum 5/4)
(real->single-flonum -1.7976931348623157e+308)))
(round
(bitwise-and (exact-round -1.7976931348623155e+308) (round (exact-round -1))))
(expt (real->single-flonum -0.0f0) (bitwise-and))
(round (expt -0.0f0 -1))
(expt (sinh -0.0f0) (floor (real->double-flonum -1/9)))
(add1 (fl/ (ceiling (real->double-flonum 1)) (real->double-flonum -0.0)))
(add1
(unsafe-fl-
(fl/ (real->double-flonum 2.27068f-20) (real->double-flonum -0.0f0))
(real->double-flonum 0)))
(expt (tanh (real->single-flonum -0.0f0)) (bitwise-not (exact-round 0)))
(expt
(sub1 (real->single-flonum 0))
(ceiling (exact-round 1.7976931348623157e+308)))
(expt
(real->double-flonum (real->single-flonum -9/5))
(sqr (exact-round 1.797693134862314e+308)))
(expt (real->single-flonum -0.0f0) (bitwise-and))
(tanh (unsafe-fl/ (real->double-flonum 3) (real->double-flonum -0.0)))
(expt -0.0f0 (floor -2/3))
(sqrt
(fl/
(real->double-flonum 2.2660296f0)
(flceiling (real->double-flonum -0.0f0))))
(/ (inexact->exact (real->single-flonum 1/2)) -0.0)
(expt
(real->single-flonum -5.6356673f0)
(truncate (exact-round -8.2161651820900135e+242)))
(* (flround (real->double-flonum -21742.229f0)) (make-rectangular +nan.0 3))
(expt
(unsafe-flsqrt (real->double-flonum -1))
(make-polar (real->single-flonum 6.821443f+27) (real->single-flonum +nan.0)))
(tanh (fl/ (real->double-flonum 0.12224905f0) (real->double-flonum -0.0f0)))
(sinh
(expt (real->single-flonum -1) (sqr (exact-round -1.360011780194363e+298))))
(ceiling (fl/ (real->double-flonum 5) (real->double-flonum -0.0f0)))
(sinh
(fl/ (real->double-flonum 5.928787750095e-323) (real->double-flonum -0.0f0)))
(sqrt
(fl+
(real->double-flonum 15)
(unsafe-fl/ (real->double-flonum 9) (real->double-flonum -0.0f0))))
(sqrt (* (fl/ (real->double-flonum +inf.0) (real->double-flonum -0.0))))
(max
(unsafe-fl/
(real->double-flonum 0.006261224681179065)
(real->double-flonum -0.0f0)))
(expt
(make-polar
(unsafe-flabs (real->double-flonum -0.0f0))
(round (real->double-flonum +inf.f)))
(flsqrt (unsafe-flsqrt (real->double-flonum -1.7976931348623141e+308))))
(expt
(ceiling (real->single-flonum -1650923.9f0))
(lcm (exact-round -1.7976931348623143e+308)))
(sinh
(unsafe-fl/
(real->double-flonum 1.976262583365e-323)
(real->double-flonum -0.0f0)))
(ceiling
(unsafe-fl/ (abs (real->double-flonum 2)) (real->double-flonum -0.0f0)))
(* (make-rectangular -inf.f -1.0392582850499196e-255) (sinh -3018.1985f0))
(/
(make-rectangular 8 +inf.0)
-0.784267146771867
(ceiling (sqr (real->double-flonum -9/11))))
(min
(real->double-flonum (real->double-flonum (real->single-flonum 7)))
4.4015314f-31
(sinh 2.3485355f+11)
(fl/ (sqr (real->double-flonum 5)) (real->double-flonum -0.0f0))
(lcm (integer-length (exact-round 0.0))))
(*
-5/4
(*
(real->single-flonum -1.1593805f+36)
(make-rectangular 4395013039504391.5 +nan.0)
1)
(real->single-flonum 21/34)
(exp (floor (exact-round 12))))
(expt
(sub1 (real->double-flonum +nan.f))
(make-polar (real->single-flonum 3991870.8f0) (sin -1.1223053f-17)))
(max
(unsafe-fl/
(real->double-flonum 7.020644089360399e-65)
(real->double-flonum -0.0)))
(/
(gcd (exact-round 2) (exact-round -4))
(real->single-flonum -0.0f0)
(round 2))
(ceiling
(unsafe-fl/
(fl+ (real->double-flonum 4) (real->double-flonum 2))
(real->double-flonum -0.0f0)))
(*
(flceiling (real->double-flonum 0))
(make-rectangular -2.006870542357445 +nan.0)
(real->single-flonum -3/11))
(expt
(min -11.741571f0 (ceiling 9.8813129168249e-324))
(sqr (lcm (exact-round -1.7976931348623141e+308) (exact-round -8))))
(expt
(make-rectangular
(add1 (real->double-flonum -178940.67079864573))
(abs 9.8813129168249e-324))
(flacos (real->double-flonum 2.1266366f+27)))
(expt (make-rectangular -1/2 1.7976931348623141e+308) (cosh +nan.f))
(log
(flmin
(real->double-flonum 3)
(unsafe-fl/ (real->double-flonum 1/8) (real->double-flonum -0.0f0))))
(tanh (unsafe-fl/ (real->double-flonum 2) (real->double-flonum -0.0f0)))
(ceiling
(fl/
(real->double-flonum 1.2520394961614763e-248)
(real->double-flonum -0.0)))
(/ (make-rectangular 4.580968352558739 -inf.0) 3/5)
(expt
-2.1172982f-30
(+ (exact-round -1.444196394736778e+279) (exact-round 3/2)))
(add1
(unsafe-fl/ (real->double-flonum 9.195241f+30) (real->double-flonum -0.0)))
(expt
(real->single-flonum -7.694171f0)
(round (exact-round 2.905017610887334e+78)))
(add1 (fl/ (real->double-flonum 0.49066553f0) (real->double-flonum -0.0f0)))
(ceiling (fl/ (real->double-flonum 5) (real->double-flonum -0.0f0)))
(expt
(fl/ (real->double-flonum 10/11) (real->double-flonum -0.0))
-2.9323564f0)
(expt -0.0f0 -1)
(/
(arithmetic-shift (exact-round 3.5562148232740016e+47) (exact-round 1/2))
(real->double-flonum (real->single-flonum -0.0f0)))
(expt (real->single-flonum -0.0f0) (bitwise-and))
(log
(make-rectangular
(real->single-flonum -inf.0)
(real->single-flonum -3.9914962571825976e+240)))
(expt -4.8165456f+29 (lcm (exact-round -1.7976931348623151e+308)))
(/
(round (exact-round -2.7393196f0))
(real->double-flonum (inexact->exact (real->single-flonum -0.0))))
(log (make-rectangular (real->single-flonum 3.8130515f0)
(real->single-flonum -2.8845456304823365e+289)))
(/ (abs (exact-round 1.8327790416478524))
(unsafe-flsqrt (real->double-flonum -0.0)) 1)
(- (real->single-flonum +nan.0)
(bitwise-xor)
(make-polar (flatan (real->double-flonum 0.0))
(flsin (real->double-flonum 0)))
(flacos (sin (real->double-flonum 4)))
(real->double-flonum (real->single-flonum -1.5582163f-23))
(flsqrt (real->double-flonum 0))
(make-polar (tan (real->double-flonum +inf.0)) (real->single-flonum 0.0))
(flmin (real->double-flonum 0)
(fl+ (real->double-flonum 5.2413393729292645e-161)
(real->double-flonum 1)))
(real->single-flonum -7.370759632814253e+46))
(expt -3.8097968f0
(lcm (exact-round 4)
(exact-round 1.7976931348623151e+308)
(exact-round 3311118.8f0)))
(+ (sqrt (make-polar -1.3828875524272957e+166 -0.12420556f0))
-7.977045912134898e+298)
(expt -0.0 -1.0)
| Racket | 1 | SnapCracklePopGone/typed-racket | typed-racket-test/counterexamples.rktd | [
"Apache-2.0",
"MIT"
] |
@echo off
"%~dp0\..\app\apm\bin\apm.cmd" %*
| Batchfile | 2 | pyrolabs/atom | resources/win/apm.cmd | [
"MIT"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.