Merge in branch created for forking GNOME Foundation voting system into Conservancy's own system.

This commit is contained in:
Bradley M. Kuhn 2014-02-10 12:11:10 -05:00
commit 17d144fbc8
264 changed files with 356 additions and 44674 deletions

View file

@ -1,47 +0,0 @@
=== ChangeLog discontinued ===
With the move to git, this module is switching from a ChangeLog file to
relying on commit messages to provide change history. Please write commit
messages in the format described at http://live.gnome.org/Git/CommitMessages
Below is a copy of this format:
=== begin example commit ===
[tag] Short explanation of the commit
Longer explanation explaining exactly what's changed, whether any
external or private interfaces changed, what bugs were fixed (with bug
tracker reference if applicable) and so forth. Be concise but not too brief.
=== end example commit ===
- The commit message is mainly for the other people, so they should be able
to understand it now and six months later.
- Always add a brief description of the commit to the _first_ line of the
commit and terminate by two newlines (it will work without the second
newline, but that is not nice for the interfaces).
- First line (the brief description) must only be one sentence and should
start with a capital letter unless it starts with a lowercase symbol or
identifier. Don't use a trailing period either. Don't exceed 72 characters.
- You can prefix the first line with one tag, to make it easier to know to
which part of the module the commit applies. For example, a commit with
"[fish] Make it work with newer fortune" in the gnome-panel module clearly
applies to the fish applet.
- The main description (the body) is normal prose and should use normal
punctuation and capital letters where appropriate. Normally, for patches
sent to a mailing list it's copied from there. This main description can be
empty if the change is self-explanatory (eg: "Add DOAP file").
- When committing code on behalf of others use the --author option, e.g. git
commit -a --author "Joe Coder <joe@coder.org>".
- When referring to a bug, you can use this form: bgo#12345. Use bgo for
bugzilla.gnome.org, but you can also reference bugs in other bug trackers:
rh means bugzilla.redhat.com, bnc means bugzilla.novell.com, lp means
launchpad.net, etc.
- When a commit closes a bug, the commit message should contain a line like:
Closes: http://bugzilla.gnome.org/show_bug.cgi?id=12345

17
HACKING
View file

@ -1,17 +0,0 @@
Other than fixes to obvious typos, please do not commit to this module
without first approving changes with the GNOME Foundation Board or
the Membership Committee:
board-list@gnome.org
membership-committee@gnome.org
Note that many of these files were originally created with various HTML
authoring tools and have a lot of evil cruft in them. It is very unlikely
that any of these files are valid HTML. Over time we should gradually clean
them up whenever we edit them until some day all the old cruft is gone and
we have valid HTML. :)
Please edit these files by hand and consider using indentation. ;)
[ See README in the gnomeweb-wml module for a primer about GNOME website
development. ]

View file

@ -1,3 +1,3 @@
Vincent Untz Bradley M. Kuhn
E-mail: vuntz@gnome.org E-mail: bkuhn@sfconservancy.org
Userid: vuntz Userid: bkuhn

View file

@ -1,4 +1,3 @@
SUBDIRS = foundation.gnome.org SUBDIRS = vote
#install-data-local: include $(top_srcdir)/rules.common
# $(INSTALL) -d $(prefix)/scripts

121
README
View file

@ -1,3 +1,120 @@
This modules holds the web pages at http://foundation.gnome.org. # Why This Fork of GNOME Foundation's Voting System?
When I was setting up Conservancy's ability to run elections for its member
projects, I surveyed various different systems. There are precious few Free
Software voting systems. [Selectricity](http://selectricity.org/) is a good
option, but upon discussions with the primary author, Benjamin "Mako" Hill,
he confirmed that it does not currently implement any of the algorithms
designed for multiple winner elections. So, if you want a preferential
voting system with just one winner, Selectricity is probably the best choice.
Meanwhile, [openstv](http://packages.debian.org/unstable/main/openstv) is a
command-line based system that implements all sorts of voting algorithms, but
it has no vote-collection system. (It's also worth noting that openstv has
since been taken proprietary, but older versions that were released as Free
Software are still available.)
GNOME Foundation, noticing this, implemented their own little hacked-together
system to collect votes for their annual Directorship elections, and they
have the code available in their
[GNOME Foundation website repository](https://git.gnome.org/browse/foundation-web/).
This project is a fork of that repository, with *just* the voting stuff
included. Most of the GNOME-isms have been removed, although a few remain.
I've also offered patches back to the GNOME Foundation repository by
cherry-picking changes that are of use to both projects.
Having spent 10-20 hours poking around this PHP code, I must frankly say that
this isn't a well-designed system, and I don't really recommend it. However,
if you need to run a few elections, using this system, by following the
instructions below, might be your quickest way to get an election up and
running. (Note: the instructions herein are loosely based on
[instructions available on the GNOME Foundation's wiki](https://wiki.gnome.org/MembershipCommittee/ElectionsHowTo),
although those instructions are somewhat GNOME specific. I believe these
instructions below are fully self-contained now, such that you don't have to
read the GNOME Foundation's instructions as secondary information).
# Setting up an election
0. vote/include/election-sql.php expects a secret config file that exists
only on the server and is included as PHP code. It's hard coded currently
to: /home/admin/secret/anonvoting currently.
The file should look something like this:
<?php
$mysql_host = "localhost";
$mysql_user = "someuser";
$mysql_password = "somepassword";
$mysql_db = "somedb";
$committee_name = "The Vote Masters";
$committee_email = "elections@example.org";
?>
1. When I deploy, I create an account for the election, as the mysql root user:
mysql -u root -p
Password: <MYSQLROOTPW>
Then Run these commands at the mysql> prompt:
CREATE USER 'someusername' identified by 'somepassword';
CREATE DATABASE somedbname;
Then, exit, and at the main command line run:
msyql -u root -p -D somedbname < ..../vote/include/schema.sql
Then run this again:
mysql -u root -p
Password: <MYSQLROOTPW>
and at the mysql command line, run these grant commands:
GRANT SELECT on somedb.elections TO someuser@localhost;
GRANT SELECT on somedb.election_choices TO someuser@localhost;
GRANT SELECT,DELETE on somedb.election_tmp_tokens TO someuser@localhost;
GRANT SELECT on somedb.election_voters TO someuser@localhost;
GRANT SELECT,INSERT on somedb.election_anon_tokens TO someuser@localhost;
GRANT SELECT,INSERT on somedb.election_votes TO someuser@localhost;
2. Create an election, with something like this:
mysql -u root -D somedb -p
SET NAMES 'utf8';
INSERT t INTO elections (type, name, voting_start, voting_end, choices_nb, question) VALUES ("elections", "2011 Spring Election", "2011-05-29 00:00:00", "2011-06-12 23:59:59", "7", "Which candidates would you like to see Elected?");
set @el_id = @@IDENTITY;
INSERT INTO election_choices (election_id, choice) VALUES
(@el_id, 'Candidate 1'),
(@el_id, 'Candidate 2'),
(@el_id, 'Candidate 3'),
(@el_id, 'Candidate 4');
INSERT INTO election_voters (election_id, email_address) VALUES
(@el_id, 'voter1@example.org'),
(@el_id, 'voter2@example.org'),
(@el_id, 'voter3@example.com'),
(@el_id, 'voter4@example.net');
INSERT INTO election_tmp_tokens (election_id, election_voter_id, tmp_token)
SELECT @el_id, id, SUBSTRING(MD5(RAND()) FROM 1 FOR 24) AS tmp_token
FROM election_voters where election_id = @el_id;
select @el_id;
That number you see at the end is this election's id. The URL you'll
give out is thus something like:
http://example.org/vote.php?election_id=THAT_NUMBER
Dealing With Problems
=====================
## Missing Ballots
Voters might complain that they haven't received their token. Likely, it
either went missing or the email address was wrongly noted in the
database. In any case, you need to find the ID of the voter With the ID do
something like:
SELECT * FROM election_tmp_tokens WHERE election_id = 17 AND election_voter_id = $ID;
Please read the HACKING file before making any changes.

View file

@ -23,7 +23,7 @@ DIE=0
(automake --version) < /dev/null > /dev/null 2>&1 ||{ (automake --version) < /dev/null > /dev/null 2>&1 ||{
echo echo
echo "You must have at minimum automake version 1.4 installed" echo "You must have at minimum automake version 1.4 installed"
echo "to compile foundation-web. Download the appropriate package" echo "to compile vote. Download the appropriate package"
echo "for your distribution, or get the source tarball at" echo "for your distribution, or get the source tarball at"
echo "ftp://ftp.cygnus.com/pub/home/tromey/automake-1.4.tar.gz" echo "ftp://ftp.cygnus.com/pub/home/tromey/automake-1.4.tar.gz"
DIE=1 DIE=1
@ -34,8 +34,8 @@ if test "$DIE" -eq 1; then
exit 1 exit 1
fi fi
(test -d foundation.gnome.org) || { (test -d vote) || {
echo "You must run this script in the top-level foundation-web directory" echo "You must run this script in the top-level vote system directory"
exit 1 exit 1
} }
@ -54,4 +54,4 @@ echo "Running $srcdir/configure --enable-maintainer-mode" "$@"
$srcdir/configure --enable-maintainer-mode "$@" || exit $? $srcdir/configure --enable-maintainer-mode "$@" || exit $?
echo echo
echo "Now type 'make' to compile foundation-web." echo "Now type 'make' to compile vote."

View file

@ -13,39 +13,7 @@ AC_SUBST(HTTP_PREFIX)
AC_OUTPUT([ AC_OUTPUT([
Makefile Makefile
foundation.gnome.org/Makefile vote/Makefile
foundation.gnome.org/about/Makefile vote/include/Makefile
foundation.gnome.org/about/advisoryboard/Makefile vote/2013/Makefile
foundation.gnome.org/about/history/Makefile
foundation.gnome.org/about/charter/Makefile
foundation.gnome.org/contact/Makefile
foundation.gnome.org/img/Makefile
foundation.gnome.org/img/logos/Makefile
foundation.gnome.org/img/reports/Makefile
foundation.gnome.org/legal/Makefile
foundation.gnome.org/licensing/Makefile
foundation.gnome.org/licensing/guidelines/Makefile
foundation.gnome.org/licensing/usergroup/Makefile
foundation.gnome.org/finance/Makefile
foundation.gnome.org/membership/Makefile
foundation.gnome.org/news/Makefile
foundation.gnome.org/reports/Makefile
foundation.gnome.org/vote/Makefile
foundation.gnome.org/vote/include/Makefile
foundation.gnome.org/vote/2000/Makefile
foundation.gnome.org/vote/2001/Makefile
foundation.gnome.org/vote/2002/Makefile
foundation.gnome.org/vote/2003/Makefile
foundation.gnome.org/vote/2004/Makefile
foundation.gnome.org/vote/2004-10/Makefile
foundation.gnome.org/vote/2005/Makefile
foundation.gnome.org/vote/2005-10/Makefile
foundation.gnome.org/vote/2006/Makefile
foundation.gnome.org/vote/2007/Makefile
foundation.gnome.org/vote/2007-10/Makefile
foundation.gnome.org/vote/2009/Makefile
foundation.gnome.org/vote/2010/Makefile
foundation.gnome.org/vote/2011/Makefile
foundation.gnome.org/vote/2012/Makefile
foundation.gnome.org/vote/2013/Makefile
]) ])

View file

@ -1,20 +0,0 @@
<Project xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:gnome="http://api.gnome.org/doap-extensions#"
xmlns="http://usefulinc.com/ns/doap#">
<name xml:lang="en">Website foundation.gnome.org</name>
<shortdesc xml:lang="en">Website foundation.gnome.org</shortdesc>
<homepage rdf:resource="http://foundation.gnome.org" />
<mailing-list rdf:resource="http://mail.gnome.org/mailman/listinfo/foundation-list" />
<category rdf:resource="http://api.gnome.org/doap-extensions#infrastructure" />
<maintainer>
<foaf:Person>
<foaf:name>Vincent Untz</foaf:name>
<foaf:mbox rdf:resource="mailto:vuntz@gnome.org" />
<gnome:userid>vuntz</gnome:userid>
</foaf:Person>
</maintainer>
</Project>

View file

@ -1,4 +0,0 @@
.htaccess
index.html
Makefile.in
Makefile

View file

@ -1,13 +0,0 @@
SUBDIRS = about contact img legal licensing membership news finance vote reports
urlpath =
page_SCRIPTS = \
index.html \
.htaccess
page_DATA = \
robots.txt \
foundation.css
include $(top_srcdir)/rules.common

View file

@ -1,4 +0,0 @@
charter.html
index.html
Makefile.in
Makefile

View file

@ -1,11 +0,0 @@
SUBDIRS = advisoryboard history charter
urlpath = /about
page_SCRIPTS = \
index.html
page_DATA = \
bylaws.pdf
include $(top_srcdir)/rules.common

View file

@ -1,8 +0,0 @@
SUBDIRS =
urlpath = /about/advisoryboard
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,123 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>About the GNOME Foundation Advisory Board</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>About the GNOME Foundation Advisory Board</h1>
<p>
The Advisory Board is made up of organizations and companies that support
GNOME. The Advisory Board has no decision-making authority but provides a
vehicle for its members to communicate with the Board of Directors and
help the Directors guide the overall direction of GNOME and the GNOME
Foundation.
</p>
<p>
Current Advisory Board members are listed in our <a
href="/about/">about</a> page.
</p>
<h2>Roles and Responsibilities of Advisory Board Members</h2>
<ul>
<li>
Represents and advises on the needs of the primary downstream partners
served by GNOME.
</li>
<li>
Receives and actively provides input and discussion on topics sent to
the Advisory Board list or discussed at Advisory Board meetings. Topics
include things like financial reports, project status, and event
planning.
</li>
<li>
Promotes GNOME. The GNOME Foundation and Advisory Board members often
work together to promote GNOME, and members are expected to work with
the GNOME Foundation to promote GNOME when opportunities arise. For
example, by speaking about GNOME at industry events or at company or
government meetings where people are not familiar with GNOME.
</li>
<li>
Identifies/presents opportunities for collaboration and alerts GNOME to
significant relevant developments within other industries or working
groups. This can include things like suggesting a GNOME presence at an
established event or pointing out opportunities for partnership and
making introductions to other companies and organizations.
</li>
<li>
Helps the GNOME Foundation grow and improve as an organization.
Identifying services that the GNOME Foundation can provide for GNOME
Foundation members, Advisory Board members and GNOME users. This can
include things like suggesting a local event or project shortfalls
(documentation, integration, support) that could be addressed by GNOME
Foundation resources.
</li>
<li>
Provides mentorship and advice to community members working on projects
like marketing, finance and fundraising. Mentorship can be provided
directly by the Advisory Board member or by others in their company.
</li>
<li>
Ensures that their company is involved and engaged with upstream
discussion and events where relevant. For example, ensure that the
appropriate people are subscribed to the right forums and involved with
upstream decisions.
</li>
<li>
Attends and sponsors GNOME events that align with the Advisory Board
member's needs.
</li>
<li>
Offers guidance, advice and resources. This guidance can include not
only opportunities for how to acquire money but other ways to solve
problems. Examples include helping to solve our system administration
shortage, planning representation at events, etc.
</li>
</ul>
<h2>Joining the Advisory Board</h2>
<p>
If your organization or company is interested in joining the Advisory
Board, please <a href="/contact/">contact</a> the Board of Directors.
</p>
<h2>Annual Fee</h2>
<p>
Advisory Board member companies pay an annual fee which helps finance
the operations of the GNOME foundation. The <a
href="/reports/">reports</a> that are published by the Foundation show
how this money is used to help the GNOME project.
</p>
<p>There are two levels for commerical companies:</p>
<ul>
<li>Small company: 1-49 employees. $10,000 / year</li>
<li>Medium and large company: 50 or more employees. $20,000 / year</li>
</ul>
<p>
Fees may be waived for invited non-profit organizations.
</p>
</body>
</html>

View file

@ -1,24 +0,0 @@
body {
counter-reset: mySectionCounter;
}
h1:before {
counter-increment: mySectionCounter;
content: 'ARTICLE ' counter(mySectionCounter, upper-roman) ' - ';
}
h1 {
counter-reset: mySubSectionCounter;
}
h1:after {
}
h2:before {
counter-increment: mySubSectionCounter;
content: 'Section ' counter(mySectionCounter, decimal) '.' counter(mySubSectionCounter, decimal) ': ';
}
h2 {
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,4 +0,0 @@
charter.html
index.html
Makefile.in
Makefile

View file

@ -1,8 +0,0 @@
SUBDIRS =
urlpath = /about/charter
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,840 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>The GNOME Foundation Charter</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>Draft Charter for the GNOME Foundation</h1>
<h2>Draft 0.61 (23 October 2000)</h2>
<p>
This document describes the purpose, basic structure and operational
policies of a proposed GNOME foundation. Although certain issues are not
addressed fully, the core functions of the foundation are defined and
procedures for them are described.
</p>
<p>
This document includes broad <q>mission level</q> statements and
operational provisions. We are in the process of creating Articles of
Incorporation and By-Laws that will incorporate this charter, cast in
stone our fundamental beliefs, and give us the flexibility to amend
implementation items.
</p>
<p>
A ChangeLog and author's list are at the end of this document.
</p>
<h2>Preface: Why a GNOME Foundation?</h2>
<p>
Since the project was started in 1998, GNOME has grown tremendously. The
technology has started to mature, the amount of code contributed has
exploded, the number of developers (also known as GNOME hackers) who are
contributing to GNOME has more than doubled. With the emergence of a
GNOME industry, and as corporate partners are embracing GNOME, the number
of hackers who are paid to work full-time on GNOME has grown
dramatically, in addition to the hundreds of volunteer hackers in the
community.
</p>
<p>
As GNOME has grown, so have our goals. Over the next few years, we want
to offer a state-of-the-art, fully free desktop to many people who today
are not using computers because they are too expensive and too
complicated to use.
</p>
<p>
In short, GNOME is growing up.
</p>
<p>
To achieve our goals in a timely manner, the project will need more focus
than the current structure can offer. When GNOME was a smaller project,
Miguel was able to make most of the key decisions. Today, there is a need
for a forum that can provide GNOME, and the projects that make up GNOME,
with the structure and support they will need to continue to grow. We
need a more structured environment to smoothly integrate new citizens
into the community. The GNOME Foundation will provide this support. The
Foundation will also provide a place to resolve the inevitable conflicts
that arise in a diverse community. Equally important, the Foundation can
voice the decisions and positions of the GNOME project, and, therefore,
can act as a liaison with the press and corporations who want to be
involved with GNOME.
</p>
<p>
Most importantly, the GNOME Foundation will provide transparency and
representation. Whereas decisions in the past have often been made in an
ad-hoc fashion and in private conversations between a small number of
people, the foundation will provide a forum that is elected by the GNOME
community, that is accountable to that community, and that will conduct
its affairs in the open.
</p>
<h3>Mission Statement</h3>
<p>
The GNOME Foundation will work to further the goal of the GNOME project:
to create a computing platform for use by the general public that is
completely free software.
</p>
<p>
To achieve this goal, the Foundation will coordinate releases of GNOME
and determine which projects are part of GNOME. The Foundation will act
as an official voice for the GNOME project, providing a means of
communication with the press and with commercial and noncommercial
organizations interested in GNOME software. The foundation may produce
educational materials and documentation to help the public learn about
GNOME software. In addition, it may sponsor GNOME-related technical
conferences, and represent GNOME at relevant conferences sponsored by
others, help create technical standards for the project and promote the
use and development of GNOME software.
</p>
<h2>I. Principles of the GNOME Foundation</h2>
<h3>Open and Public</h3>
<p>
In almost every sense of the word, GNOME is an open project. This is one
of our greatest strengths, has always been, and should be the balefire by
which we plot our course into the future.
</p>
<p>
The foundation should not be exclusionary or elitist. Every GNOME
contributor, however small his or her contribution, must have the
opportunity to participate in determining the direction and actions of
the project.
</p>
<p>
The openness of GNOME has always been a point of pride for us, and an
important characteristic which distinguishes us from many of the other
open source projects out there. Anyone can become a contributor, write
access to our CVS does not involve trial by fire or other masonic
rituals, we don't use Access Control Lists, and we've always been
exceedingly good about folding talented newcomers in our arms and
welcoming them to the project. No resume required.
</p>
<p>
Major components of GNOME -- things we now consider to be absolutely core
to the project -- were begun by energetic individuals with the desire to
create something cool. Look at glade, zvt, libxml, dia, GNOME vfs,
libart, the desktop icons... all of these were created by people who had
not previously contributed heavily to the project, but who are now
considered to be among our heavy hitters.
</p>
<p>
The GNOME foundation must not stifle the interest of outsiders. An
ill-conceived foundation could discourage outsider participation
directly, by establishing rules which limit the ability of potential
contributors to make their mark, or indirectly, by engendering an
alienating sense of elitism. The stained glass of the cathedral creates a
colorful spectacle for those inside, but from the outside, the building
is just a hulking grey edifice, intimidating and impenetrable.
</p>
<p>
This principle has real, concrete meaning for the foundation: All
discussions must be publicly viewable, any person must have the
opportunity to contribute to the decision-making process, and every GNOME
contributor must have the direct ability to influence the decisions which
are made. The foundation must be democratic and friendly to those
responsible for making GNOME what it is.
</p>
<h3>GNOME is Free Software</h3>
<p>
GNOME is part of the GNU project and supports the goals of the GNU
project as defined by the Free Software Foundation. Free software
licensing has always been a mainstay of GNOME, and we must ensure that
this tradition continues. GNOME will include only Free software.
</p>
<h3>GNOME is a Meritocracy</h3>
<p>
Participation in the foundation is intended only for those individuals who
are making contributions to the GNOME project and the software which makes
up GNOME. A corporation, organization or individual should not be granted
a place in the foundation unless its presence is justified by the merits
of its contribution. Money cannot buy influence in the GNOME project: show
us the code (or documentation, or translations, or leadership, or
webmastering...).
</p>
<p>
In the past, being a part of the GNOME project has simply meant
<q>I wrote some code</q> or <q>I hang out on the mailing lists and build
the thing from CVS frenetically every three hours.</q> There is no
reason to change this.
</p>
<h3>Build on What we Have (or: too much structure is poison)</h3>
<p>
In many ways, GNOME is a unique project. Comprised of dozens of autonomous
modules, GNOME has not been subject to iron-fisted structural
leadership. Furthermore, there are many pieces of software which are core
to GNOME which stand with one foot in our camp and one foot outside. There
really is no clear analogue to GNOME among most other free software
projects. GNOME is bigger than almost every other effort in existence ,
more loosely organized, and possibly faster growing. Plus, GNOME sits on
the frontier of the Linux application market, and is likely to continue to
face growing pains as we try to meet the needs of ISVs (Independent
Software Vendors) and others who are joining the movement.
</p>
<p>
It would be impossible to impose a high degree of bureaucratic structure
onto a heretofore amorphous and somewhat anarchic community. And it
shouldn't be done, anyway. Let's not attempt to imitate some of the groups
which are smaller, or which had more structure in their beginnings. Any
new structure which the GNOME foundation provides, if taken too far, will
be artificial, ignored, or at worst: really really annoying to developers.
</p>
<p>
Furthermore, the foundation can have no real powers of enforcement;
compliance with foundation decision should be an act of good-faith. If
we've lost consensus to the point where we're regularly forcibly ejecting
people from the foundation and co-opting their projects, we're sunk
anyway.
</p>
<p>
Heavy bureaucracy is not in our DNA. And it shouldn't be. So let's not
try to graft an administrative superstructure onto the community we've
built. Furthermore, too high a level of administrative overhead will gum
up the works to the point where the foundation will completely cease to
function and become useless and vestigial.
</p>
<p>
Instead, the foundation will work with GNOME's strengths to make it
better. A foundation that provides cohesion, vision, direction, and enough
organization will be an incredible asset. A foundation that attempts to do
this, but hides the iron fist under a velvet glove will not. Such an
entity would likely be ignored, and words like <q>fork</q> would be
thrown around.
</p>
<p>
The foundation should provide the project with just enough organization to
accomplish its goals effectively. Some level of structure will be
important for decision making, communication, and interacting with outside
parties.
</p>
<h3>Independence</h3>
<p>
The foundation must act in the best interests of GNOME, independent of
influence from outside organizations and corporations. No single entity
should have the ability to direct GNOME to its own ends.
</p>
<h2>II. Tasks of the Foundation</h2>
<h3>Releasing GNOME, defining GNOME</h3>
<p>
The foundation bears the responsibility of coordinating each subsequent
release of GNOME. For each release, this will include setting a schedule
(whether or not it is overlooked), choosing the set of modules which are a
part of the release, and preparing the appropriate marketing materials.
</p>
<p>
GNOME is a loose collection of independent projects. The foundation will
determine the set of modules which fall under the GNOME umbrella. Most
often, the foundation will endorse a project as a GNOME project simply by
including it in a release. In some cases, however, a project that is not
scheduled to be included in any particular release will be designated as a
part of GNOME. In these ways, the foundation will be <q>defining GNOME.</q>
</p>
<p>
It should be apparent that these two tasks (defining GNOME and doing
releases) are interrelated: most often, defining GNOME is just determining
which modules are a part of any given release.
</p>
<h3>Public Image and Voice</h3>
<p>
The foundation will be the principal entity with the ability to make
official public statements for GNOME, such as press releases. The
foundation will also be responsible for maintaining the <q>GNOME
brand,</q> and will have to determine the appropriate uses of the
associated trademarks. The foundation will also be a hub for
joint-marketing efforts by those organizations (corporate and non) which
want to make GNOME-related announcements. Regional groups, created to
promote GNOME in specific areas, may wish to make their own announcements
about their efforts.
</p>
<h3>Corporate and Organizational Point of Contact</h3>
<p>
Companies and other organizations which want to communicate with the GNOME
project should be able to use the foundation as their first point of
contact. The foundation will be responsible for helping these
organizations understand the GNOME project and become involved. The
foundation will be vested with the power to represent GNOME in these
conversations.
</p>
<p>
The foundation will also act as a forum for discussions between the
organizations and companies which have an interest in GNOME. There will be
a subgroup of the foundation which will include members from these
organizations to make this possible.
</p>
<h3>Standards Definition</h3>
<p>
As GNOME matures, it will become necessary to have an official set of
standards which define GNOME compliance, for ISVs and for
distributors. The foundation will be responsible for ratifying these
standards, and authorizing the application of the GNOME trademark to them.
</p>
<h3>Direction and Vision</h3>
<p>
The GNOME foundation will provide a sense of leadership and cohesive
direction to the GNOME project. The foundation will work to communicate a
vision and set of goals for the future releases of GNOME. These should be
communicated to the general public and to the project at large.
</p>
<p>
As GNOME evolves, other duties which are appropriate and necessary for the
foundation to undertake will emerge. Before the board of directors of the
foundation takes on any major new duties, it shall consult with the
broader GNOME community.
</p>
<h3>Fund Receipt and Disbursement</h3>
<p>
Individuals and organizations that want to make a monetary contribution
to the GNOME project will be able to do so by making a contribution to
the GNOME foundation. The foundation will be in charge of disbursing
these funds to the benefit of GNOME and, to the extent possible, in
accordance with the wishes of the benefactor.
</p>
<h3>III. Basic Structure and Operation of the Foundation</h3>
<p>
The foundation will be global in scope, but incorporated in the United
States. Affiliated foundations, created for the purpose of promoting
GNOME, supporting developers or disbursement of funds, may be created in
many countries or geographic areas.
</p>
<p>
The GNOME foundation is divided into three bodies: the Membership, the
Board of Directors, and the Advisory Board.
</p>
<h3>Membership</h3>
<p>
The Membership will be a large body made up of people who have made a
contribution to any module which is part of GNOME. The intent of the
Membership is to provide the opportunity for all contributors to have a
place and a voice in the GNOME foundation. The Membership will be open to
all people who want to be a member and who have made any kind of
contribution to any part of the GNOME project, with no membership fee,
and no requirement of organizational or corporate affiliation.
</p>
<p>
The membership will have two responsibilities: electing the Board of
Directors, and issuing popular referenda on any issue under the
jurisdiction of the foundation, at any time (hopefully an infrequent
event).
</p>
<h3>Board of Directors</h3>
<p>
The board is the primary decision-making body of the GNOME foundation. It
is responsible for ratifying all decisions the GNOME foundation
makes. These decisions can be overturned by referendum.
</p>
<p>
The board will be made up of a small, limited number of people, elected
by the membership. New seats on the board may be made available as the
project grows, subject to approval by the board or referendum of the
membership.
</p>
<p>
No single organization or company will be allowed to control more than
40% of the board seats, regardless of election results. In the event that
individuals affiliated with a corporation or organization hold more than
40% of the seats, affiliates from that corporation will be required to
resign until 40% is no longer held. Individuals affiliated with a company
or organization are people who are employees, officers, or members of the
board of directors of an organization; or have a significant consulting
relationship; or own at least 1% of the equity or debt, or derivatives
thereof, of a company.
</p>
<p>
Notwithstanding the above, members of the board of directors shall act on
behalf of all GNOME contributors in the best interest of the GNOME
project. Although board members may be affiliated with companies that
have an interest in the success of GNOME, they will not be considered
representatives of companies with which they are affiliated. The GNOME
Foundation Board of Advisors provides a forum for corporate
representation.
</p>
<h3>Advisory Board</h3>
<p>
The Advisory Board is made up of companies and organizations which have a
desire to participate in advising the foundation about releases and other
decisions. The Advisory Board will have no decision-making ability. The
Advisory Board is a place for its members to have open discussions about
their GNOME-related strategies. Membership in the forum is open to all
companies and groups who are interested in contributing to the GNOME
project, subject to the approval of the board of directors.
</p>
<p><b>Note the following information about advisory board fees is
outdated. Please see <a href="http://foundation.gnome.org/about/">here</a> for up-to-date information</b></p>
<p>
Corporate members will pay a membership fee of $10,000 to join the
Advisory Board. There is no membership fee for non-profit organizations
or companies with fewer than 10 employees. Additionally, membership fees
may be waived upon request by the board of directors. We value
contributions of code and hackers resource much more than membership
dues!
</p>
<p>
From time to time, ad-hoc committees may be formed, formally or
informally, either by the board or the membership.
</p>
<h2>IV. Board Meetings, Voting, Referendum and Election</h2>
<h3>Board Meetings &amp; Votes</h3>
<p>
Voting sessions of the board of directors will be formal, performed
either in-person, telephonically, via e-mail, or on IRC. This can be
cryptographically authenticated with a registry of public keys. A simple
majority is required to approve any measure. Often, decisions will be
reached by consensus.
</p>
<p>
Minutes shall be kept for all meetings of the board of directors. Votes
on all topics will be recorded and attributed. All of these records will
be archived and made publicly available immediately.
</p>
<p>
On certain occasions, conversations within the GNOME Foundation will be
confidential. On those occasions, notes from meetings etc. may be edited
to maintain confidentiality. We will work to keep confidential
conversations down to a minimum.
</p>
<h3>Referendum</h3>
<p>
A referendum can be issued by any member of the foundation.
</p>
<p>
To be accepted, a request for a referendum must be endorsed by 10% of the
Membership. The maximum number of valid endorsements from Members
affiliated (as defined above) with any one corporation or organization
shall be 5%.
</p>
<p>
An electronic voting system will be established online, with members
voting on a web page or by e-mail. In order for a referendum to pass,
1/3d of the total membership must participate, and 2/3ds of the
participating members must approve. There will be a mailing list for all
of the members, and all referenda must be announced to the list by the
initiator before they are opened on the voting system. At least three
days must pass before the referendum is closed, and no referendum can
remain open for longer than fourteen days.
</p>
<h3>Elections and Board Size</h3>
<p>
Elections for the board of directors will be regularly held every
year. Candidates for election must be members of the GNOME Foundation and
shall nominate themselves. Members may vote for a number of candidates
equal to the number of board slots that are available (in other words, if
there are 10 slots on the board of directors, then each member may vote
for up to 10 candidates).
</p>
<p>
The board shall be composed of those candidates who receive the highest
number of votes.
</p>
<p>
The board of directors may be recalled by referendum, using the process
described above. If the board of directors is recalled by referendum, new
elections shall be held immediately.
</p>
<p>
Between elections, board vacancies or new board slots shall be filled by
appointment by the board of directors.
</p>
<p>
The board of directors shall have at least 7 members and no more than 15
members. Prior to each election, the board of directors shall determine
the number of board seats for the next year. The initial board of
directors shall be composed of 11 members.
</p>
<p>
If more than half of the elected candidates are affiliated with one
company (as defined above), elections returns shall be adjusted as
follows. Individuals who are affiliated with the company which has an
excess of representatives shall be removed based on the number of votes
they received until such individuals no longer hold a majority of the
seats on the board. Other candidates shall replace them, based on the
number of votes they received. (In other words, if there are 10 board
seats and 6 people from company X were elected, than the one person from
that company who received the fewest number of votes will be replaced by
the candidate who received the 11th highest number of votes).
</p>
<h2>V. Release Engineering / Defining GNOME</h2>
<p>
The board of directors will be responsible for authorizing the release of
a new version of GNOME. The board will determine the set of modules
which will make up the release.
</p>
<p>
Operational management of the release may be handled by a board-appointed
committee or individual, made up of general Members and/or directors. The
membership will be able to affect all these decisions primarily by
participating in the discussions which lead up to them. In extreme cases,
a referendum can be used.
</p>
<h2>VI. Funds</h2>
<p>
One of the primary purposes of the GNOME foundation is to allow outsiders
to contribute financially to the continued development of GNOME. These
outsiders will make donations to the project, which will be disbursed by
the board, under the advice of the membership.
</p>
<h2>VII. Bootstrapping the GNOME Foundation</h2>
<p>
The membership will be populated with all the consenting members of the
GNOME-hackers mailing list, people holding CVS accounts, and anyone else
who speaks out and wants to join when asked.
</p>
<p>
A committee shall be established by the current GNOME Steering Committee
to manage the membership list, add new members and oversee the elections.
</p>
<p>
The first elections may be held prior to the incorporation of the
Foundation but shall be held no later than 90 days from the incorporation
of the GNOME Foundation. If the Foundation is incorporated prior to the
first elections, the GNOME Steering Committee shall appoint on interim
board of directors.
</p>
<h3>VIII. Authors</h3>
<p>
This document was put together from contributions by many people. The
crucial first draft was written by Nat Friedman based on discussions he
had with Joe Shaw. This document is maintained by the GNOME Foundation
<a href="mailto:board&#64;gnome&#46;org">Board of directors</a>.
</p>
<p>
Numerous patches were submitted by:
</p>
<ul>
<li>Joe Shaw</li>
<li>Linas Vepstas</li>
<li>Maciej Stachowiak</li>
<li>Havoc Pennington</li>
<li>Daniel Veillard</li>
<li>Telsa Gwynne</li>
<li>Mike Prestner</li>
<li>Jim Gettys</li>
<li>Alan Cox</li>
<li>Kelly </li>
<li>Frank Hecker</li>
<li>Brian Behlendorff</li>
<li>Robert Humphreys</li>
<li>Rusty Conover</li>
<li>Miguel de Icaza</li>
<li>Elliott Lee</li>
<li>Others</li>
</ul>
<p>Please let me know who I need to delete/add.</p>
<h2>IX. Change log</h2>
<h3>Changes since draft 4.1:</h3>
<ul>
<li>minor line-edits throughout</li>
</ul>
<h4>Mission statement</h4>
<p>
Rewrote mission statement. Removed sentence <q>GNOME Foundation will
oversee the technical direction of GNOME</q>.
</p>
<h4>I. Principles</h4>
<p>Meritocracy:</p>
<ul>
<li>
Participation in the foundation is intended only for those people who
are responsible for actual contributions to the software which makes up
GNOME.
</li>
</ul>
<p>
Change to: Participation in the foundation is intended only for those
individuals who are making contributions to the GNOME project and the
software which makes up GNOME.
</p>
<p>
Reason: previous language appears to exclude all non-hackers.
</p>
<h4>III. Basic Structure</h4>
<ul>
<li>
Board: qualified what it means to be <q>affiliated</q> with a
company: added materiality requirement for consultants.
</li>
<li>
Board: lowered the maximum number of people who can be associated with
any one company to 40% (previously 50%).
</li>
<li>
Board: clarified that board members do not represent their
employers.
</li>
<li>
Board: changed 1% ownership rule to include warrants and options.
</li>
</ul>
<h4>IV. Board Meetings, Voting, Elections and Referendum</h4>
<ul>
<li>Elections and Board Size: rewrote this. Removed slate provisions.</li>
<li>Added provision that candidates must be members.</li>
</ul>
<h4>VII. Bootstrapping the Foundation</h4>
<ul>
<li>
<q>A committee shall be established by the current GNOME Steering
Committee to manage the membership list and add new members.</q> Added:
<q>and oversee the elections</q>.
</li>
<li>
<q>The first elections may be held prior to the incorporation of the
Foundation but shall be held no later than 90 days from the incorporation
of the GNOME Foundation. If the Foundation is incorporated prior to the
first elections, the GNOME Steering Committee shall appoint on interim
board of directors.</q> Made changes to account for elections prior to
incorporation and to remove slate provision.
</li>
</ul>
<h4>VIII. Some open issues</h4>
<p>
Removed this section. Reason for change: no longer needed.
</p>
<h3>Changes since draft 4:</h3>
<ul>
<li>[missed a few]</li>
<li>- Added Authors listing</li>
</ul>
<h4>Preface: Why a GNOME Foundation?:</h4>
<ul>
<li>
<p>
<q>Since the project was started in 1998</q>.
</p>
<p>
Reason: avoid relative time reference.
</p>
</li>
<li><q>the number of paid developers has grown dramatically</q></li>
<li>
<p>
<q>technology has STARTED TO mature</q>.
</p>
<p>
Reason: false advertising.
</p>
</li>
<li>introduced the word Developer and explained that we use Hackers as well.</li>
<li>added <q>We need a new structure to more smoothly integrate new citizens into the community</q></li>
<li>changed: Over the next few years, we want to offer a state-of-the-art, fully free desktop to many people who today are not using computers</li>
<li>added <q>To achieve our goals in a timely manner, the project will need more focus than the curent structure can offer.</q></li>
<li>changed: <q>...the inevitable conflicts that arise in a diverse community.</q></li>
</ul>
<h3>Changes since draft 3:</h3>
<ul>
<li>Added Preface: Why a GNOME Foundation?</li>
<li>Added Mission Statement</li>
<li>replaced <q>doesn't</q> by <q>does not</q> and made other minor word changes.</li>
<li>renumbered sections.</li>
</ul>
<h4>I. Principles</h4>
<ul>
<li>
<p>
Renamed this to Principles of the GNOME Foundation and created
<q>II. Tasks of the GNOME Foundation</q>.
</p>
<p>
Reason: The principles and tasks are really two different things
that belong under separate headings.
</p>
</li>
<li>
<p>
Deleted introductory paragraph.
</p>
<p>
Reason: it tried to explain the link between Principles and Tasks.
</p>
</li>
</ul>
<h5>Open and Public:</h5>
<ul>
<li>
<p>
Deleted: We didn't get here by way of smoke-filled rooms and power
hierarchies. We got here because of people.
</p>
<p>
Reason: it's a negative statement that is somewhat
anachronistic. Second sentence is a platitude. Removed by request.
</p>
</li>
<li>Moved last paragraph to:</li>
</ul>
<h5>Free Software:</h5>
<ul>
<li>
<p>
Added: GNOME is part of the GNU project and supports the goals of the
GNU project as defined by the Free Software Foundation.
</p>
</li>
<li>
<p>
Deleted <q>as determined by the Board of Directors</q>.
</p>
<p>
Reason: this is implementation wording. The board may delegate this
task to a committee or deal with it in some other way.
</p>
</li>
</ul>
<h5>Meritocracy</h5>
<ul>
<li>
Changed <q>participation should be available only to those</q> to
<q>participation is intended for</q> by request.
</li>
</ul>
<h5>Build on What we have</h5>
<ul>
<li>
<p>
Deleted: <q>Think: Emperor</q>.
</p>
<p>
Reason: obscure and unnecessary.
</p>
</li>
</ul>
<h5>Tasks:</h5>
<ul>
<li>
<p>
Moved &quot;Fund Receipt &amp; Disbursement&quot; to the end.
</p>
<p>
Reason: less important function.
</p>
</li>
</ul>
<h4>II. Structure and Operation</h4>
<h5>Advisory Board:</h5>
<ul>
<li>
Modified: Corporate members will pay an membership fee of $10,000 to
join the Advisory Board. There is no membership fee for non-profit
organizations or companies with less than 10 employees. Additionally,
membership fees may be waived upon request by the board of directors. We
value contributions of code and hackers resource much more than
membership dues!
</li>
</ul>
<h5>III. Board Meetings, Voting, Elections and Referendum</h5>
<ul>
<li>
<p>
Added Board Meetings section, which includes openness and
confidentiality clause.
</p>
<p>
Reason: moved from the Principles Section, where it didn't belong,
since this is operational.
</p>
</li>
</ul>
</body>
</html>

View file

@ -1,73 +0,0 @@
$head_prefix% generated by Docutils <http://docutils.sourceforge.net/>
\usepackage{fixltx2e} % LaTeX patches, \textsubscript
\usepackage{cmap} % fix search and cut-and-paste in Acrobat
$requirements
%%% Custom LaTeX preamble
%%% For some weird reasond, Dollar latex_preamble loads courier and stuff, so we disable that...
%%% User specified packages and stylesheets
$stylesheet
%%% This is hard coded as we don't want to configure rst2latex nor call it with a very long list of arguments
%% Only god knows why they set the counter to 0...
\setcounter{secnumdepth}{3}
% To have real PDF comments
\usepackage{pdfcomment}
\usepackage{xcolor}
%%% HEADERS & FOOTERS
\usepackage{lastpage}
\usepackage{titletoc}
\usepackage{titlesec}
\usepackage{fancyhdr} % This should be set AFTER setting up the page geometry
\pagestyle{fancy} % options: empty , plain , fancy
\renewcommand{\headrulewidth}{0pt} % customise the layout...
\lhead{}\chead{Bylaws of GNOME Foundation as of April 5, 2002}\rhead{}
\lfoot{}\cfoot{\thepage{}/\pageref{LastPage}}\rfoot{}
% \renewcommand{\thesection}{\textsc{ARTICLE}~\Roman{section}:}
\renewcommand\thesection{\Roman{section}}
\renewcommand{\thesubsection}{\arabic{section}.\arabic{subsection}}
% \newcommand\romanref[1]{\ref{#1}}
% \newcounter{romansectionreftmp}
% \newcommand\romanref[1]{%
% \setcounter{romansectionreftmp}{\ref{#1}}%
% \Roman{romansectionreftmp}%
% }
% Have a pagebreak instead of a ruler
\newcommand*{\DUtransition}{\pagebreak[4]}
% To use those, do smth like .. role:: huge
% in your document
\newcommand{\DUroleuppercase}[1]{\uppercase{#1}}
\newcommand{\DUrolecentered}[1]{\begin{center}#1\end{center}}
%\newcommand{\DUrolecentered}[1]{{\centering #1}}
\newcommand{\DUrolehuge}[1]{\begin{huge}#1\end{huge}}
\newcommand{\DUrolehugeuppercase}[1]{\DUrolehuge{\DUroleuppercase{#1}}}
\newcommand{\comment}[1]{\pdfmargincomment{#1}%
\mbox{}\marginpar{\footnotesize\raggedright\hspace{0pt}\color{red}\emph{#1}}%
}
\newcommand{\DUrolecomment}[1]{\comment{#1}}
%%% Fallback definitions for Docutils-specific commands
$fallbacks$pdfsetup
%%% Body
\begin{document}
%%% Again, hardcoded to not have to configure or call rst2latex with special arguments
% \selectlanguage{english}
% \titlelabel{\thesection}{\textsc{ARTICLE}~\Roman{section}:}
\titleformat{\section}{\sffamily\Large\bfseries}{ARTICLE \Roman{section}:}{1em}{\uppercase}
\titleformat{\subsection}{\sffamily\large\bfseries}{Section \thesubsection:}{1em}{}
\titlecontents{section}[1.0em]
{\addvspace{1em}\bfseries}
{\contentslabel{3em}}
{\hspace*{-2.3em}}
{\hfill\contentspage}
$body_pre_docinfo$docinfo$dedication$abstract$body
\end{document}

View file

@ -1,3 +0,0 @@
index.html
Makefile.in
Makefile

View file

@ -1,8 +0,0 @@
SUBDIRS =
urlpath = /about/history
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,253 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>The GNOME Foundation History</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>Previous GNOME Foundation Boards</h1>
<ul>
<li><a href="#2010">July 2010 - June 2011</a></li>
<li><a href="#2009">July 2009 - June 2010</a></li>
<li><a href="#2008">January 2008 - June 2009</a></li>
<li><a href="#2007">Fall 2006 - Fall 2007</a></li>
<li><a href="#2006">Fall 2005 - Fall 2006</a></li>
<li><a href="#2005">Fall 2004 - Fall 2005</a></li>
<li><a href="#2004">Fall 2003 - Fall 2004</a></li>
<li><a href="#2003">Fall 2002 - Fall 2003</a></li>
<li><a href="#2002">Fall 2001 - Fall 2002</a></li>
<li><a href="#2001">Fall 2000 - Fall 2001</a></li>
</ul>
<h2 id="2010">July 2010 - June 2011</h2>
<p>
The Board of Directors from July 2010 to June 2011 was:
</p>
<ul>
<li>Brian Cameron</li>
<li>Emily Chen</li>
<li>Paul Cutler</li>
<li>Og Maciel</li>
<li>Germán Póo-Caamaño</li>
<li>Andreas Nilsson</li>
<li>Bastien Nocera</li>
</ul>
<h2 id="2009">July 2009 - June 2010</h2>
<p>
The Board of Directors from July 2009 to June 2010 was:
</p>
<ul>
<li>Brian Cameron</li>
<li>Jorge Castro *</li>
<li>Paul Cutler **</li>
<li>Diego Escalante Urrelo</li>
<li>Germán Póo-Caamaño</li>
<li>Srinivasa Ragavan</li>
<li>Vincent Untz</li>
</ul>
<p>
<em>* Lucas Rocha was elected, but resigned in February 2010. Jorge
Castro has been nominated to replace Lucas Rocha as director. See the <a
href="http://mail.gnome.org/archives/foundation-announce/2010-February/msg00002.html">announce</a>
for more information.</em>
</p>
<p>
<em>** Behdad Esfahbod was elected, but resigned in March 2010.
Paul Cutler has been nominated to replace Behdad Esfahbod as director.
See the <a href="http://mail.gnome.org/archives/foundation-announce/2010-March/msg00002.html">announce</a>
for more information.</em>
</p>
<h2 id="2008">January 2008 - June 2009</h2>
<p>
In September/October 2007, it was decided that the next board (and only
the next one) will serve for 18 months, in order to align the start of
the new board with GUADEC. Read the <a
href="http://mail.gnome.org/archives/foundation-announce/2007-October/msg00002.html">announcement</a>.
</p>
<p>
The Board of Directors from January 2008 to June 2009 was:
</p>
<ul>
<li>Brian Cameron</li>
<li>Diego Escalante Urrelo *</li>
<li>Behdad Esfahbod</li>
<li>John Palmieri</li>
<li>Lucas Rocha</li>
<li>Vincent Untz</li>
<li>Luis Villa</li>
</ul>
<p>
<em>* Jeff Waugh was elected, but resigned in December 2008. Diego Escalante Urrelo has been nominated to replace Jeff Waugh as director. See the <a href="http://mail.gnome.org/archives/foundation-list/2008-December/msg00014.html">announce</a> for more information.</em>
</p>
<h2 id="2007">Fall 2006 - Fall 2007</h2>
<p>
The Board of Directors for Fall 2006 through Fall 2007 was:
</p>
<ul>
<li>Behdad Esfahbod</li>
<li>Glynn Foster</li>
<li>Quim Gil</li>
<li>Anne Østergaard</li>
<li>Lucas Rocha *</li>
<li>Vincent Untz</li>
<li>Jeff Waugh</li>
</ul>
<p>
<em>* Dave Neary was elected, but resigned in July 2007. Lucas Rocha has
been nominated to replace Dave Neary as director. See the <a
href="http://mail.gnome.org/archives/foundation-list/2007-July/msg00025.html">announce</a>
for more information.</em>
</p>
<h2 id="2006">Fall 2005 - Fall 2006</h2>
<p>
In October/November 2005, a vote was held to reduce the number of board
directors from 11 to 7. Read the <a
href="http://mail.gnome.org/archives/foundation-announce/2005-November/msg00009.html">announcement</a>.
</p>
<p>
The Board of Directors for Fall 2005 through Fall 2006 was:
</p>
<ul>
<li>Jonathan Blandford</li>
<li>Quim Gil *</li>
<li>Federico Mena-Quintera</li>
<li>David Neary</li>
<li>Anne Østergaard</li>
<li>Vincent Untz</li>
<li>Jeff Waugh</li>
</ul>
<p>
<em>* Luis Villa was elected, but resigned in June 2006. Quim Gil has
been nominated to replace Luis Villa as director. See the <a
href="http://mail.gnome.org/archives/foundation-announce/2006-June/msg00000.html">announce</a>
for more informations.</em>
</p>
<h2 id="2005">Fall 2004 - Fall 2005</h2>
<p>
The Board of Directors for Fall 2004 through Fall 2005 was:
</p>
<ul>
<li>Jonathan Blandford</li>
<li>Murray Cumming</li>
<li>Jody Goldberg</li>
<li>Miguel de Icaza</li>
<li>Federico Mena-Quintera</li>
<li>David Neary</li>
<li>Tim Ney</li>
<li>Christian Schaller</li>
<li>Owen Taylor (Chairperson)</li>
<li>Daniel Veillard</li>
<li>Luis Villa</li>
</ul>
<h2 id="2004">Fall 2003 - Fall 2004</h2>
<p>
The Board of Directors for Fall 2003 through Fall 2004 was:
</p>
<ul>
<li>Jonathan Blandford</li>
<li>Dave Camp</li>
<li>Glynn Foster</li>
<li>Nat Friedman</li>
<li>Jody Goldberg</li>
<li>Bill Haneman</li>
<li>Leslie Proctors</li>
<li>Owen Taylor</li>
<li>Malcolm Tredinnick</li>
<li>Luis Villa</li>
<li>Jeff Waugh</li>
</ul>
<h2 id="2003">Fall 2002 - Fall 2003</h2>
<p>
The Board of Directors for Fall 2002 through Fall 2003 was:
</p>
<ul>
<li>Jonathan Blandford</li>
<li>Miguel de Icaza</li>
<li>Glynn Foster</li>
<li>Nat Friedman</li>
<li>Jim Gettys</li>
<li>Jody Goldberg</li>
<li>Bill Haneman</li>
<li>James Henstridge</li>
<li>Daniel Veillard</li>
<li>Luis Villa</li>
<li>Jeff Waugh</li>
</ul>
<h2 id="2002">Fall 2001 - Fall 2002</h2>
<p>
The Board of Directors for Fall 2001 through Fall 2002 was:
</p>
<ul>
<li>Jonathan Blandford</li>
<li>Miguel de Icaza</li>
<li>Nat Friedman</li>
<li>Jim Gettys</li>
<li>Jody Goldberg</li>
<li>Telsa Gwynne</li>
<li>James Henstridge</li>
<li>George Lebl</li>
<li>Federico Mena-Quintero</li>
<li>Havoc Pennington</li>
<li>Daniel Veillard</li>
</ul>
<h2 id="2001">Fall 2000 - Fall 2001</h2>
<p>
The Board of Directors for Fall 2000 through Fall 2001 was:
</p>
<ul>
<li>Bart Decrem</li>
<li>Jim Gettys</li>
<li>John Heard</li>
<li>Miguel de Icaza</li>
<li>Raph Levien</li>
<li>Dan Mueth</li>
<li>Havoc Pennington</li>
<li>Federico Mena Quintero</li>
<li>Maciej Stachowiak</li>
<li>Owen Taylor</li>
<li>Daniel Veillard</li>
</ul>
</body>
</html>

View file

@ -1,129 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>About the GNOME Foundation</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>About the GNOME Foundation</h1>
<p>
The GNOME Foundation is comprised of a number of bodies - the
Board of Directors, the Executive Director, the Advisory Board
and the GNOME Membership. The <a href="charter/">GNOME Foundation
Charter</a> outlines the overall purpose, structure, and process
for the GNOME Foundation. The <a href="bylaws.pdf">GNOME Foundation By-laws</a>
(PDF) document the policies and procedures of the Foundation as a
non-profit group.
</p>
<p>
The GNOME Foundation publishes <a href="../reports/">Reports</a> on its
activities each quarter and each year. Here are the last reports:
</p>
<ul>
<li><a href="../reports/gnome-report-2010-Q2.html">Q2 2010 Report</a></li>
<li><a href="../reports/gnome-annual-report-2008.pdf">2008 Annual Report</a> (PDF)</li>
</ul>
<h2>Board of Directors</h2>
<p>
The GNOME Foundation is run by a Board of Directors, which is elected
annually by the GNOME community, as the GNOME Membership, to carry out
much of the GNOME Foundation's tasks. The Board of Directors meets every
other week with a phone conference to discuss various topics pertaining
to the regular activities of the GNOME Foundation and GNOME. The minutes
to these meetings are posted publicly on the <a href="http://mail.gnome.org/archives/foundation-list/">
foundation-list mailing list</a> and on the <a
href="http://live.gnome.org/FoundationBoard/Minutes">Minutes wiki
page</a> for easier access.
</p>
<p>
The Board of Directors from July 2011 to June 2012 is:
</p>
<ul>
<li>Brian Cameron</li>
<li>Emmanuele Bassi</li>
<li>Ryan Lortie</li>
<li>Shaun McCance</li>
<li>Bastien Nocera</li>
<li>Stormy Peters</li>
<li>Germán Póo-Caamaño</li>
</ul>
<p>
The <a href="./history/">history of the Board of Directors</a> lists all
directors elected in previous years.
</p>
<h2>Executive Director</h2>
<p>
Karen Sandler serves as the GNOME Foundation's executive director.
The Executive Director is tasked with managing and growing the GNOME Foundation as an organization.
Working with the Board of Directors, Advisory Board, and the GNOME
Foundation members.
</p>
<h2>Advisory Board</h2>
<p>
The <a href="/about/advisoryboard/">Advisory Board</a> is made up of
organizations and companies that support GNOME. The Advisory Board has no
decision-making authority but provides a vehicle for its members to
communicate with the Board of Directors and help the Directors guide the
overall direction of GNOME and the GNOME Foundation. Get more details
about the <a href="/about/advisoryboard/">way the Advisory Board
works</a>.
</p>
<p>
The Advisory Board consists of representatives from the following GNOME
Foundation member corporations and projects:
</p>
<ul>
<li>Canonical</li>
<li>Collabora</li>
<li>Debian Project</li>
<li>Free Software Foundation</li>
<li>Google</li>
<li>IBM</li>
<li>Igalia</li>
<li>Intel</li>
<li>Motorola</li>
<li>Mozilla Foundation</li>
<li>Nokia</li>
<li>OLPC</li>
<li>Oracle</li>
<li>Red Hat</li>
<li>Software Freedom Law Center</li>
<li>Sugar Labs</li>
<li>SUSE</li>
</ul>
<p>
Each Advisory Board member has up to three representatives. An up-to-date
list of representatives is maintained on the <a
href="http://live.gnome.org/AdvisoryBoard">Advisory Board wiki page</a>.
</p>
<h2>GNOME Foundation Membership</h2>
<p>
The <a href="/membership/">GNOME Foundation Membership</a> consists of
all the contributors to the GNOME project. Members can run for election
to the Board of Directors, vote in the elections for the Board of
Directors, and suggest referenda.
</p>
</body>
</html>

View file

@ -1,3 +0,0 @@
index.html
Makefile.in
Makefile

View file

@ -1,8 +0,0 @@
SUBDIRS =
urlpath = /contact
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Contact the GNOME Foundation</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>Contact the GNOME Foundation</h1>
<h2>Email</h2>
<dl>
<dd><a href="mailto:board&#64;gnome&#46;org">Board of Directors</a></dd>
<dd><a href="mailto:membership-committee&#64;gnome&#46;org">Foundation Membership Committee</a></dd>
<dd><a href="mailto:elections&#64;gnome&#46;org">Foundation Elections Committee</a></dd>
</dl>
<h2>Mailing lists</h2>
<dl>
<dd><a href="http://mail.gnome.org/mailman/listinfo/foundation-list">Foundation mailing list</a></dd>
<dd><a href="http://mail.gnome.org/mailman/listinfo/foundation-announce">Foundation Announce mailing list</a></dd>
</dl>
<h2>Telephone</h2>
<p>
Voice message for the foundation board and administrators can be left at
+1-617-206-3947.**
</p>
<p>
**Fraudulent checks - The Foundation rarely sends out checks, and never without prior discussion with the recipient. Those checks are usually for travel or other reimbursements for GNOME contributors. If you have received a check in the mail from the GNOME Foundation that you were not already expecting, it is likely fraudulent.
</p>
<h2>Address</h2>
<p>
<!-- when updating this address, you probably need to update the one in
gnomeweb-wml/www.gnome.org/friends/index.wml and the ones linked from
there too -->
GNOME Foundation<br />
PO Box 101<br />
Groton, MA 01450<br />
USA<br />
</p>
</body>
</html>

View file

@ -1,3 +0,0 @@
Makefile
Makefile.in
index.html

View file

@ -1,35 +0,0 @@
SUBDIRS =
urlpath = /finance
page_SCRIPTS = \
index.html
page_DATA = \
gnome-foundation-fiscal-year-04-and-03.pdf \
gnome-foundation-fiscal-year-03-and-02.pdf \
gnome-foundation-accountant-03.pdf \
guadec-2004-financial-summary.pdf \
gnome-foundation-fiscal-year-2007.pdf \
GNOME2009-budget-with-actuals.ods \
gnome-foundation-budget-2004.ods \
gnome-foundation-budget-2010-final.ods \
gnome-foundation-budget-2010-summary.pdf \
gnome-foundation-budget-2010.ods \
gnome-foundation-budget-2011-may.ods \
gnome-foundation-budget-2011-june.ods \
gnome-foundation-budget-2011-july.ods \
gnome-foundation-budget-2011-summary.pdf \
gnome-foundation-budget-2011.ods \
gnome-foundation-fiscal-year-2004-balance-summary-draft.pdf \
gnome-foundation-fiscal-year-2004-income-summary-draft.pdf \
gnome-foundation-fiscal-year-2005-balance-summary.pdf \
gnome-foundation-fiscal-year-2005-income-summary.pdf \
guadec-budget-2004.pdf \
guadec-budget-2006.ods \
guadec-budget-2007.ods \
guadec-budget-2008.ods \
guadec-budget-consolidated.ods
include $(top_srcdir)/rules.common

File diff suppressed because it is too large Load diff

View file

@ -1,811 +0,0 @@
%PDF-1.4
%äöÜß
1 0 obj
<< /Length 2 0 R
>>
stream
0 w
q 0 -0.1 612.1 792.1 re W* n
0.90196 0.90196 1 rg
56.5 659.3 490.2 76.2 re f*
1 1 0.59999 rg
56.5 151.4 490.2 508 re f*
Q 0 0 0 rg
BT
247.9 713.3 Td /F1 10 Tf <01020304050607030802090A0B0C0302> Tj
ET
BT
167 700.6 Td /F1 10 Tf <0D0E0F0E101110120E061314060D15161613170E180619101A10121510060F121B060316
10170F0E1C121D06051E1610121F101F> Tj
ET
BT
499.2 687.9 Td /F1 10 Tf <0606> Tj
ET
BT
299.7 675.2 Td /F1 10 Tf <20100F170605121B1C121D> Tj
ET
BT
450.8 675.2 Td /F1 10 Tf <20100F170605121B1C121D> Tj
ET
BT
299.7 662.5 Td /F1 10 Tf <0D10160E1011211017062223240625232322> Tj
ET
BT
450.8 662.5 Td /F1 10 Tf <0D10160E1011211017062223240625232325> Tj
ET
BT
57.5 637.1 Td /F2 10 Tf <0102030304050607> Tj
ET
BT
105.9 624.4 Td /F2 10 Tf <08040906050A0B02060A04090C> Tj
ET
BT
372.5 624.4 Td /F2 10 Tf <0D0E0F1011> Tj
ET
BT
517.8 624.4 Td /F2 10 Tf <1012130D11> Tj
ET
BT
105.9 611.7 Td /F2 10 Tf <14050A1509160C170418171909041A15> Tj
ET
BT
372.5 611.7 Td /F2 10 Tf <1B1C131010> Tj
ET
q 1 0 0 1 372.5 611.7 cm
0.5 w 0 0 0 RG
0 -0.8 m 27.8 -0.8 l S
Q
BT
523.4 611.7 Td /F2 10 Tf <10121213> Tj
ET
q 1 0 0 1 523.4 611.7 cm
0.5 w 0 0 0 RG
0 -0.8 m 22.3 -0.8 l S
Q
BT
57.5 586.3 Td /F2 10 Tf <1D04061E1F170102030304050617202109151E05091516172215231509021524> Tj
ET
BT
372.5 586.3 Td /F2 10 Tf <111B0D0E25> Tj
ET
BT
517.8 586.3 Td /F2 10 Tf <101013101B> Tj
ET
BT
57.5 548.2 Td /F2 10 Tf <261E05091516172215231509021507> Tj
ET
BT
105.9 535.5 Td /F2 10 Tf <2716230A0C0405281729041E0516171415150C> Tj
ET
BT
372.5 535.5 Td /F2 10 Tf <1312121212> Tj
ET
BT
517.8 535.5 Td /F2 10 Tf <251B250E11> Tj
ET
BT
105.9 522.8 Td /F2 10 Tf <08040918150515092A1517> Tj
ET
BT
372.5 522.8 Td /F2 10 Tf <1C1025110E> Tj
ET
BT
540.1 522.8 Td /F2 10 Tf <12> Tj
ET
BT
105.9 510.1 Td /F2 10 Tf <2B15052A2C1E09160A0C1517011E1F150C> Tj
ET
BT
383.6 510.1 Td /F2 10 Tf <25130E> Tj
ET
BT
523.4 510.1 Td /F2 10 Tf <1B1B1C12> Tj
ET
BT
105.9 497.4 Td /F2 10 Tf <2D09061505150C0617040917011E230A092E0C> Tj
ET
BT
394.8 497.4 Td /F2 10 Tf <12> Tj
ET
q 1 0 0 1 394.8 497.4 cm
0.5 w 0 0 0 RG
0 -0.8 m 5.6 -0.8 l S
Q
BT
540.1 497.4 Td /F2 10 Tf <11> Tj
ET
q 1 0 0 1 540.1 497.4 cm
0.5 w 0 0 0 RG
0 -0.8 m 5.6 -0.8 l S
Q
BT
57.5 472 Td /F2 10 Tf <1D04061E1F17261E050915161722152315090215> Tj
ET
BT
372.5 472 Td /F2 10 Tf <0E11251C13> Tj
ET
q 1 0 0 1 372.5 472 cm
0.5 w 0 0 0 RG
0 -0.8 m 27.8 -0.8 l S
Q
BT
517.8 472 Td /F2 10 Tf <250D1B1B12> Tj
ET
q 1 0 0 1 517.8 472 cm
0.5 w 0 0 0 RG
0 -0.8 m 27.8 -0.8 l S
Q
BT
57.5 433.9 Td /F2 10 Tf <1D04061E1F1701020303040506171E09161722152315090215> Tj
ET
BT
366.9 433.9 Td /F2 10 Tf <1B0D0F0D1B11> Tj
ET
BT
512.3 433.9 Td /F2 10 Tf <1B0D0F0F111B> Tj
ET
BT
57.5 395.8 Td /F2 10 Tf <2F0315051E060A092E1726300315090C150C07> Tj
ET
BT
105.9 383.1 Td /F2 10 Tf <27161A0A090A0C06051E060A0409> Tj
ET
BT
372.5 383.1 Td /F2 10 Tf <1312121212> Tj
ET
BT
517.8 383.1 Td /F2 10 Tf <1313251010> Tj
ET
BT
105.9 370.4 Td /F2 10 Tf <08040918150515092A150C311D051E161517012C04320C> Tj
ET
BT
372.5 370.4 Td /F2 10 Tf <111B1B250F> Tj
ET
BT
517.8 370.4 Td /F2 10 Tf <0D121C2511> Tj
ET
BT
105.9 357.7 Td /F2 10 Tf <2D090C02051E092A15> Tj
ET
BT
378.1 357.7 Td /F2 10 Tf <11130E0F> Tj
ET
BT
523.4 357.7 Td /F2 10 Tf <0D1B250E> Tj
ET
BT
105.9 345 Td /F2 10 Tf <331E2805041F1F171D1E30150C> Tj
ET
BT
378.1 345 Td /F2 10 Tf <100F131B> Tj
ET
BT
523.4 345 Td /F2 10 Tf <1B0E0F12> Tj
ET
BT
105.9 332.3 Td /F2 10 Tf <331E2805041F1F17011505230A2A15> Tj
ET
BT
383.6 332.3 Td /F2 10 Tf <250D13> Tj
ET
BT
523.4 332.3 Td /F2 10 Tf <1B11130F> Tj
ET
BT
105.9 319.6 Td /F2 10 Tf <291E0934171415150C> Tj
ET
BT
383.6 319.6 Td /F2 10 Tf <0E130F> Tj
ET
BT
529 319.6 Td /F2 10 Tf <0D1212> Tj
ET
BT
105.9 306.9 Td /F2 10 Tf <2B1E053415060A092E> Tj
ET
BT
383.6 306.9 Td /F2 10 Tf <0F100D> Tj
ET
q 1 0 0 1 383.6 306.9 cm
0.5 w 0 0 0 RG
0 -0.8 m 16.7 -0.8 l S
Q
BT
529 306.9 Td /F2 10 Tf <1C0D0E> Tj
ET
BT
105.9 294.2 Td /F2 10 Tf <272A2A040209060A092E> Tj
ET
BT
383.6 294.2 Td /F2 10 Tf <0F1212> Tj
ET
BT
529 294.2 Td /F2 10 Tf <1C1211> Tj
ET
BT
105.9 281.5 Td /F2 10 Tf <33040C061E2E1531012C0A03030A092E> Tj
ET
BT
383.6 281.5 Td /F2 10 Tf <100D0E> Tj
ET
BT
529 281.5 Td /F2 10 Tf <1C1B11> Tj
ET
BT
105.9 268.8 Td /F2 10 Tf <1D151F15032C040915> Tj
ET
BT
383.6 268.8 Td /F2 10 Tf <0D1B13> Tj
ET
BT
529 268.8 Td /F2 10 Tf <1B1C12> Tj
ET
q 1 0 0 1 529 268.8 cm
0.5 w 0 0 0 RG
0 -0.8 m 16.7 -0.8 l S
Q
BT
105.9 256.1 Td /F2 10 Tf <2F18180A2A1517010203031F0A150C> Tj
ET
BT
383.6 256.1 Td /F2 10 Tf <1C0E0E> Tj
ET
BT
105.9 243.4 Td /F2 10 Tf <140A1F0A092E171415150C> Tj
ET
BT
383.6 243.4 Td /F2 10 Tf <1C1C1C> Tj
ET
BT
105.9 230.7 Td /F2 10 Tf <1D051E23151F> Tj
ET
BT
383.6 230.7 Td /F2 10 Tf <1B1013> Tj
ET
BT
57.5 205.3 Td /F2 10 Tf <1D04061E1F172F0315051E060A092E1726300315090C150C> Tj
ET
BT
366.9 205.3 Td /F2 10 Tf <1B1C130D121B> Tj
ET
BT
512.3 205.3 Td /F2 10 Tf <1B121025111C> Tj
ET
BT
57.5 167.2 Td /F2 10 Tf <010205031F020C1718040517062C151735151E05> Tj
ET
BT
372.5 167.2 Td /F2 10 Tf <1B1B121B10> Tj
ET
BT
517.8 167.2 Td /F2 10 Tf <0D1C0F2525> Tj
ET
endstream
endobj
2 0 obj
5266
endobj
3 0 obj
<< /Length 4 0 R
>>
stream
0 w
q 0 0.1 595.3 841.9 re W* n
0.90196 0.90196 1 rg
56.5 722 441.4 63.5 re f*
1 1 0.59999 rg
56.5 169.1 441.4 552.9 re f*
Q 0 0 0 rg
BT
223.5 763.3 Td /F1 10 Tf <01020304050607030802090A0B0C0302> Tj
ET
BT
242.9 750.6 Td /F1 10 Tf <260F270F122810060D2910100E> Tj
ET
BT
279.7 725.2 Td /F1 10 Tf <0D10160E1011211017062223180625232322> Tj
ET
BT
400.6 725.2 Td /F1 10 Tf <0D10160E1011211017062223180625232325> Tj
ET
BT
57.5 699.8 Td /F2 10 Tf <270101261D0107> Tj
ET
BT
105.9 674.4 Td /F2 10 Tf <081E0C2C> Tj
ET
BT
346.8 674.4 Td /F2 10 Tf <1B100F0D0D> Tj
ET
BT
469 674.4 Td /F2 10 Tf <0D1C1C100D> Tj
ET
BT
105.9 661.7 Td /F2 10 Tf <330515031E0A161726300315090C150C> Tj
ET
BT
369 661.7 Td /F2 10 Tf <12> Tj
ET
BT
480.1 661.7 Td /F2 10 Tf <111113> Tj
ET
q 1 0 0 1 480.1 661.7 cm
0.5 w 0 0 0 RG
0 -0.8 m 16.7 -0.8 l S
Q
BT
105.9 649 Td /F2 10 Tf <272A2A040209060C1722152A150A231E0B1F1517200115151736040615171B24> Tj
ET
BT
346.8 649 Td /F2 10 Tf <1C12121212> Tj
ET
BT
105.9 636.3 Td /F2 10 Tf <08041A0302061505172637020A031A15090617200115151736040615171C24> Tj
ET
BT
346.8 636.3 Td /F2 10 Tf <1B1C110D10> Tj
ET
q 1 0 0 1 346.8 636.3 cm
0.5 w 0 0 0 RG
0 -0.8 m 27.8 -0.8 l S
Q
BT
57.5 598.2 Td /F2 10 Tf <1D04061E1F17270C0C15060C> Tj
ET
BT
346.8 598.2 Td /F2 10 Tf <100F1C130F> Tj
ET
BT
469 598.2 Td /F2 10 Tf <0D1C0F2525> Tj
ET
BT
57.5 547.4 Td /F2 10 Tf <382D27292D382D1D2D2601172736391714213639172927382736082607> Tj
ET
BT
105.9 522 Td /F2 10 Tf <272A2A040209060C17331E281E0B1F15> Tj
ET
BT
369 522 Td /F2 10 Tf <12> Tj
ET
BT
491.2 522 Td /F2 10 Tf <12> Tj
ET
BT
105.9 509.3 Td /F2 10 Tf <27161A0A090A0C06051E060A231517011E1F1E052817331E281E0B1F15> Tj
ET
BT
352.3 509.3 Td /F2 10 Tf <0D101110> Tj
ET
BT
491.2 509.3 Td /F2 10 Tf <12> Tj
ET
BT
105.9 496.6 Td /F2 10 Tf <1402091617291E1F1E092A15> Tj
ET
BT
346.8 496.6 Td /F2 10 Tf <100D0E1B0D> Tj
ET
q 1 0 0 1 346.8 496.6 cm
0.5 w 0 0 0 RG
0 -0.8 m 27.8 -0.8 l S
Q
BT
469 496.6 Td /F2 10 Tf <0D1C0F2525> Tj
ET
q 1 0 0 1 469 496.6 cm
0.5 w 0 0 0 RG
0 -0.8 m 27.8 -0.8 l S
Q
BT
57.5 458.5 Td /F2 10 Tf <1D04061E1F17380A1E0B0A1F0A060A150C171E0916171402091617291E1F1E092A15> Tj
ET
BT
346.8 458.5 Td /F2 10 Tf <100F1C130F> Tj
ET
BT
469 458.5 Td /F2 10 Tf <0D1C0F2525> Tj
ET
BT
57.5 369.6 Td /F2 10 Tf <360406150C170604171D2C1517291E1F1E092A1517012C15150607> Tj
ET
BT
57.5 344.2 Td /F2 10 Tf <29041E0516171815150C3A> Tj
ET
BT
57.5 331.5 Td /F2 10 Tf <36040615171C173B1708041A030206150517011505231505171604091E061516170B2817
3C15321F15060617331E2A341E051617200A092A1F02161516170A09173D0804050304
051E06151708040906050A0B02060A04090C3D170409> Tj
ET
BT
57.5 318.8 Td /F2 10 Tf <2D092A041A151701061E06151A15090624> Tj
ET
BT
57.5 293.4 Td /F2 10 Tf <1D2C15170A092A05151E0C15170A0917062C151718020916170B1E1F1E092A15172A041A
150C171805041A17062C15170C0205031F020C171E0C171E1705150C021F0617041817
040315051E060A04090C17201E0C170C2C043209> Tj
ET
BT
57.5 280.7 Td /F2 10 Tf <0B151F04320724> Tj
ET
BT
57.5 232.5 Td /F2 10 Tf <01061E06151A15090617041817082C1E092E150C170A09171402091617291E1F1E092A15
0C> Tj
ET
BT
57.5 208.4 Td /F2 10 Tf <1402091617291E1F1E092A1517201E0C1704181701150306151A0B1505170D123E171C12
121C24> Tj
ET
BT
346.8 208.4 Td /F2 10 Tf <0D1C0F2525> Tj
ET
BT
57.5 196.4 Td /F2 10 Tf <010205031F020C1718040517062C1517140A0C2A1E1F1735151E05171509161516171225
310D1231120D> Tj
ET
BT
346.8 196.4 Td /F2 10 Tf <1B1B121B10> Tj
ET
q 1 0 0 1 346.8 196.4 cm
0.5 w 0 0 0 RG
0 -0.8 m 27.8 -0.8 l S
Q
BT
57.5 184.3 Td /F2 10 Tf <1402091617291E1F1E092A1517201E0C1704181701150306151A0B1505170D123E171C12
120D24> Tj
ET
BT
346.8 184.3 Td /F2 10 Tf <100D0E1B0D> Tj
ET
q 57.5 354.7 440.4 10.8 re W* n
BT
57.5 356.9 Td /F2 10 Tf <36> Tj
7.2 0 Td <0406> Tj
8.4 0 Td <15> Tj
5.5 0 Td <17> Tj
2.8 0 Td <1B> Tj
5.5 0 Td <173B> Tj
6.2 0 Td <1727> Tj
9.4 0 Td <2A> Tj
5 0 Td <2A0402> Tj
16.2 0 Td <09> Tj
5.5 0 Td <060C1722152A15> Tj
34 0 Td <0A231E0B> Tj
18.3 0 Td <1F> Tj
2.2 0 Td <15170A> Tj
10.6 0 Td <092A1F02> Tj
18.4 0 Td <16> Tj
5.5 0 Td <150C1B12> Tj
21.7 0 Td <3E12> Tj
8.4 0 Td <1212> Tj
11.1 0 Td <1718> Tj
5.6 0 Td <05> Tj
3.3 0 Td <04> Tj
5.6 0 Td <1A172D> Tj
13.8 0 Td <29> Tj
6.7 0 Td <2B171E> Tj
16.7 0 Td <09> Tj
5.6 0 Td <16171B> Tj
13.9 0 Td <123E12> Tj
13.9 0 Td <1212> Tj
11.1 0 Td <171805> Tj
8.9 0 Td <041A> Tj
13.9 0 Td <17> Tj
2.8 0 Td <2215> Tj
12.8 0 Td <16> Tj
5.6 0 Td <3C1E06> Tj
15.5 0 Td <171804> Tj
11.1 0 Td <05> Tj
3.4 0 Td <17> Tj
2.7 0 Td <1C> Tj
5.6 0 Td <12> Tj
5.6 0 Td <120D> Tj
11.1 0 Td <1727> Tj
9.5 0 Td <16230A0C04> Tj
23.3 0 Td <05> Tj
3.4 0 Td <28> Tj
ET
Q endstream
endobj
4 0 obj
4734
endobj
6 0 obj
<< /Type /Page
/Parent 5 0 R
/MediaBox [ 0 0 612 792 ]
/Contents 1 0 R
>>
endobj
7 0 obj
<< /Type /Page
/Parent 5 0 R
/MediaBox [ 0 0 595 842 ]
/Contents 3 0 R
>>
endobj
8 0 obj
<< /Length 9 0 R
/Filter /FlateDecode
/Length1 31524
>>
stream
xœí½ |TŽ8>ß™óØsöuö½É²›@.<2E>H As
QªFD.ÑHBÂ+ŠH…ÈK "¯r-åúº¸(Òà£ÆðU…VJk[•*j½JËõZ«B6ÿïÌÙ á¡ííýüîçsÿŸ»áœ<C3A1><33>™ï|ç;ß×ÌYš.®%ÒJ1gΫnÞ;BðósBÀ;sIs´ñ²;}˜>Fˆúe]Ó¬yK¾ÿÃÛ Ñ~ƒÏݳæ.­[ðXb!|.÷Ö×Vל¬¨Rý)¶Q\<5C>?HÞ®>÷«Ÿ×|³©ÿ Ÿ'àóé¹<C3A9>3«kæ¿|%!3Ëð¹u^õÍMäfŸ÷ãst~õ¼Úgn)ªÁçã„øV75.jÞL.ê&䦹¼¼iamÓGíëÏwÂÚ1ð<>˜Tø3e¬¨6M·;œ.·áñúü<C3BA>`(œ‘é“Õ7;ËÉí×?o@þÀ‹âƒ)(¼xhÑ°áÅ#F\2jô¥—ÿýùÉÀû
~?ÿ#y­üî<C3BC>ÎÜù'YÏÓX—$÷üw1°¥.é¿ÛÐ2‰Ý7uïê>Iv<49>*bëþ^÷öî/á%Z¥ˆ±ÞýÉ—IHU÷vò3Ìí “#>Š]xý ¶²¿ùó¿U¢Ý‡Èýx¿ŸÜ‡wžó(^÷}°ó¬Ç?ã_¿uÐûÅß›ø·‹,ƒzriìUz/YNæ²ïa*»ûxŸÒý¨È_Nf!\;b² {=yˆ^I³\¬q×?B¶ÿûüßçÿ>ÿ÷ù¿Ïÿ?>ɇÉzÒFþH®$+H-©…á0\M(ÄÜ⯜ÿ™c&]1á²KG<4B>º¤däˆâáʆ^\X0dð øEóäõï—›f÷ÍêÉ̇‚¿Ïë1Ü.§Ã®k6U%F<> p"<vê¸Ù‰Œ±U GnY®M8®>yUAx#±\O´¨ bp
*!ÇÄ71á/Ÿº›˜#+Jü\<5C>«¬¿ñY +_‰ŽKHýñ_î•Õ5‰üISc¹ÆÑHOyÖIdŽ<64>E´?þ»ðß•ÕÑš„QŽù±ˆ•sE”OåWG÷{#1“ŒŒUà}ÒÔDßôcEÅ…<C385>D+ »ó4¯†µÆnGÆزñï&Ž÷$ÀÁNŽ$ 2:GD L‰ÖHAüŸ%À—€ÀUˆòÙ]ðjÇF^€ãjf玫i@ŠÖT<C396>¡éI¢±èÚèÚIS=E˜HOL¼|íÔÝv}lîØZ½'ƒìÖí˜c<CB9C>Ì"ØHÓnp\"Aã.ÙM‰Í‰ôr„ÇñkvÂ\W…‰Ü2¤øΔttwÞÙ»ˆ`µtÊg¥¬^ÊØ„j¡mH˜Õ ².º{PçÚ;; 2£*î¨É­©þÞÔ«F€Ý„õW?9Ñgbù ˜…]áUUå^&n|ú¢ãê£kñ™ÃVá=·ŒOûYù5õµUœQ  Ë´±SWÅ:# /~<7E>Kxâ‰Ëìò[ŽG0·¢"Œ˜­<E28094>¸Ùc8Í zæE°Û5úæºêh¢uÆl¹ªïL3xl­p|Còã`MQ1E©šªÙ£ÙÕ|ãfG×®«#¹S`Ž 7»Œ_¼"²7¹kß0u\}î¸3â¸0ÁúŸ[7KdÄyŵkÇq«k{ e,8ƒ?gúHŸ± s²ø"“‰±G³º¬"••¸<>Wã%Ue1kZ4¡ö_%É<>®å-ªýþ¸Û<>e<EFBFBD>ƒMœ4u\YDŒ>AÇN½ôD8rÓË{²!Œ0k ND,M¼.wâµÖ$קoU“­J{&ASð¢Õ×Ã×1=>w|ÕÚµãs£ã×V­­îèn<C3A8>5r×îv8Ö6<C396>«ŠŠ¥ ˜ÿ̺Hbü<62> £ª.ÁIæì4~ÒÄ„ïÚùôŒ<C3B4>ÖW[Ò 4762óT¤aÊ¿©8µ<38><C2B5>¡­­´Öø±s Ð‰DÇs Ò<> ?0Fò•ˆ¸\?}¦`JqÃp6áK<C3A1>×p]ŠDXše¸h»6•<E280A2>Äb|¬ë0É |H´^;ÕzŽ'‰YÇÙ«â%<25>éÀõ¼¤5]ÒS½*g+<ñº¿ÁÕ½9z­'×-)3 $jM¢s2ŽñË ÛÈÔ„ûÆNešJÑã)=Žjt"9MP®5r£‡sF<!<21><>Ú]5<(Á ‡R-BÂÌäBópî+ÀE%ñ <18>€ /"(:…XØS7:nmUŠ×z1%ïkê/<N„1rq¨ ÞãÍå£ý¹<C3BD>_)ÁÜ<_Y˜qeEÂÅÅoÂõ©¸áø"c§FQÔàÚ½V$¢ã¢õ|âѪ2!*"½³;º<>U•q‡(s<>HŠÉñ^ñ·{Í°º ÿýË —ÁmwVÔ_r.™'NîIMšº<rKÅ`B(„ÈøGQIØÔU<C394>™WfšD
ï ¥
\\óÄ<ýñ蟟Ž²ÎÓ¦LN¨ÔÉc)˺?<3F>Þ yЊjÂl¹=;Z±Ùm·eEüYYjϱÓ<C2B1>dòìG²`jÖê,ªdåegÌú"KV#Y<>Ü<EFBFBD>v`Ãì“íÍvFì¦}»<>Ù$»Í`yQ··8oS”°<E2809D>f®äÝõ6š†/ŽÚmN…D]ÞbâÎËÎ+ÈcnqšNŽƒáË(væû¼J QªF ¦Už8zÀx#™aãªG¦O«<<07>·¤„_$\šyU×ÑÌŒ˜ßqÂóªrz%Oa¢2Nðy•kHøªø*×òýñ‹ ¹†1§gÄ๠°g)<å£ÿ!?Ëô]ä»ÄÇÐ-/öJNeÀÛ‡¶/lìW*ŽkóÇVÆ6ÅvÄä³çd?ÍšC0%T¢vWÄEUÉáwP‡ùÇÔÜ-gËÔÉ8ñi•!D‰ß c‰ÿT@^^nŽðå¾4à—r£FHECÑ°ËË0„Ö¯h¨f\ûŸswìoòè››“'Þ5Èg<C388>ývö?¯þ××7@¿/oïiÑ¥åK§•Í7亾õÐÛhÛÐ|Eõ%yƒ'm½å±ÃW<C383>ã3¿ªûö‘ä%òœy¹»<C2B9>ºs¥’Çæg»ä£Ícú<õTk³™^[-=ìƒN$|pRÜ»}pÌ=™Û}ÐäƒJë³`ÁÂ… S³e}uuÒ¥<>žø‰í‹ ;Hv¿<76>v%¢Ä¦DU}Óu©ë*W¥KbnVÊ®aәĉW€œ-ÉâÖÌ8ÒqAE,w¸“7ÜSäñ‹†Žð±<>výðÇÛ;v-®ùçìºûñg§»f-¹ãQú ¡d]²^ŠIqâ"ò'ó£]¥ƒ[ÏÖ©› BNtbËhwŽ¡†¯Ýæ³G+dbØÛfÜ@û8ji" J³`C4eAvtgÁ±,èÌ1v|<=êNã)-=QzüòaAbnœ¨Ä+Eò‰Lô,óвHØø<@Ÿ <0A>B>Ra<52>
N5K]®žP¥=Ê~åˆÂV2 üŸ—-dï1Iµ‡#áx˜ÙýÜÏ £û<C2A3>OÂH£ÊJÔ“Qi}W@qÑPoÀ ¹9<¹H.O0h±r´þdïçyö…¥»våo)_sÿ}ëÆßÃî¹7ùö'ÉSÉ×7uýY~>ùRrì³~ùü3¯U¢ì!“Prä"%í$Dö™ëÆáú`mðé »Á?ÛÿŒŸ©¾<C2A9><C2BE>ªž<C2AA>‡Þ`Ì6ž1Ø8\ïªu=íb('šì­öNûa»ìV[Ôõê!õ]UvË-òzù<7A>ü®,hVè„à «²·<C2B2>ŽvÅç^ÁÌ Ö@+43¬ÕÑí°!Z3 )ª2 <
3àÝ àsÀ?gq ÎÉR¤ût±øp½!R€Ÿäæ<C3A4>áÈ/M \ƒtÔ@M~õ‡÷_<E28099>úÞvþË=þe§Oùë_“G þåWpÑéÉÇôä¯<C3A4>>µó}\Më<4D>$Ï!5 Riæ+íÃàphnÒ¬Ýmèn 8ofcÄk·µi¦G«¥).ÙoE¬2<0E>pAii×Ñ
*Ó,¢g¸à×<>] ¸<>P9J€Ï` g”>W4$oDMõ®—\3Q¢í}f¿] ÉûÛ¯¬îh‰\@üdž9@×ÜJ;GkßÛN}N§Ûaî6U#Š¡DST… ž (Á@k¸ -@©ÕùzWçDÓ[. ÏÒήNãõ4ž,ª$~C¼¢¿µ(s‡r=~\´¤úUËZZv½üòì!#”ؽÑšõ<C5A1>•|}׎ÇýÈS;ºOÂ=RÁSÃ÷éƒÒSI ˜˜p$¼>æ~ÂÔáŒÀ5…q0:3Ãt‰ã¿ a(zº¢ïaž^iˆ ?~hQYYQê ü¡CÇ<43>ÃäéÌ,+ÃÒ¢ªûyêÃùÔ,û£ >r<>¼)êV²ªØ6šŒyP¡†AUf¸6š>ŸuzÙcðoÃ"vp(öåÄ ¹4‚Êûñ¥ÿª­°qô@<¥³0/­¶x¢²2EË?À38°™Ÿ®ónó>ëeã <0A>¸a<C2B8>{'0×Yä|Ê)ùµ~Ú0m‡¶GÛ¯)/p¹±M¥ãX'm“ž•Ø
)\A—Ò<E28094>QvTžý!B6ø †Ô¼Xñ¤(:"¤Ä¢¤
¶ÀDû§É¿K&¿Hþú úÇ“N%÷&M6ÓçàrØö³»;’Ï'»ðïåçÖ¿? ÖZ`ŸâZð<5A>3Ǩí¸äv.¢A1}¤žŠàÕþQ¥ÒÕ™^Ó<05>(]=S«e<31>=å N08÷SíŠÝãÝ´Ÿs²³ÆÙì”bʵJµ²@‘²¸Y6£Ã9XÀ»ˆÇQ•xøòW­µU„ÜÃ>}Bh];önßGï½iå£]!É{ÏãÏ>Æ%à2ìÕò!´¾Üd‰y<E280B0>.a¦ATÒf:Áð@[Ma·Žyà]tz á<>=Ðê<C390>&d{€xàd¯¢íØà<C398>kDQZŠ-ìùpæÙ<C3A6>|³Ÿ”"Ú¥¸ôå"ÖÍGíÚ5uPié .»TòÂó<qÙEƒ/ãšåu ±EÍyj>=ìpOèQ{²P{ÔI2Ú-½ç@µ'4žK辿Kï¥Õ^Ïüp¡[ê9£üâ=ºo”ÎÓŠpC˜ ?­ð7øéoeÈTᎣ-«ÔÅj*e28Îд °Å¬ užPsfÔs-¡B´)<29>P”°n$g©ÐªlPh'`ŸÖÃè–Ý° ­ôÖ‡<C396>ÿª>\*êÊ:£<0E>Ô 5õ0ò|?j. «ºº*3ìÏÌ oÊ„2aÿ¤ÏÒWé,œé<C593>é*²d;¡í1ÃÓîõ·»}áÌ`_]uȤ_)ív€Îò Ôë‘Ûúš¤/>öï[G<><@;ýd˃Î<¨B=ó­ 3À…
§ýÑŒgŽdèe/sÙmé郦±0ŒS“3¥#ŸºN»èÈlpguúfôý(Ý-
û\ ¸ò\t3ÛÉhIŸ†>ô
ä©lv¿ì²lÉîŒ8ãΉNÉv¹}•}<>½¢ƒ_/Ó'ëŒ ii³7<C2B3>FË$¥tC¡ ÅÊF¢8†0dj\‰!6æÁ-7·^_¹ö¥»ßñýç‡íÞ Òܧ6Ìž<à7¯^ÿj9+™~å˜K#F®Ÿïã k¦m=éâüøåSG¬þ×ãüŒÀùùåz9iF‰w[¹¯Ê×êc(¿³"ÛH&R'k[dÛ¦™ƒ5­XÓìÛ_E$ÔŸÔE¢>_ÄXu­aýLäµ Øl¦á-¶ðµy<C2B5>SÛx©-T¸§‡‡ŠihAœˆIàIIé÷ÔOK}ý}iôÒ͘/<á– Lñ×ájp7¸ég<>“ÚePwÄöÄöÇXŒ»}]ž S²ë²—d³Û3`…ã¥)R<>ÄÆÓ)´.-ßãÜü³À‰J,¢Zü<5A>;<*Ø\ ¤œ_¥/ߘüÃ[_*zîçw>ûìSƒaá}+}|Ø<>CGÿzŒÙtÞöãäéÛ6ÜôÃ[WÝuï[ 7×­_ðÆ¿uþJ¾)(U"H×É% ˜ßQ pÇEÛH؆™;VúnóJý<4A>hkDÖ¸Ùê XÃbkˆ¼Ì=x<>f^Ìn¥…Ú2ïåæ<C3A5>0NÁ;çZ.H<>nø$ºŸ.k²È‘!¬bPà Zß<E28098>OóöçÉcSòêò蔜ºœ%9Gs¤¥QXÚdÂÚà}ÁGƒ¬ÍßîÿŸÉ¾€<C2BE>Êž€‡¶íÆ<C3AD> ¶ÖyŸóQ'ÓÕL•êr¦LÕ)~ÈÐê4Ã6ÐFƒRžDƒ4OPZ²(MÎH˜ôÇ¢¸Ó™wD^žÅÂÈØý{˜½<CB9C>Mf»ýîägG~•ülCëô%ïíïücsò<73>ºÕmsf¯Ø0ýû<C3BD>%–Þ²{³ÅÒò|²û'ËžÒgǬûßüÅõ ¾©®jqsuýâ®Á?ü~óŽ<C3B3> oõoR^ARoçbð.Êü”2<E2809D>TúFØVSF/ÂkP ´<>R¢D¶[©*9ðp3¯h(W<>¤´Í•%h4¯QL¤¥ÄÓ3˜Jàˆ!bÃc,Ùu÷Oh]×Ål³ôå)›ôî®'KŠä»P½8ÉÍæåªÓáü<C3A1>¢úEµ9ÀKQ—§8ä¢:
6¨¢9·*‡d*ËÌ¡2æUh>¬sL•VK”HS)(**˜^9ºkôë^äŽÒ"¾¨ð ±Dœ§§~Y8üaÈEµh<>Æ< ½¹§ë.ºéž7“K“—ˆä+0b'Kœ.§ëºsf<òµ4Ì$kÌ|¤ß6$SæÖÓ·¡‰§1»Ý¹ÍæË0ÖÈfùVT¯A3ˆrc<72>î.êÏö=ö“ôÚLÜuÐSZþfìILVj”f…Mj¤f‰©ªeÁ\åQ,iN:g)ãöÄ1¸rÆŒÀ—üäý¯=ÿê]Ïvl¨®¸—euµ°)Yyõ5±z_Ó¶=EwíÀ9©ê>.yqÝrKûûfØ»M“ۘϽ†˜È<04>VÑ ºPïÑãC;C{C¬88>x4È.ñ_éÔÿ[¿Ä®1ÀtÑËõ*ø¶r[•<>¹¥éR#zôt:m¤L•§§Ít1,ƒÈ¡Ëê†z=\#óGÉ{âÓ?}òé‰OO$¬ß¸æ¾õë7Ð×+“íó`)4ÀìäæÓA<>Ë`’ï&<26>%ßI¾ƒc«Ç¹ë<C2B9>c þä×æX‰Àqò9ækYÛ3X9ÛÀ$<24>1ÍíÙF¼†—êÌëõosK¡mšÏÃÝ %—¬q˜”[iž£G&u0Nì<4E> äB>U.Håú<C3A5>ýààoƒTÓ+ô<06>}lûÊFm†Ã˜`·ElTüŸæãÒç’¢æö¿§?e_ 7pO@Úä†<×®Í.¶W‡aj™:YeÃä2y²Üc´saO9óÂzñ#­„Å>4$CHq…ü^ˆvÔíëúì­Ïº ät=sÉ]퀋ï¸{ëÊ~W<57>ýsL¬H~}è<>äa.Ü à¶êõSºNßš¸¿ý©`~ñdãñäI¾pKq5h¤<>hãÂFÓÆp]*šÝJjê굧Ý<C2A7>®Î‰×NM´fVoxJ
Ð ÌLYéãìÊ—¢´øôGŒžNv°_H%=÷wíÀRq…l´¤ø¹¥ß™W;·d˜A#cKFa°Ýf<C39D>-Qo¡—2¯<32>þ«5£ì%¾3ÖR†íÕL¹ŽŽ@g¶G`CZ#Ð<14>ª”G 0 œè:<3A>âl4p>…i4<69>/Ò”ÆNMê †ð#á}áWÂRÀUë¢NŸ22BÑs¸€J̵]|­\£jG÷'¦;t…]½Q¥nÎo4$q;lŸ¹iülÏ=du(J<02>·=G0T¥ì·ßìN¾Ú{¯=}Ú¶oçÏž»ÏùÀܶ‡§-…¼îÏapòã<C3B2> ž=¸´l¾{eŠjì#aÝ÷!<36>vG?Ç0%ÃAû´Çé(JÝ4R‡D<Äå$¾vÝÈà<C388>>¯Ã<C2AF>~Yp…jöE×,K­£úBS_Èî Ý}áX_èì²/ÓªÙ@ _„µz™ö•½ãZC~gƒ'CŸ…èó<C3A8>®<00>HabʼPf‡fm¥F©Tójïiì§Ê/ѱææ|¿Pæ„eò:™:epÊYò ™©Ü€H„YÜÄoøD\+ž
j‰µ  õ C BÈ“¤¢Œ,fíZÐùòŸ>ßûË9»vå¶O¹sëöu#ÜHo»
Áö äÞKGŸªç/¯zí™çÞ^ÜnC¶Éo“Œ3èÎvÕrø 7٬ݛÍ.â9ÔNT{›Û!æ2 G0ähË(|0ëCЂÆLÁ5!( AA²CàAwþwCp(/„ Ø‚´À,,}B•ŠŠ£^@ç·ÕÓDU
CM×Çʦ´ÝÛ£LÛ- z}zûš<²òN,®å#ÓÒaŸá;L«ììê´¦ú©~^ðr³ÔksOðE3úâ SOA<'ñtÌ*àa \mx}ñ¥…Ç<E280A6>ïÚµkõÝ×Ê{WeÌœ;kýéålÅú§·¤b1QŽgÀÕæ¢È%µpˆÐÐFÓ.—†Ãè †Ã>§[¯¤G]F±¾Éµª­ØîÜh“|M!%ür(dì<Bc×-Ä$fn~11Ã}‹Ý$P<>ùÔXÎÅÇ\Ú*äE4"¢iýÇ÷iÃô@Ê:âƒF¥]Q^dp8nt¤Ë°ÄËý«´­êÚ€÷<<3C>ç)öÔy˜§£û¤9•Í 7 t— ¹ÏÜ>~ªÀû\In Ï<>W‰ôˆŽ|—wÂpïÓ^ðö÷÷þx•á.¸ú»†»žv}àûÛái †£»Ü®þH•†££ÜÎÎ{â"η´ŠžX”k<E2809D>tÈ'€É¡#Ð:ŠÉ›?NîN>”´"?—~>ù÷ÉîSÉßÃH_<>\NG/ÝÛà;0ÆŠüt|•üÏäë“¡ôþTÜGáá({è)ÛH„<48>°Ûé™àmEðÏŸ!·gí?9¾6¿éðÛIí¨<08>0Ärm5…•9PñÈÈ-¾>•oåÀk9°/Ë<>­9°&*ràŠa>`¯äÀ³f]<>¸±äW9ðIºµçÓ` v90"¢µWO ¸WD—VÐU½àzÚêÝåò€9t¢è0;ÇìI@b—/äÀ¬%ç(°çÀ}Ýî]ÑÂm;ô1ˆ~ô°õ¬F4WšnÑÝ ì1ÑÔ²h<14>XýͶ<C38D>RV7AÏ?‹Ê=›ÒÄŽéóø]ºi Ëa¢;.9%Ê°æöój^·ù¼ážJSe‡ÀÌ*<2A>ˆfçíäuaCT œ
s  HØzÜ­éç
´³¤Ú7ȵ^ÎÚ‚ ¾s ÒpÓ/y¶ë÷<C3AB> ¦<qKz MH<06>^òðåáíûñ‘¾Çû~Þ—õåUSÞÌ|?“fò§LÍ1á¨ûC7Ýç†_I°O­.¸A}F¥Ù¼8 êIUÆœ|M2¸½=]Ø` ƒxe:Ø©¨A¾—pVÜ3$ÜU%w×Ì—ÝUBwUV®»}×®5O½yÅúî˜Þ»üûW<C3BB>ó\Ô5Š§RÑ]»:v¡x 5çûòzÔ Efi«l£7ÓÕh­ñ ÉTAÓa<C393>«0Ë<>¨_Dˆ°q;zB3•ÜáÑEôý=ßÿwȺu…´yùÃo`»“У=-,ú„9> Qé._Àïó|[}T÷<54>Ë'4Ç6»¶Í%ÑÀVðn÷Á0_®¯È7Ó'ù˜ä£DYã G€†(÷l<EEá¯ÙŸÚ.æÑštdlZ*(&§ÝÝ}ĉ­Ÿ/\|ƒ:[½E}U•êdP ¸ÃØl|a0Ù •P¦®Sà†ÞvJÅ@^LŠÏ
· õc§OOù®Ü¶½å‰Ÿýâý׺ÚÜA_ºçß!ï“[šW×­_püɶäé‡/qÉGû{/šÇ*]lvy£©0ÆdJnE[˜éf`g6<67>µÔ Aƒ+4(Ñ ®A†šýJƒ<4A>5xEƒ}¬Ñ`™(ÆÌKä?+ò±r…¨<*]ó ït»VþKš¯i°W¯ÅXy  ˆ(ZšÎÏýaÅ߉¢Í¢
â1X°k°å”ŸLÝ!s4˜,<2C>Á Ä)QºÃ|EN%ýDök¢d¨×¶åt ®Ñ P·³ÞÕà<C395> Ök``îI ¬ü'4xPƒ&Qdj<64>­ÁŸEf6ŠÌRI4<18>‡5Ø A«(+× @­l][ùØPTCƒn ŽiðÛ@•(*¥ˆ„z!itžl9·dZÚq>Sv¬™~NÅ É« ªtÙ™˜qœïGf^Å-=Ûð˜´7Ø—Ì<E28094>ÖI<1F>Ê<EFBFBD>>ºŸ{åè¯ùQë÷%¯ÌªìvIR¢[žp½à¢.W¾7ØÎÃ}¦³€•?ÉoW|°­ç,—”Ýeʪ§<C2AA>hÐôö™ìߦ™q­Žv‚íƒ`à h jBÙƒ{Jž.?ÏÌx=íÎuGGžG ÄîZ*Ôê-Y^Nû&TêRÄéaª?jdLйÜô»<D\…½¹séŽLÈL Ô5ž­žG<L³7Ø—âJ[Ç@,p¾ÉŽVa“(Nóò†§6aŠGŒ°B{¸àÅŠ÷ø ç9wH$ÿsFhß;÷üxÞïù´yãøC—MþÏÚÃ/í:¶neY]yÝÑŒïõݵuõÜöÉvwlãÂKóÛ†>÷bòÊ}Éésm5—wám”Ø{Zf^O1£ LIæ»M'e8&û2tÊ<74><C38A>áAZeh![4…Oö*Ú.î‘¡[T9,ò{€¿‰ÎlíXÛO|ˉ¿F„ò=¹‡ÖcÒ‰Ò•¨`#nûŠ% <0C>VIô°R6yÂ8Ú‰^oi©5#ONÕžÜKàQŸ!…ü^ZÅ/¾øæíw­M¾_ðì$ØñAÁ«Éš/>OÎäý=€þÁ@”Š²ÖêQ™ãnæ3Zø©•ùÔÖ¢š^’èµ—Ø*¶«|PîƒhϾbåÎ ¤œs Û9ÝÙâ\ïìvÊÄ^.N-Hv·”-H-Ä·û¢´‰Jáásž¨?šÕ$}¥òÀäÉO“'otÙ÷üÛ<C3BC>SÛ—É_Aþ_YËé»:~qdkä;ß„ÈáXœ$@~aN¢·§Ÿ§S¡].)°Qai€ë†€JÖ9·9éRç+ηœl˜s²“2â<Æ÷
¨Sò.×C©E6ƒòÚöX hy=a)<.*9”î´öQ=%<Ä»ÜHo Ÿå„e¾×|ô5Túçùi¥1Ï Ë| 9àk;¬±?b§(<28>?Ó`¥¶IÛ¡1E j”¤ikW‡%AxøRQûÇ<C3BB>.F,&?ôa2 %§!ÒqoWÜôȾä†äZÚõ¢¼â×pÛš<16>ˆ6;)y‰B“æ0*ÃHY%eAr#Y$YV1êgŒbÙ¢H y<>*ÄNÀPˆ!1&œ™ÉdÖ¥@e9ªÚä15…+mp£ Êl±<>dƒ¿þÎûm°ÍVÁDQ`·æ¿&ò×<C3B2><C397>ßmƒ#¢Êvlµªl0Y´µ<>_4úÒ±ó€,«Ø*ê<>oár*=ù[¾ —žü 0_ù\-<2D>Yç£âÿVTzòÏÁdÄù(–žƒÊß"Úù´Ü60l@l)Õy¶<GN<47>§ì.dµ³¼€sq·àÜzq‰f¥¸<C2A5>ä¡€"Ô¡<C394><45><C2A5><EFBFBD>qk/†K§D"}
1kŽ ¬@iThTª¨6¢ÁLœ@b§a<C2A7>dºµÓRÀN&«¶'«žKáRÉ{êO÷ô6ŠKÅ2”Â1!…ÇšQ%JHÈJ³1”ÆŠ³JÕ¥¯XÊÖ0ÊÜÆQ.<2E>+Q½Ê”D~z  …re…/Èò¨È¼Ã‡Ñw¥dò]íò¡ßKžNžJ~e2üó×_Àý¯¢›Ê­±˜GÞ4/ýwò5¼‡·qgd:ccîØ6Mònsû@ghÂcô3úÑ<C3BA>Ò—¬qxû­QÌ|Ç­t€rf'p¿Ñ%¢³gí¡Xa÷ôá£K²ao†‡ Äc‰.Tæã<C3A6> èSô:<3A>ÙøÒæ0&H6¿<36>Ú¥ˆt£4GÔ<E28099>QX½/JíÁH0Ü”¶¹`”:Q½Qe£ä‰ò<E280B0>=a÷TÔ]„N@á¡Æá<ÔÈ#(¨ð­½˜þC/cH¡Ô~Þ÷.î¨Ý×õŸ¿9 <09>|çôõ¯_òÀG÷%<25>ˆ¨û¿üàöömô¦«níðï!3ywòa¼<C2BC>¼xý´ä'¡<>#®7~Y÷nÞŽ¼¿…zÁN&˜9ÚFEÑå<C391>”éMPU<50>1<EFBFBD>8}²Þ¦P×9/~øÌéƒ21+/.é­S¯I±Ó[Xàô'l¹¼âþäøû“vœ2õÑÕÜãÀÔ_Í«m4œ/I“TM©q/î6¢¢ìU5I³I·ÉŠ_,<1B>¨2he%Ìdèø¡§¢©\{¡}BPË2Ÿ<32><C5B8>š¬y—ªŠ¦Eí eqÂå8é€Nlp@•
Pàè ^ö^[ÖÂB÷¹“ïûñMÊ…™¨Á/¼Æ U=ÚPG<50>¼‰NB@ ¨à±+& Ü2ä”çKaºÐZ,ÆpµùpWøi×ÁΟÑ+ëÞþ<>ÌWœþšÆ»~E ûóä¡› i¦¹Àív9N»a¯rƒÛ ºì°ÓvÃXE(’‹º]nõÊéð;<3B>ŽŽ=ŽãçG选Èt\ä¸ÄÁ˜ÝvDÉÁk<C381>p9 â¦vÍíðªZ»)õ¡v·¢`&1\N§Pln§ÃíŽz¼n¤å^¨ñÂ/Œ÷B?/½ xá¯Ç½pÔ ½°Ó ›½€@ui b/ä¥á¾ð‡iȽ½€—œßÜÙÖæ% hhå…€þž†z`vž<76>½Ù݃üϽpÌ ¿ôÂO½°Ç Û½°Ñ ·{¡Ù U^˜ä…1^æ…¨¼^ ^@øã½àwô¯éßïïƒŸÒ >(àgYŽöª°ù[+ô†‡„Á&A³&1É^¾•R(Fà÷ä…“H€µ8æ#ÄO<7F>=Ð= =p=@„¡åé–ˆ:½°Á ­^ÀÌ/"Sí½±0ý<%znÔìý=ýühÜߨñ·*|{Tî ^°1!yÒâÇS.@iÄãÿ]ùსä-]<5D>²KV<4B>%Œ\\ Ã%m´ÍG9OºÁÉ@•XØiou?⦛h]t¬q°µú}:e Ú#bs<62>Š’>0"e
ÜpÕž];½åÐëV&g¤<67>ß¿øë<C3B8>ëúÞy§ä²l&´É§(Õ]$H²Évs0ÉÞuºÑp«Á<C2AB>6Ú¨ŠtwT_ÃYÎbÁúRQô¥zü‡wN "ñrXjezÏy&óÒ9Y˲¶e±9Ë2hƒg©‡u~è¤?s‰Ãþýì+í›ì;ìŠ"¥;¤Í¨‡óh1¥ù¡Ø>ÅN¹Ë<C2B9>&xúM,å8¿aW_Ö.wŒíÙ´#yôç]»èÀ<C3A8>@ZÓ5¾w×<77>ɇaÖC_}$¹ƒ&#?¾ã§ÇåûþuÖ¶Kf<õôúå7ßÉ#ŠÝ°W¤8z[[M¯¼…(`gŠbkg†gaŠã£™º^l®vŸÏ#ÛW3$7Ð ©£ÙüPoz'ôà…x¥(.ñ¯ñãàî ô û¨îtìuÐEpttÿÆ Ú]Ñ÷éôVô||ÈÀõÏÏ¥, ëPnz__ÄÐ5ÎÍ!“ ÿ÷Ï<\t÷ý~òÓ<C3B2>í;Šw½øQò]ª…ìwVüfÏ<66>S·f ¶l…Ÿaq°<71>ÙmGsïvÝî×u»&ÉÒmº†IÍNe ™OgOËTIµm!hz”¸†€&·ª¦›;òêI•:˜®êdÎ¥LÒõ¨[Gš9]:ªÉ Ž¸àY¬tÁLtÁ0œrÁ~¬sA3ÚW.xÍ{\€Ð‡ÅQø]@\€• Є vˆ&°B• &»ø<C2BB>„4<E2809E>…\°å¤ Ž 8lf» 6 ¸r”¹ Ðý¶uLà0x[毡É5ª§ÓžÏ鮧¯Y=õ «ý•½ÚµµZ´Fl5‡ð#Ž§Çnµe5dO7ôlº¡‰é†N¥Ç‰mµº€6‰þ¥ÿlA´i;ýÛ}<7D>ó$ÛYDZPÓÒ‰<1E>iVÈв̈́ø³ö9*T'ÐN+8< ý £³´¨¨3u| ã™Sdæø…þt8½ž²áòõ2ý£ûôWtú]ý{:]<5D>«ÃTõ ­V£ý5(fSX»ƒIoÙ<01>,c½K÷¢EŠ†ÿSv÷<04>/.ón”ÖIô $Cµbâqþ<71>Çåã©ñMt§ø¾@LQ:å“e"=pj†´ýT•¼âT£twú\;zVçœk'ÿ›Îµ{¾ñ\»|¨+ÁyWÿR”Œ<h6¡ú!è_ˆB!˜ yšñ-5…¦ …2De0Ъ—¡äd:¤Ø$C• å2˜¢àd¯h£•i¤óŸñÇÞðQÎåÉsýëttúLüqiGGêäPr2ûez˜äÁDÓrçáñ3î™íÁ 7“t]Yí~#·Ýí—OÞR¨˜J¹Â—þ}œž,{/3Ô6óÃõT£+<æO5ó!š‡ò!DšäCù»ùЙ×äÃö|h͇|pçÃÉ|8,¶ôzéAOàúHÆ<48>žãò»µŽYîmIAA\ì¦<r³zO žÍÝ ÿîÙøà
'\ÑÆ÷<C386>ñn-Ê9p}NmÎ✿äHr_¸¾omßÅ}ÿÒWZæ[磪;ä¦ËÜëÜT3Ð9nR*•¨“qÔ vˆ€Ð¼¨y¬ÃñÖk!"UY!û{ Žá½NÚ ?ï¤Í§¿ç<7F>Ÿ?ÕvÏÎ×>ù|ï<1B>½OÜdÿôµw5Ü~óý÷ÁÐùÁ›å]Ù½ÎÝPqÞã­Ô™Ä§Í¾Þ»‰ä¸[ñ¹—ó×¾i`9ík.mÍ€hô:qÞÙÄʽ~ØRþfÝêCa1èVJb¿jKœhnÔÙï°³Gu<47>ôaú<1E>ýˆÇ®FÙèjVË`—FIôQ
F÷PfGÿµÊ<>¹R©g>é4<C3A9>a§ŽUð;¤üβ¡%[““û“Ëá&˜ð)8ÿññ§É“¨aHÎKîMþ49€ËàrØüõû0ì Â%Xá«ä—É—qUf£ôy½L»DÍJM³ÛuôÎ)e²,) P
v;Ñ™n³©èŠ£§*QW)àWИÎVIš_Bg]¶S‰èè»%\Ú^ôä@@#`cº<63>^ì3Ý'‰"Â¥<\¢hQë<>Çn-<2D>%ÉNœª¢0ì¬&eH¥+¤
IvJw8i[ç„)N<18>DvBžNPœð×<0F>pÐ ;<3B>p‡€(sÂ0'ôsß >wÂq'qÂ~'ìqÂ'lrÂJÑ\<5C>h®L4×O4‡ð_8ü¥:<3A>ðäßÿÒ¢ƒ£¢ƒ½¢Âf<C382>Ê7áû¡Ù-À-œ-X J™›ÓÝÕõê.OôµÅBî èhgÈ*þ°–“/4ªoB²&Ý}†³>L#xvo9aë·­§ƒ<C2A7>gS¡‡ØȈ/ÌØÃÒ'ä8 '1_ÇœpXÐçk»68¡Õ ÍN¨#3ÅüF¿a~žZšœPîL5š6g.Ùµ¤èô »„ßÆ=ÏĹ<C384>uów9߀Ñù |󿨨 È8ˆJxèÐEžPÉHüXrƒ”ŠÈUg§7Tr®Edy†çßEXÖNyhœ,à† <0B>sï¯Ø»Ï%—|û9¸-¹õE<C3B5>Àödr<”œF³à/É;¡9é濘Øý-AÙÊÈ•¦—¿ð¶õN#¸ õ2E´;‡ŽÉýwžuÜßt¨0 ^<>௠«0­²BChIrêÝð°üÀ×WÈ?æKþ[„<>¢œrH£ÌÉ<C38C>ì0;ÆX„w3Àaw¤¶l¨n×W[;6(“´ÕL¤$«6Y¨oùF;(v¾yÀˆ ²=ª9ŠmüÆø®lÝ(Žã0øñZ¦*ºæ nÝ.ɼŠˆˆ<68>ËDlö¤ ZmlÛmÌfãÀ8lU‰*<2A>
=¬œTètÊ ¼@€û¾ï¦2b3&¸ÈbêTšéä þë/„I~Ô]°Sòh³/qÁxa³#PÐó¡@³}³ º Nx (ìú½.~vçá L‰püüÝ*xõ«t+{E+ ½êk¢hŸ¨‰Õ¦ˆšñtM ¿ýf·¨ú<C2A8>@
ßbJÚOÉIƒoEtéŸ
Çdgz<5ã1½F…£ÿÌï WÅÛÆ4pïáõK÷ òÉ4!îHC H«û†/z5j ueš½[TÒ-îÍYcjH¨¸÷ÈÌN—9Öˆa§|:Ëii9[=NU³ð·
Ó”·\UË©\ÖË­‹¸Àò:{8ËWCOŒÂ³M«<ïäÅyÒaúùBäÛÄÍ·¥¾YÀýí×¹ÍÄãâÝHñj¤§È[Q0´H¼NSYT$P¡<s‰Åý¸Nþ)ª\ÀO÷r[h<>x-ÈzÏ&%ÇÎþPOoÕdëüÔÏ+Ò[ÒÇ;H<>Ò)%Ã0€|~®báBŽ-ßæb"öîÃò£É×6'“íÉ×öüâÏŸüßðbãO?#yOÿžõã—µƒ.ý<01>øÈJs°}£a4“| Ó¼S¥z‰º[ß^ó1)`×ZtӯϡÑà¿ôÛâ¾v¢÷[øysŒe­q5»èkçY†:
ûQµÂÓà¡Î'n .H¿S-¢V<|•ëKG¬vÐIoƒ+ùÕ‡ÉúŽhÛöÈã÷&—É+>~úÇ]]‡èë÷¬hÞ<68>~ƒúKô4íð#³
EwhÁ¡ÅV;
P»MÓVë̯ë¬L¼‹¦kaëéš‚ž[Bëî-
2m§?¢L¯"MíXÊ´ëuêЬ#„»”w¸½Å„˜HF%T#Nk“MT:sȵ´Ô ÙN@sè]' Nx Ó<>`å·ôJ»ÑJ°líB¹W‰:=iTñ'…ÝЀVBá¹Ú¿²wŒaÚYìÛë Wœ,®_Sù¸jE…;tºØ¾)å
¶T0o¨HðçUq)‰]e[¾ßÒªiïÚÖÝùÔU×N°qRäƇL<E280A1>ìÍvjh&æi&>£â ;á* <18>p1¤"üì6XÞ5WÇ_¾ž\³l×.xöåd'ȇN/†7âÜßWû.r©<72>ÔvŠívK!ªŠjSn“%?šóð2Ð<32>P´CzY¢¥ª2Y±ƼrJéÐbJl#Šœ-Üé*žzP®Ç¡&û3U¦“¨&/¡%:߶;õ±¸uxE‡GtتÃñˆe_é°F”f S £ÒáC·Od!ÄAQg©Â…ü±(ÂÊè" snÅ
GГ:ìÐa³·ëЬC<C2AC>èdŒÃt觃—û\ð¹hýˆûuØ«ÃN6ê°R‡%:ÌÐa²ãEðŸéÇt8,*$tóØ®Ã&št¨ÑÁL7îGžÖ¡[?žÞ#°Ù C«À¦J‡rÊtˆ
h •ciTx“€¬x`Ó…¢i" ÷¦V
€É¢<EFBFBD>~évJ¬Vvˆâ¦t} Ä©S d5a•Z•<5A>ºÏŠêX—V‰n øb…3ÚãÛMÏstÆ·Z³ÓÿÖ6Ê´sVâYKÑzŒ[; ¸âàª#\À_åÖ£°oK
ŠŠxnGžµ+:gP/Ã,-ð(·gåïv=ÓÑõÜëð& 4?}o×4Âê»âôWVD[ÎenºZ…%ê*]J×
7+«:Nù•B¯„ß½ V}Y…-*((6oS¿ª*O©°C…ç(<FÁv?í‡>#¨ÂÚU˜ BD<42>«£TæTAe*ÚÓj+1íd>Uh«dê­Ó ;l·C«šìPe‡r;ð×ßÒÓpöiïCIAçPËú/åéLSÕ#á;B¢¦Ð±T@ÒS$çþâtòñ_0éQiÕ©¥òŠS7Ik¬8W½ˆs¹IøÌùYíôÌû]žv'qNþž—“:%»kŒndò×¼"NÚHh…jf“zÚW­£f6D³áP6$²aƒH“l(7:³ášlØž ­ÙP ~àd6 ´Î}-ì~íè:) “Ã5á=áÏÃ’?ö Üœ|6x*(ñwÄúˆüX
/‡­ã¯ƒ‰7ÂË'di%uL¼=¶P{O“Ôi©ß7Z<37>fþÃüy*J¼@˜j×ΗþüùÞ<19> íŸJÖÓÐ}p1¨Ÿ@î¤ñºÆ­áÈy2‰™eÒFðUjS<>ôÆØ ã „º¸p Î<>'& ?ÝØAßÂiËH<C38B>ï«ârŸxÈb3Óí<C2AD>6çrÉôI<C3B4>Tk῱%N+žÖ*8Ö*Ø)ƒÃÝÇ=Èý¸[rØûØÙ·K6v£ò˜B%e˜Bo¤Ë(~†Ò¨é­3‰•"XE¸9b§b#bVd*¶>ƒïÂ÷“·%ŸMÚ:`ôWàLþÇ_“ûåÉ$ŸLþ,yËý<C38B>S€ÿ6yØIŽé#ü5YP|ì Ít85ñ[<é8\üâÂþúé<C3BA>·{ýÎÎè õtÿ픧a+EK£Ég½!:<Fë»~Kó ãÑ^kÞN*Íl£Í&Û²-Ätâ²TùQG‡,Ž¿ UHMÂà(ˆse:ÎÞÕÉí<>©c1¹ž˜Ðá1¾òö<C3B2>þ¬£ƒ¹öÑû»jä]{èw¹ö®cË [pAÈĵ/1¹%„fÄ÷?Iiæëˆ=Ëeà ;·qÀ>éáä0øw⤪ íœd„©9ìO) “øÜÚð¨Þb#DÛÍL—횦cI<63>qÐú<C390> Ÿc»ò™ŸPCÆð²±<17>œôÖ€eåÊ¢ñ7šûçOÍ·í¬K®Èºmº{ô_HÄ&~Qø¡÷³~šþuáîÏ““•\ùmLª©ÿKAÔQ/K^MÆöü1<>³?¥
fÉSÈ2iY…×:¼&ÑGÉ:ZB²ðÚ!¿Dªx>¼$`ÖI„Ôà÷¼¦àU<C3A0>W ^ãùo÷ç÷ÉÞ†h§[ ±)%¤JyT´ý({ŸÄñ»Û¼‹÷…}<€×lÛÀç2,Š8íÀK—pd<<3C>e“° Þ6ÇíEÞoó³y?X?#·Ž×íYxð1ìàcÁ¶Çð4ZÛuøüŽ?}Q/£˜‡Õ³G¤‰Ò rP> ´«ß±Ùm×ÙþMËÒÖéÃôÙvÙþ˜ý1G£ór÷w³ûsÏO—÷ro÷ß‸ÁÁÁŸe„3þ9ÓùqŸxŸUY³²¾ˆ¢WæÜóiî[ýoî*ïé¼_ (P9`ဎGò51¥üÄÄ\Pb<50>rŽå5i&æñÒdöÌÙS=óÇ-ΧRiŠóý|*ÍH&ÙŸJKóN*-ùc*­ žý<•VÉLÒÅ{4l´-M+ ÄO¦Ò”¸èoSiF†Ñ?¦Òñ³>©´L¬0•Vˆ—MH¥Ur<55>Ý<EFBFBD>JÛÈP)šJkd¤4)•ÖÉ—ÒÚTÚNŠåÛSii;Ri§c¼ŸJ»ñÎ/k˜ÕÐÜpKmM´¦º¹::³±ié†YõÍÑG¢C £ß™UW½ªq~cóÒ¦ÚèØÆ…M<E280A6> «›ç‰~gîܨ€]]X»¨váÚž9£zþÒG£ ¢ÕÑæ…Õ5µóªΉ6Ö}sKÑêù5ÑyÕK£3j±¡Y šk"> ó£3k6Wã÷ìÅ Õ4ÌäІX]D¿sÕäIµ³Ï­^xv˃£gΤ¦Ô.\ÄûºxHa¡•ÛSüÿYRFÈ,¼šñº…Ô’ô kH5>Wcj&iD¿s)Y( ê17JÁk(ò2ÿï`~<7E>€½
açãÕŒðMØR¥Q#Öl÷jÑ"jÍÅ¿h¯v‰§Zü®Åï%“4ä ¬=Ÿ,<2C>åàsƒ€äý5Vkr~/$s0¯qùGpŠŠøØy[Kñ{†€æÍ}6 ¼,ú4ˆ3E§“õ<,ãY„0 Xšn{Ž£×(~WÉdh{1pì¿ çÁgÓ¡§… åMX-ê×ÅØ;Ÿ©Þ°çÕþ_MÙÿ*FßV£L@Þ$ú<>…Ï× d<>è³ö[èµHä.©Z<C2A9>i<EFBFBD> ¢Õ*ïk¦h<C2A6>§æaé\A‡Áíœÿç§Fߌ¸¤é3ïÍ¢­™Xknª_<>ó°Uk430—ÃÞ$Öo½˜^ƒÃï"ƒD[Ś嫘ט×k•× ºpœg
ú×
Z׈q5 ®\*(ÌWg3æ\ûâC°tVj<gÓpH
ǬV<EFBFBD>¨7{/8‡> {r¦ÙáéSØqx'ê—«q¾&“+Èx¼Æ"-xúÌåó8ïßùã0ç:¼sj]Ž«pþ]%r'cžSüÎŽéúÔ Ÿ?<3F>éüzñÔ„¸5
ˆ…ö¿³VòSks`¯uÓ<75>Žwñ9å},Å{páÔ[Òk-NQha/<­u6OÀ[rÜ榸{~ªu>C¹ÍB
W¤z«Çò%®ñH¯Ð4÷~3ŪEëQ¼R˜-LqÏçkÛâô:AÕy=r-šâV¾Ff‰µ®{†ûÏï¥&%aŠÕ²XР¦‡†<E280A1>÷45Òt:Cgèea2ä\r~ßgäñ"ã=½b«±lÅùm_<6D>ý.ê5Ïg(oÍÊÙ2Ó,jtlHÉ­¿g†£"§Z¤Ó/Ý/×5)û€Ó«ú<½=¨za/.=CÓo§ÏÜ”Tj&½eà™V槦ž>*ùd¸X'7 Θ#æ¹÷ZJË·3¸5"ì|±b‹™àÔ÷ŒØê³7·§5µvÏXCi^¼w}Û˜{sÎ>çÏnZ/ÀüZÑzZ×YýÏOiÇùçÌÔBr®5•n<6E>±QØ5ÄÒ»K®±ºÏ3<7F>¤Û³ÖimjjÎZ<C38E>éöΟmš…\hÓsU}•/¼.¿MR¥éûmÒw¦ rZÓž<C393>“5"ÎG—ôjízÔßÁçd<19>öØ´«Fâw!>[vpT¬Ü‰xù˜7aF<61>"¼¢xˆëL«üŸù¹£ë-­Óš`±°4f¥ì§³W`“<>Õ©ÚK6¤äË├¬ÅGSùµ=£äXü#ú9]Vpîgëd~}7euÌÇû Aaw{mj<6D>[c¼Z¬£[ReRÜVŸÂ¸®G÷ó:× >æãX,8eq
ƒ…)ÍðObÄRº¦öd¬å=ôn2<7F>Þ—Ïë%¥Î_ÕÕ©Õ67¥yj„¼¥Å¢¶%½z˻ڳê}³ü°¬{ÎëbnªÆ Á5µ˜×<CB9C>Ê»¥§Æ"!=šSy­¦Öùÿ$e«æiÛ£6eFÏ¡-×}ÿ™ò<,ªÎµjRR¤1e£|,àz•ŸÑþ ¢ÞÒ^µjRÜ5SÈÔ3µ ‰7謕W+h•ž……B{-êѤÑ×
}úO©µÉóþghY:g$`<60>·4œÃ-Í‚[ªE»Ñ»#m·5ˆò†þ<ŸÕ)z4ˆÑZ?&<26>½$”åï H­u«‡[ð¯ñÿ9mX*Æ:€l¾Ðÿìfîž~¬ñ}÷X0Ôçȯð¶ìÖ`dÙ­Ñ·ßLñKÌXrÞæ5ámn#ÞæÌF®™?}~ãüùRëœÄœÎ9lÎü…™Íý<E280B9>>³fã­®oµõþHvmKýúúëÕ¿[¯ÖO¯oª¡¾³^~¡.ÑÐÙÀjëÛdf,
Þ26#¶/Jßø9¿ØÉâ<C389>m,nîWm%ë?€'>xáºá§ÐôÞïÑ·_`ñ}Ý<>ì³'u½¤ƒ}òd;<5F>O%ÂY%<ˆ|‰'hü‰¶pöÖmJ|[»ßt7/Êr ÉÝx·¿û9~O»ßÒNã<4E>í-íëÛÙíÀÛþ«í?™…<E280A6>âæï}Á’ž§ñŸàõÄóйûðnº[}¢ â?hSâwáµf<C2B5>_‡ß…Öx\ 0¤5;ZÒÚBã·ßFã·µ(ñåxµ Ðj¼Vᵯx•·Á†6ÑñÇæc6[IdD \ x‡ÜEÇЀvq@) °‚ÈàÊà¾(îwçäºúåºûf»¢Ùn·áqðÿp˜ÿ„-“dê Ì_O$”ÿÇ%<25>ìAvˆÉ¥îéî÷ƒîÜïºÿìîvÛ4·lÈr†ÕLgÀß9hôE£óGç<47>î7:gtttßÑÑáÑ<C3A1>ÑÞÑîÑÚhe4MF—AÂ;Lœ<&áü¾nL¢(>±ƒE'%†Æ'&Ôò§îøAæ&èêÒêŠ_Þ±7Ü8µ2xq[d ‰‰UmwUì¦dLV'r¯Ê¿Ìk§&¢«; 2yên
c***#&OåPñ¬D ÿošZ³*CybCV˜¸äÚD$wLüBŸi¦-Z´¨wÎîü¼q‰ÆU'<06>«*; 5ŸW¿ÙªKÎ-86+òÆN<C386>Tð+O„¹H¬”ª•êXÜíÖ8<C396>Ê'<27>˜°M«üÆDf.>¼ŒÅøàȃëòÿ7äìo
endstream
endobj
9 0 obj
17267
endobj
10 0 obj
<< /Type /FontDescriptor
/FontName /CAAAAA+AlbanyAMT
/Flags 4
/FontBBox [ -222 -306 1072 1037 ]
/ItalicAngle 0
/Ascent 905
/Descent -211
/CapHeight 1037
/StemV 80
/FontFile2 8 0 R
>>
endobj
11 0 obj
<< /Length 496
/Filter /FlateDecode >>
stream
xœ]”Án£0†ïH¼ƒ<C2BC>í¡ÆÆ´R„”FÊ¡»«Mûœ©ä<>CÞ¾ðÿnµÚK¢ÏÌ ó<19>“j·Ùõݤ?~hönRÇ®o½» Wß8up§®<C2A7>£LTÛ5Ó7â¯9×c%sþþv™Üy×µZÅRÉß9à2ùº[·ÃÁÝcñ·o<C2B7>ïú“º{¯ö\Ú_ÇñÓ<C3B1>]?©4ŽÊRµî¸Ô|­Ç_õÙ©é»vŽè¦ÛÃœøOÈÛmtJ¸<4A>±·fhÝe¬çëþäâh•¦¥Zm·e¹¾ýÿ©fŽÍGí—èlŽNÓ\—  Èš<> ÀnÀ  è5à`Xú‰^à™Àj«1gÃj„Â#`K(ÈR:È裡<C2A3>ÑGC!£<>ú},sècY<63>ô±Ì¡<C38C>aÁg <>ÎôÑ<C3B4>Ë蓳4},Ãèc«„>S ß½ }rT“ð}ÐŽÐG°£BM <4D>aú¼TèS0,ø°tðÁÆ } ä„>–½ÑÇ°@ðÁ†} Ž¦O<C2A6>Má“pÞ<70>£é“c¯u8oÏúäx<C3A4>>8Hš>|t8oØD|°×š>Âú|4} <>°úHÅAú˜e¦p üLlsõ~Òe<»ÞýÜ(ã0"/ü|Àˆ£endstream
endobj
12 0 obj
<< /Type /Font
/Subtype /TrueType
/BaseFont /CAAAAA+AlbanyAMT
/FirstChar 0
/LastChar 62
/Widths [ 750 666 556 556 556 333 277 277
722 556 222 556 500 556 556 556
556 556 556 556 610 556 556 277
277 777 833 556 556 610 556 222
333 722 722 500 333 556 666 666
500 666 500 833 556 277 556 777
500 277 722 666 500 666 722 556
556 722 277 333 722 190 277 ]
/FontDescriptor 10 0 R
/ToUnicode 11 0 R
>>
endobj
13 0 obj
<< /Length 14 0 R
/Filter /FlateDecode
/Length1 22728
>>
stream
xœí| xTEp<E28093>ûê{»o¿»Óé4InÓ$€ $&ˆÄÉD<11>™D y<>„„WB@@&DDÈhaÔeFtµAÆE$2¨óBXeÀYWÅ÷ºegUt <20>ÿTõíNÂÃÙ™ùv¿ÿÿ¿é¦î­[uNÕ9§Î«êvhkYZGTÒAx¢Ï]TÝü§·^ÿ!äw„€kî²6mïŒÏ}X?Eˆéúæyýà5„(oàsß¼…+êõ<C3AA>wâÄçÑ5ÔU×¾¶} Ây Ø°"ºÆ„Ïßàó°†Em·Öøº'D‚Ï?[Ø4·:)z¶Ÿãó¬EÕ·6·Š}<!WÑ~mqõ¢º×>ýx>â~¢¹©µí$¹¬<C2B9><C2AC>Ò§ýÍ-uÍ/îé8MÈM2!ülüÒ<C3BC>ŠU‰>s¼ J&Y1[T«ÍîpºÜo/ÙŸ’š–®‡††ed1üú<11>?^×Òë…Ákïû¸ÿJ?ÑZG\Ý÷·R Eø[ê$×G_SßÞ¾Ód©"bßì¾<C3AC>}g¹|.{=}Ÿ1¨ÑÂûÂûdVßnÀ5…tbë^0“?<>X=™•_×ãsÚŠÿÙÅî__ŠØ5èi~çâÝvHŽ}“qžCd ì%Md~Ÿ {Y÷KdYÃÏN€#Å쾋Ì#ñzR×GJûž ’‡È>î<>£ä#òäòòcrì#;ÉÍøí&»¹{Ùlù/òÎß ã¿þþùûçþïýœD/£Ê×ägOjH Ø0þÔ<C3BE>È•ø]E¿\½>iÆ5S¿weÁÄ+ò'ŒÏ767çòì¬1£G…/9bxfÆ°ÐРž:$<24>âOö%y=n—Óa·YUYM<1C>Q<EFBFBD>Iž\V<?âŸ\QCE!‡Q¯?==+B\<5C>`È©åf•<66>6 "b8BÜÓ"ž’²=DŸP‘Âçƒ\á3 "òô€V2ð_èÚêÚȈ<65>ãD Ñ_Ž8”ÉeÁ` Âeà¿k° ÿ][­ÕF ÄZ®‰<C2AE>2Zö÷½7É„`9^g”EÒâ<C392>åå#òYÌwºÏ#ózØàØ£ú'Eˆg/;=coAdD q`<60><>F²"àùcÜðNGOAÑNM¸ˆ Šk燊kQ¢µUý2=“hPÛ m˜QæÌÅ*#zZäW7í±˜'‡&×™ d<>Ù-Á&ƒ4ïõ{À*œZ|ÅŽÈV \LËüˆ¾±
+¡"”ö¸û{ö÷uß3° Z¼æŽÕb³F¤É ­1¢WGÈFmϨî ÷ìw<C3AC>šª°Zª­ž]á«`á3ŠJ#C¦•ÜŒM8–ª<06>.x»ÐåÓŠ´ øLa«ð*¢Ë>¨½¶¡®Š*
T…Š°O™\¶>؈¸ð^q†#W#ØÕ+?`kyy2R¶¡8„ƒ!lñüITæY‰uaêvM-“¾¾±ZtÔÌ<C394>)Wõ=qnpDÔ¯ƒ(~\Ädˆ†¤j«æSŠæWS.Šçk6Ö1Nîa”£BjÅóˆ¨Þä&ľ¹¬¸!TÜ?!ò…>ã|Ü`0âŠ)‰ÕµH}Œdì觟*} HÏäˆ^Ên¤”‰gÔ«Ê<E280B9>&àfŠF{ªŠÊ˃±eEЈ)c½8&¤m #š2"ž°#xûºG<C2BA>š6£¬¸¸<C380>p“Ë®ìIô`}ZI¢fCVO &£i3CÓnŒ-rCüRU³P.±°jÀ³Q<C2B3>$Ž`}JhJÕ† SBÚ” Uª÷÷uÔ„4GhÃUÝÐ\\¥1Ólnc 2åžòˆ£ª®ÀE¦ê4eÆ´ˆûÆ[èòLѪcÞ 0œ:Ëã0%—ê6 Õ:fHŸ!u*:<3A>€6…z<E280A6>ýhø<68>ˆcµD¤å¦2Tô¹L)Ù `& ¦À—g7Î4DÆU†º¶<1B>V$¤F²q¿Njð!ÒqcYìY#5<>½DÏ
ãêUÑžîx<EFBFBD>÷&ÚÓïI W…pµ§Íü3Z=P£78C.-?­ó¨µîRäñ y±àîÉe|€3j\€§5s=TAÄfˆT&è78BÚ±PÄŽˆ“˺åšÃ‰ ê`Œ=…:Íc¡_u•Äãˆ@AhA×É<8ï<E280BA> \­xC•¡kY4ü}mÃÅùDGY Äà<C384>®åöwÌŽ9c
µ¬@0qmyÄFÝoÄö» <>Éeº´ÝYE+ÖèÂG´ª"æÊ÷÷<C3B7>ª*¢>CÉñZþçgõǦMþïAšÁí÷”7\q¾˜§•&j3ÊVV<56>&„£!"቉$ëfˆ¼Kä<15>dq¼}„É:ryvÐtfàp~®ƒ'½ˆñ'Ò!zRÕ÷¡ø„øñ“Ýz¾×í#œ¯SONædóýšÝ&µSÜ<>œÛçK-æ¤vâï8V¸<C5A0>Ë€ŠŠ0¤$;¦÷8Þ®œSÑsâˆÓ•ŸE
{
{OÌ©Hñ÷àcrVJ<56>++—gSß®<C39F>ºÓ ×
7ò<>Ÿï´ƒË6HU¯T¹LÜ)<29><>¸màƇ`)Ïq:HPM˜æp^ÉÍ?.8.(>=}%‰.†íp#dÀÈÒhÏÇ¿ýL{÷ü(z”+iÚ÷AL…=ôþ}ÑÞ8ý¨ðÜçTPùâZ¢<5A>ˆ~=H&év<2'ñ&\`7¥8…7uÝBsá>snpU(±€n<E282AC> 4[ Û;-<2D>mͨ_²¤¥¥Å<C2A5>Ê(g@•æv£¿¯_}Ø<>Oð2dp IS¤YH&ñLXvH‡,àé°s¨@Ð탓.°3(æGÛ»)zò¸øÓçâÚs6þ<36>„c+ý&®´…øÈôlW'ÔNÉm_Íë~¾‰ó®Vôde!·Ó~höC•t?dûá´4?PèÇ Û¸Ñ5î1(Ì•a®|bÞ ¼Ý v+È Ÿ•±,cõèr\ãÆrl]|:èp[ôÑ—£‡£«a9LýÅÉ7žá<7F>×Ň¢ £ÿ=­<>‡à{p5<pv¨ï½ ¶è—ï¿=m¬Ÿ”Šë§ò<C2A7>ë—ó³å[ŽÇõCk…oÌŠÇlV,œ¨ð`xÁä²×˜H'œ"bŽ¤<C5BD>TÔ©b‡IÇÑdŽ¶ÛI!ù‚š$ÛÍÍ\€˜!Ä›)tŸl™j6™É+yÁlÖ¬6ó¤Úìe6¨·Á,dÚ É ¾ùÈ'lð€ î´A òl ØàKüÖlmÐnƒ6˜fƒ‰6ȲAÀgmðƒxÜ;lf• n±Á q ^ùÔï0 çm°ÝŽRhƒ0ƒˆ<C692>ò&xŠ t©<C2A9><E28099>e3Ùã´´Á£ñ™šlPŸI°ÁÖÄLṳ̂ÿç´ÅfÙ8€“°Ñgc,Cœ×â< ‰÷ǧ/bC§3 /ÙèG/1ALH %ˆÿéŠÛΰ8±Çãó%äÁéLn8áiœb³íd sk×l@l`š“pCh•1{ fÍ>ƒ:w îîøîÞó‡ªì1ºÃ0Á™†0Zýâ?¬Ål6gI…£Ç™þ¦Û™Û]˜ð9ëÇ$p=Å­ÌçVrÜ|q¥ÈñmŒ
„ëpÃØ lö üHó5f®<66> îæ!‰ŸÅsèñÌÎdµŒ¶pM
(ûûÞГeêxåû
ÇCeE˜Òb|Ðê Ðu9!ó^”R£ïF·Œ>‡ì‡0Šaà?û1-èƦðÏQ;ßLˆð!Ú¹…\­<><C2AD>;%<1D>dgm¶ØÉñæNpɱJævÐUXÀéVȶf…Šx„êív¼}ø0s[a¤EøðìnáÚs¿ç^ì-äÇk¿‰¾øyôG†6±øP¢ûp6㯕—MN<0E>2orñ
õ ä=<3D>Ôn€¼€G€Äô'Â8=<3D>=¾,—gƒ19N¿©7<C2A9>ûmï¸è»6F×öô¾ƒSâìëÑ{Óèä$?Ñsœ&^íäÝŽv§îv.ædœÊ…SU¹¡Ä º:ÜÐì†n7ìtC¶h€ûú³Dì{ãi·7èÂ<C3A8>Ä
Ñ.ëGVî# f<>yAf»Ø.rš<>s1Ï^A˜šQ1‡Ë!æÛ‘ORnNÞ8~ý$ú~ô ¤?s÷<73>¿72z6ú"€ÊÏ:÷Ì®çöïâ¯ÃŒ†EáäSFNêAg'á•NÙe]-èn¡‰SÚeÝ%/à:úûŽˆ”nEËV<C38B>wpÇ9ìš<C3AC>³ÛÞ±qvµ]}GåeƒvBµ±Üm¤ÁŒÜ2nlf(´‰ 9,ï}ÒO?âWOž×F—G=<11>÷9ÀkoŸAše¤ù¤ÙDÌüo0.p €™Á„•OˆÉCˆIÂÇ3¢äEÉܩ󼨘$ž€ Â\]ÉÄ1Ï0)>e¼Â+š0O“8\ü¾8O\/þ³ø±hRÄå*ÌSáû*ŒW!S…$L*|ó²
ÿ¬ÂOUÀîzÖ}5ƒ®Â×*|¬ÂI^Qa
w2˜ï³.Cþ8Ž»u0¢¬Â¯.ÄG;ƒÝ sü•aÆÆB`½ï.Ž´N`6#)¨p\…—TxF…GT¸O…;TXªB<C2AA>
¥*LVa¬
ÃTð2„/Uø0ÿsѦB­
3ãðL ¸ÄÿuéñëÙøÅÆThøjÀO«@vªðC†<43>3Ô¨P¢Â$rFl†Ó*¼Ç«°—Q´E…5qø*©<>ÇàõG ãKFÓ‰8ÆÃ*ÜÏxXÆxˆaŒeKéa<Oøcá<>
û˜ˆC#S¨K ll5¢ÂN6jL,%ñ!=l Ãl”ûÙ(Í {)iˆ/ÏaÉا¥r`Ìr.ˆMƒÃSå_Œqñ°yéžöfÍ©Xâ«Â—sSéä¬îîîÂî\ܤôœÝ¦‚Z˜sH~L]&𙆛¸Ó~Ó¿x…ós,TUÄB<13>_Èu£µ¾ýýƒ½¯ÿ(ú{®êkýù_ÀÚèjŒHÂï£aê<61>q3&지ëÒûˆØ©K<ï²c‡ÄæÈ­1^ê²Â·×f<C397>UÀ¡QàÜ—
| Àaö)p¿
´)P«Bh HPaN)p<ö¨[¸ƒA*PÄ€‡Å!c«XÀz'Æ»~wšÍ„£<Ï îgC$€< èSÞT [<5B>ƒ‰Rʆ8'âq†{ 8¬@€!þè,ëÛǽE—Ñdas•( 6EŒÐ<C592>
4ÇgIÐÚpýV<C3BD><56>q^ŒÆ†x“õîcømŒš²…ŠlcÒÚΰ¬}ü— çyÖºs”i 3ÌÆ}“1· 7<>áô)À½£ÀQ63:³Ùªàº%òÀÊŠK'iÓødpöü™ìñÒÖ4'‘ä`,¤<C2A4>$¦`ÊK0œ¸=öG§bŠu<C5A0>°Qxàì|á<>žX^O îòo¯EíwLž0.¡¦ž!"ÂN¶ˆÐ!B‰ºHuú´Ýñ®fªDH<01><>ÅÛøb&<26>Ñ…±¤ žˆ¾¨kŠ‰˜ß8pw"õI~“bº=à÷~ÀTLv.t¿F¸N=(8ï×\žN»Ûð¥)&U$!ßjUÏP8—S\­¥e§éi|ZVEω—ŒéŽ¿ätåÓ“‡|RØ{"Åß“\˜Âîñæõ6ê l‰üwÔŒ!0)&ù÷ú9ÍÜa>fæ')¯)ÜP*pŸÖtସG´€Êv¶± (¶>å<>*y=I¾4ÜÒ
A-c¼@“ ±™ÃÇpãÆ j¢p÷‡¼ûáúß?óÙÑŸ`ôóè¿÷ý¼éý½ï=Š[`dI¯/¿zÌ”Ë2J~þGÎm{Ó¢Ùù3F…¦GÜ÷ö½(±@ß‡Ü â,â%+õa$“3+v©KÅ=ëV¯»s[­vo6ÑI„t“cD$49µIŸJTû:“Ò!í”8 Ûž1©S%É—D<E28094>ÝGz»<7A>‡+ü/Ñ*/L1i=RaÈF± ›…<14>d»<C
Íç <0C>ËEËõ†XÆ7ž{¡¬þ§OmÞ ž_ÿzBV~®:|ÏO!zŠ¢¿8 O½1‰fz%}
!L†<4C>ád¿>™¤ƒOÝŠÞ2mÕšéðlu;¶úÄ•¹UtÃZÜ<5A>¬|꺀>2ÐÀ¹5 <09>‡Öɸ¨çŽ„FB"Ä%Y}<ÅÄȹ_¤{K )?”ÏWþê¬d
g°5ü X¤€ÄM“ÎJÜšøvžü˜…ù½~N6Àœ«ÛT±c—Š%4FdŽc"—7~ü¸±¸ô¦áyy¹9I^§'cœ<63>÷R<C3B7>ŽèÛ©¹ùÑE'xì—/OŸTÝ[sì<73>ègOμyTaÞÖ«ò~¸ûžú­³U«{ïØaÝ—ë¿ùeôæûN<á²e_=zL!•Öõ(­,”ý5Ïsú ÄïðsVÞºÕ¯'9ü[ýÙMIíI\ÒVÙA¶f»ÀåÀõW0‡t»åä^«êµ‘ó[×Òc»znGšP<02>“V¿Oø_šC½Hï‰
Lª+Œ S¿Ô̼Ímã,tBª\IVÇÔL%OáòL a˜À«Iº9Àá—ÄôEÃìš`Žíô“¨²ð™Ô`LBÖÏ?<3F>ž‰þ
?:ÖÞ"û£-ûö½©¶ÌüþmjY+Œúö+}¿<>/ÜR% «V5  t"u¢TRÉçz“ik²½Ë“Œ_gØ•bíJr¸ì 8]°Ž¸뜺â”IÝÄdy<64>¢§¥+ëj³?H‡ãépG:”¦ÃÄtx3žO‡íñÇ,´òôt ép*Ž¥C$v¤CG:T±¾„?®àä Ùå$v{=t³<74>Û½cÌÛde9z‰ó²;ü@|Ÿæ;æJ½µÞ6/o·ƒÝò<>ý}§t«l™º%°3À¯ágpæÄs'nQ†šœý÷ ÕÎÇTOêŒ~vÕ¤ÅK¢ŸêW6·F?ïŠC¿»iͱmÿÈÕ®™ý³Þz®vãÌݽ kÇþýûì<>IR(CI:Èz®dº¬t$2ŠNwÎ"¡¥9å:n§ ¶¸à´ ".ˆÕ›]ð… * Ä<19>»ú,d¾÷Hn|<7C>iÃ=¦Iͳïïû ·¬r^©¶ïµ²óV d¡2ÃÂŒ¿l%y…²èg;ïm¦¼¬yõán®öím½³Wû¶Ÿ4¬ã¤žžmþDÏÄ×î¿äê"µKrÛ×Ò3ÎFλžqÖs±ÓÍžeR
Œõ±˜<&Sž…^D¤÷i¼¥û2¬<a†GdxD€'8}€Êìc xxolŽûãC8L÷Ç9t§J¯nbƒ[rÆD_;s&zF<>Y¾yÓŠÕëïÂÑ·£}ø}Ás»»wóϹËOqÝpïÉ})¾…Q`¹®›­[M¸Í%Ù(­<E28099>ÅòßåÕU)7Éí2/Ë &ÍaY§êDu¨œ…Oò©ëüÙ}Ðác4~*Ñýª£ûx, T`Àî­8ÑSACAL8?7»R\œ‚î°LŒ|/õþA Ðææp_æO3öäÉè§O>ùÌã•â3ïgÏÈ;yî%~âɹO=K³æ<C2B3>} 3êÜmú8Φv àÜvÙn«<E280B9>òi]O\ùÐæ
½/ç+é9Â<39>õË*¥J?þI: ‰Š¸ µ¥˜ §çè<>œAaFôÓ5GéïŽ{›ÁÛ¾íÐ?q¿èý‡·¶r»Q°<51>Qz
&vBjôÌì°X®.Å<>ÜÅ;lvïZI"5rvc<E280B9>U¸æ!°$NZw„ÚV˜“ãÌ5ŒC·g9À.§ËÁ¸ÈÙD¦;å@£‰ËëàBC‡Ssp&å*c]9<>ß|èÛof6^Ù9·cMíúz~wþÔè©Ï£ßF<C39F>®ŠÊâîÞ¼å<C2BC>ÿð<C3BF>‡ÚcVÎ<56>dVÞ¨ga®@“….à»ì³]qqY¨st*uÜ´»à˜ žrA¥ ²\ÆRÿ1ÿ%š_&"jÜhŠ¬ÔƒÙÖlè‡ä<E280A1>Ù22Ã<32>̽lÌتZJó„e¥Óî\êä´õ¾.¸^m§^}~ôpÆ£„ót¯U}ZŠ·•'DÙÃë'¿''Ûb~–ƒå}y$6ù>“ÃíŠÞCÌÌdJ˜äõ°p žëgÏ™:sþ<73>W^Y<Ëo<C38B>}åôŠ5æý® 6³2~æô"f¡V´¢]ú•Àbµò<C2B5>¨6Þf½<>ô¸FD9gœ«Í>¯Ð.êIâ®Ù;}<7D>íÍG¥4@F˜gä¿<!‡ë.Äz}9Ow¥«ñd3Ó¯B +¬ ªPg÷»9ØÉ<C398>À<EFBFBD>åÚ8÷ìvr…ûÜ„#¡o|XJŸ#P39T#‚â‹Ñ}ÑY˜à¿Ë5<C38B>ÿOÖövÔsw¯‰þšãz£âÚÿxíÇ'‡üýÜÅÔúèñëÑú$~*ZŸDI¤õ<04>sQÖóœ‡ç9ìO$<24>·À¹$ô±à<C2B1>ˆCàùý}§õ>ɼ+<2B>EÍ$“j³§É<C2A7>/CX¿ þtV†Odøƒ wÊ”Ñge¨—áVß%Ã2,c<>³d˜"CëúͯãØ*Éð‘ /€ÀTÜ#ƒ Ã×2¼'ÃqÉ ?”áše¨a† E2d3xƒßúÇ8ÂaöÊð° ÷3„je(•a 9q €§ãðÝà;<NPª÷1Œ±2dƧøQûš  <0C>Ê°…¡´±)JdЃAÏCðS2cícĪbÔ ùãõFÄoÀ8 ˜ì8Øé8d„M||ÖØ”ÃKã¹ÓŒ<C393>£
‡©dýÖ‰„<Åfhb¤Ê<>%2ù… eØ,C{¼=]FwÓ¥Op*/öÊâ"Ç@ƒÀ*ÿ¢C£óƾÈfy@SüÝ^' mÎ\ô`ݹ˜ u‡Ñ(“§‡e´KZc•°a¡©w¦œŸÀî_9Žg¯};à} 1ñf# š¥„úhkô¥h ä| Šà:û¹àêµsÿiä)¥âQbÃ,¾AÏT.Ä•Ü%¸]]f‡•Xí4ò0òyךô¦*Xr^të¾Hìpe8Æ98³˜"r¼]IW0|PÂ*ûã7ÎáÂü<C382>¾%6Ò Ü—”F?]ýÜ¡o¾ÁÞ觕[ævü`ÞúªU }\¾ŠK?Û«í¾¯óa¤¾Ã~Ì5,è™×êSíR:î u³mªd'é„3¡ƒ´Ù­.^]§+V‡ÓŠv‰t'Dœ°Ó íN¨rBº¾pÂ1't³ö瀓È“‡S¦÷ÒW$…ÈÀ‘ðƒC"úÅ‘"¯€Fbvµd æQÔÁÇv_nzœ(œS¡_uË-¿£¡E|«âªÂÙ·è“fÿ)„nŽJ?Z*”bôó“aHn²=¥K tùTüÚR»<ŽP—Í-n•ä.~ˆê ¬ó£onà$Q[ëÔ3œ¸™‰¥ÀÄhÀjÐMrõïF~_h<5F>ì­Inn•}£<>[d«·õt]X.XžáC‡<43>g½‰’|ãÎ[£SÑo?}ñÚÈ“ë:W=÷ËoϾ:óá\ºZUjoÿÁ¼»GðÕ©\±¤øv~<7E>5yÂÒÞ°âV¶j¸Ã@?O³, yO¿AÅLLYDwÇáΘy³,D¾¦1­—À#I¸s4óëÅ#Š,Z8<5A>˜“dÌŒÏõ<C38F>&F<>TQæ,‚¤˜Í@¬&Iâ…ÓV8e…V¸<56>½|[•ëx9''+×éËŸ€º1ê¦ÅåË¿ð V.<2E> .¼Æt½ÑB=]£ê-´FzMÏlyú&Ñí¦qG?ÿ"ú:¬<>Þã^? ¡è<C2A1>àÚè3œÎFÿ2£ô€vZ¤ u"<22>üAO<>ÏzYòÈX|Î!²¤ri]ìÜdŠÅ6•p]C¶.»³Ku{|n¿,™’æ^gÖíf°òšs>€jclÎÓýõ\‰ ²5Ð5ÈÒØ<C392>(ZúsìT<>â¨S‰sªd¦S½'ÂýgTcžPë|`ñMóqÿ˜Å^å yœ\, µXR@°€ sŸHÑ)!Éë0ŽGI<49>ßýÂÓÝ¥ëÀ¼7ª|øo—øÕÖžz¾çÇŽóþ«KF\ž>igKô'¥'g× Ÿ å>ÔöàÏhþ`Ƭé:ú¦Ž«Ñ3L²I?‰å&É$KŸˆ “‰%™ð¼Kdùq˜Ü´ín0½RÌB{m¶Å ÑÇÍ°Ñ a3Ìô<C38C>ã§fxÞ Øx&²v<C2B2>Κᷬ}•˜aëBäWÏ2Ðí¬ub|âM}?C˜Æðcãnd-ˆùØôu;k<> `}_2ü cÍ0ŒÑ…<C391>‡Íð¨î0CŠX—‡u-Ä<>ŽaëƱšÍÀU™! à §Í ßvÊ 3ì0CëÕã=ï˜¡Û [X;;Xû}f@„cfØi†v3”˜ÙûW†h3§¸<C2A7>¡¥³®îT²9b<>ùsëÄ<1B>?ÿ†æâ'Ùƒ#r¿ž£ N Ÿzfþùè¨|cŠþ41<34>…ÐM&ý‰FW¯ë퉾×ûäÂ"X%®=·­÷C.À7ô®æÖR߉ö¼ #,Ý<>-ŽïÎ\‰Ý‰ïÎÈ_º;K ÇvgMòYxÔt“V%lÐ{ÄÒœA;5ï_¼S«<12>ž]alÔꮤ§£âCd8ù‰žEÜÛoð€Ç#Ó¶;R!55e{PP¶ãšÍêvÉM†y<ivßÝÃìwó#Ó”¬—gÛ2úc<C3BA>žœ,z|G¯´ w K~“ ÒФ¡»†òyvȯ‡üaˆ¸Âr­…[*À<>œ …B»BÏ„„»SL},•Ï7ãÎLè\,¡þ…^‘ñ$ŒÃã°ËèËóqñs<C3B1>øq(nSxnåýÑ£_¯>ÐrÅÓ{m¿gõU˜Ëõ'§äÎî©ø·¾•uÜ×¾§×¼ývâ”÷¯˜3gÞÇõ7O<37>uåÈws
?6/¢Ñõ¥þ:ÕøÛmzªk;¨<04>qÝÏßF<C39F>ÊÞ{7=æYÅõd^ä·á)¸Æ׈0àfë S…GÑb.ŒÞÉÎ<C389>ÿ<>ƒÎÆ" 东t©9§ÃåÎÉs:(³NG—ÿÉÙ³Ÿ|ò§³ÿ>·¦¦®¦ªZ|(º;º*º"ú̆5p'Üt6÷c°€ã<E282AC>SÑÿŒ~õ1]í%}Â+<2B><>\eë6ÜüSŠ®Z•§j³ûI<C3BB>ŸÀÛÅt1K佌¬AI¦ÖÖN<C396>ZS ù5S¯ž[3õšj:ú Ìd”Y<59>ò
œ°Éíõ¸Ý^·àUÔíe»Mà¼Ò³ŽHw;“uUõr>Ž
õ?9+ÅñöôžÃìýIO¾±á§/M0iND$¯‹Êq•n°
©§XùÑ<gNœ±°$4<>Ö0‚î[‰)(Èç®]·oZXýØÁ)üá- ?þ¦ƒkþ° n~¥­|ÁÂ7Wpè®3Ñ/—žíÓg`ÄA+&CÈÝz1Òi×e“½³6ÛÛ)óI<C3B3>&ñó®vUõ¯æÓìIí&=Õ´€Û™[Ò # šÓ * JÒ@OƒlöOKƒ~—×ÿ ¡žü,ÊäÀŸ Å<>Få,. Ç .<2E>år†þ ¡øv<#¨<>K_o±0~̓ÑW¿è<C2BF>ÍÝ~œ+Ï<><C38F>AŠþ)º ïùÑW¢»¸÷“]~èsqí¡= .Ú·ëÜä£Ï“ØY ìBOÆ“ëôŽ€¬cïåhVÍ^ÄÅÞ¿µÇß¿}q©÷oyï¶%ÈGqø{/Ùü,±`€¾ÜbÏó:ðbÞj±X»è /{<7B>ä%³c­¨¬€ì¼ž$±ž ‡cËûð‘G˜Ëa§'ßDe<16>…#f‡™ã³¤Bi³ÄkB¶Ð!ð…^°[Ò-…>¦/T]èrâ¯
9>S"/dE>F³y &‚ùõ¹‘ÝË÷>}ëó<C3AB>—µÂˆÞ³<C39E>YóVÙÃÛ|´>~¢<><:Èf=Oê²°3mLZdWâPÛôWjÓãŞę׳ÄÞ÷žžæòä 6<>m˜<6D>Ÿ¥E™'Пížxv˜·„ù<E2809E>Á‡ÛÎKnG{ÓÓmÂþÞËÎ×kê*í_€ÌþHlï¡·÷ÿÉX´Tê”(œÉøûx†cú^ôz29dðç2‰þø(ŸT‰¯<E280B0>Mô.í&ÄYd3ý{ká}¬¿BÖÓ>,2><3E>ÆvÚ?ÛMB+)Ár½)•tb-×c;…ÛHŸylGøùá¬?Ÿ´Ó;>û°ÌÂ±Ì ·•\IŸ± ÞgP¬Óöëi?Ò$» îäWòÏà÷+¡Qø¥tX*×ÉQeŽò•¹Ãa¹CµR}Κl]`}ÄfÃ1Þ±ÕérþÄõ=÷ÝîÏ
Ï^·w¹÷ó¤`Ò½IÿeHä22­Œ~8Ô42“~<7E>x¶Ñ^¤$äötB†4ÿ}Ú¨sD Œ:<3A><17>º€YÈ)£.•|aÔ%ô`g<>º‰Ì…Î$(8h=,4ê@<ÜkF<6B>Ãû#£Î“ïqŸuÜ}𣌺Hùk<C3B9>ºD†ð5FÝD^æ`Ôe#u…Lu3ùFxÒ¨[Hž¸Ë¨«¤Yü7£nU§H×u5Îklk\YW«ÕV·UksšW´4ÎkhÓÓr²³³µ«æÕWkÓ­h®Ó&7µ47µT·56-£]µp¡Æ`[µºÖºeuµ´±¦zñŠÝZc«V­µµT×Ö-ªnY 5Õ_z$­zq­¶¨z…VS‡Íklm«kAzksëZÚªñ>iKckmã\
Ý:&6…vÕôÒIM k;ZëïÕX÷àÇYu-­tÊËÇdgǺ°gt?àÿ(ᤈ4yXÚ°¬$u¤hXªñ¹ksIi&+H ƒjÀV<C380><†%‡d³¯F®Âöz;aciCøfICïЄ˜ÍìZÍf cÖBüjÆmeOux¯Ãû2FI²±Á¡øÜÈ é|mlÔZ„\„÷²Ûš<C39B>¿†&<26>Í@y§c­À{ ƒ¦Ícs¶1ºbòidsY •Sìy>YÊøiE˜<46><C3AC>ÝŠ| àÑ7<C391>IØ»a¿Úу%<25>ÀÕ`Wï,FckË˺n±b8£/6âÿÓÿK)ú.Œ"¹œÍ;Ÿo@Èz6gÝwÈ«•µ¶²Z£´žI16*<2A>k.<1B>ÖaïB&‡ZfÔ.Ü·!-qù,Âkk.b-4p¨<70>.ÂQcÜÔ`+…]Îìº<C3AC>­Å ðOQl¬¥Ì©uSŒE¬¿žÉ…Ò<—É¿ŽÉº–ñÕŒ#ÐÕ¢¦VÛ†-W<>,ü.gß1Ø;Ïàg° Ç4þuXY oΞuž|Z-•luhýVƒ:
t=®W)¹†LÁ2eAë7`+]Ç)x½ŽµcËL¼Ri]<5D>;büNg­Ô¢è8´”âȱ¾pãí ì©ikb- öo±•†•Ž`7<>×\Ê´‹®)<29>cb,MÐB¥·l€-5$Ô2€Î˜<C38E>-bð1
)m í^lŒNW(¦ XkóÎåÆl Ø¿ŒÁ5!q <0B>kï¥%ÖÊflC¨f£kX ÊZ ­£íÔ¶cš^Ϥºh€¯k2¸iB
ëàökÿ…³Ô¦…YËR&ƒÚ„ íqiÄåÔ/¹LýòŠQ2æ¢ZráÜýþa³È¥x<C2A5>[l5öµ2..û&œy!·uÀ:÷K>¶*ƒ}fÌsÄ|Q3“c£á·þ;+¬±jV<6A>{¾ø¼4Ôy•Wõñ|Tºe€öËô»å³ÐðJmd ìe1{jNôP®brAÆ1;YÎ4c<>÷oý´5!ìbf±KÙJP
Çæ¨íñˆ³Ýþ,)®‹Ó®ïây æ\ÃäsáêÆ#ül¯c£Çc]lþÅFt\|ÞJµ<4A>ó³¬øØ”GZ[ÈäKéX†puHÕÅtþÒ:/f§uÆ:Ô²Àøx®vLb1Ú˜_h`Ûñµª>OÊ·ËïòTqù~—÷<E28094>ˤ<1C>´ƒiŠqDõ芣݄ã*|ž@Æñ˜C<CB9C>Ç kÞ³ñ9kÌr§áu,~G`ÛH„Or±hXòP[óYé•–)ççs7Ð[Ç#ÁRiÌ3ò§ÁØÌ|Fµ<46>½Œi`£á_9ÖŒöº—”Š¿&>Çû²Î£}pL¦å:#ëXŒ×&á˜î.e×:ÃÆc<^Ïìh¥Ñ×jh[ƒAq}"öSœ™L<E284A2>)K™¦,5(h1"Ã÷Ç­F¬©û_áµ$!ïfæó[™ŸÎèŽiù¢^êB«®6¬m¡yjYŒçt¤¥ ;æ½ú»ºAx—ö±ìžê:…Xh`ŒbZS‡m<E280A1>FÛÊF+ómF[LV-†<>ÿoJ¶šQÏ=ꌼP;O¶4öý—±óˆIu.ê5¼H“£|Âà…­úû£#Ã[1«ÖЮ¹Ì§öc-eoÔ Ë«c²Š¯B ^­‰Hª:\Çâé÷ Û¤mÿ;²¬3¼N¿¬eVÓÆó´¥<C2B4>iK5WKäñ¼­õ7&ôóBYTòhdÜÆ$>X&M<Tl¿3Ü°õØ +ñÛô?.›ØéNN^ì?ÕÒ×Vžj:Žs*É7äøïñ²ê¶¤ÀªÛüÚ­;oåþå5lX¶/‹šñ²° / '6/Þ±˜[°¸½%¥m©Ç;dÞ|¼Ô7⥮ÁØÜ°£á`ÃцwN×Ià`}¤ñh}wã;õÇ¿¨?Õ(×5¬[âoMZ9Ù\<5C>…ãè<C3A3> ¯f Ïõw|øÅn>ܽŽë‡MrþCÐüÞSïqoäÃûùOuo—Ž<Å…ŸZ—œþàv)¼½K ßßIñ‡ØÆ„~Ø)†;ïÃ÷!”¾­d·m+ÞÚÅ…Ÿíëæ{ö*jþ~¼­£Cý‡>¡]<À…_ÀB8h²<u@ìÞsl·j„ï]'…7a¹{£Þˆwý[MËÇÙžþÖfc÷oÒÒc÷¤¤|öÿ|cµåëßàLäŒãŒv&ûŒpæ“ôÊ/ákœæ+,Ú¹°Þ‘È×;Üîü<C3AE>× álùäv5¼¦] ßÞ.…WciÇÉî²ËXÖb±¯K_—µŽŒ÷&çy½ã¼®±^{®WÍñ*—{¥l/Ÿå%c¼™Ãm#†Û/ ÛF…íCC¶a!{ZºMK·ÛN•þg°IVyAT p*áåðf²ƒpv¾<76>oâwðGy±Ð^io·ï°´¿cÿÂÞg—»ä¤Z“M)V¯Ãgu 먂Ë
Fd +Z ¤
¼®»n)P
¤¾€”äBÄ5<C384>L+<2B>qÞgNŠä†§í絑œð´ˆ©ä–²=÷ck„»k?<3F>Òˆp×~o®É7ßR¶ü´{]àY@"ÓªÖm*ßÃI¸+šYFoú<6F>eí®ýRZ¶‡ƒIåååñÓJÊ(Ty85RKÿ<13>ŽÔòH­lI-'Ó"WÜ „&…/ö™Ó:§µµu`Ëž™Å‘ËŠ«#£Š«Šv@kø¼OkxPS[쉄4CØ}rY œp8 ¡\Þ@pmÝ£P1•Ì˜4-"ÏÀRrK$%„¿Â‡<|PC“Ð~ÿÚîr>
endstream
endobj
14 0 obj
11885
endobj
15 0 obj
<< /Type /FontDescriptor
/FontName /BAAAAA+AlbanyAMT-Bold
/Flags 4
/FontBBox [ -166 -306 1078 1046 ]
/ItalicAngle 0
/Ascent 905
/Descent -211
/CapHeight 1046
/StemV 80
/FontFile2 13 0 R
>>
endobj
16 0 obj
<< /Length 408
/Filter /FlateDecode >>
stream
xœ]“Ëjƒ@†÷ï0ËtQtFSB4<E280BA>E/ÔöŒž¤B3ÊÄ,òöÕÿOBéFùæ\æ|rŒÕƵƒŠÞ}W—2¨]ë/ÇîäkQ[Ù·. ´QM[WÄ«>T}Dc}y>¸0P*úŽƒ?«ÙcÓmå‡o¾ߺ½š}-K•§¾ÿƒ¸AÅaPªÝÔó¥ê_«ƒ¨å÷fÌh‡óýXø'åóÜ2<Ðœ­î9öU-¾r{ ƒEj±^a ®ùM/UÛ]ý]ù)[<5B>Ùqœæņð Hk@JX2B°rF,`ȘöÀH
x$hÀÓY2òX1ž9ÓÖ:&àMA5},|4},|4},ÕôÉÙ€>9|4}r <>Yè“1BŸœÝèc1¨¦<C2A8><EFBFBD>¦<EFBFBD>Å·ÖŸ9€>9L }2Ô˜î1ôI˜ƒú˜ú$¬¡OJ <4A>¡<E2809A>e7úØ9÷æºÓ
aëo ZŸ¼w?vrÚÆÖÉíê»u—Ç/À<>Ï&endstream
endobj
17 0 obj
<< /Type /Font
/Subtype /TrueType
/BaseFont /BAAAAA+AlbanyAMT-Bold
/FirstChar 0
/LastChar 41
/Widths [ 750 777 722 777 833 666 277 610
722 722 722 610 277 666 333 556
556 889 610 610 333 610 610 389
277 722 556 610 277 610 556 556
666 610 556 556 277 556 722 277
556 610 ]
/FontDescriptor 15 0 R
/ToUnicode 16 0 R
>>
endobj
18 0 obj
<< /F1 17 0 R
/F2 12 0 R
>>
endobj
19 0 obj
<<
/Font 18 0 R
/ProcSet [ /PDF ]
>>
endobj
5 0 obj
<< /Type /Pages
/Resources 19 0 R
/MediaBox [ 0 0 595 842 ]
/Kids [ 6 0 R
7 0 R
]
/Count 2
>>
endobj
20 0 obj
<< /Type /Catalog
/Pages 5 0 R
>>
endobj
21 0 obj
<< /Author <FEFF0048006F007700610072006400200046002E002000530065006C00690067006D0061006E>
/Creator <FEFF00430061006C0063>
/Producer <FEFF004F00700065006E004F00660066006900630065002E006F0072006700200031002E0031002E0033>
/CreationDate (D:20041125215149-05'00')
>>
endobj
xref
0 22
0000000000 65535 f
0000000017 00000 n
0000005343 00000 n
0000005370 00000 n
0000010164 00000 n
0000042391 00000 n
0000010191 00000 n
0000010298 00000 n
0000010405 00000 n
0000027778 00000 n
0000027804 00000 n
0000028045 00000 n
0000028624 00000 n
0000029112 00000 n
0000041105 00000 n
0000041132 00000 n
0000041379 00000 n
0000041870 00000 n
0000042267 00000 n
0000042324 00000 n
0000042546 00000 n
0000042606 00000 n
trailer
<< /Size 22
/Root 20 0 R
/Info 21 0 R
>>
startxref
42893
%%EOF

View file

@ -1,159 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>GNOME Foundation Financial Information</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>GNOME Foundation Financial Information</h1>
<p>
The GNOME Foundation is a non-profit 501(3)c. While we are required by
law to make our financial data available to anyone who asks, we want to
take it one step further and make our financial data available to
everyone on the web. We believe our financial data reflects our support
of the GNOME project in its goal of creating a free and open source
computing solution for everyone.
</p>
<p>
For comments or questions on the data, please <a
href="../contact/">contact</a> the GNOME Foundation Board of Directors.
</p>
<h3>Year 2011</h3>
<ul>
<li><a href="gnome-foundation-budget-2011-july.ods">Running GNOME Budget 2010, October 2010 - July 2011</a> (Planned versus Real/Actuals, July 31s, 2011).
<li><a href="gnome-foundation-budget-2011-june.ods">Running GNOME Budget 2010, October 2010 - June 2011</a> (Planned versus Real/Actuals, June 30th, 2011).
<li><a href="gnome-foundation-budget-2011-may.ods">Running GNOME Budget 2010, October 2010 - May 2011</a> (Planned versus Real/Actuals, May 31st, 2011).
</li>
<li>Proposed Budget (version December 22nd, 2010)
</li>
<ul>
<li><a href="gnome-foundation-budget-2011-summary.pdf">Summary</a>.
</li>
<li><a href="gnome-foundation-budget-2011.ods">Detailed Plan</a>.
</li>
</ul>
</ul>
<h3>Year 2010</h3>
<ul>
<li><a href="gnome-foundation-budget-2010-final.ods">Final GNOME Budget 2010</a> (Planned versus Real/Actuals, September 16th, 2010).
</li>
<li>Proposed Budget (version September 23rd, 2009)
</li>
<ul>
<li><a href="gnome-foundation-budget-2010-summary.pdf">Summary</a>.
</li>
<li><a href="gnome-foundation-budget-2010.ods">Detailed Plan</a>.
</li>
</ul>
</ul>
<h3>Year 2009</h3>
<ul>
<li><a href="GNOME2009-budget-with-actuals.ods">
GNOME Budget 2009</a> with actuals up to March 4.
</li>
</ul>
<h3>Year 2007</h3>
<p>
For 2007, we had our finances reviewed by an accountant to make sure that
we are doing the right thing. You can see the letter from the accountant
along with a summary of our financial position. We plan to make this an
annual process.
</p>
<ul>
<li><a href="gnome-foundation-fiscal-year-2007.pdf">
GNOME Foundation Financial Statement for Fiscal Year 2007</a>.
</li>
</ul>
<h3>Year 2005</h3>
<ul>
<li><a href="gnome-foundation-fiscal-year-2005-income-summary.pdf">
GNOME Foundation - Fiscal Year 2005 - Income Summary</a>.
</li>
<li><a href="gnome-foundation-fiscal-year-2005-balance-summary.pdf">
GNOME Foundation - Fiscal Year 2005 - Balance Summary</a>.
</li>
</ul>
<h3>Year 2004</h3>
<ul>
<li><a href="gnome-foundation-fiscal-year-04-and-03.pdf">
GNOME Foundation Financial Statement for Fiscal Year 2004</a>.
</li>
<li><a href="gnome-foundation-budget-2004.ods">
GNOME Foundation Budget 2004</a>.
</li>
<li><a href="gnome-foundation-fiscal-year-2004-income-summary-draft.pdf">
GNOME Foundation - Fiscal Year 2004 - Income Summary</a> (Draft).
</li>
<li><a href="gnome-foundation-fiscal-year-2004-balance-summary-draft.pdf">
GNOME Foundation - Fiscal Year 2004 - Balance Summary</a> (Draft).
</li>
</ul>
<h3>Year 2003</h3>
<ul>
<li><a href="gnome-foundation-fiscal-year-03-and-02.pdf">
GNOME Foundation Financial Statement for Fiscal Year 2003</a>.
</li>
<li><a href="gnome-foundation-accountant-03.pdf">
Accountant's letter accompanying Financial Statement</a>.
</li>
</ul>
<p>Copies of GNOME Foundation's Federal Tax Return (the 990 form)
can be downloaded at
<a href="http://www.guidestar.org">Guidestar.org</a>.
You will have to register with GuideStar to access the IRS form,
but the registration is free and takes only a minute.
</p>
<h3>GUADEC</h3>
<ul>
<li><a href="guadec-budget-consolidated.ods">
Consolidated budget</a>. This includes the budget from 2006 to 2008,
to make easier the comparison between events. It also fixes some
mistakes that were found in the original ones. For future reference,
the individual budgets are the following:
</li>
<ul>
<li><a href="guadec-budget-2006.ods">Budget of GUADEC 2006 at Vilanova.</a>.
<em>This is preliminary, before taxes</em>.
</li>
<li><a href="guadec-budget-2007.ods">Budget of GUADEC 2007 at Birmingham.</a>.
<em>This includes a sheet with a detailed budget of GUADEC 2006, too</em>.
</li>
<li><a href="guadec-budget-2008.ods">Budget of GUADEC 2008 at Istambul</a>.
</li>
</ul>
<li>Other budgets
</li>
<ul>
<li><a href="guadec-budget-2004.pdf">Budget of GUADEC 2004 at Kristiansand</a>.
</li>
<li><a href="guadec-2004-financial-summary.pdf">
Summary of financial information for GUADEC 2004</a>.
</li>
</ul>
</body>
</html>

View file

@ -1,13 +0,0 @@
#hdr {
background: none;
background-color: #494066;
}
#sidebar {
border-left: 1px dashed #494066;
}
#sidebar p.section {
background-color: #494066;
color: white;
}

View file

@ -1,67 +0,0 @@
RewriteEngine On
Redirect /directory.html http://foundation-old.gnome.org/contact/
# Move of the documentation stuff
Redirect /documentation.html http://foundation-old.gnome.org/about/
Redirect /charter.html http://foundation-old.gnome.org/about/charter/
Redirect /bylaws.pdf http://foundation-old.gnome.org/about/bylaws.pdf
# Move of the membership stuff
Redirect /membership.html http://foundation-old.gnome.org/membership/
Redirect /membership-list.html http://foundation-old.gnome.org/membership/members.php
Redirect /membership/members.html http://foundation-old.gnome.org/membership/members.php
Redirect /membership-policy.html http://foundation-old.gnome.org/membership/
Redirect /membership-form.html http://foundation-old.gnome.org/membership/application.php
Redirect /membership-form.php http://foundation-old.gnome.org/membership/application.php
# Move of the organization stuff
Redirect /organization.html http://foundation-old.gnome.org/about/
Redirect /advisory_board.html http://foundation-old.gnome.org/about/
Redirect /board_of_directors-2000.html http://foundation-old.gnome.org/about/history/
Redirect /board_of_directors-2001.html http://foundation-old.gnome.org/about/history/
Redirect /board_of_directors.html http://foundation-old.gnome.org/about/
Redirect /executive_director.html http://foundation-old.gnome.org/about/
# Move of the elections stuff in subdirectories
Redirect /announcement.html http://vote.gnome.org/2000/announcement.html
Redirect /ballot-summary-2000.html http://vote.gnome.org/2000/candidates.html
Redirect /ballot-summary-2001.html http://vote.gnome.org/2001/candidates.html
Redirect /ballot-summary.html http://vote.gnome.org/2002/candidates.html
Redirect /election-2000.html http://vote.gnome.org/2000/
Redirect /election-2001.html http://vote.gnome.org/2001/
Redirect /electionresults.html http://vote.gnome.org/2000/results.html
Redirect /electionrules-2000.html http://vote.gnome.org/2000/rules.html
Redirect /electionrules-2001.html http://vote.gnome.org/2001/rules.html
Redirect /electionrules.html http://vote.gnome.org/2013/rules.html
Redirect /elections.html http://vote.gnome.org
Redirect /final-vote-archive.diff http://vote.gnome.org/2000/vote-archives.diff
Redirect /final_membership_list.txt http://vote.gnome.org/2000/registered-voters.txt
Redirect /list-addresses.py http://vote.gnome.org/2000/list-addresses.py
Redirect /vote-counter.py http://vote.gnome.org/2000/vote-counter.py
Redirect /voters-2000.html http://vote.gnome.org/2000/voters.html
Redirect /voters-2001.html http://vote.gnome.org/2001/voters.html
Redirect /voters.html http://vote.gnome.org/2002/voters.html
Redirect /elections/2001-eligible-members.txt http://vote.gnome.org/2001/registered-voters.txt
Redirect /elections/2001-prelim-results.txt http://vote.gnome.org/2001/results.txt
Redirect /elections/2001-vote-archive.diff http://vote.gnome.org/2001/vote-archives.diff
Redirect /elections/list-addresses.py http://vote.gnome.org/2001/list-addresses.py
Redirect /elections/verify.html http://vote.gnome.org/2001/verify.html
Redirect /elections/vote-counter.py http://vote.gnome.org/2001/vote-counter.py
Redirect /overview_2000.html http://vote.gnome.org/overview.html
Redirect /elections/2002/preliminary_results.html http://vote.gnome.org/2002/preliminary-results.html
RewriteRule elections/200./overview.html http://vote.gnome.org/overview.html [R]
# Due to a mistake, the URL was announced incorrectly
Redirect /elections/2011/candidates.html http://vote.gnome.org/2011/candidates.html
# Move of the press releases
Redirect /press.html http://www.gnome.org/press/
RewriteRule press/pr-(.*).html$ http://www.gnome.org/press/releases/$1.html [R]
# Move the annual reports
RewriteRule about/gnome_annual_report_(.*).pdf http://foundation-old.gnome.org/reports/gnome-annual-report-$1.pdf [R]
# Redirect vote.gnome.org
Redirect /vote http://vote.gnome.org

View file

@ -1,2 +0,0 @@
Makefile.in
Makefile

View file

@ -1,3 +0,0 @@
SUBDIRS = logos reports
urlpath = /img

View file

@ -1,2 +0,0 @@
Makefile.in
Makefile

View file

@ -1,26 +0,0 @@
urlpath = /img/logos
page_SCRIPTS =
page_DATA = \
canonical.png \
collabora.png \
debian.png \
fluendo.png \
fsf.png \
google.png \
ibm.png \
igalia.png \
intel.png \
limo.png \
motorola.png \
mozilla-foundation.png \
nokia.gif \
olpc.gif \
oracle.jpg \
redhat.png \
sflc.gif \
sugarlabs.png \
suse.png
include $(top_srcdir)/rules.common

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 865 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -1,8 +0,0 @@
urlpath = /img/reports
page_SCRIPTS =
page_DATA = \
gnome-logo-Q3.png
include $(top_srcdir)/rules.common

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,126 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>The GNOME Foundation</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>The GNOME Foundation</h1>
<h2>Introduction</h2>
<p>
The GNOME Project is an effort to create a complete, free and easy-to-use
desktop environment for users, as well as a powerful application
development framework for software developers. GNOME is part of the <a
href="http://www.gnu.org/">GNU Project</a>, is <a
href="http://www.gnu.org/philosophy/free-sw.html">Free Software</a>,
and developed as <a href="http://www.opensource.org/">Open
Source</a> software.
</p>
<p>
The GNOME Foundation will work to further the goal of the GNOME project:
to create a computing platform for use by the general public that is
completely free software.
</p>
<p>
To achieve this goal, the Foundation will coordinate releases of GNOME and
determine which projects are part of GNOME. The Foundation will act as an
official voice for the GNOME project, providing a means of communication
with the press and with commercial and noncommercial organizations
interested in GNOME software. The foundation may produce educational
materials and documentation to help the public learn about GNOME software.
In addition, it may sponsor GNOME-related technical conferences, and
represent GNOME at relevant conferences sponsored by others, help create
technical standards for the project and promote the use and development of
GNOME software.
</p>
<h2>News</h2>
<ul>
<li>
<strong>GNOME Quarterly Report Q4 2010 released</strong>
<small>(23/03/2011)</small>
<blockquote>
The fourth quarter of 2010 saw the GNOME Foundation launch the Women's
Outreach Program. Seven women were selected as interns working on a number of
different GNOME projects. Work continued towards GNOME 3.0 and the GNOME
Foundation welcomed eleven new members. <a
href="../reports/gnome-report-2010-Q4.html">Read about all this and
more!</a>
</blockquote>
</li>
<li>
<strong>GNOME Quarterly Report Q3 2010 released</strong>
<small>(7/01/2011)</small>
<blockquote>
GUADEC, the annual GNOME conference, was held in the third quarter of
2010 and many teams had a chance to get to gether face to face.
The GNOME Foundation hired a system adminsitrator, the GNOME.Asia
conference in August was a success, and progress was made on GNOME 3.0.
<a href="../reports/gnome-report-2010-Q3.html">Read about all this and
more!</a>
</blockquote>
</li>
<li>
<strong>GNOME Foundation Annual Report 2009 released</strong>
<small>(13/12/2010)</small>
<blockquote>
The GNOME Foundation's fourth annual report is available for
<a href="../reports/gnome-annual-report-2009.pdf">download (30 MB, PDF)
</a> now.<br/> The annual report is a summary of GNOME community
activities in 2009. It includes a review of the year, accounts of
various community activities and events around the world, an interview
with the GNOME Release team, and GNOME Foundation development
actions during the year.
</blockquote>
</li>
<li>
<strong>GNOME Project Receives $15,000 for Accessibility Work</strong>
<small>(28/10/2010)</small>
<blockquote>
The GNOME Project has received two grants for a total of $15,000 from
Mozilla and from the F123.org-Mais Diferenças partnership for
accessibility work. Read the <a
href="http://www.gnome.org/press/releases/2010-10-accessibility-grant.html">press
release</a>.
</blockquote>
</li>
</ul>
<p>You can also find more informal news at the <a href="http://blogs.gnome.org/foundation/">Foundation Blog</a>, or read <a href="news/">previous news</a>.</p>
<h2>Sponsors</h2>
<div class="center">
<a href="http://www.canonical.com/"><img src="img/logos/canonical.png" alt="Canonical" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.collabora.co.uk/"><img src="img/logos/collabora.png" alt="Collabora" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.debian.org/"><img src="img/logos/debian.png" alt="Debian" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.fsf.org/"><img src="img/logos/fsf.png" alt="Free Software Foundation" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.google.com/"><img src="img/logos/google.png" alt="Google" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.ibm.com/"><img src="img/logos/ibm.png" alt="IBM" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.igalia.com/"><img src="img/logos/igalia.png" alt="Igalia" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.intel.com/"><img src="img/logos/intel.png" alt="Intel" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.motorola.com/"><img src="img/logos/motorola.png" alt="Motorola" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.mozilla.org/"><img src="img/logos/mozilla-foundation.png" alt="Mozilla Foundation" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.nokia.com/"><img src="img/logos/nokia.gif" alt="Nokia" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.suse.com/"><img src="img/logos/suse.png" alt="SUSE" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.laptop.org/"><img src="img/logos/olpc.gif" alt="OLPC" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.oracle.com/"><img src="img/logos/oracle.jpg" alt="Oracle" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.redhat.com/"><img src="img/logos/redhat.png" alt="Red Hat" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://www.softwarefreedom.org/"><img src="img/logos/sflc.gif" alt="Software Freedom Law Center" border="0" hspace="8" vspace="5" align="middle" /></a>
<a href="http://sugarlabs.org/"><img src="img/logos/sugarlabs.png" alt="Sugar Labs" border="0" hspace="8" vspace="5" align="middle" /></a>
<p>
Pro bono legal services provided by <a href="http://www.wsgr.com/">Wilson Sonsini Goodrich &amp; Rosati</a> and the <a href="http://www.softwarefreedom.org/">Software Freedom Law Center</a>.
</p>
</div>
</body>
</html>

View file

@ -1,3 +0,0 @@
index.html
Makefile.in
Makefile

View file

@ -1,8 +0,0 @@
SUBDIRS =
urlpath = /legal
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>GNOME Foundation Legal Information</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>GNOME Foundation Legal Information</h1>
<p>If you have any questions about any of these practices or GNOME Foundation's use of your personal information, please feel free to <a href="/contact/">contact</a> us by e-mail or by post.</p>
<h2><a name="confidentiality" />Board Confidentiality Policy</h2>
<p>Part of the Foundation's purpose is to be a neutral, independent body
which organizations can use as an initial touchpoint before becoming
more deeply involved with The GNOME Project. Through this and other
activities, the members of the Board and employees and agents of the
Foundation shall, from time to time and in the regular course of
business, be made aware of confidential and sensitive information.</p>
<p>Members of the board pledge upon their election and upon the
publication of this addendum to keep this information confidential.
Employees and agents pledge upon hiring or publication of this addendum
to keep this information confidential, at risk of termination.
Information that is public knowledge or that individuals came to know
through other means is not covered by this provision. Confidential
information must be marked confidential.</p>
<h2><a name="trademark" />Trademark Licensing</h2>
<p>See the <a href="../licensing/index.html">GNOME trademark licensing page</a>.</p>
<h2><a name="privacy-policy" />Sharing Your Personal Information</h2>
<p>Unless you assent, GNOME Foundation will never share the personal information you provide to us except as described below. </p>
<p>GNOME Foundation may disclose your personal information to third parties under any of the following circumstances:
<ul>
<li>As may be required to fulfill orders, to conduct billing/credit card processing, to provide service, and for e-mail housing (as a consequence of uses already described in this Privacy Statement).</li>
<li>As required by law (such as responding to a valid subpoena, warrant, audit, or agency action, or to prevent fraud). Aggregated information may be distributed for the purposes of characterizing the GNOME community and planning future events. All personal details will be removed from such aggregated information (such aggregated information is used to describe our services to current and prospective partners and other third parties, and is not used to contact the subjects of the report.)</li>
</ul>
</p>
<h2><a name="pro-bono-counsel" />Pro Bono Counsel</h2>
<p>The GNOME Foundation thanks <a href="http://www.wsgr.com/">Wilson Sonsini Goodrich &amp; Rosati</a> and the <a href="http://www.softwarefreedom.org/">Software Freedom Law Center</a> for their ongoing service as pro bono counsels to the Foundation.</p>
<h2><a name="ein" />Employer Identification Number / Federal Tax Identification Number</h2>
<p>The Employer Identification Number (EIN) of the GNOME Foundation, also known as Federal Tax Identification Number, is 043572618.</p>
<!-- FIXME: need to put fonts/ up here, plus the licensing and copyright
info once it's ready -->
</body>
</html>

View file

@ -1,3 +0,0 @@
Makefile
Makefile.in
index.html

View file

@ -1,8 +0,0 @@
SUBDIRS = guidelines usergroup
urlpath = /licensing
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,3 +0,0 @@
Makefile
Makefile.in
index.html

View file

@ -1,6 +0,0 @@
urlpath = /licensing/guidelines
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,145 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>GNOME Foundation trademark usage guidelines for third parties</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1 align='center'>GNOME Foundation</h1>
<h1 align='center'>Trademark Usage Guidelines for Third Parties</h1>
<p>
GNOME Foundation (&ldquo;GNOME&rdquo;) brands, trademarks, styles, logos and slogans (together,
&ldquo;GNOME Trademarks&rdquo;) are among GNOME&lsquo;s most valuable assets. Proper use of GNOME
trademarks by following these trademark usage guidelines protects the value of GNOME
Trademarks. Following are the guidelines for the proper use of GNOME Trademarks by publishers
and other third parties. Any use of or reference to GNOME Trademarks that is inconsistent with
these guidelines, or other unauthorized use of or reference to GNOME Trademarks or marks that are
confusingly similar to GNOME trademarks, is prohibited and may violate GNOME&lsquo;s trademark
rights.
</p>
<p>
Any questions with respect to these guidelines should be referred the
GNOME Foundation at <a
href="mailto:licensing@gnome.org">licensing@gnome.org.</a>
</p>
<ol type='1'>
<li>
<u>Fair Use of GNOME trademarks</u>
<p>
You may make fair use of GNOME word marks to make true factual statements
GNOME, or to truthfully communicate that your product or service is compatible with,
designed for use with, or was designed using, GNOME. Assertions of compatibility, design,
must, of course, be accurate. You cannot use GNOME logos or stylizations of GNOME word
or other GNOME Trademarks unless you have explicit written permission to do so. You
should not in any way state or imply that GNOME produces, endorses, or supports your company,
products, or services unless you have explicit written permission to do so.
</p>
<p>
When making fair use of a GNOME Trademark, you should acknowledge that the GNOME Foundation owns the trademark. The following language is appropriate: &ldquo;The GNOME logo and GNOME name are registered
trademarks or trademarks of GNOME Foundation in the United States or other countries.&rdquo;
</p>
</li>
<li><u> Proper Use of GNOME Trademarks, Generally</u>
<ul>
<li><u>Use a GNOME Trademark as an Adjective Followed by the Generic Name/Noun.
A trademark is neither a noun nor a verb.</u>
<blockquote>
Correct: GNOME development tools help ...<br/>
<i>Incorrect:</i> GNOME your product ...
</blockquote>
</li>
<li><u> Do Not Use a GNOME Trademark in the Plural or Possessive Form, and Never
Hyphenate or abbreviate.</u>
<p>
An exception to this can be when GNOME is used to refer to the Foundation&lsquo;s name.
</p>
<blockquote>
Correct: Unique capability of the GNOME&#x2122; development tools ...<br/>
<i>Incorrect</i>: GNOME&lsquo;s unique properties ...<br/>
Correct: GNOME&lsquo;s technical conferences are held ...
</blockquote>
</li>
<li><u>Do Not Use Trademarks That Do Not Appear on the List of GNOME Trademarks (which
be found at www.gnome.org), or Forms of GNOME Trademarks that Vary From the List.</u>
<p>
Even a seemingly innocuous deviation may create a new and different trademark. Do not
shorten, abbreviate or create acronyms out of GNOME Trademarks. A trademark that is depicted as
or more words should never be compressed into one word or vise versa. Check the list of
GNOME Trademarks at www.gnome.org to verify exactly how the marks should appear.
</p>
</li>
<li><u>Use Proper Notice of Trademark.</u>
<p>
Identify GNOME Trademarks appropriately as a registered trademark (using the circled-R
symbol &mdash; &reg;), or as an unregistered trademark (using the &ldquo;TM&rdquo; symbol &mdash; &trade;) or an
unregistered service mark (using the &ldquo;SM&rdquo; symbol &mdash; &#x2120;). Check the list of GNOME
Trademarks found at <a href="http://foundation.gnome.org/licensing/">http://foundation.gnome.org/licensing/</a> to verify the correct symbol to use for each name.
</p>
</li>
<li><u>Distinguish GNOME Trademarks From Surrounding Words.</u>
<p>
Capitalize the first letter or capitalize the entire trademark, underline, italicize, place the mark in quotes, or use a different font for the mark.
The word GNOME should always be written in all caps.
</p>
</li>
<li><u>Use of Trademarks in Titles.</u>
<p>
You may reference GNOME on the cover and title of a publication provided you comply
with the guidelines herein and the following specifications:
</p>
<ul>
<li> Your name and/or logo should appear more prominently than the GNOME mark
on all printed materials related to the publication.</li>
<li> You should include a disclaimer of sponsorship, affiliation, or endorsement by
GNOME on the publication and on all related printed materials:
Correct: &ldquo;(Title) is an independent (publication) and is not affiliated with,
authorized by, sponsored by, or otherwise approved by GNOME Foundation.&rdquo;</li>
<li> You may use a GNOME Trademark as the leading word in the title of a single
book but only if you have written permission to do so from GNOME.</li>
<li> You may not use a GNOME Trademark or any other words or logo(s) in a manner
that suggests GNOME affiliation, sponsorship or certification of the publication.</li>
</ul>
</li>
</ul>
</li>
<li><u>Prohibited Use</u>:
<ul>
<li> Do not make reference to GNOME or GNOME Trademarks in a manner that is false or
misleading.</li>
<li> Do not combine or use a GNOME Trademark with your company's product or service
name or any other term unless you have written permission to do so. Use of GNOME
Trademarks in that sort of way would NOT be a fair use.</li>
<li> Do not use GNOME logos unless you have explicit written permission to do so. Also, do
not incorporate a GNOME Trademark into your company's logos or designs.</li>
<li> Do not use GNOME Trademarks as your domain names or as parts of your domain names.</li>
<li> Do not use GNOME Trademarks as meta tags for your web pages.</li>
<li> Do not use GNOME Trademarks in a manner that would disparage GNOME, its
subsidiaries, its products, or services (e.g., untruthful advertising, false/misleading
promotional materials, etc.).</li>
<li> Do not use GNOME Trademarks more prominently than your company, product or
service name.</li>
<li> Do not create your own logos to represent GNOME products or services.</li>
<li> Do not use a GNOME logo on the cover of a book or magazine without a license.</li>
<li> Do not use a GNOME logo on posters, brochures, signs, their websites, or other materials
to promote a book about GNOME software, products or services.</li>
<li> Do not alter a GNOME word mark or logo in any way.</li>
</ul>
</li>
<li><u>Revision of Guidelines</u>
<p>
When these trademark guidelines are revised, the updated version will be posted at
<a href="http://foundation.gnome.org/licensing/">http://foundation.gnome.org/licensing/</a>.
<li><u>Permission</u>
<p>
To obtain permission for proposed use of the GNOME trademarks, contact:
the GNOME Foundation at <a href="mailto:licensing@gnome.org">licensing@gnome.org.</a>
</p>
</li>
</ol>
</body>
</html>

View file

@ -1,55 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Trademark licensing</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>Trademark licensing</h1>
<p>
One of the functions that the GNOME Foundation provides is to
act as the legal owner for such GNOME project assets as the
GNOME name and the GNOME foot. We must protect these trademarks in
order to keep them. Therefore, we have some guidelines for their
use and a standard agreement for user groups. These cover many
common situations; if you need permission to use the GNOME
trademarks in other ways or have other questions, please
contact <a href="mailto:licensing@gnome.org">licensing@gnome.org</a>.
</p>
<p>
The GNOME trademarks are:
</p>
<ul>
<li>The word GNOME&#x2122;</li>
<li>The GNOME foot logo: <img src="http://www.gnome.org/img/logo/text-64" alt="GNOME Foot Logo"/></li>
</ul>
<h2>Third-party usage guidelines</h2>
<p>
Under the law, &ldquo;fair use&rdquo; of trademarks is allowed (for example,
trademarks typically may be used without permission in magazine
and book reviews). The <a href="/licensing/guidelines/">GNOME
Foundation trademark usage guidelines for third parties</a>
describe what is appropriate fair use of the GNOME trademarks.
</p>
<h2>User group license agreement</h2>
<p>
User groups are a very important part of the GNOME
community. User groups have a need to make use of the GNOME
trademarks in such ways as creating and distributing marketing
materials or creating web sites. (The usage of the term user
group here is broad: the canonical example would be a group of
people using and promoting GNOME in a specific locality, but it
could also be a group of developers working on an open source
GNOME application or many similar non-commerical uses.)
</p>
<p>
By agreeing to the <a href="/licensing/usergroup/">GNOME user
group license agreement</a> a user group obtains permission to
use the GNOME trademarks under certain conditions.
</p>
</body>
</html>

View file

@ -1,3 +0,0 @@
Makefile
Makefile.in
index.html

View file

@ -1,6 +0,0 @@
urlpath = /licensing/usergroup
page_SCRIPTS = \
index.html
include $(top_srcdir)/rules.common

View file

@ -1,229 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>User Group License Agreement</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p>
The following is a license to allow independent GNOME user groups to
use the GNOME trademarks and copyrighted materials to promote
GNOME. You can execute this license by, after reading it carefully,
filling out the form that follows the license and clicking on &ldquo;I
agree.&rdquo; You will get confirmation within a few days that the GNOME
foundation has received your submission. If you have any questions
about this license, please mail licensing@gnome.org.
</p>
<p>
</p>
<hr/>
<h1 align='center'>GNOME FOUNDATION</h1>
<h1 align='center'>LICENSE AGREEMENT</h1>
<p>
THE FOLLOWING IS A LEGAL AGREEMENT (&ldquo;LICENSE&rdquo;) BETWEEN GNOME FOUNDATION (&ldquo;GNOME&rdquo;)
AND YOUR GNOME USER GROUP (&ldquo;GROUP&rdquo;). BY INDICATING YOUR ACCEPTANCE AND SUBMITTING
THIS LICENSE TO GNOME, THE GROUP AGREES TO BE LEGALLY BOUND BY AND COMPLY WITH THE
TERMS OF THIS LICENSE. COMPLIANCE WITH THIS LICENSE AND WITH GNOME&rsquo;S USER GROUP
GUIDELINES ARE CONDITIONS TO REMAINING IN GOOD STANDING AS A GNOME USER GROUP AND
TO OBTAINING ANY BENEFITS WHICH MAY BE OFFERED BY GNOME TO RECOGNIZED USER GROUPS.
THE GOAL OF THIS AGREEMENT IS TO BALANCE GNOME&rsquo;S NEED TO PROTECT ITS IMPORTANT
TRADEMARK RIGHTS WITH GNOME&rsquo;S DESIRE TO ALLOW VALUED USER GROUPS TO USE CERTAIN
GNOME TRADEMARKS IN CONNECTION WITH WORKING WITH ITS PRODUCTS AND SERVICES.
</p>
<ol type='1'>
<li><u>Trademark License</u>
<ol type='a'>
<li>Subject to the terms and conditions of this License, GNOME hereby grants the Group a limited,
nonexclusive, non-transferable, non-sublicenseable license (i) to use the name &ldquo;GNOME&rdquo; as part
of your user group name; (ii) to use a GNOME product name as part of your user group name, if
the Group is focused on the use of such product; and (iii) to display the &ldquo;GNOME&rdquo; user group
logo(s) posted at <a href="http://live.gnome.org/LogoGuidelines">http://www.gnome.org</a> in connection with the foregoing, in accordance with
the terms of this License and GNOME&rsquo;s then-current trademark guidelines applicable to user
groups (&ldquo;Trademark Guidelines&rdquo;). The GNOME name, any permitted GNOME product names,
and the GNOME logo(s) posted at <a href="http://live.gnome.org/LogoGuidelines">http://www.gnome.org</a> are referred to collectively as the
&ldquo;Licensed Marks&rdquo;.</li>
<li>
The Group may not use the Licensed Marks for any commercial purpose whatsoever or in any
manner other than as expressly permitted below. To preserve the value of the Licensed Marks, the
Group&rsquo;s operations and activities, and the manner in which they are conducted, shall be consistent
with the high standards of quality traditionally associated with GNOME products and services.
All uses of the Licensed Marks must be in accordance with the Trademark Guidelines. GNOME
reserves the right to request a copy of all materials and items that contain the Licensed Marks to
ensure compliance with the terms of this License and the Trademark Guidelines.
</li>
<li>The Group may use the Licensed Marks solely in connection with Group activities as described at
<a href="http://www.gnome.org">http://www.gnome.org</a> and in related promotional literature, newsletters, website content, and
other non-commercial communications relating to official Group business.</li>
<li>In using the Licensed Marks solely for the above-described purposes, without Gnome&rsquo;s express
written permission neither the Group nor its members shall:
<ol type='i'>
<li> state or in any way imply that they speak for, act on behalf of, or represent GNOME;</li>
<li> state or in any way imply that GNOME agrees with, endorses, approves, ascribes to,
consents to, or recommends any views or opinions expressed by the Group or any of
its members;</li>
<li> use the trademark &ldquo;GNOME&rdquo; or any other trademark owned by GNOME in their
URL or domain name; or</li>
<li> use any trademark owned by GNOME other than the Licensed Marks.</li>
<li>take any other action that might affect the distinctive quality of the Licensed Marks
or adversely affect the reputation of GNOME or its products or services.</li>
</ol>
</li>
</ol>
</li>
<li><u>Copyright License</u>
<ol type='a'>
<li>Subject to the terms and conditions of this License, GNOME hereby grants the Group a limited,
nonexclusive, non-transferable, non-sublicenseable license (i) to reproduce and distribute in print
and electronic format the Licensed Works to members of the Group; (ii) to post the Licensed
Works on the Group web site; and (iii) to display the Licensed Works at Group meetings and other
events in which official business of the Group is conducted, or in which members of the Group
represent the Group on official business.</li>
<li>The &ldquo;Licensed Works&rdquo; includes any newsletters, marketing materials or other copyrightable
works that GNOME may make available to the Group as part of GNOME&rsquo;s user group program;
provided, however, that computer software and documentation are expressly excluded. Any use
or distribution of computer software and documentation require a separate written license
agreement. In addition, in the event that GNOME notifies the Group of any additional terms or
restrictions relating to the use of any Licensed Work, such additional terms or restrictions will be
deemed to constitute part of this License.</li>
<li>You may not modify, create derivative works or make any use of the Licensed Works other than
as expressly permitted by this License; provided that you may modify any invitation materials or
similar announcement templates solely as necessary to update them for use with Group activities,
GNOME may withdraw your right to use any Licensed Work by notifying you that such work
may no longer be used.</li>
</ol>
</li>
<li><u>Legal Notices</u>
<ol type='a'>
<li><u>Trademark Notices</u>. The following legal notices must appear in connection with all uses of the
Licensed Marks:<br/>
&ldquo;GNOME and the GNOME logo(s) are trademarks or registered trademarks of GNOME Foundation in the
U.S.A. or other countries.&rdquo;<br/>
&ldquo;[Group name] is an independent user group that does not speak for, act on behalf of, or represent GNOME
Foundation, nor are its views ascribed to or practices recommended by GNOME Foundation.&rdquo;</li>
<li><u>Copyright Notices</u>. The copyright notices on the Licensed Works must be reproduced on all
copies thereof and may not be altered, obfuscated or removed. In the event that no copyright notice
appears on any of the Licensed Works, the following legal notices must be reproduced on all copies of
the applicable Licensed Work: &ldquo;&copy; GNOME Foundation. All rights reserved.&rdquo;</li>
</ol>
</li>
<li><u>Ownership Rights</u> . The Group acknowledges GNOME&rsquo;s ownership of the Licensed Marks and Licensed
Works, including all modifications and derivative works. The Group acquires no rights relating thereto,
other than the license granted herein, and all uses shall inure to the sole benefit of GNOME. Absent
Gnome&rsquo;s express written permission, the Group may not use the Licensed Marks or Licensed Works, or any
variations thereof, and may not register a trademark, company name, trade name, domain name or business
identity incorporating the Licensed Marks or any other GNOME trademark or any mark confusingly
similar thereto. In the event that the Group or any member of the Group applies for or registers a domain
name containing any trademark owned by GNOME without Gnome&rsquo;s permission, the Group will cause
such domain name to be assigned to GNOME at no cost. All rights to any modifications to the Licensed
Works shall be owned by GNOME and are hereby assigned to GNOME. GNOME grants the Group no
other rights in the Licensed Works or Licensed Marks other than set forth herein, and any other use by the
Group may be considered an infringement. All rights not expressly granted herein are reserved.
</li>
<li><u>User Group Compliance</u> . The rights granted under this License are conditioned upon the on-going
compliance by the Group, and by each member of the Group, with GNOME&rsquo;s rules and requirements for
recognized user groups (&ldquo;User Group Guidelines&rdquo;). The Group agrees to comply, and will ensure
compliance by each of its members, with this License and with the User Group Guidelines. GNOME&rsquo;s
User Group Guidelines, which may change from time to time, are posted on GNOME&rsquo;s web site or may be
otherwise made publicly available or communicated to the Group.</li>
<li><u>Termination</u>. The License is effective upon acceptance and submission by the authorized representative of
the Group, subject to GNOME&rsquo;s right to verify the Group&rsquo;s compliance with GNOME&rsquo;s requirements for
recognition as a user group. This License will continue until terminated. Either party may terminate this
License at any time. Without limiting the foregoing, GNOME reserves the right to immediately terminate
this License at any time if the Group, or any member of the Group, violates the terms of this License or
GNOME&rsquo;s User Group Guidelines. GNOME, at its sole option, may elect to provide the Group with notice
of any noncompliance and guidance to permit the Group to cure such noncompliance; provided, however,
that granting of any cure period or any waiver shall not restrict GNOME from electing to terminate this
License at any time in its sole discretion. GNOME further reserves the right, in its sole discretion, to
modify the terms of this License and/or the Trademark Guidelines, to withdraw license rights in certain
jurisdictions or with respect to certain marks or works, or to modify or terminate the entire GNOME user
group program or any aspect of it. The Group will have thirty (30) days after notice to conform to the new
changes and/or guidelines unless GNOME notifies the Group of an expedited implementation period. If
this License is terminated, the Group shall immediately cease all use of the Licensed Marks and Licensed
Works and returning all embodiments thereof to GNOME.</li>
<li><u>Disclaimer; Limitation of Liability</u>. THE LICENSE IS GRANTED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
LIMITATION, ANY IMPLIED WARRANTIES OF TITLE, NON-INFRINGEMENT, FITNESS OR
ACCURACY. IN NO EVENT WILL GNOME BE LIABLE TO THE GROUP OR ANY MEMBER FOR
ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THIS LICENSE, ON ANY LEGAL THEORY, EVEN IF GNOME HAS BEEN ADVISED OF
THE POSSIBILITY OF SUCH DAMAGES.</li>
<li><u>Permitted Access</u>. Upon acceptance of this License, the authorized representative of the Group may
request a copy of the GNOME user group logo(s) and will be placed on any distribution list for any
Licensed Works that may be made available by GNOME to the Group</li>
<li><u>Miscellaneous</u>. This License is governed by the laws of the State of Massachusetts without reference to
conflict of law principles, and the Group consents to exclusive jurisdiction and venue of the courts located
in Middlesex County, Massachusetts, and hereby waives any objection to such forum. Any dispute arising
out of or relating to this License will be submitted to final and binding arbitration in Middlesex County,
Massachusetts under the rules of the American Arbitration Association. Notwithstanding the foregoing,
GNOME reserves the right to take action as it may deem appropriate in any court of competent jurisdiction
to protect its intellectual property rights and/or to enforce the terms of this License relating thereto. Each
party waives trial by jury in any action, suit, proceeding, or counterclaim of any kind arising out of or
related to this License. This License constitutes the entire agreement between the parties with respect to
the subject matter hereof. There are no understandings, agreements or representations with respect to the
subject matter hereof not specified herein. GNOME shall not be bound by any additional provisions that
may appear in any communication from the Group or its members. This License may only be modified by
mutual written agreement or by written notice from GNOME to the Group of any changes to GNOME&rsquo;s
licensing policies. The License granted hereunder is personal to the Group may not be assigned or
transferred to any third party by any act of Licensee or by operation of law or otherwise. Subject to the
foregoing, this License inures to the benefit of the parties and their permitted successors and assigns. If
any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity
or enforceability of the remainder of the terms of this License, and without further action by the parties
hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and
enforceable. No term or provision hereof shall be deemed waived and no breach consented to unless such
waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.</li>
<li><u>Privacy Policy</u>. GNOME collects personal information from members of GNOME User Groups.
GNOME&rsquo;s privacy policy, which can be found at <a href="http://foundation.gnome.org/legal/index.html#privacypolicy">http://foundation.gnome.org</a>, explains GNOME&rsquo;s collection
and use of such information. The terms of GNOME&rsquo;s privacy policy, as it may be updated from time to
time, are incorporated in and made part of this License.</li>
</ol>
<hr/>
<form action="/cgi-bin/usergroup_license.py" method="post">
<table>
<tr>
<td colspan=2><b>User group</b></td>
</tr>
<tr>
<td align='right'><label for="groupname"><i>Name:</i> </label></td>
<td><input type="text" size="60" id="groupname" name="groupname"></td>
</tr>
<tr>
<td align='right'><label for="name"><i>Address:</i> </label></td>
<td><textarea id="groupaddress" name="groupaddress" rows="6" cols="60"></textarea></td>
</tr>
<tr>
<td align='right'><label for="groupemail"><i>Contact email:</i></label></td>
<td><input type="text" size="60" id="groupemail" name="groupemail"></td>
</tr>
<tr>
<td colspan=2><b>Submitter</b></td>
</tr>
<tr>
<td align='right'><label for="subname"><i>Name:</i> </label></td>
<td><input type="text" size="60" id="subname" name="subname"></td>
</tr>
<tr>
<td align='right'><label for="subemail"><i>Email:</i></label></td>
<td><input type="text" size="60" id="subemail" name="subemail"></td>
</tr>
<tr>
<td align='right'><label for="signature"><i>Signature:</i></label></td>
<td><input type="text" size="60" id="signature" name="signature"></td>
</tr>
<tr>
<td></td><td><i>Please retype your name above surrounded by slashes. For example</i>&nbsp;/John Doe/.<br/>
<i>This and clicking &ldquo;I agree&rdquo; below indicates agreement to this document in the<br/>
way as signing a physical document.</i></td>
</tr>
</table>
<p>
I have read and agree to the terms of the GNOME User Group License Agreement. I confirm that I have the
authority to accept and submit this License to GNOME on behalf of the Group.
</p>
<input type="submit" value="I agree">
</form>
</body>
</html>

View file

@ -1,5 +0,0 @@
members.php
application.php
index.html
Makefile.in
Makefile

View file

@ -1,10 +0,0 @@
SUBDIRS =
urlpath = /membership
page_SCRIPTS = \
index.html \
members.php \
application.php
include $(top_srcdir)/rules.common

View file

@ -1,320 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>GNOME Foundation Membership Application</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>GNOME Foundation Membership Application</h1>
<?php
$bad_elements = array();
$errors = array();
$submit = $_POST['submit'];
$name = $_POST['name'];
$email = $_POST['email'];
$summary = $_POST['summary'];
$details = $_POST['details'];
$contacts = $_POST['contacts'];
$pointers = $_POST['pointers'];
$comments = $_POST['comments'];
$ircnick = $_POST['ircnick'];
$cvsuser = $_POST['cvsuser'];
$previousmember = $_POST['previousmember'];
$spam = $_POST['spam'];
if ($submit) {
/* remove the slashes */
$name = trim(stripslashes($name));
$email = trim(stripslashes($email));
$summary = trim(stripslashes($summary));
$details = trim(stripslashes($details));
$contacts = trim(stripslashes($contacts));
$pointers = trim(stripslashes($pointers));
$comments = trim(stripslashes($comments));
if (!$name || $name == "") {
$bad_elements[] = "name";
$errors[] = "Please enter your name.";
}
if (!$email || !ereg("^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9_.-]+\.[a-zA-Z]+$", $email)) {
$bad_elements[] = "email";
$errors[] = "Please enter an email address we can use to contact you.";
}
$obfuscated_email = preg_replace("/@/", " AT ", $email);
$obfuscated_contacts = preg_replace("/@/", " AT ", $contacts);
if (!$previousmember) {
if (!$summary || $summary == "") {
$bad_elements[] = "summary";
$errors[] = "Please enter a list of areas of GNOME to which you have made a non-trivial contribution.";
}
if (!$details || $details == "") {
$bad_elements[] = "details";
$errors[] = "Please enter a more detailed description of your contributions.";
}
if ((!$contacts || $contacts == "") && $pointers == "") {
$bad_elements[] = "contacts";
$errors[] = "Please enter a list of individuals with their e-mails who can confirm your contributions or indicate us how the membership committee can verify your contributions.";
}
if ($contacts && $contacts != "" && (strpos ($contacts, '@') === FALSE)) {
$bad_elements[] = "contacts";
$errors[] = "Please provide e-mails of the contacts you've provided.";
}
}
if ($spam != "not spam") {
$bad_elements[] = "spam";
$errors[] = "Please fill the \"not spam\" field.";
}
if (count($bad_elements) == 0) {
// make the mail
$formmail = "Contact Information:\n--------------------\n";
$formmail .= "Name: " . $name . "\n";
$formmail .= "E-mail: " . $obfuscated_email . "\n";
$formmail .= "irc.gnome.org nickname (if any): " . $ircnick . "\n";
$formmail .= "git.gnome.org username (if any): " . $cvsuser . "\n";
$formmail .= "\n";
$formmail .= "Previous GNOME Foundation member: ";
if ($previousmember) {
$formmail .= "yes\n";
} else {
$formmail .= "no\n";
}
$formmail .= "\n";
$formmail .= "GNOME contributions:\n--------------------\n";
$formmail .= "\n";
$formmail .= "Summary:\n" . $summary . "\n";
$formmail .= "\n";
$formmail .= "Detailed description:\n" . $details . "\n";
$formmail .= "\n";
$formmail .= "Contacts:\n" . $obfuscated_contacts . "\n";
$formmail .= "\n";
$formmail .= "Pointers:\n" . $pointers . "\n";
$formmail .= "\n";
$formmail .= "Other comments:\n---------------\n";
$formmail .= $comments . "\n";
$formmail .= "\n";
$formmail .= "[Application received at " . date("D M j G:i:s Y") . " (Eastern time)]\n";
$formmail .= "\n";
$formmail .= "If you have any questions, you can contact the membership committee by\nreplying to this mail. Please note that the delay for your application\nto be processed can be up to one month.";
$headers = "From: GNOME Foundation Membership Committee Script <membership-committee@gnome.org>\nCc: $email\n";
if ($previousmember) {
$subject = "[RENEWAL] Application received from $name ($obfuscated_email)";
} else {
$subject = "Application received from $name ($obfuscated_email)";
}
// send the mail
mail("membership-applications@gnome.org", $subject, $formmail, $headers);
// print the thank you page
print ("
<p>
Thank you for your submission. It has been forwarded to the
membership committee, which will inform you when it has been
processed. The membership committee tries to process applications
within a month after their reception.
</p>
<p>
As a confirmation, you should receive your application by mail too.
</p>
<p>
If you have any questions, please e-mail the <a
href=\"mailto:membership-committee&#64;gnome&#46;org\">Membership Committee</a>.
</p>
<br /><br />
<class div=\"center\">
<a href=\"../\">Return to the GNOME Foundation home page</a>
</div>
");
}
}
if (! $submit || count($bad_elements) != 0) { ?>
<p>
To apply for membership in the GNOME Foundation, please complete the
following form as completely as possible. Your application will then be
reviewed by the Foundation's Membership and Elections Committee, which
will notify you when your application has been accepted or rejected; the
committee may also ask you for additional information. For details on the
standards used in evaluating applications, see the <a
href="index.html">GNOME Foundation membership policy</a>, adopted by the
Board of Directors.
</p>
<p>
Please consider reading <a href="http://live.gnome.org/MembershipCommittee/ApplicationTips">Application Tips</a> page so as to get informed about what kind of information is helpful to make your application processed faster.
</p>
<p>
Once you have applied, you will get a ticket number per email and
you can see the status of your application at <a
href="http://www.gnome.org/rt3-stats/membership.html">the stats page</a>.
If you have any questions regarding the application process, please feel
free to e-mail the committee at <a
href="mailto:membership-committee&#64;gnome&#46;org">membership-committee&#64;gnome&#46;org</a>.
</p>
<?php if (count($bad_elements) != 0) {
print("<font color=\"red\">");
foreach ($errors as $error) {
print("<li>$error</li>");
}
print("</font>");
}
?>
<h3>Note about privacy</h3>
<p>
The GNOME Foundation tries to be as transparent as possible. This
includes making it easy to find out who is a member of the Foundation
and why an application is accepted or denied.
Thus, all the information you will submit through this form will be
publically available: the form will send an e-mail to a mailing list
whose archives are publically available on the Internet and your
application will be accessible through mail archives.
</p>
<form action="<?php echo $PHP_SELF; ?>" method="POST">
<h3>Contact Information</h3>
<table summary="Membership form">
<tr>
<td>Full Name:</td>
<td>
<input type="text" name="name" size="40"
value="<?php if ($name) { echo $name; } ?>" />
</td>
</tr>
<tr>
<td>E-mail address:</td>
<td>
<input type="text" name="email" size="40"
value="<?php if ($email) { echo $email; } ?>" />
</td>
</tr>
<tr>
<td>irc.gnome.org nickname (if any):</td>
<td>
<input type="text" name="ircnick" size="20"
value="<?php if ($ircnick) { echo $ircnick; } ?>" />
</td>
</tr>
<tr>
<td>git.gnome.org username (if any):</td>
<td>
<input type="text" name="cvsuser" size="20"
value="<?php if ($cvsuser) { echo $cvsuser; } ?>" />
</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
<tr>
<td colspan="2">
<input type="checkbox" name="previousmember"
<?php if ($previousmember) { ?> checked="checked" <?php } ?> />
Previous GNOME Foundation member
</td>
</tr>
</table>
<h3>GNOME Contributions</h3>
<p>
Membership in the GNOME Foundation requires that the candidate has
contributed to a non-trivial improvement in the GNOME Project. Please
use the following sections to explain how you have contributed to the
project, providing enough detail to allow the committee to verify your
application.
</p>
<p>
Please provide a short list of areas of GNOME to which you have made a
non-trivial contribution (for entry into the public membership list).
For example, "<i>Documentation, gnomecal, Debian packaging.</i>":
</p>
<textarea name="summary" rows="3" cols="72"><?php if ($summary) { echo $summary; } ?></textarea>
<p>
Please provide a more detailed description of your contributions to
help the membership committee determine your eligibility. In general,
anything listed above should be explained here, and additional
contributions can be included. For example: "<i>Wrote a chapter "How to
Use the GNOME Calendaring System" for the GNOME Users Guide. Several
patches for gnomecal related to color support. Packaged the 1.4 release
for Debian.</i>":
</p>
<textarea name="details" rows="10" cols="72"><?php if ($details) { echo $details; } ?></textarea>
<p>
Please list individuals (frequently, but not necessarily, project
maintainers and foundation members) who can help the membership
committee determine your eligibility. You should provide their
name, e-mail address, and a brief description of their role as a
reference. To continue the earlier example: "<i>Dan Mueth
(d-mueth&#64;uchicago&#46;edu) (GDP coordinator); Russell Steinthal
(rms39&#64;columbia&#46;edu) (gnome-pim maintainer)</i>".<br />
<b>Beware that applications without contacts take relatively
longer to process.</b>
</p>
<textarea name="contacts" rows="5" cols="72"><?php if ($contacts) { echo $contacts; } ?></textarea>
<p>
If there's nobody you can think of, please list pointers to your contributions here:
If there is nobody you can think of for contacts, feel free to
suggest another way for the membership committee to verify your
contributions clearly, such as a pointer to a project ChangeLog, etc.
For example: "<i>packaging logs at http://www.debian.org/packages/gnome/</i>"
</p>
<textarea name="pointers" rows="5" cols="72"><?php if ($pointers) { echo $pointers; } ?></textarea>
<h3>Other Comments</h3>
<p>
Please feel free to include any additional information which you
believe the membership committee should consider while reviewing your
application:
</p>
<p>
<textarea name="comments" rows="10" cols="72"><?php if ($comments) { echo $comments; } ?></textarea>
</p>
<table summary="Antispam form">
<tr>
<td>Please type "not spam" here:</td>
<td>
<input type="text" name="spam" size="20" value="" />
</td>
</tr>
</table>
<p>
<div class="center">
<input type="submit" name="submit" value="Submit Application" />
<input type="reset" />
</div>
</p>
</form>
<?php } ?>
</body>
</html>

View file

@ -1,285 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>GNOME Foundation Membership Application</title>
<meta name="cvsdate" content="$Date$" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>GNOME Foundation Membership Application</h1>
<?php
$bad_elements = array();
$errors = array();
$submit = $_POST['submit'];
$name = $_POST['name'];
$email = $_POST['email'];
$summary = $_POST['summary'];
$contacts = $_POST['contacts'];
$comments = $_POST['comments'];
$cvsuser = $_POST['cvsuser'];
$previousmember = $_POST['previousmember'];
$spam = $_POST['spam'];
if ($submit) {
/* remove the slashes */
$name = trim(stripslashes($name));
$email = trim(stripslashes($email));
$summary = trim(stripslashes($summary));
$contacts = trim(stripslashes($contacts));
$comments = trim(stripslashes($comments));
if (!$name || $name == "") {
$bad_elements[] = "name";
$errors[] = "Please enter your name.";
}
if (!$email || !ereg("^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9_.-]+\.[a-zA-Z]+$", $email)) {
$bad_elements[] = "email";
$errors[] = "Please enter an email address we can use to contact you.";
}
$obfuscated_email = preg_replace("/@/", " AT ", $email);
$obfuscated_contacts = preg_replace("/@/", " AT ", $contacts);
if (!$previousmember) {
if (!$summary || $summary == "") {
$bad_elements[] = "summary";
$errors[] = "Please enter a list of areas of GNOME to which you have made a non-trivial contribution.";
}
if (!$contacts || $contacts == "") {
$bad_elements[] = "contacts";
$errors[] = "Please enter a list of individuals with their e-mails who can confirm your contributions or indicate us how the Membership Committee can verify your contributions.";
}
if ($contacts && $contacts != "" && (strpos ($contacts, '@') === FALSE)) {
$bad_elements[] = "contacts";
$errors[] = "Please provide e-mails of the contacts you've provided.";
}
}
if ($spam != "not spam") {
$bad_elements[] = "spam";
$errors[] = "Please fill the \"not spam\" field.";
}
if (count($bad_elements) == 0) {
// make the mail
$formmail = "Contact Information:\n--------------------\n";
$formmail .= "Name: " . $name . "\n";
$formmail .= "E-mail: " . $obfuscated_email . "\n";
$formmail .= "git.gnome.org username (if any): " . $cvsuser . "\n";
$formmail .= "\n";
$formmail .= "Previous GNOME Foundation member: ";
if ($previousmember) {
$formmail .= "yes\n";
} else {
$formmail .= "no\n";
}
$formmail .= "\n";
$formmail .= "GNOME contributions:\n--------------------\n";
$formmail .= "\n";
$formmail .= "Summary:\n" . $summary . "\n";
$formmail .= "\n";
$formmail .= "Contacts:\n" . $obfuscated_contacts . "\n";
$formmail .= "\n";
$formmail .= "Other comments:\n---------------\n";
$formmail .= $comments . "\n";
$formmail .= "\n";
$formmail .= "[Application received at " . date("D M j G:i:s Y") . " (Eastern time)]\n";
$formmail .= "\n";
$formmail .= "If you have any questions, you can contact the Membership Committee by\nreplying to this mail. Please note that it usually takes up to a week for an application to be fully processed.";
$headers = "From: GNOME Foundation Membership Committee Script <membership-committee@gnome.org>\nCc: $email\n";
if ($previousmember) {
$subject = "[RENEWAL] Application received from $name ($obfuscated_email)";
} else {
$subject = "Application received from $name ($obfuscated_email)";
}
// send the mail
mail("membership-applications@gnome.org", $subject, $formmail, $headers);
// print the thank you page
print ("
<p>
Thank you for your submission. It has been forwarded to the
Membership Committee, which will inform you when it has been
processed. The Membership Committee tries to process applications
within a week or two after their reception.
</p>
<p>
As a confirmation, you should receive your application by mail too.
</p>
<p>
If you have any questions, please e-mail the <a
href=\"mailto:membership-committee&#64;gnome&#46;org\">Membership Committee</a>.
</p>
<br /><br />
<class div=\"center\">
<a href=\"../\">Return to the GNOME Foundation home page</a>
</div>
");
}
}
if (! $submit || count($bad_elements) != 0) { ?>
<p>
To apply for membership in the GNOME Foundation, please complete the
following form as completely as possible. Your application will then be
reviewed by the Foundation's Membership and Elections Committee, which
will notify you when your application has been accepted or rejected; the
committee may also ask you for additional information. For details on the
standards used in evaluating applications, see the <a
href="index.html">GNOME Foundation membership policy</a>, adopted by the
Board of Directors.
</p>
<p>
Please consider reading <a href="http://live.gnome.org/MembershipCommittee/ApplicationTips">Application Tips</a> page so as to get informed about what kind of information is helpful to make your application processed faster.
</p>
<p>
Once you have applied, you will get a ticket number per email and
you can see the status of your application at <a
href="http://www.gnome.org/rt3-stats/membership.html">the stats page</a>.
If you have any questions regarding the application process, please feel
free to e-mail the Committee at <a
href="mailto:membership-committee&#64;gnome&#46;org">membership-committee&#64;gnome&#46;org</a>.
</p>
<?php if (count($bad_elements) != 0) {
print("<font color=\"red\">");
foreach ($errors as $error) {
print("<li>$error</li>");
}
print("</font>");
}
?>
<h3>Note about privacy</h3>
<p>
The GNOME Foundation tries to be as transparent as possible. This
includes making it easy to find out who is a member of the Foundation
and why an application is accepted or denied.
Thus, all the information you will submit through this form will be
publically available: the form will send an e-mail to a mailing list
whose archives are publically available on the Internet and your
application will be accessible through mail archives.
</p>
<form action="<?php echo $PHP_SELF; ?>" method="POST">
<h2>Application Form</h2>
<h3>Contact Information</h3>
<table summary="Membership form">
<tr>
<td>Full Name:</td>
<td>
<input type="text" name="name" size="40"
value="<?php if ($name) { echo $name; } ?>" />
</td>
</tr>
<tr>
<td>Permanent E-mail address:</td>
<td>
<input type="text" name="email" size="40"
value="<?php if ($email) { echo $email; } ?>" />
</td>
</tr>
<tr>
<td>git.gnome.org username (if any):</td>
<td>
<input type="text" name="cvsuser" size="20"
value="<?php if ($cvsuser) { echo $cvsuser; } ?>" />
</td>
</tr>
</table>
<h3>Renew Option</h3>
<p>
If you are an existing Foundation member and would like to renew your application,
check out the <b>"Previous GNOME Foundation member"</b> flag down here.
Please also remember to fill out the full form even if you are renewing your application.
(just a few details are usually fine, no need to be verbose)
</p>
<table>
<tr>
<td colspan="2">
<input type="checkbox" name="previousmember"
<?php if ($previousmember) { ?> checked="checked" <?php } ?> />
Previous GNOME Foundation member
</td>
</tr>
</table>
<h3>GNOME Contributions</h3>
<p>
Please provide a detailed description of all your past and present
contributions to help the Membership Committee determine your
eligibility to join the Foundation. Remember that any contribution made
for the GNOME Foundation is valid, so either if you package GNOME software
for a certain distribution (like Debian, Ubuntu or Fedora), translate, develop,
write documentation or simply sponsor GNOME through talks and conferences,
you will be definitely welcome to join the GNOME Foundation.
</p>
<textarea name="summary" rows="3" cols="72"><?php if ($summary) { echo $summary; } ?></textarea>
<h3>Contacts Informations</h3>
<p>
Please list at least <b>two contacts</b> (project maintainers or most of all
existing Foundation members) who can confirm your contributions or indicate to
the Membership Committee the best way to verify your contributions. You should provide their
name, a valid e-mail address to contact them, and a brief description of their role as
a reference. <b>Remember that two contacts are mandatory for an application to be accepted.</b>
</p>
<textarea name="contacts" rows="5" cols="72"><?php if ($contacts) { echo $contacts; } ?></textarea>
<h3>Other Comments</h3>
<p>
Please feel free to include any additional information which you
believe the Membership Committee should consider while reviewing your
application:
</p>
<p>
<textarea name="comments" rows="10" cols="72"><?php if ($comments) { echo $comments; } ?></textarea>
</p>
<h3>Anti-spam Measures</h3>
<table summary="Antispam form">
<tr>
<td>Please type "not spam" here:</td>
<td>
<input type="text" name="spam" size="20" value="" />
</td>
</tr>
</table>
<p>
<div class="center">
<input type="submit" name="submit" value="Submit Application" />
<input type="reset" />
</div>
</p>
</form>
<?php } ?>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show more